*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* Reset bold defaults so DM Serif Display (only available in weight 400) renders correctly */
h1, h2, h3, h4, h5, h6 { font-weight: 400; }

:root {
  --navy: #0A3D6B;
  --navy-mid: #0D4F89;
  --blue: #1A6EBF;
  --blue-light: #2D85D8;
  --ice: #E6F1FB;
  --ice-mid: #C5DDF6;
  --frost: #F7F9FB;
  --frost-mid: #EEF4FA;
  --text: #0A1929;
  --text-mid: #2C4A6B;
  --text-muted: #5A7A9A;
  --text-light: #8AAAC8;
  --border: rgba(10,61,107,0.12);
  --border-mid: rgba(10,61,107,0.2);
  --green: #1E8449;
  --green-light: #EAF3DE;
  --red: #E24B4A;
  --red-light: #FCEBEB;
  --font-serif: 'DM Serif Display', serif;
  --font-sans: 'DM Sans', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── MAX WIDTH CONTAINER ── */
.container {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 0.5px solid var(--border);
}
.nav-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px; height: 64px;
}
.nav-logo {
  display: flex; flex-direction: column; gap: 1px;
}
.nav-logo-super {
  font-size: 9px; font-weight: 500; letter-spacing: .14em;
  color: var(--text-muted); text-transform: uppercase;
}
.nav-logo-name {
  font-size: 18px; font-weight: 500; letter-spacing: -.3px;
  color: var(--navy); line-height: 1;
}
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  font-size: 14px; color: var(--text-mid); text-decoration: none;
  font-weight: 400; transition: color .2s;
}
.nav-links a:hover { color: var(--navy); }
.nav-cta {
  background: var(--navy); color: #fff !important;
  padding: 8px 20px; border-radius: 6px;
  font-weight: 500 !important; font-size: 13px !important;
  transition: background .2s !important;
}
.nav-cta:hover { background: var(--navy-mid) !important; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column;
  justify-content: center;
  padding: 0;
  position: relative; overflow: hidden;
  background: #fff;
}
.hero-inner {
  max-width: 1280px; margin: 0 auto; width: 100%;
  padding: 120px 48px 80px;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 500px;
  align-items: center;
  gap: 0;
  min-height: 100vh;
}
.hero-content {
  display: flex; flex-direction: column; align-items: flex-start;
}
.hero-bg {
  position: absolute; inset: 0; pointer-events: none;
  overflow: hidden;
}
.hero-circle-1 {
  position: absolute; top: -180px; right: -120px;
  width: 680px; height: 680px; border-radius: 50%;
  background: radial-gradient(circle, #E6F1FB 0%, rgba(230,241,251,0) 70%);
}
.hero-circle-2 {
  position: absolute; bottom: -80px; left: 30%;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, #EEF4FA 0%, rgba(238,244,250,0) 70%);
}
.hero-grid-lines {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(10,61,107,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10,61,107,0.035) 1px, transparent 1px);
  background-size: 80px 80px;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--ice); color: var(--navy);
  font-size: 12px; font-weight: 500; letter-spacing: .06em;
  padding: 6px 14px; border-radius: 99px;
  border: 0.5px solid var(--ice-mid);
  margin-bottom: 28px;
  opacity: 0; animation: fadeUp .6s ease forwards;
}
.hero-tag-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--blue); animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(.8); }
}
.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.08;
  letter-spacing: -.5px;
  color: var(--navy);
  max-width: 680px;
  margin-bottom: 24px;
  opacity: 0; animation: fadeUp .7s ease .1s forwards;
}
.hero-headline em {
  font-style: italic; color: var(--blue);
}
.hero-sub {
  font-size: 18px; font-weight: 300; color: var(--text-mid);
  max-width: 520px; line-height: 1.65;
  margin-bottom: 44px;
  opacity: 0; animation: fadeUp .7s ease .2s forwards;
}
.hero-actions {
  display: flex; align-items: center; gap: 16px;
  opacity: 0; animation: fadeUp .7s ease .3s forwards;
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--navy); color: #fff;
  padding: 14px 28px; border-radius: 8px;
  font-size: 15px; font-weight: 500; text-decoration: none;
  transition: background .2s, transform .15s;
  border: none; cursor: pointer;
}
.btn-primary:hover { background: var(--navy-mid); transform: translateY(-1px); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--navy); font-size: 15px; font-weight: 400;
  text-decoration: none; padding: 14px 4px;
  border-bottom: 1px solid var(--ice-mid);
  transition: border-color .2s, color .2s;
}
.btn-secondary:hover { color: var(--blue); border-color: var(--blue); }
.hero-stats {
  display: flex; gap: 48px;
  margin-top: 72px;
  padding-top: 48px; border-top: 0.5px solid var(--border);
  opacity: 0; animation: fadeUp .7s ease .45s forwards;
}
.stat-num {
  font-family: var(--font-serif); font-size: 32px;
  color: var(--navy); line-height: 1;
}
.stat-label {
  font-size: 12px; color: var(--text-muted); margin-top: 4px;
  font-weight: 400; letter-spacing: .04em;
}

/* ── HERO PACKAGE 3D BOX ── */
.hero-package {
  position: absolute; right: 0; top: 50%;
  transform: translateY(-50%);
  width: 500px; height: 480px;
  opacity: 0; animation: fadeLeft .9s ease .4s forwards;
  /* 3D stage */
  perspective: 2800px;
  perspective-origin: 50% 42%;
}

/* shadows */
.pkg-shadow-far {
  position: absolute; left: 60px; bottom: 30px;
  width: 380px; height: 60px;
  background: radial-gradient(ellipse, rgba(10,61,107,0.13) 0%, transparent 70%);
  filter: blur(22px);
}
.pkg-shadow-mid {
  position: absolute; left: 90px; bottom: 36px;
  width: 300px; height: 36px;
  background: radial-gradient(ellipse, rgba(10,61,107,0.20) 0%, rgba(10,61,107,0.06) 45%, transparent 78%);
  filter: blur(10px);
}
.pkg-shadow-contact {
  position: absolute; left: 120px; bottom: 42px;
  width: 220px; height: 14px;
  background: radial-gradient(ellipse, rgba(10,61,107,0.28) 0%, rgba(10,61,107,0.08) 50%, transparent 80%);
  filter: blur(4px);
}

/* reflection mask wrapper */
.pkg-reflection-mask {
  position: absolute; inset: 0;
  opacity: 0.18;
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, transparent 58%, rgba(0,0,0,0.5) 74%, rgba(0,0,0,0.12) 90%, transparent 100%);
          mask-image: linear-gradient(180deg, transparent 0%, transparent 58%, rgba(0,0,0,0.5) 74%, rgba(0,0,0,0.12) 90%, transparent 100%);
  pointer-events: none;
}
.pkg-reflection {
  position: absolute;
  left: 250px; top: 300px;
  width: 0; height: 0;
  transform-style: preserve-3d;
  transform: rotateX(-9deg) rotateY(-22deg) scaleY(-1);
}

/* main 3D box pivot */
.pkg-hero {
  position: absolute;
  left: 250px; top: 230px;
  width: 0; height: 0;
  transform-style: preserve-3d;
  transform: rotateX(-9deg) rotateY(-22deg);
  z-index: 20;
}
.pkg-face {
  position: absolute;
  left: 50%; top: 50%;
  overflow: hidden;
}

/* Box dimensions: W=280 H=370 D=120 */
.pkg-hero .pf-front {
  width: 280px; height: 370px;
  margin-left: -140px; margin-top: -185px;
  transform: translateZ(60px);
  background: linear-gradient(170deg, #FCFEFF 0%, #F1F6FB 45%, #DEE9F3 100%);
  box-shadow:
    inset 0 0 0 0.5px rgba(10,37,64,0.10),
    inset -3px -3px 20px rgba(10,37,64,0.07),
    inset 3px 3px 16px rgba(255,255,255,0.4);
}
.pkg-hero .pf-back {
  width: 280px; height: 370px;
  margin-left: -140px; margin-top: -185px;
  transform: translateZ(-60px) rotateY(180deg);
  background: linear-gradient(170deg, #B7C7D8 0%, #8FA6BC 100%);
}
.pkg-hero .pf-right {
  width: 120px; height: 370px;
  margin-left: -60px; margin-top: -185px;
  transform: translateX(140px) rotateY(90deg);
  background: linear-gradient(180deg, #D4DEE9 0%, #BFCDDC 50%, #ADBFD0 100%);
  box-shadow: inset 5px 0 18px rgba(0,0,0,0.09), inset -3px 0 8px rgba(0,0,0,0.04);
}
.pkg-hero .pf-left {
  width: 120px; height: 370px;
  margin-left: -60px; margin-top: -185px;
  transform: translateX(-140px) rotateY(-90deg);
  background: linear-gradient(180deg, #DCE6F0 0%, #BCCCDD 100%);
}
.pkg-hero .pf-top {
  width: 280px; height: 120px;
  margin-left: -140px; margin-top: -60px;
  transform: translateY(-185px) rotateX(90deg);
  background: linear-gradient(180deg, #FFFFFF 0%, #ECF3F9 60%, #D8E3EE 100%);
  box-shadow: inset 0 -3px 10px rgba(10,37,64,0.06);
}
.pkg-hero .pf-bottom {
  width: 280px; height: 120px;
  margin-left: -140px; margin-top: -60px;
  transform: translateY(185px) rotateX(-90deg);
  background: linear-gradient(180deg, #94A8BC 0%, #6F8AA0 100%);
}

/* reflection faces */
.pkg-reflection .pf-front {
  width: 280px; height: 370px;
  margin-left: -140px; margin-top: -185px;
  transform: translateZ(60px);
  background: linear-gradient(170deg, #FCFEFF 0%, #F1F6FB 45%, #DEE9F3 100%);
}
.pkg-reflection .pf-right {
  width: 120px; height: 370px;
  margin-left: -60px; margin-top: -185px;
  transform: translateX(140px) rotateY(90deg);
  background: linear-gradient(180deg, #D4DEE9 0%, #BFCDDC 50%, #ADBFD0 100%);
}
.pkg-reflection .pf-left {
  width: 120px; height: 370px;
  margin-left: -60px; margin-top: -185px;
  transform: translateX(-140px) rotateY(-90deg);
  background: linear-gradient(180deg, #DCE6F0 0%, #BCCCDD 100%);
}

/* Front face content */
.pf-stripe-t, .pf-stripe-b {
  position: absolute; left: 0; right: 0; height: 7px; background: #0A2540;
}
.pf-stripe-t { top: 0; }
.pf-stripe-b { bottom: 0; }
.pf-brand {
  position: absolute; top: 22px; left: 0; right: 0;
  text-align: center; font-size: 9px; letter-spacing: 5px; color: #7A9ABB; font-weight: 500;
}
.pf-hairline {
  position: absolute; left: 50%; top: 42px; transform: translateX(-50%);
  width: 32px; height: 1px; background: #C9D8E6;
}
.pf-logo-c19 {
  position: absolute; top: 58px; left: 0; right: 0;
  text-align: center; font-family: 'DM Serif Display', serif;
  font-size: 88px; color: #0A2540; letter-spacing: -4px; line-height: 1;
}
.pf-logo-health {
  position: absolute; top: 154px; left: 0; right: 0;
  text-align: center; font-family: 'DM Serif Display', serif;
  font-size: 22px; font-style: italic; color: #1B3A5F; letter-spacing: 0.5px;
}
.pf-pathway {
  position: absolute; top: 193px; left: 0; right: 0;
  text-align: center; font-size: 9px; letter-spacing: 4px; color: #2B7BD6; font-weight: 600;
}
.pf-desc {
  position: absolute; top: 216px; left: 24px; right: 24px;
  text-align: center; font-size: 10px; line-height: 1.7; color: #6F8AA8;
}
.pf-cta {
  position: absolute; left: 28px; right: 28px; bottom: 72px;
  height: 50px; background: #0A2540; border-radius: 4px;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px;
}
.pf-cta-main { font-size: 9px; letter-spacing: 2.5px; color: #E8F0F9; font-weight: 600; }
.pf-cta-sub  { font-size: 8px; letter-spacing: 1px; color: #5C9CE0; }
.pf-specs {
  position: absolute; bottom: 26px; left: 0; right: 0;
  display: flex; justify-content: center; gap: 18px;
  font-size: 8px; letter-spacing: 2px; color: #8AA4BF; font-weight: 500;
}
.pf-sheen {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(118deg, rgba(255,255,255,0.18) 0%, rgba(255,255,255,0.04) 32%, transparent 55%);
}
/* right side text */
.pf-side-text {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%) rotate(90deg);
  white-space: nowrap; font-size: 9px; letter-spacing: 6px;
  color: rgba(10,37,64,0.40); font-weight: 500;
}
/* top face mark */
.pf-top-mark {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px;
}
.pf-top-big {
  font-family: 'DM Serif Display', serif;
  font-size: 26px; letter-spacing: -1px; color: rgba(10,37,64,0.28); line-height: 1;
}
.pf-top-small {
  font-size: 7px; letter-spacing: 4px; font-weight: 500; color: rgba(10,37,64,0.32);
}
.marker-list { display: flex; flex-direction: column; gap: 10px; }
.marker-row { display: flex; flex-direction: column; gap: 4px; }
.marker-head {
  display: flex; justify-content: space-between;
  font-size: 12px; color: var(--text-mid);
}
.marker-val { font-weight: 500; }
.marker-status-ok { color: var(--green); font-size: 11px; }
.marker-status-warn { color: #C07A00; font-size: 11px; }
.marker-bar { height: 3px; border-radius: 2px; background: var(--frost-mid); }
.marker-fill { height: 3px; border-radius: 2px; }
.fill-ok { background: var(--green); }
.fill-warn { background: #DCA820; }
.fill-navy { background: var(--navy); }
.hero-card-note {
  margin-top: 16px; padding-top: 16px; border-top: 0.5px solid var(--border);
  font-size: 11px; color: var(--text-muted); line-height: 1.5;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeLeft {
  from { opacity: 0; transform: translate(20px, -50%); }
  to { opacity: 1; transform: translate(0, -50%); }
}

/* ── SECTION COMMONS ── */
section { padding: 100px 0; }
section .container { padding: 0 48px; }
.section-tag {
  display: inline-block;
  font-size: 11px; font-weight: 500; letter-spacing: .1em;
  text-transform: uppercase; color: var(--blue);
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 48px);
  color: var(--navy); line-height: 1.12;
  letter-spacing: -.3px;
  max-width: 600px; margin-bottom: 16px;
}
.section-sub {
  font-size: 16px; font-weight: 300; color: var(--text-mid);
  max-width: 520px; line-height: 1.7;
  margin-bottom: 56px;
}

/* ── HOW IT WORKS ── */
.how { background: var(--frost); }
.steps {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.step {
  background: #fff; padding: 36px 28px;
  position: relative; overflow: hidden;
  transition: transform .2s;
}
.step:hover { transform: translateY(-3px); }
.step:first-child { border-radius: 16px 0 0 16px; }
.step:last-child { border-radius: 0 16px 16px 0; }
.step-num {
  font-family: var(--font-serif); font-size: 48px;
  color: var(--ice-mid); line-height: 1; margin-bottom: 24px;
  display: block;
}
.step-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--ice); display: flex; align-items: center;
  justify-content: center; margin-bottom: 20px;
}
.step-icon svg { width: 20px; height: 20px; }
.step-title {
  font-size: 16px; font-weight: 500; color: var(--navy);
  margin-bottom: 10px;
}
.step-desc {
  font-size: 14px; font-weight: 300; color: var(--text-muted); line-height: 1.6;
}
.step-connector {
  position: absolute; right: -1px; top: 50%;
  width: 2px; height: 40px;
  transform: translateY(-50%);
  background: var(--ice-mid);
}
.step:last-child .step-connector { display: none; }

/* ── MARKERS ── */
.markers { background: #fff; }
.markers-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.markers-intro { position: sticky; top: 100px; }
.pathway-visual {
  background: var(--frost); border-radius: 16px;
  padding: 32px; border: 0.5px solid var(--border);
}
.pathway-label {
  font-size: 11px; font-weight: 500; letter-spacing: .1em;
  text-transform: uppercase; color: var(--text-muted); margin-bottom: 24px;
}
.pathway-chain {
  display: flex; flex-direction: column; gap: 0;
}
.pathway-node {
  display: flex; align-items: center; gap: 16px;
  padding: 12px 16px;
  background: #fff; border: 0.5px solid var(--border);
  border-radius: 10px;
  transition: border-color .2s, background .2s;
  cursor: default;
}
.pathway-node:hover {
  border-color: var(--blue); background: var(--ice);
}
.pathway-arrow {
  display: flex; justify-content: center;
  padding: 4px 0; color: var(--text-light); font-size: 16px;
}
.node-dot {
  width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0;
}
.dot-blue { background: var(--blue); }
.dot-navy { background: var(--navy); }
.dot-green { background: var(--green); }
.dot-amber { background: #DCA820; }
.node-name {
  font-size: 13px; font-weight: 500; color: var(--navy); flex: 1;
}
.node-tag {
  font-size: 11px; padding: 2px 8px; border-radius: 99px;
  font-weight: 500;
}
.tag-core { background: var(--ice); color: var(--navy); }
.tag-safety { background: var(--green-light); color: var(--green); }
.tag-signal { background: #FEF9E7; color: #C07A00; }
.markers-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}
.marker-card {
  background: var(--frost); border: 0.5px solid var(--border);
  border-radius: 12px; padding: 20px;
  transition: border-color .2s, transform .15s;
}
.marker-card:hover { border-color: var(--blue); transform: translateY(-2px); }
.mc-name { font-size: 14px; font-weight: 500; color: var(--navy); margin-bottom: 4px; }
.mc-desc { font-size: 12px; color: var(--text-muted); line-height: 1.5; }
.mc-badge {
  display: inline-block; font-size: 10px; font-weight: 500;
  padding: 2px 7px; border-radius: 99px; margin-top: 8px;
}

/* ── WAITLIST ── */
.waitlist {
  background: var(--navy);
  position: relative; overflow: hidden;
}
.waitlist-bg {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.waitlist-inner {
  position: relative; max-width: 600px; margin: 0 auto; text-align: center;
}
.waitlist .section-tag { color: #85B7EB; }
.waitlist .section-title { color: #fff; max-width: none; margin: 0 auto 16px; }
.waitlist .section-sub { color: rgba(255,255,255,0.6); max-width: none; margin: 0 auto 44px; }
.waitlist-form {
  display: flex; gap: 12px; max-width: 480px; margin: 0 auto 24px;
}
.waitlist-input {
  flex: 1; padding: 14px 18px; border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.08);
  color: #fff; font-size: 15px; font-family: var(--font-sans);
  outline: none; transition: border-color .2s;
}
.waitlist-input::placeholder { color: rgba(255,255,255,0.4); }
.waitlist-input:focus { border-color: rgba(255,255,255,0.5); }
.btn-white {
  background: #fff; color: var(--navy);
  padding: 14px 24px; border-radius: 8px;
  font-size: 15px; font-weight: 500; border: none; cursor: pointer;
  transition: background .2s, transform .15s; white-space: nowrap;
  font-family: var(--font-sans);
}
.btn-white:hover { background: var(--ice); transform: translateY(-1px); }
.waitlist-note {
  font-size: 13px; color: rgba(255,255,255,0.4); line-height: 1.5;
}
.waitlist-waves {
  display: flex; align-items: center; justify-content: center;
  gap: 32px; margin-top: 56px; padding-top: 48px;
  border-top: 0.5px solid rgba(255,255,255,0.1);
}
.wave-item { text-align: center; }
.wave-name { font-size: 12px; color: rgba(255,255,255,0.5); margin-bottom: 4px; }
.wave-cond { font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.85); }
.wave-spots { font-size: 11px; color: rgba(255,255,255,0.4); margin-top: 2px; }
.wave-div { width: 0.5px; height: 40px; background: rgba(255,255,255,0.1); }

/* ── SOCIAL PROOF ── */
.proof { background: var(--frost); }
.testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testi {
  background: #fff; border: 0.5px solid var(--border);
  border-radius: 16px; padding: 28px;
}
.testi-quote {
  font-size: 15px; font-weight: 300; color: var(--text-mid);
  line-height: 1.7; margin-bottom: 24px; font-style: italic;
}
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--ice); display: flex; align-items: center;
  justify-content: center; font-size: 14px; font-weight: 500; color: var(--navy);
  flex-shrink: 0;
}
.testi-name { font-size: 13px; font-weight: 500; color: var(--navy); }
.testi-role { font-size: 12px; color: var(--text-muted); }
.proof-note {
  text-align: center; margin-top: 32px;
  font-size: 13px; color: var(--text-muted);
  padding: 16px; background: var(--ice);
  border-radius: 8px; border: 0.5px solid var(--ice-mid);
  max-width: 480px; margin-left: auto; margin-right: auto;
}

/* ── FOOTER ── */
footer {
  background: #fff;
  border-top: 0.5px solid var(--border);
  padding: 48px 0;
}
.footer-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 48px;
  display: flex; align-items: center; justify-content: space-between;
}
.footer-logo-name {
  font-size: 16px; font-weight: 500; color: var(--navy);
  letter-spacing: -.2px;
}
.footer-logo-sub {
  font-size: 11px; color: var(--text-muted); margin-top: 2px;
  letter-spacing: .06em;
}
.footer-links { display: flex; gap: 28px; }
.footer-links a {
  font-size: 13px; color: var(--text-muted); text-decoration: none;
  transition: color .2s;
}
.footer-links a:hover { color: var(--navy); }
.footer-legal { font-size: 12px; color: var(--text-light); }

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 960px) {
  .nav-inner { padding: 0 24px; }
  .nav-links a:not(.nav-cta):not(:last-child) { display: none; }
  .hero-inner {
    grid-template-columns: 1fr;
    padding: 100px 24px 60px;
    min-height: auto;
  }
  .hero-package {
    position: relative; top: auto; right: auto; transform: none;
    width: 100%; height: 320px;
    display: flex; align-items: center; justify-content: center;
    margin-top: 48px;
    opacity: 0; animation: fadeUp .7s ease .5s forwards;
    perspective: 2800px;
    perspective-origin: 50% 42%;
  }
  .pkg-hero {
    left: 50%; top: 200px;
    transform: rotateX(-9deg) rotateY(-22deg) scale(0.62);
  }
  .pkg-reflection { left: 50%; top: 370px; }
  .pkg-shadow-far  { left: 50%; transform: translateX(-50%); bottom: 10px; width: 260px; }
  .pkg-shadow-mid  { left: 50%; transform: translateX(-50%); bottom: 16px; width: 200px; }
  .pkg-shadow-contact { left: 50%; transform: translateX(-50%); bottom: 22px; width: 150px; }
  section .container { padding: 0 24px; }
  .steps { grid-template-columns: 1fr 1fr; }
  .step:nth-child(2) { border-radius: 0 16px 0 0; }
  .step:nth-child(3) { border-radius: 0 0 0 16px; }
  .step:first-child { border-radius: 16px 0 0 0; }
  .step:last-child { border-radius: 0 0 16px 0; }
  .markers-layout { grid-template-columns: 1fr; gap: 48px; }
  .markers-intro { position: static; }
  .testimonials { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; gap: 24px; text-align: center; padding: 0 24px; }
  .hero-stats { gap: 32px; }
  .waitlist-form { flex-direction: column; }
}
