:root {
  --ink: #231f1b;
  --muted: #6d655d;
  --paper: #fbf7f0;
  --paper-strong: #fffdf9;
  --line: rgba(56, 45, 35, 0.12);
  --orange: #ff5a16;
  --orange-dark: #d94000;
  --peach: #ffd9c8;
  --coffee: #5f3526;
  --night: #111731;
  --violet: #6a5cff;
  --figma-gray-04: #3a3a3a;
  --figma-gray-03: #5a5a5a;
  --figma-glass: rgba(191, 183, 169, .32);
  --radius-sm: 16px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --shadow: 0 24px 70px rgba(66, 40, 24, 0.12);
  --max: 1200px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  color-scheme: light;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% -10%, rgba(255, 141, 88, 0.14), transparent 33rem),
    radial-gradient(circle at 100% 12%, rgba(112, 94, 255, 0.06), transparent 28rem),
    var(--paper);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .11;
  background-image: url('/assets/brand/shapes.svg');
  background-size: 920px auto;
  background-position: -180px 90px;
  background-repeat: no-repeat;
  z-index: -1;
}

a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: .18em; }
img { max-width: 100%; height: auto; }
button, select { font: inherit; }

.ui-icon,
.feature-icon-image {
  width: var(--icon-box, 18px);
  height: var(--icon-box, 18px);
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
}
.ui-icon img,
.feature-icon-image img {
  display: block;
  max-width: none;
}
.ui-icon--arrow img { transform: rotate(180deg); }

.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;
}

.skip-link {
  position: fixed;
  z-index: 100;
  inset-inline-start: 1rem;
  top: .75rem;
  transform: translateY(-180%);
  padding: .7rem 1rem;
  border-radius: 999px;
  background: var(--ink);
  color: white;
}

.skip-link:focus { transform: translateY(0); }

.shell { width: min(calc(100% - 2rem), var(--max)); margin-inline: auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(56, 45, 35, 0.08);
  background: rgba(251, 247, 240, .86);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand-lockup { display: inline-flex; align-items: center; gap: .65rem; }
.brand-lockup img { display: block; filter: brightness(0) saturate(100%); }
.brand-symbol { width: auto; height: 44px; }
.brand-wordmark { width: auto; height: 23px; }
.site-footer .brand-symbol { height: 54px; }
.site-footer .brand-wordmark { height: 28px; }

.nav-wrap { display: flex; align-items: center; gap: 1rem; }
.nav-menu { display: flex; align-items: center; gap: .25rem; }
.nav-menu a {
  padding: .55rem .72rem;
  border-radius: 999px;
  color: #514941;
  font-size: .92rem;
  font-weight: 580;
  text-decoration: none;
}
.nav-menu a:hover, .nav-menu a[aria-current='page'] { background: rgba(255,255,255,.75); color: var(--orange-dark); }

.language-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.language-code { display: none; }
.language-select {
  min-height: 44px;
  max-width: 148px;
  padding: .45rem 2rem .45rem .9rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  color: var(--ink);
  background: var(--paper-strong);
}

.menu-button {
  display: none;
  width: 56px;
  height: 56px;
  padding: 0;
  border: 1px solid rgba(255,255,255,.36);
  border-radius: 24px;
  color: white;
  background: var(--figma-gray-04);
  box-shadow: 0 10px 25px rgba(35,31,27,.12);
  cursor: pointer;
  transition: background .2s ease, transform .2s ease;
}
.menu-button:hover { background: var(--figma-gray-03); transform: translateY(-1px); }
.menu-button:focus-visible, .language-select:focus-visible, .button:focus-visible, .feature-card:focus-visible, .related a:focus-visible { outline: 3px solid rgba(255,104,51,.38); outline-offset: 3px; }

.hero { padding: clamp(3.5rem, 6vw, 6rem) 0 4rem; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.03fr) minmax(420px, .97fr); gap: clamp(2rem, 7vw, 6rem); align-items: center; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  margin: 0 0 1.2rem;
  color: var(--orange-dark);
  font-size: .78rem;
  font-weight: 740;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.eyebrow::before { content: ''; width: 28px; height: 2px; border-radius: 2px; background: var(--orange); }
h1, h2, h3 { margin-top: 0; line-height: 1.05; letter-spacing: -.045em; }
h1, h2, h3, p, a, strong { overflow-wrap: anywhere; }
h1 { max-width: 820px; margin-bottom: 1.35rem; font-size: clamp(3rem, 5.5vw, 5.3rem); font-weight: 700; }
.guide-hero h1 { font-size: clamp(2.9rem, 4.8vw, 4.6rem); }
.lead { max-width: 660px; margin: 0; color: #5e554e; font-size: clamp(1.08rem, 2vw, 1.35rem); }
.actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2rem; }
.button {
  min-height: 58px;
  max-width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  padding: 6px 1.25rem 6px 6px;
  border: 1px solid transparent;
  border-radius: 18px;
  font-size: 1rem;
  font-weight: 650;
  line-height: 1.15;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
[dir='rtl'] .button { padding: 6px 6px 6px 1.25rem; }
.button-label { min-width: 0; overflow-wrap: anywhere; }
.button-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  flex: 0 0 46px;
  border-radius: 14px;
  background: white;
}
.button-icon--down .ui-icon { transform: rotate(90deg); }
[dir='rtl'] .button-icon--forward .ui-icon { transform: scaleX(-1); }
.button:hover { transform: translateY(-2px); }
.button-primary { color: white; background: var(--figma-gray-04); box-shadow: 0 14px 30px rgba(35,31,27,.16); }
.button-primary:hover { background: var(--figma-gray-03); }
.button-primary .button-icon:not(.button-icon--static) { background: var(--orange); }
.button-secondary { border-color: rgba(58,58,58,.11); background: var(--figma-glass); backdrop-filter: blur(14px); }
.button-secondary .button-icon { background: var(--figma-gray-04); }
.button-dark { color: white; background: #20233c; }

.text-action {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  color: var(--ink);
  font-weight: 680;
  text-decoration: none;
}
.text-action:hover { color: var(--orange-dark); }
.inline-arrow--down .ui-icon { transform: rotate(90deg); }

.trust-list { display: flex; flex-wrap: wrap; gap: 0; margin: 2rem 0 0; padding: .8rem 0 0; border-top: 1px solid var(--line); list-style: none; }
.trust-list li { padding: .15rem .85rem .15rem 0; margin-inline-end: .85rem; border-inline-end: 1px solid var(--line); color: var(--muted); font-size: .83rem; }
.trust-list li:last-child { border: 0; }
.hero-proof { grid-column: 1 / -1; margin-top: -1rem; }

.phone-stage { position: relative; min-height: 520px; }
.phone-stage::before {
  content: '';
  position: absolute;
  inset: 6% 2% 8%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 111, 46, .38), rgba(255, 214, 191, .1) 52%, transparent 70%);
  filter: blur(12px);
}
.phone {
  position: absolute;
  width: min(48%, 270px);
  overflow: hidden;
  border: 7px solid rgba(31, 28, 27, .94);
  border-radius: 36px;
  background: #111;
  box-shadow: 0 32px 75px rgba(39, 27, 20, .25);
}
.phone img { display: block; width: 100%; aspect-ratio: 1320 / 2868; object-fit: cover; }
.phone-a { inset-inline-start: 7%; top: 8%; transform: rotate(-7deg); }
.phone-b { inset-inline-end: 6%; top: 0; z-index: 2; }
.phone-c { inset-inline-start: 32%; bottom: 0; width: min(42%, 235px); transform: rotate(5deg); z-index: 3; }

.section { padding: clamp(4rem, 8vw, 7.5rem) 0; }
.section[id] { scroll-margin-top: 76px; }
.section-sm { padding: 3rem 0; }
.section-head { display: flex; justify-content: space-between; gap: 2rem; align-items: end; margin-bottom: 2.2rem; }
.section-head > div { max-width: 720px; }
.section-kicker { color: var(--orange-dark); font-size: .78rem; font-weight: 740; letter-spacing: .1em; text-transform: uppercase; }
.section h2 { margin-bottom: .8rem; font-size: clamp(2.25rem, 5vw, 4.7rem); font-weight: 620; }
.section-copy { margin: 0; color: var(--muted); font-size: 1.07rem; }

.card-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
.feature-card {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.62);
  text-decoration: none;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.feature-card:hover { transform: translateY(-2px); border-color: rgba(255,90,22,.42); box-shadow: 0 14px 34px rgba(60,38,22,.08); }
.feature-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 15px;
  background: var(--figma-gray-04);
  box-shadow: 0 12px 24px rgba(35,31,27,.13);
}
.scan-icon { position: relative; width: 18px; height: 18px; display: block; }
.scan-icon img { position: absolute; display: block; max-width: none; }
.scan-icon-frame { left: 2.25px; top: 2.25px; width: 13.5px; height: 13.5px; }
.scan-icon-center { left: 5.25px; top: 5.25px; width: 8.25px; height: 7.79167px; }
.feature-card h3 { margin: auto 0 .7rem; font-size: 1.65rem; font-weight: 620; }
.feature-card p { margin: 0; color: var(--muted); }
.card-link { display: inline-flex; align-items: center; gap: .35rem; margin-top: 1rem; color: var(--orange-dark); font-weight: 680; }

.inline-arrow,
.breadcrumb-arrow {
  width: 24px;
  height: 24px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 24px;
  border-radius: 9px;
  background: var(--figma-gray-04);
  vertical-align: middle;
}
.inline-arrow .ui-icon { width: 14px; height: 14px; }
.inline-arrow--out .ui-icon { transform: rotate(-45deg); }
[dir='rtl'] .inline-arrow--forward .ui-icon { transform: scaleX(-1); }

.dark-section { position: relative; overflow: hidden; color: white; background: var(--night); }
.dark-section::before { content: ''; position: absolute; inset: -10%; background: radial-gradient(circle at 82% 30%, rgba(98,81,255,.33), transparent 32%), radial-gradient(circle at 10% 90%, rgba(255,90,22,.18), transparent 35%); }
.dark-section .shell { position: relative; }
.dark-section .section-copy { color: rgba(255,255,255,.7); }
.journey-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(2rem, 7vw, 6rem); align-items: center; }
.journey-list { display: grid; gap: .8rem; counter-reset: journey; }
.journey-item { display: grid; grid-template-columns: 46px 1fr; gap: 1rem; padding: 1rem; border: 1px solid rgba(255,255,255,.12); border-radius: 20px; background: rgba(255,255,255,.05); }
.journey-item::before { counter-increment: journey; content: counter(journey); width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; color: white; background: var(--orange); font-weight: 760; }
.journey-item h3 { margin: .15rem 0 .35rem; font-size: 1.15rem; letter-spacing: -.02em; }
.journey-item p { margin: 0; color: rgba(255,255,255,.66); }

.screenshot-card { max-width: 420px; margin-inline: auto; padding: .7rem; border-radius: 40px; background: linear-gradient(145deg, rgba(255,255,255,.22), rgba(255,255,255,.05)); box-shadow: 0 40px 90px rgba(0,0,0,.35); }
.screenshot-card img { display: block; width: 100%; border-radius: 32px; }

.resource-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.resource-card { position: relative; min-height: 260px; overflow: hidden; padding: 2rem; border-radius: var(--radius-lg); }
.resource-card h3 { max-width: 510px; margin: 2.6rem 0 1rem; font-size: clamp(2rem, 3vw, 3rem); font-weight: 680; }
.resource-card p { max-width: 520px; font-size: 1.06rem; }
.resource-link { max-width: 100%; min-height: 44px; display: inline-flex; align-items: center; gap: .55rem; color: inherit; font-weight: 760; text-decoration-thickness: 1px; text-underline-offset: .2em; }
.resource-link > span:first-child { min-width: 0; overflow-wrap: anywhere; }
.resource-link:hover { text-decoration-thickness: 2px; }
.resource-app { color: white; background: linear-gradient(140deg, #ff6a2a, #be3500); }
.resource-library { color: #1e2341; background: linear-gradient(140deg, #e0dcff, #a8c9ff); }
.resource-index { color: white; background: #5f3526; }
.resource-tag { display: inline-flex; padding: .45rem .7rem; border: 1px solid currentColor; border-radius: 999px; opacity: .75; font-size: .78rem; font-weight: 720; letter-spacing: .07em; text-transform: uppercase; }

.guide-hero { padding: clamp(2.5rem, 5vw, 5rem) 0 3.5rem; }
.breadcrumb { min-height: 44px; display: flex; flex-wrap: wrap; align-items: center; gap: .45rem; margin-bottom: 2rem; color: var(--muted); font-size: .9rem; }
.breadcrumb a { min-width: 44px; min-height: 44px; display: inline-flex; align-items: center; justify-content: center; padding-inline: .35rem; text-decoration: none; }
.breadcrumb-arrow { width: 20px; height: 20px; flex-basis: 20px; border-radius: 7px; opacity: .7; }
.breadcrumb-arrow .ui-icon { width: 12px; height: 12px; }
[dir='rtl'] .breadcrumb-arrow--forward .ui-icon { transform: scaleX(-1); }
.guide-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(330px, 470px); gap: clamp(2rem, 7vw, 6rem); align-items: center; }
.hero-grid > *, .guide-grid > *, .journey-grid > *, .card-grid > *, .resource-grid > *, .highlight-grid > *, .related > * { min-width: 0; }
.guide-visual { position: relative; padding: 2rem; border-radius: var(--radius-lg); background: linear-gradient(160deg, rgba(255,126,65,.23), rgba(104,89,255,.14)); }
.guide-visual .screenshot-card { max-width: 280px; }
.guide-visual figcaption { max-width: 330px; margin: 1rem auto 0; color: var(--muted); font-size: .86rem; line-height: 1.45; text-align: center; }
.guide-badges { display: flex; flex-wrap: wrap; gap: .55rem; margin-top: 1.5rem; }
.guide-badge { padding: .5rem .7rem; border-radius: 999px; color: var(--muted); background: rgba(255,255,255,.76); font-size: .82rem; }

.steps { display: grid; gap: .75rem; counter-reset: step; }
.step { display: grid; grid-template-columns: 64px 1fr; gap: 1.2rem; padding: 1.35rem 0; border-top: 1px solid var(--line); }
.step::before { counter-increment: step; content: counter(step, decimal-leading-zero); color: var(--orange); font-size: 1.2rem; font-weight: 760; }
.step h3 { margin: 0; font-size: 1.3rem; line-height: 1.35; letter-spacing: -.02em; font-weight: 620; }
.step p { margin: 0; color: var(--muted); }

.task-grid, .expect-grid, .editorial-grid { display: grid; grid-template-columns: minmax(260px, .72fr) minmax(0, 1.28fr); gap: clamp(2rem, 7vw, 6rem); align-items: start; }
.task-grid > .section-head { position: sticky; top: 110px; margin: 0; }
.expect-section { color: var(--ink); background: #f1e9df; }
.expect-list { margin: 0; padding: 0; list-style: none; }
.expect-list li { position: relative; padding: 1.15rem 0 1.15rem 2rem; border-top: 1px solid rgba(56,45,35,.16); color: #554c44; font-size: 1.08rem; }
.expect-list li::before { content: '✓'; position: absolute; left: 0; color: var(--orange-dark); font-weight: 800; }
[dir='rtl'] .expect-list li { padding: 1.15rem 2rem 1.15rem 0; }
[dir='rtl'] .expect-list li::before { left: auto; right: 0; }

.editorial-section { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(255,255,255,.34); }
.editorial-section h2 { max-width: 540px; }
.editorial-copy { max-width: 690px; font-size: 1.08rem; }
.editorial-copy > p:first-child { margin-top: 0; font-size: 1.25rem; color: #403833; }
.review-record { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; margin: 2rem 0 0; border: 1px solid var(--line); background: var(--line); }
.review-record > div { padding: 1rem; background: var(--paper-strong); }
.review-record dt { margin-bottom: .3rem; color: var(--muted); font-size: .75rem; font-weight: 750; letter-spacing: .06em; text-transform: uppercase; }
.review-record dd { margin: 0; font-weight: 650; }
.inline-record { margin-top: 2rem; }
.narrow-copy { width: min(calc(100% - 2rem), 820px); margin-inline: auto; }
.compact-hero { padding: clamp(2.5rem, 6vw, 5.5rem) 0 3rem; }
.compact-hero h1 { font-size: clamp(2.8rem, 5vw, 4.8rem); }
.faq-section { padding-top: 2rem; }

.note { padding: 1.2rem 1.35rem; border-inline-start: 4px solid var(--orange); border-radius: 0 18px 18px 0; color: #5c4a40; background: #fff1e9; }
[dir='rtl'] .note { border-inline-start: 4px solid var(--orange); border-radius: 18px 0 0 18px; }
.note-link { min-height: 44px; display: inline-flex; align-items: center; gap: .45rem; }

.related { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: .8rem; }
.related a { display: flex; align-items: center; justify-content: space-between; gap: .75rem; padding: 1.15rem; border: 1px solid var(--line); border-radius: 18px; background: rgba(255,255,255,.7); text-decoration: none; font-weight: 620; }
.related a:hover { border-color: var(--orange); color: var(--orange-dark); }

.faq-list { display: grid; gap: .7rem; }
.faq-list details { border: 1px solid var(--line); border-radius: 18px; background: rgba(255,255,255,.72); }
.faq-list summary { padding: 1.15rem 1.25rem; cursor: pointer; font-weight: 670; }
.faq-list p { margin: 0; padding: 0 1.25rem 1.25rem; color: var(--muted); }

.cta-panel { display: grid; grid-template-columns: 1fr auto; gap: 2rem; align-items: center; padding: clamp(2rem, 5vw, 4rem); border-radius: var(--radius-lg); color: white; background: #20233c; box-shadow: 0 25px 60px rgba(21,24,50,.18); }
.cta-panel h2 { max-width: 740px; margin-bottom: .7rem; }
.cta-panel p { max-width: 680px; margin: 0; color: rgba(255,255,255,.72); }

.site-footer { padding: 4rem 0 2rem; border-top: 1px solid var(--line); }
.footer-grid { display: grid; grid-template-columns: 1.35fr repeat(3, 1fr); gap: 2rem; }
.footer-intro { max-width: 380px; color: var(--muted); }
.footer-col h2 { margin: 0 0 .8rem; font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; }
.footer-col a { min-height: 44px; display: flex; align-items: center; gap: .45rem; margin: 0; color: var(--muted); text-decoration: none; }
.footer-col a:hover { color: var(--orange-dark); }
.footer-bottom { display: flex; justify-content: space-between; gap: 1rem; margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid var(--line); color: var(--muted); font-size: .82rem; }

[data-reveal] { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
[data-reveal][data-visible] { opacity: 1; transform: none; }

@media (max-width: 840px) {
  .menu-button { display: grid; place-items: center; }
  .nav-wrap { position: relative; }
  .nav-menu { display: none; position: absolute; top: calc(100% + 1rem); inset-inline-end: 0; width: min(300px, calc(100vw - 2rem)); padding: .7rem; border: 1px solid var(--line); border-radius: 20px; background: var(--paper-strong); box-shadow: var(--shadow); }
  .nav-menu[data-open] { display: grid; }
  .nav-menu a { padding: .8rem; }
  .hero-grid, .guide-grid, .journey-grid, .task-grid, .expect-grid, .editorial-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 780px; }
  .phone-stage { width: min(100%, 650px); margin-inline: auto; }
  .card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .guide-visual { max-width: 560px; margin-inline: auto; width: 100%; }
  .task-grid > .section-head { position: static; }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-grid > :last-child { grid-column: 2 / -1; }
}

@media (max-width: 700px) {
  .shell { width: min(calc(100% - 1.25rem), var(--max)); }
  .header-inner { min-height: 66px; }
  .site-header .brand-lockup { gap: .5rem; }
  .site-header .brand-symbol { height: 38px; }
  .site-header .brand-wordmark { height: 19px; }
  .nav-wrap { gap: .55rem; }
  .menu-button { width: 48px; height: 48px; border-radius: 19px; }
  .language-wrap { width: 58px; height: 48px; }
  .language-code { position: absolute; inset: 0; display: grid; place-items: center; z-index: 0; color: var(--ink); font-size: .75rem; font-weight: 700; letter-spacing: .04em; pointer-events: none; }
  .language-select { position: relative; z-index: 1; width: 58px; height: 48px; max-width: 58px; color: transparent; padding: 0; background: transparent; }
  .language-select option { color: var(--ink); }
  .hero { padding-top: 2.6rem; }
  h1 { font-size: clamp(2.55rem, 11.25vw, 3.45rem); }
  .guide-hero h1 { font-size: clamp(2.55rem, 11.5vw, 3.45rem); }
  .lead { font-size: 1.05rem; }
  .phone-stage { min-height: 430px; margin-top: .5rem; }
  .phone { border-width: 5px; border-radius: 28px; }
  .phone-c { display: none; }
  .phone-a, .phone-b { width: 52%; }
  .section-head { display: block; }
  .card-grid, .resource-grid, .highlight-grid, .related { grid-template-columns: 1fr; }
  .resource-card { min-height: 290px; }
  .guide-visual { max-width: 330px; padding: .7rem; }
  .guide-visual .screenshot-card { max-width: 250px; padding: .45rem; border-radius: 28px; }
  .guide-visual .screenshot-card img { border-radius: 23px; }
  .cta-panel { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > :first-child { grid-column: 1 / -1; }
  .footer-grid > :last-child { grid-column: auto; }
  .footer-bottom { display: block; }
  .step { grid-template-columns: 38px 1fr; padding-inline: 0; }
  .button { width: 100%; min-width: 0; }
  .actions { align-items: center; }
  .actions .text-action { width: 100%; justify-content: flex-start; }
  .trust-list li { margin-bottom: .45rem; }
  .hero-proof { grid-column: auto; margin-top: -.75rem; }
  .review-record { grid-template-columns: 1fr; }
  .resource-card { min-height: 235px; }
  .compact-hero { padding-top: 2rem; }
  [data-reveal] { opacity: 1; transform: none; transition: none; }
}

@media (max-width: 370px) {
  .site-header .brand-symbol { height: 36px; }
  .site-header .brand-wordmark { height: 18px; }
  .nav-wrap { gap: .35rem; }
  .menu-button { width: 46px; height: 46px; }
  .language-wrap, .language-select { width: 52px; max-width: 52px; height: 46px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
  [data-reveal] { opacity: 1; transform: none; }
}

@media (prefers-contrast: more) {
  :root { --line: rgba(35,31,27,.35); --muted: #4d463f; }
  .button-secondary, .feature-card, .highlight { background: white; }
}
