:root {
  --background: 0 0% 4%;
  --foreground: 0 0% 98%;
  --card: 0 0% 7%;
  --primary: 222 89% 42%;
  --primary-foreground: 0 0% 100%;
  --primary-glow: 210 90% 62%;
  --secondary: 0 0% 10%;
  --muted: 0 0% 10%;
  --muted-foreground: 0 0% 64%;
  --accent: 210 90% 62%;
  --border: 0 0% 14%;
  --input: 0 0% 12%;
  --ring: 222 89% 42%;
  --radius: 0.375rem;
  --gradient-accent: linear-gradient(135deg, hsl(222 89% 42%), hsl(210 90% 62%));
  --shadow-glow: 0 20px 60px -20px hsl(222 89% 42% / 0.45);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: hsl(var(--background));
  color: hsl(var(--foreground));
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: 'Space Grotesk', sans-serif;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }

.eyebrow {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-weight: 600;
  color: hsl(var(--primary-glow));
  display: block;
  margin-bottom: 16px;
}

.grad-text {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: hsl(var(--background) / 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid hsl(var(--border) / 0.6);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-weight: 700;
}
.nav-brand img { height: 34px; width: auto; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 13px;
  font-weight: 500;
  color: hsl(var(--muted-foreground));
}
.nav-links a:hover { color: hsl(var(--foreground)); }
.nav-links .btn { color: hsl(var(--primary-foreground)); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 48px;
  padding: 0 28px;
  border-radius: 8px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn-primary {
  background: var(--gradient-accent);
  color: hsl(var(--primary-foreground));
  box-shadow: var(--shadow-glow);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 24px 70px -18px hsl(222 89% 42% / 0.6); }
.btn-outline {
  background: transparent;
  color: hsl(var(--foreground));
  border: 1px solid hsl(var(--border));
}
.btn-outline:hover { background: hsl(var(--secondary)); }
.btn-sm { height: 38px; padding: 0 18px; font-size: 13px; }
/* Touch devices get a full 44px target on the nav CTA and footer links.
   Desktop keeps the tighter sizing. */
@media (hover: none) and (pointer: coarse) {
  .btn-sm { height: 44px; padding: 0 20px; }
  .footer-links a { display: inline-flex; align-items: center; min-height: 44px; }
  .nav-brand { min-height: 44px; }
}
/* On narrow phones the wide letter-spacing pushed the wordmark into the Buy Now
   button (2px gap). Tighten it so the two keep a comfortable distance. */
@media (max-width: 430px) {
  .nav-brand { font-size: 10px; letter-spacing: 0.1em; gap: 8px; }
  .nav-brand img { height: 30px; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 96px 0 80px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, hsl(222 89% 42% / 0.18), transparent 70%),
    linear-gradient(180deg, hsl(0 0% 4%), hsl(0 0% 6%));
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(hsl(0 0% 14% / 0.4) 1px, transparent 1px),
    linear-gradient(90deg, hsl(0 0% 14% / 0.4) 1px, transparent 1px);
  background-size: 48px 48px;
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  pointer-events: none;
}
/* Animated breathing glow (adapted from 21st.dev "Animated Gradient Background"
   by @hammamikhairi — ported from React/framer-motion to pure CSS, brand blues).
   Entrance fades + scales in, then settles into a slow infinite breathe. */
.hero::after {
  content: '';
  position: absolute;
  inset: -20% -10% auto -10%;
  height: 130%;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(
    ellipse 60% 50% at 50% 20%,
    hsl(210 90% 62% / 0.26),
    hsl(222 89% 42% / 0.16) 45%,
    transparent 72%
  );
  animation:
    trbGlowIn 2s cubic-bezier(0.25, 0.1, 0.25, 1) both,
    trbBreathe 9s ease-in-out 2s infinite;
}
@keyframes trbGlowIn {
  from { opacity: 0; transform: scale(1.5); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes trbBreathe {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.07); }
}
@media (prefers-reduced-motion: reduce) {
  .hero::after { animation: none; }
}

.hero-inner {
  z-index: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 880px;
}
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-weight: 600;
  color: hsl(var(--primary-glow));
  border: 1px solid hsl(var(--primary) / 0.4);
  background: hsl(var(--primary) / 0.08);
  border-radius: 999px;
  padding: 8px 16px;
  margin-bottom: 24px;
}
.hero h1 {
  font-size: clamp(2.4rem, 5.2vw, 3.9rem);
  font-weight: 700;
  margin-bottom: 22px;
}
.hero-sub {
  font-size: 18px;
  color: hsl(var(--muted-foreground));
  max-width: 620px;
  margin: 0 auto 12px;
}
.hero-note {
  font-size: 14px;
  color: hsl(var(--muted-foreground) / 0.8);
  font-style: italic;
  margin-bottom: 36px;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; margin-bottom: 40px; }
.hero-proof {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 13px;
  font-weight: 500;
  color: hsl(var(--muted-foreground));
}
.hero-proof span { display: flex; align-items: center; gap: 8px; }
.hero-proof svg { color: hsl(var(--primary-glow)); flex-shrink: 0; }
.hero-crest { position: relative; display: flex; justify-content: center; }
.hero-crest::before {
  content: '';
  position: absolute;
  inset: 10%;
  background: hsl(222 89% 42% / 0.35);
  filter: blur(80px);
  border-radius: 50%;
}
.hero-crest img { position: relative; width: 320px; max-width: 80%; }

/* ---------- Sections ---------- */
section { padding: 96px 0; border-top: 1px solid hsl(var(--border) / 0.6); }
.section-head { max-width: 640px; margin-bottom: 56px; }
.section-head h2 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); font-weight: 700; }
.section-head p { color: hsl(var(--muted-foreground)); margin-top: 14px; font-size: 17px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* ---------- Video slots ---------- */
.video-slot {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 14px;
  border: 1px solid hsl(var(--primary) / 0.45);
  background:
    radial-gradient(ellipse 60% 80% at 50% 100%, hsl(222 89% 42% / 0.14), transparent 70%),
    hsl(var(--card));
  box-shadow: var(--shadow-glow);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  overflow: hidden;
}
.video-slot .play {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: var(--gradient-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-glow);
}
.video-slot .play svg { margin-left: 4px; }
.video-slot .label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-weight: 600;
  color: hsl(var(--muted-foreground));
}
.video-slot video, .video-slot iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 0;
}
.clip-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 24px;
}
.clip {
  aspect-ratio: 9 / 16;
  border-radius: 14px;
  border: 1px solid hsl(var(--border));
  background: hsl(var(--card));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.clip .play {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: hsl(var(--secondary));
  border: 1px solid hsl(var(--border));
  display: flex;
  align-items: center;
  justify-content: center;
}
.clip .label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-weight: 600;
  color: hsl(var(--muted-foreground));
}

/* ---------- Process ---------- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid hsl(var(--border));
  border-radius: 14px;
  overflow: hidden;
}
.process-step { padding: 40px 32px; background: hsl(var(--card)); }
.process-step + .process-step { border-left: 1px solid hsl(var(--border)); }
.process-step .num {
  font-family: 'Space Grotesk', monospace;
  font-size: 14px;
  font-weight: 700;
  color: hsl(var(--primary-glow));
  letter-spacing: 0.2em;
  display: block;
  margin-bottom: 18px;
}
.process-step h3 { font-size: 20px; margin-bottom: 12px; }
.process-step p { font-size: 15px; color: hsl(var(--muted-foreground)); }

/* ---------- Stats ---------- */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.stat-card {
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: 14px;
  padding: 40px 32px;
  text-align: center;
}
.stat-card .big {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
  margin-bottom: 10px;
  line-height: 1.05;
}
.stat-card p { font-size: 15px; color: hsl(var(--muted-foreground)); }

/* ---------- Guarantee ---------- */
.guarantee-card {
  background:
    radial-gradient(ellipse 70% 90% at 50% 0%, hsl(222 89% 42% / 0.16), transparent 70%),
    hsl(var(--card));
  border: 1px solid hsl(var(--primary) / 0.55);
  border-radius: 18px;
  box-shadow: var(--shadow-glow);
  padding: 64px 48px;
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
}
.guarantee-card h2 { font-size: clamp(1.7rem, 3.4vw, 2.4rem); margin-bottom: 18px; }
.guarantee-card p { color: hsl(var(--muted-foreground)); font-size: 17px; max-width: 560px; margin: 0 auto 14px; }
.guarantee-card .fine { font-size: 13px; }
.guarantee-card .fine a { color: hsl(var(--primary-glow)); text-decoration: underline; }

/* ---------- Offer ---------- */
.offer-card {
  max-width: 560px;
  margin: 0 auto;
  background: hsl(var(--card));
  border: 1px solid hsl(var(--primary) / 0.6);
  border-radius: 18px;
  box-shadow: var(--shadow-glow);
  padding: 48px 44px;
}
.offer-card .price {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1;
}
.offer-card .price small { font-size: 1rem; font-weight: 500; color: hsl(var(--muted-foreground)); }
.offer-card ul { list-style: none; margin: 28px 0 34px; }
.offer-card li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 9px 0;
  font-size: 15px;
  color: hsl(var(--foreground) / 0.9);
}
.offer-card li svg { flex-shrink: 0; margin-top: 4px; color: hsl(var(--primary-glow)); }
.offer-ctas { display: flex; flex-direction: column; gap: 12px; }
.offer-ctas .btn { width: 100%; }

/* ---------- Testimonial screenshots ---------- */
/* Masonry. These are real phone screenshots with very different heights
   (short ones ~0.7 ratio, tall ones ~1.7), so a fixed grid leaves torn rows and
   dead space. Columns let each card keep its full height and pack tight.
   Cropping is not an option here: the text in the screenshots is the proof. */
.shot-grid {
  columns: 3;
  column-gap: 24px;
}
.shot-grid .shot {
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  display: inline-block;
  width: 100%;
  margin: 0 0 24px;
}
.shot { margin: 0; }
.shot img {
  width: 100%;
  border-radius: 22px;
  border: 1px solid hsl(var(--border));
  display: block;
  background: #fff;
}
.shot figcaption {
  text-align: center;
  padding: 14px 10px 0;
}
.shot figcaption b {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: hsl(var(--foreground));
  margin-bottom: 4px;
}
.shot figcaption span {
  font-size: 13.5px;
  color: hsl(var(--muted-foreground));
  line-height: 1.5;
}

.shot-note {
  margin-top: 32px;
  text-align: center;
  font-size: 13px;
  color: hsl(var(--muted-foreground) / 0.9);
}

/* ---------- Testimonials ---------- */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}
.testi-card {
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: 14px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.bubble {
  border-radius: 18px;
  padding: 12px 16px;
  font-size: 14.5px;
  line-height: 1.5;
  max-width: 92%;
}
.bubble.them {
  background: hsl(0 0% 16%);
  color: hsl(var(--foreground));
  align-self: flex-start;
  border-bottom-left-radius: 5px;
}
.bubble.us {
  background: linear-gradient(135deg, hsl(211 100% 50%), hsl(211 100% 45%));
  color: white;
  align-self: flex-end;
  border-bottom-right-radius: 5px;
}
.testi-topic {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-weight: 600;
  color: hsl(var(--primary-glow));
  margin-bottom: 4px;
}
.testi-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 6px;
  padding-top: 14px;
  border-top: 1px solid hsl(var(--border));
  font-size: 13px;
  color: hsl(var(--muted-foreground));
}
.blur-name {
  filter: blur(5px);
  user-select: none;
  font-weight: 600;
  color: hsl(var(--foreground));
}

/* ---------- Closing CTA ---------- */
.closing { text-align: center; }
.closing img { width: 120px; margin: 0 auto 28px; }
.closing h2 { font-size: clamp(1.9rem, 3.8vw, 2.7rem); margin-bottom: 16px; }
.closing p { color: hsl(var(--muted-foreground)); max-width: 480px; margin: 0 auto 36px; }
.closing .hero-ctas { justify-content: center; margin-bottom: 20px; }
.closing-note { font-size: 13.5px !important; color: hsl(var(--muted-foreground)) !important; margin: 0 auto !important; }

/* ---------- Footer ---------- */
footer {
  border-top: 1px solid hsl(var(--border) / 0.6);
  padding: 32px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: hsl(var(--muted-foreground));
}
.footer-inner a:hover { color: hsl(var(--foreground)); }
.footer-links { display: flex; flex-wrap: wrap; gap: 16px 24px; }

/* ---------- Intake form ---------- */
.intake-wrap { max-width: 640px; margin: 0 auto; padding: 64px 24px 96px; }
.intake-head { text-align: center; margin-bottom: 40px; }
.intake-head img { width: 84px; margin: 0 auto 20px; }
.intake-head h1 { font-size: clamp(1.7rem, 4vw, 2.3rem); margin-bottom: 12px; }
.intake-head p { color: hsl(var(--muted-foreground)); font-size: 16px; }

.progress-track {
  display: flex;
  gap: 6px;
  margin-bottom: 12px;
}
.progress-track .seg {
  height: 4px;
  flex: 1;
  border-radius: 2px;
  background: hsl(var(--secondary));
  transition: background 0.3s;
}
.progress-track .seg.active { background: var(--gradient-accent); }
.progress-label {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: hsl(var(--muted-foreground));
  margin-bottom: 32px;
}
.progress-label b { color: hsl(var(--primary-glow)); font-weight: 600; }

.form-card {
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: 16px;
  padding: 40px 36px;
}
.step { display: none; }
.step.active { display: block; animation: fadeIn 0.3s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

.step h2 { font-size: 22px; margin-bottom: 6px; }
.step .step-sub { font-size: 14px; color: hsl(var(--muted-foreground)); margin-bottom: 28px; }

.field { margin-bottom: 20px; }
.field label {
  display: block;
  font-size: 13.5px;
  font-weight: 600;
  margin-bottom: 8px;
}
.field label span.opt { color: hsl(var(--muted-foreground)); font-weight: 400; }
.field input, .field select, .field textarea {
  width: 100%;
  background: hsl(var(--input));
  border: 1px solid hsl(var(--border));
  border-radius: 8px;
  padding: 12px 14px;
  /* 16px minimum. Anything smaller makes iOS Safari zoom the page in every time
     a field is tapped, which is punishing on a form this long. */
  font-size: 16px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  color: hsl(var(--foreground));
  transition: border-color 0.15s, box-shadow 0.15s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: hsl(var(--ring));
  box-shadow: 0 0 0 3px hsl(var(--ring) / 0.25);
}
.field input.error, .field select.error { border-color: hsl(0 72% 51%); }
.field .err-msg { color: hsl(0 72% 60%); font-size: 12.5px; margin-top: 6px; display: none; }
.field textarea { resize: vertical; min-height: 96px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.check-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.check-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid hsl(var(--border));
  background: hsl(var(--input));
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 14px;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
}
.check-pill:has(input:checked) {
  border-color: hsl(var(--ring));
  background: hsl(var(--primary) / 0.12);
}
.check-pill input { accent-color: hsl(var(--primary)); width: 16px; height: 16px; }

.form-nav {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 32px;
}
.form-nav .btn[disabled] { opacity: 0.55; cursor: not-allowed; }
.autosave-note {
  text-align: center;
  font-size: 12.5px;
  color: hsl(var(--muted-foreground));
  margin-top: 20px;
}

.success-panel { text-align: center; padding: 24px 0; }
.success-panel .check-big {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--gradient-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: var(--shadow-glow);
}
.success-panel h2 { font-size: 24px; margin-bottom: 12px; }
.success-panel p { color: hsl(var(--muted-foreground)); font-size: 15px; max-width: 400px; margin: 0 auto 28px; }

/* ---------- Terms ---------- */
.terms-wrap { max-width: 760px; margin: 0 auto; padding: 64px 24px 96px; }
.terms-wrap h1 { font-size: clamp(1.9rem, 4vw, 2.5rem); margin-bottom: 10px; }
.terms-updated { color: hsl(var(--muted-foreground)); font-size: 14px; margin-bottom: 48px; }
.terms-wrap h2 {
  font-size: 20px;
  margin: 44px 0 14px;
  padding-top: 28px;
  border-top: 1px solid hsl(var(--border) / 0.6);
}
.terms-wrap h2:first-of-type { border-top: none; padding-top: 0; }
.terms-wrap p, .terms-wrap li { color: hsl(var(--foreground) / 0.82); font-size: 15.5px; margin-bottom: 12px; }
.terms-wrap ul { padding-left: 22px; margin-bottom: 16px; }
.terms-wrap strong { color: hsl(var(--foreground)); }
.terms-highlight {
  background: hsl(var(--primary) / 0.1);
  border: 1px solid hsl(var(--primary) / 0.45);
  border-radius: 12px;
  padding: 24px 28px;
  margin: 20px 0;
}

/* ---------- Guarantee explainer ---------- */
.guarantee-detail {
  max-width: 780px;
  margin: 28px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gd-block {
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: 12px;
  padding: 22px;
}
.gd-block h3 {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: hsl(var(--primary-glow));
  margin-bottom: 10px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}
.gd-block p { font-size: 13.5px; color: hsl(var(--muted-foreground)); line-height: 1.55; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-list details {
  border-bottom: 1px solid hsl(var(--border) / 0.6);
}
.faq-list summary {
  cursor: pointer;
  padding: 20px 36px 20px 4px;
  font-weight: 600;
  font-size: 16px;
  list-style: none;
  position: relative;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: '+';
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  color: hsl(var(--primary-glow));
  font-size: 22px;
  font-weight: 400;
}
.faq-list details[open] summary::after { content: '\2013'; }
.faq-list details p {
  padding: 0 4px 22px;
  color: hsl(var(--muted-foreground));
  font-size: 15px;
}

/* ---------- Price sub ---------- */
.price-sub {
  display: block;
  margin-top: 10px;
  font-size: 13.5px;
  color: hsl(var(--muted-foreground));
  font-weight: 500;
}

/* ---------- Consent ---------- */
.consent-note {
  background: hsl(var(--primary) / 0.08);
  border: 1px solid hsl(var(--primary) / 0.35);
  border-radius: 10px;
  padding: 14px 18px;
  font-size: 13.5px;
  color: hsl(var(--foreground) / 0.85);
  margin-bottom: 24px;
}
.consent-group { margin-top: 28px; padding-top: 22px; border-top: 1px solid hsl(var(--border)); }
.consent-group > label.consent-title {
  display: block;
  font-size: 13.5px;
  font-weight: 600;
  margin-bottom: 12px;
}
.consent-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 8px 0;
  font-size: 13.5px;
  color: hsl(var(--foreground) / 0.85);
  cursor: pointer;
  line-height: 1.5;
}
.consent-item input {
  accent-color: hsl(var(--primary));
  width: 16px;
  height: 16px;
  margin-top: 3px;
  flex-shrink: 0;
}
.consent-item a { color: hsl(var(--primary-glow)); text-decoration: underline; }

/* ---------- Focus visibility ---------- */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible,
textarea:focus-visible, summary:focus-visible {
  outline: 2px solid hsl(var(--primary-glow));
  outline-offset: 2px;
}

/* ---------- Footer disclaimer ---------- */
.footer-disclaimer {
  font-size: 12px;
  color: hsl(var(--muted-foreground) / 0.85);
  max-width: 820px;
  margin: 0 auto 20px;
  text-align: center;
  line-height: 1.6;
  text-transform: none;
  letter-spacing: normal;
}
.footer-disclaimer a { color: hsl(var(--primary-glow)); }

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .hero h1 { font-size: 2.1rem; }
  .guarantee-detail { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .process-step + .process-step { border-left: none; border-top: 1px solid hsl(var(--border)); }
  .stats-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .shot-grid { columns: 2; }
  .clip-row { grid-template-columns: 1fr; }
  .clip { aspect-ratio: 16 / 9; }
  .nav-links { gap: 16px; }
  .nav-links a:not(.btn) { display: none; }
  .field-row { grid-template-columns: 1fr; }
  .check-grid { grid-template-columns: 1fr; }
  section { padding: 64px 0; }
}

@media (max-width: 560px) {
  .stats-grid { grid-template-columns: minmax(0, 1fr); }
  .shot-grid { columns: 1; max-width: 400px; margin: 0 auto; }
  .stat-card { padding: 28px 22px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}

/* ---- Scroll reveal ----
   Content lifts and fades in as it enters the viewport.
   Gated behind .js-reveal (set by JS) so that with JavaScript disabled
   everything renders normally — nothing is ever hidden from users or crawlers. */
.js-reveal [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  will-change: opacity, transform;
  transition:
    opacity 0.65s cubic-bezier(0.22, 0.61, 0.36, 1),
    transform 0.65s cubic-bezier(0.22, 0.61, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
}
.js-reveal [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}
/* On phones people flick-scroll fast, and the testimonial images are lazy-loaded.
   Keep the reveal snappy and drop the stagger so proof never lags behind the scroll. */
@media (max-width: 700px) {
  .js-reveal [data-reveal] {
    transform: translateY(12px);
    transition-duration: 0.38s;
    transition-delay: 0ms !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .js-reveal [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
