/* astutetheapp.com — the landing page, section by section. What every
   page shares is in site.css; this is the rest: the first screen and its
   phone, today's question, the day's row, the two cream sheets, the cards
   that flip, the subjects, the screens, the widgets, friends, the plans,
   the questions and the last word. Every state the script switches is on
   an attribute, not an inline style, so the page reads the same without
   it. */

/* ── Shared shapes ──────────────────────────────────────────────────── */

.wrap { max-width: var(--wrap); margin: 0 auto; padding-inline: var(--gutter); }
.section { position: relative; padding-block: clamp(88px, 10vw, 150px); }
/* Where a glow or a marquee runs past the edge, the section keeps it: a
   phone's browser would otherwise widen the page to fit. */
#subjects, #widgets, #pricing { overflow: hidden; }
.section.tight { padding-top: clamp(64px, 7vw, 96px); }
[id] { scroll-margin-top: 88px; }
/* A hairline that fades at both ends, between two dark sections. */
.ruled::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(var(--wrap), calc(100% - 2 * var(--gutter)));
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(242, 241, 236, .16) 18%, rgba(242, 241, 236, .16) 82%, transparent);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 20px;
  font: 700 11px/1 var(--font-text);
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--cream-60);
}
.eyebrow::before { content: ""; width: 20px; height: 1px; background: currentColor; opacity: .7; flex: none; }
.eyebrow.center { justify-content: center; }
.eyebrow.center::before { display: none; }
.h2 {
  margin: 0 0 20px;
  font: 500 clamp(36px, 4.8vw, 64px)/1.02 var(--font-display);
  letter-spacing: -.025em;
  font-variation-settings: 'opsz' 144;
  text-wrap: balance;
}
.lede { margin: 0; max-width: 560px; font: 400 clamp(17px, 1.5vw, 20px)/1.55 var(--font-text); color: var(--cream-70); text-wrap: pretty; }
.sub { margin: 12px 0 0; max-width: 560px; font: 400 16px/1.6 var(--font-text); color: var(--cream-50); text-wrap: pretty; }
.center { text-align: center; }
.center .lede, .center .sub { margin-inline: auto; }
.rel { position: relative; }
.narrow { max-width: 720px; }
.wrap.w-800 { max-width: 800px; }
.tag-row { display: flex; justify-content: center; margin: 40px 0 20px; }
.conf-block { margin-top: 36px; }

/* A cream sheet laid on the night paper. */
.sheet {
  background: var(--cream);
  color: var(--night);
  border-radius: clamp(28px, 4vw, 48px);
  margin-inline: clamp(8px, 1.6vw, 24px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .6), 0 40px 90px -50px rgba(0, 0, 0, .9);
}
.sheet ::selection { background: var(--night); color: var(--cream); }
.sheet .eyebrow { color: var(--ink-60); }
.sheet .lede { color: var(--ink-70); }
.sheet .sub { color: var(--ink-60); }

/* The three lights. Painted as gradients rather than blurred boxes, so
   they cost the page nothing while they drift. */
.lights { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.light { position: absolute; width: min(80vw, 960px); aspect-ratio: 1; border-radius: 50%; }
.light.y { left: -22%; top: -34%; background: radial-gradient(closest-side, rgba(255, 225, 77, .30), rgba(255, 225, 77, 0) 72%); animation: drift1 11s ease-in-out infinite alternate; }
.light.t { right: -22%; top: -6%; background: radial-gradient(closest-side, rgba(45, 224, 210, .24), rgba(45, 224, 210, 0) 72%); animation: drift2 13s ease-in-out infinite alternate; }
.light.v { left: 22%; bottom: -48%; background: radial-gradient(closest-side, rgba(139, 108, 255, .36), rgba(139, 108, 255, 0) 72%); animation: drift3 12s ease-in-out infinite alternate; }
@keyframes drift1 { from { transform: translate(0, 0) scale(1); } to { transform: translate(70px, 50px) scale(1.1); } }
@keyframes drift2 { from { transform: translate(0, 0) scale(1.05); } to { transform: translate(-60px, 40px) scale(.95); } }
@keyframes drift3 { from { transform: translate(0, 0) scale(1); } to { transform: translate(40px, -60px) scale(1.12); } }
.lights-fade { -webkit-mask-image: linear-gradient(180deg, #000 60%, transparent); mask-image: linear-gradient(180deg, #000 60%, transparent); }
.lights-soft { -webkit-mask-image: linear-gradient(180deg, transparent, #000 22%, #000 78%, transparent); mask-image: linear-gradient(180deg, transparent, #000 22%, #000 78%, transparent); }
.lights-top { -webkit-mask-image: linear-gradient(180deg, transparent, #000 26%); mask-image: linear-gradient(180deg, transparent, #000 26%); }
/* Fine dots, like a sheet of technical paper, fading out from the middle. */
.dots {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(242, 241, 236, .18) 1px, transparent 1.4px);
  background-size: 28px 28px;
  -webkit-mask-image: radial-gradient(55% 60% at 50% 45%, #000, transparent 75%);
  mask-image: radial-gradient(55% 60% at 50% 45%, #000, transparent 75%);
  opacity: .5;
}

/* A card's paper: a little light from the top left, a little shade below. */
.paper {
  background-image: linear-gradient(160deg, rgba(255, 255, 255, .16), rgba(255, 255, 255, 0) 48%), radial-gradient(120% 90% at 100% 100%, rgba(0, 0, 0, .08), transparent 60%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .28), 0 30px 60px -30px rgba(0, 0, 0, .7);
}
.topic { display: flex; align-items: center; gap: 6px; margin: 0; font: 700 10px/1 var(--font-text); letter-spacing: .14em; text-transform: uppercase; opacity: .8; }
.topic::before { content: ""; width: 10px; height: 10px; border: 1.5px solid currentColor; border-radius: 50%; flex: none; }
.topic.lg { font-size: 11px; opacity: .85; }
.topic.lg::before { width: 11px; height: 11px; }

/* Things come into view as they are reached: they rise, and sharpen. */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  filter: blur(6px);
  transition: opacity .9s var(--ease), transform .9s var(--ease), filter .9s var(--ease), translate .35s var(--ease), border-color .25s ease, box-shadow .35s var(--ease);
  transition-delay: var(--d, 0ms), var(--d, 0ms), var(--d, 0ms), 0ms, 0ms, 0ms;
}
.js [data-reveal][data-flip], .js [data-reveal].no-blur { filter: none; }
.js [data-reveal].in { opacity: 1; transform: none; filter: none; }
.js .rise-in { animation: rise .9s var(--ease) both; animation-delay: var(--d, 0ms); }
@keyframes rise { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }

/* A light that follows the pointer across a card. */
[data-spot] { position: relative; }
[data-spot]::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  transition: opacity .4s ease;
  background: radial-gradient(420px circle at var(--mx, 50%) var(--my, 50%), rgba(242, 241, 236, .09), transparent 45%);
}
@media (hover: hover) and (pointer: fine) { [data-spot]:hover::after { opacity: 1; } }
/* A card that turns a little towards the pointer. */
[data-tilt] { transform: perspective(1200px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)); transition: transform .3s ease; }

.lift { transition: translate .35s var(--ease), border-color .25s ease, box-shadow .35s var(--ease); }
@media (hover: hover) {
  .lift:hover { translate: 0 -5px; border-color: rgba(242, 241, 236, .2); }
  .chip:hover { translate: 0 -3px; filter: brightness(1.06); }
}
.chip { transition: translate .25s ease, filter .25s ease; }

/* ── The first screen ───────────────────────────────────────────────── */

.hero {
  position: relative;
  overflow: hidden;
  background: radial-gradient(120% 80% at 50% 0%, #1c1c21 0%, var(--night) 50%, var(--night-deep) 100%);
  padding-top: calc(var(--nav-h) + 12px);
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 440px), 1fr));
  gap: 40px;
  align-items: center;
  padding-top: clamp(40px, 6vw, 84px);
  padding-bottom: clamp(88px, 10vw, 136px);
}
.hero-copy { max-width: 580px; }
@media (max-width: 767px) { .hero-grid { padding-bottom: 56px; } }
.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 32px;
  padding: 0 14px 0 11px;
  margin: 0 0 26px;
  border-radius: 16px;
  border: 1px solid rgba(242, 241, 236, .14);
  background: rgba(242, 241, 236, .05);
  font: 600 12.5px/1 var(--font-text);
  color: var(--cream-70);
  letter-spacing: .01em;
  white-space: nowrap;
}
.hero-title {
  margin: 0 0 24px;
  font: 500 clamp(46px, 6.2vw, 90px)/.98 var(--font-display);
  letter-spacing: -.03em;
  font-variation-settings: 'opsz' 144;
  text-wrap: balance;
}
.hero-lede { margin: 0 0 32px; max-width: 520px; font: 400 clamp(17px, 1.5vw, 20px)/1.55 var(--font-text); color: var(--cream-70); text-wrap: pretty; }
/* The headline, word by word. */
.w { display: inline-block; overflow: hidden; vertical-align: top; padding: 0 .02em .14em; margin: 0 -.02em -.14em; }
.w > span { display: inline-block; }
.js .w > span { animation: word-in 1s var(--ease-out) both; animation-delay: calc(var(--i, 0) * 70ms + 80ms); }
@keyframes word-in { from { transform: translateY(110%); } to { transform: none; } }
.shimmer {
  background: linear-gradient(95deg, var(--yellow) 0%, var(--teal) 55%, var(--violet) 100%);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  animation: shimmer 7s ease-in-out infinite alternate;
}
.js .w > .shimmer { animation: word-in 1s var(--ease-out) both, shimmer 7s ease-in-out 1.2s infinite alternate; animation-delay: calc(var(--i, 0) * 70ms + 80ms), 1.2s; }
@keyframes shimmer { from { background-position: 0% 50%; } to { background-position: 100% 50%; } }
/* Four facts under the badges, each a number in the serif. */
.facts { list-style: none; margin: 34px 0 0; padding: 24px 0 0; border-top: 1px solid var(--hairline); display: flex; flex-wrap: wrap; gap: 14px 30px; }
.facts li { display: flex; align-items: baseline; gap: 8px; font: 500 13px/1.2 var(--font-text); color: var(--cream-60); }
.facts b { font: 500 28px/1 var(--font-display); font-variation-settings: 'opsz' 144; letter-spacing: -.02em; color: var(--cream); font-variant-numeric: tabular-nums; }
@media (max-width: 480px) { .facts { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 12px; } }

.hero-stage { position: relative; width: min(100%, 560px); height: 680px; margin: 0 auto; justify-self: center; }
.hero-glow {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 560px;
  height: 560px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(43, 92, 255, .42), rgba(43, 92, 255, 0));
  pointer-events: none;
}
.fan { position: absolute; inset: 0; }
.fan-slot { position: absolute; left: 50%; top: 70px; width: 180px; height: 236px; margin-left: -90px; z-index: 1; }
.fan-slot.s1 { transform: translate(-235px, 110px) rotate(-18deg); animation: fan1 1.1s var(--ease-out) .35s both; }
.fan-slot.s2 { transform: translate(-150px, 26px) rotate(-7deg); animation: fan2 1.1s var(--ease-out) .2s both; }
.fan-slot.s3 { transform: translate(150px, 26px) rotate(7deg); animation: fan3 1.1s var(--ease-out) .2s both; }
.fan-slot.s4 { transform: translate(235px, 110px) rotate(18deg); animation: fan4 1.1s var(--ease-out) .35s both; }
@keyframes fan1 { from { opacity: 0; transform: translate(0, 0) rotate(0deg) scale(.94); } to { opacity: 1; transform: translate(-235px, 110px) rotate(-18deg); } }
@keyframes fan2 { from { opacity: 0; transform: translate(0, 0) rotate(0deg) scale(.94); } to { opacity: 1; transform: translate(-150px, 26px) rotate(-7deg); } }
@keyframes fan3 { from { opacity: 0; transform: translate(0, 0) rotate(0deg) scale(.94); } to { opacity: 1; transform: translate(150px, 26px) rotate(7deg); } }
@keyframes fan4 { from { opacity: 0; transform: translate(0, 0) rotate(0deg) scale(.94); } to { opacity: 1; transform: translate(235px, 110px) rotate(18deg); } }
.fan-card {
  width: 100%;
  height: 100%;
  border-radius: 28px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  color: #10100C;
  animation: bob var(--bob, 7s) ease-in-out var(--bd, 0s) infinite;
}
@keyframes bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }
.fan-card .q { margin: auto 0 0; font: 600 19px/1.12 var(--font-display); letter-spacing: -.015em; font-variation-settings: 'opsz' 144; }

/* The phone: a frame that scales with --w, the screen inside it. */
.device {
  --w: 290px;
  position: relative;
  width: var(--w);
  height: calc(var(--w) * 2.0862);
  border-radius: calc(var(--w) * .138);
  background: linear-gradient(160deg, #e4e1da 0%, #a9a69f 30%, #d8d5ce 55%, #8c8983 80%, #cfccc5 100%);
  box-shadow: 0 60px 100px -40px rgba(0, 0, 0, .75), 0 0 0 1px rgba(0, 0, 0, .55), inset 0 0 0 1px rgba(255, 255, 255, .32);
}
.device::before { content: ""; position: absolute; inset: 2px; border-radius: calc(var(--w) * .131); background: #0a0a0b; }
.device .screen { position: absolute; left: 3.8%; top: 1.82%; width: 92.4%; height: 96.36%; border-radius: calc(var(--w) * .1); object-fit: cover; display: block; }
.device .island { position: absolute; top: 3%; left: 50%; width: 29%; height: 4.1%; transform: translateX(-50%); border-radius: 999px; background: #000; }
.device .glare {
  position: absolute;
  inset: 2px;
  border-radius: calc(var(--w) * .131);
  background: linear-gradient(112deg, rgba(255, 255, 255, .13) 0%, rgba(255, 255, 255, .04) 26%, transparent 44%);
  pointer-events: none;
}
.device .side { position: absolute; width: 3px; border-radius: 2px; background: #b9b6af; }
.device .side.r { right: -2px; top: 28.4%; height: 14.5%; }
.device .side.l1 { left: -2px; top: 19.5%; height: 5%; }
.device .side.l2 { left: -2px; top: 28.1%; height: 9.6%; }
.device .side.l3 { left: -2px; top: 39.7%; height: 9.6%; }

.hero-device { position: absolute; left: 50%; top: 24px; margin-left: -145px; z-index: 2; animation: rise 1s var(--ease) both; }
.float { animation: float 6.5s ease-in-out 1.2s infinite; }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
#hero-phone { transform: perspective(1400px) rotateY(calc(9deg + var(--ry, 0deg))) rotateX(calc(2deg + var(--rx, 0deg))); will-change: transform; }
[data-phone] { cursor: pointer; }
[data-phone] .phone-back { opacity: 0; transform: scale(.985); transition: opacity .55s var(--ease), transform .55s var(--ease); }
[data-phone][aria-pressed="true"] .phone-back { opacity: 1; transform: none; }
.phone-hint {
  position: absolute;
  left: 50%;
  bottom: -50px;
  z-index: 3;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 34px;
  padding: 0 14px;
  border-radius: 17px;
  background: rgba(20, 20, 22, .72);
  border: 1px solid rgba(242, 241, 236, .14);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  font: 600 13px/1 var(--font-text);
  color: var(--cream);
  white-space: nowrap;
  pointer-events: none;
  transition: opacity .4s ease;
}
.phone-hint i { width: 7px; height: 7px; border-radius: 50%; background: var(--teal); animation: live 2s ease-out infinite; }
.phone-hint.gone { opacity: 0; }
.live-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--teal); animation: live 2s ease-out infinite; flex: none; }
@keyframes live { 0% { box-shadow: 0 0 0 0 rgba(45, 224, 210, .55); } 100% { box-shadow: 0 0 0 10px rgba(45, 224, 210, 0); } }

/* A nudge to keep going, until the page has moved. */
.scroll-cue {
  position: absolute;
  left: var(--gutter);
  top: min(calc(100svh - 64px), calc(100% - 56px));
  display: flex;
  align-items: center;
  gap: 14px;
  font: 700 11px/1 var(--font-text);
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--cream-50);
  text-decoration: none;
  transition: opacity .5s ease, color .2s ease;
}
.scroll-cue:hover { color: var(--cream-70); }
.scroll-cue i { position: relative; width: 1px; height: 44px; background: rgba(242, 241, 236, .16); overflow: hidden; }
.scroll-cue i::after { content: ""; position: absolute; left: 0; top: -50%; width: 100%; height: 50%; background: var(--cream); animation: cue 2.2s ease-in-out infinite; }
@keyframes cue { to { top: 100%; } }
.scroll-cue.gone { opacity: 0; pointer-events: none; }
@media (max-width: 1023px), (max-height: 820px) { .scroll-cue { display: none; } }

/* ── Today's question, live from the widget's own file ──────────────── */

.today { padding: clamp(56px, 7vw, 96px) var(--gutter) 0; }
.today-wrap { position: relative; max-width: 860px; margin: 0 auto; }
.today-wrap::before {
  content: "";
  position: absolute;
  left: 0;
  top: 30%;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: radial-gradient(closest-side, var(--bg, #2B5CFF), transparent 70%);
  opacity: .28;
  pointer-events: none;
}
.today-when {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 22px;
  font: 700 11px/1.4 var(--font-text);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--cream-60);
  text-align: center;
}
.today-when .sep { opacity: .5; }
.today-when #today-next { color: var(--cream-50); font-variant-numeric: tabular-nums; }
.today-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 22px;
  min-height: clamp(280px, 30vw, 360px);
  padding: clamp(24px, 3.4vw, 40px);
  border-radius: 32px;
  background-color: var(--bg, #F2F1EC);
  color: var(--ink, #10100C);
  text-decoration: none;
  box-shadow: 0 50px 90px -45px rgba(0, 0, 0, .8), inset 0 1px 0 rgba(255, 255, 255, .22);
}
.today-card:hover, .today-card:focus-visible { color: var(--ink, #10100C); }
.today-q { display: block; margin: auto 0 0; font: 500 clamp(28px, 3.8vw, 50px)/1.08 var(--font-display); letter-spacing: -.025em; font-variation-settings: 'opsz' 144; text-wrap: balance; }
.today-foot { display: flex; justify-content: space-between; align-items: center; gap: 16px; margin: 0; font: 600 15px/1.2 var(--font-text); }
.today-foot .go { display: inline-flex; align-items: center; gap: 8px; }
.today-foot .go b { font-weight: 600; transition: translate .25s ease; }
.today-card:hover .go b { translate: 4px 0; }
.today-foot .ed { opacity: .6; font-weight: 500; font-variant-numeric: tabular-nums; }
.today-note { margin: 20px 0 0; text-align: center; font: 400 15px/1.5 var(--font-text); color: var(--cream-50); }

/* ── The day's row ──────────────────────────────────────────────────── */

.row-head { position: relative; }
.row-nav { position: absolute; right: var(--gutter); bottom: 0; display: flex; gap: 8px; }
.row-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: none;
  border: 1px solid rgba(242, 241, 236, .22);
  color: var(--cream);
  cursor: pointer;
  transition: background .2s ease, opacity .2s ease, border-color .2s ease;
}
.row-btn:hover:not(:disabled) { background: rgba(242, 241, 236, .08); border-color: rgba(242, 241, 236, .4); }
.row-btn:disabled { opacity: .3; cursor: default; }
.row-btn svg { width: 18px; height: 18px; }
.row {
  --row-pad: max(var(--gutter), calc((100vw - var(--wrap)) / 2 + var(--gutter)));
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 40px var(--row-pad) 24px;
  scroll-padding-left: var(--row-pad);
  scrollbar-width: none;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 var(--fl, 0px), #000 calc(100% - var(--fr, 56px)), transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 var(--fl, 0px), #000 calc(100% - var(--fr, 56px)), transparent 100%);
}
@media (hover: hover) and (pointer: fine) { .row { cursor: grab; } .row.dragging { cursor: grabbing; scroll-snap-type: none !important; user-select: none; } }
.row-dots { display: flex; justify-content: center; gap: 6px; height: 6px; }
.row-dots i { width: 6px; height: 6px; border-radius: 3px; background: rgba(242, 241, 236, .2); transition: width .3s var(--ease), background .3s ease; }
.row-dots i.on { width: 22px; background: var(--cream); }

.step {
  position: relative;
  flex: 0 0 min(78vw, 280px);
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  min-height: 480px;
  padding: 26px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(242, 241, 236, .065), rgba(242, 241, 236, .03));
  border: 1px solid rgba(242, 241, 236, .09);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .06);
  overflow: hidden;
}
.step-num {
  position: absolute;
  right: 18px;
  top: 4px;
  font: 500 92px/1 var(--font-display);
  font-variation-settings: 'opsz' 144;
  letter-spacing: -.05em;
  color: rgba(242, 241, 236, .07);
  pointer-events: none;
  user-select: none;
}
.step .k { margin: 0 0 16px; font: 700 11px/1 var(--font-text); letter-spacing: .14em; text-transform: uppercase; color: var(--cream-50); }
.step h3 { margin: 0 0 10px; font: 500 25px/1.1 var(--font-display); letter-spacing: -.015em; font-variation-settings: 'opsz' 144; }
.step p { margin: 0 0 22px; font: 400 15px/1.5 var(--font-text); color: var(--cream-60); }
.step-art { margin-top: auto; }
.mini-card { border-radius: 18px; padding: 16px; height: 168px; display: flex; flex-direction: column; color: #fff; background-color: #2B5CFF; }
.mini-card .q { margin: auto 0 0; font: 600 18px/1.12 var(--font-display); letter-spacing: -.015em; font-variation-settings: 'opsz' 144; }
.mini-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; height: 168px; }
.mini-grid div { border-radius: 14px; padding: 12px; display: flex; align-items: flex-end; font: 700 10px/1 var(--font-text); letter-spacing: .12em; text-transform: uppercase; box-shadow: inset 0 1px 0 rgba(255, 255, 255, .25); }
.mini-conf { height: 168px; display: flex; flex-direction: column; justify-content: flex-end; gap: 14px; }
.mini-conf .k { margin: 0; }
.mini-conf div { display: flex; gap: 6px; }
.mini-conf span { flex: 1; height: 40px; border-radius: 20px; display: grid; place-items: center; background: rgba(242, 241, 236, .08); font: 600 13px/1 var(--font-text); }
.mini-conf span.on { background: var(--cream); color: var(--night); }
.peek { margin: auto -26px -26px; height: 214px; position: relative; overflow: hidden; }
.peek .device { position: absolute; left: 50%; top: 0; transform: translateX(-50%); }
.peek::after { content: ""; position: absolute; inset: auto 0 0; height: 60px; background: linear-gradient(180deg, transparent, rgba(20, 20, 22, .55)); pointer-events: none; }

/* ── Calibration ────────────────────────────────────────────────────── */

.calib { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 400px), 1fr)); gap: clamp(40px, 6vw, 88px); align-items: center; }
.sheet .k { font: 700 11px/1 var(--font-text); letter-spacing: .14em; text-transform: uppercase; color: var(--ink-60); margin: 0 0 8px; }
#conf-track { position: relative; height: 48px; margin: 0 14px; touch-action: none; cursor: pointer; }
.conf-rail { position: absolute; left: 0; right: 0; top: 22px; height: 4px; border-radius: 2px; background: rgba(20, 20, 22, .12); }
#conf-fill { position: absolute; left: 0; top: 22px; height: 4px; border-radius: 2px; background: var(--night); width: 50%; transition: width .18s var(--ease); }
.conf-tick { position: absolute; top: 20px; width: 8px; height: 8px; margin-left: -4px; border-radius: 50%; background: rgba(20, 20, 22, .25); }
#conf-thumb {
  position: absolute;
  top: 10px;
  left: 50%;
  width: 28px;
  height: 28px;
  margin-left: -14px;
  border-radius: 50%;
  background: var(--night);
  box-shadow: 0 0 0 4px var(--cream), 0 8px 18px rgba(0, 0, 0, .25);
  transition: left .18s var(--ease);
  cursor: grab;
}
#conf-thumb.hint::after { content: ""; position: absolute; inset: -4px; border-radius: 50%; border: 2px solid rgba(20, 20, 22, .45); animation: nudge 1.9s ease-out infinite; }
@keyframes nudge { 0% { transform: scale(.9); opacity: .9; } 100% { transform: scale(1.9); opacity: 0; } }
.conf-steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 6px; margin-top: 8px; }
.conf-steps button {
  height: 44px;
  border-radius: 22px;
  border: 0;
  cursor: pointer;
  font: 600 15px/1 var(--font-text);
  background: rgba(20, 20, 22, .06);
  color: var(--night);
  transition: background .2s ease, color .2s ease, transform .15s ease;
}
.conf-steps button:hover { background: rgba(20, 20, 22, .1); }
.conf-steps button[aria-pressed="true"] { background: var(--night); color: var(--cream); }
.readout { margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--ink-hairline); }
#read-said { margin: 0 0 8px; font: 500 clamp(24px, 2.4vw, 30px)/1.15 var(--font-display); letter-spacing: -.02em; font-variation-settings: 'opsz' 144; }
#read-rest { margin: 0 0 18px; font: 400 17px/1.5 var(--font-text); color: var(--ink-70); }
.gap-meter { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 12px; font: 600 11px/1 var(--font-text); letter-spacing: .12em; text-transform: uppercase; color: var(--ink-60); }
.gap-track { position: relative; height: 6px; border-radius: 3px; background: rgba(20, 20, 22, .1); overflow: hidden; }
.gap-fill { position: absolute; left: 0; top: 0; height: 100%; width: calc(var(--g, 7) / 20 * 100%); border-radius: 3px; background: var(--violet); transition: width .35s var(--ease); }
.chart-card {
  background: #fff;
  border-radius: 28px;
  padding: clamp(16px, 2.5vw, 28px);
  border: 1px solid rgba(20, 20, 22, .08);
  box-shadow: 0 30px 60px -40px rgba(20, 20, 22, .4);
}
.chart-card svg { width: 100%; height: auto; display: block; font-family: var(--font-text); }
/* The reader's curve draws itself when the chart comes into view; without
   the script it is simply there. */
.js #curve { stroke-dashoffset: 470; transition: stroke-dashoffset 1.8s cubic-bezier(.4, 0, .2, 1); }
.js #area { opacity: 0; transition: opacity 1s ease 1s; }
.js #points { opacity: 0; transition: opacity .6s ease 1.3s; }
.js .chart-card.seen #curve { stroke-dashoffset: 0; }
.js .chart-card.seen #area, .js .chart-card.seen #points { opacity: 1; }
#sel-line, #sel-said, #sel-right, #sel-label { transition: all .25s ease; }

/* ── Principles: cards that flip ────────────────────────────────────── */

.pill-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 36px;
  padding: 0 16px;
  border-radius: 18px;
  background: rgba(242, 241, 236, .06);
  border: 1px solid rgba(242, 241, 236, .1);
  font: 700 11px/1 var(--font-text);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--cream-70);
}
.pill-tag i { width: 4px; height: 4px; border-radius: 50%; background: currentColor; opacity: .5; }
.flips { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr)); gap: 20px; max-width: 880px; margin: 0 auto; }
.flip { perspective: 1400px; cursor: pointer; height: 460px; border-radius: 28px; }
.flip-inner { position: relative; width: 100%; height: 100%; transform-style: preserve-3d; transition: transform .8s var(--ease); }
.flip[aria-pressed="true"] .flip-inner { transform: rotateY(180deg); }
.face {
  position: absolute;
  inset: 0;
  border-radius: 28px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  color: #fff;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.face.back { transform: rotateY(180deg); gap: 14px; }
.face .q { margin: auto 0; font: 500 clamp(24px, 2.4vw, 30px)/1.12 var(--font-display); letter-spacing: -.02em; font-variation-settings: 'opsz' 144; }
.face.back .q { margin: 0; font: 600 19px/1.15 var(--font-display); letter-spacing: -.01em; }
.face .hint { margin: 0; font: 700 10px/1 var(--font-text); letter-spacing: .14em; text-transform: uppercase; opacity: .75; }
.face .a { margin: 0; font: 400 16px/1.5 var(--font-text); }
.face .move { margin-top: auto; border-radius: 16px; background: rgba(255, 255, 255, .16); padding: 14px 16px; }
.face .move .k { margin: 0 0 6px; font: 700 10px/1 var(--font-text); letter-spacing: .14em; text-transform: uppercase; opacity: .8; color: inherit; }
.face .move p { margin: 0; font: 600 15px/1.4 var(--font-text); }

/* ── Subjects: the deck goes by, both ways ──────────────────────────── */

.marquee-mask { margin-top: 48px; -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent); mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent); display: flex; flex-direction: column; gap: 16px; }
.marquee { display: flex; width: max-content; animation: marquee 75s linear infinite; }
.marquee.reverse { animation-direction: reverse; animation-duration: 85s; }
.marquee:hover { animation-play-state: paused; }
.marquee-track { display: flex; gap: 16px; padding-right: 16px; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.deck-card { flex: none; width: 250px; height: 310px; border-radius: 28px; padding: 22px; display: flex; flex-direction: column; transition: translate .35s var(--ease); }
.deck-card .q { margin: auto 0 0; font: 600 22px/1.14 var(--font-display); letter-spacing: -.015em; font-variation-settings: 'opsz' 144; }
@media (hover: hover) { .deck-card:hover { translate: 0 -6px; } }
.chips { list-style: none; max-width: 900px; margin: 0 auto; padding: 48px var(--gutter) 0; display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.chips li { display: inline-flex; align-items: center; height: 40px; padding: 0 18px; border-radius: 20px; font: 600 15px/1 var(--font-text); box-shadow: inset 0 1px 0 rgba(255, 255, 255, .3); }

/* ── Inside: the screens in a row ───────────────────────────────────── */

.gallery { --row-pad: max(var(--gutter), calc((100vw - var(--wrap)) / 2 + var(--gutter))); padding-top: 48px; }
.shot { flex: 0 0 auto; margin: 0; scroll-snap-align: start; display: flex; flex-direction: column; align-items: center; gap: 18px; }
.shot .device { --w: min(224px, 62vw); }
.shot figcaption { margin: 0; font: 600 14px/1.3 var(--font-text); color: var(--cream-70); display: flex; align-items: center; gap: 10px; }
.shot figcaption b { font: 500 13px/1 var(--font-display); font-variation-settings: 'opsz' 144; color: var(--cream-40); }

/* ── Widgets ────────────────────────────────────────────────────────── */

.split { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 400px), 1fr)); gap: clamp(40px, 6vw, 88px); align-items: center; }
.widgets-art { position: relative; width: min(100%, 440px); margin: 0 auto; padding-bottom: 56px; }
.widgets-art::before {
  content: "";
  position: absolute;
  inset: -10% -20%;
  background: radial-gradient(closest-side, rgba(139, 108, 255, .28), transparent 72%);
  pointer-events: none;
}
.widgets-home { position: relative; border-radius: 28px; overflow: hidden; aspect-ratio: 900 / 1500; background: #1c1a2b; box-shadow: 0 0 0 1px rgba(242, 241, 236, .1), 0 40px 80px -40px rgba(0, 0, 0, .8); }
.widgets-home img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 0; display: block; }
.widgets-lock { position: absolute; right: -8px; bottom: 0; width: 64%; aspect-ratio: 900 / 560; border-radius: 22px; overflow: hidden; box-shadow: 0 30px 60px -20px rgba(0, 0, 0, .8), 0 0 0 1px rgba(242, 241, 236, .12); }
.widgets-lock img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 100%; display: block; }
.widget-list { list-style: none; margin: 28px 0 0; padding: 0; display: flex; flex-direction: column; gap: 12px; max-width: 460px; }
.widget-list li { display: flex; gap: 14px; align-items: flex-start; padding: 14px 0; border-top: 1px solid var(--hairline); font: 400 15px/1.5 var(--font-text); color: var(--cream-70); }
.widget-list li:last-child { border-bottom: 1px solid var(--hairline); }
.widget-list b { display: block; font-weight: 600; color: var(--cream); }
.widget-list i { flex: none; width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center; background: rgba(242, 241, 236, .06); border: 1px solid rgba(242, 241, 236, .1); }
.widget-list svg { width: 16px; height: 16px; }

/* ── The science ────────────────────────────────────────────────────── */

.evidence { list-style: none; margin: 48px 0 0; padding: 0; max-width: 920px; }
.srcs { display: flex; flex-wrap: wrap; gap: 8px; }
.evidence li { padding: 36px 0; border-top: 1px solid var(--ink-hairline); display: grid; grid-template-columns: 84px minmax(0, 1fr); gap: 16px; align-items: start; }
.evidence li:last-child { border-bottom: 1px solid var(--ink-hairline); }
.evidence .n { font: 500 52px/1 var(--font-display); font-variation-settings: 'opsz' 144; letter-spacing: -.04em; color: rgba(20, 20, 22, .16); padding-top: 2px; font-variant-numeric: tabular-nums; }
.evidence .claim { margin: 0 0 14px; font: 500 clamp(26px, 3.4vw, 44px)/1.08 var(--font-display); letter-spacing: -.025em; font-variation-settings: 'opsz' 144; text-wrap: balance; }
.src { display: inline-flex; align-items: center; gap: 8px; padding: 8px 12px; border-radius: 999px; border: 1px solid rgba(20, 20, 22, .14); font: 500 13px/1.2 var(--font-text); color: rgba(20, 20, 22, .68); }
.src svg { width: 13px; height: 13px; flex: none; opacity: .7; }
.so { margin: 44px 0 0; max-width: 680px; font: 500 clamp(20px, 2vw, 26px)/1.4 var(--font-display); font-variation-settings: 'opsz' 144; letter-spacing: -.015em; color: var(--night); text-wrap: pretty; }
.so::before { content: ""; display: block; width: 40px; height: 2px; background: var(--night); margin-bottom: 18px; }
@media (max-width: 600px) { .evidence li { grid-template-columns: 56px minmax(0, 1fr); } .evidence .n { font-size: 36px; } }

/* ── Friends ────────────────────────────────────────────────────────── */

.ticket {
  position: relative;
  margin-top: 32px;
  display: inline-grid;
  grid-template-columns: 1fr auto;
  border-radius: 20px;
  background: rgba(242, 241, 236, .05);
  border: 1px solid rgba(242, 241, 236, .12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .06);
}
.ticket-main { padding: 20px 26px 22px; display: flex; flex-direction: column; gap: 10px; }
.ticket .k { font: 700 11px/1 var(--font-text); letter-spacing: .14em; text-transform: uppercase; color: var(--cream-60); }
.ticket .code { font: 500 34px/1 var(--font-display); letter-spacing: .04em; font-variation-settings: 'opsz' 144; font-variant-numeric: tabular-nums; }
.ticket-stub { position: relative; padding: 20px 22px; border-left: 1px dashed rgba(242, 241, 236, .28); display: grid; place-items: center; gap: 8px; color: var(--cream-60); }
.ticket-stub::before, .ticket-stub::after { content: ""; position: absolute; left: -7px; width: 13px; height: 13px; border-radius: 50%; background: var(--night); border: 1px solid rgba(242, 241, 236, .12); }
.ticket-stub::before { top: -7px; border-top-color: transparent; border-left-color: transparent; }
.ticket-stub::after { bottom: -7px; border-bottom-color: transparent; border-left-color: transparent; }
.ticket-stub svg { width: 20px; height: 20px; }
.board { border-radius: 28px; background: rgba(242, 241, 236, .04); border: 1px solid rgba(242, 241, 236, .1); padding: 8px; font-variant-numeric: tabular-nums; box-shadow: inset 0 1px 0 rgba(255, 255, 255, .05); }
.board-row { display: grid; grid-template-columns: minmax(0, 1.7fr) 1fr 1fr 1.3fr; gap: 12px; align-items: center; padding: 14px 16px; font: 500 16px/1 var(--font-text); border-top: 1px solid rgba(242, 241, 236, .08); border-radius: 16px; transition: background .2s ease; }
.board-row:hover { background: rgba(242, 241, 236, .04); }
.board-row.you { background: rgba(242, 241, 236, .05); }
.board-head { padding: 14px 16px 12px; font: 700 10px/1 var(--font-text); letter-spacing: .14em; text-transform: uppercase; color: var(--cream-50); border-top: 0; }
.board-head:hover { background: none; }
.board .r { text-align: right; }
.board .who { display: flex; align-items: center; gap: 12px; min-width: 0; }
.board .rank { width: 20px; flex: none; font: 600 12px/1 var(--font-text); color: var(--cream-40); text-align: center; }
.board .av { width: 32px; height: 32px; border-radius: 50%; display: grid; place-items: center; font: 700 13px/1 var(--font-text); flex: none; }
.board .cal { display: inline-flex; align-items: center; justify-content: flex-end; gap: 10px; font-weight: 600; }
.board .cal i { width: 44px; height: 4px; border-radius: 2px; background: rgba(242, 241, 236, .12); position: relative; overflow: hidden; }
.board .cal i::after { content: ""; position: absolute; top: 0; height: 100%; left: 50%; width: calc(var(--c, 0) / 10 * 50%); background: var(--cream); border-radius: 2px; }
.board .cal.neg i::after { left: auto; right: 50%; }
.board-note { font: 400 14px/1.5 var(--font-text); color: var(--cream-50); margin: 16px 8px 0; text-wrap: pretty; }

/* ── Astute+ ────────────────────────────────────────────────────────── */

.plans { position: relative; isolation: isolate; display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr)); gap: 20px; max-width: 900px; margin: 48px auto 0; text-align: left; }
/* A glow behind Astute+. */
.plans::before {
  content: "";
  position: absolute;
  right: -12%;
  top: 6%;
  width: 66%;
  height: 100%;
  z-index: -1;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(139, 108, 255, .3), transparent 72%);
  pointer-events: none;
}
.plan {
  position: relative;
  border-radius: 30px;
  padding: 30px;
  background: rgba(20, 20, 22, .62);
  border: 1px solid rgba(242, 241, 236, .12);
  display: flex;
  flex-direction: column;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .06);
}
.plan .name { margin: 0 0 18px; font: 500 30px/1 var(--font-display); letter-spacing: -.015em; font-variation-settings: 'opsz' 144; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.plan .price { margin: 0 0 24px; display: flex; align-items: baseline; gap: 8px; }
.plan .price b { font: 500 46px/1 var(--font-display); letter-spacing: -.025em; font-variation-settings: 'opsz' 144; }
.plan .price span { font: 400 15px/1 var(--font-text); color: var(--cream-60); }
.feats { list-style: none; margin: 0 0 30px; padding: 0; display: flex; flex-direction: column; gap: 12px; font: 400 16px/1.4 var(--font-text); color: var(--cream-85); }
.feats li { display: flex; gap: 12px; align-items: flex-start; }
.feats li::before {
  content: "";
  flex: none;
  width: 20px;
  height: 20px;
  margin-top: 1px;
  border-radius: 50%;
  background: rgba(242, 241, 236, .1) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23F2F1EC' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12.5l4.5 4.5L19 7.5'/%3E%3C/svg%3E") center / 10px no-repeat;
}
.plan-plus .feats li::before { background-color: rgba(242, 241, 236, .16); }
.plan .btn { margin-top: auto; }
.fine-print { font: 400 14px/1.5 var(--font-text); color: var(--cream-50); margin: 28px 0 0; }
/* Astute+: an edge in the three lights, slowly turning, and a glow behind. */
@property --turn { syntax: '<angle>'; inherits: false; initial-value: 0deg; }
.plan-plus { border-color: transparent; }
.plan-plus::before {
  content: "";
  position: absolute;
  inset: -1.5px;
  border-radius: 31.5px;
  padding: 1.5px;
  background: conic-gradient(from var(--turn), var(--yellow), var(--teal), var(--violet), var(--cream), var(--yellow));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#000 0 0) content-box exclude, linear-gradient(#000 0 0);
  animation: turn 9s linear infinite;
  pointer-events: none;
}
@keyframes turn { to { --turn: 360deg; } }

/* ── Questions ──────────────────────────────────────────────────────── */

.faq { margin-top: 28px; border-bottom: 1px solid var(--hairline); }
.faq-item { border-top: 1px solid var(--hairline); }
.faq-item h3 { margin: 0; }
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 24px 0;
  background: none;
  border: 0;
  color: var(--cream);
  text-align: left;
  cursor: pointer;
  font: 500 19px/1.3 var(--font-text);
  transition: color .2s ease;
}
.faq-q:hover { color: var(--cream); }
.faq-item:not(.open) .faq-q { color: var(--cream-85); }
.faq-icon {
  flex: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(242, 241, 236, .25);
  display: grid;
  place-items: center;
  transition: transform .35s var(--ease), background .25s ease, border-color .25s ease;
}
.faq-icon::before, .faq-icon::after { content: ""; position: absolute; width: 12px; height: 1.5px; background: currentColor; border-radius: 1px; }
.faq-icon::after { transform: rotate(90deg); }
.faq-icon { position: relative; }
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--cream); border-color: var(--cream); color: var(--night); }
[data-faq-panel] { display: grid; grid-template-rows: 1fr; transition: grid-template-rows .4s var(--ease); }
.js .faq-item:not(.open) [data-faq-panel] { grid-template-rows: 0fr; }
[data-faq-panel] > div { overflow: hidden; min-height: 0; }
.faq-a { margin: 0 0 26px; font: 400 16px/1.6 var(--font-text); color: var(--cream-70); max-width: 640px; text-wrap: pretty; }
.faq-a a { color: var(--cream); text-decoration: underline; text-underline-offset: 3px; }
.faq-more {
  margin-top: 40px;
  padding: 24px 28px;
  border-radius: 24px;
  background: rgba(242, 241, 236, .04);
  border: 1px solid rgba(242, 241, 236, .1);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px 24px;
}
.faq-more p { margin: 0; font: 400 16px/1.5 var(--font-text); color: var(--cream-70); }
.faq-more p b { display: block; font: 500 22px/1.2 var(--font-display); font-variation-settings: 'opsz' 144; letter-spacing: -.015em; color: var(--cream); margin-bottom: 4px; }

/* ── The last word ──────────────────────────────────────────────────── */

.cta { padding-block: clamp(112px, 14vw, 200px) clamp(96px, 12vw, 160px); text-align: center; overflow: hidden; }
.cta .wrap { position: relative; display: flex; flex-direction: column; align-items: center; gap: 36px; }
.cta h2 { margin: 0; font: 500 clamp(48px, 8vw, 120px)/.96 var(--font-display); letter-spacing: -.035em; font-variation-settings: 'opsz' 144; text-wrap: balance; }
.get { display: flex; align-items: center; justify-content: center; gap: 28px; flex-wrap: wrap; }
.qr { display: flex; align-items: center; gap: 16px; text-align: left; padding-left: 28px; border-left: 1px solid rgba(242, 241, 236, .14); }
.qr-code { position: relative; width: 116px; height: 116px; padding: 10px; border-radius: 18px; background: var(--cream); flex: none; box-shadow: 0 20px 40px -20px rgba(0, 0, 0, .8); }
.qr-code img { display: block; width: 96px; height: 96px; }
.qr-code .mark { position: absolute; left: 50%; top: 50%; width: 26px; height: 26px; margin: -13px 0 0 -13px; border-radius: 7px; border: 3px solid var(--cream); box-sizing: content-box; transform: translate(-3px, -3px); }
.qr p { margin: 0; font: 500 14px/1.45 var(--font-text); color: var(--cream-70); }
.qr p b { display: block; font-weight: 600; color: var(--cream); }
@media (max-width: 767px) { .qr { display: none; } }
.cta .fine { margin: 0; font: 500 13px/1 var(--font-text); color: var(--cream-50); }

@media (prefers-reduced-motion: reduce) {
  .js [data-reveal] { opacity: 1; transform: none; filter: none; }
  .js .w > span, .js .rise-in { animation: none; }
  .float, .shimmer, .plan-plus::before, .fan-card, .light, .scroll-cue i::after { animation: none; }
  #hero-phone { transform: perspective(1400px) rotateY(9deg) rotateX(2deg); }
  [data-tilt] { transform: none; }
}
