/* LotSkan — сайт бота расшифровки аукционных листов
   Направление: аукционный лист как документ. Бумага, чернила, красная печать. */

:root {
  --paper: #f4f0e7;
  --paper-2: #ebe5d8;
  --paper-3: #dfd7c6;
  --white: #fffdf9;
  --ink: #141f38;
  --ink-2: #44506b;
  --ink-3: #7c849b;
  --line: rgba(20, 31, 56, 0.14);
  --line-strong: rgba(20, 31, 56, 0.32);
  --red: #c8102e;
  --red-2: #a30c25;
  --red-soft: rgba(200, 16, 46, 0.08);
  --green: #1e7b4f;
  --font-display: 'Unbounded', 'Golos Text', sans-serif;
  --font-body: 'Golos Text', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;
  --radius: 16px;
  --max: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--paper);
  position: relative;
  overflow-x: hidden;
}
/* бумага: зерно + едва заметная линовка бланка */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: -2;
  background-image:
    repeating-linear-gradient(0deg, transparent 0 31px, rgba(20, 31, 56, 0.045) 31px 32px);
  pointer-events: none;
}
body::after {
  content: '';
  position: fixed; inset: 0; z-index: -1;
  opacity: 0.35;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.08 0 0 0 0 0.12 0 0 0 0 0.22 0 0 0 0.08 0'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
}

a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
h1, h2, h3 { font-family: var(--font-display); line-height: 1.12; margin: 0; letter-spacing: -0.01em; }
h1 { font-size: clamp(34px, 5vw, 62px); font-weight: 800; }
h2 { font-size: clamp(26px, 3.4vw, 40px); font-weight: 700; }
h3 { font-size: 19px; font-weight: 600; }
p { margin: 0; }
.mono { font-family: var(--font-mono); }
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.muted { color: var(--ink-2); }
.red { color: var(--red); }

/* ---------- кнопки ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 22px; border-radius: 12px;
  font-weight: 600; font-size: 16px; line-height: 1;
  border: 2px solid transparent; cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .2s;
  white-space: nowrap;
}
.btn svg { width: 20px; height: 20px; flex: none; }
.btn-primary {
  background: var(--red); color: #fff;
  box-shadow: 0 10px 28px -10px rgba(200, 16, 46, 0.55);
}
.btn-primary:hover { background: var(--red-2); transform: translateY(-2px); box-shadow: 0 16px 34px -12px rgba(200, 16, 46, 0.6); }
.btn-ghost { border-color: var(--line-strong); color: var(--ink); background: transparent; }
.btn-ghost:hover { border-color: var(--ink); transform: translateY(-2px); }
.btn-sm { padding: 11px 16px; font-size: 15px; }

/* ---------- шапка ---------- */
.header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(244, 240, 231, 0.86);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.header .wrap { display: flex; align-items: center; gap: 28px; height: 68px; }
.logo { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 700; font-size: 18px; letter-spacing: 0.01em; }
.logo svg { width: 30px; height: 30px; }
.nav { display: flex; gap: 22px; margin-left: auto; font-size: 15px; font-weight: 500; color: var(--ink-2); }
.nav a:hover { color: var(--ink); }
.header .btn { margin-left: 8px; }
@media (max-width: 820px) { .nav { display: none; } .header .btn { margin-left: auto; } }

/* ---------- hero ---------- */
.hero { position: relative; padding: 72px 0 40px; overflow: hidden; }
.hero-kanji {
  position: absolute; right: -2vw; top: -30px;
  font-size: clamp(180px, 28vw, 380px); line-height: 1; font-weight: 800;
  color: transparent; -webkit-text-stroke: 1.5px rgba(20, 31, 56, 0.09);
  writing-mode: vertical-rl; user-select: none; pointer-events: none;
  font-family: 'Hiragino Mincho ProN', 'Yu Mincho', 'Noto Serif JP', serif;
}
.hero-grid { display: grid; grid-template-columns: 1.02fr 0.98fr; gap: 48px; align-items: center; position: relative; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-2);
  margin-bottom: 22px;
}
.eyebrow::before { content: ''; width: 34px; height: 2px; background: var(--red); }
.hero h1 .hl { color: var(--red); }
.hero .lead { font-size: 19px; color: var(--ink-2); max-width: 520px; margin: 22px 0 30px; }
.hero-cta { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.hero-note { margin-top: 18px; font-size: 14px; color: var(--ink-3); font-family: var(--font-mono); }
.hero-facts { display: flex; gap: 34px; margin-top: 44px; padding-top: 26px; border-top: 1px solid var(--line); }
.fact b { display: block; font-family: var(--font-display); font-size: 28px; font-weight: 700; line-height: 1; }
.fact span { font-size: 13px; color: var(--ink-3); }

/* сцена справа: бланк + отчёт бота */
.scene { position: relative; min-height: 640px; }
.sheet {
  position: absolute; left: 0; top: 0; width: 72%;
  background: var(--white); border: 1px solid var(--line-strong);
  border-radius: 6px; padding: 18px 20px 22px;
  transform: rotate(-3deg);
  box-shadow: 0 30px 60px -30px rgba(20, 31, 56, 0.35);
  font-family: var(--font-mono); font-size: 11px; color: var(--ink-2);
}
.sheet-head { display: flex; justify-content: space-between; align-items: baseline; border-bottom: 2px solid var(--ink); padding-bottom: 8px; margin-bottom: 10px; }
.sheet-head b { font-size: 15px; color: var(--ink); letter-spacing: 0.2em; }
.sheet-row { display: grid; grid-template-columns: 64px 1fr 56px 1fr; gap: 6px; padding: 5px 0; border-bottom: 1px dashed var(--line); }
.sheet-row i { font-style: normal; color: var(--ink-3); }
.sheet-grade { display: flex; gap: 10px; margin-top: 12px; }
.sheet-grade div { flex: 1; border: 1.5px solid var(--ink); border-radius: 4px; text-align: center; padding: 6px 0; }
.sheet-grade b { display: block; font-size: 20px; color: var(--ink); font-family: var(--font-display); }
.sheet-car { margin-top: 14px; }
.scan {
  position: absolute; left: 0; right: 0; height: 2px; top: 0;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
  box-shadow: 0 0 18px 2px rgba(200, 16, 46, 0.45);
  animation: scan 3.2s var(--ease) infinite;
}
@keyframes scan { 0% { top: 8%; opacity: 0; } 10% { opacity: 1; } 90% { opacity: 1; } 100% { top: 94%; opacity: 0; } }

.report {
  position: absolute; right: 0; bottom: 0; width: 66%;
  background: var(--white); border-radius: 18px 18px 18px 4px;
  border: 1px solid var(--line);
  box-shadow: 0 40px 80px -30px rgba(20, 31, 56, 0.45), 0 0 0 1px rgba(255, 255, 255, 0.6) inset;
  padding: 16px 18px 18px; transform: rotate(1.5deg);
  font-family: var(--font-mono); font-size: 12.5px; line-height: 1.5; color: var(--ink);
}
.report-top { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; padding-bottom: 10px; border-bottom: 1px solid var(--line); font-family: var(--font-body); font-size: 13px; }
.report-top .avatar { width: 28px; height: 28px; border-radius: 50%; background: var(--ink); color: #fff; display: grid; place-items: center; font-family: var(--font-display); font-size: 12px; }
.report-top .t { color: var(--ink-3); margin-left: auto; font-family: var(--font-mono); font-size: 11px; }
.report p + p { margin-top: 3px; }
.report .q { margin-top: 8px; padding: 7px 10px; border-left: 3px solid var(--line-strong); background: var(--paper); border-radius: 4px; }
.report .q.red { border-left-color: var(--red); color: var(--ink); }
.report .price { margin-top: 8px; font-weight: 600; }
.report .price b { color: var(--green); }

.stamp {
  position: absolute; z-index: 3;
  font-family: var(--font-display); font-weight: 800; font-size: 14px; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--red); border: 3px solid var(--red); border-radius: 8px; padding: 8px 12px;
  transform: rotate(-9deg); opacity: 0.92; mix-blend-mode: multiply;
  background: rgba(255, 253, 249, 0.6);
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='120'%3E%3Cfilter id='g'%3E%3CfeTurbulence baseFrequency='0.7' numOctaves='3'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 -3'/%3E%3C/filter%3E%3Crect width='200' height='120' fill='%23fff' filter='url(%23g)' opacity='.9'/%3E%3Crect width='200' height='120' fill='%23fff' opacity='.75'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='120'%3E%3Cfilter id='g'%3E%3CfeTurbulence baseFrequency='0.7' numOctaves='3'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 -3'/%3E%3C/filter%3E%3Crect width='200' height='120' fill='%23fff' filter='url(%23g)' opacity='.9'/%3E%3Crect width='200' height='120' fill='%23fff' opacity='.75'/%3E%3C/svg%3E");
}
.stamp small { display: block; font-size: 9px; letter-spacing: 0.2em; font-weight: 600; }
.scene .stamp { left: 54%; top: -14px; }

@media (max-width: 960px) {
  .hero { padding-top: 44px; }
  .hero-grid { grid-template-columns: 1fr; gap: 28px; }
  .scene { min-height: 0; margin-top: 10px; display: grid; gap: 18px; }
  .sheet, .report { position: static; width: 100%; transform: none; --r: 0deg; }
  .sheet { transform: rotate(-1.5deg); --r: -1.5deg; }
  .scene .stamp { top: -10px; left: auto; right: 6px; }
  .hero-kanji { display: none; }
}
@media (max-width: 520px) {
  .sheet { font-size: 10px; padding: 14px; }
  .report { font-size: 11.5px; }
  .hero-facts { gap: 20px; }
  .fact b { font-size: 22px; }
}

/* появление при загрузке */
.hero [data-stagger] { animation: rise .9s var(--ease) both; }
.hero [data-stagger="1"] { animation-delay: .05s; }
.hero [data-stagger="2"] { animation-delay: .15s; }
.hero [data-stagger="3"] { animation-delay: .25s; }
.hero [data-stagger="4"] { animation-delay: .35s; }
.hero [data-stagger="5"] { animation-delay: .45s; }
.hero .sheet { animation: rise 1s var(--ease) .3s both; }
.hero .report { animation: rise 1s var(--ease) .75s both; }
.hero .stamp { animation: stampIn .5s var(--ease) 1.3s both; }
@keyframes rise { from { opacity: 0; transform: translateY(22px) rotate(var(--r, 0deg)); } to { opacity: 1; transform: translateY(0) rotate(var(--r, 0deg)); } }
.hero .sheet { --r: -3deg; } .hero .report { --r: 1.5deg; }
@keyframes stampIn { from { opacity: 0; transform: rotate(-9deg) scale(1.6); } to { opacity: .92; transform: rotate(-9deg) scale(1); } }

/* ---------- бегущая строка ---------- */
.ticker { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--paper-2); overflow: hidden; margin-top: 30px; }
.ticker-track { display: flex; width: max-content; animation: ticker 38s linear infinite; }
.ticker-track:hover { animation-play-state: paused; }
.ticker span { font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-2); padding: 12px 28px; white-space: nowrap; }
.ticker span::after { content: '◆'; color: var(--red); margin-left: 28px; font-size: 8px; vertical-align: middle; }
@keyframes ticker { to { transform: translateX(-50%); } }

/* ---------- секции ---------- */
.section { padding: 88px 0; }
.section-head { max-width: 640px; margin-bottom: 44px; }
.section-head .eyebrow { margin-bottom: 14px; }
.section-head p { margin-top: 14px; color: var(--ink-2); font-size: 18px; }
.num { font-family: var(--font-mono); font-size: 13px; color: var(--red); letter-spacing: 0.1em; }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; counter-reset: step; }
.step { position: relative; padding: 28px 26px 30px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: transform .35s var(--ease), box-shadow .35s var(--ease); }
.step:hover { transform: translateY(-4px); box-shadow: 0 24px 50px -30px rgba(20, 31, 56, 0.4); }
.step::before { counter-increment: step; content: '0' counter(step); position: absolute; right: 14px; top: 4px; font-family: var(--font-display); font-size: 74px; font-weight: 800; color: var(--paper-2); line-height: 1; }
.step h3 { margin: 14px 0 10px; position: relative; }
.step p { color: var(--ink-2); font-size: 15.5px; position: relative; }
.step .ico { width: 44px; height: 44px; border-radius: 12px; background: var(--red-soft); color: var(--red); display: grid; place-items: center; position: relative; }
.step .ico svg { width: 22px; height: 22px; }

.fields { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.field { padding: 22px 20px; border: 1px solid var(--line); border-radius: 14px; background: rgba(255, 253, 249, 0.6); }
.field .mono { font-size: 12px; color: var(--red); letter-spacing: 0.08em; text-transform: uppercase; }
.field h3 { font-size: 17px; margin: 10px 0 8px; }
.field p { font-size: 14.5px; color: var(--ink-2); }
.fields-note { margin-top: 18px; font-family: var(--font-mono); font-size: 13px; color: var(--ink-3); }

.who { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.who-card { padding: 34px 32px; border-radius: var(--radius); background: var(--ink); color: var(--paper); position: relative; overflow: hidden; }
.who-card.alt { background: var(--white); color: var(--ink); border: 1px solid var(--line); }
.who-card h3 { font-size: 24px; margin-bottom: 18px; }
.who-card ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 12px; }
.who-card li { padding-left: 26px; position: relative; font-size: 16px; }
.who-card li::before { content: ''; position: absolute; left: 0; top: 9px; width: 12px; height: 12px; border-radius: 50%; background: var(--red); }
.who-card.alt li::before { background: var(--red); }
.who-card .kanji { position: absolute; right: -10px; bottom: -30px; font-size: 150px; line-height: 1; opacity: 0.07; font-family: 'Hiragino Mincho ProN', 'Yu Mincho', 'Noto Serif JP', serif; }

/* ---------- тарифы ---------- */
.pricing { display: grid; grid-template-columns: 1.1fr 2.2fr; gap: 18px; align-items: stretch; }
.free { position: relative; padding: 34px 30px; border-radius: var(--radius); background: var(--white); border: 2px dashed var(--red); display: flex; flex-direction: column; }
.free h3 { font-size: 22px; }
.free .big { font-family: var(--font-display); font-size: 84px; font-weight: 800; line-height: 1; color: var(--red); margin: 14px 0 4px; }
.free p { color: var(--ink-2); font-size: 15.5px; }
.free .btn { margin-top: auto; align-self: flex-start; margin-top: 26px; }
.plans { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.plan { padding: 24px 24px 22px; border-radius: 14px; background: var(--white); border: 1px solid var(--line); display: flex; flex-direction: column; gap: 6px; position: relative; transition: transform .35s var(--ease), box-shadow .35s var(--ease); }
.plan:hover { transform: translateY(-3px); box-shadow: 0 24px 50px -30px rgba(20, 31, 56, 0.4); }
.plan .name { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-3); }
.plan .qty { font-family: var(--font-display); font-size: 30px; font-weight: 700; }
.plan .qty small { font-family: var(--font-body); font-size: 15px; font-weight: 500; color: var(--ink-2); margin-left: 4px; }
.plan .price { font-size: 22px; font-weight: 600; margin-top: 6px; }
.plan .per { font-family: var(--font-mono); font-size: 13px; color: var(--ink-2); }
.plan .save { position: absolute; top: 16px; right: 16px; font-family: var(--font-mono); font-size: 11px; color: var(--green); border: 1px solid currentColor; border-radius: 999px; padding: 3px 8px; }
.plan.best { border-color: var(--ink); box-shadow: 0 0 0 1px var(--ink); }
.plan.best .name { color: var(--red); }
.pricing-note { margin-top: 18px; color: var(--ink-3); font-size: 14px; font-family: var(--font-mono); }

/* ---------- компаниям ---------- */
.brand { padding: 0; }
.brand-inner {
  position: relative; overflow: hidden;
  border-radius: 24px; background: var(--ink); color: var(--paper);
  padding: 64px 60px; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: center;
}
.brand-inner::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(600px 300px at 90% 10%, rgba(200, 16, 46, 0.35), transparent 60%),
              repeating-linear-gradient(0deg, transparent 0 31px, rgba(255, 255, 255, 0.04) 31px 32px);
  pointer-events: none;
}
.brand-inner > * { position: relative; }
.brand h2 { color: #fff; }
.brand .lead { color: rgba(244, 240, 231, 0.8); font-size: 18px; margin: 18px 0 26px; max-width: 520px; }
.brand ul { margin: 0 0 30px; padding: 0; list-style: none; display: grid; gap: 10px; }
.brand li { padding-left: 26px; position: relative; font-size: 16px; }
.brand li::before { content: '✓'; position: absolute; left: 0; color: var(--red); font-weight: 700; }
.brand .price-tag { font-family: var(--font-display); font-size: clamp(26px, 4vw, 40px); font-weight: 800; line-height: 1; white-space: nowrap; }
.brand .price-tag small { display: block; font-family: var(--font-mono); font-size: 13px; font-weight: 400; color: rgba(244, 240, 231, 0.7); margin-top: 10px; letter-spacing: 0.06em; }
.brand-phone {
  background: rgba(255, 255, 255, 0.06); border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px; padding: 22px; font-family: var(--font-mono); font-size: 13px; line-height: 1.6;
  color: rgba(244, 240, 231, 0.9);
}
.brand-phone .bh { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; padding-bottom: 12px; border-bottom: 1px solid rgba(255, 255, 255, 0.12); font-family: var(--font-body); }
.brand-phone .bh .av { width: 30px; height: 30px; border-radius: 50%; background: var(--red); display: grid; place-items: center; font-family: var(--font-display); font-size: 11px; color: #fff; }
.brand-phone .bh b { display: block; font-size: 14px; color: #fff; }
.brand-phone .bh span { font-size: 12px; color: rgba(244, 240, 231, 0.6); }
.brand-phone .msg { background: rgba(255, 255, 255, 0.08); border-radius: 12px 12px 12px 3px; padding: 10px 12px; margin-bottom: 8px; }
.brand-phone .msg.me { background: rgba(200, 16, 46, 0.35); border-radius: 12px 12px 3px 12px; margin-left: 40px; }
.brand-cta { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.brand-cta .btn-ghost { border-color: rgba(255, 255, 255, 0.35); color: #fff; }
.brand-cta .btn-ghost:hover { border-color: #fff; }

/* ---------- справочник тизер ---------- */
.ref { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.codes { display: flex; flex-wrap: wrap; gap: 10px; }
.code { font-family: var(--font-mono); font-size: 14px; padding: 8px 12px; border-radius: 8px; background: var(--white); border: 1px solid var(--line); }
.code b { color: var(--red); margin-right: 8px; }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; }
.faq details { border-top: 1px solid var(--line); padding: 4px 0; }
.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: 18px 0; font-weight: 600; font-size: 18px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; font-family: var(--font-display); font-size: 22px; color: var(--red); transition: transform .3s var(--ease); flex: none; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq .a { padding: 0 0 20px; color: var(--ink-2); max-width: 700px; }

/* ---------- футер ---------- */
.footer { border-top: 1px solid var(--line); padding: 40px 0 46px; font-size: 14px; color: var(--ink-2); }
.footer .wrap { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 30px; }
.footer h4 { margin: 0 0 12px; font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-3); }
.footer a { display: block; padding: 3px 0; }
.footer a:hover { color: var(--red); }
.footer .fine { margin-top: 14px; font-size: 12.5px; color: var(--ink-3); line-height: 1.6; }

/* ---------- статья справочника ---------- */
.article { max-width: 820px; padding: 56px 0 80px; }
.article h1 { font-size: clamp(30px, 4.4vw, 48px); }
.article .lead { font-size: 19px; color: var(--ink-2); margin: 20px 0 32px; }
.article h2 { font-size: 28px; margin: 52px 0 16px; }
.article h3 { margin: 28px 0 10px; }
.article p { margin: 0 0 14px; }
.article ul { padding-left: 22px; margin: 0 0 14px; }
.article li { margin-bottom: 6px; }
.table { width: 100%; border-collapse: collapse; margin: 14px 0 24px; background: var(--white); border: 1px solid var(--line); border-radius: 12px; overflow: hidden; font-size: 15.5px; }
.table th, .table td { text-align: left; padding: 12px 14px; border-bottom: 1px solid var(--line); vertical-align: top; }
.table th { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-3); background: var(--paper-2); }
.table tr:last-child td { border-bottom: 0; }
.table td:first-child { font-family: var(--font-mono); font-weight: 600; color: var(--red); white-space: nowrap; }
.callout { margin: 28px 0; padding: 22px 24px; border-radius: 14px; background: var(--ink); color: var(--paper); display: flex; gap: 20px; align-items: center; justify-content: space-between; flex-wrap: wrap; }
.callout b { font-family: var(--font-display); font-size: 17px; font-weight: 600; color: #fff; }
.callout p { margin: 4px 0 0; color: rgba(244, 240, 231, 0.75); font-size: 15px; }
.crumbs { font-family: var(--font-mono); font-size: 13px; color: var(--ink-3); margin-bottom: 26px; }
.crumbs a:hover { color: var(--red); }

/* ---------- reveal on scroll ---------- */
.js .reveal { opacity: 0; transform: translateY(20px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.js .reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: .08s; } .reveal[data-d="2"] { transition-delay: .16s; } .reveal[data-d="3"] { transition-delay: .24s; } .reveal[data-d="4"] { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 960px) {
  .section { padding: 64px 0; }
  .steps { grid-template-columns: 1fr; }
  .fields { grid-template-columns: 1fr 1fr; }
  .who { grid-template-columns: 1fr; }
  .pricing { grid-template-columns: 1fr; }
  .brand-inner { grid-template-columns: 1fr; padding: 44px 28px; }
  .ref { grid-template-columns: 1fr; }
  .footer .wrap { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .fields { grid-template-columns: 1fr; }
  .plans { grid-template-columns: 1fr; }
  .brand-inner { padding: 36px 22px; }
  .hero-cta .btn { width: 100%; justify-content: center; }
}
