:root {
  --forest: #1b3222;
  --forest-mid: #243d2e;
  --forest-soft: #3d5645;
  --cream: #faf5ef;
  --cream-deep: #efe6db;
  --cream-raised: #fffcf8;
  --gold: #e69a2a;
  --gold-soft: #f3d19a;
  --ink-muted: #5c6b60;
  --coral: #c44b3f;
  --line: rgba(27, 50, 34, 0.1);
  --shadow: rgba(27, 50, 34, 0.14);
  --radius: 22px;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Plus Jakarta Sans", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--forest);
  background:
    radial-gradient(1200px 700px at 10% -10%, rgba(230, 154, 42, 0.12), transparent 55%),
    radial-gradient(900px 600px at 100% 0%, rgba(61, 86, 69, 0.18), transparent 50%),
    linear-gradient(180deg, #f7f1e8 0%, var(--cream) 40%, #f3ebe1 100%);
  line-height: 1.55;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.ambient {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.45;
  animation: drift 16s ease-in-out infinite;
}

.glow-1 {
  width: 420px;
  height: 420px;
  top: -80px;
  left: -60px;
  background: rgba(230, 154, 42, 0.35);
}

.glow-2 {
  width: 520px;
  height: 520px;
  right: -120px;
  top: 20%;
  background: rgba(36, 61, 46, 0.35);
  animation-delay: -6s;
}

.mist {
  position: absolute;
  width: 60vw;
  height: 40vh;
  border-radius: 50%;
  background: rgba(255, 252, 248, 0.35);
  filter: blur(60px);
  animation: mist-float 22s ease-in-out infinite;
}

.mist-1 {
  bottom: 10%;
  left: -10%;
}

.mist-2 {
  top: 40%;
  right: -15%;
  animation-delay: -10s;
}

@keyframes drift {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(30px, 40px) scale(1.08);
  }
}

@keyframes mist-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-28px);
  }
}

.site-header,
main,
.site-footer {
  position: relative;
  z-index: 1;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 5vw;
  backdrop-filter: blur(16px);
  background: rgba(250, 245, 239, 0.84);
  border-bottom: 1px solid var(--line);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
}

.logo img {
  border-radius: 50%;
  box-shadow: 0 6px 18px var(--shadow);
}

.nav {
  display: flex;
  gap: 1.15rem;
  align-items: center;
}

.nav > a,
.nav-dropdown-toggle {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--forest-soft);
  transition: color 0.2s, transform 0.2s;
}

.nav > a:hover,
.nav-dropdown-toggle:hover {
  color: var(--forest);
  transform: translateY(-1px);
}

.nav-cta {
  padding: 0.55rem 1rem;
  border-radius: 999px;
  background: var(--forest);
  color: var(--cream-raised) !important;
  transform: none !important;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  border: 0;
  background: none;
  padding: 0;
  cursor: pointer;
}

.nav-dropdown-toggle svg {
  transition: transform 0.2s ease;
}

.nav-dropdown.open .nav-dropdown-toggle svg {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 0.65rem);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  min-width: 240px;
  padding: 0.45rem;
  border-radius: 16px;
  background: var(--cream-raised);
  border: 1px solid var(--line);
  box-shadow: 0 18px 40px var(--shadow);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  z-index: 120;
}

.nav-dropdown.open .nav-dropdown-menu,
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.75rem 0.85rem;
  border-radius: 12px;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a[aria-current="page"] {
  background: rgba(230, 154, 42, 0.12);
}

.nav-dropdown-menu strong {
  font-size: 0.95rem;
  color: var(--forest);
}

.nav-dropdown-menu span {
  font-size: 0.8rem;
  color: var(--ink-muted);
  font-weight: 500;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--forest);
  border-radius: 2px;
}

.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem;
  align-items: center;
  min-height: calc(100vh - 72px);
  padding: 3.5rem 5vw 4rem;
  max-width: 1200px;
  margin: 0 auto;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold);
  margin: 0 0 0.85rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 8vw, 5.6rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 0.95;
  margin: 0 0 0.45rem;
  color: var(--forest);
}

.tagline {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.4vw, 1.65rem);
  font-weight: 500;
  color: var(--forest-soft);
  margin: 0 0 1rem;
}

.lead {
  max-width: 38ch;
  color: var(--ink-muted);
  font-size: 1.05rem;
  margin: 0 0 1.5rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.35rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--forest-mid), var(--forest));
  color: var(--cream-raised);
  box-shadow: 0 12px 28px rgba(27, 50, 34, 0.28);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(27, 50, 34, 0.34);
}

.btn-ghost {
  background: transparent;
  border: 1px solid rgba(27, 50, 34, 0.18);
  color: var(--forest);
}

.btn-ghost:hover {
  background: rgba(255, 252, 248, 0.7);
  transform: translateY(-2px);
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.1rem;
  list-style: none;
  margin: 0;
  padding: 0;
  color: var(--ink-muted);
  font-size: 0.86rem;
  font-weight: 600;
}

.hero-trust li {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.hero-trust li::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 3px rgba(230, 154, 42, 0.2);
}

.hero-stage {
  position: relative;
  min-height: 520px;
  perspective: 1200px;
  display: grid;
  place-items: center;
}

.stage-orbit {
  position: absolute;
  inset: 8% 6%;
  pointer-events: none;
}

.float-chip {
  position: absolute;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 252, 248, 0.88);
  border: 1px solid var(--line);
  box-shadow: 0 10px 28px var(--shadow);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--forest-mid);
  animation: chip-float 7s ease-in-out infinite;
}

.chip-a {
  top: 8%;
  left: 4%;
}

.chip-b {
  top: 28%;
  right: 0;
  animation-delay: -2.2s;
}

.chip-c {
  bottom: 18%;
  left: 8%;
  animation-delay: -4s;
}

@keyframes chip-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

.cairn-3d {
  position: absolute;
  left: 8%;
  top: 18%;
  width: 140px;
  height: 160px;
  transform-style: preserve-3d;
  animation: cairn-spin 14s linear infinite;
  z-index: 2;
}

.cairn-glow {
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(230, 154, 42, 0.35), transparent 70%);
  filter: blur(8px);
}

.stone {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(180deg, #2a4636, var(--forest));
  border-radius: 999px;
  box-shadow:
    inset 0 2px 0 rgba(255, 252, 248, 0.12),
    0 10px 20px rgba(27, 50, 34, 0.35);
}

.stone-base {
  width: 110px;
  height: 28px;
  bottom: 18px;
}

.stone-mid {
  width: 84px;
  height: 24px;
  bottom: 44px;
}

.stone-top {
  width: 58px;
  height: 20px;
  bottom: 66px;
}

.flame {
  position: absolute;
  left: 50%;
  bottom: 88px;
  width: 28px;
  height: 28px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #ffd27a, var(--gold) 55%, #c77712);
  box-shadow:
    0 0 18px rgba(230, 154, 42, 0.75),
    0 0 40px rgba(230, 154, 42, 0.35);
  animation: flame-pulse 2.4s ease-in-out infinite;
}

@keyframes cairn-spin {
  from {
    transform: rotateY(0deg) translateZ(0);
  }
  to {
    transform: rotateY(360deg) translateZ(0);
  }
}

@keyframes flame-pulse {
  0%,
  100% {
    transform: translateX(-50%) scale(1);
  }
  50% {
    transform: translateX(-50%) scale(1.08);
  }
}

.phone-3d {
  position: relative;
  width: min(280px, 70vw);
  aspect-ratio: 9 / 19;
  transform-style: preserve-3d;
  transform: rotateY(-18deg) rotateX(8deg);
  transition: transform 0.15s ease-out;
  z-index: 3;
}

.phone-bezel {
  width: 100%;
  height: 100%;
  border-radius: 36px;
  padding: 10px;
  background: linear-gradient(160deg, #2a4636, #16281c);
  box-shadow:
    0 30px 60px rgba(22, 40, 28, 0.45),
    inset 0 1px 0 rgba(255, 252, 248, 0.15);
}

.phone-screen {
  width: 100%;
  height: 100%;
  border-radius: 28px;
  overflow: hidden;
  background: var(--cream);
}

.phone-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.shot-card {
  position: absolute;
  right: -2%;
  bottom: 6%;
  width: min(250px, 48%);
  margin: 0;
  padding: 0.55rem;
  border-radius: 16px;
  background: rgba(255, 252, 248, 0.94);
  border: 1px solid var(--line);
  box-shadow: 0 22px 44px rgba(22, 40, 28, 0.28);
  transform: rotate(8deg) rotateY(-18deg) translateZ(40px);
  transform-style: preserve-3d;
  z-index: 4;
  transition: transform 0.15s ease-out;
}

.shot-card img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
}

.shot-card figcaption {
  margin-top: 0.45rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--forest-soft);
  text-align: center;
}

.section {
  padding: 5rem 5vw;
  max-width: 1180px;
  margin: 0 auto;
}

.section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 2.75rem;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.5vw, 2.7rem);
  letter-spacing: -0.02em;
  margin: 0 0 0.75rem;
  line-height: 1.15;
}

.section-sub {
  margin: 0;
  color: var(--ink-muted);
  font-size: 1.05rem;
}

.carousel-wrap {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.75rem;
  align-items: center;
}

.carousel-stage {
  position: relative;
  height: 320px;
  perspective: 1400px;
  transform-style: preserve-3d;
}

.carousel-card {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(280px, 72vw);
  padding: 1.6rem 1.45rem;
  border-radius: var(--radius);
  background: var(--cream-raised);
  border: 1px solid var(--line);
  box-shadow: 0 18px 40px var(--shadow);
  transform-style: preserve-3d;
  transition:
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.45s ease,
    filter 0.45s ease;
  cursor: pointer;
}

.carousel-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 0 0 0.55rem;
}

.carousel-card p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.95rem;
}

.card-icon {
  display: block;
  width: 42px;
  height: 42px;
  margin-bottom: 1rem;
  border-radius: 14px;
  background:
    radial-gradient(circle at 30% 30%, var(--gold-soft), transparent 55%),
    linear-gradient(145deg, var(--forest-mid), var(--forest));
  position: relative;
  box-shadow: 0 8px 18px rgba(27, 50, 34, 0.2);
}

.card-icon::after {
  content: "";
  position: absolute;
  inset: 12px 10px 14px;
  border-radius: 4px;
  background: rgba(255, 252, 248, 0.85);
}

.card-icon-lab::after {
  inset: 10px 14px;
  border-radius: 999px 999px 8px 8px;
}

.card-icon-hospital::after {
  clip-path: polygon(40% 10%, 60% 10%, 60% 40%, 90% 40%, 90% 60%, 60% 60%, 60% 90%, 40% 90%, 40% 60%, 10% 60%, 10% 40%, 40% 40%);
  inset: 8px;
  border-radius: 0;
}

.card-icon-vax::after {
  inset: 9px 18px 9px 12px;
  border-radius: 999px;
  box-shadow: 10px 0 0 rgba(255, 252, 248, 0.5);
}

.card-icon-shield::after {
  inset: 8px 11px;
  border-radius: 40% 40% 45% 45% / 20% 20% 70% 70%;
}

.card-icon-heart::after {
  inset: 12px;
  border-radius: 50%;
  background: var(--gold);
}

.carousel-nav {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--cream-raised);
  color: var(--forest);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.carousel-nav:hover {
  background: var(--gold-soft);
  transform: scale(1.05);
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.45rem;
  margin-top: 1.35rem;
}

.carousel-dots button {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 0;
  background: rgba(27, 50, 34, 0.2);
  cursor: pointer;
  padding: 0;
}

.carousel-dots button[aria-selected="true"] {
  background: var(--gold);
  transform: scale(1.2);
}

.journey-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.journey-step {
  padding: 1.5rem 1.25rem;
  border-radius: var(--radius);
  background: rgba(255, 252, 248, 0.72);
  border: 1px solid var(--line);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.journey-step:hover {
  transform: translateY(-6px) rotateX(2deg);
  box-shadow: 0 18px 36px var(--shadow);
}

.step-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--gold);
  margin-bottom: 0.65rem;
}

.journey-step h3 {
  margin: 0 0 0.45rem;
  font-size: 1.15rem;
}

.journey-step p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.94rem;
}

.privacy-panel {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: center;
  padding: 2.5rem;
  border-radius: calc(var(--radius) + 8px);
  background:
    linear-gradient(145deg, rgba(42, 70, 54, 0.96), rgba(22, 40, 28, 0.98));
  color: var(--cream);
  box-shadow: 0 28px 60px rgba(22, 40, 28, 0.35);
  overflow: hidden;
}

.privacy-panel .eyebrow {
  color: var(--gold-soft);
}

.privacy-panel h2 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  margin: 0 0 0.85rem;
  line-height: 1.15;
}

.privacy-panel p {
  color: rgba(250, 245, 239, 0.82);
  max-width: 42ch;
}

.privacy-points {
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.privacy-points li {
  position: relative;
  padding-left: 1.1rem;
  color: rgba(250, 245, 239, 0.9);
  font-weight: 500;
}

.privacy-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
}

.privacy-visual {
  display: grid;
  place-items: center;
  perspective: 900px;
}

.vault-card {
  position: relative;
  width: min(240px, 100%);
  padding: 2rem 1.5rem;
  border-radius: 24px;
  background: rgba(255, 252, 248, 0.08);
  border: 1px solid rgba(243, 209, 154, 0.25);
  text-align: center;
  transform: rotateY(-12deg) rotateX(8deg);
  transition: transform 0.15s ease-out;
  backdrop-filter: blur(8px);
}

.vault-card img {
  margin: 0 auto 1rem;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.35));
}

.vault-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: 0.3rem;
}

.vault-card span {
  color: rgba(250, 245, 239, 0.7);
  font-size: 0.85rem;
}

.lock-ring {
  position: absolute;
  inset: -18px;
  border-radius: 34px;
  border: 1px dashed rgba(243, 209, 154, 0.35);
  animation: spin-slow 18s linear infinite;
  pointer-events: none;
}

@keyframes spin-slow {
  to {
    transform: rotate(360deg);
  }
}

.family-orbit {
  position: relative;
  width: min(520px, 92vw);
  aspect-ratio: 1;
  margin: 0 auto;
  border-radius: 50%;
  border: 1px dashed rgba(27, 50, 34, 0.15);
  background:
    radial-gradient(circle at center, rgba(230, 154, 42, 0.12), transparent 55%);
}

.family-center {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.family-center img {
  margin: 0 auto 0.65rem;
  border-radius: 20px;
  box-shadow: 0 14px 30px var(--shadow);
}

.family-center p {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
}

.family-node {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 86px;
  height: 86px;
  margin: -43px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--cream-raised);
  color: var(--forest);
  font-weight: 600;
  font-size: 0.82rem;
  cursor: pointer;
  box-shadow: 0 10px 24px var(--shadow);
  transform:
    rotate(calc(var(--i) * 72deg))
    translateY(-210px)
    rotate(calc(var(--i) * -72deg));
  transition: background 0.25s, color 0.25s, transform 0.35s, box-shadow 0.25s;
}

.family-node:hover,
.family-node.active {
  background: var(--forest);
  color: var(--cream-raised);
  box-shadow: 0 14px 30px rgba(27, 50, 34, 0.3);
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
  align-items: stretch;
}

.plan-card {
  position: relative;
  padding: 1.75rem 1.45rem;
  border-radius: var(--radius);
  background: var(--cream-raised);
  border: 1px solid var(--line);
  transition: transform 0.25s ease;
}

.plan-card:hover {
  transform: translateY(-4px);
}

.plan-featured {
  border-color: rgba(230, 154, 42, 0.55);
  box-shadow: 0 22px 48px rgba(230, 154, 42, 0.16);
  transform: scale(1.02);
}

.badge {
  position: absolute;
  top: -10px;
  right: 1rem;
  background: var(--gold);
  color: var(--forest);
  font-size: 0.68rem;
  font-weight: 700;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.badge-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  text-transform: none;
}

.plan-name {
  margin: 0 0 0.25rem;
  font-weight: 700;
}

.plan-price {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.plan-price span,
.plan-alt {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink-muted);
}

.plan-alt {
  margin: 0 0 0.65rem;
}

.plan-tagline {
  color: var(--ink-muted);
  margin: 0 0 1rem;
  font-size: 0.95rem;
}

.plan-card ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--ink-muted);
  font-size: 0.92rem;
}

.plan-card li {
  margin-bottom: 0.35rem;
}

.cta-section {
  padding-bottom: 5rem;
}

.cta-card {
  text-align: center;
  padding: 2.75rem 1.75rem;
  border-radius: calc(var(--radius) + 10px);
  background:
    radial-gradient(600px 240px at 50% 0%, rgba(230, 154, 42, 0.18), transparent 60%),
    var(--cream-raised);
  border: 1px solid var(--line);
  box-shadow: 0 24px 50px var(--shadow);
}

  .cta-splash {
  margin: 0 auto 1.25rem;
  width: 140px;
  border-radius: 22px;
  box-shadow: 0 16px 36px var(--shadow);
  object-fit: cover;
  aspect-ratio: 9 / 16;
}

.cta-card h2 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  margin: 0 0 0.65rem;
}

.cta-card > p {
  max-width: 48ch;
  margin: 0 auto 1.35rem;
  color: var(--ink-muted);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 1rem;
}

.coming-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.85rem 1.25rem;
  border-radius: 999px;
  background: var(--forest);
  color: var(--cream-raised);
  font-weight: 600;
}

.fine-print {
  font-size: 0.8rem;
  color: var(--ink-muted);
  max-width: 52ch;
  margin: 0 auto;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1.5rem 5vw 2rem;
  font-size: 0.85rem;
  color: var(--ink-muted);
  border-top: 1px solid var(--line);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  color: var(--forest);
}

.footer-brand img {
  border-radius: 8px;
}

.footer-links {
  display: flex;
  gap: 1.25rem;
}

.footer-links a:hover {
  color: var(--forest);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
  transition-delay: var(--delay, 0s);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 2.5rem;
  }

  .hero-stage {
    min-height: 460px;
    order: -1;
  }

  .journey-track,
  .plan-grid,
  .privacy-panel {
    grid-template-columns: 1fr;
  }

  .plan-featured {
    transform: none;
  }

  .cairn-3d {
    left: 4%;
    top: 10%;
  }

  .cairn-3d .stone-base { width: 96px; }
  .cairn-3d .stone-mid { width: 72px; }
  .cairn-3d .stone-top { width: 50px; }

  .shot-card {
    right: 2%;
    bottom: 2%;
    width: min(200px, 46%);
  }
}

@media (max-width: 720px) {
  .nav {
    position: fixed;
    inset: 56px 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    background: var(--cream-raised);
    padding: 1rem 5vw 1.5rem;
    border-bottom: 1px solid var(--line);
    transform: translateY(-120%);
    opacity: 0;
    transition: transform 0.3s, opacity 0.3s;
    pointer-events: none;
  }

  .nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-dropdown-toggle {
    width: 100%;
    justify-content: space-between;
  }

  .nav-dropdown-menu {
    position: static;
    transform: none;
    width: 100%;
    margin-top: 0.5rem;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    display: none;
  }

  .nav-dropdown.open .nav-dropdown-menu {
    display: block;
  }

  .nav-dropdown:hover .nav-dropdown-menu {
    transform: none;
  }

  .menu-toggle {
    display: flex;
  }

  .carousel-wrap {
    grid-template-columns: 1fr;
  }

  .carousel-nav {
    display: none;
  }

  .family-node {
    width: 72px;
    height: 72px;
    margin: -36px;
    font-size: 0.72rem;
    transform:
      rotate(calc(var(--i) * 72deg))
      translateY(-150px)
      rotate(calc(var(--i) * -72deg));
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .glow,
  .mist,
  .float-chip,
  .cairn-3d,
  .flame,
  .lock-ring {
    animation: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
