/* VidGenius: the site wears the film's look. Black, grain, a condensed serif that speaks, one yellow. */

:root {
  --bg: #07070a;
  --bg-2: #0d0d11;
  --panel: #111116;
  --ink: #f4f2ec;
  --ink-2: #c9c6be;
  --muted: #8d8a83;
  --line: rgba(255, 255, 255, 0.09);
  --line-2: rgba(255, 255, 255, 0.16);
  --yellow: #f6ec26;
  --lime: #b8d93a;
  --wa: #25d366;
  --err: #ff6b5a;
  --serif: "Instrument Serif", "Times New Roman", Georgia, serif;
  --sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --r: 18px;
  --gutter: clamp(16px, 4vw, 40px);
  --max: 1200px;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font: 400 16px/1.6 var(--sans);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
em { font-style: italic; }
::selection { background: var(--yellow); color: #111; }

.wrap { width: min(var(--max), 100% - 2 * var(--gutter)); margin-inline: auto; }
.wrap.narrow { width: min(820px, 100% - 2 * var(--gutter)); }
.center { text-align: center; justify-content: center; }

/* film grain over everything, like the reference */
.grain {
  position: fixed; inset: -50%; z-index: 90; pointer-events: none; opacity: 0.07;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  animation: grain 0.9s steps(6) infinite;
  will-change: transform;
}
@keyframes grain {
  0% { transform: translate(0, 0); } 20% { transform: translate(-3%, 2%); } 40% { transform: translate(2%, -3%); }
  60% { transform: translate(-2%, -1%); } 80% { transform: translate(3%, 3%); } 100% { transform: translate(0, 0); }
}

.demo-strip {
  position: relative; z-index: 80; background: var(--yellow); color: #111; text-align: center;
  font: 600 12.5px/1.4 var(--sans); padding: 7px 16px;
}
.demo-strip code { background: rgba(0, 0, 0, 0.1); padding: 1px 5px; border-radius: 4px; }

/* ---------------------------------------------------------------- type */
.display, .display-2 {
  font-family: var(--serif); font-weight: 400; letter-spacing: -0.01em; margin: 0;
}
.display { font-size: clamp(56px, 10.5vw, 150px); line-height: 0.9; }
.display .line { display: block; }
.display .accent em, .display-2 em { color: var(--yellow); }
.display-2 { font-size: clamp(38px, 5.6vw, 76px); line-height: 1.0; max-width: 16ch; }
.center .display-2, .display-2.center { margin-inline: auto; }
.kicker {
  font: 600 12px/1 var(--sans); letter-spacing: 0.22em; text-transform: uppercase; color: var(--yellow);
  margin: 0 0 18px; display: flex; align-items: center; gap: 10px;
}
.kicker::before { content: ""; width: 10px; height: 10px; background: var(--yellow); display: inline-block; }
.center .kicker { justify-content: center; }
.sub { color: var(--ink-2); font-size: clamp(16px, 1.6vw, 19px); max-width: 60ch; margin: 22px 0 0; }
.sub.center { margin-inline: auto; }

/* words that land one by one, as the film's do */
[data-words] .w { display: inline-block; opacity: 0; filter: blur(8px); transform: translateY(0.18em); }
[data-words].in .w {
  opacity: 1; filter: blur(0); transform: none;
  transition: opacity 0.6s ease, filter 0.6s ease, transform 0.6s cubic-bezier(0.2, 0.7, 0.2, 1);
  transition-delay: calc(var(--i) * 70ms);
}

/* ---------------------------------------------------------------- buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  border-radius: 999px; padding: 13px 22px; font: 600 15px/1 var(--sans); white-space: nowrap;
  transition: transform 0.15s ease, background 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.btn svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.btn:active { transform: translateY(1px) scale(0.99); }
.btn-sm { padding: 10px 16px; font-size: 14px; }
.btn-lg { padding: 17px 28px; font-size: 16px; }
.btn-block { width: 100%; }
.btn-yellow { background: var(--yellow); color: #0b0b0b; box-shadow: 0 0 0 0 rgba(246, 236, 38, 0.5); }
.btn-yellow:hover { box-shadow: 0 10px 40px -8px rgba(246, 236, 38, 0.55); transform: translateY(-1px); }
.btn-ghost { border: 1px solid var(--line-2); background: rgba(255, 255, 255, 0.04); backdrop-filter: blur(8px); }
.btn-ghost:hover { border-color: rgba(255, 255, 255, 0.4); background: rgba(255, 255, 255, 0.08); }
.btn-ghost .i-play { fill: currentColor; stroke: none; width: 14px; height: 14px; }
.btn .dim { color: var(--muted); font-weight: 500; }
.btn-wa { background: var(--wa); color: #06270f; }
.btn-wa:hover { box-shadow: 0 10px 40px -8px rgba(37, 211, 102, 0.6); transform: translateY(-1px); }
.btn-wa svg .wa, .wa-float svg .wa { fill: currentColor; stroke: none; }
.btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none; box-shadow: none; }
.btn:focus-visible, a:focus-visible, button:focus-visible, summary:focus-visible { outline: 2px solid var(--yellow); outline-offset: 3px; }

/* ---------------------------------------------------------------- nav */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 60;
  display: flex; align-items: center; gap: 28px; padding: 16px var(--gutter);
  transition: background 0.3s ease, border-color 0.3s ease, padding 0.3s ease;
  border-bottom: 1px solid transparent;
}
.demo-strip:not([hidden]) ~ .nav { top: 33px; }
.nav.solid { background: rgba(7, 7, 10, 0.78); backdrop-filter: blur(14px); border-bottom-color: var(--line); padding-block: 11px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font: 600 19px/1 var(--sans); letter-spacing: -0.02em; }
.brand b { font-weight: 600; color: var(--muted); }
.mark { width: 22px; height: 22px; fill: var(--ink); }
.nav-links { display: flex; gap: 26px; margin-left: auto; font-size: 14.5px; color: var(--ink-2); }
.nav-links a:hover { color: var(--ink); }

/* ---------------------------------------------------------------- hero */
.hero { position: relative; min-height: 100svh; display: grid; align-items: end; overflow: hidden; isolation: isolate; }
.hero-media { position: absolute; inset: 0; z-index: -1; background: #000; }
.hero-video { width: 100%; height: 100%; object-fit: cover; transform: scale(1.04); filter: brightness(0.8) saturate(0.85); }
.hero-shade {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 7, 10, 0.95) 0%, rgba(7, 7, 10, 0.82) 38%, rgba(7, 7, 10, 0.4) 68%, rgba(7, 7, 10, 0.12) 100%),
    linear-gradient(0deg, var(--bg) 0%, rgba(7, 7, 10, 0) 38%);
}
.hero-media::before, .hero-media::after { /* the letterbox */
  content: ""; position: absolute; left: 0; right: 0; height: 7vh; background: #000; z-index: 2;
}
.hero-media::before { top: 0; }
.hero-media::after { bottom: 0; }
.hero-inner { padding: 17vh var(--gutter) 10vh; width: min(1320px, 100%); margin-inline: auto; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px; margin: 0 0 26px;
  font: 500 13.5px/1 var(--sans); color: var(--ink-2); padding: 9px 14px 9px 12px;
  border: 1px solid var(--line-2); border-radius: 999px; background: rgba(0, 0, 0, 0.35); backdrop-filter: blur(8px);
}
.pulse { width: 8px; height: 8px; border-radius: 50%; background: var(--yellow); box-shadow: 0 0 0 0 rgba(246, 236, 38, 0.7); animation: pulse 2s infinite; }
@keyframes pulse { 70% { box-shadow: 0 0 0 10px rgba(246, 236, 38, 0); } 100% { box-shadow: 0 0 0 0 rgba(246, 236, 38, 0); } }
.hero .display { text-shadow: -2px 0 rgba(255, 40, 80, 0.28), 2px 0 rgba(40, 170, 255, 0.28); }
.lead { max-width: 56ch; font-size: clamp(16.5px, 1.7vw, 20px); color: var(--ink-2); margin: 28px 0 30px; }

.prompt, .typed {
  display: inline-flex; align-items: center; gap: 12px; max-width: 100%;
  padding: 14px 16px 14px 20px; border-radius: 16px; background: rgba(12, 12, 16, 0.72);
  border: 1px solid var(--line-2); backdrop-filter: blur(10px);
  font: 400 clamp(19px, 2vw, 24px)/1.2 var(--serif);
}
.prompt-caret { color: var(--yellow); font-family: var(--sans); font-weight: 600; }
.prompt-text, #typedLine { white-space: nowrap; overflow: hidden; text-overflow: clip; min-width: 1ch; }
.bar { width: 4px; height: 1.35em; background: var(--yellow); margin-left: -6px; animation: blink 1s steps(1) infinite; flex: none; }
.bar.typing { animation: none; }
@keyframes blink { 50% { opacity: 0; } }
.prompt-style {
  margin-left: 6px; font: 600 11.5px/1 var(--sans); letter-spacing: 0.12em; text-transform: uppercase;
  color: #111; background: var(--yellow); padding: 7px 10px; border-radius: 999px; flex: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.prompt-style.swap { opacity: 0; transform: translateY(4px); }

.cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.hero-facts { list-style: none; display: flex; flex-wrap: wrap; gap: 10px 28px; padding: 0; margin: 34px 0 0; color: var(--ink-2); font-size: 14.5px; }
.hero-facts b { font-family: var(--serif); font-weight: 400; font-size: 26px; color: var(--ink); margin-right: 6px; }
.scroll-hint { position: absolute; left: 50%; bottom: calc(7vh + 18px); width: 24px; height: 38px; border: 1.5px solid var(--line-2); border-radius: 14px; transform: translateX(-50%); }
.scroll-hint span { position: absolute; left: 50%; top: 8px; width: 3px; height: 7px; border-radius: 2px; background: var(--yellow); transform: translateX(-50%); animation: wheel 1.8s infinite; }
@keyframes wheel { 0% { opacity: 1; transform: translate(-50%, 0); } 80% { opacity: 0; transform: translate(-50%, 12px); } 100% { opacity: 0; } }

/* ---------------------------------------------------------------- marquee */
.marquee { border-block: 1px solid var(--line); overflow: hidden; padding: 22px 0; background: var(--bg-2); }
.marquee-track { display: flex; gap: 34px; width: max-content; animation: marquee 50s linear infinite; font: 400 clamp(26px, 3vw, 38px)/1 var(--serif); }
.marquee-track i { font-style: normal; color: var(--yellow); font-size: 0.6em; align-self: center; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------------------------------------------------------------- sections */
section { position: relative; }
.film, .styles, .langs, .oneline, .how, .features, .pricing, .faq, .final { padding: clamp(80px, 11vw, 150px) 0; }
.film { padding-bottom: clamp(40px, 6vw, 80px); }

.film-frame {
  position: relative; display: block; width: 100%; margin-top: 48px; border-radius: var(--r); overflow: hidden;
  aspect-ratio: 16 / 9; background: #000; border: 1px solid var(--line);
}
.film-frame img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s cubic-bezier(0.2, 0.7, 0.2, 1), filter 0.6s; filter: saturate(1.1); }
.film-frame:hover img { transform: scale(1.03); }
.play-big {
  position: absolute; left: 50%; top: 50%; width: clamp(76px, 9vw, 116px); aspect-ratio: 1; border-radius: 50%;
  background: var(--yellow); display: grid; place-items: center; transform: translate(-50%, -50%);
  box-shadow: 0 0 0 14px rgba(246, 236, 38, 0.14), 0 20px 60px -10px rgba(0, 0, 0, 0.8);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.play-big svg { width: 38%; fill: #0b0b0b; margin-left: 6%; }
.film-frame:hover .play-big { transform: translate(-50%, -50%) scale(1.06); box-shadow: 0 0 0 22px rgba(246, 236, 38, 0.12), 0 20px 60px -10px rgba(0, 0, 0, 0.8); }
.film-meta { position: absolute; left: 0; right: 0; bottom: 0; display: flex; justify-content: space-between; padding: 18px 22px; font-size: 13.5px; color: var(--ink-2); background: linear-gradient(0deg, rgba(0, 0, 0, 0.75), transparent); }

/* ---------------------------------------------------------------- cards */
.bento { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 56px; grid-auto-flow: dense; }
.card {
  position: relative; display: flex; flex-direction: column; border-radius: var(--r); overflow: hidden;
  background: var(--panel); border: 1px solid var(--line); margin: 0;
  transition: border-color 0.3s ease, transform 0.4s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.card:hover { border-color: rgba(246, 236, 38, 0.45); transform: translateY(-3px); }
.card.wide { grid-column: span 2; }
.card.tall { grid-row: span 2; }
.card-media { position: relative; aspect-ratio: 16 / 9; background: #000; overflow: hidden; cursor: pointer; }
.card.tall .card-media { aspect-ratio: auto; flex: 1; min-height: 360px; }
.card-media.vertical video { object-fit: cover; }
.card-media video { width: 100%; height: 100%; object-fit: cover; }
.card-media::after { /* letterbox lines, a nod to the film */
  content: ""; position: absolute; inset: 0; pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04), inset 0 -60px 60px -40px rgba(0, 0, 0, 0.55);
}
.chip-btn {
  position: absolute; z-index: 2; display: inline-flex; align-items: center; gap: 7px;
  padding: 8px 11px; border-radius: 999px; background: rgba(0, 0, 0, 0.55); backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.14); font: 600 12px/1 var(--sans); color: var(--ink);
  transition: background 0.2s ease, opacity 0.2s ease;
}
.chip-btn svg { width: 15px; height: 15px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.chip-btn:hover { background: rgba(0, 0, 0, 0.8); }
.chip-btn.sound { right: 12px; bottom: 12px; }
.chip-btn.sound.on { background: var(--yellow); color: #111; border-color: transparent; }
.chip-btn.full { right: 12px; top: 12px; opacity: 0; }
.card-media:hover .chip-btn.full { opacity: 1; }
.card-body { padding: 20px 22px 24px; }
.card-line { font: 400 clamp(22px, 2.1vw, 28px)/1.1 var(--serif); margin: 0 0 12px; color: var(--ink); }
.card-line em { color: var(--yellow); }
.card h3 { margin: 0 0 6px; font: 600 12px/1.2 var(--sans); letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }
.card p { margin: 0; color: var(--ink-2); font-size: 15px; }

/* ---------------------------------------------------------------- languages */
.langs { background: linear-gradient(180deg, var(--bg), var(--bg-2)); border-block: 1px solid var(--line); }
.langs-grid { display: grid; grid-template-columns: 1.1fr 1fr 1fr; gap: 18px; align-items: end; }
.langs-copy { padding-right: 24px; align-self: center; }
.lang-chips { list-style: none; padding: 0; margin: 26px 0 0; display: flex; flex-wrap: wrap; gap: 8px; }
.lang-chips li { border: 1px solid var(--line-2); border-radius: 999px; padding: 8px 14px; font-size: 15px; color: var(--ink-2); }
.lang-chips li[lang] { font-size: 17px; color: var(--ink); }

/* ---------------------------------------------------------------- one line */
.oneline .typed { margin-top: 36px; }
.pair { display: grid; grid-template-columns: minmax(0, 0.42fr) minmax(0, 1fr); gap: 18px; margin-top: 26px; align-items: stretch; }
.pair .card-media.vertical { aspect-ratio: 9 / 16; }
.pair-photo .card-media { aspect-ratio: auto; flex: 1; }
.pair figcaption { padding: 16px 20px; color: var(--ink-2); font-size: 15px; border-top: 1px solid var(--line); }
.pair figcaption b { color: var(--ink); font-family: var(--serif); font-weight: 400; font-size: 22px; margin-right: 6px; }
.oneline .sub.center { text-align: center; margin-top: 30px; }

/* ---------------------------------------------------------------- how */
.steps-grid { list-style: none; padding: 0; margin: 56px 0 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; counter-reset: s; }
.steps-grid li { border-top: 1px solid var(--line-2); padding: 28px 6px 0 0; }
.num { font: 400 clamp(60px, 7vw, 96px)/0.9 var(--serif); color: transparent; -webkit-text-stroke: 1px rgba(246, 236, 38, 0.8); display: block; margin-bottom: 18px; }
.steps-grid h3, .feat h3 { font: 600 19px/1.3 var(--sans); margin: 0 0 8px; letter-spacing: -0.01em; }
.steps-grid p, .feat p { color: var(--ink-2); margin: 0; }

/* ---------------------------------------------------------------- features */
.features { background: var(--bg-2); border-block: 1px solid var(--line); }
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; }
.feat { background: var(--bg-2); padding: 34px 30px; transition: background 0.3s ease; }
.feat:hover { background: #121217; }
.feat h3::before { content: ""; display: block; width: 12px; height: 12px; background: var(--yellow); margin-bottom: 18px; }
.who { margin-top: 70px; text-align: center; }
.who .kicker { justify-content: center; }
.who-chips { list-style: none; padding: 0; margin: 10px 0 0; display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.who-chips li { font: 400 clamp(20px, 2.2vw, 28px)/1 var(--serif); padding: 14px 20px; border: 1px solid var(--line-2); border-radius: 999px; }
.who-chips li:nth-child(odd) { color: var(--yellow); border-color: rgba(246, 236, 38, 0.35); }

/* ---------------------------------------------------------------- pricing */
.pricing { overflow: hidden; }
.pricing::before {
  content: ""; position: absolute; left: 50%; top: 42%; width: min(1100px, 120vw); height: 620px; transform: translate(-50%, -50%);
  background: radial-gradient(closest-side, rgba(246, 236, 38, 0.12), transparent 70%); pointer-events: none;
}
.pricing .display-2 { margin-inline: auto; }
.plans {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 380px)); justify-content: center;
  gap: 22px; margin: 34px auto 0; text-align: left;
}

/* the launch counter: thirty pixels, the sold ones in yellow */
.launch {
  width: min(640px, 100%); margin: 44px auto 0; padding: 20px 22px 18px; text-align: left;
  border: 1px solid rgba(246, 236, 38, 0.35); border-radius: 18px;
  background: linear-gradient(180deg, rgba(246, 236, 38, 0.07), rgba(246, 236, 38, 0.02));
}
.launch-head { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 8px 16px; }
.launch-tag {
  display: inline-flex; align-items: center; gap: 8px; font: 700 12px/1 var(--sans); letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--yellow);
}
.launch-count { color: var(--ink-2); font-size: 15px; }
.launch-count b { color: var(--ink); font-weight: 600; }
.launch-num { font: 400 30px/1 var(--serif) !important; color: var(--yellow) !important; margin-right: 2px; }
.seats { display: grid; grid-template-columns: repeat(15, 1fr); gap: 6px; margin: 16px 0 14px; }
.seats i { aspect-ratio: 1; border-radius: 3px; border: 1px solid rgba(255, 255, 255, 0.16); background: rgba(255, 255, 255, 0.03); }
.seats i.sold { transform: scale(0.4); opacity: 0; }
.seats.go i.sold {
  background: var(--yellow); border-color: var(--yellow); box-shadow: 0 0 14px rgba(246, 236, 38, 0.45);
  transform: none; opacity: 1; transition: transform 0.35s cubic-bezier(0.3, 1.6, 0.5, 1), opacity 0.2s ease;
  transition-delay: calc(var(--k) * 140ms);
}
.seats i.next { animation: next-seat 1.6s ease-in-out infinite; }
@keyframes next-seat { 50% { border-color: var(--yellow); background: rgba(246, 236, 38, 0.18); } }
.launch-note { margin: 0; font-size: 14px; color: var(--ink-2); }
.launch-note b { color: var(--ink); }

.offer-pill {
  display: inline-flex; align-items: center; gap: 10px; margin-top: 20px; padding: 10px 14px 10px 12px;
  border-radius: 999px; font-size: 14px; color: var(--ink); background: rgba(246, 236, 38, 0.08);
  border: 1px solid rgba(246, 236, 38, 0.4); transition: background 0.2s ease;
}
.offer-pill:hover { background: rgba(246, 236, 38, 0.16); }
.offer-pill b { color: var(--yellow); }
.offer-pill svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.hero-facts { margin-top: 26px; }
.plan {
  position: relative; display: flex; flex-direction: column; border-radius: 22px; padding: 30px 28px 28px;
  background: var(--panel); border: 1px solid var(--line-2);
}
.plan.hot { background: linear-gradient(180deg, #17170f, #111116 55%); border-color: rgba(246, 236, 38, 0.6); box-shadow: 0 30px 90px -30px rgba(246, 236, 38, 0.35); }
.plan-badge { position: absolute; top: -13px; left: 26px; background: var(--yellow); color: #111; font: 700 11.5px/1 var(--sans); letter-spacing: 0.1em; text-transform: uppercase; padding: 8px 12px; border-radius: 999px; }
.plan h3 { font: 400 34px/1 var(--serif); margin: 0; }
.plan .blurb { color: var(--ink-2); margin: 8px 0 22px; font-size: 15px; }
.price { display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; }
.price .now { font: 400 clamp(46px, 5vw, 60px)/1 var(--serif); }
.price .was { color: var(--muted); text-decoration: line-through; text-decoration-color: var(--err); text-decoration-thickness: 2px; font-size: 19px; width: auto; }
.price .save { font: 700 11.5px/1 var(--sans); letter-spacing: 0.06em; text-transform: uppercase; color: #111; background: var(--yellow); padding: 6px 9px; border-radius: 999px; }
.price .now { width: 100%; }
.price .per { color: var(--ink-2); font-size: 14px; width: 100%; margin-top: 4px; }
.plan ul { list-style: none; padding: 0; margin: 24px 0 28px; display: grid; gap: 11px; }
.plan li { display: flex; gap: 11px; color: var(--ink-2); font-size: 15px; }
.plan li::before { content: ""; flex: none; width: 18px; height: 18px; margin-top: 3px; border-radius: 50%; background: var(--yellow) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M6 12.5l4 4L18 8' fill='none' stroke='%23111' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/></svg>") center / 12px no-repeat; }
.plan li.minus { color: var(--muted); }
.plan li.minus::before { background: rgba(255, 255, 255, 0.1) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M7 12h10' fill='none' stroke='%23aaa' stroke-width='3' stroke-linecap='round'/></svg>") center / 12px no-repeat; }
.plan .btn { margin-top: auto; }
.pay-steps { list-style: none; padding: 0; margin: 40px 0 0; display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 26px; color: var(--ink-2); font-size: 14.5px; }
.pay-steps li { display: flex; align-items: center; gap: 10px; }
.pay-steps span { width: 26px; height: 26px; border-radius: 50%; border: 1px solid rgba(246, 236, 38, 0.6); color: var(--yellow); display: grid; place-items: center; font: 600 12.5px/1 var(--sans); }

/* ---------------------------------------------------------------- faq */
.faq details { border-bottom: 1px solid var(--line-2); }
.faq details:first-of-type { margin-top: 44px; border-top: 1px solid var(--line-2); }
.faq summary { list-style: none; cursor: pointer; padding: 24px 44px 24px 0; font: 400 clamp(21px, 2.2vw, 27px)/1.2 var(--serif); position: relative; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: ""; position: absolute; right: 6px; top: 50%; width: 14px; height: 14px; border-right: 2px solid var(--yellow); border-bottom: 2px solid var(--yellow); transform: translateY(-70%) rotate(45deg); transition: transform 0.25s ease; }
.faq details[open] summary::after { transform: translateY(-30%) rotate(-135deg); }
.faq details p { margin: 0 0 24px; color: var(--ink-2); max-width: 64ch; }

/* ---------------------------------------------------------------- final */
.final { text-align: center; border-top: 1px solid var(--line); background: radial-gradient(60% 70% at 50% 100%, rgba(246, 236, 38, 0.08), transparent); }
.final .display-2 { max-width: none; font-size: clamp(46px, 7.5vw, 110px); }
.mark.big { width: 64px; height: 64px; margin: 0 auto 30px; }
.final .cta-row { justify-content: center; margin-top: 38px; }

.foot { border-top: 1px solid var(--line); padding: 34px 0 44px; color: var(--muted); font-size: 14px; }
.foot-row { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px; }
.foot-note { margin: 0; }
.foot-links { margin: 0; display: flex; gap: 22px; }
.foot-links a:hover { color: var(--ink); }

.wa-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 70; width: 58px; height: 58px; border-radius: 50%;
  background: var(--wa); color: #fff; display: grid; place-items: center;
  box-shadow: 0 12px 34px -6px rgba(37, 211, 102, 0.55); transition: transform 0.2s ease;
}
.wa-float:hover { transform: scale(1.07); }
.wa-float svg { width: 30px; height: 30px; }

/* ---------------------------------------------------------------- modal & checkout */
.modal, .lightbox { position: fixed; inset: 0; z-index: 100; display: grid; place-items: center; padding: 16px; }
.modal[hidden], .lightbox[hidden] { display: none; }
.modal-back { position: absolute; inset: 0; background: rgba(3, 3, 5, 0.78); backdrop-filter: blur(6px); animation: fade 0.25s ease; }
@keyframes fade { from { opacity: 0; } }
@keyframes rise { from { opacity: 0; transform: translateY(18px) scale(0.98); } }
.modal-card {
  position: relative; width: min(520px, 100%); max-height: calc(100svh - 32px); overflow: auto;
  background: #0f0f13; border: 1px solid var(--line-2); border-radius: 24px; padding: 30px 28px 28px;
  box-shadow: 0 40px 120px -20px rgba(0, 0, 0, 0.9); animation: rise 0.35s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.modal-x { position: absolute; right: 14px; top: 14px; width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; background: rgba(255, 255, 255, 0.06); z-index: 3; }
.modal-x:hover { background: rgba(255, 255, 255, 0.14); }
.modal-x svg { width: 18px; height: 18px; stroke: currentColor; stroke-width: 2.2; stroke-linecap: round; fill: none; }
.co-head h3 { font: 400 34px/1.05 var(--serif); margin: 0; padding-right: 40px; }
.co-head h3 span { color: var(--yellow); }
.co-amount { margin: 6px 0 0; color: var(--ink-2); }
.co-amount s { color: var(--muted); text-decoration-color: var(--err); }
.co-amount b { color: var(--ink); font-weight: 600; }
.co-seats { display: inline-flex; align-items: center; gap: 8px; margin: 10px 0 0; font-size: 13px; color: var(--ink-2); }
.co-seats b { color: var(--yellow); }
.picker > span { display: block; font-size: 13.5px; color: var(--ink-2); margin-bottom: 9px; font-weight: 500; }
.pick-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.pick {
  padding: 9px 13px; border-radius: 999px; border: 1px solid var(--line-2); background: #16161c;
  font: 500 13.5px/1 var(--sans); color: var(--ink-2); transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
.pick:hover:not(:disabled) { border-color: rgba(246, 236, 38, 0.6); color: var(--ink); }
.pick.on { background: var(--yellow); border-color: var(--yellow); color: #111; font-weight: 600; }
.pick:disabled { opacity: 0.4; cursor: not-allowed; }
.all-styles { margin: 4px 0 0; padding: 11px 14px; border-radius: 12px; font-size: 14px; color: var(--ink); background: rgba(246, 236, 38, 0.08); border: 1px solid rgba(246, 236, 38, 0.3); }
.co-steps { list-style: none; padding: 0; margin: 22px 0 24px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.co-steps li { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--muted); padding-top: 10px; border-top: 2px solid var(--line-2); transition: color 0.3s ease, border-color 0.3s ease; }
.co-steps li span { width: 22px; height: 22px; border-radius: 50%; border: 1px solid var(--line-2); display: grid; place-items: center; font: 600 11px/1 var(--sans); }
.co-steps li.on { color: var(--ink); border-top-color: var(--yellow); }
.co-steps li.on span { background: var(--yellow); color: #111; border-color: transparent; }
.co-steps li.did { color: var(--ink-2); border-top-color: rgba(246, 236, 38, 0.5); }
.co-steps li.did span { background: rgba(246, 236, 38, 0.2); color: var(--yellow); border-color: transparent; }
.co-step { animation: rise 0.3s ease; }
.field { display: block; margin-bottom: 14px; }
.field > span { display: block; font-size: 13.5px; color: var(--ink-2); margin-bottom: 7px; font-weight: 500; }
.field input {
  width: 100%; font: 400 16px/1.2 var(--sans); color: var(--ink); background: #16161c; border: 1px solid var(--line-2);
  border-radius: 12px; padding: 14px 14px; transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.field input::placeholder { color: #5e5c57; }
.field input:focus { outline: none; border-color: var(--yellow); box-shadow: 0 0 0 4px rgba(246, 236, 38, 0.12); }
.err { display: none; font-style: normal; font-size: 13px; color: var(--err); margin-top: 6px; }
.field.bad input { border-color: var(--err); }
.field.bad .err, .err.show { display: block; }
.co-actions { margin-top: 20px; display: flex; gap: 10px; }
.co-actions.two .btn:first-child { flex: 0 0 auto; }
.co-actions.two .btn:last-child { flex: 1; }
.co-fine { font-size: 12.5px; color: var(--muted); margin: 14px 0 0; text-align: center; }
.co-lead { color: var(--ink-2); margin: 0 0 16px; }
.co-lead b { color: var(--ink); }
.accounts { display: grid; gap: 10px; margin-bottom: 18px; }
.acct { display: grid; gap: 9px; background: #16161c; border: 1px solid var(--line-2); border-radius: 14px; padding: 13px 14px; }
.acct-kind { font: 700 11px/1 var(--sans); letter-spacing: 0.1em; text-transform: uppercase; color: var(--yellow); }
.acct-line { display: flex; align-items: center; gap: 12px; }
.acct-line > div { display: grid; gap: 2px; min-width: 0; }
.acct-label { font-size: 12px; color: var(--muted); }
.acct-num { font: 600 15.5px/1.3 ui-monospace, "Cascadia Mono", Consolas, monospace; word-break: break-all; }
.acct-title { font-size: 13px; color: var(--muted); margin-top: 2px; }
.acct .copy { margin-left: auto; flex: none; font: 600 12.5px/1 var(--sans); padding: 9px 12px; border-radius: 999px; border: 1px solid var(--line-2); }
.acct .copy:hover { border-color: var(--yellow); color: var(--yellow); }
.acct .copy.ok { background: var(--yellow); color: #111; border-color: transparent; }
.drop { display: block; border: 1.5px dashed rgba(246, 236, 38, 0.45); border-radius: 16px; padding: 22px; cursor: pointer; background: rgba(246, 236, 38, 0.03); transition: background 0.2s ease, border-color 0.2s ease; }
.drop:hover, .drop.over { background: rgba(246, 236, 38, 0.08); border-color: var(--yellow); }
.drop-empty { display: grid; justify-items: center; text-align: center; gap: 6px; }
.drop-empty svg { width: 30px; height: 30px; stroke: var(--yellow); stroke-width: 2; fill: none; stroke-linecap: round; stroke-linejoin: round; margin-bottom: 4px; }
.drop-empty small, .drop-name small { color: var(--muted); font-size: 12.5px; }
.drop-full { display: flex; align-items: center; gap: 14px; }
.drop-full[hidden], .drop-empty[hidden] { display: none; }
.drop-full img { width: 72px; height: 72px; object-fit: cover; border-radius: 10px; background: #222; }
.drop-name { display: grid; gap: 3px; min-width: 0; }
.drop-name b { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.btn.loading { pointer-events: none; }
.btn.loading::after { content: ""; width: 16px; height: 16px; border-radius: 50%; border: 2px solid rgba(0, 0, 0, 0.25); border-top-color: #111; animation: spin 0.7s linear infinite; }
.btn.loading svg { display: none; }
@keyframes spin { to { transform: rotate(360deg); } }
.done { text-align: center; }
.tick { width: 74px; height: 74px; margin: 6px auto 16px; border-radius: 50%; background: rgba(37, 211, 102, 0.15); display: grid; place-items: center; }
.tick svg { width: 38px; height: 38px; fill: none; stroke: var(--wa); stroke-width: 2.6; stroke-linecap: round; stroke-linejoin: round; stroke-dasharray: 30; stroke-dashoffset: 30; animation: draw 0.6s 0.15s ease forwards; }
@keyframes draw { to { stroke-dashoffset: 0; } }
.done h4 { font: 400 32px/1.1 var(--serif); margin: 0 0 10px; }
.co-note { background: rgba(246, 236, 38, 0.1); border: 1px solid rgba(246, 236, 38, 0.35); color: var(--ink); border-radius: 12px; padding: 11px 14px; font-size: 14px; margin: 0 0 16px; }
.next-list { text-align: left; color: var(--ink-2); font-size: 14.5px; margin: 22px 0 0; padding-left: 20px; display: grid; gap: 6px; }

.lb-frame { position: relative; width: min(1200px, 100%); animation: rise 0.35s ease; }
.lb-frame video { width: 100%; max-height: calc(100svh - 40px); border-radius: 14px; background: #000; box-shadow: 0 40px 120px -20px rgba(0, 0, 0, 0.9); }
.lb-frame video.tall { width: auto; margin: 0 auto; }
.lb-frame .modal-x { top: -50px; right: 0; }

/* ---------------------------------------------------------------- responsive */
@media (max-width: 980px) {
  .nav-links { display: none; }
  .nav .btn { margin-left: auto; }
  .bento { grid-template-columns: repeat(2, 1fr); }
  .card.wide { grid-column: span 2; }
  .langs-grid { grid-template-columns: 1fr 1fr; }
  .langs-copy { grid-column: 1 / -1; padding: 0 0 12px; }
  .steps-grid, .feat-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .hero-inner { padding: 22vh var(--gutter) 12vh; }
  .hero-shade { background: linear-gradient(0deg, var(--bg) 8%, rgba(7, 7, 10, 0.55) 60%, rgba(7, 7, 10, 0.35) 100%); }
  .prompt { width: 100%; }
  .prompt-style { display: none; }
  .cta-row .btn { width: 100%; }
  .bento { grid-template-columns: 1fr; }
  .card.wide { grid-column: auto; }
  .card.tall .card-media { min-height: 0; aspect-ratio: 9 / 12; flex: none; }
  .langs-grid, .steps-grid, .feat-grid { grid-template-columns: 1fr; }
  .pair { grid-template-columns: 1fr 1.4fr; }
  .scroll-hint { display: none; }
  .seats { grid-template-columns: repeat(10, 1fr); }
  .offer-pill { font-size: 13px; }
  .plans { grid-template-columns: minmax(0, 1fr); }
  .modal-card { padding: 26px 18px 20px; }
  .co-head h3 { font-size: 29px; }
  .wa-float { right: 14px; bottom: 14px; width: 54px; height: 54px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
  [data-words] .w { opacity: 1; filter: none; transform: none; }
}
