/* Creator Help — site styles
   Brand kit tokens, blended with a dark cinematic suite (Frame.io),
   a cream/void diptych (Pika) and editorial serif headlines (Clipdrop). */

:root {
  --canvas: #12091C;
  --canvas-deep: #0B0512;
  --surface: #1A0F26;
  --surface-2: #211430;
  --line: #2A1B3D;
  --text: #FFFFFF;
  --muted: #9A8CB0;
  --dim: #7A6D90;
  --violet: #7C3AED;
  --violet-hover: #8B5CF6;
  --violet-text: #B79DFF;
  --halo: rgba(124, 58, 237, .32);
  --cream: #F6EBDD;
  --ink: #12091C;
  --ink-muted: #6A5B78;

  --font: 'Switzer', 'Helvetica Neue', Arial, sans-serif;
  --serif: 'Sentient', Georgia, 'Times New Roman', serif;

  --max: 1280px;
  --gutter: clamp(20px, 4vw, 48px);
  --edge: max(var(--gutter), calc((100vw - var(--max)) / 2 + var(--gutter)));
  --section: clamp(104px, 13vw, 188px);
  --header-h: 76px;

  interpolate-size: allow-keywords;
}

/* ---------- Base ---------- */

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; background: var(--canvas); }
@media (prefers-reduced-motion: no-preference) { html:not(.lenis) { scroll-behavior: smooth; } }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-stopped { overflow: hidden; }

body {
  margin: 0;
  min-height: 100vh;
  background: var(--canvas);
  color: var(--text);
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }

img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; color: inherit; }
button { background: none; border: 0; padding: 0; cursor: pointer; }
h1, h2, h3, h4, p, figure, blockquote, dl, dd { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
[hidden] { display: none !important; }

::selection { background: #fff; color: var(--canvas); }
:focus { outline: none; }
:focus-visible { outline: 2px solid #fff; outline-offset: 3px; }

.container { width: 100%; max-width: var(--max); margin-inline: auto; padding-inline: var(--gutter); }
.i { width: 1em; height: 1em; flex: none; }

.skip {
  position: fixed; left: 16px; top: 16px; z-index: 100;
  padding: 10px 18px; border-radius: 999px;
  background: #fff; color: var(--canvas); font-weight: 500;
  transform: translateY(-200%);
}
.skip:focus-visible { transform: none; }

.grain {
  position: absolute; inset: 0; pointer-events: none;
  opacity: .08; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 .9 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- Type ---------- */

.kicker {
  display: flex; align-items: center; gap: 12px;
  font-size: 15px; line-height: 1.4; color: var(--muted);
}
.kicker::before { content: ""; width: 28px; height: 1px; background: currentColor; opacity: .7; }

.display {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(40px, 5.4vw, 80px);
  line-height: 1.03;
  letter-spacing: -.025em;
  text-wrap: balance;
}

.lead {
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.6;
  color: var(--muted);
  max-width: 50ch;
  text-wrap: pretty;
}

.head { display: grid; gap: 24px; }
.head .display { margin-top: 22px; max-width: 17ch; }
@media (min-width: 1000px) {
  .head--split { grid-template-columns: minmax(0, 1.4fr) minmax(0, .6fr); align-items: end; gap: 72px; }
  .head--split .lead { padding-bottom: .5em; }
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6em;
  height: 52px; padding: 0 26px;
  border-radius: 999px;
  font-size: 16px; font-weight: 500; letter-spacing: -.005em; line-height: 1;
  white-space: nowrap;
  border: 1px solid transparent;
  transition: background-color .12s linear, color .12s linear, border-color .12s linear;
}
.btn--primary { background: var(--violet); color: #fff; }
.btn--primary:hover { background: var(--violet-hover); }
.btn--ghost { border-color: rgba(255, 255, 255, .22); color: #fff; }
.btn--ghost:hover { background: rgba(255, 255, 255, .08); border-color: rgba(255, 255, 255, .42); }
.btn--light { background: #fff; color: var(--canvas); }
.btn--light:hover { background: var(--cream); }
.btn--sm { height: 42px; padding: 0 18px; font-size: 15px; }
.btn--lg { height: 58px; padding: 0 32px; font-size: 17px; }
.btn:disabled { cursor: default; opacity: .7; }

.icon-btn {
  display: grid; place-items: center;
  width: 48px; height: 48px; border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .2);
  transition: background-color .12s linear, border-color .12s linear, opacity .2s ease;
}
.icon-btn:hover:not(:disabled) { background: rgba(255, 255, 255, .08); border-color: rgba(255, 255, 255, .42); }
.icon-btn:disabled { opacity: .3; cursor: default; }
.icon-btn .i { width: 18px; height: 18px; }

/* The 48-hour marker: one of the two violet elements */
.badge48 {
  display: inline-flex; align-items: center; gap: 10px;
  height: 34px; padding: 0 15px 0 12px;
  border-radius: 999px; border: 1px solid var(--violet);
  color: var(--violet-text);
  font-size: 14px; font-weight: 500; line-height: 1; white-space: nowrap;
}
.badge48__dot { position: relative; width: 8px; height: 8px; border-radius: 50%; background: var(--violet); }
.badge48__dot::after {
  content: ""; position: absolute; inset: -4px; border-radius: 50%;
  border: 1px solid var(--violet); opacity: 0;
  animation: ping 2.4s ease-out infinite;
}
@keyframes ping { 0% { transform: scale(.6); opacity: .9; } 100% { transform: scale(1.9); opacity: 0; } }

/* ---------- Header ---------- */

.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 60;
  border-bottom: 1px solid transparent;
  transition: border-color .35s ease;
}
.header::before {
  content: ""; position: absolute; inset: 0; z-index: -1; opacity: 0;
  background: rgba(18, 9, 28, .72);
  -webkit-backdrop-filter: saturate(150%) blur(18px);
  backdrop-filter: saturate(150%) blur(18px);
  transition: opacity .35s ease;
}
.header.is-scrolled { border-color: rgba(42, 27, 61, .9); }
.header.is-scrolled::before, body.menu-open .header::before { opacity: 1; }

.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; height: var(--header-h); }
.brand { display: inline-flex; align-items: center; gap: 10px; flex: none; color: #fff; }
.brand__mark { width: 22px; height: 22px; flex: none; }
.brand__word { font-size: 19px; font-weight: 500; line-height: 1; letter-spacing: -.025em; white-space: nowrap; }
.brand--lg { gap: 14px; }
.brand--lg .brand__mark { width: 34px; height: 34px; }
.brand--lg .brand__word { font-size: 30px; letter-spacing: -.03em; }

.nav { display: none; gap: 36px; }
.nav a { font-size: 15px; color: var(--muted); transition: color .12s linear; }
.nav a:hover { color: #fff; }

.header__actions { display: flex; align-items: center; gap: 10px; }

.menu-btn {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px;
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .2);
  transition: background-color .12s linear;
}
.menu-btn:hover { background: rgba(255, 255, 255, .08); }
.menu-btn span { display: block; width: 16px; height: 1.5px; border-radius: 2px; background: #fff; transition: transform .25s ease; }
.menu-btn[aria-expanded="true"] span:first-child { transform: translateY(3.25px) rotate(45deg); }
.menu-btn[aria-expanded="true"] span:last-child { transform: translateY(-3.25px) rotate(-45deg); }

@media (min-width: 900px) {
  .nav { display: flex; }
  .menu-btn { display: none; }
}
@media (max-width: 400px) {
  .header__cta { padding: 0 15px; font-size: 14px; height: 40px; }
  .brand__word { font-size: 17px; }
  .brand__mark { width: 20px; height: 20px; }
}

.menu {
  position: fixed; inset: 0; z-index: 55;
  display: flex; flex-direction: column; justify-content: space-between; gap: 40px;
  padding: calc(var(--header-h) + 28px) var(--gutter) 36px;
  background: var(--canvas);
  opacity: 0; visibility: hidden;
  transition: opacity .25s ease, visibility .25s;
}
.menu.is-open { opacity: 1; visibility: visible; }
.menu__links a {
  display: block; padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--serif); font-size: clamp(34px, 10vw, 48px); line-height: 1.1; letter-spacing: -.02em;
}
.menu__foot { display: grid; gap: 14px; color: var(--muted); font-size: 16px; }
.menu__social { display: flex; gap: 22px; }
.menu__foot a:hover { color: #fff; }
@media (min-width: 900px) { .menu { display: none; } }

/* ---------- Hero ---------- */

.hero {
  position: relative; isolation: isolate; overflow: hidden;
  padding-top: calc(var(--header-h) + clamp(48px, 9vh, 112px));
}
.hero__atmos { position: absolute; inset: 0 0 auto; height: min(1100px, 125vh); z-index: -1; pointer-events: none; }
.hero__atmos img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 35%; opacity: .5; }
.hero__atmos::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(55% 45% at 84% 10%, rgba(124, 58, 237, .30), transparent 70%),
    radial-gradient(40% 35% at 4% 0%, rgba(139, 92, 246, .14), transparent 70%),
    linear-gradient(180deg, rgba(18, 9, 28, .6) 0%, rgba(18, 9, 28, .38) 38%, var(--canvas) 92%);
}
.hero__atmos .grain { z-index: 1; }

.hero__title {
  margin-top: 28px;
  font-weight: 500;
  font-size: clamp(44px, 6.1vw, 96px);
  line-height: .98;
  letter-spacing: -.045em;
}
.hero__title .line { display: block; overflow: hidden; padding: 0 .12em .12em 0; margin-bottom: -.12em; }
.hero__title .line > span { display: inline-block; }
.hero__title .serif { font-family: var(--serif); font-style: italic; font-weight: 300; font-size: 1.06em; letter-spacing: -.035em; }

.hero__foot { display: grid; gap: 30px; margin-top: clamp(28px, 4vw, 44px); }
.hero__sub { font-size: clamp(18px, 1.55vw, 21px); line-height: 1.5; color: var(--muted); max-width: 44ch; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; }
@media (min-width: 900px) { .hero__foot { grid-template-columns: 1fr auto; align-items: end; gap: 48px; } }

/* Reel */
.reel { position: relative; margin-top: clamp(56px, 8vw, 104px); padding-inline: var(--gutter); }
.reel__frame {
  position: relative; aspect-ratio: 16 / 9; overflow: hidden;
  border-radius: 14px;
  background: var(--canvas-deep);
  box-shadow: 0 0 0 1px var(--halo), 0 50px 140px -50px rgba(124, 58, 237, .55);
  transform-origin: 50% 0;
}
.reel__frame video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
@media (min-width: 900px) {
  .reel { padding-inline: 0; }
  .reel__frame { transform: scale(.86); border-radius: 28px; }
}
@media (min-width: 900px) and (prefers-reduced-motion: reduce) {
  .reel { padding-inline: var(--gutter); }
  .reel__frame { transform: none; border-radius: 22px; max-width: var(--max); margin-inline: auto; }
}

.reel__hud {
  position: absolute; left: 0; right: 0; bottom: 0;
  display: flex; align-items: flex-end; justify-content: space-between; gap: 16px;
  padding: clamp(14px, 2.2vw, 32px);
  background: linear-gradient(180deg, transparent, rgba(11, 5, 18, .72));
  font-size: 13px; line-height: 1; color: rgba(255, 255, 255, .88);
  font-variant-numeric: tabular-nums;
}
.reel__tag { display: flex; align-items: center; gap: 10px; }
.reel__rec { width: 8px; height: 8px; border-radius: 50%; background: #fff; animation: rec 1.6s steps(2, jump-none) infinite; }
.reel.is-paused .reel__rec { animation: none; opacity: .4; }
@keyframes rec { 50% { opacity: .25; } }
.reel__controls { display: flex; align-items: center; gap: 14px; }
.reel__toggle {
  display: grid; place-items: center; width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255, 255, 255, .12); border: 1px solid rgba(255, 255, 255, .24);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  transition: background-color .12s linear;
}
.reel__toggle:hover { background: rgba(255, 255, 255, .26); }
.reel__toggle .i { width: 13px; height: 13px; }
.reel__toggle .i-play { display: none; margin-left: 2px; }
.reel.is-paused .reel__toggle .i-play { display: block; }
.reel.is-paused .reel__toggle .i-pause { display: none; }
@media (max-width: 600px) { .reel__tc { display: none; } }

/* ---------- Sections ---------- */

.section { position: relative; padding-block: var(--section); }
.rule { border-top: 1px solid var(--line); }

/* ---------- Work ---------- */

.feature { display: grid; gap: 22px; margin-top: clamp(56px, 7vw, 96px); }
@media (min-width: 1000px) { .feature { grid-template-columns: minmax(0, 1fr) 300px; gap: 48px; align-items: end; } }

.clip__media {
  position: relative; overflow: hidden;
  border-radius: 16px;
  background: var(--canvas-deep);
  box-shadow: 0 0 0 1px var(--line);
}
.clip--wide .clip__media {
  aspect-ratio: 16 / 9;
  border-radius: clamp(14px, 1.6vw, 22px);
  box-shadow: 0 0 0 1px var(--halo), 0 40px 120px -60px rgba(124, 58, 237, .5);
}
.clip--tall .clip__media { aspect-ratio: 9 / 16; }
.clip__media > img, .clip__media > video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.clip__media > video { opacity: 0; transition: opacity .25s ease; }
.clip.is-started .clip__media > video { opacity: 1; }

.clip__play {
  position: absolute; inset: 0; z-index: 1;
  display: grid; place-items: center;
  background: linear-gradient(180deg, rgba(11, 5, 18, 0) 45%, rgba(11, 5, 18, .5));
  transition: opacity .2s ease;
}
.clip__play-icon {
  display: grid; place-items: center;
  width: clamp(58px, 5.6vw, 78px); aspect-ratio: 1; border-radius: 50%;
  background: rgba(255, 255, 255, .14);
  border: 1px solid rgba(255, 255, 255, .3);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  transition: background-color .12s linear, color .12s linear;
}
.clip__play-icon .i { width: 30%; height: 30%; margin-left: 6%; }
.clip__play:hover .clip__play-icon, .clip__play:focus-visible .clip__play-icon { background: #fff; color: var(--canvas); }
.clip__play:focus-visible { outline-offset: -4px; border-radius: inherit; }
.clip.is-playing .clip__play { opacity: 0; pointer-events: none; }
.clip.is-started .clip__play { background: rgba(11, 5, 18, .3); }

.clip__dur {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  padding: 6px 10px; border-radius: 999px;
  font-size: 12.5px; line-height: 1; font-variant-numeric: tabular-nums;
  background: rgba(11, 5, 18, .62);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  pointer-events: none;
}
.clip__sound {
  position: absolute; right: 12px; bottom: 14px; z-index: 2;
  display: grid; place-items: center; width: 38px; height: 38px; border-radius: 50%;
  background: rgba(11, 5, 18, .62); border: 1px solid rgba(255, 255, 255, .2);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  opacity: 0; pointer-events: none;
  transition: opacity .2s ease, background-color .12s linear;
}
.clip.is-started .clip__sound { opacity: 1; pointer-events: auto; }
.clip__sound:hover { background: rgba(255, 255, 255, .22); }
.clip__sound .i { width: 17px; height: 17px; }
.clip__sound .i-muted, .clip.is-muted .clip__sound .i-sound { display: none; }
.clip.is-muted .clip__sound .i-muted { display: block; }
.clip__bar { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; height: 3px; background: rgba(255, 255, 255, .16); opacity: 0; transition: opacity .2s ease; }
.clip.is-started .clip__bar { opacity: 1; }
.clip__bar i { display: block; height: 100%; background: #fff; transform-origin: 0 50%; transform: scaleX(0); }

.clip__cap { display: grid; gap: 8px; margin-top: 18px; align-content: start; }
.feature .clip__cap { margin-top: 0; }
.clip__type { font-size: 14px; color: var(--muted); }
.clip__title { font-size: clamp(16px, 1.3vw, 18px); font-weight: 500; line-height: 1.4; letter-spacing: -.01em; text-wrap: pretty; }
.feature .clip__title { font-family: var(--serif); font-weight: 400; font-size: clamp(24px, 2.2vw, 32px); line-height: 1.2; letter-spacing: -.015em; }

/* Rail */
.rail { margin-top: clamp(80px, 10vw, 144px); }
.rail__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 28px; }
.rail__title { font-size: clamp(22px, 2vw, 28px); font-weight: 500; letter-spacing: -.02em; line-height: 1.2; }
.rail__sub { margin-top: 6px; font-size: 16px; color: var(--muted); }
.rail__nav { display: none; gap: 10px; flex: none; }
@media (min-width: 900px) { .rail__nav { display: flex; } }

.rail__track {
  --rail-gap: clamp(14px, 1.8vw, 24px);
  display: grid; grid-auto-flow: column; grid-auto-columns: min(74vw, 300px);
  gap: var(--rail-gap);
  overflow-x: auto; overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory; scroll-padding-inline: var(--edge);
  padding-inline: var(--edge); padding-bottom: 6px;
  scrollbar-width: none;
}
.rail__track::-webkit-scrollbar { display: none; }
.rail__track > li { scroll-snap-align: start; }
@media (min-width: 900px) {
  .rail__track { grid-auto-columns: calc((min(100vw, var(--max)) - 2 * var(--gutter) - 3 * var(--rail-gap)) / 4); }
}

/* Retention diptych: cream paper (left) + void UI (right) */
.cut {
  display: grid;
  margin-top: clamp(80px, 10vw, 144px);
  border-radius: 24px; overflow: hidden;
  box-shadow: 0 0 0 1px var(--line);
}
@media (min-width: 1000px) { .cut { grid-template-columns: 1fr 1fr; } }

.cut__paper {
  display: flex; flex-direction: column; gap: 24px;
  padding: clamp(32px, 4.5vw, 64px);
  background: var(--cream); color: var(--ink);
}
.cut__paper .kicker { color: var(--ink-muted); }
.cut__paper h3 { font-family: var(--serif); font-weight: 400; font-size: clamp(32px, 3.4vw, 50px); line-height: 1.06; letter-spacing: -.02em; text-wrap: balance; }
.cut__paper p { color: #4A3D58; max-width: 44ch; }
.cut__list { display: grid; margin-top: auto; padding-top: 12px; }
.cut__list li {
  display: flex; justify-content: space-between; gap: 16px;
  padding: 12px 0; border-top: 1px solid rgba(18, 9, 28, .14);
  font-size: 15px;
}
.cut__list li:last-child { border-bottom: 1px solid rgba(18, 9, 28, .14); }
.cut__list li span:first-child { transition: color .3s ease; text-decoration: line-through; text-decoration-color: transparent; }
.cut__list li span:last-child { color: var(--ink-muted); font-variant-numeric: tabular-nums; }
.cut__list li.is-gone span:first-child { color: var(--ink-muted); text-decoration-color: rgba(18, 9, 28, .6); }

.cut__void {
  position: relative; isolation: isolate; overflow: hidden;
  display: flex; flex-direction: column; gap: 32px;
  padding: clamp(32px, 4.5vw, 64px);
  background: var(--canvas-deep);
}
.cut__void::before { content: ""; position: absolute; inset: 0; z-index: -1; background: radial-gradient(70% 60% at 100% 0%, rgba(124, 58, 237, .16), transparent 70%); }
.cut__meta { display: flex; justify-content: space-between; gap: 16px; font-size: 14px; color: var(--muted); }
.cut__state { color: #fff; }
.cut__time { font-weight: 300; font-size: clamp(76px, 9vw, 136px); line-height: .9; letter-spacing: -.05em; font-variant-numeric: tabular-nums; }
.cut__hint { margin-top: 14px; font-size: 15px; color: var(--muted); }

.tl { display: grid; gap: 12px; }
.tl__track {
  position: relative; height: 68px; border-radius: 12px;
  background: repeating-linear-gradient(90deg, rgba(255, 255, 255, .045) 0 1px, transparent 1px 12px);
  box-shadow: inset 0 0 0 1px var(--line);
}
.tl__segs { position: absolute; inset: 9px; display: flex; }
.seg { flex: none; height: 100%; border-radius: 4px; width: calc(var(--len) / 2520 * 100%); }
.seg--keep { background: linear-gradient(180deg, #F6EBDD, #DCCAB5); box-shadow: inset -2px 0 0 var(--canvas-deep); }
.seg--cut {
  width: calc(var(--len) / 2520 * 100% * (1 - var(--t, 0)));
  background: repeating-linear-gradient(135deg, rgba(154, 140, 176, .6) 0 2px, rgba(154, 140, 176, .12) 2px 7px);
  box-shadow: inset -2px 0 0 var(--canvas-deep);
  opacity: calc(1 - var(--t, 0) * .5);
}
.tl__head {
  position: absolute; top: -6px; bottom: -6px; width: 2px; border-radius: 2px; background: #fff;
  left: calc(9px + (100% - 18px) * var(--end, 1) - 1px);
}
.tl__scale { display: flex; justify-content: space-between; font-size: 12.5px; color: var(--dim); font-variant-numeric: tabular-nums; }
.tl__legend { display: flex; gap: 22px; font-size: 13.5px; color: var(--muted); }
.tl__legend span { display: inline-flex; align-items: center; gap: 8px; }
.tl__legend i { width: 14px; height: 10px; border-radius: 2px; }
.tl__legend .k { background: var(--cream); }
.tl__legend .c { background: repeating-linear-gradient(135deg, rgba(154, 140, 176, .8) 0 2px, rgba(154, 140, 176, .2) 2px 5px); }

.scrub { display: grid; gap: 10px; margin-top: auto; }
.scrub__labels { display: flex; justify-content: space-between; font-size: 14px; color: var(--muted); }
.scrub input { -webkit-appearance: none; appearance: none; width: 100%; height: 30px; margin: 0; background: transparent; cursor: ew-resize; }
.scrub input::-webkit-slider-runnable-track { height: 2px; border-radius: 2px; background: linear-gradient(90deg, #fff calc(var(--t, 0) * 100%), var(--line) 0); }
.scrub input::-moz-range-track { height: 2px; background: var(--line); }
.scrub input::-moz-range-progress { height: 2px; background: #fff; }
.scrub input::-webkit-slider-thumb { -webkit-appearance: none; width: 26px; height: 26px; margin-top: -12px; border: 0; border-radius: 50%; background: var(--cream); box-shadow: 0 0 0 6px rgba(246, 235, 221, .12); }
.scrub input::-moz-range-thumb { width: 26px; height: 26px; border: 0; border-radius: 50%; background: var(--cream); box-shadow: 0 0 0 6px rgba(246, 235, 221, .12); }
.scrub input:focus-visible { outline: none; }
.scrub input:focus-visible::-webkit-slider-thumb { box-shadow: 0 0 0 3px var(--canvas-deep), 0 0 0 5px #fff; }
.scrub input:focus-visible::-moz-range-thumb { box-shadow: 0 0 0 3px var(--canvas-deep), 0 0 0 5px #fff; }

/* Thumbnails */
.thumbs { margin-top: clamp(104px, 13vw, 184px); }
.thumbs__head { margin-bottom: clamp(40px, 5vw, 64px); }
.marquee {
  --gap: clamp(14px, 1.6vw, 22px);
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}
.marquee + .marquee { margin-top: var(--gap); }
.marquee__track { display: flex; gap: var(--gap); width: max-content; animation: marquee 90s linear infinite; }
.marquee--reverse .marquee__track { animation-direction: reverse; animation-duration: 100s; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__track img {
  width: clamp(300px, 36vw, 540px); height: auto; aspect-ratio: 16 / 9; object-fit: cover;
  border-radius: clamp(12px, 1.2vw, 18px);
  box-shadow: 0 0 0 1px var(--line), 0 40px 90px -50px rgba(0, 0, 0, .9);
  transition: opacity .12s linear;
}
.marquee__track:hover img { opacity: .5; }
.marquee__track img:hover { opacity: 1; }
@keyframes marquee { to { transform: translateX(calc(-50% - var(--gap) / 2)); } }

/* ---------- Proof ---------- */

.proof { padding-bottom: 0; }
.stats { display: grid; margin-top: 36px; border-top: 1px solid var(--line); }
.stat { display: flex; flex-direction: column-reverse; justify-content: flex-end; gap: 8px; padding: 28px 0; border-bottom: 1px solid var(--line); }
.stat dd { font-family: var(--serif); font-weight: 300; font-size: clamp(64px, 8.5vw, 128px); line-height: .95; letter-spacing: -.04em; }
.stat dt { font-size: 16px; color: var(--muted); }
@media (min-width: 900px) {
  .stats { grid-template-columns: repeat(3, 1fr); border-bottom: 1px solid var(--line); }
  .stat { padding: 40px 32px 40px 0; border-bottom: 0; }
  .stat + .stat { padding-left: 32px; border-left: 1px solid var(--line); }
}

.studio {
  position: relative; isolation: isolate; overflow: hidden;
  display: flex; align-items: flex-end;
  min-height: clamp(640px, 96vh, 960px);
  margin-top: clamp(80px, 10vw, 144px);
}
.studio__img { position: absolute; inset: -8% 0; z-index: -2; }
.studio__img img { width: 100%; height: 100%; object-fit: cover; object-position: 35% 50%; }
.studio::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(0deg, var(--canvas) 0%, rgba(18, 9, 28, .6) 40%, rgba(18, 9, 28, .12) 72%, rgba(18, 9, 28, .7) 100%),
    linear-gradient(90deg, rgba(18, 9, 28, .75), transparent 65%);
}
.studio__inner { display: grid; gap: 26px; padding-block: clamp(40px, 6vw, 96px); }
.studio .kicker { color: rgba(255, 255, 255, .78); }
.studio__title { font-size: clamp(42px, 8.2vw, 132px); line-height: .96; letter-spacing: -.035em; max-width: 16ch; }
.studio__title em { display: block; font-style: italic; font-weight: 300; }
.clocks { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 6px; }
.clock {
  display: grid; gap: 6px; min-width: 150px; padding: 14px 18px; border-radius: 14px;
  background: rgba(18, 9, 28, .55); box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .1);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
}
.clock__city { font-size: 13.5px; line-height: 1.2; color: var(--muted); }
.clock__time { font-size: 28px; font-weight: 500; line-height: 1; letter-spacing: -.02em; font-variant-numeric: tabular-nums; }

/* ---------- Process ---------- */

.process__grid { display: grid; gap: 56px; }
.process__intro .display { margin-top: 22px; max-width: 11ch; }
.process__intro .lead { margin-top: 24px; }
@media (min-width: 1000px) {
  .process__grid { grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: 88px; align-items: start; }
  .process__intro { position: sticky; top: calc(var(--header-h) + 56px); }
}

.steps { position: relative; display: grid; }
.steps__rail { position: absolute; left: 23.5px; top: 24px; bottom: 24px; width: 1px; background: var(--line); }
.steps__rail i { position: absolute; inset: 0; background: rgba(255, 255, 255, .7); transform-origin: 50% 0; }
.step { position: relative; display: grid; grid-template-columns: 48px minmax(0, 1fr); column-gap: clamp(18px, 2.4vw, 32px); padding-bottom: clamp(56px, 7vw, 96px); }
.step:last-child { padding-bottom: 0; }
.step__num {
  position: relative; z-index: 1; display: grid; place-items: center;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--canvas); box-shadow: inset 0 0 0 1px var(--line);
  font-size: 16px; font-weight: 500; color: var(--muted);
  transition: background-color .3s ease, color .3s ease, box-shadow .3s ease;
}
.step.is-active .step__num { background: #fff; color: var(--canvas); box-shadow: 0 0 0 6px var(--canvas); }
.step__body { padding-top: 8px; }
.step h3 { font-size: clamp(22px, 2vw, 28px); font-weight: 500; line-height: 1.2; letter-spacing: -.02em; }
.step p { margin-top: 10px; color: var(--muted); max-width: 44ch; }
.step .badge48 { margin-top: 18px; }
.step__img { margin-top: 26px; overflow: hidden; border-radius: 16px; aspect-ratio: 16 / 10; box-shadow: 0 0 0 1px var(--line); }
.step__img img { width: 100%; height: 100%; object-fit: cover; }
@media (min-width: 640px) { .step__img { aspect-ratio: 3 / 2; max-width: 480px; } }

/* ---------- Pricing ---------- */

.plans { display: grid; gap: 20px; margin-top: clamp(56px, 7vw, 88px); }
@media (min-width: 900px) { .plans { grid-template-columns: 1fr 1fr; } }
.plan {
  position: relative; isolation: isolate; overflow: hidden;
  display: flex; flex-direction: column; gap: 28px;
  padding: clamp(28px, 3.6vw, 48px);
  border-radius: 24px;
  background: var(--surface);
  box-shadow: inset 0 0 0 1px var(--line);
}
.plan--feature {
  background: radial-gradient(90% 70% at 100% 0%, rgba(124, 58, 237, .22), transparent 65%), var(--surface-2);
  box-shadow: inset 0 0 0 1px var(--halo);
}
.plan__name { font-size: 22px; font-weight: 500; letter-spacing: -.015em; line-height: 1.2; }
.plan__desc { margin-top: 6px; font-size: 16px; color: var(--muted); }
.plan__price { display: flex; flex-wrap: wrap; align-items: baseline; gap: 4px 12px; padding-block: 24px; border-block: 1px solid var(--line); }
.plan__from, .plan__per { font-size: 16px; color: var(--muted); }
.plan__amount { font-family: var(--serif); font-weight: 300; font-size: clamp(56px, 6vw, 84px); line-height: 1; letter-spacing: -.035em; }
.plan__list { display: grid; gap: 12px; }
.plan__list li { position: relative; padding-left: 26px; font-size: 16px; line-height: 1.5; }
.plan__list li::before { content: "+"; position: absolute; left: 0; top: 0; color: var(--muted); }
.plan .btn { margin-top: auto; align-self: flex-start; }
.pricing__note { margin-top: 28px; font-size: 15px; color: var(--muted); }

/* ---------- FAQ ---------- */

.faq__grid { display: grid; gap: 48px; }
.faq__grid .display { margin-top: 22px; max-width: 10ch; }
@media (min-width: 1000px) { .faq__grid { grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: 88px; } }
.qa { border-bottom: 1px solid var(--line); }
.qa:first-child { border-top: 1px solid var(--line); }
.qa summary {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 26px 0; cursor: pointer; list-style: none;
  font-size: clamp(18px, 1.6vw, 21px); font-weight: 500; line-height: 1.35; letter-spacing: -.01em;
}
.qa summary::-webkit-details-marker { display: none; }
.qa summary:focus-visible { outline-offset: 6px; border-radius: 6px; }
.qa__icon { position: relative; flex: none; width: 36px; height: 36px; border-radius: 50%; box-shadow: inset 0 0 0 1px var(--line); transition: transform .3s ease, background-color .12s linear; }
.qa__icon::before, .qa__icon::after { content: ""; position: absolute; left: 50%; top: 50%; width: 12px; height: 1.5px; margin: -.75px 0 0 -6px; border-radius: 2px; background: #fff; }
.qa__icon::after { transform: rotate(90deg); }
.qa summary:hover .qa__icon { background: rgba(255, 255, 255, .08); }
.qa[open] .qa__icon { transform: rotate(45deg); }
.qa__a { padding: 0 60px 28px 0; color: var(--muted); max-width: 62ch; }
.qa::details-content { block-size: 0; overflow: hidden; transition: block-size .35s ease, content-visibility .35s allow-discrete; }
.qa[open]::details-content { block-size: auto; }

/* ---------- Booking ---------- */

.booking { position: relative; isolation: isolate; overflow: hidden; border-top: 1px solid var(--line); }
.booking__atmos { position: absolute; inset: 0; z-index: -1; pointer-events: none; }
.booking__atmos img { width: 100%; height: 100%; object-fit: cover; opacity: .55; }
.booking__atmos::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, var(--canvas) 0%, rgba(18, 9, 28, .3) 32%, rgba(18, 9, 28, .45) 70%, var(--canvas) 100%); }
.booking__inner { display: grid; gap: 28px; justify-items: start; }
.booking .display { font-size: clamp(44px, 7vw, 112px); line-height: 1; max-width: 13ch; }
.booking__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 6px; }
.booking__note { font-size: 15px; color: var(--muted); }
.booking__note a { color: #fff; text-decoration: underline; text-decoration-color: rgba(255, 255, 255, .35); text-underline-offset: 3px; transition: text-decoration-color .12s linear; }
.booking__note a:hover { text-decoration-color: #fff; }
.booking__embed {
  position: relative; width: 100%; height: 720px; margin-top: 12px;
  border-radius: 20px; overflow: hidden;
  background: var(--surface); box-shadow: inset 0 0 0 1px var(--line);
}
.booking__embed.is-loading::before { content: "Loading the calendar"; position: absolute; inset: 0; display: grid; place-items: center; color: var(--muted); font-size: 15px; }
.booking__embed iframe { width: 100%; height: 100%; border: 0; }

/* ---------- Footer ---------- */

.footer { padding-top: clamp(72px, 9vw, 120px); padding-bottom: 28px; border-top: 1px solid var(--line); overflow: hidden; }
.footer__top { display: grid; gap: 32px; }
@media (min-width: 900px) { .footer__top { grid-template-columns: auto 1fr auto; align-items: start; gap: 64px; } }
.footer__tag { font-size: 16px; color: var(--muted); max-width: 36ch; }
.footer__links { display: grid; gap: 10px; font-size: 16px; }
.footer__links a { transition: color .12s linear; }
.footer__links a:hover { color: var(--muted); }
.footer__word {
  margin-top: clamp(56px, 8vw, 112px);
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(52px, 15vw, 212px); line-height: .84; letter-spacing: -.05em;
  white-space: nowrap;
  background: linear-gradient(180deg, rgba(255, 255, 255, .22), rgba(255, 255, 255, .02) 88%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  user-select: none;
}
.footer__bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; margin-top: 6px; padding-top: 24px; border-top: 1px solid var(--line); font-size: 14px; color: var(--muted); }
.footer__bottom a { transition: color .12s linear; }
.footer__bottom a:hover { color: #fff; }

/* ---------- Motion states ---------- */

.anim .hero__title .line > span { transform: translateY(110%); }
.anim .hero [data-intro] { opacity: 0; }
.anim .steps__rail i { transform: scaleY(0); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  .marquee { overflow-x: auto; }
}
