:root {
  --navy: #0d1b2a;
  --navy-light: #152235;
  --amber: #d4a843;
  --amber-dim: rgba(212, 168, 67, 0.6);
  --amber-glow: rgba(212, 168, 67, 0.12);
  --off-white: #f5f3ee;
  --warm-gray: #c8c4bc;
  --text-light: rgba(245, 243, 238, 0.6);
  --text-body: rgba(245, 243, 238, 0.85);
  --text-heading: #f5f3ee;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  background: var(--navy);
  color: var(--text-body);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}

.hero-network-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.network-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.node {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 12px rgba(212,168,67,0.8), 0 0 24px rgba(212,168,67,0.4);
}
.node-1 { top: 18.7%; left: 13.9%; }
.node-2 { top: 10%; left: 27.8%; }
.node-3 { top: 15%; left: 83.3%; }
.node-4 { top: 10%; left: 62.5%; }
.node-5 { top: 87.5%; left: 20.8%; }
.node-6 { top: 87.5%; left: 76.4%; }
.node-7 { top: 5%; left: 75%; }
.node-8 { top: 50%; left: 9.7%; }

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin-left: 8%;
  padding: 120px 48px 120px 0;
}

.hero-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 28px;
}

.hero-headline {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--text-heading);
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}

.hero-sub {
  font-size: 18px;
  color: var(--text-light);
  max-width: 560px;
  margin-bottom: 40px;
  line-height: 1.7;
}

.hero-pill-row {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}

.pill {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--amber);
  border: 1px solid rgba(212,168,67,0.3);
  padding: 6px 14px;
  border-radius: 100px;
}

.pill-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(212,168,67,0.3);
  margin: 0 6px;
  flex-shrink: 0;
}

/* NETWORK PROOF */
.network-proof {
  background: var(--navy-light);
  padding: 100px 0;
}

.network-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.section-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 20px;
}

.section-heading {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 700;
  color: var(--text-heading);
  line-height: 1.2;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.section-body {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 16px;
  color: var(--text-light);
  margin-bottom: 56px;
}

.partner-categories {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.partner-cat {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.partner-cat:first-child { border-top: 1px solid rgba(255,255,255,0.06); }

.cat-icon { flex-shrink: 0; margin-top: 2px; }

.cat-name {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-heading);
  margin-bottom: 2px;
}

.cat-desc {
  font-size: 13px;
  color: var(--text-light);
}

/* SERVICES */
.services {
  background: var(--navy);
  padding: 100px 0;
}

.services-header {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  margin-bottom: 64px;
}

.services-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.05);
}

.service-card {
  background: var(--navy);
  padding: 40px 36px;
  position: relative;
  transition: background 0.2s;
}

.service-card:hover { background: var(--navy-light); }

.service-number {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--amber);
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.service-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.service-desc {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.65;
}

/* HOW IT WORKS */
.howitworks {
  background: var(--navy-light);
  padding: 100px 0;
}

.hiw-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}

.hiw-header {
  margin-bottom: 64px;
}

.steps {
  display: flex;
  gap: 0;
  align-items: flex-start;
}

.step {
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
}

.step-number {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--amber);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 20px;
}

.step-connector {
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, rgba(212,168,67,0.4), rgba(212,168,67,0.1));
  margin-bottom: 28px;
}

.step-connector-last {
  background: transparent;
}

.step-content { padding-right: 40px; }

.step-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.step-desc {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.65;
}

/* CLOSING */
.closing {
  background: var(--navy);
  padding: 100px 0 120px;
}

.closing-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 48px;
}

.closing-rule {
  width: 48px;
  height: 2px;
  background: var(--amber);
  margin-bottom: 40px;
}

.closing-quote {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  color: var(--text-heading);
  line-height: 1.3;
  letter-spacing: -0.02em;
  margin-bottom: 36px;
  font-style: normal;
}

.closing-body {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 20px;
}

/* FOOTER */
.footer {
  background: var(--navy-light);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 48px 0;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-logo {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--text-heading);
  letter-spacing: -0.02em;
}

.footer-tagline {
  font-size: 13px;
  color: var(--amber);
  margin-top: 4px;
}

.footer-meta {
  font-size: 13px;
  color: var(--text-light);
  text-align: right;
  line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-content { margin-left: 0; padding: 100px 24px; }
  .hero-headline { font-size: 32px; }
  .hero-sub { font-size: 16px; }
  .network-inner { grid-template-columns: 1fr; gap: 48px; padding: 0 24px; }
  .services-grid { grid-template-columns: 1fr; }
  .services-header, .services-grid { padding: 0 24px; }
  .steps { flex-direction: column; gap: 32px; }
  .step-content { padding-right: 0; }
  .step-connector { display: none; }
  .hiw-inner, .closing-inner { padding: 0 24px; }
  .footer-inner { flex-direction: column; gap: 20px; align-items: flex-start; }
  .footer-meta { text-align: left; }
}
@media (max-width: 480px) {
  .hero-pill-row { gap: 4px; }
  .pill { font-size: 11px; padding: 5px 10px; }
  .pill-dot { margin: 0 3px; }
}
