/* Cratune — aquadics.com/cratune
   Self-contained design system. No build step. */

:root {
  --bg: #08070c;
  --bg-2: #0f0d17;
  --bg-3: #16131f;
  --ink: #f4f1fa;
  --ink-2: #b9b3c9;
  --ink-3: #7d7690;
  --line: rgba(255, 255, 255, 0.08);
  --line-2: rgba(255, 255, 255, 0.14);
  --coral: #ff8a5b;
  --magenta: #ff2d8f;
  --violet: #6d3df5;
  --blue: #3b2bff;
  --grad: linear-gradient(120deg, var(--coral) 0%, var(--magenta) 45%, var(--violet) 100%);
  --grad-soft: linear-gradient(120deg, rgba(255,138,91,.35), rgba(255,45,143,.35), rgba(109,61,245,.35));
  --glow: 0 0 60px rgba(255, 45, 143, 0.35), 0 0 120px rgba(109, 61, 245, 0.25);
  --radius: 22px;
  --radius-sm: 14px;
  --max: 1160px;
  --gutter: clamp(20px, 5vw, 48px);
  --font: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", Helvetica, Arial, system-ui, sans-serif;
  --mono: "SF Mono", ui-monospace, Menlo, monospace;
  color-scheme: dark;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }
h1, h2, h3, h4, p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }

.wrap { width: min(var(--max), 100% - 2 * var(--gutter)); margin-inline: auto; }
.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink-2);
}
.eyebrow::before { content: ""; width: 22px; height: 2px; background: var(--grad); border-radius: 2px; }

.h-display {
  font-size: clamp(2.6rem, 7.2vw, 5.6rem);
  line-height: .98;
  letter-spacing: -0.035em;
  font-weight: 800;
}
.h-section {
  font-size: clamp(2rem, 4.6vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 750;
}
.lede { font-size: clamp(1.1rem, 1.6vw, 1.35rem); color: var(--ink-2); max-width: 44ch; }
.small { font-size: 14px; color: var(--ink-3); }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: saturate(160%) blur(18px);
  -webkit-backdrop-filter: saturate(160%) blur(18px);
  background: rgba(8, 7, 12, 0.55);
  border-bottom: 1px solid var(--line);
}
.nav__in { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.brand { display: flex; align-items: center; gap: 12px; font-weight: 700; letter-spacing: -0.01em; }
.brand img { width: 32px; height: 32px; border-radius: 8px; }
.nav__links { display: flex; gap: 28px; font-size: 15px; color: var(--ink-2); }
.nav__links a:hover { color: var(--ink); }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  height: 44px; padding: 0 20px; border-radius: 999px;
  font-weight: 600; font-size: 15px; white-space: nowrap;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn--primary { background: var(--ink); color: #0b0a10; }
.btn--primary:hover { transform: translateY(-1px); box-shadow: 0 10px 30px rgba(255,255,255,.12); }
.btn--ghost { border: 1px solid var(--line-2); color: var(--ink); }
.btn--ghost:hover { background: rgba(255,255,255,.06); }
.btn--sm { height: 36px; padding: 0 14px; font-size: 14px; }
@media (max-width: 720px) { .nav__links { display: none; } }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: clamp(64px, 10vw, 120px) 0 clamp(48px, 8vw, 96px);
  overflow: hidden;
  isolation: isolate;
}
.aurora {
  position: absolute; inset: -20% -10% auto; height: 120%;
  z-index: -1; pointer-events: none;
  filter: blur(70px) saturate(130%);
  opacity: .75;
}
.aurora span {
  position: absolute; border-radius: 50%;
  width: 46vw; height: 46vw; min-width: 320px; min-height: 320px;
  mix-blend-mode: screen;
  animation: drift 22s ease-in-out infinite alternate;
}
.aurora span:nth-child(1) { left: -8%; top: 4%; background: radial-gradient(circle, rgba(255,45,143,.55), transparent 62%); }
.aurora span:nth-child(2) { right: -10%; top: -6%; background: radial-gradient(circle, rgba(109,61,245,.6), transparent 62%); animation-duration: 28s; animation-delay: -8s; }
.aurora span:nth-child(3) { left: 30%; top: 30%; background: radial-gradient(circle, rgba(255,138,91,.35), transparent 62%); animation-duration: 25s; animation-delay: -14s; }
@keyframes drift {
  from { transform: translate3d(0,0,0) scale(1); }
  to   { transform: translate3d(6vw, 4vw, 0) scale(1.15); }
}
.grain {
  position: absolute; inset: 0; z-index: -1; pointer-events: none; opacity: .5;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 .06 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  mix-blend-mode: overlay;
}

.hero__grid {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(32px, 5vw, 72px); align-items: center;
}
.hero__copy { display: grid; gap: 26px; }
.hero__copy .lede { max-width: 40ch; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.store-badge { display: inline-flex; height: 52px; }
.store-badge img { height: 100%; width: auto; }
.hero__meta { display: flex; flex-wrap: wrap; gap: 8px 22px; font-size: 14px; color: var(--ink-3); }
.hero__meta li { display: flex; align-items: center; gap: 8px; }
.hero__meta li::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--grad); }

@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__visual { order: -1; }
}

/* ---------- Spinning mark ---------- */
.mark-stage { position: relative; display: grid; place-items: center; aspect-ratio: 1; max-width: 520px; margin-inline: auto; }
.mark-stage .mark { width: 72%; filter: drop-shadow(0 30px 60px rgba(109,61,245,.35)); }
/* Ring rotation is done with SVG animateTransform in the markup (explicit centre 120,120), not CSS. */
.mark .tag circle:first-child { animation: pulse 2.4s ease-in-out infinite; transform-origin: center; transform-box: fill-box; }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes pulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.18); } }
.mark-ring {
  position: absolute; inset: 6%; border-radius: 50%;
  border: 1px solid var(--line);
  mask: conic-gradient(from 0deg, #000 0 40%, transparent 40% 60%, #000 60%);
  animation: spin 40s linear infinite reverse;
}
.mark-ring--2 { inset: 0; opacity: .6; animation-duration: 64s; animation-direction: normal; }

/* Floating tag chips around the mark */
.float-chip {
  position: absolute; display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 12px; border-radius: 999px; font-size: 13px; font-weight: 600;
  background: rgba(255,255,255,.06); border: 1px solid var(--line-2);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
}
.float-chip i { width: 8px; height: 8px; border-radius: 50%; background: var(--grad); }
.float-chip:nth-of-type(1) { left: 0; top: 18%; animation-delay: -1s; }
.float-chip:nth-of-type(2) { right: -2%; top: 30%; animation-delay: -3s; }
.float-chip:nth-of-type(3) { left: 8%; bottom: 14%; animation-delay: -2s; }
.float-chip:nth-of-type(4) { right: 6%; bottom: 8%; animation-delay: -4.5s; }
@keyframes bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* ---------- Ticker ---------- */
.ticker { border-block: 1px solid var(--line); padding: 18px 0; overflow: hidden; background: var(--bg-2); }
.ticker__track { display: flex; gap: 48px; width: max-content; animation: ticker 40s linear infinite; }
.ticker__track span { display: inline-flex; align-items: center; gap: 12px; font-size: 14px; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-3); white-space: nowrap; }
.ticker__track span::after { content: "◆"; font-size: 8px; color: var(--magenta); opacity: .8; }
@keyframes ticker { to { transform: translateX(-50%); } }

/* ---------- Sections ---------- */
.section { padding: clamp(72px, 10vw, 140px) 0; position: relative; }
.section--tight { padding-block: clamp(48px, 7vw, 96px); }
.section__head { display: grid; gap: 18px; max-width: 760px; margin-bottom: clamp(40px, 6vw, 72px); }
.section__head .lede { max-width: 56ch; }

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s cubic-bezier(.2,.7,.2,1), transform .8s cubic-bezier(.2,.7,.2,1); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .1s; }
.reveal[data-delay="2"] { transition-delay: .2s; }
.reveal[data-delay="3"] { transition-delay: .3s; }

/* ---------- Live demo (phone) ---------- */
.demo { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 96px); align-items: center; }
.demo__steps { display: grid; gap: 8px; counter-reset: step; }
.step {
  display: grid; grid-template-columns: 44px 1fr; gap: 16px; align-items: start;
  padding: 18px 18px 18px 14px; border-radius: var(--radius-sm);
  border: 1px solid transparent; transition: background .4s, border-color .4s;
}
.step.is-active { background: rgba(255,255,255,.04); border-color: var(--line); }
.step__n {
  width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center;
  font-family: var(--mono); font-size: 14px; font-weight: 700; color: var(--ink-2);
  border: 1px solid var(--line-2); position: relative; overflow: hidden;
}
.step.is-active .step__n { color: #fff; border-color: transparent; }
.step.is-active .step__n::before { content: ""; position: absolute; inset: 0; background: var(--grad); z-index: -1; }
.step h3 { font-size: 1.15rem; font-weight: 700; letter-spacing: -0.01em; margin-bottom: 4px; }
.step p { color: var(--ink-2); font-size: 15.5px; }

.phone {
  --w: 300px;
  width: var(--w); aspect-ratio: 9 / 19.3; margin-inline: auto;
  border-radius: 48px; padding: 10px;
  background: linear-gradient(160deg, #2a2735, #0d0c12 60%);
  box-shadow: 0 40px 100px rgba(0,0,0,.6), inset 0 0 0 1px rgba(255,255,255,.08), var(--glow);
  position: relative;
}
.phone__screen {
  position: absolute; inset: 10px; border-radius: 40px; overflow: hidden;
  background: #0b0a10; display: flex; flex-direction: column;
  font-size: 12px;
}
.phone__island { position: absolute; top: 14px; left: 50%; transform: translateX(-50%); width: 92px; height: 26px; border-radius: 20px; background: #000; z-index: 3; }
.scr { padding: 58px 16px 16px; display: flex; flex-direction: column; gap: 12px; height: 100%; }
.scr__title { font-size: 22px; font-weight: 800; letter-spacing: -0.02em; }
.scr__sub { color: var(--ink-3); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; font-weight: 600; }

.now {
  border-radius: 18px; padding: 12px; display: grid; grid-template-columns: 48px 1fr; gap: 12px; align-items: center;
  background: linear-gradient(140deg, rgba(255,45,143,.22), rgba(109,61,245,.22));
  border: 1px solid rgba(255,255,255,.1);
  transform: translateY(-16px); opacity: 0; transition: transform .6s cubic-bezier(.2,.8,.2,1), opacity .6s;
}
.now.is-in { transform: none; opacity: 1; }
.now__art { width: 48px; height: 48px; border-radius: 10px; background: var(--grad); position: relative; overflow: hidden; }
.now__art::after { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.5), transparent 45%); }
.now__t { font-weight: 700; font-size: 13px; line-height: 1.2; }
.now__a { color: var(--ink-2); font-size: 11.5px; }
.now__badge { display: inline-flex; align-items: center; gap: 6px; margin-top: 6px; font-size: 10px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: #ffd0e5; }
.now__badge i { width: 6px; height: 6px; border-radius: 50%; background: #7CFF9B; box-shadow: 0 0 10px #7CFF9B; }

.listen { display: flex; align-items: center; gap: 10px; color: var(--ink-2); font-size: 12px; padding: 4px 2px; min-height: 28px; }
.listen .bars { display: inline-flex; gap: 3px; align-items: flex-end; height: 16px; }
.listen .bars i { width: 3px; background: var(--grad); border-radius: 2px; animation: eq .9s ease-in-out infinite; }
.listen .bars i:nth-child(2) { animation-delay: -.2s; } .listen .bars i:nth-child(3) { animation-delay: -.4s; } .listen .bars i:nth-child(4) { animation-delay: -.6s; }
@keyframes eq { 0%, 100% { height: 4px; } 50% { height: 16px; } }

.crate { display: grid; gap: 8px; }
.crate__name { font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-3); font-weight: 700; }
.bins { display: flex; flex-wrap: wrap; gap: 6px; }
.bin {
  padding: 7px 11px; border-radius: 999px; font-size: 12px; font-weight: 600;
  border: 1px solid var(--line-2); color: var(--ink-2); background: rgba(255,255,255,.03);
  transition: background .35s, color .35s, border-color .35s, transform .35s;
  position: relative;
}
.bin.is-on { background: var(--grad); color: #fff; border-color: transparent; transform: scale(1.04); }
.bin.is-tap::after {
  content: ""; position: absolute; inset: -4px; border-radius: inherit; border: 2px solid rgba(255,255,255,.6);
  animation: tapring .6s ease-out forwards;
}
@keyframes tapring { from { opacity: 1; transform: scale(.9); } to { opacity: 0; transform: scale(1.25); } }

.synced {
  margin-top: auto; display: flex; align-items: center; gap: 10px; padding: 10px 12px; border-radius: 14px;
  background: rgba(124,255,155,.08); border: 1px solid rgba(124,255,155,.25); color: #baffcb; font-size: 11.5px; font-weight: 600;
  opacity: 0; transform: translateY(8px); transition: opacity .5s, transform .5s;
}
.synced.is-in { opacity: 1; transform: none; }
.synced svg { width: 16px; height: 16px; flex: none; }

@media (max-width: 900px) { .demo { grid-template-columns: 1fr; } .phone { --w: 280px; } }

/* ---------- Feature bento ---------- */
.bento { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.card {
  position: relative; overflow: hidden;
  border-radius: var(--radius); padding: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  border: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 14px; min-height: 240px;
  transition: transform .4s cubic-bezier(.2,.7,.2,1), border-color .4s;
}
.card:hover { transform: translateY(-4px); border-color: var(--line-2); }
.card::before {
  content: ""; position: absolute; inset: -1px; border-radius: inherit; padding: 1px; pointer-events: none;
  background: var(--grad); opacity: 0; transition: opacity .4s;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude;
}
.card:hover::before { opacity: .7; }
.card h3 { font-size: 1.3rem; font-weight: 750; letter-spacing: -0.02em; }
.card p { color: var(--ink-2); font-size: 15.5px; }
.card .ico { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; background: rgba(255,255,255,.06); border: 1px solid var(--line); }
.card .ico svg { width: 22px; height: 22px; }
.card--3 { grid-column: span 3; } .card--2 { grid-column: span 2; } .card--4 { grid-column: span 4; } .card--6 { grid-column: span 6; }
.card__art { margin-top: auto; }
@media (max-width: 900px) { .bento { grid-template-columns: 1fr 1fr; } .card--3, .card--2, .card--4, .card--6 { grid-column: span 2; } }
@media (max-width: 560px) { .bento { grid-template-columns: 1fr; } .card--3, .card--2, .card--4, .card--6 { grid-column: span 1; } }

/* Playlist tree art */
.tree { font-family: var(--mono); font-size: 12.5px; color: var(--ink-2); display: grid; gap: 6px; }
.tree div { display: flex; align-items: center; gap: 8px; }
.tree .f { color: var(--ink); font-weight: 600; }
.tree .p { padding-left: 22px; }
.tree .p::before { content: "♪"; color: var(--magenta); }
.tree .grow { animation: grow .6s ease-out both; }

/* Logo row */
.logos { display: flex; flex-wrap: wrap; gap: 10px; }
.logos span { padding: 8px 14px; border-radius: 10px; border: 1px solid var(--line); font-size: 13px; font-weight: 600; color: var(--ink-2); background: rgba(255,255,255,.03); }

/* Watch */
.watch-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 96px); align-items: center; }
.watch {
  width: 200px; aspect-ratio: 1 / 1.22; margin-inline: auto; border-radius: 52px;
  background: linear-gradient(160deg, #2a2735, #0d0c12 60%);
  box-shadow: 0 30px 80px rgba(0,0,0,.6), inset 0 0 0 1px rgba(255,255,255,.08), var(--glow);
  position: relative; padding: 10px;
}
.watch::before, .watch::after { content: ""; position: absolute; left: 50%; transform: translateX(-50%); width: 84px; height: 60px; background: #14121c; z-index: -1; border-radius: 12px; }
.watch::before { top: -50px; } .watch::after { bottom: -50px; }
.watch__crown { position: absolute; right: -8px; top: 28%; width: 8px; height: 34px; border-radius: 4px; background: #3a3646; }
.watch__screen { position: absolute; inset: 10px; border-radius: 44px; background: #000; overflow: hidden; padding: 22px 16px; display: flex; flex-direction: column; gap: 10px; font-size: 12px; }
.watch__now { font-weight: 700; font-size: 13px; line-height: 1.2; }
.watch__sub { color: var(--ink-3); font-size: 10.5px; }
.watch .bins { gap: 5px; } .watch .bin { font-size: 11px; padding: 6px 9px; }
@media (max-width: 900px) { .watch-wrap { grid-template-columns: 1fr; } }

/* ---------- Quote band ---------- */
.band { background: var(--bg-2); border-block: 1px solid var(--line); }
.band blockquote { margin: 0; font-size: clamp(1.4rem, 3vw, 2.2rem); font-weight: 600; letter-spacing: -0.02em; line-height: 1.25; max-width: 28ch; }
.band cite { display: block; margin-top: 18px; font-style: normal; color: var(--ink-3); font-size: 15px; }

/* ---------- Pricing ---------- */
.plans { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; max-width: 880px; }
.plan { border-radius: var(--radius); padding: 32px; border: 1px solid var(--line); background: rgba(255,255,255,.03); display: grid; gap: 20px; align-content: start; }
.plan--pro { position: relative; background: linear-gradient(180deg, rgba(255,45,143,.12), rgba(109,61,245,.08)); border-color: rgba(255,255,255,.16); }
.plan__name { font-size: 14px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-2); font-weight: 700; }
.plan__price { font-size: 2.6rem; font-weight: 800; letter-spacing: -0.03em; line-height: 1; }
.plan__price small { font-size: 1rem; font-weight: 500; color: var(--ink-3); letter-spacing: 0; }
.plan ul { display: grid; gap: 10px; color: var(--ink-2); font-size: 15.5px; }
.plan li { display: flex; gap: 10px; align-items: flex-start; }
.plan li::before { content: ""; flex: none; width: 18px; height: 18px; margin-top: 2px; background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><defs><linearGradient id='g' x1='0' y1='0' x2='1' y2='1'><stop offset='0' stop-color='%23ff8a5b'/><stop offset='.5' stop-color='%23ff2d8f'/><stop offset='1' stop-color='%236d3df5'/></linearGradient></defs><circle cx='12' cy='12' r='12' fill='url(%23g)'/><path d='M7 12.5l3 3 7-7' stroke='white' stroke-width='2.4' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>") center/contain no-repeat; }
.plan__tag { position: absolute; top: 18px; right: 18px; padding: 5px 10px; border-radius: 999px; background: var(--grad); font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
@media (max-width: 720px) { .plans { grid-template-columns: 1fr; } }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; display: grid; }
.faq details { border-top: 1px solid var(--line); }
.faq details:last-child { border-bottom: 1px solid var(--line); }
.faq summary { cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 22px 0; font-size: 1.1rem; font-weight: 650; letter-spacing: -0.01em; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.6rem; font-weight: 300; color: var(--ink-3); transition: transform .3s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { color: var(--ink-2); padding: 0 0 22px; max-width: 64ch; }

/* ---------- Final CTA ---------- */
.cta {
  position: relative; overflow: hidden; border-radius: 32px; padding: clamp(48px, 8vw, 96px) clamp(24px, 6vw, 72px);
  text-align: center; display: grid; gap: 24px; justify-items: center;
  background: var(--bg-2); border: 1px solid var(--line);
}
.cta .aurora { inset: -40% -20%; height: 180%; opacity: .55; }
.cta .h-section { max-width: 18ch; }
.cta__icon { width: 96px; height: 96px; border-radius: 24px; box-shadow: 0 20px 60px rgba(109,61,245,.45); }

/* ---------- Footer ---------- */
.footer { padding: 48px 0 40px; border-top: 1px solid var(--line); color: var(--ink-3); font-size: 14px; }
.footer__in { display: flex; flex-wrap: wrap; gap: 18px 32px; justify-content: space-between; align-items: center; }
.footer__links { display: flex; flex-wrap: wrap; gap: 22px; }
.footer__links a:hover { color: var(--ink); }

/* ---------- Legal pages ---------- */
.legal { padding: clamp(56px, 8vw, 112px) 0; }
.legal .h-section { margin-bottom: 12px; }
.legal__meta { color: var(--ink-3); margin-bottom: 40px; }
.prose { max-width: 72ch; display: grid; gap: 18px; color: var(--ink-2); font-size: 16.5px; }
.prose h2 { color: var(--ink); font-size: 1.25rem; font-weight: 700; letter-spacing: -0.01em; margin-top: 18px; }
.prose a { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; text-decoration-color: var(--magenta); }
.prose address { font-style: normal; line-height: 1.7; color: var(--ink); }
.reversed { direction: rtl; unicode-bidi: bidi-override; display: inline-block; }

/* ---------- Motion safety ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}
