:root {
  --bg: #f3f1eb;
  --bg-soft: #ebe8df;
  --surface: #fffdfa;
  --surface-strong: #ffffff;
  --ink: #07111d;
  --muted: #7d828b;
  --muted-strong: #565c66;
  --navy: #071322;
  --navy-2: #0e1d30;
  --navy-3: #18273a;
  --yellow: #ffcb1f;
  --yellow-deep: #f5a30a;
  --green: #21965c;
  --orange: #e8762a;
  --red: #d84d3f;
  --line: rgba(7, 17, 29, .1);
  --line-dark: rgba(255, 255, 255, .12);
  --shadow: 0 24px 70px rgba(7, 17, 29, .12);
  --shadow-soft: 0 16px 42px rgba(7, 17, 29, .08);
  --radius: 24px;
  --radius-sm: 16px;
  --max: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: auto; overflow-x: clip; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 96% 0%, rgba(255, 203, 31, .28), transparent 24rem),
    linear-gradient(180deg, #f7f4eb 0%, var(--bg) 48%, #eef0f3 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  overflow-x: clip;
}

a { color: var(--ink); text-decoration: none; }
a:hover { text-decoration: underline; }
img { display: block; max-width: 100%; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: 1.04; letter-spacing: 0; }
h1 { font-size: clamp(2.7rem, 6vw, 5.2rem); margin-bottom: 20px; }
h2 { font-size: clamp(2rem, 4vw, 3.25rem); margin-bottom: 14px; }
h3 { font-size: clamp(1.24rem, 2.2vw, 1.65rem); margin-bottom: 10px; }
p { color: var(--muted-strong); }
ul { color: var(--muted-strong); }

.container { width: min(calc(100% - 32px), var(--max)); margin: 0 auto; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.nav-wrap {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--line);
  background: rgba(243, 241, 235, .88);
  backdrop-filter: blur(14px);
}
.nav {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.brand {
  display: inline-flex;
  order: 1;
  flex: 0 0 auto;
  align-items: center;
  gap: 14px;
  color: var(--ink);
  font-weight: 900;
}
.brand:hover { text-decoration: none; }
.brand img {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  box-shadow: var(--shadow-soft);
}
.brand span { display: grid; line-height: 1.1; }
.brand small {
  color: var(--muted);
  font-size: .82rem;
  font-weight: 750;
  margin-top: 3px;
}
.nav-links {
  display: flex;
  order: 2;
  flex: 1 1 auto;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  flex-wrap: wrap;
}
.nav-links a {
  color: var(--ink);
  font-weight: 760;
  font-size: .96rem;
}
.nav-links a[aria-current="page"] { color: #9a6900; }
.nav-cta {
  background: var(--yellow);
  border-radius: 999px;
  padding: 10px 15px;
}
.language-control {
  display: inline-flex;
  order: 3;
  flex: 0 0 auto;
  align-items: center;
  opacity: .76;
}
.language-select {
  min-height: 32px;
  max-width: 118px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--muted-strong);
  padding: 0 4px;
  font: inherit;
  font-size: .84rem;
  font-weight: 760;
  cursor: pointer;
}
.language-control:hover,
.language-control:focus-within {
  opacity: 1;
}
.language-select:focus {
  outline: 2px solid rgba(245, 163, 10, .38);
  outline-offset: 2px;
}
.nav-toggle {
  display: none;
  order: 4;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.64);
  color: var(--ink);
  cursor: pointer;
}
.nav-toggle-icon,
.nav-toggle-icon::before,
.nav-toggle-icon::after {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform .18s ease, opacity .18s ease;
}
.nav-toggle-icon {
  position: relative;
  font-size: 0;
}
.nav-toggle-icon::before,
.nav-toggle-icon::after {
  content: "";
  position: absolute;
  left: 0;
}
.nav-toggle-icon::before { top: -6px; }
.nav-toggle-icon::after { top: 6px; }
.nav-wrap.is-open .nav-toggle-icon { background: transparent; }
.nav-wrap.is-open .nav-toggle-icon::before { top: 0; transform: rotate(45deg); }
.nav-wrap.is-open .nav-toggle-icon::after { top: 0; transform: rotate(-45deg); }

.hero {
  position: relative;
  padding: 58px 0 34px;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 470px;
  z-index: -1;
  background:
    linear-gradient(168deg, rgba(7, 19, 34, .04) 0 47%, transparent 47.2%),
    linear-gradient(18deg, transparent 0 72%, rgba(255, 203, 31, .22) 72.2%);
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
  gap: 44px;
  align-items: center;
}
.eyebrow,
.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  margin-bottom: 18px;
  border: 1px solid rgba(255, 203, 31, .42);
  border-radius: 999px;
  background: rgba(255, 203, 31, .18);
  color: #6f4b00;
  padding: 9px 14px;
  font-size: .92rem;
  font-weight: 900;
}
.eyebrow.dark { background: rgba(255,255,255,.09); border-color: var(--line-dark); color: var(--yellow); }
.lead {
  max-width: 720px;
  color: var(--muted-strong);
  font-size: clamp(1.08rem, 2vw, 1.34rem);
  margin-bottom: 26px;
}
.snippet {
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 780;
  max-width: 740px;
  margin-bottom: 14px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin: 26px 0 18px;
}
.store-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}
.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--navy);
  padding: 0 22px;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 14px 32px rgba(245, 163, 10, .18);
}
.button:hover { text-decoration: none; filter: brightness(.98); }
.button.secondary {
  background: rgba(255,255,255,.68);
  border: 1px solid var(--line);
  color: var(--ink);
  box-shadow: none;
}
.button.dark {
  background: var(--navy);
  color: white;
  box-shadow: none;
}
.app-store-badge,
.google-play-badge {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  line-height: 0;
}
.app-store-badge:hover,
.google-play-badge:hover { text-decoration: none; }
.app-store-badge img,
.google-play-badge img { width: auto; height: 54px; }
.hero-note {
  color: var(--muted);
  font-size: .96rem;
  max-width: 700px;
}
.language-status {
  max-width: 720px;
  margin: 14px 0 0;
  border-left: 4px solid var(--yellow);
  border-radius: 0 18px 18px 0;
  background: rgba(255,255,255,.72);
  color: var(--navy-2);
  padding: 14px 16px;
  font-weight: 780;
}

.phone-stage {
  position: relative;
  min-height: 675px;
}
.phone {
  position: absolute;
  overflow: hidden;
  border-radius: 44px;
  background: var(--navy);
  padding: 9px;
  box-shadow: 0 34px 86px rgba(7, 17, 29, .24);
}
.phone img {
  border-radius: 35px;
  width: 100%;
  height: auto;
}
.phone.one { width: 295px; right: 118px; top: 0; transform: rotate(-2deg); }
.phone.two { width: 244px; left: 0; top: 224px; transform: rotate(4deg); }
.phone.three { width: 250px; right: 0; top: 355px; transform: rotate(5deg); }

.section { padding: 42px 0 28px; }

@supports (content-visibility: auto) {
  .section,
  .dark-band,
  .footer {
    content-visibility: auto;
    contain-intrinsic-size: auto 720px;
  }
}

.section-header {
  max-width: 780px;
  margin-bottom: 24px;
}
.section-header.center { text-align: center; margin-inline: auto; }
.grid-2,
.grid-3,
.grid-4,
.seo-grid,
.split {
  display: grid;
  gap: 22px;
}
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.split { grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); align-items: start; }

.card,
.link-card,
.content-card,
.page-card,
.metric-card,
.screen-card,
details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.64);
  box-shadow: var(--shadow-soft);
}
.card,
.content-card,
.page-card,
.metric-card,
details { padding: 28px; }
.card h3,
.content-card h3 { margin-bottom: 8px; }
.card p:last-child,
.content-card p:last-child,
.page-card p:last-child { margin-bottom: 0; }
.link-card {
  display: grid;
  gap: 8px;
  padding: 24px;
  color: var(--ink);
}
.link-card:hover { text-decoration: none; transform: translateY(-2px); }
.link-card strong { font-size: 1.18rem; line-height: 1.15; }
.link-card span { color: var(--muted-strong); }
.icon-tile {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  margin-bottom: 18px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--yellow), var(--yellow-deep));
  color: var(--navy);
  font-size: 1.55rem;
  font-weight: 900;
}
.icon-tile.green { background: #e2f3e9; color: var(--green); }
.icon-tile.orange { background: #fff0e5; color: var(--orange); }
.icon-tile.dark { background: #152337; color: var(--yellow); }

.dark-band {
  margin: 48px 0 30px;
  padding: 64px 0;
  background:
    linear-gradient(132deg, var(--navy) 0%, #0b1828 58%, #1c2230 100%);
  color: white;
}
.dark-band .lead,
.dark-band p,
.dark-band li { color: #c5ceda; }
.dark-band h2,
.dark-band h3 { color: white; }
.dark-band .card,
.dark-card {
  border-color: var(--line-dark);
  background: rgba(255,255,255,.07);
  box-shadow: none;
}
.dark-card { border-radius: var(--radius); padding: 28px; }
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}
.trust-pill {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(7, 17, 29, .12);
  border-radius: 999px;
  background: rgba(255,255,255,.72);
  color: var(--navy-2);
  padding: 8px 12px;
  font-weight: 850;
  font-size: .9rem;
  box-shadow: 0 10px 24px rgba(7, 17, 29, .05);
}
.trust-pill.highlight {
  border-color: rgba(33,150,92,.35);
  background: rgba(235, 255, 243, .9);
  color: #12633a;
}
.dark-band .trust-pill {
  border-color: rgba(255,255,255,.16);
  background: rgba(255,255,255,.08);
  color: #d9e0ea;
  box-shadow: none;
}
.check-list,
.plain-list {
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
}
.check-list li,
.plain-list li {
  position: relative;
  padding-left: 31px;
  margin: 12px 0;
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: rgba(33,150,92,.12);
  color: var(--green);
  font-size: .9rem;
  font-weight: 900;
}
.plain-list li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: .72em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--yellow);
}

.screens-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(180px, 1fr));
  gap: 18px;
  align-items: start;
}
.screen-card {
  margin: 0;
  padding: 10px;
  overflow: hidden;
}
.screen-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 946 / 2048;
  object-fit: contain;
  border-radius: 18px;
}
.screen-card figcaption,
.screen-caption {
  padding: 12px 8px 4px;
  color: var(--muted-strong);
  font-size: .92rem;
  font-weight: 760;
  text-align: center;
}

.comparison {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.comparison-card {
  border-radius: 22px;
  background: rgba(255,255,255,.08);
  border: 1px solid var(--line-dark);
  padding: 22px;
}
.comparison-card h3 { color: white; }
.comparison-card.free h3 { color: #e2e7ef; }
.comparison-card.pro {
  background: linear-gradient(145deg, rgba(255,203,31,.18), rgba(255,255,255,.07));
  border-color: rgba(255,203,31,.32);
}

.faq {
  display: grid;
  gap: 14px;
}
details { background: rgba(255,255,255,.66); }
summary {
  cursor: pointer;
  color: var(--ink);
  font-weight: 900;
}
summary + p { margin: 12px 0 0; }

.page-hero {
  padding: 54px 0 18px;
}
.page-hero h1 { max-width: 880px; font-size: clamp(2.5rem, 5vw, 4.35rem); }
.breadcrumbs {
  color: var(--muted);
  font-size: .94rem;
  margin-bottom: 18px;
}
.breadcrumbs a { color: var(--muted-strong); font-weight: 800; }
.updated-note {
  display: block;
  width: fit-content;
  margin: -4px 0 18px;
  color: var(--muted-strong);
  font-size: .92rem;
  font-weight: 760;
}
.exam-update-note {
  max-width: 780px;
  margin: 12px 0 12px;
  padding: 14px 16px;
  border: 1px solid rgba(33,150,92,.28);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(236,253,245,.96), rgba(255,255,255,.84));
  color: #164b30;
  box-shadow: 0 18px 45px rgba(33,150,92,.08);
}
.exam-update-note strong {
  display: block;
  color: #0b321f;
  font-size: 1.02rem;
  margin-bottom: 4px;
}
.exam-update-note p {
  margin: 0;
  color: #23563a;
  font-size: .98rem;
  line-height: 1.48;
}
.exam-update-note a {
  color: #12633a;
  font-weight: 900;
}
.content { max-width: 900px; }
.content h2 { margin-top: 36px; font-size: clamp(1.7rem, 3vw, 2.3rem); }
.content h3 { margin-top: 24px; }
.content-card + .content-card { margin-top: 16px; }
.article-body {
  max-width: 920px;
  margin: 0 auto;
}
.article-body [id] {
  scroll-margin-top: 96px;
}
.article-body > * + * {
  margin-top: 22px;
}
.article-body .content-card {
  background: rgba(255,255,255,.72);
}
.summary-box,
.trust-box,
.source-box {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.74);
  padding: 24px;
  box-shadow: var(--shadow-soft);
}
.summary-box {
  border-color: rgba(255,203,31,.42);
  background: linear-gradient(135deg, rgba(255,203,31,.18), rgba(255,255,255,.78));
}
.trust-box {
  border-color: rgba(33,150,92,.2);
  background: rgba(255,255,255,.76);
}
.source-box {
  border-color: rgba(7,17,29,.12);
  background: rgba(255,255,255,.58);
}
.entity-strip {
  padding-top: 28px;
  padding-bottom: 16px;
}
.entity-strip h2,
.entity-panel h2 {
  font-size: clamp(1.45rem, 2.5vw, 2rem);
}
.entity-panel .store-badges {
  margin-top: 14px;
}
.inline-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 0;
}
.inline-links a {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.72);
  color: var(--navy-2);
  padding: 9px 12px;
  font-weight: 850;
}
.inline-links a:hover {
  background: rgba(255,203,31,.2);
  text-decoration: none;
}
.knowledge-index {
  display: grid;
  grid-template-columns: minmax(0, .7fr) minmax(0, 1.3fr);
  gap: 22px;
  align-items: start;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.74);
  padding: 24px;
  box-shadow: var(--shadow-soft);
}
.knowledge-index h2 {
  margin-bottom: 8px;
}
.knowledge-index p {
  margin-bottom: 0;
}
.knowledge-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.knowledge-links a,
.source-link {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255,255,255,.72);
  color: var(--navy-2);
  padding: 10px 12px;
  font-weight: 850;
}
.knowledge-links a:hover,
.source-link:hover {
  background: rgba(255,203,31,.18);
  text-decoration: none;
}
.fact-grid,
.source-grid,
.glossary-grid {
  display: grid;
  gap: 12px;
}
.fact-grid,
.source-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.glossary-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.fact-item,
.glossary-grid > div {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255,255,255,.68);
  padding: 14px;
}
.fact-item strong,
.glossary-grid strong,
.source-link strong {
  display: block;
  color: var(--ink);
  margin-bottom: 5px;
}
.fact-item span,
.glossary-grid span,
.source-link span {
  display: block;
  color: var(--muted-strong);
}
.source-link {
  display: block;
}
.mini-exam-section .section-header {
  max-width: 850px;
}
.mini-exam {
  display: grid;
  gap: 16px;
}
.mini-exam-question {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.7);
  box-shadow: var(--shadow-soft);
  padding: 24px;
}
.mini-exam-question legend {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  float: left;
  width: 100%;
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 900;
  line-height: 1.28;
  padding: 0;
  margin-bottom: 14px;
}
.mini-exam-question legend + * {
  clear: both;
}
.mini-exam-question legend span {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: var(--yellow);
  color: var(--navy);
  font-size: .95rem;
}
.mini-exam-answer {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255,255,255,.66);
  color: var(--muted-strong);
  padding: 12px 14px;
  cursor: pointer;
}
.mini-exam-answer + .mini-exam-answer {
  margin-top: 10px;
}
.mini-exam-answer input {
  flex: 0 0 auto;
  margin-top: 4px;
}
.mini-exam-answer:has(input:checked) {
  border-color: rgba(245,163,10,.58);
  background: rgba(255,203,31,.14);
  color: var(--ink);
}
.mini-exam-answer.is-correct {
  border-color: rgba(33,150,92,.5);
  background: rgba(33,150,92,.12);
  color: var(--ink);
}
.mini-exam-answer.is-wrong {
  border-color: rgba(216,77,63,.5);
  background: rgba(216,77,63,.09);
}
.mini-exam-actions {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  border: 1px solid rgba(255,203,31,.34);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(255,203,31,.2), rgba(255,255,255,.68));
  padding: 24px;
}
.mini-exam-result strong {
  display: block;
  color: var(--ink);
  font-size: 1.12rem;
  margin-bottom: 4px;
}
.mini-exam-result p {
  margin-bottom: 0;
}
.cta-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  margin-top: 24px;
  border: 1px solid rgba(255,203,31,.34);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(255,203,31,.2), rgba(255,255,255,.68));
  padding: 26px;
}
.cta-panel p { margin-bottom: 0; }
.cta-panel .store-badges { justify-content: flex-end; }

.legal-page {
  padding: 48px 0 70px;
}
.legal-card {
  max-width: 900px;
  margin: 0 auto;
}
.footer {
  padding: 48px 0 64px;
  color: var(--muted-strong);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.footer h3 {
  font-size: 1rem;
  margin-bottom: 10px;
}
.footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer li + li { margin-top: 8px; }
.footer a { color: var(--muted-strong); font-weight: 750; }
.footer-bottom {
  border-top: 1px solid var(--line);
  margin-top: 30px;
  padding-top: 18px;
  font-size: .92rem;
  color: var(--muted);
}

@media (max-width: 1100px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .phone-stage {
    min-height: auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    overflow: visible;
    padding: 12px 0 22px;
  }
  .phone {
    position: relative;
    width: 100% !important;
    transform: none !important;
  }
  .phone.one,
  .phone.two,
  .phone.three {
    inset: auto;
  }
}

@media (max-width: 980px) {
  .hero-grid,
  .split,
  .grid-3,
  .grid-4,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .grid-2,
  .comparison {
    grid-template-columns: 1fr;
  }
  .screens-grid { grid-template-columns: repeat(3, minmax(160px, 1fr)); }
}

@media (max-width: 760px) {
  body { background: linear-gradient(180deg, #f7f4eb 0%, var(--bg) 62%, #eef0f3 100%); }
  h1 {
    font-size: 2.45rem;
    line-height: 1.08;
  }
  h2 {
    font-size: 1.72rem;
    line-height: 1.12;
  }
  h3 {
    font-size: 1.18rem;
    line-height: 1.16;
  }
  .lead {
    font-size: 1.05rem;
    line-height: 1.52;
    margin-bottom: 18px;
  }
  .snippet {
    font-size: 1rem;
    line-height: 1.42;
  }
  .eyebrow,
  .badge {
    margin-bottom: 14px;
    padding: 7px 10px;
    font-size: .82rem;
  }
  .updated-note {
    margin: 2px 0 18px;
    color: var(--muted);
    font-size: .82rem;
    font-weight: 760;
  }
  .nav { min-height: 70px; gap: 10px; }
  .brand { gap: 10px; min-width: 0; }
  .brand img { width: 44px; height: 44px; }
  .brand span { max-width: 170px; }
  .brand small { display: none; }
  .language-control { display: none; }
  .nav-toggle { order: 3; }
  .nav-links { order: 4; }
  .nav-toggle { display: inline-flex; }
  .nav-links {
    display: none;
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 8px);
    z-index: 110;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: var(--surface-strong);
    padding: 10px;
    box-shadow: var(--shadow);
  }
  .nav-wrap.is-open .nav-links { display: flex; }
  .nav-links a {
    padding: 12px 14px;
    border-radius: 14px;
  }
  .nav-links a:hover {
    background: rgba(255,203,31,.16);
    text-decoration: none;
  }
  .hero { padding-top: 34px; }
  .page-hero {
    padding: 34px 0 12px;
  }
  .page-hero h1 {
    font-size: 2.35rem;
  }
  .hero-grid { grid-template-columns: 1fr; gap: 22px; }
  .hero-actions {
    align-items: stretch;
    margin: 20px 0 16px;
  }
  .button { width: 100%; }
  .app-store-badge img,
  .google-play-badge img { height: 44px; }
  .trust-row { gap: 8px; }
  .trust-pill {
    padding: 7px 10px;
    font-size: .82rem;
  }
  .phone-stage {
    display: flex;
    justify-content: center;
    padding: 8px 0 12px;
  }
  .phone { display: none; }
  .phone.one {
    display: block;
    width: min(76vw, 250px) !important;
  }
  .seo-grid,
  .screens-grid {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 10px;
  }
  .seo-grid > *,
  .screens-grid > * {
    min-width: min(82vw, 330px);
    scroll-snap-align: start;
  }
  .card,
  .content-card,
  .page-card,
  .metric-card,
  details {
    padding: 20px;
    border-radius: 22px;
  }
  .summary-box,
  .trust-box,
  .source-box {
    padding: 20px;
    border-radius: 22px;
  }
  .knowledge-index,
  .fact-grid,
  .source-grid,
  .glossary-grid {
    grid-template-columns: 1fr;
  }
  .knowledge-index {
    padding: 20px;
    border-radius: 22px;
  }
  .knowledge-links a {
    width: 100%;
  }
  .section { padding: 32px 0 20px; }
  .dark-band { padding: 48px 0; }
  .cta-panel { grid-template-columns: 1fr; }
  .cta-panel .store-badges { justify-content: flex-start; }
  .mini-exam-question { padding: 20px; border-radius: 22px; }
  .mini-exam-actions { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
  }
}
