/* ============================================================
   Stintkeep — site design system
   The app's own language: near-black canvas, aurora light for
   running time, white glass, hairlines, and a title sheen.
   ============================================================ */

:root {
  --ink: #050506;                      /* canvas */
  --ink-raise: #0a0a0c;
  --paper: rgba(255, 255, 255, 0.93);  /* primary text */
  --paper-dim: rgba(255, 255, 255, 0.62);
  --paper-faint: rgba(255, 255, 255, 0.38);
  --hairline: rgba(255, 255, 255, 0.07);
  --hairline-strong: rgba(255, 255, 255, 0.13);
  --card: rgba(255, 255, 255, 0.032);
  --card-hover: rgba(255, 255, 255, 0.055);
  --aurora-deep: #8fa2ff;
  --aurora-mid: #c3d0ff;
  --aurora-pale: #eef3ff;
  --amber: #ff9040;
  --ember: #f26414;
  --on-accent: #0d0d0f;
  --radius: 24px;
  --radius-lg: 32px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.4, 0.44, 1);
  --font: "Inter", -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", Roboto, sans-serif;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font);
  background: var(--ink);
  color: var(--paper);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

::selection { background: rgba(143, 162, 255, 0.35); }

img, svg { display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

.num {
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum";
}

.wrap { width: min(1140px, calc(100% - 48px)); margin: 0 auto; }

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

.display {
  font-size: clamp(42px, 7vw, 92px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.035em;
  background: linear-gradient(180deg, #fff 20%, rgba(255, 255, 255, 0.55));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.h2 {
  font-size: clamp(30px, 4.4vw, 52px);
  font-weight: 750;
  line-height: 1.06;
  letter-spacing: -0.028em;
  background: linear-gradient(180deg, #fff 25%, rgba(255, 255, 255, 0.6));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.h3 { font-size: 17px; font-weight: 650; letter-spacing: -0.01em; margin-bottom: 8px; }

.kicker {
  font-size: 12.5px;
  font-weight: 650;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--aurora-deep);
  margin-bottom: 14px;
}

.lede { font-size: clamp(16px, 1.6vw, 18.5px); line-height: 1.7; color: var(--paper-dim); max-width: 60ch; }

/* Space is the luxury: sections breathe, headers stand clear of their
   content, and nothing ever touches anything it doesn't have to. */
.section { padding: clamp(96px, 13vw, 180px) 0; }
.section-head { margin-bottom: clamp(56px, 8vw, 96px); max-width: 720px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .lede { margin-left: auto; margin-right: auto; }
.section-head .lede { margin-top: 24px; }

.divider { height: 1px; background: linear-gradient(90deg, transparent, var(--hairline-strong), transparent); }

/* ---------- reveal choreography ----------
   Everything arrives the way the app's Entrance modifier arrives: a short
   rise through a soft blur, settling sharp. Cards in a grid stagger
   automatically (site.js assigns the delays); headlines reveal word by
   word through the same blur the app's CyclingHello uses. */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  filter: blur(7px);
  transition: opacity 1.05s var(--ease-out), transform 1.05s var(--ease-out),
              filter 0.9s var(--ease-out);
}
.reveal.from-scale { transform: translateY(12px) scale(0.95); }
.reveal.in { opacity: 1; transform: none; filter: none; }
.reveal-d1 { transition-delay: 0.12s; }
.reveal-d2 { transition-delay: 0.24s; }
.reveal-d3 { transition-delay: 0.36s; }

/* word-by-word headline reveal */
.wsplit .w {
  display: inline-block;
  background: linear-gradient(180deg, #fff 20%, rgba(255, 255, 255, 0.55));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0;
  transform: translateY(0.55em);
  filter: blur(7px);
  transition: opacity 0.85s var(--ease-out), transform 0.85s var(--ease-out),
              filter 0.7s var(--ease-out);
  transition-delay: calc(var(--wi, 0) * 80ms);
  will-change: transform, filter;
}
.wsplit.win .w { opacity: 1; transform: none; filter: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .marquee-track { animation: none !important; }
  *, *::before, *::after { animation-duration: 0.001s !important; animation-iteration-count: 1 !important; }
}

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

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 14px 0;
  transition: background 0.4s, backdrop-filter 0.4s, border-color 0.4s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(5, 5, 6, 0.72);
  -webkit-backdrop-filter: saturate(1.4) blur(18px);
  backdrop-filter: saturate(1.4) blur(18px);
  border-bottom-color: var(--hairline);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-weight: 750; font-size: 17px; letter-spacing: -0.02em;
}
.nav-logo img { width: 26px; height: 26px; border-radius: 7px; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { font-size: 14.5px; font-weight: 550; color: var(--paper-dim); transition: color 0.25s; }
.nav-links a:hover, .nav-links a.active { color: var(--paper); }
.nav-links a.btn-primary, .nav-links a.btn-primary:hover { color: var(--on-accent); }
.nav-burger { display: none; width: 40px; height: 40px; }
.nav-burger svg { width: 22px; height: 22px; stroke: var(--paper); margin: auto; }

@media (max-width: 820px) {
  .nav-links {
    position: fixed; inset: 62px 12px auto 12px;
    flex-direction: column; align-items: stretch; gap: 4px;
    background: rgba(12, 12, 14, 0.96);
    -webkit-backdrop-filter: blur(24px); backdrop-filter: blur(24px);
    border: 1px solid var(--hairline-strong);
    border-radius: 20px; padding: 12px;
    opacity: 0; pointer-events: none; transform: translateY(-8px) scale(0.98);
    transition: opacity 0.3s var(--ease-out), transform 0.3s var(--ease-out);
  }
  .nav.menu-open .nav-links { opacity: 1; pointer-events: auto; transform: none; }
  .nav-links a { padding: 12px 16px; border-radius: 12px; font-size: 16px; }
  .nav-links a:hover { background: var(--card-hover); }
  .nav-cta { justify-content: center; margin-top: 6px; }
  .nav-burger { display: grid; }
}

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

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  border-radius: 999px;
  font-weight: 700; font-size: 15px; letter-spacing: -0.01em;
  padding: 0 26px; height: 50px;
  transition: transform 0.35s var(--ease-spring), box-shadow 0.35s, background 0.3s, border-color 0.3s;
  will-change: transform;
}
.btn:active { transform: scale(0.965); }

.btn-primary {
  background: linear-gradient(135deg, #ffffff, #dfe6ff 85%);
  color: var(--on-accent);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.25) inset,
              0 10px 34px rgba(255, 255, 255, 0.14),
              0 2px 10px rgba(0, 0, 0, 0.4);
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.3) inset,
              0 14px 44px rgba(198, 210, 255, 0.28),
              0 2px 10px rgba(0, 0, 0, 0.4);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--hairline-strong);
  color: var(--paper);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.1); border-color: rgba(255, 255, 255, 0.22); }

.btn-lg { height: 56px; padding: 0 30px; font-size: 16px; }
.btn-sm { height: 40px; padding: 0 18px; font-size: 13.5px; }

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

.hero {
  position: relative;
  padding: clamp(140px, 18vh, 190px) 0 clamp(60px, 8vw, 100px);
  text-align: center;
  overflow: hidden;
}
.hero-bloom {
  position: absolute; left: 50%; top: -240px;
  width: 1100px; height: 780px;
  transform: translateX(-50%);
  background: radial-gradient(closest-side, rgba(143, 162, 255, 0.14), rgba(143, 162, 255, 0.045) 45%, transparent 75%);
  pointer-events: none;
  animation: bloom-breathe 9s ease-in-out infinite;
}
@keyframes bloom-breathe {
  0%, 100% { opacity: 0.85; transform: translateX(-50%) scale(1); }
  50% { opacity: 1; transform: translateX(-50%) scale(1.06); }
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, #000 30%, transparent 75%);
  mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, #000 30%, transparent 75%);
  pointer-events: none;
}
.hero .wrap { position: relative; }

.pill {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 8px 18px; margin-bottom: 30px;
  border-radius: 999px;
  border: 1px solid var(--hairline-strong);
  background: rgba(255, 255, 255, 0.04);
  font-size: 13px; font-weight: 600; color: var(--paper-dim);
}
.pill .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: linear-gradient(180deg, var(--aurora-deep), var(--aurora-pale));
  box-shadow: 0 0 10px rgba(143, 162, 255, 0.9);
  animation: dot-pulse 2.6s ease-in-out infinite;
}
@keyframes dot-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.55; transform: scale(0.8); }
}

.hero-sub {
  margin: 30px auto 0;
  max-width: 54ch;
  font-size: clamp(16.5px, 1.8vw, 19px);
  line-height: 1.7;
  color: var(--paper-dim);
}
.hero-actions {
  display: flex; justify-content: center; gap: 14px; flex-wrap: wrap;
  margin-top: 44px;
}
.hero-note { margin-top: 24px; font-size: 13px; color: var(--paper-faint); }

/* cycling word in headlines */
.cycle {
  display: inline-block;
  color: var(--aurora-mid);
  -webkit-text-fill-color: var(--aurora-mid);
  background: none;
  transition: opacity 0.45s var(--ease-out), filter 0.45s, transform 0.45s var(--ease-out);
}
.cycle.out { opacity: 0; filter: blur(7px); transform: translateY(10px); }

/* ---------- phone with the SessionDial ---------- */

.hero-device {
  margin: clamp(72px, 10vw, 110px) auto 0;
  max-width: 380px;
  perspective: 1400px;
}
.phone {
  position: relative;
  border-radius: 52px;
  padding: 10px;
  background: linear-gradient(180deg, #17181d, #0a0a0d 60%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.7),
    0 34px 90px rgba(0, 0, 0, 0.65),
    0 8px 30px rgba(143, 162, 255, 0.07);
  transition: transform 0.6s var(--ease-out);
  transform-style: preserve-3d;
}
.phone-screen {
  position: relative;
  border-radius: 43px;
  overflow: hidden;
  background:
    radial-gradient(120% 65% at 50% -12%, rgba(143, 162, 255, 0.16), transparent 60%),
    linear-gradient(180deg, #0b0c12 0%, #06060a 55%, #040405 100%);
  padding: 60px 26px 30px;
  text-align: center;
}
.phone-island {
  position: absolute; top: 13px; left: 50%; transform: translateX(-50%);
  width: 108px; height: 30px; border-radius: 16px;
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.screen-label {
  font-size: 10px; font-weight: 650; letter-spacing: 0.19em;
  color: rgba(255, 255, 255, 0.5);
}
.screen-shift-name { font-size: 17px; font-weight: 700; letter-spacing: -0.01em; margin-top: 5px; }

/* The SessionDial, faithfully: hour numerals outermost, 60 minute ticks,
   a recessed dark track, and the aurora arc riding over the ticks with a
   white-hot leading edge. One lap = 12 hours. */
.dial-wrap { position: relative; width: 300px; height: 300px; margin: 20px auto 16px; }
.dial-glow {
  position: absolute; inset: -40px;
  background: radial-gradient(closest-side, rgba(143, 162, 255, 0.20), transparent 70%);
  animation: soft-breathe 6s ease-in-out infinite;
  pointer-events: none;
}
@keyframes soft-breathe {
  0%, 100% { opacity: 0.8; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}
.dial-num {
  position: absolute;
  font-size: 13px; font-weight: 600;
  color: rgba(255, 255, 255, 0.62);
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.7s var(--ease-out);
  transition-delay: calc(var(--di, 0) * 55ms + 0.5s);
}
.dial-wrap.on .dial-num { opacity: 1; }
.dial-tick {
  position: absolute; left: 50%; top: 50%;
  width: 1.2px; height: 6px; border-radius: 99px;
  background: rgba(255, 255, 255, 0.16);
  transform-origin: 50% 0;
  opacity: 0;
  transition: opacity 0.5s var(--ease-out), background 0.6s, box-shadow 0.6s;
  transition-delay: calc(var(--di, 0) * 14ms + 0.15s);
}
.dial-tick.major { width: 2px; height: 10px; background: rgba(255, 255, 255, 0.42); }
.dial-wrap.on .dial-tick { opacity: 1; }
/* ticks just behind the arc's leading edge catch its light */
.dial-tick.lit { background: rgba(238, 243, 255, 0.85); box-shadow: 0 0 7px rgba(195, 208, 255, 0.55); transition-delay: 0s; }
.dial-tick.major.lit { background: #fff; }
.dial-track-ring {
  position: absolute; left: 50%; top: 50%;
  width: 204px; height: 204px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 17px solid rgba(0, 0, 0, 0.42);
  box-shadow: 0 0 0 0.5px rgba(255, 255, 255, 0.10),
              inset 0 0 0 0.5px rgba(255, 255, 255, 0.06);
}
.dial-arc {
  position: absolute; left: 50%; top: 50%;
  width: 260px; height: 260px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  /* --deg is set from JS each second; the ramp is pinned to the leading
     edge, aurora deep at the start burning to white at "now". */
  background: conic-gradient(from 0deg,
    #8fa2ff 0deg,
    #c3d0ff calc(var(--deg, 170deg) * 0.42),
    #eef3ff calc(var(--deg, 170deg) * 0.78),
    #ffffff calc(var(--deg, 170deg) - 0.5deg),
    transparent var(--deg, 170deg));
  -webkit-mask: radial-gradient(closest-side, transparent 85.5%, #000 86.5%);
  mask: radial-gradient(closest-side, transparent 85.5%, #000 86.5%);
  filter: drop-shadow(0 0 8px rgba(143, 162, 255, 0.45));
  pointer-events: none;
}
.dial-cap {
  position: absolute; left: 50%; top: 50%;
  width: 17px; height: 17px; margin: -8.5px;
  border-radius: 50%;
  pointer-events: none;
}
.dial-cap.start { background: #8fa2ff; transform: translateY(-113px); }
.dial-cap.lead {
  background: #fff;
  box-shadow: 0 0 12px rgba(238, 243, 255, 0.9), 0 0 26px rgba(143, 162, 255, 0.55);
  transform: rotate(var(--deg, 170deg)) translateY(-113px);
}
.dial-cap.lead, .dial-arc {
  opacity: 0;
  transition: opacity 0.8s var(--ease-out) 0.3s;
}
.dial-wrap.on .dial-cap.lead, .dial-wrap.on .dial-arc { opacity: 1; }
.dial-cap.start { opacity: 0; transition: opacity 0.6s var(--ease-out) 0.4s; }
.dial-wrap.on .dial-cap.start { opacity: 1; }
.dial-center {
  position: absolute; inset: 0;
  display: grid; place-content: center; gap: 6px;
  text-align: center;
  opacity: 0; transform: scale(0.93);
  transition: opacity 0.9s var(--ease-out) 0.75s, transform 0.9s var(--ease-spring) 0.75s;
}
.dial-wrap.on .dial-center { opacity: 1; transform: none; }
.dial-sub {
  font-size: 10px; font-weight: 650; letter-spacing: 0.24em;
  color: rgba(255, 255, 255, 0.55);
}
.dial-time {
  font-size: 37px; font-weight: 800; letter-spacing: -0.03em;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}
.dial-started { font-size: 12.5px; font-weight: 550; color: rgba(255, 255, 255, 0.6); }
.dial-stats {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  margin-bottom: 20px; padding: 12px 0;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.dial-stats > div { text-align: center; }
.dial-stats > div + div { border-left: 1px solid var(--hairline); }
.dial-stats .l {
  font-size: 8.5px; font-weight: 650; letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.42);
}
.dial-stats .v { font-size: 15px; font-weight: 700; margin-top: 3px; }
.clockout {
  height: 52px; border-radius: 999px;
  display: grid; place-content: center;
  background: linear-gradient(135deg, #ffffff, #dfe6ff 85%);
  color: var(--on-accent);
  font-size: 13.5px; font-weight: 800; letter-spacing: 0.13em;
  box-shadow: 0 8px 30px rgba(255, 255, 255, 0.13);
}

/* ---------- marquee ---------- */

.marquee {
  overflow: hidden;
  padding: 34px 0;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.marquee-track {
  display: flex; gap: 44px; width: max-content;
  animation: marquee 44s linear infinite;
}
.marquee-track span {
  font-size: 15px; font-weight: 600; letter-spacing: -0.01em;
  color: var(--paper-faint);
  white-space: nowrap;
  transition: color 0.3s;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee:hover .marquee-track span { color: var(--paper-dim); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- cards & bento ---------- */

.card {
  position: relative;
  background: var(--card);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: 36px;
  transition: background 0.4s, border-color 0.4s, transform 0.5s var(--ease-out), box-shadow 0.5s;
  overflow: hidden;
}
.card:hover {
  background: var(--card-hover);
  border-color: var(--hairline-strong);
  transform: translateY(-3px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}
.card p { font-size: 14.5px; line-height: 1.65; color: var(--paper-dim); }

.card-icon {
  width: 44px; height: 44px; border-radius: 50%;
  display: grid; place-content: center;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--hairline);
  margin-bottom: 22px;
}
.card-icon svg { width: 20px; height: 20px; stroke: rgba(255, 255, 255, 0.9); }

.bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}
.span-2 { grid-column: span 2; }
.span-3 { grid-column: span 3; }
.span-4 { grid-column: span 4; }
.span-6 { grid-column: span 6; }
@media (max-width: 960px) {
  .bento { grid-template-columns: repeat(2, 1fr); }
  .span-2, .span-3, .span-4, .span-6 { grid-column: span 2; }
}

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 64px); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 900px) { .grid-2, .grid-3 { grid-template-columns: 1fr; } }

.card-visual { margin-top: 30px; }

/* module chips */
.chips { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 26px; }
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 14px; border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--hairline);
  font-size: 12.5px; font-weight: 600; color: var(--paper-dim);
  transition: background 0.3s, color 0.3s, border-color 0.3s, transform 0.3s var(--ease-spring);
}
.chip:hover {
  background: rgba(143, 162, 255, 0.12);
  border-color: rgba(143, 162, 255, 0.35);
  color: var(--aurora-mid);
  transform: translateY(-1px);
}

/* ============================================================
   Component recreations from the app
   ============================================================ */

/* ---------- Dynamic Island showcase ---------- */

.island-stage {
  position: relative;
  max-width: 384px;
  margin: 0 auto;
  border-radius: 46px 46px 0 0;
  background:
    radial-gradient(120% 90% at 50% -20%, rgba(143, 162, 255, 0.14), transparent 62%),
    linear-gradient(180deg, #14161f 0%, #0b0c12 50%, transparent 100%);
  border: 1.5px solid rgba(255, 255, 255, 0.14);
  border-bottom: 0;
  padding: 16px 24px 70px;
  -webkit-mask-image: linear-gradient(180deg, #000 58%, transparent 96%);
  mask-image: linear-gradient(180deg, #000 58%, transparent 96%);
}
.island-statusbar {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; font-weight: 650; color: rgba(255, 255, 255, 0.55);
  margin-bottom: 12px;
}
.island-statusbar svg { width: 15px; height: 15px; stroke: rgba(255, 255, 255, 0.55); }
.island-statusbar .flank { display: flex; gap: 6px; }

.island {
  position: relative;
  margin: 0 auto;
  width: 132px; height: 37px;
  background: #000;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  overflow: hidden;
  transition: width 0.9s var(--ease-spring), height 0.9s var(--ease-spring), box-shadow 0.9s;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.5);
}
.island.open {
  width: min(288px, 100%); height: 124px;
  box-shadow: 0 26px 60px rgba(143, 162, 255, 0.16), 0 14px 40px rgba(0, 0, 0, 0.5);
}

.isl-compact, .isl-full {
  position: absolute; inset: 0;
  transition: opacity 0.55s var(--ease-out), filter 0.55s, transform 0.7s var(--ease-out);
}
.isl-compact {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 14px;
}
.island.open .isl-compact { opacity: 0; filter: blur(8px); transform: scale(1.6); }
.isl-full { padding: 13px 17px; opacity: 0; filter: blur(10px); transform: scale(0.6); }
.island.open .isl-full { opacity: 1; filter: none; transform: none; }

.live-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: linear-gradient(180deg, var(--aurora-deep), var(--aurora-pale));
  box-shadow: 0 0 8px rgba(195, 208, 255, 0.9);
  animation: dot-pulse 2.4s ease-in-out infinite;
}
.isl-compact .t { font-size: 12px; font-weight: 650; color: var(--aurora-pale); }

.isl-head { display: flex; justify-content: space-between; align-items: flex-start; }
.isl-label {
  display: flex; align-items: center; gap: 5px;
  font-size: 8px; font-weight: 650; letter-spacing: 0.13em;
  color: rgba(255, 255, 255, 0.55);
}
.isl-elapsed { font-size: 24px; font-weight: 800; letter-spacing: -0.02em; color: #fff; margin-top: 2px; }
.isl-right { text-align: right; }
.isl-cap { font-size: 8px; font-weight: 650; letter-spacing: 0.13em; color: rgba(255, 255, 255, 0.55); }
.isl-left-time { font-size: 15px; font-weight: 650; color: var(--aurora-mid); margin-top: 5px; }
.isl-bar { position: relative; height: 3.5px; border-radius: 99px; background: rgba(255, 255, 255, 0.14); margin: 10px 0 9px; overflow: hidden; }
.isl-bar-fill {
  position: absolute; inset: 0 auto 0 0; width: 48%;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--aurora-deep), var(--aurora-pale));
  transition: width 1s linear;
}
.isl-foot { display: flex; justify-content: space-between; font-size: 9.5px; font-weight: 550; color: rgba(255, 255, 255, 0.6); }

/* ---------- month calendar ---------- */

.month-card {
  background: var(--card);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: 20px;
}
.month-chips { display: flex; gap: 6px; flex-wrap: wrap; }
.mchip {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 0 11px; height: 26px; border-radius: 999px;
  font-size: 11px; font-weight: 650;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--hairline);
  color: var(--paper-dim);
}
.mchip.sel {
  background: rgba(143, 162, 255, 0.14);
  border-color: rgba(143, 162, 255, 0.4);
  color: var(--aurora-mid);
}
.mchip .c { font-weight: 550; opacity: 0.65; }

.month-stats {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  margin: 16px 0;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  padding: 12px 0;
}
.mstat { text-align: center; }
.mstat + .mstat { border-left: 1px solid var(--hairline); }
.mstat .l {
  font-size: 9px; font-weight: 650; letter-spacing: 0.11em;
  text-transform: uppercase; color: var(--paper-faint);
}
.mstat .v { font-size: 15px; font-weight: 750; margin-top: 3px; }
.mstat .v.hot { color: var(--amber); }

.month-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 5px; }
.mday {
  position: relative; height: 34px; border-radius: 9px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.045);
  display: grid; place-content: center; gap: 4px;
  font-size: 10px; font-weight: 550; color: rgba(255, 255, 255, 0.28);
  transform: scale(0.85); opacity: 0.55;
  transition: transform 0.5s var(--ease-spring), opacity 0.5s, background 0.5s, color 0.5s;
}
.mday .bar { width: 4px; height: 2.5px; border-radius: 99px; background: transparent; margin: 0 auto; transition: width 0.5s var(--ease-spring), background 0.4s, box-shadow 0.4s; }
.mday.on {
  transform: none; opacity: 1;
  color: rgba(255, 255, 255, 0.92); font-weight: 650;
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.08);
}
.mday.on .bar { background: var(--aurora-mid); box-shadow: 0 0 5px rgba(195, 208, 255, 0.6); }
.mday.on.warm .bar { background: var(--amber); box-shadow: 0 0 5px rgba(255, 144, 64, 0.6); }
.mday.on.hot .bar { background: var(--ember); box-shadow: 0 0 5px rgba(242, 100, 20, 0.7); }
.mday.off-shown { transform: none; opacity: 1; color: rgba(255, 255, 255, 0.4); }
.mday.blank { visibility: hidden; }

.month-legend { display: flex; gap: 14px; margin-top: 14px; }
.month-legend span {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 10px; font-weight: 550; color: var(--paper-faint);
}
.month-legend i { width: 13px; height: 2.5px; border-radius: 99px; }

/* ---------- the record (paper) ---------- */

.record-scene { position: relative; max-width: 340px; margin: 0 auto; }
.record-scene .behind {
  position: absolute; inset: 0;
  transform: rotate(2.2deg) translate(7px, 6px);
  opacity: 0.45; filter: blur(0.4px);
}
.record-page {
  position: relative;
  background: #fff;
  color: #212121;
  border-radius: 8px;
  padding: 18px;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.6);
  font-size: 8px;
  transition: transform 0.6s var(--ease-out);
}
.record-scene:hover .record-page { transform: translateY(-4px) rotate(-0.6deg); }
.rp-tag {
  position: absolute; top: -10px; right: -6px;
  padding: 5px 11px; border-radius: 999px;
  background: linear-gradient(135deg, #ffffff, #dfe6ff 85%);
  color: var(--on-accent);
  font-size: 9.5px; font-weight: 800; letter-spacing: 0.12em;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
}
.rp-kicker { font-size: 6px; font-weight: 650; letter-spacing: 0.12em; color: #737373; }
.rp-head { display: flex; justify-content: space-between; align-items: flex-start; margin-top: 4px; }
.rp-name { font-size: 14px; font-weight: 750; color: #212121; }
.rp-role { font-size: 7.5px; color: #737373; margin-top: 1px; }
.rp-period { text-align: right; }
.rp-period .l { font-size: 6px; color: #9e9e9e; }
.rp-period .v { font-size: 8.5px; font-weight: 650; }
.rp-rule { height: 1px; background: #212121; margin: 8px 0; }
.rp-sec { font-size: 5.5px; font-weight: 650; letter-spacing: 0.11em; color: #9e9e9e; margin: 7px 0 4px; }
.rp-summary { display: grid; grid-template-columns: repeat(4, 1fr); gap: 4px; }
.rp-summary .l { font-size: 6px; color: #9e9e9e; }
.rp-summary .v { font-size: 10.5px; font-weight: 750; }
.rp-row { display: flex; gap: 7px; padding: 3.5px 0; border-top: 0.5px solid #e0e0e0; font-size: 7px; color: #737373; }
.rp-row.hd { border-top: 0; font-size: 5.5px; font-weight: 650; letter-spacing: 0.05em; color: #9e9e9e; padding: 2px 0; }
.rp-row .d { width: 40px; font-weight: 650; color: #212121; }
.rp-row.hd .d { color: #9e9e9e; }
.rp-row .t { flex: 1; }
.rp-row .h { width: 30px; text-align: right; font-weight: 650; color: #212121; }
.rp-row.hd .h { color: #9e9e9e; }
.rp-row .p { width: 36px; text-align: right; }
.rp-sig { display: flex; align-items: flex-end; gap: 16px; margin-top: 14px; }
.rp-sig .line { border-top: 0.6px solid #737373; padding-top: 2px; font-size: 6px; color: #9e9e9e; }
.rp-sig .line.w1 { width: 92px; }
.rp-sig .line.w2 { width: 46px; }
.rp-sig .gen { margin-left: auto; font-size: 5.5px; color: #9e9e9e; }

/* ---------- privacy seal ----------
   A held pool of light with the shield at its center. The rings contract
   inward on a slow loop — the one motion on the site that pulls toward the
   device instead of radiating out of it, because that is the whole promise. */

.seal-col {
  display: grid; place-content: center;
  min-height: 100%;
}
.seal {
  position: relative; width: 340px; height: 340px; margin: 0 auto;
  display: grid; place-content: center;
}
.seal .bloom {
  position: absolute; inset: -10px;
  background: radial-gradient(closest-side,
    rgba(255, 255, 255, 0.15) 0%,
    rgba(255, 255, 255, 0.055) 42%,
    rgba(255, 255, 255, 0.015) 70%,
    transparent 100%);
  animation: seal-bloom 6.5s ease-in-out infinite;
  pointer-events: none;
}
@keyframes seal-bloom {
  0%, 100% { opacity: 0.75; transform: scale(0.96); }
  50% { opacity: 1; transform: scale(1.04); }
}
.seal .ring {
  position: absolute; left: 50%; top: 50%;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  transform: translate(-50%, -50%);
  animation: seal-contract 5.2s ease-in-out infinite;
  pointer-events: none;
}
.seal .ring.r1 { width: 300px; height: 300px; animation-delay: 0s; }
.seal .ring.r2 { width: 300px; height: 300px; animation-delay: 2.6s; }
@keyframes seal-contract {
  0%   { width: 310px; height: 310px; opacity: 0; }
  25%  { opacity: 0.5; }
  100% { width: 150px; height: 150px; opacity: 0; }
}
.seal .core {
  position: relative;
  width: 120px; height: 120px; border-radius: 50%;
  display: grid; place-content: center;
  background:
    radial-gradient(120% 120% at 30% 20%, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.03) 60%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow:
    0 0 50px rgba(255, 255, 255, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
  animation: seal-breathe 6.5s ease-in-out infinite;
}
.seal .core svg { width: 44px; height: 44px; stroke: #fff; fill: none; }
@keyframes seal-breathe {
  0%, 100% { transform: scale(1); box-shadow: 0 0 36px rgba(255, 255, 255, 0.10), inset 0 1px 0 rgba(255, 255, 255, 0.14); }
  50% { transform: scale(1.035); box-shadow: 0 0 60px rgba(255, 255, 255, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.14); }
}

/* ---------- earnings bars ---------- */

.bars {
  display: flex; align-items: flex-end; gap: 8px;
  height: 96px; padding-top: 8px;
}
.bars span {
  flex: 1; border-radius: 6px 6px 3px 3px;
  background: linear-gradient(180deg, rgba(195, 208, 255, 0.75), rgba(143, 162, 255, 0.25));
  transform-origin: bottom;
  transform: scaleY(0);
  transition: transform 0.8s var(--ease-spring);
}
.bars span.hot { background: linear-gradient(180deg, #ffb073, rgba(242, 100, 20, 0.4)); }
.in .bars span { transform: none; }
.bars span:nth-child(2) { transition-delay: 0.06s; }
.bars span:nth-child(3) { transition-delay: 0.12s; }
.bars span:nth-child(4) { transition-delay: 0.18s; }
.bars span:nth-child(5) { transition-delay: 0.24s; }
.bars span:nth-child(6) { transition-delay: 0.3s; }
.bars span:nth-child(7) { transition-delay: 0.36s; }

/* ---------- shift companion feed ----------
   The shift as a living object: tasks tick off, a note lands, a reminder
   fires, a redacted photo attaches — each on its own beat, on a loop. */

.feed { display: grid; gap: 8px; }
.feed-row {
  display: flex; align-items: center; gap: 11px;
  padding: 11px 14px; border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--hairline);
  font-size: 13px; font-weight: 550;
  opacity: 0; transform: translateY(10px) scale(0.98);
  transition: opacity 0.55s var(--ease-out), transform 0.55s var(--ease-spring),
              background 0.4s, border-color 0.4s;
}
.feed-row.show { opacity: 1; transform: none; }
.feed-row .box {
  width: 20px; height: 20px; border-radius: 50%; flex: none;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  display: grid; place-content: center;
  transition: background 0.4s, border-color 0.4s;
}
.feed-row .box svg { width: 11px; height: 11px; stroke: var(--on-accent); stroke-width: 3; opacity: 0; transition: opacity 0.3s; }
.feed-row.done .box { background: linear-gradient(135deg, #fff, #dfe6ff); border-color: transparent; }
.feed-row.done .box svg { opacity: 1; }
.feed-row.done .txt { color: var(--paper-faint); text-decoration: line-through; text-decoration-color: rgba(255, 255, 255, 0.3); }
.feed-row .fic { width: 20px; height: 20px; flex: none; display: grid; place-content: center; }
.feed-row .fic svg { width: 15px; height: 15px; stroke: rgba(195, 208, 255, 0.9); fill: none; }
.feed-row .meta { display: block; font-size: 10px; font-weight: 650; letter-spacing: 0.09em; text-transform: uppercase; color: var(--paper-faint); margin-bottom: 1px; }
.feed-row.event { background: rgba(143, 162, 255, 0.055); border-color: rgba(143, 162, 255, 0.16); }
.feed-row .pillow {
  margin-left: auto; flex: none;
  padding: 3px 9px; border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--hairline);
  font-size: 9.5px; font-weight: 700; letter-spacing: 0.07em;
  color: var(--paper-dim);
}

/* ---------- language & currency cards ---------- */

.hello-stage { height: 90px; display: grid; place-content: center; text-align: center; }
.hello-word {
  font-size: 46px; font-weight: 800; letter-spacing: -0.035em;
  background: linear-gradient(180deg, #fff 20%, rgba(255, 255, 255, 0.55));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  transition: opacity 0.55s var(--ease-out), filter 0.55s, transform 0.55s var(--ease-out);
}
.hello-word.out { opacity: 0; filter: blur(8px); transform: translateY(12px); }
.lang-rows { display: grid; gap: 6px; margin-top: 18px; }
.lang-row {
  display: flex; align-items: center; gap: 11px;
  padding: 9px 13px; border-radius: 13px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--hairline);
  font-size: 13px; font-weight: 600;
  transition: background 0.5s, border-color 0.5s;
}
.lang-row .fl { font-size: 16px; }
.lang-row small { margin-left: auto; font-size: 11px; font-weight: 500; color: var(--paper-faint); }
.lang-row .tick { width: 16px; height: 16px; flex: none; opacity: 0; transition: opacity 0.4s; }
.lang-row .tick svg { width: 16px; height: 16px; stroke: var(--aurora-mid); stroke-width: 2.5; fill: none; }
.lang-row.sel { background: rgba(143, 162, 255, 0.09); border-color: rgba(143, 162, 255, 0.3); }
.lang-row.sel .tick { opacity: 1; }

.rate-mock {
  margin-top: 22px;
  padding: 20px 22px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--hairline);
  display: flex; align-items: baseline; gap: 9px;
}
.rate-amount {
  font-size: 38px; font-weight: 800; letter-spacing: -0.03em;
  transition: opacity 0.5s var(--ease-out), filter 0.5s, transform 0.5s var(--ease-out);
}
.rate-amount.out { opacity: 0; filter: blur(7px); transform: translateY(8px); }
.rate-per { font-size: 14px; font-weight: 550; color: var(--paper-dim); }
.rate-chip {
  margin-left: auto; align-self: center;
  padding: 6px 13px; border-radius: 999px;
  background: rgba(143, 162, 255, 0.1);
  border: 1px solid rgba(143, 162, 255, 0.3);
  font-size: 12px; font-weight: 750; letter-spacing: 0.05em;
  color: var(--aurora-mid);
  transition: opacity 0.5s var(--ease-out);
}
.rate-chip.out { opacity: 0; }
.currency-strip { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }

/* ---------- remote overrun mock ----------
   A remote work day running past its plan: the timer counts, the bar has
   crossed its planned end, and the overrun is amber — visible now, not in
   a report next month. */

.overrun-mock {
  margin-top: 40px;
  max-width: 460px;
  padding: 24px 26px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--hairline);
}
.overrun-head { display: flex; align-items: center; gap: 8px; }
.overrun-head .lbl {
  font-size: 10px; font-weight: 650; letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.55);
}
.overrun-head .over-chip {
  margin-left: auto;
  padding: 4px 11px; border-radius: 999px;
  background: rgba(255, 144, 64, 0.13);
  border: 1px solid rgba(255, 144, 64, 0.35);
  font-size: 11px; font-weight: 700;
  color: var(--amber);
}
.overrun-time { font-size: 34px; font-weight: 800; letter-spacing: -0.03em; margin-top: 8px; }
.overrun-bar {
  position: relative; height: 4px; border-radius: 99px;
  background: rgba(255, 255, 255, 0.12);
  margin-top: 16px; overflow: hidden;
}
.overrun-bar .plan {
  position: absolute; inset: 0 auto 0 0; width: 91%;
  background: linear-gradient(90deg, var(--aurora-deep), var(--aurora-pale));
  border-radius: 99px;
}
.overrun-bar .over {
  position: absolute; inset: 0 0 0 auto; width: 9%;
  background: linear-gradient(90deg, var(--amber), var(--ember));
  border-radius: 0 99px 99px 0;
  box-shadow: 0 0 8px rgba(255, 144, 64, 0.5);
  animation: over-pulse 2.2s ease-in-out infinite;
}
@keyframes over-pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.55; } }
.overrun-foot {
  display: flex; justify-content: space-between;
  margin-top: 10px;
  font-size: 11.5px; font-weight: 550; color: var(--paper-faint);
}
.overrun-foot .amber { color: var(--amber); }

/* ---------- ways-in list (glass rows) ---------- */

.ways { border-radius: var(--radius); border: 1px solid var(--hairline); background: var(--card); overflow: hidden; }
.way {
  display: flex; align-items: center; gap: 16px;
  padding: 20px 22px;
}
.way + .way { border-top: 1px solid var(--hairline); }
.way .ic {
  width: 40px; height: 40px; border-radius: 50%; flex: none;
  display: grid; place-content: center;
  background: rgba(255, 255, 255, 0.07);
}
.way .ic svg { width: 17px; height: 17px; stroke: rgba(255, 255, 255, 0.9); }
.way b { display: block; font-size: 15px; font-weight: 650; letter-spacing: -0.01em; }
.way small { display: block; font-size: 12.5px; color: var(--paper-dim); margin-top: 1px; }

/* ---------- stats band ---------- */

.stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  text-align: center;
}
@media (max-width: 760px) { .stats { grid-template-columns: repeat(2, 1fr); } }
.stat .value {
  font-size: clamp(38px, 5vw, 56px); font-weight: 800; letter-spacing: -0.03em;
  background: linear-gradient(180deg, #fff, rgba(255, 255, 255, 0.55));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.stat .label { font-size: 13.5px; color: var(--paper-dim); margin-top: 4px; }

/* ---------- mode / edition cards ---------- */

.mode-card { display: flex; flex-direction: column; }
.mode-card .mode-ic {
  width: 46px; height: 46px; border-radius: 50%;
  display: grid; place-content: center;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--hairline);
  margin-bottom: 16px;
}
.mode-card .mode-ic svg { width: 21px; height: 21px; stroke: rgba(255, 255, 255, 0.92); }
.mode-card h3 { font-size: 16.5px; font-weight: 650; letter-spacing: -0.01em; margin-bottom: 6px; }
.mode-card p { flex: 1; }
.mode-card .term {
  margin-top: 16px;
  display: inline-flex; align-self: flex-start;
  padding: 5px 12px; border-radius: 999px;
  background: rgba(143, 162, 255, 0.1);
  border: 1px solid rgba(143, 162, 255, 0.28);
  font-size: 10.5px; font-weight: 700; letter-spacing: 0.11em;
  color: var(--aurora-mid);
}

.cat-head {
  display: flex; align-items: center; gap: 12px;
  margin: clamp(44px, 6vw, 64px) 0 20px;
}
.cat-head:first-of-type { margin-top: 0; }
.cat-head h2 { font-size: 21px; font-weight: 700; letter-spacing: -0.02em; }
.cat-head .line { flex: 1; height: 1px; background: var(--hairline); }

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

.price-cards {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  align-items: stretch;
  max-width: 1020px; margin: 0 auto;
}
@media (max-width: 940px) { .price-cards { grid-template-columns: 1fr; max-width: 460px; } }

.price-card { display: flex; flex-direction: column; padding: 42px 36px; }
.price-card.featured {
  background: linear-gradient(180deg, rgba(143, 162, 255, 0.09), rgba(255, 255, 255, 0.03) 55%);
  border-color: rgba(143, 162, 255, 0.4);
  box-shadow: 0 0 60px rgba(143, 162, 255, 0.09);
}
.price-card.featured:hover { border-color: rgba(143, 162, 255, 0.55); }
.price-card .badge {
  position: absolute; top: 18px; right: 18px;
  padding: 5px 13px; border-radius: 999px;
  background: linear-gradient(135deg, #fff, #dfe6ff);
  color: var(--on-accent);
  font-size: 11px; font-weight: 750; letter-spacing: 0.04em;
}
.plan-name { font-size: 13px; font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase; color: var(--paper-dim); }
.price-tag { display: flex; align-items: baseline; gap: 8px; margin: 14px 0 6px; }
.price-tag .amount { font-size: 46px; font-weight: 800; letter-spacing: -0.03em; }
.price-tag .per { font-size: 14.5px; color: var(--paper-dim); }
.price-sub { font-size: 13.5px; color: var(--paper-dim); min-height: 42px; }
.price-card ul { list-style: none; margin: 22px 0 26px; display: grid; gap: 11px; flex: 1; }
.price-card li { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; color: var(--paper-dim); }
.price-card li svg { width: 16px; height: 16px; flex: none; margin-top: 3px; stroke: var(--aurora-mid); }
.price-card .btn { width: 100%; }

.strength-chips { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; }
.strength-chips .chip { font-size: 13px; padding: 9px 17px; }

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

.faq { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--hairline); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 22px 4px; text-align: left;
  font-size: 16.5px; font-weight: 600; letter-spacing: -0.01em;
  transition: color 0.25s;
}
.faq-q:hover { color: var(--aurora-mid); }
.faq-q svg { width: 18px; height: 18px; flex: none; stroke: var(--paper-faint); transition: transform 0.4s var(--ease-out); }
.faq-item.open .faq-q svg { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.5s var(--ease-out); }
.faq-a-inner { padding: 0 4px 24px; font-size: 15px; color: var(--paper-dim); max-width: 64ch; }

/* ---------- CTA band ---------- */

.cta-band {
  position: relative;
  text-align: center;
  padding: clamp(90px, 12vw, 150px) 0;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute; left: 50%; bottom: -320px;
  width: 1000px; height: 640px; transform: translateX(-50%);
  background: radial-gradient(closest-side, rgba(143, 162, 255, 0.16), transparent 72%);
  pointer-events: none;
}
.cta-band .wrap { position: relative; }

/* ---------- prose (legal / support) ---------- */

.prose { max-width: 720px; }
.prose h2 { font-size: 24px; font-weight: 700; letter-spacing: -0.02em; margin: 44px 0 14px; }
.prose h3 { font-size: 17px; font-weight: 650; margin: 28px 0 10px; }
.prose p, .prose li { font-size: 15.5px; color: var(--paper-dim); margin-bottom: 12px; }
.prose ul { padding-left: 22px; margin-bottom: 14px; }
.prose strong { color: var(--paper); font-weight: 650; }
.prose .updated { font-size: 13px; color: var(--paper-faint); }
.prose a { color: var(--aurora-mid); border-bottom: 1px solid rgba(195, 208, 255, 0.3); transition: border-color 0.25s; }
.prose a:hover { border-color: var(--aurora-mid); }

.page-hero { padding: clamp(140px, 16vh, 180px) 0 clamp(30px, 5vw, 60px); position: relative; overflow: hidden; }

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

.footer { border-top: 1px solid var(--hairline); padding: 88px 0 48px; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
  margin-bottom: 64px;
}
@media (max-width: 820px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
.footer-brand { display: flex; align-items: center; gap: 10px; font-weight: 750; font-size: 17px; margin-bottom: 14px; }
.footer-brand img { width: 24px; height: 24px; border-radius: 6px; }
.footer p { font-size: 13.5px; color: var(--paper-faint); }
.footer h4 { font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--paper-faint); margin-bottom: 16px; }
.footer ul { list-style: none; display: grid; gap: 10px; }
.footer ul a { font-size: 14px; color: var(--paper-dim); transition: color 0.25s; }
.footer ul a:hover { color: var(--paper); }
.footer-base {
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  padding-top: 28px; border-top: 1px solid var(--hairline);
  font-size: 13px; color: var(--paper-faint);
}
