/* astracrm.net — dark editorial product landing
   ------------------------------------------------------------------ */

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 96px; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
img, svg { display: block; max-width: 100%; }
button, input, textarea { font: inherit; color: inherit; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--violet); color: #fff; }

/* ---------- Tokens ---------- */
:root {
  --ink: #08080b;
  --ink-2: #0d0d13;
  --surface: #101017;
  --surface-2: #16161f;
  --line: rgba(255, 255, 255, 0.09);
  --line-soft: rgba(255, 255, 255, 0.05);
  --text: #f2f2f5;
  --text-dim: #9a9aa8;
  --text-mute: #6c6c78;
  --violet: #7c5cff;
  --blue: #6e93ff;
  --mint: #33e1c4;

  --font-display: "Unbounded", "Manrope", system-ui, sans-serif;
  --font-body: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;

  --wrap: 1240px;
  --gutter: clamp(20px, 5vw, 64px);
  --radius: 18px;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---------- Base ---------- */
body {
  background: var(--ink);
  color: var(--text);
  font-family: var(--font-body);
  font-size: clamp(15px, 1.05vw, 17px);
  line-height: 1.62;
  font-weight: 400;
  letter-spacing: -0.005em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }

h1, h2, h3 { font-family: var(--font-display); font-weight: 700; line-height: 1.0; letter-spacing: -0.03em; }
h1 { font-size: clamp(2.7rem, 8vw, 6.4rem); }
h2 { font-size: clamp(2rem, 5.2vw, 3.8rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.5rem); letter-spacing: -0.02em; }

p { color: var(--text-dim); }
strong { color: var(--text); font-weight: 600; }

.mono {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-mute);
  font-weight: 500;
}

.accent { color: var(--violet); }
.accent-2 { color: var(--mint); }

/* ---------- Custom cursor ---------- */
.cursor-dot, .cursor-ring { position: fixed; top: 0; left: 0; z-index: 9999; pointer-events: none; border-radius: 50%; mix-blend-mode: difference; will-change: transform; }
.cursor-dot { width: 6px; height: 6px; background: #fff; margin: -3px 0 0 -3px; }
.cursor-ring { width: 40px; height: 40px; margin: -20px 0 0 -20px; border: 1px solid rgba(255, 255, 255, 0.55); transition: width .3s var(--ease), height .3s var(--ease), margin .3s var(--ease), background-color .3s var(--ease); }
.cursor-ring.is-active { width: 66px; height: 66px; margin: -33px 0 0 -33px; background: rgba(255, 255, 255, 0.12); border-color: transparent; }
@media (hover: hover) and (pointer: fine) {
  body.has-cursor, body.has-cursor a, body.has-cursor button, body.has-cursor input, body.has-cursor label { cursor: none; }
}
@media (hover: none), (pointer: coarse) { .cursor-dot, .cursor-ring { display: none; } }

/* ---------- Grain + progress ---------- */
.grain {
  position: fixed; inset: -50%; z-index: 9000; pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain 6s steps(6) infinite;
}
@keyframes grain {
  0%, 100% { transform: translate(0, 0); }
  20% { transform: translate(-4%, 3%); }
  40% { transform: translate(3%, -5%); }
  60% { transform: translate(-2%, 4%); }
  80% { transform: translate(5%, 2%); }
}
.scroll-progress { position: fixed; top: 0; left: 0; height: 2px; width: 100%; transform: scaleX(0); transform-origin: 0 50%; background: linear-gradient(90deg, var(--violet), var(--blue), var(--mint)); z-index: 9500; }

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 800;
  display: flex; align-items: center;
  padding-block: 18px;
  transition: background-color .4s var(--ease), border-color .4s var(--ease), padding .4s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.is-stuck {
  background: rgba(8, 8, 11, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
  padding-block: 12px;
}
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand img { width: 34px; height: 34px; border-radius: 9px; }
.brand span { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; letter-spacing: -0.03em; }
.nav { display: flex; align-items: center; gap: 34px; }
.nav a { font-size: 0.9rem; color: var(--text-dim); position: relative; transition: color .25s var(--ease); }
.nav a::after { content: ""; position: absolute; left: 0; bottom: -6px; width: 100%; height: 1px; background: var(--text); transform: scaleX(0); transform-origin: 100% 50%; transition: transform .4s var(--ease); }
.nav a:hover { color: var(--text); }
.nav a:hover::after { transform: scaleX(1); transform-origin: 0 50%; }
@media (max-width: 860px) { .nav .nav-link { display: none; } }
@media (max-width: 560px) {
  .site-header .wrap { gap: 12px; }
  .brand img { width: 30px; height: 30px; }
  .brand span { font-size: 0.95rem; }
  .site-header .btn { padding: 10px 15px; font-size: 0.76rem; }
  .site-header .btn .dot { display: none; }
  .hero__kicker { font-size: 0.62rem; letter-spacing: 0.16em; }
}

.btn {
  --bg: var(--text); --fg: var(--ink);
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 22px; border-radius: 999px;
  background: var(--bg); color: var(--fg);
  font-weight: 600; font-size: 0.9rem; letter-spacing: -0.01em;
  border: 1px solid transparent;
  white-space: nowrap;
  transition: transform .25s var(--ease), background-color .25s var(--ease), color .25s var(--ease);
  will-change: transform;
}
.btn:hover { background: var(--violet); color: #fff; }
.btn--ghost { --bg: transparent; --fg: var(--text); border-color: var(--line); }
.btn--ghost:hover { background: rgba(255,255,255,0.06); color: var(--text); border-color: rgba(255,255,255,0.2); }
.btn--lg { padding: 17px 30px; font-size: 0.98rem; }
.btn .dot { width: 7px; height: 7px; border-radius: 50%; background: currentColor; opacity: 0.5; }

/* ---------- Reveal primitives ---------- */
.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.js .reveal.in { opacity: 1; transform: none; }
.word { display: inline-block; overflow: hidden; vertical-align: top; }
.word > i { display: inline-block; font-style: inherit; }
.js .word > i { transform: translateY(110%); transition: transform .8s var(--ease); }
.js .line-in .word > i { transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal, .word > i { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 100svh; display: flex; flex-direction: column; justify-content: center; padding-block: 150px 0; overflow: hidden; container-type: inline-size; }

/* image-stream corridor: two rails of cards riding out of the vanishing point.
   Geometry ported 1:1 from the ImageStreamHero component; every length is cqw. */
.hero__corridor { position: absolute; inset: 0; z-index: 0; pointer-events: none; perspective: 30cqw; perspective-origin: 50% 55%; }
.hero__corridor-stage { position: absolute; inset: 0; transform-style: preserve-3d; }
.rc {
  position: absolute; left: 50%; top: 55%;
  width: 18cqw; height: 25cqw; margin-left: -9cqw; margin-top: -12.5cqw;
  border-radius: 0.4cqw; overflow: hidden;
  backface-visibility: hidden;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  animation-duration: 18s; animation-timing-function: linear; animation-iteration-count: infinite;
  will-change: transform;
}
.rc--r { animation-name: ish-r; }
.rc--l { animation-name: ish-l; }
@media (prefers-reduced-motion: reduce) { .rc { animation-play-state: paused; } }
@media (max-width: 560px) {
  .hero__corridor { perspective-origin: 50% 63%; }
  .rc { top: 63%; }
}

.hero__scrim {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    radial-gradient(125% 78% at 50% 46%, rgba(8, 8, 11, 0.94) 0%, rgba(8, 8, 11, 0.74) 32%, rgba(8, 8, 11, 0.2) 60%, rgba(8, 8, 11, 0) 78%),
    linear-gradient(to bottom, var(--ink) 0%, rgba(8, 8, 11, 0) 20%, rgba(8, 8, 11, 0) 64%, var(--ink) 98%);
}

/* corridor card fills — brand palette, no external assets */
.g1  { background: linear-gradient(135deg, #7c5cff, #6e93ff); }
.g2  { background: linear-gradient(135deg, #6e93ff, #33e1c4); }
.g3  { background: linear-gradient(160deg, #33e1c4, #7c5cff); }
.g4  { background: linear-gradient(180deg, #1a1730, #0b0b12); }
.g5  { background: radial-gradient(120% 90% at 30% 20%, #8b6bff, #14121f 72%); }
.g6  { background: linear-gradient(200deg, #6e93ff, #7c5cff 70%); }
.g7  { background: linear-gradient(120deg, #33e1c4, #6e93ff 45%, #7c5cff); }
.g8  { background: linear-gradient(180deg, #141420, #0d0d13); }
.g9  { background: linear-gradient(150deg, #a98bff, #6e6bff); }
.g10 { background: radial-gradient(120% 100% at 70% 30%, #2fc7b8, #0e1a1c 74%); }
.g11 { background: linear-gradient(135deg, #6e93ff, #33e1c4 90%); }
.g12 { background: linear-gradient(160deg, #7c5cff, #0b0b12 92%); }

@keyframes ish-r {
  0.00% { transform: translate3d(-11.00cqw, 0, -258.46cqw) rotateY(-6.00deg); }
  4.17% { transform: translate3d(-3.79cqw, 0, -225.92cqw) rotateY(-6.92deg); }
  8.33% { transform: translate3d(2.73cqw, 0, -197.04cqw) rotateY(-7.83deg); }
  12.50% { transform: translate3d(8.60cqw, 0, -171.43cqw) rotateY(-8.75deg); }
  16.67% { transform: translate3d(13.87cqw, 0, -148.70cqw) rotateY(-9.67deg); }
  20.83% { transform: translate3d(18.56cqw, 0, -128.54cqw) rotateY(-10.58deg); }
  25.00% { transform: translate3d(22.72cqw, 0, -110.65cqw) rotateY(-11.50deg); }
  29.17% { transform: translate3d(26.37cqw, 0, -94.78cqw) rotateY(-12.42deg); }
  33.33% { transform: translate3d(29.57cqw, 0, -80.70cqw) rotateY(-13.33deg); }
  37.50% { transform: translate3d(32.34cqw, 0, -68.21cqw) rotateY(-14.25deg); }
  41.67% { transform: translate3d(34.71cqw, 0, -57.13cqw) rotateY(-15.17deg); }
  45.83% { transform: translate3d(36.73cqw, 0, -47.30cqw) rotateY(-16.08deg); }
  50.00% { transform: translate3d(38.42cqw, 0, -38.58cqw) rotateY(-17.00deg); }
  54.17% { transform: translate3d(39.81cqw, 0, -30.84cqw) rotateY(-17.92deg); }
  58.33% { transform: translate3d(40.94cqw, 0, -23.98cqw) rotateY(-18.83deg); }
  62.50% { transform: translate3d(41.84cqw, 0, -17.89cqw) rotateY(-19.75deg); }
  66.67% { transform: translate3d(42.53cqw, 0, -12.48cqw) rotateY(-20.67deg); }
  70.83% { transform: translate3d(43.06cqw, 0, -7.69cqw) rotateY(-21.58deg); }
  75.00% { transform: translate3d(43.43cqw, 0, -3.44cqw) rotateY(-22.50deg); }
  79.17% { transform: translate3d(43.69cqw, 0, 0.33cqw) rotateY(-23.42deg); }
  83.33% { transform: translate3d(43.85cqw, 0, 3.68cqw) rotateY(-24.33deg); }
  87.50% { transform: translate3d(43.94cqw, 0, 6.65cqw) rotateY(-25.25deg); }
  91.67% { transform: translate3d(43.98cqw, 0, 9.28cqw) rotateY(-26.17deg); }
  95.83% { transform: translate3d(44.00cqw, 0, 11.62cqw) rotateY(-27.08deg); }
  100.00% { transform: translate3d(44.00cqw, 0, 13.70cqw) rotateY(-28.00deg); }
}
@keyframes ish-l {
  0.00% { transform: translate3d(11.00cqw, 0, -258.46cqw) rotateY(6.00deg); }
  4.17% { transform: translate3d(3.79cqw, 0, -225.92cqw) rotateY(6.92deg); }
  8.33% { transform: translate3d(-2.73cqw, 0, -197.04cqw) rotateY(7.83deg); }
  12.50% { transform: translate3d(-8.60cqw, 0, -171.43cqw) rotateY(8.75deg); }
  16.67% { transform: translate3d(-13.87cqw, 0, -148.70cqw) rotateY(9.67deg); }
  20.83% { transform: translate3d(-18.56cqw, 0, -128.54cqw) rotateY(10.58deg); }
  25.00% { transform: translate3d(-22.72cqw, 0, -110.65cqw) rotateY(11.50deg); }
  29.17% { transform: translate3d(-26.37cqw, 0, -94.78cqw) rotateY(12.42deg); }
  33.33% { transform: translate3d(-29.57cqw, 0, -80.70cqw) rotateY(13.33deg); }
  37.50% { transform: translate3d(-32.34cqw, 0, -68.21cqw) rotateY(14.25deg); }
  41.67% { transform: translate3d(-34.71cqw, 0, -57.13cqw) rotateY(15.17deg); }
  45.83% { transform: translate3d(-36.73cqw, 0, -47.30cqw) rotateY(16.08deg); }
  50.00% { transform: translate3d(-38.42cqw, 0, -38.58cqw) rotateY(17.00deg); }
  54.17% { transform: translate3d(-39.81cqw, 0, -30.84cqw) rotateY(17.92deg); }
  58.33% { transform: translate3d(-40.94cqw, 0, -23.98cqw) rotateY(18.83deg); }
  62.50% { transform: translate3d(-41.84cqw, 0, -17.89cqw) rotateY(19.75deg); }
  66.67% { transform: translate3d(-42.53cqw, 0, -12.48cqw) rotateY(20.67deg); }
  70.83% { transform: translate3d(-43.06cqw, 0, -7.69cqw) rotateY(21.58deg); }
  75.00% { transform: translate3d(-43.43cqw, 0, -3.44cqw) rotateY(22.50deg); }
  79.17% { transform: translate3d(-43.69cqw, 0, 0.33cqw) rotateY(23.42deg); }
  83.33% { transform: translate3d(-43.85cqw, 0, 3.68cqw) rotateY(24.33deg); }
  87.50% { transform: translate3d(-43.94cqw, 0, 6.65cqw) rotateY(25.25deg); }
  91.67% { transform: translate3d(-43.98cqw, 0, 9.28cqw) rotateY(26.17deg); }
  95.83% { transform: translate3d(-44.00cqw, 0, 11.62cqw) rotateY(27.08deg); }
  100.00% { transform: translate3d(-44.00cqw, 0, 13.70cqw) rotateY(28.00deg); }
}

.hero__inner { position: relative; z-index: 2; }
.hero__kicker { display: inline-flex; align-items: center; gap: 12px; margin-bottom: 34px; }
.hero__kicker::before { content: ""; width: 34px; height: 1px; background: var(--text-mute); }
.hero h1 { max-width: 16ch; margin-bottom: 34px; }
.hero h1 .g { background: linear-gradient(100deg, var(--violet), var(--blue) 45%, var(--mint)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero__lead { max-width: 52ch; font-size: clamp(1rem, 1.5vw, 1.22rem); color: var(--text-dim); margin-bottom: 44px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

.ticker { position: relative; z-index: 2; margin-top: auto; border-block: 1px solid var(--line); overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.ticker__row { display: flex; gap: 0; width: max-content; animation: marquee 34s linear infinite; }
.ticker:hover .ticker__row { animation-play-state: paused; }
.ticker__row span { padding: 16px 30px; font-family: var(--font-mono); font-size: 0.76rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-mute); white-space: nowrap; }
.ticker__row span::before { content: "—"; margin-right: 30px; color: var(--violet); opacity: 0.6; }
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .ticker__row { animation: none; } }

/* ---------- Section shell ---------- */
.section { position: relative; padding-block: clamp(90px, 13vw, 170px); }
.section__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; flex-wrap: wrap; margin-bottom: 64px; }
.section__head p { max-width: 40ch; }
.section__index { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.22em; color: var(--text-mute); }
.rule { height: 1px; background: var(--line); border: 0; }

/* ---------- Pinned zoom reveal ---------- */
.rz { position: relative; height: 240vh; background: var(--ink); }
.rz__sticky { position: sticky; top: 0; height: 100svh; overflow: hidden; }
.rz__frame { position: absolute; inset: 22px; border: 1px solid var(--line); z-index: 6; pointer-events: none; }
.rz__tick { position: absolute; width: 10px; height: 10px; border: 0; z-index: 7; color: var(--text-dim); }
.rz__tick.tl { top: 22px; left: 22px; border-top: 1px solid; border-left: 1px solid; }
.rz__tick.tr { top: 22px; right: 22px; border-top: 1px solid; border-right: 1px solid; }
.rz__tick.bl { bottom: 22px; left: 22px; border-bottom: 1px solid; border-left: 1px solid; }
.rz__tick.br { bottom: 22px; right: 22px; border-bottom: 1px solid; border-right: 1px solid; }
.rz__readout { position: absolute; left: 34px; bottom: 34px; z-index: 7; font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.16em; color: var(--text-mute); text-transform: uppercase; }

.rz__intro { position: absolute; inset: 0; z-index: 1; display: flex; align-items: center; justify-content: center; text-align: center; padding: var(--gutter); }
.rz__intro h2 { max-width: 20ch; }
.rz__intro .watermark { position: absolute; left: 50%; top: 50%; translate: -50% -50%; font-family: var(--font-display); font-weight: 700; font-size: 26vw; color: #fff; opacity: 0.02; letter-spacing: -0.05em; user-select: none; }

.rz__seed { position: absolute; left: 50%; top: 48%; translate: -50% -50%; width: 92px; height: 92px; border-radius: 24px; z-index: 5; box-shadow: 0 0 0 1px rgba(255,255,255,0.12), 0 30px 90px rgba(124,92,255,0.45); }

.rz__panel {
  position: absolute; inset: 0; z-index: 4;
  clip-path: circle(var(--rz-r, 46px) at 50% 48%);
  background: radial-gradient(115% 115% at 50% 32%, #1c1c28, #0c0c12 72%);
  display: flex; align-items: center; justify-content: center;
  padding: var(--gutter);
}
.rz__ring {
  position: absolute; left: 50%; top: 48%; translate: -50% -50%;
  width: calc(var(--rz-r, 46px) * 2); height: calc(var(--rz-r, 46px) * 2);
  border-radius: 50%; border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 0 70px rgba(124, 92, 255, 0.28), inset 0 0 40px rgba(124, 92, 255, 0.12);
  z-index: 5; pointer-events: none;
  opacity: 0; transition: opacity .4s var(--ease);
}
.rz.is-active .rz__ring { opacity: 1; }
.analysis {
  width: min(760px, 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,0.03), transparent);
  padding: clamp(22px, 4vw, 40px);
  opacity: 0; transform: translateY(20px) scale(0.98);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.rz.is-open .analysis { opacity: 1; transform: none; }
.analysis__top { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 26px; }
.analysis__top strong { font-family: var(--font-display); font-size: 1.1rem; }
.analysis__row { display: grid; grid-template-columns: 1fr; gap: 8px; padding: 15px 0; border-top: 1px solid var(--line-soft); }
.analysis__row:first-of-type { border-top: 0; }
.analysis__row .rl { display: flex; justify-content: space-between; font-size: 0.86rem; }
.analysis__row .rl span:last-child { font-family: var(--font-mono); font-size: 0.74rem; color: var(--text-mute); }
.bar { height: 4px; border-radius: 4px; background: rgba(255,255,255,0.08); overflow: hidden; }
.bar > i { display: block; height: 100%; width: var(--v, 0%); border-radius: 4px; background: linear-gradient(90deg, var(--violet), var(--blue)); transition: width 1s var(--ease); }
.rz.is-open .bar > i { width: var(--v, 0%); }
@media (max-width: 560px) {
  .analysis__row .rl { flex-direction: column; gap: 3px; }
  .analysis__row .rl span:last-child { font-size: 0.68rem; }
  .rz__intro h2 { font-size: 1.9rem; }
}

/* ---------- Picks list ---------- */
.picks { display: grid; gap: 0; }
.pick {
  display: grid; grid-template-columns: 64px 1fr; gap: clamp(16px, 4vw, 48px);
  padding: clamp(24px, 4vw, 40px) 0;
  border-top: 1px solid var(--line);
  position: relative;
  transition: background-color .4s var(--ease);
}
.picks .pick:last-child { border-bottom: 1px solid var(--line); }
.pick:hover { background: linear-gradient(90deg, rgba(124,92,255,0.06), transparent 60%); }
.pick__n { font-family: var(--font-mono); font-size: 0.8rem; color: var(--text-mute); padding-top: 6px; }
.pick__name { display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap; margin-bottom: 10px; }
.pick__name h3 { font-family: var(--font-display); }
.pick__tag { font-family: var(--font-mono); font-size: 0.66rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--mint); border: 1px solid var(--line); border-radius: 999px; padding: 4px 10px; }
.pick__desc { max-width: 62ch; margin-bottom: 18px; }
.pick__meta { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px 32px; max-width: 720px; }
.pick__meta div { font-size: 0.86rem; }
.pick__meta .k { font-family: var(--font-mono); font-size: 0.64rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-mute); display: block; margin-bottom: 4px; }
.pick__meta .k.warn { color: #d8a24a; }
@media (max-width: 620px) { .pick { grid-template-columns: 1fr; } .pick__n { padding-top: 0; } .pick__meta { grid-template-columns: 1fr; } }

/* ---------- Criteria ---------- */
.crit { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.crit__cell { background: var(--ink); padding: clamp(24px, 3.5vw, 40px); transition: background-color .4s var(--ease); }
.crit__cell:hover { background: var(--ink-2); }
.crit__cell .n { font-family: var(--font-mono); font-size: 0.74rem; color: var(--violet); letter-spacing: 0.2em; }
.crit__cell h3 { margin: 16px 0 10px; }
.crit__cell p { font-size: 0.92rem; }
@media (max-width: 720px) { .crit { grid-template-columns: 1fr; } }

/* ---------- Subscribe ---------- */
.subscribe { position: relative; overflow: hidden; }
.subscribe__glow { position: absolute; width: 60vw; height: 60vw; left: 50%; top: 40%; translate: -50% -50%; background: radial-gradient(circle, rgba(124,92,255,0.22), transparent 62%); filter: blur(40px); pointer-events: none; }
.subscribe .wrap { position: relative; z-index: 2; }
.sub-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(32px, 6vw, 80px); align-items: start; }
@media (max-width: 900px) { .sub-grid { grid-template-columns: 1fr; } }
.sub-copy h2 { margin-bottom: 22px; }
.sub-copy p { max-width: 46ch; margin-bottom: 16px; }
.sub-copy ul { list-style: none; margin-top: 26px; display: grid; gap: 12px; }
.sub-copy li { display: flex; gap: 12px; font-size: 0.92rem; color: var(--text-dim); }
.sub-copy li::before { content: ""; flex: none; width: 7px; height: 7px; margin-top: 8px; border-radius: 50%; background: var(--mint); }

.card {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  padding: clamp(24px, 4vw, 38px);
  backdrop-filter: blur(6px);
}
.field { margin-bottom: 18px; }
.field label { display: block; font-family: var(--font-mono); font-size: 0.66rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-mute); margin-bottom: 9px; }
.field input[type="email"], .field input[type="tel"] {
  width: 100%; padding: 15px 16px; border-radius: 12px;
  background: var(--ink); border: 1px solid var(--line); color: var(--text);
  transition: border-color .25s var(--ease), background-color .25s var(--ease);
}
.field input::placeholder { color: var(--text-mute); }
.field input:focus { outline: none; border-color: var(--violet); background: #0a0a10; }
.field input:user-invalid { border-color: #d8683f; }

.consent { display: flex; gap: 12px; align-items: flex-start; margin: 20px 0 22px; font-size: 0.82rem; color: var(--text-dim); line-height: 1.5; }
.consent input { flex: none; width: 18px; height: 18px; margin-top: 2px; accent-color: var(--violet); }
.consent a { color: var(--text); text-decoration: underline; text-underline-offset: 3px; text-decoration-color: var(--violet); }
.form__submit { width: 100%; justify-content: center; }
.form__note { margin-top: 16px; font-family: var(--font-mono); font-size: 0.64rem; letter-spacing: 0.08em; line-height: 1.7; color: var(--text-mute); text-transform: none; }
.form__error { color: #e0774f; font-size: 0.8rem; margin-top: 10px; min-height: 1.2em; }

.form-success { display: none; text-align: left; }
.form-success.show { display: block; animation: pop .6s var(--ease); }
.form-success .mark { width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--mint); display: grid; place-items: center; margin-bottom: 20px; }
.form-success .mark svg { width: 20px; height: 20px; stroke: var(--mint); }
.form-success h3 { font-family: var(--font-display); margin-bottom: 12px; }
.form-success p { font-size: 0.92rem; }
@keyframes pop { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }

/* toast */
.toast {
  position: fixed; right: 22px; top: 22px; z-index: 9600;
  display: flex; align-items: center; gap: 12px;
  padding: 14px 18px; border-radius: 14px;
  background: rgba(16,16,23,0.9); border: 1px solid var(--line);
  backdrop-filter: blur(12px);
  font-size: 0.86rem; color: var(--text);
  transform: translateX(140%); opacity: 0;
  transition: transform .5s var(--ease), opacity .5s var(--ease);
}
.toast.show { transform: none; opacity: 1; }
.toast .d { width: 8px; height: 8px; border-radius: 50%; background: var(--mint); box-shadow: 0 0 12px var(--mint); }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--line); padding-block: 70px 40px; }
.foot-grid { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; align-items: flex-start; }
.foot-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.foot-brand img { width: 30px; height: 30px; border-radius: 8px; }
.foot-brand span { font-family: var(--font-display); font-weight: 700; letter-spacing: -0.03em; }
.site-footer p { max-width: 42ch; font-size: 0.88rem; }
.foot-links { display: grid; gap: 12px; font-size: 0.9rem; }
.foot-links a { color: var(--text-dim); transition: color .25s var(--ease); }
.foot-links a:hover { color: var(--text); }
.foot-mail { font-family: var(--font-mono); font-size: 0.82rem; letter-spacing: 0.04em; }
.foot-bottom { margin-top: 54px; padding-top: 24px; border-top: 1px solid var(--line-soft); display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.foot-bottom span { font-family: var(--font-mono); font-size: 0.66rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-mute); }

/* ---------- Legal page ---------- */
.legal { padding-block: 160px 100px; }
.legal__wrap { max-width: 780px; }
.legal h1 { font-size: clamp(2.2rem, 6vw, 4rem); margin-bottom: 20px; }
.legal__meta { font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-mute); margin-bottom: 56px; }
.legal h2 { font-size: clamp(1.3rem, 3vw, 1.9rem); margin: 52px 0 16px; }
.legal h2 .n { font-family: var(--font-mono); font-size: 0.9rem; color: var(--violet); margin-right: 14px; letter-spacing: 0.1em; }
.legal p, .legal li { color: var(--text-dim); font-size: 0.98rem; }
.legal p + p { margin-top: 14px; }
.legal ul + p, .legal ol + p { margin-top: 16px; }
.legal ul, .legal ol { margin: 14px 0 0 22px; display: grid; gap: 10px; }
.legal a { color: var(--text); text-decoration: underline; text-underline-offset: 3px; text-decoration-color: var(--violet); }
.legal__back { display: inline-flex; align-items: center; gap: 10px; margin-top: 64px; font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-dim); }
.legal__back:hover { color: var(--text); }

/* ---------- Utilities ---------- */
.center { text-align: center; }
.mt-s { margin-top: 18px; }
.spacer { height: clamp(40px, 8vw, 90px); }
