
:root {
  --ink: #07130f;
  --ink-2: #0b1f1a;
  --ink-3: #102b24;
  --paper: #f5f1e6;
  --paper-2: #fffaf0;
  --muted: #6f7f79;
  --line: rgba(15, 47, 40, .16);
  --line-dark: rgba(255,255,255,.12);
  --mint: #2fffd2;
  --emerald: #12d27f;
  --saffron: #ffd166;
  --ember: #ff5a3c;
  --blue: #2962ff;
  --shadow: 0 24px 80px rgba(5, 18, 14, .18);
  --shadow-dark: 0 26px 90px rgba(0,0,0,.34);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --container: min(1180px, calc(100% - 40px));
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(47,255,210,.18), transparent 30rem),
    radial-gradient(circle at 86% 8%, rgba(255,209,102,.16), transparent 26rem),
    linear-gradient(180deg, #f7f2e8 0%, #f4efe2 44%, #ecf6ef 100%);
  min-height: 100vh;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .36;
  background-image:
    linear-gradient(rgba(7,19,15,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7,19,15,.05) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, black, transparent 72%);
  z-index: -1;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

.progress-line {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  z-index: 1000;
  background: rgba(7,19,15,.06);
}
.progress-line span {
  display: block;
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--mint), var(--saffron), var(--ember));
  box-shadow: 0 0 20px rgba(47,255,210,.45);
}

.site-header {
  position: sticky;
  top: 14px;
  z-index: 900;
  width: var(--container);
  margin: 14px auto 0;
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  background: rgba(7,19,15,.76);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  transition: transform .25s ease, background .25s ease, box-shadow .25s ease;
}
.site-header.is-scrolled { background: rgba(7,19,15,.94); transform: translateY(-4px); }
.brand { display: flex; align-items: center; flex: 0 0 auto; }
.brand img { width: 180px; height: auto; }
.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
  flex: 1;
}
.nav-link {
  color: rgba(255,255,255,.78);
  padding: 12px 14px;
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: .01em;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.nav-link:hover { background: rgba(255,255,255,.1); color: #fff; transform: translateY(-1px); }
body.page-home .nav-home,
body.page-withdrawal .nav-withdrawal,
body.page-limits .nav-limits,
body.page-currency .nav-currency,
body.page-errors .nav-errors {
  background: linear-gradient(135deg, rgba(47,255,210,.22), rgba(255,209,102,.16));
  color: #fff;
}
.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.menu-toggle span { width: 18px; height: 2px; background: #fff; border-radius: 99px; transition: .2s ease; }
.menu-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-drawer {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 850;
  background: rgba(7,19,15,.52);
  backdrop-filter: blur(8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s ease;
}
.mobile-drawer.is-open { opacity: 1; pointer-events: auto; }
.drawer-inner {
  width: min(420px, calc(100% - 26px));
  margin: 90px auto 0;
  background: #081713;
  border: 1px solid rgba(47,255,210,.22);
  border-radius: 26px;
  padding: 18px;
  box-shadow: var(--shadow-dark);
  display: grid;
  gap: 8px;
}
.drawer-label { color: var(--mint); text-transform: uppercase; letter-spacing: .18em; font-size: 11px; margin-bottom: 8px; }
.drawer-inner a { color: #fff; padding: 15px; border-radius: 18px; background: rgba(255,255,255,.06); }
.drawer-inner a:hover { background: rgba(47,255,210,.14); }

main { width: 100%; }
.hero-panel {
  width: var(--container);
  margin: 36px auto 0;
  min-height: 650px;
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(360px, .72fr);
  gap: 28px;
  align-items: stretch;
  padding: 26px;
  border-radius: 46px;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,0) 38%),
    radial-gradient(circle at 18% 0%, rgba(47,255,210,.24), transparent 26rem),
    radial-gradient(circle at 82% 18%, rgba(255,209,102,.22), transparent 28rem),
    linear-gradient(135deg, #06120f 0%, #0b201a 48%, #07130f 100%);
  box-shadow: var(--shadow-dark);
}
.hero-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(47,255,210,.16) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: .24;
}
.hero-orbit {
  position: absolute;
  width: 520px;
  height: 520px;
  right: -110px;
  top: -120px;
  border: 1px solid rgba(47,255,210,.3);
  border-radius: 50%;
  box-shadow: inset 0 0 70px rgba(47,255,210,.06), 0 0 100px rgba(255,209,102,.08);
}
.hero-orbit::before, .hero-orbit::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255,209,102,.28);
}
.hero-orbit::before { inset: 74px; }
.hero-orbit::after { inset: 154px; background: rgba(255,90,60,.07); }
.hero-copy,
.hero-visual { position: relative; z-index: 2; }
.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(22px, 5vw, 64px) clamp(12px, 4vw, 42px);
}
.eyebrow,
.route-intro span,
.deck-copy span,
.toc-band span,
.hub-head span,
.responsible-note span {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  gap: 8px;
  font-size: 12px;
  line-height: 1;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--mint);
}
.eyebrow::before,
.route-intro span::before,
.deck-copy span::before,
.toc-band span::before,
.hub-head span::before,
.responsible-note span::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--saffron);
  box-shadow: 0 0 22px rgba(255,209,102,.7);
}
.hero-copy h1 {
  margin: 24px 0 22px;
  font-size: clamp(44px, 7vw, 104px);
  line-height: .93;
  letter-spacing: -.07em;
  max-width: 880px;
}
.hero-copy p {
  margin: 0;
  max-width: 700px;
  color: rgba(255,255,255,.75);
  font-size: clamp(17px, 1.8vw, 22px);
  line-height: 1.65;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 34px; }
.primary-action,
.ghost-action,
.cookie-card button {
  border-radius: 999px;
  min-height: 48px;
  padding: 15px 21px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.primary-action,
.cookie-card button {
  color: #06120f;
  background: linear-gradient(135deg, var(--mint), var(--saffron));
  box-shadow: 0 18px 40px rgba(47,255,210,.18);
}
.ghost-action {
  border: 1px solid rgba(255,255,255,.18);
  color: #fff;
  background: rgba(255,255,255,.08);
}
.primary-action:hover,
.ghost-action:hover,
.cookie-card button:hover { transform: translateY(-2px); box-shadow: 0 18px 50px rgba(255,209,102,.2); }
.hero-visual {
  align-self: center;
  min-height: 560px;
  border-radius: 36px;
  border: 1px solid rgba(255,255,255,.18);
  overflow: hidden;
  background: rgba(255,255,255,.06);
  box-shadow: 0 40px 90px rgba(0,0,0,.34);
}
.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 560px;
}
.hero-visual figcaption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  max-width: calc(100% - 36px);
  border-radius: 18px;
  padding: 12px 14px;
  background: rgba(7,19,15,.78);
  backdrop-filter: blur(12px);
  color: rgba(255,255,255,.85);
  font-size: 13px;
}

.route-map,
.control-deck,
.toc-band,
.article-shell,
.site-hub,
.responsible-note,
.site-footer {
  width: var(--container);
  margin-left: auto;
  margin-right: auto;
}
.route-map {
  margin-top: 22px;
  display: grid;
  grid-template-columns: .42fr 1fr;
  gap: 18px;
  align-items: stretch;
}
.route-intro,
.route-pills,
.control-deck,
.toc-band,
.site-hub,
.responsible-note {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(255,250,240,.72);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}
.route-intro { padding: 24px; }
.route-intro span { color: var(--blue); }
.route-intro p { margin: 14px 0 0; color: var(--muted); line-height: 1.65; }
.route-pills { padding: 16px; display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 10px; }
.route-pill {
  min-height: 112px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 22px;
  padding: 16px;
  background: linear-gradient(180deg, rgba(255,255,255,.7), rgba(255,255,255,.42));
  border: 1px solid rgba(7,19,15,.08);
  transition: transform .2s ease, background .2s ease, border .2s ease;
}
.route-pill span { color: var(--muted); text-transform: uppercase; letter-spacing: .13em; font-size: 10px; line-height: 1.4; }
.route-pill:hover { transform: translateY(-4px); border-color: rgba(47,255,210,.44); }
.route-pill.is-current { background: linear-gradient(135deg, rgba(47,255,210,.22), rgba(255,209,102,.24)); border-color: rgba(7,19,15,.18); }

.control-deck {
  margin-top: 24px;
  padding: 24px;
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 22px;
}
.deck-copy h2,
.toc-band h2,
.hub-head h2 { margin: 12px 0 0; font-size: clamp(28px, 4vw, 48px); letter-spacing: -.05em; line-height: 1; }
.deck-copy p { color: var(--muted); line-height: 1.7; margin: 16px 0 0; }
.tabs {
  padding: 12px;
  border-radius: 28px;
  background: #07130f;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.1);
}
.tab-buttons { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.tab-button {
  border: 0;
  border-radius: 18px;
  cursor: pointer;
  padding: 14px 12px;
  color: rgba(255,255,255,.76);
  background: rgba(255,255,255,.07);
  transition: .2s ease;
}
.tab-button.is-active { color: #06120f; background: linear-gradient(135deg, var(--mint), var(--saffron)); }
.tab-panel {
  display: none;
  color: rgba(255,255,255,.74);
  line-height: 1.75;
  padding: 24px 10px 10px;
  min-height: 112px;
}
.tab-panel.is-active { display: block; }

.toc-band {
  margin-top: 24px;
  padding: 24px;
  display: grid;
  grid-template-columns: .36fr 1fr;
  gap: 20px;
  align-items: start;
}
.toc-links { display: flex; flex-wrap: wrap; gap: 10px; }
.toc-links a {
  padding: 11px 13px;
  border-radius: 999px;
  background: rgba(7,19,15,.06);
  color: #18332b;
  font-size: 14px;
  transition: .2s ease;
}
.toc-links a:hover { background: #07130f; color: #fff; transform: translateY(-1px); }

.article-shell {
  margin-top: 34px;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  border-radius: 36px;
  background: rgba(255,250,240,.82);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  overflow: clip;
  padding: clamp(22px, 5vw, 70px);
}
.article-shell > * { max-width: 900px; width: 100%; margin-left: auto; margin-right: auto; }
.article-shell > .table-scroll,
.article-shell > .article-media,
.article-shell > .notice-panel { max-width: 1040px; }
.article-shell p {
  font-size: 17px;
  line-height: 1.85;
  color: #293f38;
  margin: 16px auto;
}
.article-shell .section-heading {
  margin-top: 56px;
  margin-bottom: 16px;
  font-size: clamp(30px, 4.6vw, 58px);
  line-height: .98;
  letter-spacing: -.055em;
  color: #07130f;
  scroll-margin-top: 120px;
}
.article-shell h3 {
  max-width: 900px;
  margin: 34px auto 12px;
  font-size: clamp(20px, 2vw, 28px);
  letter-spacing: -.025em;
  color: #0e2a22;
}
.article-shell a { color: var(--blue); }
.article-list {
  padding: 0;
  margin: 18px auto 24px;
  list-style: none;
  display: grid;
  gap: 12px;
}
.article-list li {
  position: relative;
  padding: 14px 16px 14px 48px;
  border-radius: 18px;
  background: rgba(7,19,15,.045);
  border: 1px solid rgba(7,19,15,.06);
  line-height: 1.65;
  color: #283d36;
}
.article-list li::before {
  content: "";
  position: absolute;
  left: 17px;
  top: 20px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--mint), var(--saffron));
  box-shadow: 0 0 18px rgba(47,255,210,.35);
}
.table-scroll {
  overflow-x: auto;
  margin-top: 24px;
  margin-bottom: 28px;
  border-radius: 26px;
  border: 1px solid rgba(7,19,15,.1);
  background: #fffdf7;
  box-shadow: 0 20px 60px rgba(7,19,15,.08);
}
.data-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
}
.data-table th,
.data-table td {
  text-align: left;
  padding: 17px 18px;
  border-bottom: 1px solid rgba(7,19,15,.09);
  vertical-align: top;
  line-height: 1.55;
}
.data-table th {
  background: #07130f;
  color: #fff;
  letter-spacing: .02em;
}
.data-table tr:last-child td { border-bottom: 0; }
.data-table tbody tr:nth-child(even) td { background: rgba(47,255,210,.045); }
.article-media {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  margin-top: 32px;
  margin-bottom: 34px;
  background: #07130f;
  box-shadow: var(--shadow);
}
.article-media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transform: scale(1.001);
}
.article-media figcaption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  max-width: calc(100% - 36px);
  padding: 11px 13px;
  border-radius: 16px;
  color: rgba(255,255,255,.88);
  background: rgba(7,19,15,.78);
  backdrop-filter: blur(12px);
  font-size: 13px;
}
.notice-panel {
  margin-top: 28px;
  margin-bottom: 28px;
  padding: 24px;
  border-radius: 28px;
  border: 1px solid rgba(47,255,210,.26);
  background: linear-gradient(135deg, rgba(47,255,210,.12), rgba(255,209,102,.14));
}
.notice-panel h3 { margin-top: 0; }
.notice-panel p:last-child { margin-bottom: 0; }
.faq-zone {
  max-width: 1040px !important;
  margin-top: 58px;
  padding: clamp(20px, 4vw, 34px);
  border-radius: 34px;
  background: #07130f;
  color: #fff;
  box-shadow: var(--shadow-dark);
}
.faq-zone h2 {
  margin: 0 0 22px;
  font-size: clamp(34px, 5vw, 64px);
  letter-spacing: -.06em;
}
.faq-accordion { display: grid; gap: 10px; }
.faq-item {
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 22px;
  overflow: hidden;
  background: rgba(255,255,255,.06);
}
.faq-question {
  width: 100%;
  border: 0;
  cursor: pointer;
  color: #fff;
  background: transparent;
  text-align: left;
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
}
.faq-question span { font-size: 17px; line-height: 1.35; }
.faq-question i {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(47,255,210,.16);
  position: relative;
}
.faq-question i::before,
.faq-question i::after {
  content: "";
  position: absolute;
  left: 8px;
  right: 8px;
  top: 13px;
  height: 2px;
  border-radius: 2px;
  background: var(--mint);
}
.faq-question i::after { transform: rotate(90deg); transition: transform .2s ease; }
.faq-item.is-open .faq-question i::after { transform: rotate(0); }
.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .25s ease;
}
.faq-answer > * { overflow: hidden; min-height: 0; }
.faq-item.is-open .faq-answer { grid-template-rows: 1fr; }
.faq-answer p {
  color: rgba(255,255,255,.74);
  margin: 0;
  padding: 0 20px 20px;
}

.site-hub { margin-top: 28px; padding: 28px; }
.hub-head { display: flex; justify-content: space-between; align-items: end; gap: 20px; margin-bottom: 18px; }
.hub-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
.hub-card {
  min-height: 138px;
  border-radius: 24px;
  background: #07130f;
  color: #fff;
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  transition: transform .2s ease;
}
.hub-card::after {
  content: "";
  position: absolute;
  width: 140px;
  height: 140px;
  right: -74px;
  top: -74px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(47,255,210,.4), transparent 64%);
}
.hub-card span { color: var(--mint); font-size: 11px; letter-spacing: .13em; text-transform: uppercase; }
.hub-card em { font-style: normal; font-size: 18px; line-height: 1.25; position: relative; z-index: 1; }
.hub-card:hover { transform: translateY(-4px); }
.responsible-note { margin-top: 28px; padding: 26px; background: linear-gradient(135deg, #07130f, #12352c); color: #fff; }
.responsible-note p { margin: 14px 0 0; color: rgba(255,255,255,.72); line-height: 1.75; }

.floating-cta {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 800;
  padding: 14px 18px;
  border-radius: 999px;
  color: #06120f;
  background: linear-gradient(135deg, var(--mint), var(--saffron));
  box-shadow: 0 18px 42px rgba(7,19,15,.22);
  transform: translateY(90px);
  opacity: 0;
  transition: .25s ease;
}
.floating-cta.is-visible { transform: translateY(0); opacity: 1; }
.cookie-card {
  position: fixed;
  left: 22px;
  bottom: 22px;
  z-index: 900;
  width: min(420px, calc(100% - 44px));
  padding: 18px;
  border-radius: 24px;
  background: rgba(7,19,15,.92);
  color: #fff;
  border: 1px solid rgba(47,255,210,.22);
  box-shadow: var(--shadow-dark);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: center;
}
.cookie-card p { margin: 0; color: rgba(255,255,255,.74); line-height: 1.55; font-size: 14px; }
.cookie-card button { border: 0; cursor: pointer; min-height: 42px; padding: 11px 16px; }
.cookie-card.is-hidden { display: none; }
.site-footer {
  margin-top: 36px;
  margin-bottom: 24px;
  padding: 28px;
  border-radius: 34px;
  background: #07130f;
  color: #fff;
  display: grid;
  grid-template-columns: .9fr 1fr auto;
  gap: 20px;
  align-items: center;
}
.footer-brand img { width: 170px; height: auto; }
.footer-brand p { color: rgba(255,255,255,.62); margin: 12px 0 0; max-width: 360px; line-height: 1.6; }
.site-footer nav { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; }
.site-footer nav a { color: rgba(255,255,255,.72); background: rgba(255,255,255,.06); border-radius: 999px; padding: 10px 12px; font-size: 13px; }
.site-footer nav a:hover { color: #fff; background: rgba(47,255,210,.16); }
.footer-copy { color: rgba(255,255,255,.5); margin: 0; font-size: 13px; }

.reveal-card { opacity: 1; transform: none; transition: opacity .55s ease, transform .55s ease; }
.js-ready .reveal-card { opacity: 0; transform: translateY(18px); }
.js-ready .reveal-card.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1120px) {
  :root { --container: min(100% - 28px, 960px); }
  .main-nav { display: none; }
  .menu-toggle, .mobile-drawer { display: flex; }
  .mobile-drawer { display: block; }
  .hero-panel { grid-template-columns: 1fr; min-height: auto; }
  .hero-visual, .hero-visual img { min-height: 420px; }
  .route-map, .control-deck, .toc-band { grid-template-columns: 1fr; }
  .route-pills { grid-template-columns: repeat(2, 1fr); }
  .hub-grid { grid-template-columns: repeat(2, 1fr); }
  .site-footer { grid-template-columns: 1fr; text-align: center; }
  .footer-brand p { margin-left: auto; margin-right: auto; }
  .site-footer nav { justify-content: center; }
  .footer-brand img { margin: 0 auto; }
}
@media (max-width: 680px) {
  :root { --container: calc(100% - 22px); }
  body::before { opacity: .18; }
  .site-header { top: 8px; margin-top: 8px; border-radius: 28px; }
  .brand img { width: 146px; }
  .hero-panel { margin-top: 18px; padding: 14px; border-radius: 30px; }
  .hero-copy { padding: 28px 10px; }
  .hero-copy h1 { font-size: clamp(40px, 14vw, 66px); }
  .hero-copy p { font-size: 16px; }
  .hero-visual { border-radius: 24px; min-height: 300px; }
  .hero-visual img { min-height: 300px; }
  .hero-actions { flex-direction: column; }
  .primary-action, .ghost-action { width: 100%; }
  .route-pills, .tab-buttons, .hub-grid { grid-template-columns: 1fr; }
  .control-deck, .toc-band, .site-hub, .responsible-note { border-radius: 24px; padding: 18px; }
  .article-shell { padding: 20px 14px; border-radius: 26px; }
  .article-shell p { font-size: 16px; line-height: 1.75; }
  .article-shell .section-heading { margin-top: 42px; }
  .article-media { border-radius: 22px; }
  .article-media figcaption { position: static; border-radius: 0; max-width: none; }
  .faq-zone { border-radius: 24px; padding: 18px; }
  .cookie-card { grid-template-columns: 1fr; left: 12px; bottom: 12px; width: calc(100% - 24px); }
  .floating-cta { right: 12px; bottom: 12px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }
  .reveal-card { opacity: 1; transform: none; }
}
