/* ========================
   RESET & BASE
   ======================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:      #0D1F3C;
  --navy-mid:  #162844;
  --teal:      #0AA882;
  --teal-dim: rgba(10,168,130,0.15);
  --gold:      #D4A853;
  --cream:     #F5F0E8;
  --white:     #FFFFFF;
  --text-body: #C8D4E3;
  --text-head: #F5F0E8;
  --text-dim:  rgba(245,240,232,0.45);
  --font-head: 'Syne', system-ui, sans-serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --max: 1200px;
  --gutter: clamp(24px, 5vw, 64px);
  --section-gap: clamp(72px, 10vw, 128px);
}

html { font-size: 16px; scroll-behavior: smooth; }

body {
  background: var(--navy);
  color: var(--text-body);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* ========================
   NAV
   ======================== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(13,31,60,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.nav__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  height: 64px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav__logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav__logo-mark {
  display: block; width: 28px; height: 28px;
  background: var(--teal); border-radius: 6px;
  position: relative;
}
.nav__logo-mark::after {
  content: ''; position: absolute; inset: 6px;
  background: var(--navy); border-radius: 2px;
}
.nav__logo-text {
  font-family: var(--font-head);
  font-weight: 700; font-size: 1.1rem;
  color: var(--cream);
  letter-spacing: 0.02em;
}
.nav__tagline {
  font-size: 0.8rem;
  color: var(--text-dim);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
@media (max-width: 600px) { .nav__tagline { display: none; } }

/* ========================
   HERO
   ======================== */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto 1fr auto;
  padding-top: 64px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: 0; left: 0; bottom: 0; right: 0;
  background:
    radial-gradient(ellipse 60% 50% at 75% 40%, rgba(10,168,130,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 85% 70%, rgba(212,168,83,0.05) 0%, transparent 60%);
  pointer-events: none;
}
.hero__content {
  grid-column: 1; grid-row: 1 / 3;
  display: flex; flex-direction: column; justify-content: center;
  padding: clamp(80px, 12vh, 140px) var(--gutter) 60px;
  position: relative; z-index: 2;
}
.hero__badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--teal-dim);
  border: 1px solid rgba(10,168,130,0.25);
  color: var(--teal);
  font-size: 0.75rem; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 999px;
  margin-bottom: 28px; width: fit-content;
}
.hero__badge-dot {
  display: block; width: 6px; height: 6px;
  background: var(--teal); border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}
.hero__headline {
  font-family: var(--font-head);
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-weight: 800;
  color: var(--text-head);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}
.hero__headline em {
  font-style: normal;
  background: linear-gradient(135deg, var(--teal) 0%, #4FD9B0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero__sub {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: var(--text-body);
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: 48px;
}
.hero__visual {
  grid-column: 2; grid-row: 1 / 3;
  display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 2;
  padding: clamp(60px, 10vh, 120px) var(--gutter);
}
.network {
  position: relative; width: 100%; max-width: 420px; aspect-ratio: 1;
}
.network__lines { position: absolute; inset: 0; width: 100%; height: 100%; }
.network__node {
  position: absolute; border-radius: 50%;
  animation: float ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}
.network__node--1 { width:16px; height:16px; top:22%; left:14%; background:var(--teal); animation-duration:4s; }
.network__node--2 { width:24px; height:24px; top:38%; left:47%; background:var(--gold); animation-duration:5s; animation-delay:0.5s; }
.network__node--3 { width:12px; height:12px; top:28%; right:18%; background:var(--teal); animation-duration:3.5s; animation-delay:1s; opacity:0.8; }
.network__node--4 { width:20px; height:20px; bottom:30%; left:26%; background:var(--gold); animation-duration:6s; animation-delay:0.3s; }
.network__node--5 { width:10px; height:10px; top:62%; right:28%; background:var(--teal); animation-duration:4.5s; animation-delay:1.5s; opacity:0.7; }
.network__node--6 { width:14px; height:14px; top:18%; right:38%; background:var(--gold); animation-duration:5.5s; animation-delay:0.8s; }
.network__node--7 { width:8px; height:8px; bottom:18%; right:40%; background:var(--teal); animation-duration:3s; animation-delay:2s; opacity:0.6; }
.network__node--8 { width:18px; height:18px; top:50%; left:15%; background:var(--gold); animation-duration:4s; animation-delay:1.2s; }
.network__pulse {
  position: absolute; top:50%; left:50%;
  transform: translate(-50%,-50%);
  width:120px; height:120px;
  border-radius:50%;
  border: 1px solid rgba(10,168,130,0.3);
  animation: pulse-ring 3s ease-out infinite;
}
@keyframes pulse-ring {
  0% { transform:translate(-50%,-50%) scale(1); opacity:0.8; }
  100% { transform:translate(-50%,-50%) scale(2.5); opacity:0; }
}
.hero__stat-strip {
  grid-column: 1 / -1; grid-row: 3;
  display: flex; align-items: center;
  gap: 0; padding: 28px var(--gutter);
  border-top: 1px solid rgba(255,255,255,0.06);
  background: rgba(22,40,68,0.5);
  backdrop-filter: blur(8px);
}
.hero__stat { padding: 0 32px 0 0; }
.hero__stat:first-child { padding-left: 0; }
.hero__stat-num {
  display: block; font-family: var(--font-head);
  font-size: 1.6rem; font-weight: 700;
  color: var(--teal);
  letter-spacing: -0.02em; line-height: 1;
  margin-bottom: 4px;
}
.hero__stat-label {
  display: block; font-size: 0.78rem; color: var(--text-dim); line-height: 1.4;
}
.hero__stat-divider {
  width: 1px; height: 40px;
  background: rgba(255,255,255,0.08);
  margin: 0 32px;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .hero { grid-template-columns: 1fr; }
  .hero__content { grid-column: 1; grid-row: 1; padding-bottom: 40px; }
  .hero__visual { grid-column: 1; grid-row: 2; padding: 40px var(--gutter); }
  .network { max-width: 280px; }
  .hero__stat-strip { grid-row: 4; flex-direction: column; align-items: flex-start; gap: 20px; }
  .hero__stat-divider { display: none; }
  .hero__stat { padding: 0; }
}

/* ========================
   MANIFESTO
   ======================== */
.manifesto {
  padding: var(--section-gap) var(--gutter);
  position: relative;
}
.manifesto::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(10,168,130,0.3), transparent);
}
.manifesto__inner { max-width: var(--max); margin: 0 auto; }
.manifesto__label {
  font-size: 0.72rem; font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--teal);
  margin-bottom: 20px;
}
.manifesto__headline {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 700; color: var(--text-head);
  line-height: 1.25; letter-spacing: -0.02em;
  max-width: 680px; margin-bottom: 40px;
}
.manifesto__body { max-width: 720px; }
.manifesto__body p {
  font-size: 1.05rem; color: var(--text-body);
  margin-bottom: 20px;
  line-height: 1.8;
}
.manifesto__body p:last-child { margin-bottom: 0; }

/* ========================
   OPERATIONS
   ======================== */
.operations {
  padding: var(--section-gap) var(--gutter);
  background: var(--navy-mid);
  position: relative;
}
.operations::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,168,83,0.2), transparent);
}
.operations__inner { max-width: var(--max); margin: 0 auto; }
.operations__label {
  font-size: 0.72rem; font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 20px;
}
.operations__headline {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700; color: var(--text-head);
  line-height: 1.3; letter-spacing: -0.01em;
  max-width: 600px; margin-bottom: 56px;
}
.ops-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.ops-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 40px 36px;
  position: relative;
  transition: background 0.3s ease, border-color 0.3s ease;
}
.ops-card:hover {
  background: rgba(10,168,130,0.06);
  border-color: rgba(10,168,130,0.2);
}
.ops-card__num {
  font-family: var(--font-head);
  font-size: 3rem; font-weight: 800;
  color: rgba(10,168,130,0.15);
  line-height: 1; margin-bottom: 24px;
  letter-spacing: -0.04em;
}
.ops-card__body h3 {
  font-family: var(--font-head);
  font-size: 1.1rem; font-weight: 700;
  color: var(--text-head); margin-bottom: 12px;
}
.ops-card__body p { font-size: 0.92rem; color: var(--text-body); line-height: 1.7; }
@media (max-width: 900px) {
  .ops-grid { grid-template-columns: 1fr; gap: 1px; }
}

/* ========================
   AGENTS
   ======================== */
.agents {
  padding: var(--section-gap) var(--gutter);
  position: relative;
}
.agents::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(10,168,130,0.2), transparent);
}
.agents__inner { max-width: var(--max); margin: 0 auto; }
.agents__label {
  font-size: 0.72rem; font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--teal);
  margin-bottom: 20px;
}
.agents__headline {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  font-weight: 700; color: var(--text-head);
  line-height: 1.3; letter-spacing: -0.01em;
  max-width: 600px; margin-bottom: 56px;
}
.agent-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}
.agent-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  padding: 40px 36px;
  transition: all 0.3s ease;
}
.agent-card:hover {
  background: rgba(10,168,130,0.06);
  border-color: rgba(10,168,130,0.2);
  transform: translateY(-2px);
}
.agent-card__icon { margin-bottom: 20px; }
.agent-card h3 {
  font-family: var(--font-head);
  font-size: 1.05rem; font-weight: 700;
  color: var(--text-head); margin-bottom: 12px;
}
.agent-card p { font-size: 0.9rem; color: var(--text-body); line-height: 1.7; margin-bottom: 20px; }
.agent-card__metrics span {
  display: inline-block;
  font-size: 0.72rem; font-weight: 500;
  color: var(--teal);
  background: var(--teal-dim);
  border: 1px solid rgba(10,168,130,0.2);
  padding: 4px 12px; border-radius: 999px;
  letter-spacing: 0.04em;
}
@media (max-width: 768px) {
  .agent-grid { grid-template-columns: 1fr; }
}

/* ========================
   FOR WHOM
   ======================== */
.for-whom {
  padding: var(--section-gap) var(--gutter);
  background: var(--navy-mid);
  position: relative;
}
.for-whom::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,168,83,0.15), transparent);
}
.for-whom__inner { max-width: var(--max); margin: 0 auto; }
.for-whom__label {
  font-size: 0.72rem; font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 36px;
}
.for-whom__grid { display: flex; flex-direction: column; gap: 0; }
.for-whom__item {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 1rem; color: var(--text-body); line-height: 1.7;
}
.for-whom__item:first-child { border-top: 1px solid rgba(255,255,255,0.05); }
.for-whom__dash {
  font-family: var(--font-head); font-size: 1.4rem;
  color: var(--teal); font-weight: 700;
  flex-shrink: 0; margin-top: -2px;
}
.for-whom__item strong { color: var(--text-head); font-weight: 600; }

/* ========================
   CLOSING
   ======================== */
.closing {
  padding: var(--section-gap) var(--gutter);
  text-align: center;
  position: relative;
}
.closing::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(10,168,130,0.3), transparent);
}
.closing__inner { max-width: 760px; margin: 0 auto; }
.closing__headline {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 800; color: var(--text-head);
  line-height: 1.15; letter-spacing: -0.03em;
  margin-bottom: 28px;
}
.closing__body {
  font-size: 1.05rem; color: var(--text-body);
  line-height: 1.8; margin-bottom: 20px;
  max-width: 600px; margin-left: auto; margin-right: auto;
}
.closing__body:last-child { margin-bottom: 0; }

/* ========================
   FOOTER
   ======================== */
.footer {
  padding: 48px var(--gutter);
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer__inner {
  max-width: var(--max); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
}
.footer__logo {
  font-family: var(--font-head); font-weight: 700; font-size: 1.1rem;
  color: var(--cream);
}
.footer__tagline { font-size: 0.85rem; color: var(--text-dim); margin-top: 4px; }
.footer__meta p { font-size: 0.8rem; color: var(--text-dim); }
@media (max-width: 600px) {
  .footer__inner { flex-direction: column; gap: 16px; text-align: center; }
}

/* ========================
   UTILITIES
   ======================== */
@media (max-width: 600px) {
  .manifesto__headline { font-size: 1.8rem; }
  .ops-card { padding: 28px 24px; }
  .agent-card { padding: 28px 24px; }
}