/* Handled — taskshandled.com
   Cinematic product-launch language: true black, SF display type, one warm
   ember accent reserved for the single idea the product runs on — waiting
   time. Photography carries the story; type carries the argument; the ember
   always means the same thing. The app stays monochrome; the site gets the
   light.

   Contrast discipline: --gray (#86868b, 5.8:1 on black) is the floor for
   small text. --gray-2 exists for 18px+ only. */

:root {
  --black: #000000;
  --panel: #0c0c0e;
  --panel-2: #121215;
  --hairline: rgba(255, 255, 255, 0.08);
  --white: #f5f5f7;
  --body: #a1a1a6;
  --gray: #86868b;
  --gray-2: #6e6e73;          /* large text + decoration only */
  --ember: #ff9d2e;
  --ember-soft: #ffc06a;
  --ember-deep: #ff5a00;
  --grad: linear-gradient(96deg, #ffe9cf 0%, #ffc06a 30%, #ff9d2e 58%, #ff5a00 100%);
  --font: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', 'Segoe UI', system-ui, sans-serif;
  --mono: 'SF Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --r: 28px;
  --r-pill: 999px;
  --nav-h: 52px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; color-scheme: dark; }

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: var(--font);
  font-size: 1.0625rem;
  line-height: 1.5;
  letter-spacing: -0.01em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }

::selection { background: rgba(255, 157, 46, 0.35); color: #fff; }

:focus-visible {
  outline: 2px solid var(--ember);
  outline-offset: 3px;
  border-radius: 6px;
}

/* Deep links land below the fixed bar rather than under it. */
[id] { scroll-margin-top: calc(var(--nav-h) + env(safe-area-inset-top, 0px) + 12px); }

/* Taps register immediately, and the flash is ours rather than the OS grey. */
a, .btn { touch-action: manipulation; -webkit-tap-highlight-color: rgba(255, 157, 46, 0.18); }

/* Reachable, but only once a keyboard is driving. */
.skip {
  position: absolute;
  left: 50%;
  top: 8px;
  transform: translate(-50%, -160%);
  z-index: 200;
  background: var(--white);
  color: #111;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: var(--r-pill);
  padding: 10px 20px;
  transition: transform 0.2s var(--ease);
}
.skip:focus-visible { transform: translate(-50%, 0); }

/* ---------- shared type ---------- */

.eyebrow {
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--ember);
  margin: 0 0 14px;
}

.grad {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.clock {
  font-family: var(--mono);
  font-size: 0.9375rem;
  letter-spacing: 0.16em;
  color: var(--ember);
  margin: 0 0 18px;
}

.fine { font-size: 0.8125rem; color: var(--gray); }

.section-h {
  font-size: clamp(2.125rem, 5.4vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
  font-weight: 700;
  margin: 0 0 56px;
}

/* No stranded last words at intermediate widths. */
h1, h2, h3 { text-wrap: balance; }

/* ---------- reveal on scroll ---------- */

/* Quick and quiet: content arrives, it doesn't perform. The no-JS fallback
   lives in a <noscript> block in the page head. */
.io {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.io.in { opacity: 1; transform: none; }
.d1 { transition-delay: 0.08s; }
.d2 { transition-delay: 0.16s; }
.d3 { transition-delay: 0.24s; }
.d4 { transition-delay: 0.34s; }
.d5 { transition-delay: 0.44s; }

/* ---------- buttons ---------- */

.btn {
  display: inline-block;
  font-size: 0.9375rem;
  font-weight: 600;
  border: 0;
  border-radius: var(--r-pill);
  padding: 12px 26px;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), filter 0.25s var(--ease);
}

/* Only the real controls claim to be clickable — the composer mock is a picture. */
a.btn, button.btn { cursor: pointer; }

.btn-primary {
  background: linear-gradient(180deg, #ffbe66 0%, #ff8c1a 100%);
  color: #1c0d00;
  box-shadow: 0 0 0 1px rgba(255, 157, 46, 0.25), 0 8px 28px rgba(255, 124, 26, 0.25);
}
.btn-primary:hover {
  transform: translateY(-1px);
  filter: brightness(1.06);
  box-shadow: 0 0 0 1px rgba(255, 157, 46, 0.35), 0 12px 38px rgba(255, 124, 26, 0.34);
}

.btn-nav { font-size: 0.8125rem; padding: 7px 16px; background: var(--white); color: #111; }
.btn-nav:hover { filter: brightness(0.92); }

.btn-big { font-size: 1.0625rem; padding: 16px 34px; }
.btn-mini { font-size: 0.8125rem; padding: 8px 18px; }

.link-arrow {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--ember);
  padding: 10px 4px;
  margin: -10px -4px;
}
.link-arrow:hover { text-decoration: underline; text-underline-offset: 4px; }

.cta-row { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; }
.cta-center { justify-content: center; }

/* ---------- nav ---------- */

.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding-top: env(safe-area-inset-top, 0px);
  backdrop-filter: saturate(1.8) blur(20px);
  -webkit-backdrop-filter: saturate(1.8) blur(20px);
  background: rgba(0, 0, 0, 0.55);
  border-bottom: 1px solid transparent;
  transition: border-color 0.4s ease, background 0.4s ease;
}
.nav.scrolled { border-bottom-color: var(--hairline); background: rgba(0, 0, 0, 0.72); }

.nav-inner {
  max-width: 1064px;
  margin: 0 auto;
  height: var(--nav-h);
  padding: 0 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand { font-size: 1.125rem; font-weight: 700; letter-spacing: -0.02em; transition: color 0.2s var(--ease); }
.nav-brand:hover { color: var(--ember-soft); }
.nav-links { display: flex; align-items: center; gap: 10px; }
.nav-signin { font-size: 0.875rem; color: var(--body); padding: 10px 12px; }
.nav-signin:hover { color: var(--white); }

/* ---------- hero ---------- */

.hero {
  padding: calc(var(--nav-h) + env(safe-area-inset-top, 0px) + 84px) 0 0;
  text-align: center;
}

.hero-copy { max-width: 900px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 2; }

.hero-h {
  font-size: clamp(3.5rem, 10.5vw, 8.5rem);
  line-height: 0.96;
  letter-spacing: -0.048em;
  font-weight: 700;
  margin: 0 0 26px;
}

.lede {
  font-size: clamp(1.125rem, 2.2vw, 1.375rem);
  line-height: 1.5;
  color: var(--body);
  max-width: 620px;
  margin: 0 auto 34px;
}

.hero .cta-row { justify-content: center; }

/* The photograph rises to meet the headline: masked into the black so the
   page and the void are one surface. */
.hero-media {
  position: relative;
  margin: -20px auto 0;
  max-width: 1680px;
  overflow: hidden;
}
.hero-media img {
  width: 100%;
  max-height: 88vh;
  object-fit: cover;
  will-change: transform;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 18%, #000 84%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, #000 18%, #000 84%, transparent 100%);
}

/* ---------- cinematic full-bleed frames ---------- */

.cine {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  isolation: isolate;
  overflow: hidden;
}

.cine-img {
  position: absolute;
  inset: -4%;
  width: 108%;
  height: 108%;
  object-fit: cover;
  z-index: -2;
  will-change: transform;
}

.cine-scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(to top, rgba(0, 0, 0, 0.94) 6%, rgba(0, 0, 0, 0.2) 46%, rgba(0, 0, 0, 0.5) 100%),
    linear-gradient(to right, rgba(0, 0, 0, 0.45), transparent 55%);
}

.cine-copy {
  padding: 0 24px 108px;
  max-width: 1064px;
  margin: 0 auto;
  width: 100%;
}

.cine-copy h2 {
  font-size: clamp(2.25rem, 5.6vw, 4.25rem);
  line-height: 1.04;
  letter-spacing: -0.035em;
  font-weight: 700;
  margin: 0 0 20px;
  max-width: 13em;
}

.cine-body {
  font-size: clamp(1.0625rem, 2vw, 1.3125rem);
  color: #c9c9ce;
  max-width: 560px;
  margin: 0;
}

.cine-morning .cine-scrim {
  background:
    linear-gradient(to top, rgba(0, 0, 0, 0.88) 6%, rgba(0, 0, 0, 0.12) 48%, rgba(0, 0, 0, 0.42) 100%),
    linear-gradient(to right, rgba(0, 0, 0, 0.38), transparent 55%);
}

/* ---------- the rise (signature) ---------- */

/* Three viewport-heights of scroll spent on the product's one idea. The pin
   holds the frame; scrubbing drives the sort. CSS paints the sorted end
   state, so no JS and reduced motion both land on the conclusion. */

.rise { height: 320vh; position: relative; --row: 92px; }

.rise-pin {
  position: sticky;
  top: 0;
  height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.rise-grid {
  max-width: 1064px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 56px;
  align-items: center;
}

.rise-copy h2 {
  font-size: clamp(2.375rem, 5.6vw, 4.5rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  font-weight: 700;
  margin: 0 0 20px;
}

.rise-copy p { color: var(--body); font-size: 1.125rem; max-width: 26em; margin: 0; }

.rise-note {
  margin-top: 26px !important;
  font-size: 0.8125rem !important;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray) !important;
}

.rise-stage { position: relative; height: 446px; }

.stack { position: relative; height: 100%; max-width: 470px; margin-left: auto; }

.card {
  position: absolute;
  left: 0;
  right: 0;
  height: 78px;
  padding: 15px 20px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035));
  border: 1px solid var(--hairline);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.55);
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  column-gap: 12px;
  align-items: center;
  will-change: transform;
}

/* No-JS / reduced-motion default: the sorted end state. */
.card[data-slot='0'] { transform: translateY(calc(var(--row) * 1)); }
.card[data-slot='1'] { transform: translateY(calc(var(--row) * 2)); }
.card[data-slot='2'] { transform: translateY(calc(var(--row) * 3)); }
.card[data-slot='3'] { transform: translateY(calc(var(--row) * 4)); }
.card[data-slot='4'] { transform: translateY(0); }

.card-title {
  font-size: 0.96875rem;
  font-weight: 600;
  color: var(--white);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.card-meta { grid-row: 2; font-size: 0.8125rem; color: var(--gray); }

.chip {
  grid-row: 1 / span 2;
  grid-column: 2;
  font-size: 0.78125rem;
  font-weight: 600;
  color: var(--gray);
  background: rgba(255, 255, 255, 0.07);
  border-radius: var(--r-pill);
  padding: 6px 12px;
  white-space: nowrap;
}

.card-ember {
  background: linear-gradient(180deg, rgba(255, 157, 46, 0.16), rgba(255, 107, 26, 0.07));
  border-color: rgba(255, 157, 46, 0.4);
  z-index: 5;
}

/* The heat. JS ramps --glow as the card climbs; without JS it burns full. */
.card-ember::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.6), 0 0 54px rgba(255, 130, 26, 0.3);
  opacity: var(--glow, 1);
  pointer-events: none;
}

.chip-ember { background: rgba(255, 157, 46, 0.18); color: var(--ember-soft); }

/* ---------- flow strip ---------- */

.flow { padding: 140px 24px; }

.flow-row {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 1000px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  flex-wrap: wrap;
  text-align: center;
}

.flow-row li { display: grid; gap: 4px; position: relative; }
.flow-k { font-size: 1.1875rem; font-weight: 650; letter-spacing: -0.02em; }
.flow-s { font-size: 0.875rem; color: var(--gray); }

/* The arrows are punctuation between steps, so they are drawn rather than
   listed — a screen reader counts three steps, not five. */
.flow-row li + li::before {
  content: '→';
  position: absolute;
  left: -22px;
  top: 2px;
  color: var(--ember);
  font-size: 1.25rem;
  line-height: 1.2;
}

/* ---------- bento ---------- */

.bento-wrap { max-width: 1120px; margin: 0 auto; padding: 40px 24px 60px; }

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

.tile {
  border-radius: var(--r);
  background: linear-gradient(180deg, var(--panel-2), var(--panel));
  border: 1px solid var(--hairline);
  padding: 40px;
  overflow: hidden;
  position: relative;
}

.tile h3 {
  font-size: clamp(1.375rem, 2.6vw, 1.875rem);
  line-height: 1.1;
  letter-spacing: -0.025em;
  font-weight: 700;
  margin: 0 0 12px;
}
.tile > p { color: var(--body); font-size: 1rem; margin: 0; max-width: 34em; }

.tile-learn { grid-column: span 7; }
.tile-mail { grid-column: span 5; }
.tile-review { grid-column: span 5; }
.tile-stat {
  grid-column: span 7;
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 6px;
}

/* mini illustrations */

.mini { margin-top: 30px; }

.mini-mail, .mini-proj, .acct, .acct-one, .rev-card {
  border-radius: 14px;
  border: 1px solid var(--hairline);
  background: rgba(255, 255, 255, 0.045);
  font-size: 0.84375rem;
}

.mini-mail {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 11px 14px;
  color: #d6d6da;
  max-width: 330px;
}
.mini-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--ember); flex: none; }
.mini-tag {
  margin-left: auto;
  font-size: 0.6875rem;
  color: var(--gray);
  border: 1px solid var(--hairline);
  border-radius: var(--r-pill);
  padding: 2px 8px;
}

.mini-path {
  width: 1px;
  height: 26px;
  margin: 4px 0 4px 26px;
  background: linear-gradient(to bottom, var(--ember), rgba(255, 157, 46, 0.15));
}

.mini-proj {
  padding: 11px 14px;
  color: var(--white);
  font-weight: 600;
  max-width: 250px;
  border-color: rgba(255, 157, 46, 0.35);
  background: rgba(255, 157, 46, 0.08);
}

.mini-caption { font-size: 0.78125rem; color: var(--gray); margin: 12px 0 0; }

.mini-accounts { display: grid; gap: 8px; justify-items: start; }
.acct { padding: 9px 13px; color: #d6d6da; font-family: var(--mono); font-size: 0.75rem; }
.acct-join { color: var(--ember); font-size: 1rem; margin-left: 18px; }
.acct-one {
  padding: 11px 16px;
  font-weight: 600;
  color: var(--white);
  border-color: rgba(255, 157, 46, 0.35);
  background: rgba(255, 157, 46, 0.08);
}

.rev-card { padding: 16px 18px; max-width: 360px; display: grid; gap: 6px; }
.rev-q { font-size: 0.90625rem; color: var(--white); font-weight: 500; }
.rev-src { font-size: 0.78125rem; color: var(--gray); }
.rev-actions { display: flex; gap: 10px; margin-top: 10px; }
.rev-accept, .rev-dismiss {
  font-size: 0.78125rem;
  font-weight: 600;
  border-radius: var(--r-pill);
  padding: 7px 16px;
}
.rev-accept { background: var(--white); color: #111; }
.rev-dismiss { border: 1px solid var(--hairline); color: var(--body); }

.stat-n {
  font-size: clamp(6rem, 12vw, 10.5rem);
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1;
  margin: 0;
}
.stat-l { color: var(--body); font-size: 1rem; max-width: 30em; margin: 0; }

/* ---------- reply / composer ---------- */

.reply { padding: 140px 24px; }

.reply-grid {
  max-width: 1064px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: 64px;
  align-items: center;
}

.reply-copy h2 {
  font-size: clamp(2.25rem, 5vw, 3.875rem);
  line-height: 1.04;
  letter-spacing: -0.035em;
  font-weight: 700;
  margin: 0 0 20px;
}
.reply-copy p { color: var(--body); font-size: 1.125rem; margin: 0; max-width: 30em; }

.composer {
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  border: 1px solid var(--hairline);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6), 0 0 60px rgba(255, 130, 26, 0.07);
  padding: 18px 24px 22px;
}

.composer-bar { display: flex; gap: 7px; padding: 4px 0 14px; }
.composer-bar i {
  width: 11px; height: 11px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
}

.composer-field {
  font-size: 0.875rem;
  color: var(--white);
  padding: 11px 2px;
  border-bottom: 1px solid var(--hairline);
}
.composer-field span { color: var(--gray); margin-right: 14px; font-size: 0.8125rem; }

.composer-body {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: #d6d6da;
  padding: 18px 2px 22px;
}

.composer-actions { display: flex; align-items: center; gap: 18px; }
.composer-draft { font-size: 0.84375rem; color: var(--gray); }

/* ---------- pricing ---------- */

.price {
  position: relative;
  text-align: center;
  padding: 150px 24px;
  overflow: hidden;
}

.price-glow {
  position: absolute;
  left: 50%;
  top: 46%;
  width: 900px;
  height: 900px;
  transform: translate(-50%, -50%);
  background: radial-gradient(closest-side, rgba(255, 130, 26, 0.13), transparent 70%);
  pointer-events: none;
}

.price h2 {
  font-size: clamp(2.375rem, 5.6vw, 4.5rem);
  letter-spacing: -0.04em;
  font-weight: 700;
  line-height: 1.02;
  margin: 0 0 10px;
}

.price-n {
  font-size: clamp(4.625rem, 11vw, 8.25rem);
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1.05;
  margin: 10px 0 26px;
}
.price-mo { font-size: 0.28em; font-weight: 500; color: var(--gray); letter-spacing: -0.02em; }

.price-list {
  list-style: none;
  margin: 0 auto 40px;
  padding: 0;
  display: grid;
  gap: 11px;
}
.price-list li { color: #d6d6da; font-size: 1.0625rem; }

.price .fine { margin: 22px 0 0; }

/* ---------- footer ---------- */

.foot {
  border-top: 1px solid var(--hairline);
  padding: 44px 24px calc(60px + env(safe-area-inset-bottom, 0px));
  text-align: center;
  color: var(--gray);
  font-size: 0.8125rem;
}
.foot-brand { font-size: 0.9375rem; font-weight: 700; color: var(--gray); margin: 0 0 8px; }
.foot p { margin: 0 0 6px; }
.foot strong { color: var(--body); font-weight: 500; }
.foot nav { margin-top: 10px; }
.foot a { padding: 8px 2px; }
.foot a:hover { color: var(--white); }

/* ---------- long-form pages (privacy / terms) ---------- */

.prose {
  max-width: 680px;
  margin: 0 auto;
  padding: calc(var(--nav-h) + 48px) 24px 88px;
}
.prose h1 { font-size: 2.375rem; letter-spacing: -0.03em; margin: 40px 0 4px; }
.prose h2 { font-size: 1.1875rem; letter-spacing: -0.015em; margin: 40px 0 10px; }
.prose p, .prose li { color: var(--body); }
.prose .meta { color: var(--gray); font-size: 0.875rem; margin: 0 0 32px; }
.prose ul { padding-left: 20px; }
.prose li { padding: 3px 0; }
.prose strong { color: var(--white); }
.prose a { color: var(--ember); }

.callout {
  background: var(--panel-2);
  border: 1px solid var(--hairline);
  border-radius: 16px;
  padding: 18px 20px;
  margin: 20px 0;
}

/* The contact address, set large enough to read off a screen and select by hand. */
.mailto {
  margin: 26px 0 8px;
  font-size: clamp(1.375rem, 3vw, 1.875rem);
  font-weight: 600;
  letter-spacing: -0.025em;
}
.mailto a { color: var(--ember); }
.mailto a:hover { text-decoration: underline; text-underline-offset: 5px; }

/* ---------- page not found ---------- */

.lost {
  min-height: 100svh;
  display: grid;
  place-content: center;
  justify-items: center;
  text-align: center;
  gap: 6px;
  padding: calc(var(--nav-h) + 40px) 24px 80px;
  max-width: 640px;
  margin: 0 auto;
}

.lost h1 {
  font-size: clamp(2.25rem, 6vw, 3.75rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
  font-weight: 700;
  margin: 0 0 14px;
}

.lost-text { color: var(--body); margin: 0 0 32px; }

.prose table { width: 100%; border-collapse: collapse; margin: 16px 0; }
.prose td { padding: 9px 0; color: var(--body); font-size: 0.9375rem; vertical-align: top; }
.prose td:first-child { width: 42%; color: var(--white); }

/* ---------- responsive ---------- */

@media (max-width: 1068px) {
  .rise-grid { gap: 36px; }
  .tile-learn, .tile-mail, .tile-review, .tile-stat { grid-column: span 6; }
}

@media (max-width: 734px) {
  .hero { padding-top: calc(var(--nav-h) + env(safe-area-inset-top, 0px) + 56px); }
  .hero-media { margin-top: 0; }
  .hero-media img { max-height: 64vh; }

  .cine { min-height: 86svh; }
  .cine-copy { padding-bottom: 72px; }

  .rise { height: 260vh; --row: 76px; }
  .rise-grid { grid-template-columns: 1fr; gap: 30px; align-content: center; }
  .rise-copy p { font-size: 1rem; }
  .rise-note { display: none; }
  .rise-stage { height: 370px; }
  .stack { margin: 0 auto; max-width: 430px; }
  .card { height: 64px; padding: 10px 14px; border-radius: 15px; }
  .card-title { font-size: 0.84375rem; }
  .card-meta { font-size: 0.71875rem; }
  .chip { font-size: 0.6875rem; padding: 5px 9px; }

  .flow { padding: 90px 24px; }
  .flow-row { flex-direction: column; gap: 30px; }
  .flow-row li + li::before {
    content: '↓';
    left: 50%;
    top: -24px;
    transform: translateX(-50%);
  }

  .tile-learn, .tile-mail, .tile-review, .tile-stat { grid-column: span 12; }
  .tile { padding: 28px; }

  .reply { padding: 90px 24px; }
  .reply-grid { grid-template-columns: 1fr; gap: 44px; }

  .price { padding: 100px 24px; }
}

/* ---------- reduced motion ---------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .io, .io.in {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .btn { transition: none; }
  .hero-media img, .cine-img { transform: none !important; }
  /* The rise plays as a still: cards sit in their sorted end state. */
  .rise { height: auto; padding: 110px 0; }
  .rise-pin { position: static; height: auto; }
}
