/* ============================================================
   DESIGN TOKENS — Lavender Sky / Launch theme
   ============================================================ */
:root {
  /* Gradient sky surfaces */
  --sky-top: #EEF1FF;       /* periwinkle white */
  --sky-mid: #F2ECFF;       /* soft lavender */
  --sky-low: #FBF1F3;       /* faint blush */
  --sky-warm: #FFF3EC;      /* peach hint */
  --surface: #FFFFFF;
  --surface-soft: #F8F6FF;
  --surface-lav: #EDE9FE;
  --surface-lav-2: #E6E1FB;

  /* Ink text */
  --ink: #1C1A2E;
  --ink-80: rgba(28, 26, 46, 0.82);
  --ink-70: rgba(28, 26, 46, 0.70);
  --ink-50: rgba(28, 26, 46, 0.52);
  --ink-30: rgba(28, 26, 46, 0.32);

  /* Violet / indigo primary */
  --violet: #4F46E5;
  --violet-bright: #6366F1;
  --violet-deep: #4338CA;
  --violet-soft: #EEF0FF;
  --violet-dim: rgba(99, 102, 241, 0.12);

  /* Brand blue (logo) */
  --blue: #2563EB;
  --blue-bright: #4A8DFF;

  /* Warm accents */
  --coral: #FB7185;
  --peach: #FDBA74;
  --amber: #F59E0B;
  --amber-dim: rgba(245, 158, 11, 0.14);

  /* Emerald — success / proof */
  --emerald: #059669;
  --emerald-bright: #10B981;
  --emerald-dim: rgba(16, 185, 129, 0.14);

  /* Borders */
  --b: rgba(28, 26, 46, 0.10);
  --b-soft: rgba(28, 26, 46, 0.06);
  --b-violet: rgba(99, 102, 241, 0.28);

  /* Shadows — soft, violet-tinted */
  --shadow-sm: 0 6px 24px rgba(79, 70, 229, 0.08);
  --shadow-md: 0 18px 50px rgba(79, 70, 229, 0.13);
  --shadow-lg: 0 30px 80px rgba(79, 70, 229, 0.18);
  --shadow-card: 0 20px 60px rgba(79, 70, 229, 0.14);
  --violet-glow: 0 24px 60px rgba(79, 70, 229, 0.32);
  --emerald-glow: 0 20px 50px rgba(16, 185, 129, 0.28);

  /* Back-compat aliases (legacy class refs) */
  --light-0: var(--surface);
  --light-1: var(--surface-soft);
  --light-2: var(--surface-lav);
  --b-light: var(--b);
  --b-light-md: var(--b);

  /* Typography */
  --sans: Inter, system-ui, -apple-system, sans-serif;
  --serif: Newsreader, Georgia, serif;

  /* Layout */
  --max: 1200px;
  --r: 12px;
  --r-lg: 20px;
  --r-xl: 30px;
}

/* ============================================================
   RESET + BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  background: var(--sky-mid);
}

body {
  position: relative;
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: transparent;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

/* Fixed gradient sky layer — reliable paint without background-attachment:fixed */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(1100px 700px at 85% -5%, rgba(253, 186, 116, 0.22), transparent 60%),
    radial-gradient(900px 700px at 5% 12%, rgba(99, 102, 241, 0.18), transparent 55%),
    radial-gradient(1000px 800px at 50% 108%, rgba(251, 113, 133, 0.14), transparent 60%),
    linear-gradient(180deg, var(--sky-top) 0%, var(--sky-mid) 40%, var(--sky-low) 75%, var(--sky-warm) 100%);
}

body.nav-open { overflow: hidden; }

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; border: 0; background: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
p { margin: 0; }

h1, h2, h3, h4 {
  margin: 0;
  font-family: var(--serif);
  line-height: 1.02;
  font-weight: 700;
  letter-spacing: -0.015em;
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }
.reveal-d4 { transition-delay: 0.32s; }

/* ============================================================
   LAYOUT HELPERS
   ============================================================ */
.shell {
  width: min(calc(100% - 48px), var(--max));
  margin-inline: auto;
}

.section-dark, .section-deep, .section-light { background: transparent; }

/* ============================================================
   DECORATIVE SKY — clouds + sparkles
   ============================================================ */
.cloud {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.6) 45%, rgba(255, 255, 255, 0) 72%);
  filter: blur(4px);
  pointer-events: none;
  z-index: 0;
}

.sparkle {
  position: absolute;
  color: var(--violet-bright);
  pointer-events: none;
  z-index: 1;
  animation: twinkle 4s ease-in-out infinite;
}
.sparkle svg { width: 100%; height: 100%; display: block; }
.sparkle.s2 { animation-delay: -1.2s; color: var(--coral); }
.sparkle.s3 { animation-delay: -2.4s; color: var(--peach); }

@keyframes twinkle {
  0%, 100% { opacity: 0.25; transform: scale(0.85) rotate(0deg); }
  50%      { opacity: 1;    transform: scale(1.1) rotate(20deg); }
}

/* ============================================================
   TYPOGRAPHY UTILITIES
   ============================================================ */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--violet);
}

.eyebrow::before {
  content: '';
  display: inline-block;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
}

.eyebrow.amber { color: var(--amber); }
.eyebrow.emerald { color: var(--emerald); }

/* ============================================================
   SITE HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  min-height: 78px;
  padding-inline: max(28px, calc((100vw - var(--max)) / 2));
  background: rgba(244, 243, 255, 0.72);
  border-bottom: 1px solid rgba(99, 102, 241, 0.12);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  transition: box-shadow 0.3s ease, background 0.3s ease;
}

.site-header.is-scrolled {
  background: rgba(244, 243, 255, 0.85);
  box-shadow: 0 8px 32px rgba(79, 70, 229, 0.10);
}

/* Brand */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
}

.brand-logo {
  height: 50px;
  width: auto;
  flex-shrink: 0;
  display: block;
}

.brand-text {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  line-height: 1;
}

.brand-text strong {
  font-size: 1.24rem;
  font-weight: 800;
  color: var(--ink);
  font-family: var(--sans);
  letter-spacing: -0.025em;
}

.brand-text span {
  font-size: 1.24rem;
  font-weight: 800;
  color: var(--violet);
  font-family: var(--sans);
  text-transform: none;
  letter-spacing: -0.025em;
}

/* Nav */
.site-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 5px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(99, 102, 241, 0.14);
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
}

.nav-item { position: relative; display: flex; }

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-height: 36px;
  padding: 0 14px;
  color: var(--ink-70);
  border-radius: 9px;
  font-size: 0.88rem;
  font-weight: 700;
  white-space: nowrap;
  transition: color 0.15s ease, background 0.15s ease;
}
.nav-link svg { width: 13px; height: 13px; transition: transform 0.2s ease; }

.nav-link:hover,
.nav-item:focus-within > .nav-link,
.nav-link[aria-current="page"] {
  color: var(--violet);
  background: var(--violet-soft);
}
.has-dropdown:hover .nav-link svg,
.has-dropdown:focus-within .nav-link svg { transform: rotate(180deg); }

/* Dropdown */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 220px;
  margin-top: 8px;
  padding: 8px;
  display: grid;
  gap: 2px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid var(--b-violet);
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
  z-index: 120;
}
/* invisible bridge so the menu doesn't close when the cursor crosses the gap */
.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -12px; left: 0; right: 0; height: 12px;
}
.has-dropdown:hover .dropdown-menu,
.has-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.dropdown-menu a {
  display: block;
  padding: 9px 12px;
  border-radius: 9px;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--ink-70);
  white-space: nowrap;
  transition: color 0.12s ease, background 0.12s ease;
}
.dropdown-menu a:hover,
.dropdown-menu a[aria-current="page"] {
  color: var(--violet);
  background: var(--violet-soft);
}

/* Header CTA */
.header-cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 20px;
  color: white;
  background: var(--violet);
  border-radius: 12px;
  font-size: 0.88rem;
  font-weight: 800;
  box-shadow: var(--violet-glow);
  transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}

.header-cta:hover {
  background: var(--violet-deep);
  transform: translateY(-1px);
  box-shadow: 0 26px 64px rgba(79, 70, 229, 0.42);
}

.header-cta svg { width: 15px; height: 15px; }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  justify-self: end;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--violet);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(99, 102, 241, 0.18);
  border-radius: 12px;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: calc(100vh - 78px);
  display: grid;
  grid-template-columns: 1fr min(540px, 44%);
  gap: 48px;
  align-items: center;
  padding-block: 80px 110px;
  overflow: hidden;
}

/* faint roadmap grid removed; keep hooks harmless */
.hero-bg, .hero-grid { display: none; }

.hero-copy {
  position: relative;
  z-index: 3;
}

.hero-headline {
  font-size: clamp(3.2rem, 5.2vw, 5.6rem);
  font-weight: 700;
  line-height: 0.98;
  color: var(--ink);
  margin-bottom: 26px;
}

.hero-headline em {
  font-style: italic;
  color: var(--violet);
  position: relative;
}

.hero-lede {
  font-size: 1.18rem;
  line-height: 1.62;
  color: var(--ink-70);
  max-width: 520px;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 44px;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.stat-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(99, 102, 241, 0.16);
  border-radius: 99px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink-70);
  box-shadow: var(--shadow-sm);
}

.stat-pill strong { color: var(--violet); font-weight: 800; }

/* ---- Hero sky visual ---- */
.hero-visual {
  position: relative;
  z-index: 2;
  min-height: 540px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-sky {
  position: absolute;
  inset: 0;
}

/* Soft sun glow */
.sun-glow {
  position: absolute;
  top: 4%;
  right: 6%;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%,
    rgba(253, 224, 170, 0.95) 0%,
    rgba(253, 186, 116, 0.55) 32%,
    rgba(251, 146, 120, 0.22) 55%,
    rgba(251, 146, 120, 0) 72%);
  will-change: transform;
}
.sun-glow::after {
  content: '';
  position: absolute;
  inset: 28%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 240, 210, 0.95), rgba(253, 200, 140, 0.6));
  box-shadow: 0 0 60px rgba(253, 186, 116, 0.6);
}

/* Hero clouds */
.hero-visual .cloud { z-index: 1; }
.hero-cloud-a { width: 240px; height: 110px; top: 18%; left: -6%; }
.hero-cloud-b { width: 300px; height: 130px; bottom: 14%; right: -8%; }
.hero-cloud-c { width: 180px; height: 90px;  top: 50%; left: 30%; opacity: 0.85; }

/* Launch trail + rocket */
.launch-wrap {
  position: absolute;
  inset: 0;
  z-index: 2;
  will-change: transform;
}

.launch-trail { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; }
.trail-path {
  stroke-dasharray: 1 14;
  stroke-linecap: round;
  animation: trail-drift 5s linear infinite;
}
@keyframes trail-drift { to { stroke-dashoffset: -120; } }

.rocket {
  position: absolute;
  top: -2%;
  right: 13%;
  z-index: 6;
  width: 156px;
  display: block;
  animation: rocket-bob 5s ease-in-out infinite;
  filter: drop-shadow(0 22px 38px rgba(79, 70, 229, 0.32));
}
.rocket img { width: 100%; height: auto; display: block; }

@keyframes rocket-bob {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-14px); }
}

/* Floating glass cards */
.float-card {
  position: absolute;
  z-index: 5;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 16px;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: var(--shadow-md);
  width: 256px;
  will-change: transform;
}

.float-card.lead   { left: -34px; bottom: 30px; animation: float-card 6s ease-in-out infinite; }
.float-card.system { right: -10px; top: 40%;   animation: float-card 7s ease-in-out infinite reverse; animation-delay: -2s; }

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

.float-card-label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--emerald);
  font-family: var(--sans);
}

.pulse {
  width: 8px; height: 8px;
  background: var(--emerald-bright);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.6);
  animation: pulse 2s ease-out infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.6); }
  70%  { box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
  100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.float-card blockquote {
  margin: 0 0 12px;
  font-family: var(--serif);
  font-size: 1.06rem;
  line-height: 1.3;
  color: var(--ink);
}

.float-card-meta { display: flex; flex-wrap: wrap; gap: 6px; }

.badge {
  padding: 4px 9px;
  border-radius: 7px;
  font-size: 0.7rem;
  font-weight: 800;
  font-family: var(--sans);
}
.badge-green { background: var(--emerald-dim); color: var(--emerald); }
.badge-blue  { background: var(--violet-dim); color: var(--violet); }
.badge-amber { background: var(--amber-dim); color: var(--amber); }

.float-card ul { display: grid; gap: 10px; }
.float-card li {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.82rem; font-weight: 700; color: var(--ink-70);
  font-family: var(--sans);
}

.check-icon {
  width: 18px; height: 18px;
  display: grid; place-items: center;
  background: var(--emerald-dim);
  border-radius: 50%;
  flex-shrink: 0;
  color: var(--emerald);
}

/* ============================================================
   MARQUEE / NICHE STRIP
   ============================================================ */
.marquee-section {
  position: relative;
  z-index: 2;
  border-block: 1px solid rgba(99, 102, 241, 0.12);
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(6px);
  overflow: hidden;
}

.marquee-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding-block: 22px 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--ink-50);
}
.marquee-label svg { width: 16px; height: 16px; color: var(--violet); }

.marquee-scroll { padding-block: 16px 24px; overflow: hidden; }

.marquee-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: marquee 30s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  padding-inline: 22px;
  white-space: nowrap;
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-30);
  font-family: var(--sans);
}
.marquee-item::after { content: '✦'; font-size: 0.7em; color: var(--violet); opacity: 0.5; }

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 26px;
  border-radius: 14px;
  font-weight: 800;
  font-size: 0.95rem;
  line-height: 1;
  font-family: var(--sans);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }

.btn-primary {
  color: white;
  background: var(--violet);
  box-shadow: var(--violet-glow);
}
.btn-primary:hover { background: var(--violet-deep); box-shadow: 0 28px 70px rgba(79, 70, 229, 0.4); }

.btn-secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(99, 102, 241, 0.22);
  box-shadow: var(--shadow-sm);
}
.btn-secondary:hover { background: #fff; border-color: var(--violet); }

.btn-outline {
  color: var(--violet);
  background: transparent;
  border-color: var(--b-violet);
}
.btn-outline:hover { background: var(--violet-soft); border-color: var(--violet); }

.btn-blue {
  color: white;
  background: var(--violet);
  box-shadow: var(--violet-glow);
}
.btn-blue:hover { background: var(--violet-deep); }

.btn-full { width: 100%; }

/* ============================================================
   TEXT LINK
   ============================================================ */
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-family: var(--sans);
  color: var(--violet);
  transition: gap 0.15s ease;
}
.text-link:hover { gap: 12px; }
.text-link svg { width: 15px; height: 15px; }

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.section-header { max-width: 720px; margin-bottom: 60px; }

.section-title {
  font-size: clamp(2.4rem, 4vw, 3.9rem);
  color: var(--ink);
  margin-bottom: 18px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--ink-70);
  line-height: 1.65;
  font-family: var(--sans);
  font-weight: 500;
}

/* ============================================================
   SERVICES BENTO
   ============================================================ */
.services-section { position: relative; z-index: 2; padding-block: 110px; }

.bento-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-template-rows: repeat(2, auto);
  gap: 18px;
}

.bento-card {
  position: relative;
  padding: 36px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.bento-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.bento-main {
  grid-row: span 2;
  background: linear-gradient(155deg, #EEF0FF 0%, #FFFFFF 100%);
}

.bento-card-icon {
  width: 52px; height: 52px;
  display: grid; place-items: center;
  border-radius: 14px;
  margin-bottom: 26px;
}
.icon-blue { background: var(--violet-dim); color: var(--violet); }
.icon-emerald { background: var(--emerald-dim); color: var(--emerald); }
.icon-amber { background: var(--amber-dim); color: var(--amber); }
.bento-card-icon svg { width: 24px; height: 24px; }

.bento-eyebrow {
  display: block;
  margin-bottom: 16px;
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--violet);
  font-family: var(--sans);
}

.bento-title {
  font-size: clamp(1.7rem, 2.5vw, 2.5rem);
  color: var(--ink);
  margin-bottom: 16px;
  line-height: 1.04;
}

.bento-desc { color: var(--ink-70); line-height: 1.6; font-size: 0.96rem; margin-bottom: 28px; }
.bento-title.sm { font-size: 1.35rem; margin-bottom: 12px; }
.bento-desc.sm { margin-bottom: 0; }

/* ============================================================
   STATS
   ============================================================ */
.stats-section { position: relative; z-index: 2; padding-block: 30px 90px; }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.stat-item {
  padding: 36px 30px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
  transition: transform 0.2s ease;
}
.stat-item:hover { transform: translateY(-4px); }

.stat-value {
  display: block;
  font-family: var(--serif);
  font-size: clamp(2.6rem, 3.6vw, 3.6rem);
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 12px;
}
.stat-unit { font-size: 0.55em; color: var(--violet); vertical-align: super; }
.stat-label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--ink-50);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-family: var(--sans);
}

/* ============================================================
   SKYBAND — full-bleed moon photo interstitial
   ============================================================ */
.skyband {
  position: relative;
  z-index: 2;
  overflow: hidden;
  min-height: 860px;
  display: flex;
  align-items: center;
  background: linear-gradient(180deg, #3a5a82 0%, #6b7ba0 55%, #e9b8a8 100%);
}

.skyband-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  transform: translateZ(0);
}
.skyband-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 64%;
}

.skyband-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(18, 18, 48, 0.34) 0%, rgba(18, 18, 48, 0) 26%, rgba(18, 18, 48, 0) 52%, rgba(18, 18, 48, 0.62) 100%),
    linear-gradient(90deg, rgba(18, 18, 48, 0.42) 0%, rgba(18, 18, 48, 0) 56%);
}

.skyband-content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding-block: 96px;
}
.skyband-content .eyebrow { color: #C7D2FE; }
.skyband-title {
  color: #fff;
  font-size: clamp(2.1rem, 3.8vw, 3.5rem);
  line-height: 1.04;
  max-width: 700px;
  margin-bottom: 12px;
  text-shadow: 0 4px 40px rgba(0, 0, 0, 0.35);
}
.skyband-lede {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
  max-width: 460px;
  margin-bottom: 48px;
}

.skyband-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  max-width: 840px;
}
.sky-stat { position: relative; padding-left: 20px; }
.sky-stat::before {
  content: '';
  position: absolute;
  left: 0; top: 6px; bottom: 6px;
  width: 2px;
  border-radius: 2px;
  background: linear-gradient(180deg, #A5B4FC, rgba(165, 180, 252, 0));
}
.sky-stat-num {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 4vw, 3.4rem);
  font-weight: 700;
  line-height: 1;
}
.sky-unit { font-family: var(--serif); font-size: 1.5rem; font-weight: 700; color: #C7D2FE; }
.sky-stat p {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.9rem;
  line-height: 1.45;
  font-weight: 500;
  max-width: 230px;
}
.skyband-source {
  margin-top: 30px;
  font-size: 0.72rem;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.6);
}

/* ============================================================
   PACKAGES
   ============================================================ */
.packages-section { position: relative; z-index: 2; padding-block: 110px; }

.packages-header {
  display: flex;
  gap: 32px;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 56px;
}

.pkg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}

.pkg-card {
  position: relative;
  padding: 36px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
}
.pkg-card .btn-full { margin-top: auto; }
.pkg-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.pkg-card.featured {
  background: linear-gradient(160deg, var(--violet-deep) 0%, #5B21B6 100%);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 30px 80px rgba(79, 70, 229, 0.4);
  transform: translateY(-10px);
}
.pkg-card.featured:hover { transform: translateY(-16px); }

.pkg-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 22px;
  padding: 6px 13px;
  background: var(--violet-soft);
  color: var(--violet);
  border-radius: 99px;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-family: var(--sans);
}
.pkg-card.featured .pkg-badge { background: rgba(255, 255, 255, 0.18); color: #fff; }

.pkg-name {
  font-family: var(--serif);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.1;
  margin-bottom: 10px;
}
.pkg-card.featured .pkg-name { color: #fff; }

.pkg-price { display: flex; align-items: baseline; gap: 6px; margin-bottom: 16px; }
.price-amount {
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 700;
  color: var(--violet);
  line-height: 1;
}
.pkg-card.featured .price-amount { color: #fff; }
.price-label { font-size: 0.84rem; font-weight: 700; color: var(--ink-50); font-family: var(--sans); }
.pkg-card.featured .price-label { color: rgba(255, 255, 255, 0.7); }

.pkg-desc { font-size: 0.9rem; color: var(--ink-70); line-height: 1.6; margin-bottom: 26px; }
.pkg-card.featured .pkg-desc { color: rgba(255, 255, 255, 0.82); }

.pkg-divider { height: 1px; background: var(--b); margin-bottom: 24px; }
.pkg-card.featured .pkg-divider { background: rgba(255, 255, 255, 0.18); }

.pkg-features { display: grid; gap: 12px; margin-bottom: 30px; }
.pkg-feature {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.88rem; font-weight: 600; color: var(--ink-70); line-height: 1.45;
  font-family: var(--sans);
}
.pkg-card.featured .pkg-feature { color: rgba(255, 255, 255, 0.85); }

.pkg-check {
  width: 18px; height: 18px;
  display: grid; place-items: center;
  background: var(--emerald-dim);
  border-radius: 50%;
  flex-shrink: 0; margin-top: 1px;
  color: var(--emerald);
}
.pkg-card.featured .pkg-check { background: rgba(255, 255, 255, 0.18); color: #fff; }

/* ============================================================
   PROCESS
   ============================================================ */
.process-section { position: relative; z-index: 2; padding-block: 110px; }

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  margin-top: 56px;
}
.process-grid::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(12.5% + 8px);
  right: calc(12.5% + 8px);
  height: 2px;
  background-image: linear-gradient(90deg, var(--violet) 40%, transparent 0);
  background-size: 14px 2px;
  background-repeat: repeat-x;
  opacity: 0.4;
}

.step-card { position: relative; padding: 0 30px 0 0; }

.step-num {
  width: 56px; height: 56px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--b-violet);
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 900;
  color: var(--violet);
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
  box-shadow: var(--shadow-sm);
}

.step-title {
  font-size: 1.35rem;
  color: var(--ink);
  margin-bottom: 12px;
  font-family: var(--sans);
  font-weight: 800;
}
.step-desc { font-size: 0.92rem; color: var(--ink-70); line-height: 1.65; }

/* ============================================================
   SPLIT (what you approve)
   ============================================================ */
.split-section { position: relative; z-index: 2; padding-block: 90px; }

.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.approve-list {
  display: grid;
  gap: 14px;
  padding: 34px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
}

.approve-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 16px;
  background: var(--surface-soft);
  border: 1px solid var(--b-soft);
  border-radius: var(--r);
  font-weight: 700; font-size: 0.92rem; color: var(--ink);
  transition: border-color 0.2s ease, transform 0.2s ease;
  font-family: var(--sans);
}
.approve-item:hover { border-color: var(--b-violet); transform: translateX(4px); }

.approve-icon {
  width: 34px; height: 34px;
  display: grid; place-items: center;
  background: var(--violet-dim);
  border-radius: 10px;
  color: var(--violet);
  flex-shrink: 0;
}

/* ============================================================
   FINAL CTA
   ============================================================ */
.cta-section { position: relative; z-index: 2; padding-block: 110px; }

.cta-inner {
  position: relative;
  padding: 76px;
  background: linear-gradient(150deg, var(--violet-deep) 0%, #5B21B6 60%, #6D28D9 100%);
  border-radius: var(--r-xl);
  overflow: hidden;
  text-align: center;
  box-shadow: 0 40px 100px rgba(79, 70, 229, 0.35);
}
.cta-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 20% 0%, rgba(253, 186, 116, 0.28), transparent 60%),
    radial-gradient(ellipse 50% 60% at 85% 100%, rgba(251, 113, 133, 0.25), transparent 60%);
  pointer-events: none;
}
.cta-inner .section-title { color: #fff; max-width: 700px; margin: 0 auto 18px; position: relative; z-index: 2; }
.cta-inner .section-subtitle { color: rgba(255, 255, 255, 0.82); max-width: 540px; margin: 0 auto 40px; position: relative; z-index: 2; }
.cta-inner .eyebrow { color: #C7D2FE; }

.cta-actions {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
  position: relative; z-index: 2;
}
.cta-inner .btn-secondary {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
  color: #fff;
  box-shadow: none;
}
.cta-inner .btn-secondary:hover { background: rgba(255, 255, 255, 0.2); border-color: rgba(255, 255, 255, 0.4); }
.cta-inner .btn-primary { background: #fff; color: var(--violet-deep); box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2); }
.cta-inner .btn-primary:hover { background: #F5F3FF; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  position: relative;
  z-index: 2;
  padding: 64px max(28px, calc((100vw - var(--max)) / 2)) 0;
  background: rgba(255, 255, 255, 0.55);
  border-top: 1px solid rgba(99, 102, 241, 0.12);
  backdrop-filter: blur(8px);
}
.footer-top {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 2.4fr);
  gap: 48px;
  padding-bottom: 48px;
}
.footer-brand { max-width: 340px; }
.footer-brand .brand { margin-bottom: 18px; }
.footer-tagline { font-size: 0.9rem; color: var(--ink-50); line-height: 1.6; margin-bottom: 18px; }
.footer-email {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--violet);
  transition: color 0.15s ease;
}
.footer-email:hover { color: var(--violet-deep); }
.footer-email svg { width: 16px; height: 16px; }

.footer-cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.footer-col { display: flex; flex-direction: column; align-items: flex-start; gap: 13px; }
.footer-col h4 {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-50);
  margin-bottom: 3px;
}
.footer-col a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink-70);
  transition: color 0.15s ease;
}
.footer-col a:hover { color: var(--violet); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  padding: 22px 0;
  border-top: 1px solid rgba(99, 102, 241, 0.12);
  font-size: 0.8rem;
  color: var(--ink-50);
}
.footer-bottom p { margin: 0; }

/* ============================================================
   ROUTE HERO (inner pages)
   ============================================================ */
.route-hero {
  position: relative;
  z-index: 2;
  padding-block: 90px 70px;
  overflow: hidden;
}
.route-hero .shell {
  display: grid;
  grid-template-columns: 1fr min(440px, 38%);
  gap: 56px;
  align-items: center;
}
.route-title {
  font-size: clamp(2.8rem, 4.6vw, 4.8rem);
  color: var(--ink);
  line-height: 0.99;
  margin-bottom: 20px;
}
.route-desc { font-size: 1.12rem; color: var(--ink-70); line-height: 1.65; }

.info-card {
  position: relative;
  z-index: 2;
  padding: 30px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
}
.info-card-title {
  display: block;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 10px;
  font-family: var(--sans);
}
.info-card p { font-size: 0.9rem; color: var(--ink-70); line-height: 1.6; }

/* ============================================================
   DETAIL GRID (services)
   ============================================================ */
.detail-section { position: relative; z-index: 2; padding-block: 90px 110px; }

.detail-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }

.detail-card {
  padding: 34px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.detail-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }

.detail-card-title {
  font-family: var(--sans);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--ink);
  margin: 20px 0 12px;
}
.detail-card p { font-size: 0.92rem; color: var(--ink-70); line-height: 1.65; margin-bottom: 24px; }

.feature-list { display: grid; gap: 11px; }
.feature-list li {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.88rem; font-weight: 700; color: var(--ink-70); font-family: var(--sans);
}

/* ============================================================
   AUDIT FORM
   ============================================================ */
.audit-section { position: relative; z-index: 2; padding-block: 90px 110px; }

.audit-grid {
  display: grid;
  grid-template-columns: 1fr min(500px, 45%);
  gap: 72px;
  align-items: start;
}

.audit-side-title { font-size: clamp(2.2rem, 3vw, 3.2rem); color: var(--ink); margin-bottom: 20px; }
.audit-lede { font-size: 1.1rem; color: var(--ink-70); line-height: 1.65; margin-bottom: 36px; }

.what-you-get {
  padding: 30px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
}
.what-you-get h3 {
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--violet);
  margin-bottom: 20px;
}
.get-list { display: grid; gap: 13px; }
.get-list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 0.92rem; font-weight: 700; color: var(--ink-70); line-height: 1.45;
  font-family: var(--sans);
}

.audit-form {
  position: relative;
  z-index: 2;
  padding: 38px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
/* gradient accent bar along the top of the form card */
.audit-form::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--violet) 0%, #8b5cf6 45%, var(--coral) 100%);
}
.form-group { display: grid; gap: 8px; margin-bottom: 20px; }
.form-optional { color: var(--ink-30); font-weight: 700; text-transform: none; letter-spacing: 0; }
.form-hint { font-size: 0.82rem; color: var(--ink-50); font-weight: 500; margin-top: 2px; }

/* Honeypot — visually hidden, off-screen, skipped by keyboard */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Disabled/sending state */
.btn[disabled] { opacity: 0.7; cursor: progress; transform: none; }
.form-label {
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--ink-70);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-family: var(--sans);
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  min-height: 50px;
  padding: 0 16px;
  background: var(--surface-soft);
  border: 1px solid var(--b);
  border-radius: var(--r);
  color: var(--ink);
  font-size: 0.95rem;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  appearance: none;
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--ink-30); }
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  background: #fff;
  border-color: var(--violet);
  box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.14);
}
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%234F46E5' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}
.form-textarea { min-height: 120px; padding: 14px 16px; resize: vertical; }
.form-status { min-height: 20px; margin-top: 14px; font-size: 0.9rem; font-weight: 700; color: var(--emerald); font-family: var(--sans); line-height: 1.45; }
.form-status.is-error { color: var(--coral); }

/* ============================================================
   FAQ
   ============================================================ */
.faq-section { position: relative; z-index: 2; padding-block: 90px 110px; }

.faq-grid {
  display: grid;
  grid-template-columns: 1fr min(580px, 52%);
  gap: 72px;
  align-items: start;
}

.faq-list { display: grid; gap: 10px; }

.faq-item {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: var(--r);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.faq-item:has(button[aria-expanded="true"]) {
  border-color: var(--b-violet);
  box-shadow: var(--shadow-md);
}
.faq-item button {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  width: 100%; padding: 20px 24px;
  color: var(--ink); font-weight: 800; font-size: 0.96rem; text-align: left;
  font-family: var(--sans);
}
.faq-item button svg { color: var(--violet); flex-shrink: 0; transition: transform 0.25s ease; }
.faq-item button[aria-expanded="true"] svg { transform: rotate(180deg); }
.faq-answer { padding: 0 24px 20px; }
.faq-answer p { font-size: 0.92rem; color: var(--ink-70); line-height: 1.65; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-section { position: relative; z-index: 2; padding-block: 80px 110px; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr min(520px, 46%);
  gap: 72px;
  align-items: start;
}

.contact-methods { display: grid; gap: 16px; margin-top: 36px; }
.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.contact-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.contact-card-icon {
  width: 46px; height: 46px;
  flex-shrink: 0;
  display: grid; place-items: center;
  border-radius: 13px;
  background: var(--violet-dim);
  color: var(--violet);
}
.contact-card-icon svg { width: 22px; height: 22px; }
.contact-card h3 { font-family: var(--sans); font-size: 1.05rem; font-weight: 800; color: var(--ink); margin-bottom: 4px; }
.contact-card p { font-size: 0.9rem; color: var(--ink-70); line-height: 1.5; }
.contact-card a { color: var(--violet); font-weight: 700; }
.contact-card a:hover { color: var(--violet-deep); }

/* radio choice: prefer email / call */
.contact-prefer { display: flex; gap: 10px; flex-wrap: wrap; }
.prefer-option {
  position: relative;
  flex: 1;
  min-width: 130px;
}
.prefer-option input { position: absolute; opacity: 0; pointer-events: none; }
.prefer-option span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid var(--b);
  border-radius: var(--r);
  background: var(--surface-soft);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ink-70);
  cursor: pointer;
  transition: all 0.15s ease;
}
.prefer-option span svg { width: 16px; height: 16px; }
.prefer-option input:checked + span {
  border-color: var(--violet);
  background: var(--violet-soft);
  color: var(--violet);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.12);
}
.prefer-option input:focus-visible + span { outline: 2px solid var(--violet); outline-offset: 2px; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.value-card {
  padding: 32px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.value-card h3 { font-family: var(--sans); font-size: 1.2rem; font-weight: 800; color: var(--ink); margin: 18px 0 10px; }
.value-card p { font-size: 0.92rem; color: var(--ink-70); line-height: 1.6; }

.about-story { max-width: 760px; }
.about-story p { font-size: 1.08rem; color: var(--ink-70); line-height: 1.75; margin-bottom: 20px; }
.about-story p:last-child { margin-bottom: 0; }
.about-story strong { color: var(--ink); font-weight: 700; }

/* ============================================================
   LEGAL PAGES (privacy / terms)
   ============================================================ */
.legal-section { position: relative; z-index: 2; padding-block: 70px 110px; }
.legal-prose { max-width: 760px; }
.legal-prose .legal-updated {
  display: inline-block;
  margin-bottom: 36px;
  padding: 6px 14px;
  background: var(--violet-soft);
  color: var(--violet);
  border-radius: 99px;
  font-size: 0.8rem;
  font-weight: 700;
}
.legal-prose h2 {
  font-family: var(--sans);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--ink);
  margin: 40px 0 12px;
}
.legal-prose h2:first-of-type { margin-top: 0; }
.legal-prose p { font-size: 0.98rem; color: var(--ink-70); line-height: 1.75; margin-bottom: 16px; }
.legal-prose ul { display: grid; gap: 8px; margin: 0 0 16px; padding-left: 4px; }
.legal-prose li {
  position: relative;
  padding-left: 22px;
  font-size: 0.98rem;
  color: var(--ink-70);
  line-height: 1.6;
}
.legal-prose li::before {
  content: '';
  position: absolute;
  left: 0; top: 9px;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--violet);
}
.legal-prose a { color: var(--violet); font-weight: 600; text-decoration: underline; }
.legal-prose strong { color: var(--ink); }
.legal-note {
  margin-top: 36px;
  padding: 20px 24px;
  background: var(--amber-dim);
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: var(--r);
  font-size: 0.88rem;
  color: var(--ink-70);
  line-height: 1.6;
}

/* ============================================================
   GUIDE ARTICLES
   ============================================================ */
.callout {
  margin: 0 0 32px;
  padding: 20px 24px;
  background: var(--violet-soft);
  border: 1px solid var(--b-violet);
  border-left: 4px solid var(--violet);
  border-radius: var(--r);
  font-size: 1rem;
  color: var(--ink);
  line-height: 1.65;
}
.callout strong { color: var(--violet); }

.guide-cta {
  margin-top: 44px;
  padding: 36px;
  background: linear-gradient(150deg, var(--violet-deep), #5B21B6);
  border-radius: var(--r-lg);
  box-shadow: 0 24px 60px rgba(79, 70, 229, 0.3);
}
.guide-cta h2 { color: #fff; font-size: 1.6rem; margin-bottom: 10px; }
.guide-cta p { color: rgba(255, 255, 255, 0.85); margin-bottom: 22px; line-height: 1.6; }
.guide-cta .btn-primary { background: #fff; color: var(--violet-deep); box-shadow: 0 16px 40px rgba(0,0,0,0.2); }
.guide-cta .btn-primary:hover { background: #F5F3FF; }

.guide-related { margin-top: 44px; }
.guide-related h3 {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-50);
  margin-bottom: 16px;
}
.guide-related-links { display: grid; gap: 10px; }
.guide-related-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--violet);
  text-decoration: none;
}
.guide-related-links a:hover { color: var(--violet-deep); gap: 11px; }

/* ============================================================
   FOCUS
   ============================================================ */
:focus-visible { outline: 2px solid var(--violet); outline-offset: 3px; border-radius: 4px; }

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ============================================================
   RESPONSIVE — TABLET
   ============================================================ */
@media (max-width: 1024px) {
  .site-header { grid-template-columns: 1fr auto; padding-inline: 20px; }
  .site-nav, .header-cta { display: none; }
  .nav-toggle { display: grid; }

  .site-nav.is-open {
    position: fixed;
    inset: 78px 12px auto;
    display: grid;
    gap: 2px;
    padding: 12px;
    max-height: calc(100vh - 96px);
    overflow-y: auto;
    background: rgba(248, 246, 255, 0.98);
    border: 1px solid var(--b-violet);
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    z-index: 99;
  }
  /* In the mobile panel, show every dropdown expanded inline */
  .site-nav.is-open .nav-item { flex-direction: column; align-items: stretch; }
  .site-nav.is-open .nav-link {
    min-height: 46px;
    justify-content: space-between;
    font-size: 1rem;
    font-weight: 800;
  }
  .site-nav.is-open .nav-link svg { display: none; }
  .site-nav.is-open .dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    min-width: 0;
    margin: 0 0 6px;
    padding: 2px 0 6px 12px;
    border: 0;
    border-left: 2px solid var(--violet-soft);
    border-radius: 0;
    box-shadow: none;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    gap: 0;
  }
  .site-nav.is-open .dropdown-menu::before { display: none; }
  .site-nav.is-open .dropdown-menu a { min-height: 42px; display: flex; align-items: center; }

  .hero { grid-template-columns: 1fr; min-height: 0; padding-block: 60px 70px; gap: 56px; }
  .hero-visual { min-height: 460px; }
  .rocket { width: 130px; }

  .bento-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .bento-main { grid-row: auto; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }

  .skyband { min-height: 600px; }
  .skyband-stats { gap: 20px; }

  .pkg-grid { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
  .pkg-card.featured { transform: none; }
  .pkg-card.featured:hover { transform: translateY(-6px); }

  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .process-grid::before { display: none; }

  .route-hero .shell { grid-template-columns: 1fr; }
  .detail-grid { grid-template-columns: 1fr; }
  .split-grid { grid-template-columns: 1fr; gap: 40px; }
  .audit-grid { grid-template-columns: 1fr; gap: 40px; }
  .faq-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .values-grid { grid-template-columns: 1fr; }

  .packages-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .cta-inner { padding: 60px 40px; }

  .site-footer { padding-inline: 20px; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .footer-cols { gap: 24px; }
}

/* ============================================================
   RESPONSIVE — MOBILE
   ============================================================ */
@media (max-width: 680px) {
  .shell { width: calc(100% - 32px); }

  .hero { padding-block: 48px 40px; }
  .hero-visual { min-height: 360px; }
  .sun-glow { width: 170px; height: 170px; }
  .rocket { width: 108px; top: 2%; }
  .float-card.system { display: none; }
  .float-card.lead { width: calc(100% - 24px); left: 0; }

  .stats-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }

  .skyband { min-height: 0; }
  .skyband-content { padding-block: 72px; }
  .skyband-stats { grid-template-columns: 1fr; gap: 24px; max-width: 360px; }
  .sky-stat p { max-width: none; }
  .skyband-media img { object-position: center 35%; }

  .cta-inner { padding: 44px 24px; }
  .cta-actions { flex-direction: column; align-items: center; }
  .cta-actions .btn { width: 100%; max-width: 360px; }

  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }

  .services-section, .packages-section, .process-section,
  .split-section, .detail-section, .audit-section,
  .faq-section, .cta-section { padding-block: 72px; }

  .route-hero { padding-block: 64px 50px; }
  .site-footer { padding-top: 48px; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 6px; }
  .audit-form { padding: 24px; }
  .info-card, .what-you-get { padding: 24px; }
}


/* Local SEO content band */
.local-seo-section {
  padding: 72px 0;
  background: var(--light-1);
  border-top: 1px solid var(--b-light);
  border-bottom: 1px solid var(--b-light);
}

.local-seo-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: 48px;
  align-items: end;
}

.local-seo-inner .section-title {
  margin-top: 12px;
  color: var(--ink);
  max-width: 760px;
}

.local-seo-inner .section-subtitle {
  color: var(--ink-70);
  margin: 0;
}

@media (max-width: 820px) {
  .local-seo-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
