/* ============================================================================
   OfferMate landing v2 — empathy rebuild
   Light: indigo / white-lavender (matches OfferMate banner brand)
   Dark:  void / cobalt-coral (Architect's Workbench, kept)
   ============================================================================ */

/* ---------- Tokens: Light (banner-aligned) ---------- */
:root {
  color-scheme: light dark;

  --bg: #f7f5fc;
  --bg-2: #ecebf5;
  --grid-line: rgba(26, 23, 48, 0.05);
  --card: #ffffff;
  --card-2: #f1f0fa;
  --paper: #fbfaff;

  --text: #15132b;
  --text-soft: #4a4566;
  --muted: #7a7790;
  --accent-text: #ffffff;

  --accent: #5b3ce8;
  --accent-2: #9b85ff;
  --accent-hover: #4a2dd8;
  --panel-glow: rgba(91, 60, 232, 0.18);

  --border: rgba(26, 23, 48, 0.12);
  --rule: rgba(26, 23, 48, 0.22);
  --shadow: 0 22px 48px rgba(26, 23, 48, 0.09);
  --shadow-soft: 0 8px 24px rgba(26, 23, 48, 0.06);
  --button-shadow: 0 14px 32px rgba(91, 60, 232, 0.30);

  --font-display: "Space Grotesk", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, "SFMono-Regular", Consolas, monospace;

  --page-width: 1180px;
}

:root[data-theme="light"] { color-scheme: light; }

/* ---------- Tokens: Dark ---------- */
:root[data-theme="dark"] {
  color-scheme: dark;

  --bg: #08090c;
  --bg-2: #0f1218;
  --grid-line: rgba(138, 115, 255, 0.07);
  --card: #11141a;
  --card-2: #181c25;
  --paper: #0b0e14;

  --text: #f4ede3;
  --text-soft: #c4bdb1;
  --muted: #7c8392;
  --accent-text: #08090c;

  --accent: #8a73ff;
  --accent-2: #c1b3ff;
  --accent-hover: #a892ff;
  --panel-glow: rgba(138, 115, 255, 0.30);

  --border: rgba(244, 237, 227, 0.10);
  --rule: rgba(244, 237, 227, 0.22);
  --shadow: 0 32px 72px rgba(0, 0, 0, 0.65);
  --shadow-soft: 0 12px 32px rgba(0, 0, 0, 0.45);
  --button-shadow: 0 24px 56px rgba(138, 115, 255, 0.32);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) {
    color-scheme: dark;
    --bg: #08090c;
    --bg-2: #0f1218;
    --grid-line: rgba(138, 115, 255, 0.07);
    --card: #11141a;
    --card-2: #181c25;
    --paper: #0b0e14;
    --text: #f4ede3;
    --text-soft: #c4bdb1;
    --muted: #7c8392;
    --accent-text: #08090c;
    --accent: #8a73ff;
    --accent-2: #c1b3ff;
    --accent-hover: #a892ff;
    --panel-glow: rgba(138, 115, 255, 0.30);
    --border: rgba(244, 237, 227, 0.10);
    --rule: rgba(244, 237, 227, 0.22);
    --shadow: 0 32px 72px rgba(0, 0, 0, 0.65);
    --shadow-soft: 0 12px 32px rgba(0, 0, 0, 0.45);
    --button-shadow: 0 24px 56px rgba(138, 115, 255, 0.32);
  }
}

/* ============================================================================
   Base
   ============================================================================ */
* { box-sizing: border-box; }

html {
  min-width: 320px;
  min-height: 100%;
  background:
    linear-gradient(0deg, var(--grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-line) 1px, transparent 1px),
    radial-gradient(circle at 12% -8%, var(--panel-glow), transparent 38%),
    radial-gradient(circle at 92% 110%, var(--panel-glow), transparent 42%),
    var(--bg);
  background-size: 72px 72px, 72px 72px, auto, auto, auto;
  color: var(--text);
  overflow-x: hidden;
  scroll-behavior: smooth;
  font-feature-settings: "ss01", "ss02";
}

body {
  min-height: 100vh;
  margin: 0;
  background: transparent;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 420;
  line-height: 1.62;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; }
p, h1, h2, h3 { margin: 0; }

::selection { background: var(--accent); color: var(--accent-text); }

.skip-link {
  position: absolute;
  left: 16px;
  top: 16px;
  z-index: 30;
  transform: translateY(-160%);
  border-radius: 4px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: var(--accent-text);
  padding: 12px 18px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform 180ms ease;
}
.skip-link:focus { transform: translateY(0); }

/* ============================================================================
   Site bar
   ============================================================================ */
.site-bar {
  display: flex;
  width: min(1180px, calc(100% - 40px));
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 24px auto 0;
  padding: 14px 18px;
  border: 1px solid var(--border);
  border-radius: 2px;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--card) 92%, transparent), color-mix(in srgb, var(--card-2) 72%, transparent));
  box-shadow: 0 1px 0 var(--border), var(--shadow);
  position: relative;
}

.site-bar::after {
  content: "";
  position: absolute;
  left: 0; bottom: -1px;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent) 22%, var(--accent-2) 78%, transparent);
  opacity: 0.45;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  letter-spacing: -0.02em;
}

.brand-mark {
  display: block;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  border-radius: 2px;
  filter: drop-shadow(0 10px 18px color-mix(in srgb, var(--accent) 22%, transparent));
}

.site-links {
  display: flex;
  flex: 1 1 auto;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px;
}

.site-links a {
  border-radius: 999px;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  line-height: 1;
  padding: 10px 14px;
  text-decoration: none;
  transition: color 180ms ease, background 180ms ease;
}
.site-links a:hover {
  color: var(--text);
  background: color-mix(in srgb, var(--accent) 12%, transparent);
}

.site-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

/* Compact persistent launch button in the bar. */
.bar-cta {
  min-height: 36px;
  padding: 0 16px;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  gap: 8px;
  box-shadow: 0 8px 22px color-mix(in srgb, var(--accent) 24%, transparent);
}
.bar-cta:hover { transform: translateY(-1px); }

.control-group {
  display: inline-flex;
  gap: 2px;
  padding: 3px;
  border: 1px solid color-mix(in srgb, var(--border) 80%, transparent);
  border-radius: 999px;
  background: color-mix(in srgb, var(--bg) 36%, var(--card));
}

.control-choice {
  min-height: 30px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1;
  padding: 0 12px;
  transition: color 160ms ease, background 160ms ease;
}
.control-choice:hover { color: var(--text); }
.control-choice[aria-pressed="true"] {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: var(--accent-text);
  box-shadow: 0 8px 22px color-mix(in srgb, var(--accent) 22%, transparent);
}
.control-choice:focus-visible,
.brand:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

/* ============================================================================
   Page shell
   ============================================================================ */
.page {
  width: min(var(--page-width), calc(100% - 40px));
  margin: 0 auto;
  padding: 48px 0 0;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 8px 16px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: color-mix(in srgb, var(--accent) 8%, transparent);
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-style: normal;
}

h1 {
  font-weight: 700;
  font-size: clamp(40px, 6.4vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.035em;
  color: var(--text);
  text-wrap: balance;
}

:root[data-theme="dark"] h1 { font-weight: 500; letter-spacing: -0.045em; }
@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) h1 { font-weight: 500; letter-spacing: -0.045em; }
}

.lead {
  max-width: 56ch;
  margin-top: 24px;
  color: var(--text-soft);
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 420;
  line-height: 1.55;
  text-wrap: pretty;
}

/* ============================================================================
   Buttons
   ============================================================================ */
.button {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 28px;
  border: 1px solid color-mix(in srgb, var(--accent) 32%, transparent);
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: var(--accent-text);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.01em;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  box-shadow: var(--button-shadow);
  position: relative;
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.18) 50%, transparent 100%);
  transform: translateX(-100%);
  transition: transform 420ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
.button:hover {
  filter: brightness(1.06);
  transform: translateY(-2px);
  box-shadow: 0 22px 48px color-mix(in srgb, var(--accent) 28%, transparent);
}
.button:hover::before { transform: translateX(100%); }
.button:focus-visible { outline: 3px solid var(--accent-text); outline-offset: -6px; }

.button-small {
  min-height: 44px;
  padding: 0 22px;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.button-wide {
  min-height: 64px;
  padding: 0 32px;
  font-size: 16px;
  letter-spacing: 0.02em;
}

/* ============================================================================
   Landing — hero shell
   ============================================================================ */
body[data-page="landing"] { position: relative; }

body[data-page="landing"]::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    radial-gradient(circle at 18% 14%, color-mix(in srgb, var(--accent) 14%, transparent), transparent 32%),
    radial-gradient(circle at 84% 86%, color-mix(in srgb, var(--accent-2) 14%, transparent), transparent 36%);
}

.landing-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 24px;
  align-items: stretch;
  margin-bottom: 0;
  position: relative;
}

.landing-hero::before {
  content: "";
  position: absolute;
  left: -16px;
  top: 12px;
  width: 4px;
  height: calc(100% - 56px);
  background: linear-gradient(180deg, var(--accent), var(--accent-2));
  border-radius: 2px;
  opacity: 0.85;
}

.hero-copy {
  position: relative;
  padding: 56px 64px 64px;
  border: 1px solid var(--border);
  border-radius: 4px;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--card) 90%, transparent), color-mix(in srgb, var(--card-2) 70%, transparent)),
    linear-gradient(110deg, color-mix(in srgb, var(--accent) 6%, transparent), transparent 58%);
  box-shadow: var(--shadow);
  animation: surface-in 720ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
  overflow: hidden;
}

/* Hero copy: clean left-aligned editorial block, generous right-hand air. */
.hero-copy { padding-right: 64px; }
.hero-copy > * { position: relative; z-index: 1; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
  padding: 6px 14px;
  border: 1px solid color-mix(in srgb, var(--accent) 26%, var(--border));
  border-radius: 999px;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.10em;
  line-height: 1;
  text-transform: uppercase;
}
.hero-eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--panel-glow);
  animation: pulse 1.8s ease-in-out infinite;
}

.signal-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.signal-row span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border: 1px solid color-mix(in srgb, var(--accent) 30%, var(--border));
  border-radius: 999px;
  background: color-mix(in srgb, var(--card) 60%, var(--bg));
  color: var(--text);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}
.signal-row span::before {
  content: "+";
  color: var(--accent);
  font-weight: 900;
  font-size: 13px;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
}

.hero-audience {
  display: block;
  position: relative;
  margin: 24px 0 0;
  padding: 14px 0 14px 18px;
  border-left: 2px solid color-mix(in srgb, var(--accent) 60%, var(--border));
  max-width: 60ch;
  color: var(--text-soft);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.55;
  text-wrap: pretty;
}
.hero-audience::before {
  content: "FOR ANYONE ON HH.RU";
  display: block;
  margin-bottom: 12px;
  color: var(--accent);
  font-family: var(--font-display);
  font-size: clamp(22px, 2.6vw, 32px);
  font-weight: 700;
  letter-spacing: -0.01em;
  text-transform: none;
  line-height: 1.05;
}
:root[data-theme="dark"] .hero-audience::before { font-weight: 500; }
@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) .hero-audience::before { font-weight: 500; }
}
:root[data-lang="ru"] .hero-audience::before { content: "ДЛЯ ЛЮБОЙ ПРОФЕССИИ НА HH.RU"; }
.hero-cta-row .button { flex: 0 0 auto; }
.bot-handle {
  margin: 0;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
}

/* ============================================================================
   Hero side panes — three variants, toggled via body[data-hero-variant]
   ============================================================================ */
.hero-side {
  display: none;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 4px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  animation: surface-in 720ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
  animation-delay: 160ms;
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--card-2) 92%, transparent), color-mix(in srgb, var(--card) 84%, transparent)),
    repeating-linear-gradient(135deg, color-mix(in srgb, var(--accent) 4%, transparent) 0, color-mix(in srgb, var(--accent) 4%, transparent) 1px, transparent 1px, transparent 14px);
}

body[data-hero-variant="ticker"] .hero-side-ticker,
body[data-hero-variant="big"] .hero-side-big,
body[data-hero-variant="solidarity"] .hero-side-solidarity {
  display: grid;
}

/* ---- Variant A: Live ticker ---- */
.hero-side-ticker {
  grid-template-rows: auto auto 1fr auto;
  gap: 18px;
  min-height: 540px;
}

.ticker-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--muted);
}
.ticker-head span:last-child {
  color: var(--accent);
  position: relative;
  padding-left: 16px;
}
.ticker-head span:last-child::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--panel-glow);
  animation: pulse 1.8s ease-in-out infinite;
}

.ticker-counter {
  display: grid;
  gap: 8px;
  padding: 22px 24px;
  border: 1px solid color-mix(in srgb, var(--border) 70%, transparent);
  background: color-mix(in srgb, var(--bg) 40%, var(--card));
  border-radius: 2px;
  position: relative;
}
.ticker-counter::before {
  content: "";
  position: absolute;
  left: 0; top: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, var(--accent), var(--accent-2));
}
.ticker-counter strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 56px;
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--text);
  font-variant-numeric: tabular-nums;
}
:root[data-theme="dark"] .ticker-counter strong { font-weight: 500; }
@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) .ticker-counter strong { font-weight: 500; }
}
.ticker-counter small {
  display: block;
  color: var(--text-soft);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.ticker-feed {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  align-content: start;
}

.ticker-feed li {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid color-mix(in srgb, var(--border) 70%, transparent);
  background: color-mix(in srgb, var(--bg) 32%, var(--card));
  color: var(--text);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.4;
}
.ticker-feed li b {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.ticker-feed li time {
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.08em;
  white-space: nowrap;
}
.ticker-feed li::before {
  content: none;
}

.ticker-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding-top: 14px;
  border-top: 1px solid var(--rule);
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ---- Variant B: Big number editorial ---- */
.hero-side-big {
  grid-template-rows: auto 1fr auto;
  align-content: stretch;
  min-height: 540px;
  padding: 32px 28px;
}
.hero-side-big .big-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--muted);
}
.big-number {
  display: grid;
  align-content: center;
  justify-items: start;
  position: relative;
}
.big-number strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(140px, 22vw, 260px);
  line-height: 0.86;
  letter-spacing: -0.06em;
  color: var(--text);
  font-variant-numeric: tabular-nums;
}
:root[data-theme="dark"] .big-number strong { font-weight: 500; }
@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) .big-number strong { font-weight: 500; }
}
.big-number .big-caption {
  margin-top: 12px;
  max-width: 22ch;
  color: var(--text-soft);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.45;
}
.big-foot {
  display: grid;
  gap: 4px;
  padding: 16px 18px;
  border: 1px solid color-mix(in srgb, var(--border) 70%, transparent);
  background: color-mix(in srgb, var(--bg) 40%, var(--card));
  border-radius: 2px;
  position: relative;
}
.big-foot::before {
  content: "";
  position: absolute;
  left: 0; top: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, var(--accent), var(--accent-2));
}
.big-foot strong {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
  color: var(--text);
  font-variant-numeric: tabular-nums;
}
:root[data-theme="dark"] .big-foot strong { font-weight: 500; }
@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) .big-foot strong { font-weight: 500; }
}
.big-foot small {
  color: var(--text-soft);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ---- Variant C: Solidarity feed ---- */
.hero-side-solidarity {
  grid-template-rows: auto auto 1fr auto;
  gap: 18px;
  min-height: 540px;
}
.solidarity-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--muted);
}
.solidarity-line {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 28px;
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--text);
  text-wrap: balance;
}
.solidarity-line b {
  color: var(--accent);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}
:root[data-theme="dark"] .solidarity-line { font-weight: 500; }
@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) .solidarity-line { font-weight: 500; }
}
.solidarity-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 6px;
  align-content: start;
}
.solidarity-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: baseline;
  gap: 10px;
  padding: 10px 14px;
  border: 1px solid color-mix(in srgb, var(--border) 70%, transparent);
  background: color-mix(in srgb, var(--bg) 32%, var(--card));
  color: var(--text);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
}
.solidarity-list li::before {
  content: attr(data-mark);
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.solidarity-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding-top: 14px;
  border-top: 1px solid var(--rule);
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ============================================================================
   Live strip — thin band under hero, present always
   ============================================================================ */
.live-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin: 18px 0 0;
  border: 1px solid var(--border);
  border-radius: 2px;
  background: color-mix(in srgb, var(--card) 70%, var(--bg));
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}
.live-strip > div {
  padding: 16px 22px;
  border-right: 1px solid var(--border);
  display: grid;
  gap: 4px;
  align-content: center;
}
.live-strip > div:last-child { border-right: none; }
.live-strip-hero {
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--accent) 9%, transparent), transparent 70%);
}
.live-strip-hero strong {
  color: var(--accent);
}
.live-strip strong {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 24px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--text);
  font-variant-numeric: tabular-nums;
}
:root[data-theme="dark"] .live-strip strong { font-weight: 500; }
@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) .live-strip strong { font-weight: 500; }
}
.live-strip span {
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.4;
}
.live-strip .live-mark {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.live-strip .live-mark::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--panel-glow);
  animation: pulse 1.8s ease-in-out infinite;
}

/* ============================================================================
   Empathy block — between hero and features
   ============================================================================ */
.empathy {
  margin-top: 36px;
  padding: 56px 52px;
  border: 1px solid var(--border);
  border-radius: 4px;
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--card) 86%, transparent), color-mix(in srgb, var(--paper) 70%, transparent));
  box-shadow: var(--shadow);
  position: relative;
}
.empathy::before {
  content: "";
  position: absolute;
  left: 52px;
  top: 0;
  width: 64px;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
}

.empathy h2 {
  font-weight: 600;
  font-size: clamp(32px, 4.2vw, 48px);
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: var(--text);
  max-width: 20ch;
  text-wrap: balance;
}
:root[data-theme="dark"] .empathy h2 { font-weight: 500; }
@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) .empathy h2 { font-weight: 500; }
}
.empathy-lead {
  margin-top: 22px;
  max-width: 56ch;
  color: var(--text-soft);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  text-wrap: pretty;
}

.empathy-rows {
  display: grid;
  gap: 0;
  margin-top: 36px;
  border-top: 1px solid var(--rule);
}
.empathy-row {
  display: grid;
  grid-template-columns: 120px minmax(0, 1.2fr) minmax(0, 2fr);
  gap: 32px;
  align-items: baseline;
  padding: 32px 0;
  border-bottom: 1px solid var(--rule);
  transition: background 240ms ease;
}
.empathy-row:hover { background: color-mix(in srgb, var(--accent) 4%, transparent); }
.empathy-row > .num {
  font-family: var(--font-display);
  font-size: clamp(64px, 7vw, 92px);
  font-weight: 700;
  line-height: 0.82;
  letter-spacing: -0.04em;
  font-variant-numeric: tabular-nums;
  background: linear-gradient(160deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  align-self: start;
}
:root[data-theme="dark"] .empathy-row > .num { font-weight: 500; }
@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) .empathy-row > .num { font-weight: 500; }
}
.empathy-row > .head {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  line-height: 1.18;
  letter-spacing: -0.01em;
  color: var(--text);
}
:root[data-theme="dark"] .empathy-row > .head { font-weight: 500; }
@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) .empathy-row > .head { font-weight: 500; }
}
.empathy-row > .body {
  color: var(--text-soft);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  text-wrap: pretty;
}

.empathy-bridge {
  margin-top: 36px;
  padding: 22px 26px;
  border: 1px dashed color-mix(in srgb, var(--accent) 42%, var(--border));
  border-radius: 2px;
  background: color-mix(in srgb, var(--accent) 4%, var(--card));
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  font-style: italic;
}
.empathy-bridge b {
  font-style: normal;
  font-weight: 700;
  color: var(--accent);
}

/* ============================================================================
   Features
   ============================================================================ */
.features {
  margin-top: 24px;
  padding: 56px 52px;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: color-mix(in srgb, var(--card) 78%, var(--bg));
  box-shadow: var(--shadow);
  position: relative;
}
.features::before {
  content: "";
  position: absolute;
  left: 52px;
  top: 0;
  width: 64px;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
}

.features h2 {
  font-weight: 600;
  font-size: clamp(32px, 4.2vw, 48px);
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: var(--text);
  max-width: 22ch;
  text-wrap: balance;
}
:root[data-theme="dark"] .features h2 { font-weight: 500; }
@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) .features h2 { font-weight: 500; }
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 32px;
  counter-reset: feature-counter;
}

.feature-card {
  padding: 30px 28px;
  border: 1px solid var(--border);
  border-top: 3px solid var(--accent);
  border-radius: 0;
  background: color-mix(in srgb, var(--card-2) 60%, var(--card));
  position: relative;
  counter-increment: feature-counter;
  transition: transform 220ms cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 220ms cubic-bezier(0.2, 0.8, 0.2, 1), border-color 220ms ease;
}
.feature-card::before {
  content: counter(feature-counter, decimal-leading-zero);
  position: absolute;
  top: 22px;
  right: 26px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.10em;
}
.feature-card:hover {
  transform: translateY(-3px);
  border-top-color: var(--accent-2);
  box-shadow: 0 28px 56px color-mix(in srgb, var(--accent) 12%, transparent);
}
.feature-card h3 {
  margin-top: 10px;
  font-weight: 600;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.012em;
  color: var(--text);
}
:root[data-theme="dark"] .feature-card h3 { font-weight: 500; }
@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) .feature-card h3 { font-weight: 500; }
}
.feature-card p {
  margin-top: 12px;
  color: var(--text-soft);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.58;
  text-wrap: pretty;
}

/* ============================================================================
   Tariffs
   ============================================================================ */
.tariffs {
  margin-top: 24px;
  padding: 56px 52px;
  border: 1px solid var(--border);
  border-radius: 4px;
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--paper) 70%, var(--card)), color-mix(in srgb, var(--card) 88%, transparent));
  box-shadow: var(--shadow);
  position: relative;
}
.tariffs::before {
  content: "";
  position: absolute;
  left: 52px;
  top: 0;
  width: 64px;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
}

.tariffs h2 {
  font-weight: 600;
  font-size: clamp(32px, 4.2vw, 48px);
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: var(--text);
  max-width: 22ch;
  text-wrap: balance;
}
:root[data-theme="dark"] .tariffs h2 { font-weight: 500; }
@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) .tariffs h2 { font-weight: 500; }
}

.tariff-promo-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 18px 0 36px;
  padding: 10px 18px;
  border: 1px solid var(--accent);
  border-radius: 999px;
  background: color-mix(in srgb, var(--accent) 8%, transparent);
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.10em;
  line-height: 1;
  text-transform: uppercase;
}
.tariff-promo-chip::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 1.8s ease-in-out infinite;
}

.tariff-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.tariff-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 28px 24px;
  border: 1px solid var(--border);
  border-radius: 0;
  background: color-mix(in srgb, var(--card) 96%, var(--paper));
  transition: transform 240ms cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 240ms cubic-bezier(0.2, 0.8, 0.2, 1), border-color 240ms ease;
}
.tariff-card::before {
  content: "";
  position: absolute;
  left: 0; top: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  opacity: 0.4;
  transition: opacity 240ms ease;
}
.tariff-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 48px color-mix(in srgb, var(--text) 8%, transparent);
}
.tariff-card:hover::before { opacity: 1; }
.tariff-card header { display: flex; flex-direction: column; gap: 10px; }
.tariff-name {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.tariff-price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 30px;
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--text);
  white-space: nowrap;
}
:root[data-theme="dark"] .tariff-price { font-weight: 600; }
@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) .tariff-price { font-weight: 600; }
}
.tariff-price small {
  margin-left: 3px;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.tariff-card p {
  color: var(--text-soft);
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
  flex: 1;
}
.tariff-card .button {
  width: 100%;
  min-height: 46px;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* PRO base lift (all treatments) */
.tariff-card.is-hit {
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--accent) 8%, var(--card)), var(--card)),
    var(--card);
  border-color: color-mix(in srgb, var(--accent) 56%, var(--border));
  box-shadow:
    0 32px 64px color-mix(in srgb, var(--accent) 20%, transparent),
    inset 0 0 0 1px color-mix(in srgb, var(--accent) 30%, transparent);
  transform: translateY(-6px);
}
.tariff-card.is-hit::before { height: 5px; opacity: 1; }

/* MAX badge (small corner tag, untreated) */
.tariff-badge {
  position: absolute;
  top: -10px;
  right: 14px;
  padding: 5px 12px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: var(--accent-text);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

/* ============================================================================
   PRO treatments — three options
   body[data-pro-treatment="stamp" | "sticker" | "tape"]
   ============================================================================ */
.tariff-card .pro-stamp,
.tariff-card .pro-sticker,
.tariff-card .pro-tape { display: none; }

/* --- Treatment A: rubber-ink stamp --- */
body[data-pro-treatment="stamp"] .tariff-card.is-hit .pro-stamp { display: grid; }
.pro-stamp {
  position: absolute;
  top: 18px;
  right: 14px;
  transform: rotate(-9deg);
  z-index: 3;
  pointer-events: none;
  padding: 8px 12px 7px;
  place-items: center;
  border: 2.5px solid var(--accent);
  border-radius: 4px;
  background: transparent;
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  line-height: 1;
  opacity: 0.92;
  filter: contrast(1.05);
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--accent) 30%, transparent);
}
.pro-stamp::before, .pro-stamp::after {
  content: "";
  position: absolute;
  background: var(--accent);
  opacity: 0.85;
}
.pro-stamp::before { left: -8px; top: 6px; width: 20px; height: 1.5px; }
.pro-stamp::after { right: -8px; bottom: 6px; width: 20px; height: 1.5px; }
/* speckle inking */
.pro-stamp .pro-stamp-inner {
  position: relative;
  z-index: 1;
  display: inline-block;
}

body[data-pro-treatment="stamp"] .tariff-card.is-hit { padding-top: 56px; }
body[data-pro-treatment="stamp"] .tariff-card.is-hit .tariff-badge { display: none; }

/* --- Treatment B: sticker peel --- */
body[data-pro-treatment="sticker"] .tariff-card.is-hit .pro-sticker { display: grid; }
.pro-sticker {
  position: absolute;
  top: -22px;
  right: -22px;
  width: 90px;
  height: 90px;
  z-index: 3;
  pointer-events: none;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: var(--accent-text);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1.1;
  text-align: center;
  transform: rotate(12deg);
  box-shadow:
    0 16px 36px color-mix(in srgb, var(--accent) 38%, transparent),
    inset 0 -3px 0 color-mix(in srgb, #000 18%, transparent),
    inset 0 0 0 2px color-mix(in srgb, #fff 28%, transparent);
}
.pro-sticker::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1.5px dashed color-mix(in srgb, #fff 50%, transparent);
  border-radius: 50%;
}
body[data-pro-treatment="sticker"] .tariff-card.is-hit .tariff-badge { display: none; }

/* --- Treatment C: corner tape ribbon --- */
body[data-pro-treatment="tape"] .tariff-card.is-hit .pro-tape { display: grid; }
.pro-tape {
  position: absolute;
  top: 14px;
  left: -10px;
  z-index: 3;
  pointer-events: none;
  padding: 8px 22px 8px 14px;
  place-items: center;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: var(--accent-text);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  line-height: 1;
  clip-path: polygon(0 0, 100% 0, calc(100% - 10px) 50%, 100% 100%, 0 100%, 8px 50%);
  box-shadow: 0 8px 18px color-mix(in srgb, var(--accent) 32%, transparent);
}
body[data-pro-treatment="tape"] .tariff-card.is-hit { padding-top: 52px; }
body[data-pro-treatment="tape"] .tariff-card.is-hit .tariff-badge { display: none; }

/* ============================================================================
   FAQ
   ============================================================================ */
.landing-faq {
  margin-top: 24px;
  padding: 56px 52px;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: color-mix(in srgb, var(--card) 76%, var(--bg));
  box-shadow: var(--shadow);
  position: relative;
}
.landing-faq::before {
  content: "";
  position: absolute;
  left: 52px;
  top: 0;
  width: 64px;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
}

.landing-faq h2 {
  font-weight: 600;
  font-size: clamp(32px, 4.2vw, 48px);
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: var(--text);
  max-width: 22ch;
}
:root[data-theme="dark"] .landing-faq h2 { font-weight: 500; }
@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) .landing-faq h2 { font-weight: 500; }
}

.faq-list {
  display: grid;
  gap: 0;
  margin-top: 36px;
  border-top: 1px solid var(--rule);
}
.faq-item {
  padding: 22px 0;
  border-bottom: 1px solid var(--rule);
}
.faq-item > summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--text);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
  line-height: 1.28;
  letter-spacing: -0.01em;
  transition: color 180ms ease;
}
:root[data-theme="dark"] .faq-item > summary { font-weight: 500; }
@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) .faq-item > summary { font-weight: 500; }
}
.faq-item > summary:hover { color: var(--accent); }
.faq-item > summary::-webkit-details-marker { display: none; }
.faq-item > summary::after {
  content: "+";
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--rule);
  border-radius: 50%;
  color: var(--accent);
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
  transition: transform 220ms cubic-bezier(0.2, 0.8, 0.2, 1), background 220ms ease, border-color 220ms ease;
}
.faq-item[open] > summary::after {
  transform: rotate(45deg);
  background: var(--accent);
  color: var(--accent-text);
  border-color: var(--accent);
}
.faq-item p {
  margin-top: 16px;
  max-width: 64ch;
  color: var(--text-soft);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.62;
}

/* ============================================================================
   Dev blog panel
   ============================================================================ */
.blog-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  margin-top: 24px;
  padding: 36px 44px;
  border: 1px solid var(--border);
  border-radius: 4px;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--card) 82%, transparent), color-mix(in srgb, var(--paper) 70%, transparent));
  box-shadow: var(--shadow);
  position: relative;
}
.blog-panel::before {
  content: "";
  position: absolute;
  left: 0; top: 24px;
  width: 4px;
  height: calc(100% - 48px);
  background: linear-gradient(180deg, var(--accent-2), var(--accent));
  opacity: 0.7;
}
.blog-panel h2 {
  font-weight: 600;
  font-size: 28px;
  line-height: 1.14;
  letter-spacing: -0.018em;
  color: var(--text);
}
:root[data-theme="dark"] .blog-panel h2 { font-weight: 500; }
@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) .blog-panel h2 { font-weight: 500; }
}
.blog-panel p:not(.section-label) {
  margin-top: 12px;
  color: var(--text-soft);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.55;
  max-width: 56ch;
}

.text-link {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 22px;
  border: 1px solid color-mix(in srgb, var(--accent) 42%, var(--border));
  border-radius: 12px;
  background: color-mix(in srgb, var(--bg) 36%, var(--card));
  color: var(--text);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  transition: background 220ms ease, border-color 220ms ease, transform 220ms ease;
}
.text-link:hover {
  transform: translateY(-2px);
  background: color-mix(in srgb, var(--accent) 14%, var(--card));
  border-color: var(--accent);
}

/* ============================================================================
   Disclaimer + footer
   ============================================================================ */
.disclaimer {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--rule);
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.7;
  max-width: 88ch;
}
.footer {
  display: flex;
  width: min(var(--page-width), calc(100% - 40px));
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin: 0 auto;
  padding: 64px 0 64px;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.5;
}
.footer nav { display: flex; gap: 10px; align-items: center; }
.footer a {
  color: var(--muted);
  text-decoration: none;
  transition: color 180ms ease;
}
.footer a:hover { color: var(--accent); }

/* ============================================================================
   Animations
   ============================================================================ */
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}
@keyframes pulse-pos {
  0%, 100% { opacity: 1; transform: translateY(-50%) scale(1); }
  50% { opacity: 0.5; transform: translateY(-50%) scale(0.75); }
}
/* surface-in stays subtle on purpose: it does not gate visibility (opacity stays
   at the element's base 1), so a paused/hidden tab cannot leave the hero blank.
   Pure transform + blur. */
@keyframes surface-in {
  from { transform: translateY(14px); filter: blur(2px); }
  to   { transform: translateY(0);    filter: blur(0); }
}
@keyframes count-flash {
  0% { color: var(--accent); }
  100% { color: var(--text); }
}
.count-flash { animation: count-flash 1200ms ease forwards; }

/* ============================================================================
   Mobile
   ============================================================================ */
@media (max-width: 860px) {
  .site-bar {
    width: min(100% - 24px, 1180px);
    flex-direction: column;
    align-items: stretch;
    margin-top: 14px;
    padding: 14px;
  }
  .site-links { justify-content: flex-start; }
  .site-controls { justify-content: stretch; }
  .control-group { flex: 1 1 auto; justify-content: center; }
  .bar-cta { flex: 1 1 100%; min-height: 44px; }

  .page {
    width: min(100% - 24px, var(--page-width));
    padding-top: 28px;
  }

  .landing-hero { gap: 14px; }
  .landing-hero::before { display: none; }
  .hero-copy { padding: 32px 24px; }

  .live-strip { grid-template-columns: 1fr 1fr; }
  .live-strip > div:nth-child(2) { border-right: none; }
  .live-strip > div:nth-child(1), .live-strip > div:nth-child(2) { border-bottom: 1px solid var(--border); }

  .empathy, .features, .tariffs, .landing-faq { padding: 36px 24px; }
  .empathy::before, .features::before, .tariffs::before, .landing-faq::before { left: 24px; }

  .empathy-row { grid-template-columns: 1fr; gap: 4px; padding: 22px 0; }
  .empathy-row > .num { font-size: 56px; line-height: 1; margin-bottom: 4px; }
  .feature-grid { grid-template-columns: 1fr; }
  .tariff-grid { grid-template-columns: 1fr; gap: 18px; }
  .tariff-card.is-hit { transform: none; }
  body[data-pro-treatment="sticker"] .tariff-card.is-hit { margin-top: 14px; }

  .faq-item > summary { font-size: 17px; }
  .blog-panel { grid-template-columns: 1fr; padding: 28px 24px; }
  .blog-panel::before { display: none; }
  .text-link { width: 100%; }

  .footer { display: block; padding: 48px 0 56px; }
  .footer nav { flex-wrap: wrap; margin-top: 12px; }
}

/* ============================================================================
   Reduced motion
   ============================================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }
}
