/* =========================================================================
   Plan To Travel — Marketing site
   Dark theme matching the app: #2a2f33 + purple #7c3aed + glass panels
   ========================================================================= */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

:root {
  --bg:           #2a2f33;
  --bg-deep:      #1f2326;
  --bg-elev:      #323940;
  --glass:        rgba(255, 255, 255, 0.06);
  --glass-strong: rgba(255, 255, 255, 0.09);
  --glass-b:      rgba(255, 255, 255, 0.12);
  --line:         rgba(255, 255, 255, 0.08);

  --text:         #e8edf0;
  --text-muted:   #aab3bb;
  --text-faint:   #7c858d;

  --purple:       #7c3aed;
  --purple-dark:  #6d28d9;
  --purple-soft:  rgba(124, 58, 237, 0.18);
  --purple-glow:  rgba(124, 58, 237, 0.45);

  --coral:        #FFB6B9;
  --mint:         #6ee7b7;

  --radius:       12px;
  --radius-lg:    18px;
  --radius-xl:    24px;

  --shadow-1:     0 4px 16px rgba(0, 0, 0, 0.25);
  --shadow-2:     0 12px 40px rgba(0, 0, 0, 0.35);
  --shadow-glow:  0 8px 32px rgba(124, 58, 237, 0.25);
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  min-height: 100vh;
}

/* Ambient purple glow on the page background */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(900px circle at 85% -10%, rgba(124, 58, 237, 0.18), transparent 60%),
    radial-gradient(700px circle at -10% 30%, rgba(124, 58, 237, 0.08), transparent 60%);
  z-index: 0;
}

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

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .2s ease; }
button { font: inherit; cursor: pointer; }

/* ── Layout primitives ──────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: clamp(64px, 9vw, 120px) 0; }

/* ── Typography ─────────────────────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text);
}
h1 { font-size: clamp(2.4rem, 5.5vw, 4.2rem); letter-spacing: -0.035em; }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.8rem); letter-spacing: -0.025em; }
h3 { font-size: clamp(1.2rem, 1.8vw, 1.45rem); }

p { color: var(--text-muted); }
.lead { font-size: clamp(1.05rem, 1.5vw, 1.2rem); color: var(--text-muted); max-width: 60ch; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--purple);
}

.accent { color: var(--purple); }

/* ── Buttons ────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 10px;
  font-size: 0.93rem;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--purple);
  color: #fff;
  box-shadow: 0 4px 14px rgba(124, 58, 237, 0.35);
}
.btn-primary:hover {
  background: var(--purple-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(124, 58, 237, 0.5);
}
.btn-ghost {
  background: var(--glass);
  color: var(--text);
  border-color: var(--glass-b);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.btn-ghost:hover {
  background: var(--glass-strong);
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.22);
}
.btn-lg { padding: 14px 24px; font-size: 1rem; }

/* ── Header ─────────────────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(42, 47, 51, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, background .25s ease;
}
.site-header.is-scrolled {
  border-bottom-color: var(--line);
  background: rgba(31, 35, 38, 0.85);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text);
  font-size: 1.02rem;
}
.brand-mark {
  height: 28px;
  width: auto;
  display: block;
  flex-shrink: 0;
}

.nav { display: flex; align-items: center; gap: 8px; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-right: 12px;
}
.nav-links a {
  padding: 8px 14px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: 8px;
  transition: color .2s, background .2s;
}
.nav-links a:hover { color: var(--text); background: var(--glass); }
.nav-links a.is-current { color: var(--text); }
.nav-links a.is-current::after {
  content: '';
  display: block;
  height: 2px;
  width: 18px;
  background: var(--purple);
  border-radius: 2px;
  margin: 4px auto -1px;
}

.menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  background: var(--glass);
  border: 1px solid var(--glass-b);
  border-radius: 10px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0;
}
.menu-toggle span {
  display: block;
  width: 18px;
  height: 1.6px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .25s ease, opacity .25s ease;
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(3.3px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(-3.3px) rotate(-45deg); }

/* ── Hero ───────────────────────────────────────────────────────────────── */
.hero {
  padding-top: clamp(60px, 9vw, 100px);
  padding-bottom: clamp(40px, 6vw, 80px);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.hero h1 em {
  font-style: normal;
  color: var(--purple);
}
.hero-lead {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  margin: 22px 0 36px;
  max-width: 54ch;
}
.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.hero-meta {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  font-size: 0.86rem;
  color: var(--text-faint);
}
.hero-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.hero-meta-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 8px var(--mint);
}

/* Hero app preview card (glass) */
.hero-preview {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--glass-strong);
  border: 1px solid var(--glass-b);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-2), var(--shadow-glow);
  padding: 18px;
  transform: perspective(1200px) rotateY(-3deg) rotateX(2deg);
  transition: transform .6s ease;
}
.hero-preview:hover { transform: perspective(1200px) rotateY(0deg) rotateX(0deg); }
.hero-preview-bar {
  display: flex;
  gap: 6px;
  padding: 6px 4px 14px;
}
.hero-preview-bar span {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,0.18);
}
.hero-preview-bar span:nth-child(1) { background: #ff6058; }
.hero-preview-bar span:nth-child(2) { background: #ffbd2e; }
.hero-preview-bar span:nth-child(3) { background: #28ca41; }

.hero-preview-app {
  display: flex;
  flex-direction: column;
  background: var(--bg-deep);
  border-radius: 14px;
  padding: 14px;
  min-height: 340px;
}
.hpa-side {
  background: var(--glass);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.hpa-side-title {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 6px;
}
.hpa-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 9px;
  border-radius: 7px;
  font-size: 0.78rem;
  color: var(--text-muted);
}
.hpa-nav.is-active { background: var(--purple-soft); color: #fff; }
.hpa-nav-dot { width: 6px; height: 6px; border-radius: 50%; background: currentColor; opacity: 0.7; }

.hpa-main {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hpa-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hpa-head-title { font-size: 0.86rem; font-weight: 700; color: var(--text); }
.hpa-head-btn {
  font-size: 0.7rem;
  padding: 5px 10px;
  background: var(--purple);
  color: #fff;
  border-radius: 6px;
  font-weight: 600;
}
.hpa-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  flex: 1;
}
.hpa-card {
  background: var(--glass);
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .3s ease, border-color .3s ease;
}
.hpa-card:hover { transform: translateY(-2px); border-color: var(--purple-glow); }
.hpa-card-img {
  height: 70px;
  background-size: cover;
  background-position: center;
}
.hpa-card-body { padding: 8px 10px; }
.hpa-card-title { font-size: 0.74rem; font-weight: 700; color: var(--text); }
.hpa-card-meta { font-size: 0.66rem; color: var(--text-faint); margin-top: 2px; }

/* Floating chips orbiting the preview */
.hero-chip {
  position: absolute;
  background: var(--glass-strong);
  border: 1px solid var(--glass-b);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 10px;
  padding: 8px 12px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text);
  box-shadow: var(--shadow-1);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  animation: float 6s ease-in-out infinite;
}
.hero-chip-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--purple); box-shadow: 0 0 10px var(--purple); }
.hero-chip.top-left { top: -14px; left: -28px; animation-delay: 0s; }
.hero-chip.bottom-right { bottom: -16px; right: -22px; animation-delay: 1.5s; }
.hero-chip.middle-right { top: 42%; right: -48px; animation-delay: 3s; }

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

/* ── Page hero (interior pages) ─────────────────────────────────────────── */
.page-hero {
  padding: clamp(70px, 9vw, 110px) 0 clamp(40px, 5vw, 60px);
  text-align: center;
}
.page-hero h1 { max-width: 22ch; margin: 8px auto 18px; }
.page-hero h1 em { font-style: normal; color: var(--purple); }
.page-hero p { max-width: 60ch; margin: 0 auto; }

/* ── Glass card ─────────────────────────────────────────────────────────── */
.glass {
  background: var(--glass);
  border: 1px solid var(--glass-b);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: var(--shadow-1);
}

/* ── Feature grid ───────────────────────────────────────────────────────── */
.section-head {
  text-align: center;
  margin-bottom: clamp(40px, 5vw, 60px);
}
.section-head h2 { max-width: 22ch; margin: 0 auto 16px; }
.section-head h2 em { font-style: normal; color: var(--purple); }
.section-head p { max-width: 56ch; margin: 0 auto; }

.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feat-card {
  padding: 28px;
  border-radius: var(--radius-lg);
  background: var(--glass);
  border: 1px solid var(--glass-b);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: transform .35s ease, border-color .35s ease, background .35s ease;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 240px;
}
.feat-card:hover {
  transform: translateY(-4px);
  border-color: var(--purple-glow);
  background: var(--glass-strong);
}
.feat-icon {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  background: var(--purple-soft);
  color: var(--purple);
  border: 1px solid rgba(124, 58, 237, 0.3);
}
.feat-icon svg { width: 22px; height: 22px; }
.feat-card h3 { font-size: 1.15rem; }
.feat-card p { font-size: 0.95rem; }

/* ── Split section ──────────────────────────────────────────────────────── */
.split {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.split.reverse { grid-template-columns: 1.05fr 1fr; }
.split.reverse .split-content { order: 2; }
.split.reverse .split-media { order: 1; }

.split-content h2 { margin-bottom: 18px; }
.split-content h2 em { font-style: normal; color: var(--purple); }
.split-content .lead { margin-bottom: 24px; }

.split-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}
.split-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--text-muted);
  font-size: 0.96rem;
}
.split-list li::before {
  content: '';
  width: 14px;
  height: 14px;
  margin-top: 5px;
  flex-shrink: 0;
  border-radius: 4px;
  background: var(--purple-soft);
  border: 1px solid var(--purple);
  background-image: linear-gradient(135deg, transparent 0 38%, var(--purple) 38% 62%, transparent 62%);
  background-size: 7px 7px;
  background-position: center;
  background-repeat: no-repeat;
}

.split-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--glass-b);
  box-shadow: var(--shadow-2);
  aspect-ratio: 5 / 4;
}
.split-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.6s ease;
}
.split-media:hover img { transform: scale(1.04); }
.split-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(31, 35, 38, 0.45));
  pointer-events: none;
}

/* ── Photo strip ────────────────────────────────────────────────────────── */
.photo-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.photo-strip .ps-item {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  position: relative;
  border: 1px solid var(--glass-b);
}
.photo-strip .ps-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.4s ease;
}
.photo-strip .ps-item:hover img { transform: scale(1.06); }
.photo-strip .ps-item::after {
  content: attr(data-label);
  position: absolute;
  inset: auto 0 0 0;
  padding: 14px 16px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(180deg, transparent, rgba(15, 17, 19, 0.78));
}

/* ── Stat band ──────────────────────────────────────────────────────────── */
.stat-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 36px;
  border-radius: var(--radius-lg);
  background: var(--glass);
  border: 1px solid var(--glass-b);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.stat-band .stat { display: flex; flex-direction: column; gap: 4px; }
.stat-num { font-size: clamp(1.6rem, 2.4vw, 2rem); font-weight: 700; color: var(--text); letter-spacing: -0.02em; }
.stat-lbl { font-size: 0.85rem; color: var(--text-muted); }

/* ── Steps ──────────────────────────────────────────────────────────────── */
.steps { display: flex; flex-direction: column; gap: 18px; }
.step {
  display: grid;
  grid-template-columns: 88px 1fr 280px;
  gap: 28px;
  align-items: center;
  padding: 28px;
  border-radius: var(--radius-lg);
  background: var(--glass);
  border: 1px solid var(--glass-b);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: border-color .3s ease, transform .3s ease;
}
.step:hover { border-color: var(--purple-glow); transform: translateY(-2px); }
.step-num {
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--purple);
  line-height: 1;
}
.step h3 { font-size: 1.3rem; margin-bottom: 6px; }
.step p { font-size: 0.96rem; }
.step-media {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 5 / 3;
  border: 1px solid var(--line);
}
.step-media img { width: 100%; height: 100%; object-fit: cover; }

/* ── FAQ ────────────────────────────────────────────────────────────────── */
.faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 760px;
  margin: 0 auto;
}
.faq details {
  background: var(--glass);
  border: 1px solid var(--glass-b);
  border-radius: var(--radius);
  padding: 20px 22px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: border-color .25s;
}
.faq details[open] { border-color: var(--purple-glow); }
.faq summary {
  list-style: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.02rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  color: var(--text);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--purple);
  font-weight: 400;
  line-height: 1;
  transition: transform .2s ease;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p {
  margin-top: 12px;
  color: var(--text-muted);
  font-size: 0.96rem;
  line-height: 1.7;
}

/* ── Security cards ─────────────────────────────────────────────────────── */
.sec-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.sec-card {
  padding: 28px;
  background: var(--glass);
  border: 1px solid var(--glass-b);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 240px;
  transition: transform .3s ease, border-color .3s ease;
}
.sec-card:hover { transform: translateY(-3px); border-color: var(--purple-glow); }
.sec-card .tag {
  align-self: flex-start;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--purple-soft);
  color: var(--purple);
  border: 1px solid rgba(124, 58, 237, 0.3);
}
.sec-card h3 { font-size: 1.1rem; }
.sec-card p { font-size: 0.95rem; }

/* ── Code block (data list on security) ─────────────────────────────────── */
.code-block {
  max-width: 760px;
  margin: 0 auto;
  background: var(--bg-deep);
  border: 1px solid var(--glass-b);
  border-radius: var(--radius-lg);
  padding: 32px;
  font-family: 'JetBrains Mono', ui-monospace, Menlo, monospace;
  font-size: 0.9rem;
  line-height: 1.85;
  color: var(--text-muted);
  box-shadow: var(--shadow-1);
}
.code-block .c-comment { color: var(--purple); }

/* ── Story (about page) ─────────────────────────────────────────────────── */
.story {
  max-width: 720px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-muted);
}
.story > p + p { margin-top: 22px; }
.story .pull-quote {
  font-size: clamp(1.4rem, 2.4vw, 1.85rem);
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.015em;
  line-height: 1.3;
  padding: 36px 0 36px 28px;
  margin: 36px 0;
  border-left: 3px solid var(--purple);
}
.story-image {
  margin: 36px 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--glass-b);
}
.story-image img { width: 100%; aspect-ratio: 16 / 7; object-fit: cover; }

/* ── Pricing ────────────────────────────────────────────────────────────── */
.price-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 880px;
  margin: 0 auto;
}
.price-card {
  padding: 36px;
  background: var(--glass);
  border: 1px solid var(--glass-b);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform .3s ease;
}
.price-card:hover { transform: translateY(-3px); }
.price-card.featured {
  border-color: var(--purple);
  background: linear-gradient(180deg, var(--purple-soft) 0%, var(--glass) 60%);
  box-shadow: var(--shadow-glow);
}
.price-card h3 { font-size: 1.4rem; }
.price-card .amount {
  font-size: clamp(2.4rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.03em;
}
.price-card .amount small {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-faint);
  margin-top: 2px;
  letter-spacing: 0;
}
.price-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 8px 0 20px;
  flex: 1;
}
.price-card ul li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.96rem;
  color: var(--text-muted);
}
.price-card ul li::before {
  content: '';
  flex-shrink: 0;
  width: 18px; height: 18px;
  margin-top: 2px;
  border-radius: 50%;
  background: var(--purple-soft);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%237c3aed' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><path d='M3.5 8.5l3 3 6-6'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px;
}

/* ── CTA band ───────────────────────────────────────────────────────────── */
.cta-band {
  position: relative;
  padding: 64px 36px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.22), rgba(124, 58, 237, 0.06));
  border: 1px solid rgba(124, 58, 237, 0.35);
  text-align: center;
  overflow: hidden;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(600px circle at 20% 0%, rgba(124, 58, 237, 0.25), transparent 60%);
  pointer-events: none;
}
.cta-band h2 { margin-bottom: 14px; }
.cta-band p { max-width: 50ch; margin: 0 auto 28px; color: var(--text-muted); }

/* ── Footer ─────────────────────────────────────────────────────────────── */
.site-footer {
  padding: 80px 0 32px;
  border-top: 1px solid var(--line);
  margin-top: 60px;
  background: var(--bg-deep);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--line);
}
.footer-grid p { font-size: 0.92rem; max-width: 32ch; margin-top: 14px; color: var(--text-muted); }
.footer-grid h5 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 16px;
}
.footer-grid ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-grid ul a {
  font-size: 0.92rem;
  color: var(--text-muted);
}
.footer-grid ul a:hover { color: var(--purple); }
.footer-bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  font-size: 0.84rem;
  color: var(--text-faint);
  flex-wrap: wrap;
  gap: 12px;
}

/* ── Reveal animations ──────────────────────────────────────────────────── */
.reveal, .reveal-stagger > * {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.is-visible, .reveal-stagger.is-visible > * {
  opacity: 1;
  transform: translateY(0);
}
.reveal-stagger.is-visible > *:nth-child(1) { transition-delay: 0s; }
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: .08s; }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: .16s; }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: .24s; }
.reveal-stagger.is-visible > *:nth-child(5) { transition-delay: .32s; }
.reveal-stagger.is-visible > *:nth-child(6) { transition-delay: .40s; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-stagger > * { opacity: 1; transform: none; transition: none; }
  .hero-chip, .hero-preview { animation: none; transform: none; }
}

/* ── Stack utility ──────────────────────────────────────────────────────── */
.stack-lg { display: flex; flex-direction: column; gap: 18px; }

/* ── Responsive ─────────────────────────────────────────────────────────── */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-preview { transform: none; max-width: 540px; margin: 0 auto; }
  .feat-grid, .sec-grid { grid-template-columns: repeat(2, 1fr); }
  .photo-strip { grid-template-columns: repeat(2, 1fr); }
  .stat-band { grid-template-columns: repeat(2, 1fr); }
  .split, .split.reverse { grid-template-columns: 1fr; }
  .split.reverse .split-content, .split.reverse .split-media { order: 0; }
  .step { grid-template-columns: 64px 1fr; }
  .step-media { grid-column: 1 / -1; }
  .price-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 640px) {
  .menu-toggle { display: flex; }
  .nav-links {
    position: absolute;
    top: 72px;
    left: 16px;
    right: 16px;
    flex-direction: column;
    align-items: stretch;
    background: var(--bg-elev);
    border: 1px solid var(--glass-b);
    border-radius: var(--radius);
    padding: 12px;
    gap: 4px;
    box-shadow: var(--shadow-2);
    display: none;
  }
  .nav-links.is-open { display: flex; }
  .nav-links a { padding: 12px 14px; font-size: 1rem; }
  .nav-links a.is-current::after { display: none; }

  .feat-grid, .sec-grid { grid-template-columns: 1fr; }
  .photo-strip { grid-template-columns: 1fr 1fr; }
  .stat-band { grid-template-columns: 1fr 1fr; padding: 24px; }
  .step { grid-template-columns: 1fr; gap: 12px; padding: 20px; }
  .step-num { font-size: 2rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { justify-content: center; text-align: center; }
  .hero-chip.middle-right { display: none; }
  .hero-chip.top-left { left: -8px; }
  .hero-chip.bottom-right { right: -8px; }
}
