/* The 11pm Page — homepage v2 styles
   Single-column, single-idea-per-section, scroll-paced.
   Tokens come from colors_and_type.css + site.css. */

/* ============================================================
   1) HeroDark — full viewport, calm, time-aware
   ============================================================ */
.hero-dark {
  position: relative;
  min-height: 100vh;
  background: #0B0B0E;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  padding: 80px 24px 100px;
}
.hero-dark-grain {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
    radial-gradient(rgba(255,255,255,0.012) 1px, transparent 1px);
  background-size: 3px 3px, 7px 7px;
  background-position: 0 0, 1px 1px;
  pointer-events: none;
  mix-blend-mode: screen;
  opacity: 0.6;
}
.hero-dark-glow {
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 50% at 50% 90%, rgba(77,163,255,0.08), transparent 60%),
    radial-gradient(80% 60% at 50% 10%, rgba(255,255,255,0.02), transparent 60%);
  pointer-events: none;
}

/* corner clock — top right */
.clock {
  position: absolute; top: 32px; right: 32px;
  display: inline-flex; align-items: baseline; gap: 8px;
  font-size: 12px;
  color: var(--ink-3);
  letter-spacing: 0.02em;
  z-index: 5;
}
.clock-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #4DA3FF;
  align-self: center;
  box-shadow: 0 0 0 0 rgba(77,163,255,0.6);
  animation: clock-pulse 2.4s ease-out infinite;
}
@keyframes clock-pulse {
  0% { box-shadow: 0 0 0 0 rgba(77,163,255,0.5); }
  70% { box-shadow: 0 0 0 8px rgba(77,163,255,0); }
  100% { box-shadow: 0 0 0 0 rgba(77,163,255,0); }
}
.clock-time { color: var(--ink-1); font-weight: 500; }
.clock-where { color: var(--ink-4); }

/* Mobile: hide the corner clock — it falls inside the nav row and
   visually collides with the hamburger button. The clock is a quiet
   desktop-only flourish; the phone hero needs its top corner clean. */
@media (max-width: 720px) {
  .clock { display: none; }
}

.hero-dark-inner {
  position: relative; z-index: 2;
  max-width: 820px;
  text-align: center;
}
.hero-dark-eyebrow {
  margin-bottom: 36px;
  color: var(--ink-3);
  letter-spacing: 0.14em;
  font-size: 11px;
}
.hero-dark-h {
  font-size: clamp(3rem, 9vw, 6.5rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 0.98;
  color: var(--ink-1);
  margin: 0;
  text-wrap: balance;
}
.hero-dark-h em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--ink-2);
  letter-spacing: -0.02em;
}
.hero-dark-sub {
  margin: 36px auto 0;
  max-width: 540px;
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  line-height: 1.55;
  color: var(--ink-2);
}
/* What-is-Escape one-sentence explainer. Sits between the emotional
   subhead and the App Store badge so first-time visitors get an
   answer to "what is this" within the first 3 seconds, without
   needing to scroll past the badge. */
.hero-dark-explainer {
  margin: 28px auto 0;
  max-width: 560px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-3);
  letter-spacing: 0.01em;
}
.hero-dark-cta { margin-top: 36px; display: flex; justify-content: center; }
.hero-dark-foot {
  margin-top: 44px;
  font-size: 12px;
  color: var(--ink-3);
  letter-spacing: 0.02em;
  display: inline-flex; gap: 10px; flex-wrap: wrap; justify-content: center;
}
.hero-dark-foot-dot { color: var(--ink-4); }

.scroll-cue {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  display: inline-flex; flex-direction: column; align-items: center; gap: 12px;
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--ink-4);
  z-index: 4;
}
.scroll-cue-line {
  width: 1px; height: 36px;
  background: linear-gradient(to bottom, var(--ink-4), transparent);
  animation: cue-fall 2.2s ease-in-out infinite;
}
@keyframes cue-fall {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ============================================================
   1.5) WHERE TO START — multi-audience entry cards
   Sits right after the hero. 3 cards routing different visitor
   types (someone trying to quit / someone whose partner uses
   porn / someone whose drive is gone) to the right cluster.
   Plus a quiet quiz CTA below.
   ============================================================ */
.start {
  padding: 96px 24px 80px;
  background: var(--bg);
}
.start-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.start-h {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  margin: 12px 0 48px;
  color: var(--ink-1);
}
.start-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}
.start-card {
  display: block;
  padding: 28px 24px 32px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  text-decoration: none;
  color: var(--ink-1);
  transition: background 220ms ease, border-color 220ms ease, transform 220ms ease;
}
.start-card:hover {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.14);
  transform: translateY(-2px);
}
.start-card-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--ink-3);
  text-transform: uppercase;
  margin: 0 0 14px;
}
/* Subtle audience-color dot per card so the three options read as
   distinct at a glance without yelling. Each card's dot tints the
   eyebrow + the CTA arrow on hover. */
.start-card-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}
.start-card-quit       .start-card-dot { background: #4DA3FF; }  /* blue — recovery */
.start-card-partner    .start-card-dot { background: #C99B7A; }  /* warm amber — relational */
.start-card-motivation .start-card-dot { background: #6FCF97; }  /* green — growth */
.start-card-quit       .start-card-cta { color: #4DA3FF; }
.start-card-partner    .start-card-cta { color: #C99B7A; }
.start-card-motivation .start-card-cta { color: #6FCF97; }
.start-card-quit:hover       { border-color: rgba(77,163,255,0.30); }
.start-card-partner:hover    { border-color: rgba(201,155,122,0.30); }
.start-card-motivation:hover { border-color: rgba(111,207,151,0.30); }
.start-card h3 {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.018em;
  margin: 0 0 14px;
  color: var(--ink-1);
}
.start-card p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-2);
  margin: 0 0 18px;
}
.start-card-cta {
  display: inline-block;
  font-size: 13px;
  color: #4DA3FF;
  letter-spacing: 0.01em;
}
.start-quiz {
  text-align: center;
  font-size: 14px;
  color: var(--ink-3);
  margin: 0;
  padding-top: 16px;
}
.start-quiz a {
  color: #4DA3FF;
  text-decoration: none;
}
.start-quiz a:hover { text-decoration: underline; text-underline-offset: 3px; }

@media (max-width: 720px) {
  .start { padding: 64px 20px 56px; }
  .start-cards { grid-template-columns: 1fr; gap: 12px; margin-bottom: 24px; }
  .start-h { margin-bottom: 32px; }
}

/* ============================================================
   1.6) WHY ESCAPE — 3-bullet differentiator strip
   Tightly typeset, no images, sits between Where-to-Start and
   the 90s curve. The "what makes us different" answer.
   ============================================================ */
.why {
  padding: 80px 24px;
  background: rgba(255,255,255,0.015);
  border-top: 1px solid var(--line-1);
  border-bottom: 1px solid var(--line-1);
}
.why-inner {
  max-width: 920px;
  margin: 0 auto;
}
.why-list {
  list-style: none;
  padding: 0;
  margin: 32px 0 0;
  display: grid;
  gap: 32px;
}
.why-item {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) 2fr;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--line-1);
}
.why-item:first-child { border-top: 0; padding-top: 0; }
.why-item strong {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.012em;
  color: var(--ink-1);
}
.why-item span {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-2);
}

@media (max-width: 720px) {
  .why { padding: 56px 20px; }
  .why-item { grid-template-columns: 1fr; gap: 8px; }
  .why-item strong { font-size: 17px; }
}

/* ============================================================
   2.5) APP STORE REVIEWS — quiet quote strip
   Sits between the screenshot row and the Five Tabs section.
   Real reviews from the App Store, attributed by username.
   ============================================================ */
.reviews {
  padding: 80px 24px;
  background: var(--bg);
}
.reviews-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.reviews-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin: 32px auto 24px;
  max-width: 760px;
}
.review {
  margin: 0;
  padding: 28px 24px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
}
.review-q {
  margin: 0 0 18px;
  font-size: 17px;
  line-height: 1.5;
  color: var(--ink-1);
  font-style: italic;
}
.review-cap {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 12px;
  color: var(--ink-3);
  letter-spacing: 0.02em;
}
.review-name { font-weight: 500; color: var(--ink-2); }
.review-stars { color: #f5b042; letter-spacing: 0.06em; }
.reviews-foot {
  text-align: center;
  font-size: 13px;
  color: var(--ink-3);
  margin: 0;
}
.reviews-foot a {
  color: #4DA3FF;
  text-decoration: none;
}
.reviews-foot a:hover { text-decoration: underline; text-underline-offset: 3px; }

@media (max-width: 720px) {
  .reviews { padding: 56px 20px; }
  .reviews-row { grid-template-columns: 1fr; gap: 14px; margin: 24px 0 20px; }
  .review { padding: 22px 20px; }
}

/* ============================================================
   2.5b) TESTIMONIAL MARQUEE — horizontal auto-scroll
   8 quotes from the iOS paywall (PaywallTestimonialMarquee).
   Single row. 40s loop. Pause on hover. Edge fade via mask-image.
   Cards are doubled in markup so translateX(-50%) seams invisibly.
   Quiet, on-brand: no avatars, no animation flair.
   ============================================================ */
.reviews-marquee {
  padding: 80px 0 72px;
  background: var(--bg);
  overflow: hidden;        /* clip the wide track to viewport */
}
.reviews-marquee-eyebrow-wrap {
  text-align: center;
  margin-bottom: 28px;
  padding: 0 24px;
}
.reviews-marquee-track-wrap {
  /* The mask creates the "void edges" — cards fade in from left
     and out to right instead of slamming into the viewport edge. */
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 8%, #000 92%, transparent 100%);
          mask-image: linear-gradient(to right, transparent 0, #000 8%, #000 92%, transparent 100%);
}
.reviews-marquee-track {
  display: flex;
  gap: 14px;
  width: max-content;       /* lets the row be as wide as 16 cards */
  animation: rmq-scroll 60s linear infinite;
}
.reviews-marquee:hover .reviews-marquee-track,
.reviews-marquee-track:focus-within {
  /* Pause on hover OR when a card has keyboard focus — readers
     who actually want to read the quote can stop the conveyor. */
  animation-play-state: paused;
}
.rmq-card {
  flex: 0 0 auto;
  width: clamp(260px, 32vw, 340px);
  margin: 0;
  padding: 22px 22px 18px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 140px;
}
.rmq-stars {
  font-size: 13px;
  letter-spacing: 0.10em;
  color: #f5b042;     /* App Store star gold */
}
.rmq-q {
  margin: 0;
  font-size: 15px;
  line-height: 1.45;
  color: var(--ink-1);
  font-weight: 400;
  letter-spacing: -0.005em;
  /* Italic + serif feels like a quoted voice, not marketing copy. */
  font-style: italic;
  font-family: ui-serif, "New York", Georgia, serif;
}
.rmq-q::before { content: "\201C"; }   /* curly opening quote */
.rmq-q::after  { content: "\201D"; }
.rmq-cap {
  margin-top: auto;
  font-size: 12px;
  color: var(--ink-3);
  letter-spacing: 0.02em;
}
.rmq-name { color: var(--ink-2); font-weight: 500; }
.reviews-marquee-foot {
  text-align: center;
  font-size: 13px;
  color: var(--ink-3);
  margin: 28px 0 0;
  padding: 0 24px;
}
.reviews-marquee-foot a {
  color: #4DA3FF;
  text-decoration: none;
}
.reviews-marquee-foot a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

@keyframes rmq-scroll {
  /* The track contains 8 cards × 2 (16 total). Translating exactly
     -50% lands at the start of set 2, which is identical pixel-for-
     pixel to set 1 — perfect seam, infinite loop. */
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}

/* Mobile: smaller cards, slightly faster loop so you don't wait too
   long for fresh content while glancing. Still readable. */
@media (max-width: 720px) {
  .reviews-marquee { padding: 56px 0 48px; }
  .reviews-marquee-track { animation-duration: 50s; gap: 10px; }
  .rmq-card { width: 78vw; max-width: 320px; padding: 18px; min-height: 120px; }
  .rmq-q { font-size: 14px; }
}

/* Honor system motion preference — auto-scroll is animation. */
@media (prefers-reduced-motion: reduce) {
  .reviews-marquee-track { animation: none; }
  .reviews-marquee-track-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
  }
  .rmq-card { scroll-snap-align: start; }
}

/* ============================================================
   2) NinetySeconds — scroll-driven urge curve
   ============================================================ */
.ninety {
  position: relative;
  min-height: 220vh;            /* gives scroll headroom for curve */
  background: #0B0B0E;
  border-top: 1px solid var(--line-1);
  border-bottom: 1px solid var(--line-1);
}
.ninety-inner {
  position: sticky; top: 0;
  height: 100vh;
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  padding: 80px 24px;
  text-align: center;
}
.ninety-eyebrow {
  font-size: 10px; letter-spacing: 0.18em; color: var(--ink-3);
  text-transform: uppercase; font-weight: 600;
  margin-bottom: 18px;
}
.ninety-h {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 600; letter-spacing: -0.035em; line-height: 1.05;
  color: var(--ink-1); margin: 0;
}
.ninety-sub {
  margin: 22px auto 0;
  max-width: 560px;
  font-size: clamp(0.95rem, 1.4vw, 1.05rem);
  line-height: 1.6;
  color: var(--ink-2);
}
.ninety-sub strong { color: var(--ink-1); font-weight: 600; }

.ninety-stage {
  position: relative;
  width: 100%;
  max-width: 1100px;
  margin: 60px auto 0;
}
.ninety-svg {
  width: 100%;
  height: clamp(200px, 28vh, 320px);
  display: block;
}
.ninety-readout {
  position: absolute; top: 0; right: 0;
  text-align: right;
  color: var(--ink-1);
}
.ninety-counter {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 300; letter-spacing: -0.04em;
  color: #4DA3FF;
  line-height: 1;
}
.ninety-counter-unit {
  font-size: 0.4em; color: var(--ink-2); margin-left: 2px; font-weight: 400;
}
.ninety-phase {
  margin-top: 6px;
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-2); font-weight: 600;
}
.ninety-of {
  font-size: 11px; color: var(--ink-3);
  letter-spacing: 0.05em;
}
.ninety-marks {
  display: flex; justify-content: space-between;
  width: 100%; max-width: 1100px;
  margin-top: 8px;
  font-size: 10px; color: var(--ink-3);
  letter-spacing: 0.1em; font-variant-numeric: tabular-nums;
}
.ninety-marks .peak { color: var(--ink-2); font-weight: 600; }

.ninety-after {
  margin-top: 40px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 600ms ease, transform 600ms ease;
}
.ninety-after.in { opacity: 1; transform: translateY(0); }
.ninety-after-q {
  font-family: var(--font-serif); font-style: italic;
  font-size: clamp(1.2rem, 2.2vw, 1.6rem);
  line-height: 1.4;
  color: var(--ink-1);
  max-width: 640px; margin: 0 auto;
}
.ninety-after-cap {
  margin-top: 14px;
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-4);
}

@media (max-width: 720px) {
  .ninety { min-height: 180vh; }
  .ninety-readout { position: static; text-align: center; margin-top: 20px; }
}

/* ============================================================
   3) Triptych — sticky phone left, scrolling text right
   ============================================================ */
.triptych {
  background: #0B0B0E;
  padding: 80px 24px 40px;
}
.trip-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 80px 0 120px;
  align-items: start;
  border-top: 1px solid var(--line-1);
}
.trip-row:first-child { border-top: 0; padding-top: 40px; }
.trip-stage {
  position: sticky; top: 80px;
  display: flex; justify-content: center;
  align-self: start;
}
.trip-phone-wrap {
  transform: scale(1.0);
  transform-origin: top center;
  filter: drop-shadow(0 50px 80px rgba(0,0,0,0.8));
}
.trip-text {
  padding-top: 60px;
  max-width: 460px;
}
.trip-eyebrow {
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--ink-3); font-weight: 600;
  margin-bottom: 18px;
}
.trip-h {
  font-size: clamp(2rem, 3.6vw, 2.8rem);
  font-weight: 600; letter-spacing: -0.03em; line-height: 1.05;
  color: var(--ink-1);
  margin: 0 0 24px;
  text-wrap: balance;
}
.trip-body {
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink-2);
}
.trip-body strong { color: var(--ink-1); font-weight: 600; }

@media (max-width: 900px) {
  .trip-row { grid-template-columns: 1fr; gap: 40px; padding: 56px 0 80px; }
  .trip-stage { position: static; }
  .trip-text { padding-top: 0; max-width: 600px; margin: 0 auto; text-align: center; }
}

/* ============================================================
   4) FiveTabs — typographic table of contents
   ============================================================ */
.ftabs {
  background: #0B0B0E;
  padding: 120px 24px;
  border-top: 1px solid var(--line-1);
}
.ftabs-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.ftabs-h {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 600; letter-spacing: -0.035em; line-height: 1.05;
  color: var(--ink-1);
  margin: 14px 0 64px;
  max-width: 720px;
  text-wrap: balance;
}
.ftabs-list {
  list-style: none; padding: 0; margin: 0;
  border-top: 1px solid var(--line-1);
}
.ftab {
  display: grid;
  grid-template-columns: 60px 220px 1fr;
  align-items: baseline;
  gap: 24px;
  padding: 28px 4px;
  border-bottom: 1px solid var(--line-1);
  transition: background 240ms ease;
  cursor: default;
}
.ftab:hover { background: rgba(255,255,255,0.012); }
.ftab-num {
  font-size: 13px; color: var(--ink-4);
  letter-spacing: 0.05em;
  font-variant-numeric: tabular-nums;
}
.ftab-name {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 500; letter-spacing: -0.025em;
  color: var(--ink-1);
}
.ftab:hover .ftab-name { color: #4DA3FF; }
.ftab-line {
  font-size: 1rem; color: var(--ink-2);
  line-height: 1.5;
}

@media (max-width: 720px) {
  .ftab {
    grid-template-columns: 40px 1fr;
    grid-template-rows: auto auto;
    gap: 6px 16px;
    padding: 22px 4px;
  }
  .ftab-line { grid-column: 2; font-size: 0.9rem; }
}

/* ============================================================
   5) Decision — pricing as one line, success-screen quote
   ============================================================ */
.decide {
  background: #0B0B0E;
  padding: 140px 24px 160px;
  border-top: 1px solid var(--line-1);
  text-align: center;
}
.decide-inner {
  max-width: 720px; margin: 0 auto;
}
.decide-q {
  margin: 28px 0 0;
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  font-style: italic;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink-1);
  font-weight: 400;
}
.decide-divider {
  width: 32px; height: 1px;
  background: var(--ink-4);
  margin: 56px auto;
}
.decide-pricing {
  display: inline-flex; align-items: baseline;
  gap: 10px; flex-wrap: wrap; justify-content: center;
  font-size: 14px; color: var(--ink-2);
  letter-spacing: -0.005em;
  font-variant-numeric: tabular-nums;
}
.decide-pricing-sep { color: var(--ink-4); }
.decide-sub {
  font-size: 14px;
  color: var(--ink-3);
  letter-spacing: 0.01em;
  margin: 0;
}
.decide-cta { margin-top: 48px; display: flex; justify-content: center; }

/* Footer (.promise) styles moved to site.css so every page picks them up. */

/* ============================================================
   INSIDE THE APP — App Store screenshots, horizontal scroll
   ============================================================ */
.shots {
  padding: clamp(80px, 12vw, 140px) 0 clamp(60px, 8vw, 100px);
  background: linear-gradient(180deg, #0B0B0E 0%, #0E0E13 50%, #0B0B0E 100%);
  border-top: 1px solid var(--line-1);
  border-bottom: 1px solid var(--line-1);
  position: relative;
}

.shots-head {
  max-width: 1180px;
  margin: 0 auto 48px;
  padding: 0 24px;
}
.shots-h {
  font-size: clamp(2rem, 4.6vw, 3.2rem);
  font-weight: 600; letter-spacing: -0.035em; line-height: 1.05;
  color: var(--ink-1); margin: 18px 0 22px;
  text-wrap: balance;
  max-width: 720px;
}
.shots-h em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--ink-2);
}
.shots-sub {
  font-size: 1.0625rem; line-height: 1.6;
  color: var(--ink-2);
  max-width: 600px;
  margin: 0;
  text-wrap: pretty;
}

.shots-row {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  padding: 12px 24px 32px;
  scrollbar-width: none;       /* Firefox */
  -ms-overflow-style: none;    /* IE/Edge */
  /* Bleed the row to the viewport edges so cards can flow off-screen */
  margin: 0 calc(50% - min(50vw, 50%));
  padding-left: max(24px, calc(50% - 590px));
  padding-right: max(24px, calc(50% - 590px));
}
.shots-row::-webkit-scrollbar { display: none; }   /* WebKit */

.shot {
  flex: 0 0 auto;
  width: clamp(220px, 26vw, 280px);
  margin: 0;
  scroll-snap-align: start;
}
.shot img {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  display: block;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 30px 70px -20px rgba(0,0,0,0.7),
              inset 0 0 0 1px rgba(255,255,255,0.04);
  background: #15151A;
  transition: transform 260ms cubic-bezier(0.22,0.61,0.36,1),
              box-shadow 260ms cubic-bezier(0.22,0.61,0.36,1);
}
.shot:hover img {
  transform: translateY(-4px);
  box-shadow: 0 40px 90px -20px rgba(0,0,0,0.85),
              inset 0 0 0 1px rgba(255,255,255,0.08);
}
.shot figcaption {
  margin-top: 18px;
  padding: 0 4px;
  display: flex; flex-direction: column;
  gap: 4px;
}
.shot figcaption strong {
  font-size: 14px; font-weight: 600;
  color: var(--ink-1);
  letter-spacing: -0.005em;
  line-height: 1.3;
}
.shot figcaption span {
  font-size: 12px;
  color: var(--ink-3);
  letter-spacing: 0.01em;
  line-height: 1.4;
}

@media (max-width: 720px) {
  .shots-row { padding-left: 24px; padding-right: 24px; }
  .shot { width: 70vw; max-width: 280px; }
}

/* ============================================================
   Hero ambient breathing dots
   ============================================================ */
.hero-dots {
  position: absolute; inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}
.hero-dot {
  position: absolute;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: #4DA3FF;
  opacity: 0;
  animation: hero-dot-breathe 5s ease-in-out infinite;
  will-change: opacity, transform;
  filter: blur(0.5px);
}
@keyframes hero-dot-breathe {
  0%, 100% { opacity: 0;    transform: scale(0.6); }
  50%      { opacity: 0.32; transform: scale(1.2); }
}

/* ============================================================
   90s section — mobile auto-play variant (overrides scroll-driven)
   ============================================================ */
@media (max-width: 720px) {
  .ninety.ninety-mobile {
    min-height: 100vh;       /* down from 220vh */
  }
  .ninety.ninety-mobile .ninety-inner {
    position: relative;       /* not sticky */
    height: auto;
    padding: 80px 24px;
    min-height: 100vh;
  }
  /* Subtle "tap to replay" hint */
  .ninety.ninety-mobile::after {
    content: 'tap to replay';
    position: absolute;
    bottom: 24px; left: 0; right: 0;
    text-align: center;
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ink-4);
    pointer-events: none;
  }
}

/* Hero positioning ribbon — explicit "what is this" line above the
   time-aware eyebrow. Tiny, quiet, but tells crawlers + first-time
   visitors what the site is for. */
.hero-positioning {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-4);
  margin: 0 0 14px;
  font-weight: 600;
}

/* ============================================================
   Mobile hero — tighten to 4 blocks (H1 + subhead + badge + privacy)
   Desktop keeps all 7 blocks; mobile hides the supporting layers
   so the emotional H1 lands first on a small screen.
   ============================================================ */
@media (max-width: 720px) {
  .hero-positioning      { display: none; }   /* "FREE PORN-RECOVERY APP" — covered by meta + screenshots row */
  .hero-dark-eyebrow     { display: none; }   /* "MORNING. A QUIET NOTE." — corner clock already conveys time */
  .hero-dark-foot:first-of-type { display: none; }  /* Product summary — screenshots below show this visually */
  .hero-dark-h           { font-size: clamp(2.6rem, 11vw, 4rem); }  /* slightly smaller H1 for breathing room */
  .hero-dark-sub         { margin-top: 28px; font-size: 1rem; }
  .hero-dark-cta         { margin-top: 36px; }
}

/* ============================================================
   Shots row: drag cursor + centered arrow controls below the row
   ============================================================ */
.shots-track { position: relative; }

.shots-row {
  scroll-snap-type: x mandatory;
  cursor: grab;
}
.shots-row.dragging {
  cursor: grabbing;
  user-select: none;
  scroll-snap-type: none;   /* smooth motion mid-drag */
}
.shots-row.dragging .shot { pointer-events: none; }

/* --- Centered controls below the row --- */
.shots-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: 100%;
  box-sizing: border-box;
  margin: 28px 0 0;
  padding: 0 24px;
  text-align: center;
}
.shots-arrow {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.04);
  color: var(--ink-1);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  font: inherit;
  transition: opacity 240ms cubic-bezier(0.22,0.61,0.36,1),
              background 200ms ease,
              border-color 200ms ease,
              transform 200ms ease;
}
.shots-arrow:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.25);
  transform: scale(1.06);
}
.shots-arrow:active { transform: scale(0.96); }
.shots-arrow.hidden {
  opacity: 0.25;
  pointer-events: none;
}

/* Mobile keeps the arrows — they're below the row, no overlap issue */
@media (hover: none), (max-width: 720px) {
  .shots-row { cursor: default; }
  .shots-row.dragging { cursor: default; }
  .shots-controls { gap: 14px; margin-top: 22px; }
  .shots-arrow { width: 40px; height: 40px; }
}

/* ---------------------------------------------------------------- */
/* FAQ section — common questions, answered concisely.              */
/* Mirrors the FAQPage JSON-LD on the homepage. <details>/<summary> */
/* gives keyboard navigation + screen-reader semantics for free —   */
/* no JS needed.                                                    */
/* ---------------------------------------------------------------- */
.faq {
  padding: 96px 24px;
  background: var(--surface, #0F0F14);
  border-top: 1px solid var(--ink-divider, #1F1F26);
}
.faq-inner {
  max-width: 720px;
  margin: 0 auto;
}
.faq-h {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(28px, 4vw, 38px);
  line-height: 1.18;
  color: var(--ink-1, #F5F5F7);
  margin: 8px 0 32px;
  font-weight: 400;
  letter-spacing: -0.01em;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.faq-item {
  border-bottom: 1px solid var(--ink-divider, #1F1F26);
}
.faq-item:first-child {
  border-top: 1px solid var(--ink-divider, #1F1F26);
}
.faq-item[open] .faq-q::after {
  transform: rotate(45deg);
}
.faq-q {
  cursor: pointer;
  list-style: none;
  font-size: clamp(16px, 2vw, 18px);
  line-height: 1.4;
  color: var(--ink-1, #F5F5F7);
  padding: 22px 40px 22px 0;
  position: relative;
  font-weight: 500;
  letter-spacing: -0.005em;
  transition: color 0.18s ease;
}
.faq-q::-webkit-details-marker {
  display: none;
}
.faq-q::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  font-weight: 300;
  color: var(--ink-3, #6E6E76);
  transition: transform 0.22s ease, color 0.18s ease;
  line-height: 1;
}
.faq-q:hover {
  color: var(--accent, #4DA3FF);
}
.faq-q:hover::after {
  color: var(--accent, #4DA3FF);
}
.faq-q:focus-visible {
  outline: 2px solid var(--accent, #4DA3FF);
  outline-offset: 4px;
  border-radius: 2px;
}
.faq-a {
  padding: 0 40px 22px 0;
  color: var(--ink-2, #B5B5BB);
  font-size: 15px;
  line-height: 1.6;
  animation: faqFadeIn 0.2s ease;
}
.faq-a p {
  margin: 0;
}
@keyframes faqFadeIn {
  from { opacity: 0; transform: translateY(-2px); }
  to   { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .faq-q::after { transition: none; }
  .faq-a { animation: none; }
}
@media (max-width: 720px) {
  .faq { padding: 72px 20px; }
  .faq-q { padding: 18px 32px 18px 0; }
  .faq-a { padding: 0 32px 18px 0; }
}
