/* ─── TOKENS ───────────────────────────────────────────── */
:root {
  --navy:       #0B1B2B;
  --navy-mid:   #1E3A5F;
  --teal:       #0D7377;
  --teal-light: #0f9296;
  --mint:       #14FFEC;
  --white:      #FFFFFF;
  --off-white:  #F6F8FA;
  --text-body:  #2E3F50;
  --text-muted: #5C6F82;
  --border:     #D4DCE6;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;
  --font-mono:    'JetBrains Mono', monospace;
  --max-w: 1200px;
  --section-pad: 88px;
  --transition: 0.22s ease;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--text-body); background: var(--white); line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ─── UTILITIES ─────────────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 32px; }
.section { padding: var(--section-pad) 0; }
.section--dark { background: var(--navy); color: var(--white); }
.section--mid  { background: var(--navy-mid); color: var(--white); }
.section--off  { background: var(--off-white); }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 14px;
  display: block;
}
.eyebrow--light { color: var(--mint); }

h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.18; }
.display-lg { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 600; letter-spacing: -0.01em; }
.display-md { font-size: clamp(1.4rem, 2.5vw, 2rem); font-weight: 500; }

/* ─── BUTTONS ───────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px;
  border-radius: 4px;
  font-family: var(--font-body); font-size: 0.93rem; font-weight: 500;
  cursor: pointer; border: 2px solid transparent;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
}
.btn:hover { transform: translateY(-1px); }
.btn--primary { background: var(--teal); color: var(--white); border-color: var(--teal); }
.btn--primary:hover { background: var(--teal-light); border-color: var(--teal-light); }
.btn--outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.4); }
.btn--outline:hover { border-color: var(--white); }
.btn--outline-dark { background: transparent; color: var(--navy); border-color: var(--navy-mid); }
.btn--outline-dark:hover { border-color: var(--teal); color: var(--teal); }
.btn--sm { padding: 9px 18px; font-size: 0.85rem; }

/* ─── NAV ───────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(11,27,43,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: box-shadow var(--transition);
}
.nav.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.3); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.nav__logo { display: flex; align-items: center; }
.nav__logo svg { display: block; }
.nav__logo:hover { opacity: 0.85; }

/* Page nav links */
.nav__pages {
  display: flex; align-items: center; gap: 4px;
  flex: 1; justify-content: center;
}
.nav__page-link {
  color: rgba(255,255,255,0.65);
  font-size: 0.82rem; font-weight: 500;
  padding: 6px 11px;
  border-radius: 4px;
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
  cursor: pointer;
}
.nav__page-link:hover { color: var(--white); background: rgba(255,255,255,0.07); }
.nav__page-link.active { color: var(--mint); }

.nav__cta { margin-left: 12px; padding: 9px 18px; font-size: 0.85rem; flex-shrink: 0; }
.nav__hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; }
.nav__hamburger span { display: block; width: 22px; height: 2px; background: var(--white); border-radius: 2px; transition: transform var(--transition), opacity var(--transition); }

/* Mobile drawer */
.nav__mobile {
  display: none; position: fixed; top: 68px; left: 0; right: 0; bottom: 0;
  background: var(--navy); z-index: 99; flex-direction: column; padding: 32px 24px; gap: 0;
}
.nav__mobile.open { display: flex; }
.nav__mobile-link {
  color: rgba(255,255,255,0.8); font-size: 1.1rem; font-weight: 500;
  padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,0.08);
  display: block; cursor: pointer;
}
.nav__mobile-cta { margin-top: 28px; }

/* ─── VIDEO HERO ─────────────────────────────────────────── */
.hero {
  position: relative; width: 100%;
  min-height: 100vh; overflow: hidden; display: flex; flex-direction: column;
}
.hero__video-wrap {
  position: relative; width: 100%;
  height: calc(55vh - 20px); min-height: 360px;
  overflow: hidden; flex-shrink: 0;
}
.hero__video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center 60%;
}
.hero__video-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom,
    rgba(11,27,43,0.08) 0%,
    rgba(11,27,43,0.18) 40%,
    rgba(11,27,43,0.75) 82%,
    rgba(11,27,43,1.0)  100%);
}
.hero__content-wrap { background: var(--navy); flex: 1; }
.hero__content-inner {
  max-width: var(--max-w); margin: -10px auto 0;
  padding: 0 40px 52px;
  display: grid; grid-template-columns: 1fr 340px; gap: 56px; align-items: start;
}
.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 600;
  color: var(--white); line-height: 1.14; letter-spacing: -0.02em; margin-bottom: 20px;
}
.hero__headline em { font-style: normal; color: var(--mint); }
.hero__sub {
  font-size: 1.05rem; font-weight: 600; line-height: 1.7;
  color: var(--white); margin-bottom: 24px; max-width: 540px;
}
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__panel {
  background: rgba(11,27,43,0.95);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 8px; padding: 25px 26px 28px; margin-top: 10px;
}
.hero__panel-label {
  font-family: var(--font-display); font-size: 1.1rem; font-weight: 700;
  color: var(--mint); margin-bottom: 18px;
}
.hero__stat { margin-bottom: 11px; padding-bottom: 11px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.hero__stat:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }
.hero__stat-num {
  font-family: var(--font-mono); font-size: 1.6rem; font-weight: 500;
  color: var(--mint); line-height: 1; margin-bottom: 4px;
}
.hero__stat-desc { font-size: 0.86rem; color: var(--white); line-height: 1.5; }

/* ─── STANDARD HERO (inner pages) ──────────────────────── */
.page-hero {
  background: var(--navy); padding: 120px 0 72px; position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(13,115,119,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero .container { position: relative; }
.page-hero__sub {
  font-size: 1.1rem; color: rgba(255,255,255,0.72); line-height: 1.7; max-width: 680px; margin-top: 18px;
}

/* ─── CARDS ─────────────────────────────────────────────── */
.card-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 6px; padding: 32px 28px;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.card:hover { border-color: var(--teal); box-shadow: 0 4px 24px rgba(13,115,119,0.1); }
.card--dark {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
}
.card--dark:hover { background: rgba(13,115,119,0.1); border-color: rgba(13,115,119,0.4); }
.card__tag {
  font-family: var(--font-mono); font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 14px; display: block;
}
.card--dark .card__tag { color: var(--mint); }
.card h3 { font-family: var(--font-display); font-size: 1.15rem; font-weight: 600; color: var(--navy); margin-bottom: 12px; }
.card--dark h3 { color: var(--white); }
.card p { font-size: 0.92rem; color: var(--text-muted); line-height: 1.65; }
.card--dark p { color: rgba(255,255,255,0.72); }
.card__positioning {
  font-family: var(--font-display); font-size: 0.95rem; font-style: italic;
  color: var(--teal); margin-top: 14px; padding-top: 14px;
  border-top: 1px solid var(--border);
}
.card--dark .card__positioning { color: var(--mint); border-top-color: rgba(255,255,255,0.1); }

/* ─── PILLAR ROWS ───────────────────────────────────────── */
.pillar-list { display: flex; flex-direction: column; gap: 0; border: 1px solid var(--border); border-radius: 8px; overflow: hidden; }
.pillar {
  display: grid; grid-template-columns: 64px 1fr;
  background: var(--white); border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}
.pillar:last-child { border-bottom: none; }
.pillar:hover { background: #f0f6fc; }
.pillar__num {
  background: var(--navy); color: var(--mint);
  font-family: var(--font-mono); font-size: 0.95rem; font-weight: 500;
  display: flex; align-items: center; justify-content: center;
}
.pillar__content { padding: 28px 32px; }
.pillar__content h3 { font-family: var(--font-display); font-size: 1.15rem; font-weight: 600; color: var(--navy); margin-bottom: 8px; }
.pillar__content p { font-size: 0.92rem; color: var(--text-muted); line-height: 1.65; }

/* ─── PROOF POINTS ──────────────────────────────────────── */
.proof-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 6px; padding: 32px 28px;
  border-left: 4px solid var(--teal);
  transition: box-shadow var(--transition);
}
.proof-card:hover { box-shadow: 0 4px 20px rgba(13,115,119,0.1); }
.proof-card__label {
  font-family: var(--font-mono); font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 10px; display: block;
}
.proof-card h3 { font-family: var(--font-display); font-size: 1.05rem; font-weight: 600; color: var(--navy); margin-bottom: 12px; }
.proof-card p { font-size: 0.91rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 12px; }
.proof-card__proof {
  font-size: 0.82rem; font-weight: 600; color: var(--teal);
  font-family: var(--font-mono); letter-spacing: 0.04em;
}

/* ─── ENGAGEMENT STAGES ─────────────────────────────────── */
.stage-row {
  display: grid; grid-template-columns: 80px 1fr auto;
  gap: 28px; align-items: start;
  background: var(--white); border: 1px solid var(--border);
  border-radius: 6px; padding: 28px 32px; margin-bottom: 10px;
  transition: border-color var(--transition);
}
.stage-row:hover { border-color: var(--teal); }
.stage-row__num {
  font-family: var(--font-display); font-size: 2rem; font-weight: 600;
  color: var(--teal); line-height: 1;
}
.stage-row h3 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 600; color: var(--navy); margin-bottom: 8px; }
.stage-row p { font-size: 0.91rem; color: var(--text-muted); line-height: 1.65; }
.stage-row__price {
  text-align: right; white-space: nowrap;
  font-size: 0.82rem; color: var(--text-muted);
  font-family: var(--font-mono);
}
.stage-row__price strong { display: block; font-size: 0.92rem; color: var(--navy); }

/* ─── PRICING TABLE ─────────────────────────────────────── */
.price-table { width: 100%; border-collapse: collapse; border-radius: 6px; overflow: hidden; }
.price-table th {
  background: var(--navy); color: var(--mint);
  font-family: var(--font-mono); font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 14px 20px; text-align: left;
}
.price-table td {
  padding: 14px 20px; font-size: 0.9rem; color: var(--text-body);
  border-bottom: 1px solid var(--border); background: var(--white);
  vertical-align: top; line-height: 1.55;
}
.price-table tr:last-child td { border-bottom: none; }
.price-table tr:nth-child(even) td { background: var(--off-white); }
.price-table td:first-child { font-weight: 600; color: var(--navy); }

/* ─── CALLOUT BAR ───────────────────────────────────────── */
.callout {
  background: rgba(13,115,119,0.12); border: 1px solid rgba(13,115,119,0.3);
  border-radius: 6px; padding: 28px 36px; margin: 48px 0 0;
}
.callout--dark {
  background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.12);
}
.callout p {
  font-family: var(--font-display); font-size: 1.1rem; font-weight: 500;
  color: var(--navy); line-height: 1.55;
}
.callout--dark p { color: var(--white); }
.callout p span { color: var(--teal); }
.callout--dark p span { color: var(--mint); }
.callout a { color: var(--teal); font-weight: 600; }
.callout--dark a { color: var(--mint); }

/* ─── SPLIT LAYOUT ──────────────────────────────────────── */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.split--60-40 { grid-template-columns: 3fr 2fr; }
.split__body { font-size: 1rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 16px; }
.split__body--white { color: rgba(255,255,255,0.72); }

/* ─── SECTION HEADER ────────────────────────────────────── */
.section-hdr { margin-bottom: 52px; }
.section-hdr--center { text-align: center; max-width: 680px; margin-left: auto; margin-right: auto; margin-bottom: 52px; }
.section-hdr p { font-size: 1rem; color: var(--text-muted); line-height: 1.7; margin-top: 14px; }
.section-hdr--dark p { color: rgba(255,255,255,0.65); }
.section-hdr--dark h2 { color: var(--white); }

/* ─── FOOTER ────────────────────────────────────────────── */
.footer { background: #060f18; color: rgba(255,255,255,0.45); padding: 44px 0 32px; border-top: 1px solid rgba(255,255,255,0.07); }
.footer__inner { display: flex; justify-content: space-between; align-items: center; margin-bottom: 28px; flex-wrap: wrap; gap: 20px; }
.footer__nav { display: flex; gap: 24px; flex-wrap: wrap; }
.footer__nav a { font-size: 0.82rem; color: rgba(255,255,255,0.4); transition: color var(--transition); cursor: pointer; }
.footer__nav a:hover { color: rgba(255,255,255,0.75); }
.footer__divider { border: none; border-top: 1px solid rgba(255,255,255,0.07); margin-bottom: 20px; }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.footer__copy { font-size: 0.78rem; }
.footer__legal { font-size: 0.78rem; display: flex; align-items: center; gap: 16px; }
.footer__li a { display: flex; align-items: center; opacity: 0.5; transition: opacity var(--transition); }
.footer__li a:hover { opacity: 1; }

/* ─── FORM ──────────────────────────────────────────────── */
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%; background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15); border-radius: 4px;
  color: var(--white); font-family: var(--font-body); font-size: 0.92rem;
  padding: 11px 14px; outline: none; transition: border-color var(--transition);
  -webkit-appearance: none;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus { border-color: var(--teal); }
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(255,255,255,0.32); }
.contact-form label {
  display: block; font-size: 0.8rem; font-weight: 500; color: var(--white);
  letter-spacing: 0.04em; margin-bottom: 7px;
}
.contact-form .form-field { margin-bottom: 18px; }
.contact-form option { background: var(--navy); }

/* ─── RESPONSIVE ────────────────────────────────────────── */
@media (max-width: 1024px) {
  .card-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .hero__content-inner { grid-template-columns: 1fr; gap: 40px; }
  .split, .split--60-40 { grid-template-columns: 1fr; gap: 48px; }
}
@media (max-width: 768px) {
  :root { --section-pad: 60px; }
  .nav__pages { display: none; }
  .nav__cta { display: none; }
  .nav__hamburger { display: flex; }
  .card-grid-3, .card-grid-2 { grid-template-columns: 1fr; }
  .stage-row { grid-template-columns: 60px 1fr; }
  .stage-row__price { display: none; }
  .hero__content-inner { padding: 20px 20px 40px; }
  .hero__video-wrap { height: 42vh; min-height: 260px; }
  .footer__inner { flex-direction: column; align-items: flex-start; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
}
