/* ══════════════════════════════════════════════════════════════════
   CLICKBAIT — MAIN STYLESHEET
   ──────────────────────────────────────────────────────────────────
   1.  Design tokens (colours, fonts, spacing)  ← EDIT COLOURS HERE
   2.  Reset & base
   3.  Layout helpers
   4.  Buttons
   5.  Header / navigation
   6.  Hero
   7.  VSL video
   8.  About + stats
   9.  Steps
   10. Logo marquee
   11. Results (video cards, screenshots, lightbox)
   12. FAQ
   13. Final CTA
   14. Footer
   15. Mobile sticky bar
   ══════════════════════════════════════════════════════════════════ */


/* ── 1. DESIGN TOKENS ─────────────────────────────────────────────
   Change these four lines to re-theme the entire website.
   ───────────────────────────────────────────────────────────────── */
:root {
  /* Brand */
  --accent:        #ffc600;   /* yellow — buttons + highlights   */
  --accent-soft:   #ffd84d;   /* lighter yellow for hover        */
  --bg:            #000000;   /* page background — black         */
  --text:          #ffffff;   /* body text — white               */

  /* Derived surfaces */
  --bg-alt:        #060606;
  --surface:       #0d0d0d;
  --surface-2:     #131313;
  --muted:         #9a9a9a;
  --muted-dim:     #6b6b6b;
  --line:          rgba(255, 255, 255, .09);
  --line-strong:   rgba(255, 255, 255, .16);
  --accent-glow:   rgba(255, 198, 0, .18);
  --accent-tint:   rgba(255, 198, 0, .08);

  /* Type */
  --font-display: "Parkinsans", "Segoe UI", system-ui, sans-serif;
  --font-body:    "DM Sans", "Segoe UI", system-ui, sans-serif;

  /* Rhythm */
  --radius:       18px;
  --radius-sm:    12px;
  --radius-pill:  999px;
  --pad-x:        20px;
  --section-y:    72px;
  --max:          1180px;
  --max-md:       860px;

  --ease: cubic-bezier(.22, 1, .36, 1);
}


/* ── 2. RESET & BASE ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

* { margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  /* keeps anchor targets clear of the sticky header */
  scroll-padding-top: 90px;
  -webkit-text-size-adjust: 100%;
  /* `clip` stops the off-screen mobile drawer from creating a sideways
     scrollbar. It must not be `hidden` — that would break the sticky header. */
  overflow-x: clip;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;  /* fallback for browsers without `clip` */
  overflow-x: clip;
}

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

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

strong { color: var(--text); font-weight: 700; }

::selection { background: var(--accent); color: #000; }

/* visible keyboard focus */
a:focus-visible,
button:focus-visible,
summary:focus-visible,
label:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

/* thin dark scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: #000; }
::-webkit-scrollbar-thumb { background: #262626; border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent); }


/* ── 3. LAYOUT HELPERS ───────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: var(--pad-x);
}
.container--md { max-width: var(--max-md); }

.section {
  padding-block: var(--section-y);
  position: relative;
}
.section--tight { padding-block: 22px var(--section-y); }
.section--alt   { background: var(--bg-alt); }
.section--logos { padding-block: 48px; border-block: 1px solid var(--line); }

.center { text-align: center; }

/* The button that closes a section. It needs air above it, otherwise it
   sits flush against the screenshots or cards it follows. Every
   section-ending CTA uses this, so the spacing stays consistent. */
.section-cta {
  text-align: center;
  margin-top: 40px;
}

/* Eyebrow pill above every section heading */
.eyebrow {
  display: inline-block;
  padding: 6px 16px;
  border: 1px solid var(--accent);
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-size: .66rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}

.section__title {
  font-size: clamp(1.9rem, 6.2vw, 3.1rem);
  font-weight: 500;
  margin-bottom: 16px;
  max-width: 18ch;
}
.section__title--sm { font-size: clamp(1.6rem, 5.2vw, 2.4rem); max-width: 22ch; }

.section__sub {
  color: var(--muted);
  font-size: 1rem;
  max-width: 56ch;
  margin-bottom: 40px;
}

/* Yellow highlight used inside headings */
.hl { color: var(--accent); }

/* Small pill badge */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-pill);
  background: var(--accent-tint);
  font-family: var(--font-display);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .18em;
  color: var(--text);
}
.pill__dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-glow);
}

/* Sub-heading inside the results section */
.sub-head {
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--text);
  margin: 56px 0 22px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.sub-head .hl { font-size: .8rem; letter-spacing: .1em; }

/* Generic grids */
.grid { display: grid; gap: 16px; }
.grid--2 { grid-template-columns: 1fr; }
.grid--3 { grid-template-columns: 1fr; }
.grid--4 { grid-template-columns: repeat(2, 1fr); }


/* ── 4. BUTTONS ──────────────────────────────────────────────────── */
.btn {
  --btn-py: 14px;
  --btn-px: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: var(--btn-py) var(--btn-px);
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-align: center;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform .25s var(--ease),
              background-color .25s var(--ease),
              border-color .25s var(--ease),
              box-shadow .25s var(--ease),
              color .25s var(--ease);
  will-change: transform;
}

.btn--primary {
  background: var(--accent);
  color: #000;
  box-shadow: 0 6px 26px -8px var(--accent-glow);
}
.btn--primary:hover {
  background: var(--accent-soft);
  transform: translateY(-2px);
  box-shadow: 0 12px 34px -10px rgba(255, 198, 0, .45);
}

/* Solid white — the secondary CTA next to the yellow one */
.btn--light {
  background: #fff;
  color: #000;
}
.btn--light:hover {
  background: #ececec;
  transform: translateY(-2px);
}

.btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--line-strong);
}
.btn--ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

.btn--sm { --btn-py: 10px; --btn-px: 18px; font-size: .72rem; }
.btn--lg { --btn-py: 16px; --btn-px: 30px; }
.btn--xl { --btn-py: 18px; --btn-px: 34px; font-size: .86rem; }

.btn:active { transform: translateY(0) scale(.98); }


/* ── 5. HEADER / NAV ─────────────────────────────────────────────── */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(0, 0, 0, .78);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.logo { display: inline-flex; align-items: center; }
/* Logo size lives here. The SVG is cropped tight to the wordmark, so this
   height is the real height of the artwork — raise it if you want it bigger. */
.logo__img { height: 26px; width: auto; }

.nav { display: none; }

.nav__link {
  font-family: var(--font-display);
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .12em;
  color: var(--muted);
  transition: color .2s var(--ease);
  position: relative;
}
.nav__link:hover { color: var(--text); }
.nav__link::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 2px;
  background: var(--accent);
  transition: width .28s var(--ease);
}
.nav__link:hover::after { width: 100%; }

/* Menu icon — four yellow squares in a 2x2 grid */
.burger {
  width: 40px; height: 40px;
  display: grid;
  grid-template-columns: repeat(2, 13px);
  gap: 5px;
  place-content: center;
  cursor: pointer;
  transition: transform .38s var(--ease);
}
.burger span {
  width: 13px; height: 13px;
  border: 2px solid var(--accent);
  border-radius: 4px;
  transition: border-radius .38s var(--ease), background-color .3s var(--ease);
}
.burger:hover span { background: var(--accent-tint); }

/* open state: the grid tilts and the squares round off */
.nav-toggle:checked ~ .header .burger { transform: rotate(45deg); }
.nav-toggle:checked ~ .header .burger span { border-radius: 50%; }

/* Mobile drawer */
.nav-scrim {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .6);
  backdrop-filter: blur(2px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s var(--ease);
  z-index: 98;
}
.nav-toggle:checked ~ .nav-scrim { opacity: 1; pointer-events: auto; }

/* prevent body scroll while menu is open */
.nav-toggle:checked ~ .header { box-shadow: 0 0 0 100vmax rgba(0,0,0,0); }


/* ── 6. HERO ─────────────────────────────────────────────────────── */
.hero {
  position: relative;
  /* tight on phones so the VSL lands above the fold */
  padding-block: 30px 0;
  overflow: hidden;
  text-align: center;
}

.hero__glow {
  position: absolute;
  top: -220px; left: 50%;
  transform: translateX(-50%);
  width: 780px; height: 560px;
  background: radial-gradient(ellipse at center, var(--accent-glow) 0%, transparent 68%);
  pointer-events: none;
  filter: blur(20px);
}

.hero__inner { position: relative; z-index: 1; }

.hero__title {
  /* Capped at 2rem so tablets don't overshoot the desktop size — 5.2vw
     alone hit 37px at 720px wide, which was larger than the 900px+ rule
     below, so the heading shrank as the screen grew. */
  font-size: clamp(1.42rem, 5.2vw, 2rem);
  font-weight: 500;
  line-height: 1.34;
  margin: 0 auto 16px;
  max-width: 26ch;
  letter-spacing: -0.01em;
}

/* the supporting line is noise on a small screen — desktop only */
.hero__sub {
  display: none;
  color: var(--muted);
  font-size: clamp(.95rem, 3.6vw, 1.1rem);
  max-width: 56ch;
  margin-inline: auto;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 22px auto 0;
}

/* PAID SITE — the fee line under the CTA buttons. Lives here rather than
   in pages.css because the homepage doesn't load pages.css. */
.fee-note {
  margin: 14px auto 0;
  font-size: .82rem;
  color: var(--muted);
  max-width: 46ch;
  line-height: 1.5;
}
.fee-note [data-fee] { color: var(--accent); font-weight: 700; }

/* social proof row — desktop only, same reason as the subheading */
.hero__trust {
  display: none;
  margin-top: 30px;
  font-size: .84rem;
  color: var(--muted);
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}
.hero__trust strong { color: var(--accent); }

.hero__avatars { display: inline-flex; }
.hero__avatars i {
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 2px solid var(--bg);
  margin-left: -9px;
  background: linear-gradient(135deg, #2a2a2a, #4a4a4a);
}
.hero__avatars i:first-child { margin-left: 0; }
.hero__avatars i:nth-child(2) { background: linear-gradient(135deg, #3a3a3a, #5c5c5c); }
.hero__avatars i:nth-child(3) { background: linear-gradient(135deg, #444, #6a6a6a); }
.hero__avatars i:nth-child(4) { background: var(--accent); }


/* ── 7. VSL VIDEO ────────────────────────────────────────────────── */

/* the heading above the video is desktop-only — on phones the video
   follows straight after the hero buttons */
.vsl__head { display: none; }

.vsl { margin-top: 0; }

.vsl__frame {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line-strong);
  background: var(--surface);
  box-shadow: 0 30px 80px -40px rgba(255, 198, 0, .35),
              0 0 0 1px rgba(255, 198, 0, .07);
}
.vsl__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  border: 0;
}

/* ---- Lite YouTube facade -------------------------------------------
   Shows the video's thumbnail and only loads the real player once the
   visitor clicks. Faster than an eager iframe, and it still shows a
   proper poster on hosts where YouTube refuses to embed. */
.ytlite {
  position: absolute;
  inset: 0;
  display: block;
  cursor: pointer;
  background: #000;
}
.ytlite__thumb {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: opacity .35s var(--ease), transform .6s var(--ease);
}
.ytlite:hover .ytlite__thumb { opacity: .78; transform: scale(1.03); }

.ytlite__play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 68px; height: 68px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 8px 30px -6px rgba(0, 0, 0, .7);
  transition: transform .3s var(--ease), background-color .3s var(--ease);
}
.ytlite__play::after {
  content: "";
  position: absolute;
  top: 50%; left: 54%;
  transform: translate(-50%, -50%);
  border-style: solid;
  border-width: 11px 0 11px 18px;
  border-color: transparent transparent transparent #000;
}
.ytlite:hover .ytlite__play {
  transform: translate(-50%, -50%) scale(1.1);
  background: var(--accent-soft);
}

/* hidden on phones — the sticky bottom bar is the CTA there */
.vsl__cta {
  display: none;
  margin-top: 26px;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}


/* ── 8. ABOUT + FACT STRIP + STATS ───────────────────────────────── */

/* Centred section header used by About and How-it-works */
.head-center { text-align: center; margin-bottom: 40px; }
.head-center .section__title { margin-inline: auto; }

.lead {
  color: var(--muted);
  font-size: 1rem;
  max-width: 74ch;
  margin: 0 auto;
}

/* Four highlight cells inside one bordered box, split by hairlines */
.factstrip {
  display: grid;
  grid-template-columns: 1fr;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
  margin-bottom: 44px;
}

.fact {
  padding: 26px 22px;
  border-bottom: 1px solid var(--line);
  transition: background-color .3s var(--ease);
}
.fact:last-child { border-bottom: 0; }
.fact:hover { background: var(--surface-2); }

/* Round brand badge. The source image is a square crop with the wordmark
   sized to ~92% of the width, so nothing gets clipped by the circle. */
.fact__img {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 18px;
}

.fact__label {
  display: block;
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}

.fact__title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 500;
  color: var(--text);
}

/* the → at the end of each cell */
.fact__arrow {
  position: relative;
  flex: 0 0 auto;
  width: 22px; height: 2px;
  background: currentColor;
  transition: transform .3s var(--ease), background-color .3s var(--ease);
}
.fact__arrow::after {
  content: "";
  position: absolute;
  right: 0; top: 50%;
  width: 8px; height: 8px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
}
.fact:hover .fact__arrow { transform: translateX(5px); color: var(--accent); }

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

.stat {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 18px;
  text-align: center;
  transition: border-color .3s var(--ease), transform .3s var(--ease), background-color .3s var(--ease);
}
.stat:hover {
  border-color: rgba(255, 198, 0, .4);
  background: var(--surface-2);
  transform: translateY(-4px);
}
.stat__num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 6vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 8px;
}
.stat__label {
  display: block;
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
}


/* ── 9. HOW IT WORKS — TIMELINE FRAMEWORK ────────────────────────── */
.timeline {
  position: relative;
  display: grid;
  gap: 34px;
}

/* the horizontal line the badges sit on — desktop only */
.timeline__rail {
  display: none;
  position: absolute;
  top: 21px; left: 8%; right: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-strong) 12%, var(--line-strong) 88%, transparent);
}

.tstep {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* yellow hexagon holding the step number */
.tstep__badge {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 42px; height: 42px;
  background: var(--accent);
  color: #000;
  font-family: var(--font-display);
  font-size: .95rem;
  font-weight: 700;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  transition: transform .35s var(--ease);
}
.tstep:hover .tstep__badge { transform: scale(1.12) rotate(8deg); }

/* the vertical connector dropping from the badge to the card */
.tstep__stem {
  width: 1px;
  height: 26px;
  background: linear-gradient(180deg, var(--line-strong), transparent);
  position: relative;
}
.tstep__stem::after {
  content: "";
  position: absolute;
  bottom: -4px; left: 50%;
  transform: translateX(-50%);
  width: 7px; height: 7px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  background: var(--bg-alt);
}

.tstep__card {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  transition: border-color .3s var(--ease), transform .3s var(--ease), background-color .3s var(--ease);
}
.tstep:hover .tstep__card {
  border-color: rgba(255, 198, 0, .35);
  background: var(--surface-2);
  transform: translateY(-4px);
}

.tstep__title { font-size: 1.12rem; font-weight: 600; margin-bottom: 10px; }
.tstep__text  { color: var(--muted); font-size: .93rem; }


/* ── 10. LOGO MARQUEE ────────────────────────────────────────────── */
.logos__head {
  text-align: center;
  font-size: clamp(.92rem, 3.4vw, 1.12rem);
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.marquee {
  margin-top: 26px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.marquee__track {
  display: flex;
  width: max-content;
  /* 15 logos make a long strip — slower keeps it readable. Higher = slower. */
  animation: marquee 45s linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }

.marquee__group {
  display: flex;
  align-items: center;
  gap: 38px;
  padding-right: 38px;
}

/* Every logo gets the SAME slot. Client logos come in wildly different
   shapes — wide wordmarks, square icons — and sizing by height alone makes
   the square ones look twice as big. A fixed box plus object-fit: contain
   scales each one to fit without distorting it, so they read evenly. */
.brand__logo {
  flex: 0 0 auto;
  height: 30px;
  width: 86px;
  object-fit: contain;
  opacity: .58;
  filter: grayscale(1) brightness(2.2);
  transition: opacity .3s var(--ease), filter .3s var(--ease);
}
.brand__logo:hover { opacity: 1; filter: none; }

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


/* ── 11. RESULTS ─────────────────────────────────────────────────── */

/* ---- Testimonial carousel -------------------------------------
   Swipe on touch, arrows on desktop. It is a plain scroll-snap
   container, so it works with no JavaScript at all — the arrow
   buttons are revealed by js/main.js only once they're wired up. */
.carousel {
  position: relative;
  margin-inline: calc(var(--pad-x) * -1);
}

.carousel__track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 10px var(--pad-x) 24px;
  scrollbar-width: none;
}
.carousel__track::-webkit-scrollbar { display: none; }

.carousel__track .vcard {
  flex: 0 0 clamp(220px, 68vw, 280px);
  scroll-snap-align: center;
}

/* Yellow round arrows */
.carousel__nav {
  display: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 48px; height: 48px;
  border: 0;
  border-radius: 50%;
  background: var(--accent);
  cursor: pointer;
  transition: transform .25s var(--ease), background-color .25s var(--ease);
}
.carousel--ready .carousel__nav { display: grid; place-items: center; }
.carousel__nav:hover { background: var(--accent-soft); transform: translateY(-50%) scale(1.08); }
.carousel__nav:disabled { opacity: .35; cursor: default; transform: translateY(-50%); }

/* chevron drawn with a rotated corner */
.carousel__nav::before {
  content: "";
  width: 11px; height: 11px;
  border-top: 2px solid #000;
  border-right: 2px solid #000;
}
.carousel__nav--prev { left: 6px; }
.carousel__nav--prev::before { transform: translateX(2px) rotate(-135deg); }
.carousel__nav--next { right: 6px; }
.carousel__nav--next::before { transform: translateX(-2px) rotate(45deg); }

/* Card in the middle of the viewport grows — pure CSS, no scroll listener.
   Browsers without scroll-driven animations just show every card at full size. */
@supports (animation-timeline: view(x)) {
  @media (prefers-reduced-motion: no-preference) {
    .carousel__track .vcard {
      animation: spotlight linear both;
      animation-timeline: view(x);
      animation-range: entry 15% exit 85%;
    }
  }
}
@keyframes spotlight {
  0%, 100% { transform: scale(.86); opacity: .5; }
  50%      { transform: scale(1);   opacity: 1; }
}

/* Video testimonial card */
.vcard {
  position: relative;
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface);
  aspect-ratio: 3 / 4;
  transition: border-color .3s var(--ease);
}
.vcard:hover { border-color: rgba(255, 198, 0, .55); }

.vcard__thumb {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease), opacity .3s var(--ease);
}
.vcard:hover .vcard__thumb { transform: scale(1.05); opacity: .8; }

.vcard__play {
  position: absolute;
  top: 44%; left: 50%;
  transform: translate(-50%, -50%);
  width: 58px; height: 58px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 var(--accent-glow);
  animation: pulse 2.6s infinite;
  transition: transform .3s var(--ease);
}
.vcard__play::after {
  content: "";
  position: absolute;
  top: 50%; left: 54%;
  transform: translate(-50%, -50%);
  border-style: solid;
  border-width: 9px 0 9px 15px;
  border-color: transparent transparent transparent #000;
}
.vcard:hover .vcard__play { transform: translate(-50%, -50%) scale(1.1); }

.vcard__meta {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 40px 18px 18px;
  background: linear-gradient(to top, rgba(0,0,0,.95) 30%, transparent);
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.vcard__meta strong {
  font-family: var(--font-display);
  font-size: .98rem;
  letter-spacing: -0.01em;
}
.vcard__meta em {
  font-style: normal;
  font-size: .78rem;
  color: var(--accent);
}

/* Screenshot cards */
.shot {
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface);
  transition: border-color .3s var(--ease), transform .3s var(--ease);
}
.shot:hover { border-color: var(--line-strong); transform: translateY(-3px); }
.shot img { width: 100%; }
.shot figcaption {
  padding: 12px 14px;
  font-size: .76rem;
  letter-spacing: .04em;
  color: var(--muted);
  border-top: 1px solid var(--line);
  background: var(--bg);
}
.shot--tall img { aspect-ratio: 9 / 16; object-fit: cover; object-position: top; }

/* Lightbox (pure CSS, opened via :target) */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s var(--ease), visibility .3s var(--ease);
}
.lightbox:target { opacity: 1; visibility: visible; }

.lightbox__scrim {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .9);
  backdrop-filter: blur(6px);
}
.lightbox__body {
  position: relative;
  width: 100%;
  max-width: 880px;
  transform: scale(.94);
  transition: transform .35s var(--ease);
}
.lightbox:target .lightbox__body { transform: scale(1); }

.lightbox__close {
  position: absolute;
  top: -46px; right: 0;
  width: 36px; height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  font-size: 1.4rem;
  line-height: 1;
  color: var(--text);
  transition: background-color .2s var(--ease), color .2s var(--ease);
}
.lightbox__close:hover { background: var(--accent); color: #000; }


/* ── 12. FAQ ─────────────────────────────────────────────────────── */
.faq { display: grid; gap: 10px; margin-top: 30px; }

.faq__item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color .3s var(--ease), background-color .3s var(--ease);
}
.faq__item[open] {
  border-color: rgba(255, 198, 0, .35);
  background: var(--surface-2);
}

.faq__q {
  list-style: none;
  cursor: pointer;
  padding: 20px 54px 20px 20px;
  position: relative;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: color .2s var(--ease);
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q:hover { color: var(--accent); }

/* plus / minus icon */
.faq__q::after,
.faq__q::before {
  content: "";
  position: absolute;
  right: 22px; top: 50%;
  background: var(--accent);
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.faq__q::before { width: 14px; height: 2px; transform: translateY(-50%); }
.faq__q::after  { width: 2px; height: 14px; right: 28px; transform: translateY(-50%); }
.faq__item[open] .faq__q::after { transform: translateY(-50%) rotate(90deg); opacity: 0; }

.faq__a {
  padding: 0 20px 20px;
  color: var(--muted);
  font-size: .94rem;
}


/* ── 13. FINAL CTA ───────────────────────────────────────────────── */
.cta {
  position: relative;
  padding-block: 80px;
  overflow: hidden;
  border-top: 1px solid var(--line);
  background: var(--bg-alt);
}
.cta__glow {
  position: absolute;
  bottom: -260px; left: 50%;
  transform: translateX(-50%);
  width: 760px; height: 520px;
  background: radial-gradient(ellipse at center, var(--accent-glow) 0%, transparent 70%);
  pointer-events: none;
}
.cta .container { position: relative; z-index: 1; }

.cta__title {
  font-size: clamp(1.9rem, 7vw, 3.2rem);
  margin-bottom: 16px;
  letter-spacing: -0.03em;
}
.cta__sub {
  color: var(--muted);
  max-width: 52ch;
  margin: 0 auto 30px;
}
.cta__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 360px;
  margin-inline: auto;
}
.cta__note {
  margin-top: 20px;
  font-size: .8rem;
  color: var(--muted-dim);
  letter-spacing: .03em;
}


/* ── 14. FOOTER ──────────────────────────────────────────────────── */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--line);
  padding-block: 52px 24px;
}

.footer__grid {
  display: grid;
  gap: 36px;
}

.footer__brand .logo { margin-bottom: 16px; }
.footer__blurb {
  color: var(--muted);
  font-size: .9rem;
  max-width: 42ch;
  margin-bottom: 20px;
}

.socials { display: flex; gap: 10px; }
.social {
  width: 40px; height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--muted);
  transition: all .25s var(--ease);
}
/* fill: currentColor means the icon follows the link's colour, so the
   hover state below flips the glyph to black without a second rule */
.social svg {
  width: 17px; height: 17px;
  fill: currentColor;
  display: block;
}
.social:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #000;
  transform: translateY(-3px);
}

.footer__col { display: flex; flex-direction: column; gap: 10px; }

.footer__head {
  font-size: .95rem;
  margin-bottom: 4px;
  color: var(--text);
}
.footer__link {
  font-size: .76rem;
  letter-spacing: .1em;
  color: var(--muted);
  transition: color .2s var(--ease), transform .2s var(--ease);
  width: fit-content;
}
.footer__link:hover { color: var(--accent); transform: translateX(3px); }

.footer__contact { font-size: .8rem; color: var(--muted); }
.footer__btn { margin-top: 8px; align-self: flex-start; }

.footer__bottom {
  margin-top: 40px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: .76rem;
  color: var(--muted-dim);
}
.footer__fine { max-width: 70ch; line-height: 1.6; }


/* ── 15. MOBILE STICKY CTA BAR ───────────────────────────────────── */
.mobile-bar {
  position: fixed;
  left: 12px; right: 12px; bottom: 12px;
  z-index: 90;
  padding: 15px;
  border-radius: var(--radius-pill);
  background: var(--accent);
  color: #000;
  font-family: var(--font-display);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-align: center;
  box-shadow: 0 10px 30px -8px rgba(0, 0, 0, .8),
              0 0 0 1px rgba(255, 255, 255, .1);
}
.mobile-bar:active { transform: scale(.98); }
