/* ============================================================
   Dragaway product page — GSAP-showcase aesthetic
   dark stage · cream type · candy gradient badges
   ============================================================ */

:root {
  --ink: #fffce1;
  --ink-60: rgba(255, 252, 225, .6);
  --ink-45: rgba(255, 252, 225, .45);
  --bg: #08090c;
  --panel: #101319;
  --accent: #0a84ff;      /* native macOS system blue */
  --accent-hi: #64d2ff;   /* lighter sky-blue for gradients + text */
  --orange: #ff8709;
  --pink: #fec5fb;
  --violet: #9d95ff;
  --blue: #0a84ff;
  --sky: #64d2ff;
  --grad-accent: linear-gradient(130deg, var(--accent), var(--accent-hi));
  --grad-candy: linear-gradient(120deg, var(--orange), var(--pink));
  --grad-violet: linear-gradient(120deg, var(--violet), var(--pink));
  --grad-blue: linear-gradient(120deg, var(--blue), var(--sky));
  --page-wallpaper: url("assets/backdrop.jpg");
  --font-display: "Cabinet Grotesk", "General Sans", ui-sans-serif, system-ui, sans-serif;
  --font-body: "General Sans", ui-sans-serif, system-ui, -apple-system, sans-serif;
  --radius-frame: clamp(14px, 1.6vw, 22px);
}

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

html { scroll-behavior: smooth; }

html.capture-mode { scroll-behavior: auto; }

html.capture-clean .nav,
html.capture-clean .progress,
html.capture-clean .hero__scrollhint {
  display: none !important;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}

/* the macOS wallpaper, dimmed to a moody backdrop + blue accent glow */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(680px 680px at 16% 8%, rgba(10, 132, 255, .12), transparent 62%),
    radial-gradient(760px 760px at 86% 88%, rgba(100, 210, 255, .08), transparent 62%),
    linear-gradient(rgba(8, 9, 12, .80), rgba(8, 9, 12, .90)),
    var(--page-wallpaper) center / cover no-repeat;
}

/* film grain */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 80;
  pointer-events: none;
  opacity: .05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

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

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

.defs { position: absolute; }

/* ---------- initial states (only when JS runs) ---------- */
.js .nav,
.js .hero__kicker,
.js .hero__title,
.js .hero__sub,
.js .hero__scrollhint,
.js .frame,
.js .cursor,
.js .progress,
.js .caption { opacity: 0; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem clamp(1.2rem, 4vw, 3rem);
  background: transparent;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.nav__brand {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -.01em;
}

.nav__brand img { width: 30px; height: 30px; border-radius: 8px; }

.nav__actions {
  display: flex;
  align-items: center;
  gap: clamp(.7rem, 1.6vw, 1.4rem);
  margin-left: auto;
}

.nav__links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(.25rem, .8vw, .7rem);
}

.nav__links a {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: .42rem .55rem .46rem;
  border-radius: .35rem;
  color: var(--ink-60);
  font-size: .82rem;
  font-weight: 600;
  white-space: nowrap;
  text-decoration: none;
  transform-origin: 50% 70%;
  transition:
    color .16s ease,
    transform .32s cubic-bezier(.34, 1.56, .64, 1);
}

.nav__links a::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: .12rem .05rem;
  border-radius: .28rem;
  background: var(--grad-accent);
  box-shadow: 0 10px 28px -8px rgba(10, 132, 255, .6);
  transform: scaleY(0) rotate(-2deg);
  transform-origin: 50% 100%;
  transition: transform .34s cubic-bezier(.34, 1.56, .64, 1);
}

.nav__links a:hover,
.nav__links a:focus-visible {
  color: #071018;
  transform: translateY(-1px) rotate(-1deg) scale(1.04);
}

.nav__links a:hover::before,
.nav__links a:focus-visible::before {
  transform: scaleY(1) rotate(-1deg);
}

.nav__links a:focus-visible {
  outline: 2px solid var(--accent-hi);
  outline-offset: 2px;
}

.nav__product-hunt {
  position: fixed;
  right: clamp(.9rem, 2vw, 1.5rem);
  bottom: clamp(.9rem, 2vw, 1.5rem);
  z-index: 70;
  display: block;
  width: clamp(150px, 14vw, 185px);
  line-height: 0;
  border-radius: 8px;
  opacity: .8;
  transition: transform .25s cubic-bezier(.34, 1.56, .64, 1), filter .25s ease;
}

.nav__product-hunt img {
  display: block;
  width: 100%;
  height: auto;
}

.nav__product-hunt:hover {
  transform: translateY(-3px) scale(1.015);
  filter: drop-shadow(0 8px 18px rgba(10, 132, 255, .2));
}

.nav__product-hunt:focus-visible {
  outline: 2px solid var(--accent-hi);
  outline-offset: 3px;
}

.nav__cta {
  flex: 0 0 auto;
  text-decoration: none;
  background: var(--ink);
  color: #0e100f;
  font-weight: 600;
  font-size: .92rem;
  white-space: nowrap;
  padding: .62em 1.15em;
  border-radius: 999px;
  transition: transform .25s cubic-bezier(.34, 1.56, .64, 1), box-shadow .25s;
}

.nav__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(10, 132, 255, .35);
}

/* ============================================================
   HERO LAYER — the boot-up overlay inside the pinned stage
   ============================================================ */
.hero-layer {
  position: absolute;
  inset: 0;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 5rem 1.2rem 4rem;
  pointer-events: none;
}

/* the macOS-style pointer that performs the drag */
.cursor {
  position: absolute;
  top: 0;
  left: 0;
  width: 26px;
  height: 26px;
  z-index: 40;
  pointer-events: none;
  filter: drop-shadow(0 3px 8px rgba(0, 0, 0, .55));
}

/* gooey layer: only the boot-up drop lives here */
.goo {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  filter: url(#goo);
}

.goo__drop {
  position: absolute;
  left: 50%;
  top: 14px;
  width: 26px;
  height: 26px;
  margin-left: -13px;
  background: var(--grad-accent);
  border-radius: 50%;
}

.hero__kicker {
  font-weight: 600;
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .22em;
  color: var(--ink-45);
  margin-bottom: 1.6rem;
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(3rem, 9.5vw, 8rem);
  line-height: .98;
  letter-spacing: -.02em;
  font-kerning: none;
  text-rendering: optimizeSpeed;
}

.hero__l1, .hero__l2 { display: block; white-space: nowrap; }

.pill-word {
  position: relative;
  display: inline-block;
  padding: .015em .17em .05em;
}

.pill-word__bg {
  position: absolute;
  inset: 0;
  background: var(--grad-accent);
  border-radius: .18em;
  transform: scaleY(0);
  transform-origin: 50% 100%;
  box-shadow: 0 18px 60px -12px rgba(10, 132, 255, .45);
}

.pill-word__txt { position: relative; z-index: 1; }

.hero__dot { display: inline-block; }

.hero__sub {
  font-size: 1.12rem;
  font-weight: 400;
  color: var(--ink-60);
  margin-top: 1.7rem;
  max-width: 36ch;
}

.hero__scrollhint {
  position: absolute;
  bottom: 1.8rem;
  left: 50%;
  transform: translateX(-50%);
  display: grid;
  justify-items: center;
  gap: .6rem;
  font-size: .72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .24em;
  color: var(--ink-45);
}

.hero__scrollhint i {
  width: 1px;
  height: 34px;
  background: linear-gradient(var(--ink-60), transparent);
  animation: scrollpulse 1.8s ease-in-out infinite;
  transform-origin: top;
}

@keyframes scrollpulse {
  0%   { transform: scaleY(.2); opacity: 0; }
  40%  { transform: scaleY(1);  opacity: 1; }
  100% { transform: scaleY(1);  opacity: 0; }
}

/* ============================================================
   STAGE — pinned feature choreography
   ============================================================ */
.stage { position: relative; }

.stage__inner {
  position: relative;
  height: 100svh;
  display: grid;
  place-items: center;
}

.stage__center {
  position: relative;
  width: min(88vw, calc((100svh - 9rem) * 1.5447));
}

.frame {
  width: 100%;
  aspect-ratio: 3420 / 2214;
  position: relative;
  will-change: transform;
}

.frame__float {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-frame);
  overflow: hidden;
  background: var(--panel) var(--page-wallpaper) center / cover no-repeat;
  border: 1px solid rgba(255, 252, 225, .12);
  box-shadow:
    0 60px 140px -30px rgba(0, 0, 0, .7),
    0 40px 120px -40px rgba(10, 132, 255, .16);
}

.feature-video {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.frame__scrim {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(to top,
    rgba(5, 8, 6, .9) 0%,
    rgba(5, 8, 6, .42) 24%,
    transparent 52%);
}

/* ---------- captions ---------- */
.captions {
  position: absolute;
  left: clamp(1.2rem, 3.4vw, 3.4rem);
  right: clamp(1.2rem, 3.4vw, 3.4rem);
  bottom: clamp(1.4rem, 6.5vh, 4rem);
  z-index: 3;
}

.caption {
  position: absolute;
  left: 0;
  bottom: 0;
  max-width: 46rem;
}

.caption__tag {
  font-weight: 600;
  font-size: .76rem;
  text-transform: uppercase;
  letter-spacing: .18em;
  margin-bottom: .95rem;
}

.caption__tag--orange { color: var(--orange); }
.caption__tag--violet { color: var(--violet); }
.caption__tag--blue   { color: var(--sky); }

.caption h2 {
  position: relative;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.9rem, 4.4vw, 4rem);
  line-height: 1.05;
  letter-spacing: -.015em;
  font-kerning: none;
  text-rendering: optimizeSpeed;
}

.caption .line { display: block; }

/* Local contrast bloom for the action drum — dark in the center,
   fully transparent before it reaches the surrounding recording. */
.caption[data-chapter="1"] h2 { isolation: isolate; }

.drum-focus {
  position: absolute;
  z-index: -1;
  left: clamp(-24rem, -20vw, -14rem);
  top: clamp(-41rem, -39vw, -30rem);
  width: clamp(68rem, 104vw, 98rem);
  height: clamp(48rem, 84vw, 74rem);
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(
    ellipse 74% 70% at 15% 70%,
    rgba(0, 4, 8, .96) 0%,
    rgba(0, 4, 8, .8) 32%,
    rgba(0, 4, 8, .5) 58%,
    rgba(0, 4, 8, 0) 86%
  );
  filter: blur(16px);
  will-change: opacity, transform;
}

/* ---------- the picker-drum (combination-lock wheel) ----------
   sits absolutely at "Drop"'s spot in line 1, floating over the text */
.line--first { position: relative; }

.wheel {
  position: absolute;
  left: 0;
  top: 50%;
  width: min(62rem, calc(100vw - clamp(6rem, 13vw, 13rem)));
  font-size: .74em;
  height: 2.6em;
  -webkit-mask-image: linear-gradient(transparent, #000 26%, #000 74%, transparent);
  mask-image: linear-gradient(transparent, #000 26%, #000 74%, transparent);
}

.wheel__item {
  position: absolute;
  left: 0;
  top: 50%;
  white-space: nowrap;
  will-change: transform;
  color: var(--accent-hi);
}

/* the green verb — lives in line 1, hands off to the drum */
.drop-word {
  display: inline-block;
  color: var(--accent-hi);
  will-change: transform;
}

.wheel__item--do {
  color: var(--accent-hi);
  transform-origin: left center;
}

/* the merge result — sits under the drum */
.anything-line {
  position: absolute;
  left: 0;
  top: calc(1.7em + clamp(24px, 2.4vw, 34px));
  white-space: nowrap;
}

.wheel__pill {
  display: inline-block;
  padding: .02em .18em .06em;
  border-radius: .18em;
  background: var(--grad-accent);
  color: #0e100f;
  transform: rotate(-2deg);
  box-shadow: 0 14px 44px -10px rgba(10, 132, 255, .4);
}

/* tool trail — labeled favorites dissolve into smaller icon particles */
.caption .line--pills {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: nowrap;
  gap: .1em;
  padding: .2em 0 .16em;
}

.tool-pill {
  position: relative;
  z-index: 1;
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  gap: .15em;
  min-width: 1.04em;
  height: 1.04em;
  padding: .14em;
  border-radius: .3em;
  font-size: .72em;
  box-shadow: 0 14px 40px -10px rgba(0, 0, 0, .5);
  will-change: transform;
}

.tool-pill--labeled { padding-right: .28em; }

.tool-pill img {
  display: block;
  width: .76em;
  height: .76em;
  flex: 0 0 .76em;
  object-fit: contain;
  border-radius: 18%;
}

.tool-pill__label {
  font-family: var(--font-display);
  font-size: .34em;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -.015em;
  white-space: nowrap;
  color: #171717;
}

.tool-pill--figma    { background: var(--grad-violet); }
.tool-pill--word     { background: var(--grad-blue); }
.tool-pill--notion   { background: var(--grad-candy); }
.tool-pill--claude   { background: linear-gradient(135deg, #fff3e8, #e9c2ad); }
.tool-pill--premiere { background: linear-gradient(135deg, #b8a9ff, #6b55da); }
.tool-pill--vscode   { background: linear-gradient(135deg, #bceaff, #48a9e8); }
.tool-pill--excel    { background: linear-gradient(135deg, #c9f2d4, #59bb7b); }
.tool-pill--obsidian { background: linear-gradient(135deg, #d7ccff, #8065dc); }

.tool-merge {
  position: absolute;
  z-index: 2;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  white-space: nowrap;
  pointer-events: none;
}

.tool-merge__label {
  display: inline-block;
  opacity: 0;
  will-change: transform;
}

/* keycaps */
.keys {
  display: flex;
  gap: .55rem;
  margin-top: 1.5rem;
}

.keys kbd {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: clamp(1.05rem, 1.9vw, 1.5rem);
  min-width: 2.25em;
  padding: .5em .55em;
  display: inline-grid;
  place-items: center;
  color: var(--ink);
  background: rgba(22, 26, 24, .9);
  border: 1px solid rgba(255, 252, 225, .17);
  border-bottom-width: 4px;
  border-radius: 13px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, .38);
}

/* chapter progress dots */
.progress {
  position: absolute;
  right: clamp(.9rem, 1.8vw, 1.8rem);
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  display: grid;
  gap: .55rem;
  justify-items: center;
}

.progress .dot {
  width: 8px;
  height: 8px;
  border: none;
  padding: 0;
  border-radius: 999px;
  background: rgba(255, 252, 225, .25);
  cursor: pointer;
  transition: height .35s cubic-bezier(.34, 1.56, .64, 1), background .35s;
}

.progress .dot.on {
  height: 24px;
  background: var(--grad-accent);
}

.progress .dot:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

/* ============================================================
   OUTRO
   ============================================================ */
.outro {
  position: relative;
  min-height: 92svh;
  display: grid;
  place-content: center;
  justify-items: center;
  text-align: center;
  gap: 1.5rem;
  padding: 6rem 1.4rem;
}

.outro::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(560px 420px at 50% 62%, rgba(10, 132, 255, .09), transparent 65%);
  pointer-events: none;
}

.outro__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.7rem, 7.4vw, 6.6rem);
  line-height: 1.02;
  letter-spacing: -.02em;
  max-width: 14ch;
  font-kerning: none;
  text-rendering: optimizeSpeed;
}

.outro__sub {
  color: var(--ink-60);
  font-size: 1.08rem;
  max-width: 44ch;
}

.outro__cta {
  position: relative;
  text-decoration: none;
  background: var(--grad-accent);
  color: #08130b;
  font-weight: 700;
  font-size: 1.08rem;
  padding: .85em 1.7em;
  border-radius: 999px;
  margin-top: .6rem;
  transition: transform .25s cubic-bezier(.34, 1.56, .64, 1), box-shadow .25s;
}

.outro__cta:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 18px 50px -8px rgba(10, 132, 255, .5);
}

.outro__meta {
  font-size: .85rem;
  color: var(--ink-45);
}

/* ============================================================
   STATIC PRODUCT SECTIONS
   ============================================================ */
.info-section {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(1040px, calc(100vw - clamp(2rem, 9vw, 8rem)));
  min-height: 100vh;
  min-height: 100svh;
  margin: 0 auto;
  padding: clamp(3.5rem, 6svh, 5.5rem) 0;
  scroll-margin-top: clamp(4.5rem, 8svh, 6rem);
}

.section-heading { max-width: min(680px, 88vw); }

.section-eyebrow {
  margin-bottom: clamp(.8rem, 2svh, 1.2rem);
  color: var(--accent-hi);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.section-heading h2 {
  font-family: var(--font-display);
  font-size: clamp(2.7rem, min(5vw, 7svh), 4.8rem);
  font-weight: 800;
  line-height: .94;
  letter-spacing: -.035em;
}

.section-heading > p:last-child {
  max-width: 57ch;
  margin-top: clamp(1rem, 2.8svh, 1.6rem);
  color: var(--ink-60);
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  line-height: 1.6;
}

.learn-more::before,
.pricing::before {
  content: "";
  position: absolute;
  z-index: -1;
  pointer-events: none;
}

.learn-more::before {
  top: 8%;
  left: -28%;
  width: 68%;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(10, 132, 255, .13), transparent 68%);
}

.assurance-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(.7rem, 1.4vw, 1rem);
  margin-top: clamp(2rem, min(4vw, 5svh), 3.5rem);
}

.assurance-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 23rem;
  padding: clamp(1.35rem, 2.5vw, 2rem);
  overflow: hidden;
  border: 1px solid rgba(255, 252, 225, .11);
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .055), rgba(255, 255, 255, .012)),
    rgba(9, 11, 15, .64);
  box-shadow: 0 24px 80px rgba(0, 0, 0, .22);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.assurance-card--privacy {
  background:
    radial-gradient(440px 260px at 100% 0%, rgba(10, 132, 255, .14), transparent 70%),
    linear-gradient(145deg, rgba(255, 255, 255, .055), rgba(255, 255, 255, .012)),
    rgba(9, 11, 15, .68);
}

.assurance-card--permissions {
  background:
    radial-gradient(420px 260px at 100% 100%, rgba(100, 210, 255, .09), transparent 72%),
    linear-gradient(145deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, .01)),
    rgba(9, 11, 15, .64);
}

.assurance-card__eyebrow {
  color: var(--accent-hi);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.assurance-card h3 {
  margin-top: .7rem;
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 2.7vw, 2.25rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -.025em;
}

.assurance-card__copy {
  display: grid;
  gap: .78rem;
  margin-top: 1.25rem;
  color: rgba(255, 252, 225, .68);
  font-size: .94rem;
  line-height: 1.5;
}

.assurance-card__copy strong {
  color: rgba(255, 252, 225, .92);
  font-weight: 600;
}

.provider-list {
  display: flex;
  flex-wrap: wrap;
  gap: .42rem;
  margin-top: auto;
  padding-top: 1.3rem;
}

.provider-list span {
  padding: .38rem .55rem;
  border: 1px solid rgba(100, 210, 255, .14);
  border-radius: .55rem;
  background: rgba(100, 210, 255, .055);
  color: var(--ink-60);
  font-size: .7rem;
  line-height: 1.15;
}

.assurance-card__note {
  margin-top: auto;
  padding-top: 1.3rem;
  border-top: 1px solid rgba(255, 252, 225, .09);
  color: var(--ink-45);
  font-size: .82rem;
  line-height: 1.5;
}

.file-groups {
  display: grid;
  gap: .75rem;
  margin-top: clamp(.8rem, 1.6vw, 1.2rem);
}

.file-group,
.price-card {
  border: 1px solid rgba(255, 252, 225, .11);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .055), rgba(255, 255, 255, .012)),
    rgba(9, 11, 15, .64);
  box-shadow: 0 24px 80px rgba(0, 0, 0, .22);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.file-group {
  overflow: hidden;
  border-radius: 22px;
}

.file-group summary {
  display: grid;
  grid-template-columns: minmax(7rem, .22fr) minmax(0, 1fr) 2rem;
  align-items: center;
  gap: clamp(1rem, 2vw, 2rem);
  min-height: 5.2rem;
  padding: 1.2rem 1.5rem;
  cursor: pointer;
  list-style: none;
}

.file-group summary::-webkit-details-marker { display: none; }

.file-group__title {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -.02em;
}

.file-group__formats {
  display: flex;
  flex-wrap: wrap;
  gap: .42rem;
}

.file-group__formats code {
  padding: .3rem .48rem;
  border: 1px solid rgba(255, 252, 225, .1);
  border-radius: .45rem;
  background: rgba(255, 252, 225, .045);
  color: var(--ink-60);
  font-family: var(--font-body);
  font-size: .74rem;
  line-height: 1;
}

.file-group__toggle {
  position: relative;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: rgba(100, 210, 255, .1);
  transition: transform .28s cubic-bezier(.34, 1.56, .64, 1), background-color .2s;
}

.file-group__toggle::before,
.file-group__toggle::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: .72rem;
  height: 1.5px;
  border-radius: 999px;
  background: var(--accent-hi);
  transform: translate(-50%, -50%);
}

.file-group__toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.file-group[open] .file-group__toggle {
  background: var(--grad-accent);
  transform: rotate(45deg);
}

.file-group[open] .file-group__toggle::before,
.file-group[open] .file-group__toggle::after {
  background: #071018;
}

.file-group[open] summary {
  border-bottom: 1px solid rgba(255, 252, 225, .09);
}

.file-group__body {
  display: grid;
  grid-template-columns: minmax(7rem, .22fr) minmax(0, 1fr);
  gap: clamp(1rem, 2vw, 2rem);
  padding: 1.35rem 1.5rem 1.6rem;
  animation: file-group-reveal .25s ease-out;
}

.file-group__body > p {
  color: var(--accent-hi);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.file-group__body ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .7rem 1.8rem;
  list-style: none;
}

.file-group__body li {
  position: relative;
  padding-left: 1.15rem;
  color: rgba(255, 252, 225, .78);
  line-height: 1.4;
}

.file-group__body li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent-hi);
}

@keyframes file-group-reveal {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}

.pricing {
  padding-top: clamp(3.5rem, 6svh, 5.5rem);
}

.pricing::before {
  right: -26%;
  top: 3%;
  width: 70%;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(100, 210, 255, .1), transparent 70%);
}

.pricing-intro {
  display: block;
}

.pricing-intro__copy {
  display: grid;
  gap: .65rem;
  max-width: 57ch;
  margin-top: clamp(1rem, 2.8svh, 1.6rem);
  color: var(--ink-60);
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  line-height: 1.6;
}

.pricing-intro__copy p:first-child {
  color: var(--ink);
  font-weight: 600;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(.7rem, 1.4vw, 1rem);
  margin-top: clamp(2rem, min(4vw, 5svh), 3.5rem);
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: clamp(34rem, 58svh, 37rem);
  padding: clamp(1.4rem, min(2.7vw, 3.5svh), 2.25rem);
  overflow: hidden;
  border-radius: 26px;
}

.price-card--pro {
  border-color: rgba(100, 210, 255, .3);
  background:
    radial-gradient(520px 380px at 90% 0%, rgba(10, 132, 255, .19), transparent 68%),
    linear-gradient(145deg, rgba(100, 210, 255, .08), rgba(255, 255, 255, .014)),
    rgba(9, 11, 15, .72);
}

.price-card__badge {
  position: absolute;
  top: clamp(1.4rem, min(2.7vw, 3.5svh), 2.25rem);
  right: clamp(1.4rem, min(2.7vw, 3.5svh), 2.25rem);
  padding: .52rem .78rem;
  border-radius: 999px;
  background: var(--grad-accent);
  color: #071018;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.price-card__name,
.price-card__label {
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.price-card__name { color: var(--accent-hi); }

.price-card__price {
  display: flex;
  align-items: baseline;
  gap: .55rem;
  margin-top: .9rem;
  font-family: var(--font-display);
}

.price-card__price span {
  font-size: clamp(4rem, min(6vw, 9svh), 5.5rem);
  font-weight: 800;
  line-height: .9;
  letter-spacing: -.055em;
}

.price-card__price small {
  color: var(--ink-60);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
}

.price-card__summary {
  max-width: 35ch;
  margin-top: .9rem;
  color: var(--ink-60);
  line-height: 1.55;
}

.price-card__features {
  margin-top: clamp(1.8rem, min(3.5vw, 4svh), 3rem);
}

.price-card__label {
  margin-bottom: .9rem;
  color: var(--ink-45);
}

.price-card ul {
  display: grid;
  gap: .62rem;
  list-style: none;
}

.price-card li {
  position: relative;
  padding-left: 1.55rem;
  color: rgba(255, 252, 225, .82);
  line-height: 1.45;
}

.price-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-hi);
  font-weight: 700;
}

.price-card:not(.price-card--pro) li::before {
  color: var(--ink-45);
}

.price-card__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: auto;
  padding: .9rem 1.2rem;
  border-radius: 999px;
  background: var(--grad-accent);
  color: #071018;
  font-weight: 700;
  text-decoration: none;
  transition: transform .25s cubic-bezier(.34, 1.56, .64, 1), box-shadow .25s;
}

.price-card__cta--secondary {
  border: 1px solid rgba(255, 252, 225, .16);
  background: rgba(255, 252, 225, .07);
  color: var(--ink);
}

.price-card__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(10, 132, 255, .22);
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(0, 1.22fr);
  align-items: start;
  align-content: center;
  gap: clamp(2rem, 6vw, 5.5rem);
  padding-bottom: clamp(4rem, 9svh, 7rem);
}

.contact__intro h2 {
  font-family: var(--font-display);
  font-size: clamp(2.7rem, min(5vw, 7svh), 4.8rem);
  font-weight: 800;
  line-height: .94;
  letter-spacing: -.035em;
}

.contact__intro > p:not(.section-eyebrow) {
  max-width: 38ch;
  margin-top: 1.25rem;
  color: var(--ink-60);
  font-size: 1.05rem;
  line-height: 1.6;
}

.contact__email {
  display: inline-block;
  margin-top: 1.2rem;
  color: var(--accent-hi);
  font-weight: 600;
  text-underline-offset: .28em;
}

.contact-form {
  display: grid;
  gap: 1rem;
  padding: clamp(1.25rem, 2.6vw, 2rem);
  border: 1px solid rgba(255, 252, 225, .11);
  border-radius: 26px;
  background:
    radial-gradient(500px 260px at 100% 0%, rgba(10, 132, 255, .12), transparent 68%),
    linear-gradient(145deg, rgba(255, 255, 255, .055), rgba(255, 255, 255, .012)),
    rgba(9, 11, 15, .64);
  box-shadow: 0 24px 80px rgba(0, 0, 0, .22);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.contact-form__row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.contact-form label {
  display: grid;
  gap: .5rem;
}

.contact-form label > span {
  color: var(--ink-45);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 252, 225, .12);
  border-radius: 13px;
  outline: none;
  background: rgba(255, 252, 225, .045);
  color: var(--ink);
  font: inherit;
  line-height: 1.45;
  padding: .82rem .9rem;
  transition: border-color .2s, box-shadow .2s, background-color .2s;
}

.contact-form textarea {
  min-height: 8.4rem;
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(255, 252, 225, .3); }

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(100, 210, 255, .62);
  background: rgba(100, 210, 255, .055);
  box-shadow: 0 0 0 3px rgba(10, 132, 255, .12);
}

.contact-form__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: .2rem;
}

.contact-form__footer p {
  color: var(--ink-45);
  font-size: .78rem;
  line-height: 1.4;
}

.contact-form button {
  flex: none;
  border: 0;
  border-radius: 999px;
  background: var(--grad-accent);
  color: #071018;
  cursor: pointer;
  font: inherit;
  font-weight: 700;
  padding: .82rem 1.3rem;
  transition: transform .25s cubic-bezier(.34, 1.56, .64, 1), box-shadow .25s;
}

.contact-form button:hover {
  transform: translateY(-2px) scale(1.015);
  box-shadow: 0 14px 36px rgba(10, 132, 255, .28);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  overflow: hidden;
  padding: 0 clamp(.7rem, 2vw, 1.5rem) clamp(.7rem, 2vw, 1.5rem);
  font-size: .85rem;
  color: var(--ink-45);
}

.footer-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.4rem;
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: 1.1rem 1.25rem;
  border: 1px solid rgba(255, 252, 225, .12);
  border-radius: 22px;
  background:
    radial-gradient(440px 160px at 5% 100%, rgba(10, 132, 255, .18), transparent 72%),
    rgba(255, 255, 255, .045);
  box-shadow: 0 18px 70px rgba(0, 0, 0, .28);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  will-change: transform, opacity;
}

.footer-banner__brand {
  display: flex;
  align-items: center;
  gap: .7rem;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
}

.footer-banner__brand img {
  width: 2rem;
  height: 2rem;
  border-radius: .55rem;
}

.footer-banner__contact {
  color: var(--ink-60);
  text-underline-offset: .28em;
  transition: color .2s;
}

.footer-banner__contact:hover { color: var(--ink); }

/* ============================================================
   REDUCED MOTION — calm, static layout
   ============================================================ */
body.reduced .goo,
body.reduced .cursor,
body.reduced .hero__scrollhint,
body.reduced .progress,
body.reduced .frame__scrim { display: none; }

body.reduced .hero-layer {
  position: static;
  padding: 7rem 1.2rem 2rem;
}

body.reduced .stage__inner { height: auto; padding: 0 0 4rem; }

body.reduced .captions {
  position: static;
  margin-top: 2.4rem;
  display: grid;
  gap: 3.2rem;
}

body.reduced .caption { position: static; }

body.reduced .wheel {
  position: static;
  width: auto;
  height: auto;
  -webkit-mask-image: none;
  mask-image: none;
}

body.reduced .wheel__item {
  position: static;
  display: block;
  transform: none;
  opacity: 1;
}

body.reduced .anything-line {
  position: static;
  display: block;
  margin-top: .4em;
}

body.reduced .feature-video:not(#vw1) { display: none; }

body.reduced .pill-word__bg { transform: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 760px) {
  .nav {
    gap: .45rem;
    padding: .8rem .75rem;
  }

  .nav__brand span { display: none; }

  .nav__actions { gap: .2rem; }

  .nav__links {
    position: static;
    gap: .08rem;
    margin-left: auto;
    padding: 0;
    transform: none;
  }

  .nav__links a {
    padding: .36rem .46rem;
    font-size: .68rem;
  }

  .nav__product-hunt {
    width: 130px;
  }

  .nav__cta {
    font-size: .72rem;
    padding: .55em .76em;
  }

  .goo__drop { width: 21px; height: 21px; margin-left: -10.5px; }
  .hero__title { font-size: clamp(2.5rem, 13.5vw, 3.6rem); }
  .hero__sub { font-size: 1rem; }

  .stage__center { width: 94vw; }

  .stage__inner {
    place-items: start center;
    padding-top: clamp(5rem, 16vh, 9rem);
  }

  /* on small screens the captions sit below the recording, not on it */
  .captions {
    left: .35rem;
    right: .35rem;
    top: calc(100% + 1.1rem);
    bottom: auto;
  }

  .caption { top: 0; bottom: auto; }

  .wheel {
    width: calc(100vw - 1.4rem);
    font-size: .58em;
  }

  .frame__scrim { display: none; }

  .caption h2 { font-size: clamp(1.35rem, 6.6vw, 2rem); }
  .caption__tag { font-size: .68rem; margin-bottom: .6rem; }

  .keys { margin-top: 1rem; }
  .keys kbd { border-radius: 10px; border-bottom-width: 3px; }

  .progress { right: .45rem; }

  .info-section {
    width: min(100% - 1.4rem, 1040px);
    padding: 4rem 0;
  }

  .pricing-grid,
  .pricing-intro,
  .assurance-grid,
  .contact {
    grid-template-columns: 1fr;
  }

  .assurance-card { min-height: auto; }

  .contact { gap: 2rem; }

  .contact-form__row { grid-template-columns: 1fr; }

  .contact-form__footer {
    align-items: stretch;
    flex-direction: column;
  }

  .contact-form button { width: 100%; }

  .file-group summary {
    grid-template-columns: minmax(0, 1fr) 2rem;
    gap: .8rem;
    padding: 1rem 1.1rem;
  }

  .file-group__formats {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .file-group__toggle {
    grid-column: 2;
    grid-row: 1;
  }

  .file-group__body {
    grid-template-columns: 1fr;
    padding: 1.1rem;
  }

  .file-group__body ul {
    grid-template-columns: 1fr;
  }

  .price-card { min-height: 34rem; }

  .footer-banner {
    align-items: flex-start;
    flex-direction: column;
    gap: .72rem;
    padding: 1rem;
  }
}

@media (max-width: 560px) {
  .nav__links { display: none; }

  .nav__product-hunt {
    right: .75rem;
    bottom: .75rem;
    width: 112px;
  }
}

@media (max-width: 360px) {
  .nav__product-hunt { width: 96px; }
}
