/* Светлая тема по мотивам themediator.ai: белый фон, Lora в заголовках, Nunito в тексте, тёмные кнопки, тонированные скруглённые полосы */
:root {
  --bg: #FFFFFF;
  --head: #111013;
  --ink: #1F1D21;
  --soft: #4E4B52;
  --muted: #7A777E;
  --terracotta: #C4703F;
  --terracotta-deep: #A75A2F;
  --sage: #7A9E7E;
  --sage-dark: #4A6B4E;
  --tint-warm: #F8E7DA;
  --tint-sage: #E3EDE4;
  --peach-deep: #F1D2BC;
  --sage-soft: #CDDFCF;
  --cream: #FBF2E0;
  --hairline: rgba(17, 16, 19, 0.12);
  --hairline-strong: rgba(17, 16, 19, 0.22);
  --focus-ring: rgba(74, 107, 78, 0.55);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --serif: "Lora", Georgia, "Times New Roman", serif;
  --sans: "Nunito", ui-sans-serif, system-ui, -apple-system, sans-serif;
  color-scheme: light;
}

* { box-sizing: border-box; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; text-rendering: optimizeLegibility; }

html { background: var(--bg); scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100dvh;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
}

::selection { background: rgba(196, 112, 63, 0.22); color: var(--head); }

.wrap { max-width: 720px; margin: 0 auto; padding: 0 20px; }
.wrap-wide { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.inner { max-width: 1200px; margin: 0 auto; }

h1, h2, h3 { font-family: var(--serif); font-weight: 500; color: var(--head); margin: 0; }
h1 { font-size: clamp(2.6rem, 5.7vw, 5.125rem); line-height: 1; letter-spacing: -0.03em; font-weight: 600; text-wrap: balance; }
h2 { font-size: clamp(1.75rem, 2.5vw, 2.25rem); line-height: 1.15; letter-spacing: -0.025em; margin: 0 0 14px; text-wrap: balance; }
h3 { font-size: 1.2rem; line-height: 1.3; letter-spacing: -0.01em; margin: 0 0 8px; text-wrap: balance; }
p { margin: 12px 0; text-wrap: pretty; }
li, summary, .story-teaser, .compare li, .stats small, .cta-note, .privacy { text-wrap: pretty; }
.story-title, summary, .h-big, .steps li span { text-wrap: balance; }
a { color: var(--head); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a, button, summary { touch-action: manipulation; }
a:focus-visible, summary:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px var(--bg), 0 0 0 4px var(--focus-ring);
  border-radius: 6px;
}
img { max-width: 100%; height: auto; }

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--head); color: #fff; padding: 12px 20px;
  border-radius: 0 0 12px 0; font-weight: 700; text-decoration: none;
}
.skip:focus { left: 0; }

em.ac { font-style: italic; font-weight: 500; }
em.ac.ac-sage { color: var(--sage-dark); }

.eyebrow {
  font-family: var(--sans); font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--terracotta-deep); margin: 0 0 12px;
}

/* Шапка */
.topbar { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 22px 0; }
.brand { font-family: var(--serif); font-weight: 700; font-size: 1.45rem; letter-spacing: -0.02em; color: var(--head); text-decoration: none; }
.brand span { color: var(--terracotta); }
.nav-links { display: flex; gap: 32px; margin-left: auto; margin-right: 8px; }
.nav-links a { font-weight: 600; font-size: 0.98rem; color: var(--ink); text-decoration: none; }
.nav-links a:hover { color: var(--terracotta-deep); }

/* Кнопки: тёмная заливка и контурная, как у референса */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.55rem;
  font-family: var(--sans); font-weight: 700; font-size: 1rem; line-height: 1.2;
  padding: 13px 22px; border-radius: 6px;
  background: var(--terracotta); color: #fff; border: 2px solid var(--terracotta);
  text-decoration: none; cursor: pointer; white-space: nowrap; user-select: none;
  transition: background 200ms ease, color 200ms ease, border-color 200ms ease, transform 240ms var(--ease), box-shadow 240ms var(--ease);
}
.btn:hover { background: var(--terracotta-deep); border-color: var(--terracotta-deep); transform: translateY(-1px); box-shadow: 0 12px 26px -14px rgba(167, 90, 47, 0.6); }
.btn:active { transform: translateY(0) scale(0.99); box-shadow: none; }
.btn:focus-visible { outline: none; box-shadow: 0 0 0 2px var(--bg), 0 0 0 4px var(--focus-ring); }
.btn svg { width: 1.15em; height: 1.15em; flex: none; }
.btn-ghost {
  background: transparent; color: var(--head);
  font-family: var(--serif); font-weight: 500; font-size: 1.08rem;
  border-radius: 5px; padding: 12px 24px;
}
.btn-ghost:hover { background: var(--head); color: #fff; border-color: var(--head); box-shadow: none; }
.topbar .btn { padding: 9px 18px; font-size: 0.98rem; }

/* Hero по центру */
.hero { padding: 32px 0 24px; text-align: left; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 44px; align-items: center; }
.hero h1 { display: flex; flex-direction: column; align-items: flex-start; gap: 6px; }
.h1-top { font-size: clamp(2.6rem, 4.9vw, 4.4rem); font-weight: 600; letter-spacing: -0.03em; line-height: 1; }
.h1-sub { font-size: clamp(1.7rem, 3.2vw, 2.9rem); font-weight: 500; letter-spacing: -0.025em; line-height: 1.08; }
.h1-sub .hl { font-style: italic; color: var(--terracotta); }
.hero-visual { position: relative; width: 100%; margin: 0; }
.hero-visual::before { content: ""; position: absolute; inset: 6% 0 -2%; border-radius: 48% 52% 46% 54% / 55% 45% 55% 45%; background: radial-gradient(ellipse at 40% 45%, var(--tint-warm) 0%, var(--peach-deep) 45%, var(--tint-sage) 75%, transparent 100%); opacity: 0.9; }
.hero-lede { font-family: var(--serif); font-size: clamp(1.02rem, 1.35vw, 1.2rem); line-height: 1.55; color: var(--ink); max-width: 32em; margin: 22px 0 0; }
.cta-row { display: flex; justify-content: flex-start; flex-wrap: wrap; gap: 14px; margin-top: 26px; }
.cta-row .btn { min-width: 0; }
.cta-note { font-size: 0.92rem; color: var(--muted); margin: 12px 0 0; max-width: 34em; }
.cta .cta-note { color: #FFE3CF; margin: 12px 0 0; }
.hero-illu { position: relative; display: block; width: 100%; margin: 0 auto; }
.privacy { max-width: 34em; margin: 18px 0 0; font-size: 0.92rem; color: var(--soft); }

/* Каскад появления hero */
.hero h1, .hero-lede, .cta-row, .hero .cta-note, .hero-visual, .privacy {
  opacity: 0; transform: translateY(14px);
  animation: fade-up 0.9s var(--ease) forwards;
}
.hero h1 { animation-delay: 0.05s; }
.hero-lede { animation-delay: 0.18s; }
.cta-row { animation-delay: 0.36s; }
.hero .cta-note { animation-delay: 0.4s; }
.hero-visual { animation-delay: 0.42s; }
.privacy { animation-delay: 0.55s; }
@keyframes fade-up { to { opacity: 1; transform: translateY(0); } }

/* Появление секций при скролле */
html.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
html.js .reveal.in { opacity: 1; transform: none; }

/* Тонированные скруглённые полосы */
.band { padding: 16px 24px; }
.band-inner { max-width: 1200px; margin: 0 auto; border-radius: 24px; padding: 48px 56px; }
.tint-warm { background: var(--tint-warm); }
.tint-sage { background: var(--tint-sage); }

.band-head { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 48px; align-items: center; }
.band-head p { max-width: 36em; }
.band-head .btn { margin-top: 10px; }
.band-head img { width: min(100%, 360px); justify-self: center; }

.squiggles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; margin: 30px 0 24px; }
.squiggles span {
  height: 12px; opacity: 0.8;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='12' viewBox='0 0 28 12'%3E%3Cpath d='M0 6C3.5 0 10.5 0 14 6s10.5 6 14 0' fill='none' stroke='%23C4703F' stroke-width='1.6'/%3E%3C/svg%3E") repeat-x left center;
}

.steps { list-style: none; padding: 0; margin: 30px 0 2px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; position: relative; }
.steps::before { content: ""; position: absolute; left: 12%; right: 12%; top: 22px; border-top: 2px dashed rgba(167, 90, 47, 0.45); }
.steps li { position: relative; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 12px; font-size: 0.98rem; line-height: 1.5; padding: 0 8px; }
.steps .num { width: 46px; height: 46px; border-radius: 50%; background: var(--terracotta); color: #fff; font-family: var(--serif); font-weight: 600; font-size: 1.25rem; display: inline-flex; align-items: center; justify-content: center; box-shadow: 0 0 0 6px var(--tint-warm); }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card { background: #fff; border-radius: 20px; padding: 26px 24px 24px; box-shadow: 0 10px 30px -22px rgba(17, 16, 19, 0.35); }
.card .ico-wrap { width: 54px; height: 54px; border-radius: 16px; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; background: var(--sage-soft); }
.card:nth-child(2) .ico-wrap { background: var(--peach-deep); }
.card:nth-child(3) .ico-wrap { background: var(--cream); }
.card .ico { width: 28px; height: 28px; color: var(--head); display: block; }
.card h3 { font-size: 1.15rem; }
.card p { margin: 0; font-size: 0.98rem; line-height: 1.65; }
.ico { stroke: currentColor; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

/* Строка о приватности */
.privacy-row { padding: 16px 24px; }
.privacy-row .inner { display: grid; grid-template-columns: 1fr 260px; gap: 32px; align-items: center; background: var(--tint-sage); border-radius: 24px; padding: 40px 48px; }
.privacy-row .ico-wrap { width: 54px; height: 54px; border-radius: 16px; background: #fff; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.privacy-row .ico { width: 28px; height: 28px; color: var(--sage-dark); }
.privacy-row h3 { font-size: 1.25rem; margin-bottom: 8px; }
.privacy-row p { margin: 0; max-width: 46em; }
.privacy-row img { width: 100%; max-width: 260px; justify-self: center; }

/* Полоса «чем отличается»: чат слева, текст и цифры справа */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split p { max-width: 36em; }
.chat {
  background: #fff; border: 1px solid var(--hairline); border-radius: 18px; padding: 22px;
  display: flex; flex-direction: column; gap: 10px;
  box-shadow: 0 24px 48px -30px rgba(17, 16, 19, 0.35);
}
.bubble {
  max-width: 88%; padding: 10px 14px; border-radius: 14px;
  font-size: 0.95rem; line-height: 1.5;
  opacity: 0; transform: translateY(8px);
  animation: rise 0.7s var(--ease) forwards;
}
.bubble.user { align-self: flex-end; background: var(--sage); color: #0F140F; border-bottom-right-radius: 4px; animation-delay: 0.3s; }
.bubble.bot { align-self: flex-start; background: var(--tint-warm); color: var(--ink); border: 1px solid var(--hairline); border-bottom-left-radius: 4px; }
.bubble.bot.b1 { animation-delay: 1s; }
.bubble.bot.b2 { animation-delay: 1.7s; }
.chat-caption { font-size: 0.8rem; color: var(--muted); text-align: center; margin-top: 4px; }
@keyframes rise { to { opacity: 1; transform: translateY(0); } }

.compare { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 22px; }
.compare > div { background: #fff; border-radius: 18px; padding: 18px 20px; }
.compare > div.us { background: var(--sage-soft); }
.compare h4 { font-family: var(--serif); font-weight: 600; font-size: 1.02rem; margin: 0 0 10px; color: var(--head); }
.compare ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; font-size: 0.92rem; line-height: 1.45; }
.compare li { display: flex; gap: 10px; align-items: flex-start; }
.compare li::before { content: ""; flex: none; width: 18px; height: 18px; margin-top: 2px; border-radius: 50%; background: var(--peach-deep) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23A75A2F' stroke-width='3' stroke-linecap='round'%3E%3Cpath d='M7 7l10 10M17 7L7 17'/%3E%3C/svg%3E") center / 11px no-repeat; }
.compare .us li::before { background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234A6B4E' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12.5l4.5 4.5L19 7.5'/%3E%3C/svg%3E") center / 12px no-repeat; }
.stats { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; margin-top: 22px; }
.stats > div { border-radius: 18px; padding: 16px 18px; background: var(--cream); }
.stats > div:nth-child(2) { background: var(--peach-deep); }
.stats > div:nth-child(3) { background: #fff; }
.stats b { font-family: var(--serif); font-weight: 500; font-size: 2.4rem; line-height: 1; letter-spacing: -0.03em; color: var(--head); }
.stats .unit { font-family: var(--serif); font-size: 1.05rem; color: var(--terracotta-deep); margin-left: 5px; }
.stats small { display: block; font-size: 0.86rem; line-height: 1.4; color: var(--soft); margin-top: 6px; }

/* FAQ в две колонки */
.faq { padding: 40px 24px 24px; }
.faq h2 { text-align: center; font-size: 1.75rem; margin-bottom: 26px; }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 56px; align-items: start; }
details { border-top: 1px solid var(--hairline-strong); padding: 4px 0; }
summary {
  cursor: pointer; list-style: none; display: flex; gap: 14px; align-items: baseline;
  padding: 14px 0; font-family: var(--serif); font-weight: 500; font-size: 1.08rem; color: var(--head);
  transition: color 200ms ease;
}
summary::-webkit-details-marker { display: none; }
summary::before { content: "+"; font-family: var(--sans); font-weight: 600; font-size: 1.35rem; line-height: 1; width: 16px; flex: none; color: var(--terracotta); }
details[open] summary::before { content: "−"; }
summary:hover { color: var(--terracotta-deep); }
details p { margin: 0 0 16px 30px; font-size: 0.98rem; color: var(--ink); }

/* Финальный призыв: терракотовая полоса с иллюстрацией */
.cta { background: var(--terracotta); color: #FFF4EA; display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 40px; align-items: center; }
.cta .eyebrow { color: #FFE3CF; margin-bottom: 14px; }
.cta .h-big { font-size: clamp(2rem, 3.4vw, 3rem); line-height: 1.1; letter-spacing: -0.03em; color: #fff; margin: 0 0 14px; }
.cta p { max-width: 34em; margin: 0 0 26px; font-size: 1.05rem; color: #FFF4EA; }
.cta .btn { background: #fff; border-color: #fff; color: var(--terracotta-deep); }
.cta .btn:hover { background: var(--cream); border-color: var(--cream); box-shadow: 0 12px 26px -14px rgba(0, 0, 0, 0.35); }
.cta img { width: 100%; max-width: 380px; justify-self: center; }

/* Подвал: дисклеймер, колонки, строка копирайта */
footer { padding: 40px 24px 40px; color: var(--soft); font-size: 0.92rem; background: var(--tint-sage); margin-top: 16px; }
footer .inner { padding-top: 0; }
.foot-note { max-width: 62em; margin: 0 0 28px; }
.foot-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 40px; align-items: start; }
footer h3 { font-size: 1rem; margin-bottom: 6px; }
footer p { margin: 6px 0; }
footer a { color: var(--head); text-decoration: none; }
footer a:hover { color: var(--terracotta-deep); text-decoration: underline; }
footer .brand { display: inline-block; }
.foot-bottom { display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; border-top: 1px solid var(--hairline); margin-top: 30px; padding-top: 18px; font-size: 0.88rem; }
.foot-bottom .sep { margin: 0 10px; color: var(--muted); }

/* Статьи */
.article { padding: 30px 0 10px; }
.article h1 { font-size: clamp(1.9rem, 4vw, 2.7rem); line-height: 1.12; letter-spacing: -0.025em; margin-bottom: 10px; }
.article .meta { color: var(--muted); font-size: 0.9rem; margin-top: 0; }
.article h2 { margin: 44px 0 12px; font-size: clamp(1.5rem, 2.4vw, 1.9rem); }
.article h3 { margin: 28px 0 8px; }
.article ul, .article ol { padding-left: 24px; }
.article li { margin: 8px 0; }
.article p, .article li { color: var(--ink); }
blockquote {
  margin: 22px 0; padding: 18px 22px;
  background: var(--tint-warm); border-left: 3px solid var(--terracotta); border-radius: 0 14px 14px 0;
  font-family: var(--serif); font-style: italic; color: var(--ink);
}
.try-box { background: var(--tint-sage); border-radius: 18px; padding: 28px; margin: 34px 0; }
.try-box h3 { margin-top: 0; }
.try-box p { color: var(--ink); font-size: 1rem; }

.more { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 26px 0 10px; }
.more a {
  display: block; background: #fff; border: 1px solid var(--hairline-strong); border-radius: 12px;
  padding: 14px 16px; text-decoration: none; color: var(--head); font-size: 0.97rem;
  transition: border-color 240ms var(--ease), transform 240ms var(--ease);
}
.more a:hover { border-color: var(--head); transform: translateY(-1px); }
.more a small { display: block; color: var(--terracotta-deep); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 3px; }

/* Истории: карточки на главной и в хабе */
.stories-section { padding: 40px 24px 24px; }
.stories-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; }
.stories-head p { max-width: 36em; margin-bottom: 0; }
.stories { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 28px; }
.story-card { display: block; text-decoration: none; color: var(--head); }
.story-card .thumb { display: block; aspect-ratio: 16 / 10; border-radius: 16px; overflow: hidden; background: var(--tint-warm); margin-bottom: 14px; }
.story-card:nth-child(3n+2) .thumb { background: var(--tint-sage); }
.story-card:nth-child(3n) .thumb { background: var(--cream); }
.story-card .thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 500ms var(--ease); }
.story-card .thumb.contain img { object-fit: contain; padding: 7%; }
.story-card:hover .thumb img { transform: scale(1.03); }
.story-meta { display: block; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--soft); margin-bottom: 6px; }
.story-title { display: block; font-family: var(--serif); font-weight: 500; font-size: 1.15rem; line-height: 1.3; letter-spacing: -0.01em; }
.story-card:hover .story-title { color: var(--terracotta-deep); }
.story-teaser { display: block; font-size: 0.95rem; line-height: 1.55; color: var(--soft); margin-top: 8px; }
.hub { padding: 30px 0 20px; }
.hub h1 { font-size: clamp(2rem, 4vw, 3rem); line-height: 1.1; letter-spacing: -0.025em; }
.hub-lede { max-width: 40em; font-size: 1.1rem; color: var(--soft); margin: 14px 0 0; }
.hub-grid { margin-top: 36px; }
.hub-try { margin-top: 44px; }
.crumbs { font-size: 0.85rem; margin: 0 0 10px; }
.crumbs a { color: var(--soft); text-decoration: none; }
.crumbs a:hover { color: var(--terracotta-deep); }
.more-all { margin-top: 14px; }

/* Элементы историй: иллюстрация, коротко, фраза-старт, чат-пример */
.story-hero { background: var(--tint-warm); border-radius: 24px; padding: 22px; margin: 22px 0 26px; display: flex; justify-content: center; }
.story-hero.sage { background: var(--tint-sage); }
.story-hero.cream { background: var(--cream); }
.story-hero img { width: min(100%, 340px); height: auto; }
.tldr { background: var(--cream); border-radius: 18px; padding: 18px 22px 16px; margin: 0 0 26px; }
.tldr small { display: block; text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.72rem; font-weight: 700; color: var(--terracotta-deep); margin-bottom: 6px; }
.tldr ul { margin: 0; padding-left: 20px; }
.tldr li { margin: 4px 0; color: var(--ink); }
.phrase { background: var(--tint-sage); border-radius: 18px; padding: 18px 22px; margin: 22px 0; }
.phrase small { display: block; text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.72rem; font-weight: 700; color: var(--sage-dark); margin-bottom: 6px; }
.phrase p { margin: 0; font-family: var(--serif); font-size: 1.12rem; line-height: 1.5; color: var(--head); }
.article .chat { margin: 24px 0; }
.article .bubble { animation: none; opacity: 1; transform: none; }
.article .chat-caption { margin-top: 2px; }

/* Адаптив */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .band-inner { padding: 36px 28px; border-radius: 18px; }
  .band-head, .split, .cards, .faq-grid, .steps, .compare, .cta, .privacy-row .inner, .hero-grid { grid-template-columns: 1fr; }
  .hero-grid { gap: 20px; text-align: center; }
  .hero h1 { align-items: center; }
  .hero-lede, .hero .cta-note, .privacy { margin-left: auto; margin-right: auto; }
  .cta-row { justify-content: center; }
  .hero-visual { max-width: 440px; margin: 6px auto 0; }
  .steps::before { display: none; }
  .steps { gap: 18px; }
  .steps li { flex-direction: row; text-align: left; align-items: center; }
  .privacy-row .inner { padding: 26px 22px; }
  .privacy-row img { max-width: 200px; }
  .cta { text-align: center; }
  .cta p { margin-left: auto; margin-right: auto; }
  .cta img { max-width: 260px; }
  .band-head { gap: 24px; }
  .band-head img { width: min(100%, 300px); }
  .squiggles { grid-template-columns: 1fr; gap: 0; margin: 28px 0 22px; }
  .squiggles span + span { display: none; }
  .cards { gap: 28px; }
  .split { gap: 28px; }
  .split .chat { order: 2; }
  .cta-row .btn { min-width: 0; width: 100%; max-width: 360px; }
  .stories { grid-template-columns: 1fr; gap: 22px; }
  .stories-section .story-card:nth-child(n+4) { display: none; }
  .stories-head { flex-direction: column; align-items: flex-start; }
  .foot-grid { grid-template-columns: 1fr; gap: 20px; }
}
@media (max-width: 600px) {
  body { font-size: 16px; }
  .wrap-wide, .band, .privacy-row, .faq, footer { padding-left: 16px; padding-right: 16px; }
  .topbar { padding: 14px 0; }
  .topbar .btn { padding: 8px 12px; font-size: 0.88rem; }
  .hero { padding: 20px 0 36px; }
  .band, .privacy-row { padding-top: 8px; padding-bottom: 8px; }
  .faq, .stories-section { padding-top: 28px; padding-bottom: 16px; }
  .band-inner { padding: 28px 20px; }
  .stats { gap: 10px; grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .stats > div { padding: 12px 10px; min-width: 0; }
  .stats b { font-size: 1.7rem; }
  .stats .unit { display: block; margin: 2px 0 0; font-size: 0.9rem; }
  .stats small { font-size: 0.78rem; }
  .more { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .bubble, .hero h1, .hero-lede, .cta-row, .hero .cta-note, .hero-visual, .privacy, html.js .reveal {
    animation: none !important; opacity: 1 !important; transform: none !important;
  }
}
