/* The one marketing stylesheet. Same tokens and control sizing as the
   server-rendered auth pages (src/app/auth-pages.ts) so the public site and the
   sign-in card read as one product. No framework, no webfont, no external
   request. */

:root {
  color-scheme: dark;
  --bg: #080d18; --card-bg: #111a2a; --fg: #f4f3ef;
  --muted: #a4aebe; --border: #263044; --border-strong: #3e4a60;
  --accent: #8ba8ff; --accent-hover: #b3c6ff; --mint: #9ee8ce;
  --radius: 10px; --radius-lg: 18px; --measure: 1280px;
  --shadow-sm: 0 2px 8px #0002; --shadow-lg: 0 30px 90px #0005;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--fg);
  background: var(--bg);
  line-height: 1.55;
  letter-spacing: -0.006em;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

main, .nav, .foot { max-width: var(--measure); margin: 0 auto; padding: 0 20px; }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 20px;
  padding-bottom: 20px;
}
.nav__brand {
  font-size: 15px;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.nav__links { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; font-size: 15px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  background: var(--card-bg);
  color: var(--fg);
  font-size: 15px;
  font-weight: 550;
  cursor: pointer;
}
.btn:hover { border-color: var(--muted); text-decoration: none; }
.btn--accent {
  border-color: var(--accent);
  background: var(--accent);
  color: #080d18;
  box-shadow: 0 1px 2px color-mix(in srgb, var(--accent) 40%, transparent),
    0 6px 16px -4px color-mix(in srgb, var(--accent) 45%, transparent);
}
.btn--accent:hover { background: var(--accent-hover); border-color: var(--accent-hover); }

.hero { padding: 48px 0 8px; }
.hero h1 { font-size: 40px; line-height: 1.12; letter-spacing: -0.025em; margin: 0 0 16px; max-width: 20ch; }
.hero__lead { font-size: 19px; color: var(--muted); margin: 0 0 26px; max-width: 62ch; }
.hero__actions { display: flex; gap: 12px; flex-wrap: wrap; margin: 0 0 14px; }
.hero__note { font-size: 14px; color: var(--muted); margin: 0; }

.section { padding: 44px 0; border-top: 1px solid var(--border); }
.section h2 { font-size: 26px; letter-spacing: -0.02em; margin: 0 0 8px; }
.section__lead { color: var(--muted); margin: 0 0 24px; max-width: 62ch; }

.cards { display: grid; gap: 18px; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); list-style: none; margin: 0; padding: 0; }
.card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: var(--shadow-sm);
}
.card h3 { margin: 0 0 8px; font-size: 17px; }
.card p { margin: 0; color: var(--muted); font-size: 15px; }

.steps { counter-reset: step; list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.steps li { color: var(--muted); }
.steps li strong { color: var(--fg); display: block; }

.switch { display: inline-flex; gap: 6px; padding: 5px; border: 1px solid var(--border); border-radius: 999px; background: var(--card-bg); margin: 0 0 24px; }
.switch__btn { min-height: 38px; padding: 0 16px; border: none; border-radius: 999px; background: none; color: var(--muted); font: inherit; font-weight: 550; cursor: pointer; }
.switch__btn--on { background: var(--accent); color: #080d18; }

.plans { display: grid; gap: 18px; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); list-style: none; margin: 0; padding: 0; }
.plan { display: flex; flex-direction: column; background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 24px; box-shadow: var(--shadow-sm); }
.plan__name { margin: 0 0 10px; font-size: 18px; }
.plan__price { margin: 0; }
.plan__amount { font-size: 32px; font-weight: 660; letter-spacing: -0.02em; }
.plan__period { color: var(--muted); font-size: 15px; }
.plan__note { color: var(--muted); font-size: 14px; margin: 6px 0 16px; }
.plan__bullets { margin: 0 0 22px; padding-left: 20px; color: var(--muted); font-size: 15px; display: grid; gap: 6px; }
.plan .btn { margin-top: auto; }
.plans[data-billing="month"] .price--year { display: none; }
.plans[data-billing="year"] .price--month { display: none; }

.table-wrap { overflow-x: auto; }
table.downloads { width: 100%; border-collapse: collapse; font-size: 15px; }
table.downloads th, table.downloads td { text-align: left; padding: 12px 14px; border-bottom: 1px solid var(--border); vertical-align: top; }
table.downloads th { font-size: 13px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted); }
table.downloads code { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 12px; color: var(--muted); word-break: break-all; }
.empty { color: var(--muted); }

.prose { max-width: 68ch; }
.prose p, .prose li { color: var(--muted); }

.foot { border-top: 1px solid var(--border); margin-top: 40px; padding-top: 24px; padding-bottom: 40px; display: flex; gap: 18px; flex-wrap: wrap; font-size: 14px; color: var(--muted); }

@media (max-width: 640px) {
  .hero { padding-top: 30px; }
  .hero h1 { font-size: 30px; }
  .hero__lead { font-size: 17px; }
}

/* Shared visual system. Native assets and system type keep every page self-contained. */
html { scroll-behavior: smooth; scroll-padding-top: 28px; }
:focus-visible { outline: 3px solid var(--mint); outline-offset: 5px; }
::selection { background: #8ba8ff; color: #080d18; }
main, .nav, .foot { padding-left: 40px; padding-right: 40px; }
.nav { min-height: 100px; padding-top: 22px; padding-bottom: 22px; border-bottom: 1px solid #26304480; }
.nav__brand { display: inline-flex; align-items: center; gap: 10px; color: var(--fg); text-transform: none; letter-spacing: -.045em; font-size: 27px; }
.nav__brand::before { content: ''; width: 30px; height: 30px; background: url('/assets/favicon.svg') center / contain no-repeat; }
.nav__links { gap: 23px; font-size: 14px; }
.nav__links > a:not(.btn) { color: #c1c9d6; }
.nav__links > a:hover { color: var(--fg); }
.btn { gap: 22px; font-weight: 650; transition: background .2s, border-color .2s, transform .2s; }
.btn:hover { transform: translateY(-2px); }
.btn--accent { background: var(--accent); color: #080d18; box-shadow: none; }
.btn--large { min-height: 56px; padding: 0 24px; font-size: 16px; }
.text-link { display: inline-flex; gap: 20px; align-items: center; min-height: 48px; color: var(--fg); font-size: 16px; font-weight: 600; }
.text-link span { color: var(--accent); }
.hero { padding: 72px 0 48px; }
.hero h1 { font-size: clamp(40px, 5vw, 64px); letter-spacing: -.055em; font-weight: 650; }
.hero__lead { font-size: 19px; line-height: 1.65; }
.section { padding: 64px 0; }
.section h2 { font-size: 36px; line-height: 1.12; letter-spacing: -.045em; }
.section__lead { font-size: 18px; line-height: 1.7; }
.foot { padding-top: 32px; padding-bottom: 36px; align-items: center; gap: 26px; }
.foot > span { margin-right: auto; font-weight: 600; color: var(--fg); }
.foot a { color: var(--muted); min-height: 44px; display: inline-flex; align-items: center; }
.eyebrow { margin: 0 0 24px; font-size: 11px; line-height: 1.5; font-weight: 650; letter-spacing: .15em; text-transform: uppercase; color: var(--accent); }
.status-dot { display: inline-block; width: 7px; height: 7px; margin-right: 7px; background: var(--mint); border-radius: 50%; box-shadow: 0 0 0 4px #9ee8ce0b; }
.home-hero { display: grid; grid-template-columns: 1.12fr 1fr; gap: 38px; align-items: center; padding: 74px 0 90px; }
.home-hero h1 { font-size: clamp(44px, 4.6vw, 68px); max-width: none; line-height: 1.04; letter-spacing: -.058em; margin-bottom: 28px; }
.home-hero h1 > span { display: block; color: var(--accent); }
.home-hero .hero__lead { max-width: 46ch; font-size: 17px; margin-bottom: 28px; }
.home-hero .hero__actions { gap: 24px; align-items: center; }
.hero__note { font-size: 12px; line-height: 1.7; }
.hero__note a { color: var(--muted); text-decoration: underline; text-underline-offset: 3px; }
.workspace { margin: 0; min-width: 0; position: relative; isolation: isolate; }
.workspace::before { content: ''; position: absolute; inset: 0 -12px; z-index: -1; background: radial-gradient(ellipse, #4676ed20 0%, transparent 68%); }
.workspace__label { text-align: center; color: #c4cede; font-size: 12px; margin-bottom: 26px; letter-spacing: .02em; }
.laptop { position: relative; padding: 0 8px; }
.laptop__screen { border: 1px solid #71809b; border-radius: 20px 20px 6px 6px; padding: 8px; background: linear-gradient(135deg,#58657a,#151c2a 20%,#333f53); box-shadow: 0 40px 80px #0005; }
.desktop-bar { display: flex; justify-content: space-between; align-items: center; padding: 13px 12px; border-radius: 12px 12px 0 0; background: #141d2c; color: #c0ccdf; font-size: 10px; border-bottom: 1px solid #35405a; }
.window-dots { display: flex; gap: 4px; }
.window-dots i { display: block; width: 6px; height: 6px; border-radius: 50%; background: #62738d; }
.window-dots i:first-child { background: #c18a87; }
.window-dots i:nth-child(2) { background: #c3b589; }
.window-dots i:last-child { background: #83b6a1; }
.desktop { padding: 28px 22px 30px; background: radial-gradient(ellipse at top right,#304d8255,transparent 70%),#182335; }
.folder-window { border: 1px solid #d1d6dd; border-radius: 9px; background: #f4f3ef; color: #253146; overflow: hidden; box-shadow: 0 12px 32px #0002; }
.folder-window__title { display: flex; gap: 9px; align-items: center; padding: 13px; border-bottom: 1px solid #dfe0e1; font-weight: 650; font-size: 12px; }
.folder-icon { display: inline-block; flex-shrink: 0; position: relative; width: 19px; height: 14px; border-radius: 2px 3px 3px; background: #7fa7ef; box-shadow: inset 0 2px 0 #ffffff28; vertical-align: middle; }
.folder-icon::before { content: ''; width: 9px; height: 4px; border-radius: 2px 2px 0 0; position: absolute; top: -3px; left: 0; background: #7fa7ef; }
.local-tag { font-size: 9px; font-weight: 500; color: #546174; margin-left: auto; }
.file-row { display: flex; align-items: center; gap: 12px; padding: 12px 15px; font-size: 12px; }
.file-row + .file-row { border-top: 1px solid #e3e3df; }
.file-row small { display: block; color: #626d7b; font-size: 10px; padding-top: 2px; }
.file-icon { display: grid; place-items: center; border: 1px solid #d0d6e0; color: #647089; background: #fff; width: 28px; height: 35px; border-radius: 3px; font-size: 8px; font-weight: 600; }
.file-row__number { font-size: 10px; color: #606b7f; margin-left: auto; }
.workflow-connector { height: 33px; display: flex; flex-direction: column; align-items: center; justify-content: center; color: #9cbbff; font-size: 15px; line-height: 12px; }
.workflow-connector span { height: 9px; width: 1px; background: #739ceb; }
.task-window { background: #111b2e; border: 1px solid #577bc2; border-radius: 10px; padding: 17px; box-shadow: 0 0 28px #577bc212; }
.task-window__heading { display: flex; align-items: center; gap: 8px; color: #c3d3f8; font-size: 11px; }
.task-window__heading > span { margin-left: auto; color: #acc1ff; }
.task-window p { font-size: 17px; line-height: 1.45; letter-spacing: -.02em; margin: 14px 0; }
.task-window__scope { display: inline-flex; gap: 8px; align-items: center; font-size: 10px; color: #a9b7d0; }
.task-window__scope .folder-icon { transform: scale(.72); }
.saved-file { display: flex; gap: 10px; align-items: center; background: #dcece3; color: #183e30; padding: 13px; border: 1px solid #b0d8c8; border-radius: 9px; }
.saved-file__check { display: grid; place-items: center; width: 25px; height: 25px; border: 1px solid #83b09b; border-radius: 50%; font-size: 14px; }
.saved-file strong { font-size: 12px; display: block; }
.saved-file small { font-size: 9px; display: block; color: #3d6252; }
.saved-file__badge { margin-left: auto; font-size: 9px; text-align: right; }
.laptop__base { height: 13px; margin: 0 -8px; background: linear-gradient(#99a1ad,#5f6c7c 25%,#293443); border-radius: 2px 2px 45% 45%; border-top: 1px solid #bcc4cf; }
.laptop__base span { display: block; width: 20%; height: 4px; margin: auto; background: #344052; border-radius: 0 0 8px 8px; }
.workspace figcaption { display: flex; justify-content: space-between; margin-top: 22px; font-size: 10px; color: #92a0b8; }
.home .section { padding: 98px 0; }
.home .section h2, .control-section h2 { font-size: clamp(36px,4.1vw,56px); line-height: 1.08; font-weight: 600; letter-spacing: -.05em; margin: 0 0 24px; }
.section-heading .section__lead { max-width: 40ch; }
.friction-section { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center; }
.small-label { font-size: 10px; text-transform: uppercase; letter-spacing: .13em; color: #9aa8bd; }
.old-workflow { border-bottom: 1px solid var(--border); padding-bottom: 22px; }
.old-workflow p { font-size: 16px; color: #a8b1c0; line-height: 1.9; margin: 10px 0 0; }
.old-workflow p span { color: #5e7193; padding: 0 7px; }
.new-workflow { position: relative; padding-top: 26px; }
.new-workflow .small-label { color: var(--mint); }
.folder-icon--large { width: 54px; height: 40px; border-radius: 4px 7px 7px; }
.folder-icon--large::before { width: 25px; height: 9px; top: -7px; border-radius: 4px 4px 0 0; }
.new-workflow > .folder-icon { position: absolute; right: 4px; top: 54px; transform: rotate(-7deg); }
.new-workflow h3 { font-size: 31px; line-height: 1.1; letter-spacing: -.04em; margin: 18px 0; }
.new-workflow p { color: var(--muted); font-size: 16px; line-height: 1.7; max-width: 43ch; }
.workflow-chip { display: inline-block; border-bottom: 1px solid #9ee8ce55; color: var(--mint); padding: 8px 0; font-size: 12px; }
.workflow-steps { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); list-style: none; padding: 0; margin: 52px 0 0; gap: 36px; }
.workflow-steps > li { min-width: 0; }
.step-top { display: flex; justify-content: space-between; border-top: 1px solid #415476; padding: 18px 0 24px; font-size: 13px; color: #a3baff; }
.workflow-steps h3 { font-size: 21px; font-weight: 550; letter-spacing: -.035em; margin: 0 0 12px; }
.workflow-steps p { font-size: 16px; color: var(--muted); line-height: 1.7; margin: 0 0 24px; }
.step-example { min-height: 96px; padding: 20px; border: 1px solid var(--border); border-radius: 10px; background: #101827; color: #d4ddeb; font-size: 13px; }
.step-example .folder-icon { margin-right: 8px; }
.step-example small { display: block; font-size: 11px; margin-top: 8px; color: #a6b4cb; }
.step-example--request { font-size: 14px; color: #b7caff; }
.step-example--result { border-color: #29473e; background: #11221f; color: var(--mint); }
.step-example--result > span { margin-right: 8px; }
.task-examples { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 18px; margin-top: 44px; }
.task-example { min-width: 0; display: flex; flex-direction: column; border-radius: 14px; padding: 28px; border: 1px solid #29354b; background: linear-gradient(150deg,#19263c,#0f1726); }
.task-example:nth-child(2) { background: linear-gradient(150deg,#22253b,#111724); }
.task-example:nth-child(3) { background: linear-gradient(150deg,#172f31,#101c25); }
.task-example__number { font-size: 9px; letter-spacing: .09em; color: #b1c0d8; }
.task-example h3 { font-size: 24px; line-height: 1.25; font-weight: 550; letter-spacing: -.035em; margin: 33px 0 16px; }
.task-example p { font-size: 15px; line-height: 1.7; color: #abb7ca; margin: 0 0 28px; }
.task-example__files { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; border-top: 1px solid #ffffff16; padding-top: 19px; margin-top: auto; font-size: 10px; color: #a4b7d6; }
.task-example__files strong { color: #c3d3ec; font-weight: 500; }
.continuity-section { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 100px; }
.body-copy { color: var(--muted); font-size: 16px; line-height: 1.8; }
.context-visual { padding: 40px; background: radial-gradient(ellipse at 0 0,#324d7040,transparent 65%),#0f1826; border: 1px solid #2b3850; border-radius: 18px; }
.context-visual__folder > .folder-icon { display: block; margin-bottom: 24px; }
.context-visual__folder > strong { display: block; font-size: 24px; font-weight: 550; letter-spacing: -.03em; }
.context-visual__folder > span:last-child { display: block; font-size: 12px; color: #9dafc8; margin-top: 6px; }
.context-visual ul { margin: 30px 0 0; padding: 0; list-style: none; display: grid; gap: 22px; }
.context-visual li { display: grid; grid-template-columns: 22px 1fr; gap: 2px 8px; }
.context-visual li > span:first-child { grid-row: span 2; color: #758dab; }
.context-visual li strong { font-weight: 500; font-size: 14px; color: #d8e1f0; }
.context-visual li > span:last-child { grid-column: 2; color: #92a5c0; font-size: 12px; }
.control-section { color-scheme: light; background: #eeeee8; color: #142031; margin: 0 calc((min(100vw, 1280px) - 100vw) / 2 - 40px); }
.control-section__inner { padding: 88px 40px 42px; max-width: 1280px; margin: auto; display: grid; grid-template-columns: 1fr 1fr; gap: 50px 100px; }
.control-section .eyebrow { color: #405c9b; }
.control-section h2 { max-width: 13ch; }
.control-details { padding-top: 4px; }
.control-details article { display: flex; gap: 25px; padding: 0 0 24px; }
.control-details article > span { padding-top: 4px; font-size: 10px; color: #687891; }
.control-details h3 { font-size: 19px; margin: 0 0 8px; font-weight: 650; letter-spacing: -.025em; }
.control-details p { color: #576172; line-height: 1.7; font-size: 15px; margin: 0; }
.provider-note { grid-column: 1 / -1; border-top: 1px solid #c9cfcd; padding-top: 24px; margin: 0; font-size: 13px; line-height: 1.8; color: #576172; }
.provider-note > span { color: #446399; margin-right: 12px; }
.provider-note a { color: #294e94; white-space: nowrap; text-decoration: underline; text-underline-offset: 3px; }
.control-section :focus-visible { outline-color: #294e94; }
.closing-section { text-align: center; padding: 112px 0 76px; background: radial-gradient(ellipse at 50% 30%,#416dec12,transparent 65%); }
.closing-section h2 { font-size: clamp(52px,7vw,90px); letter-spacing: -.06em; line-height: 1.02; font-weight: 550; margin: 0 0 24px; }
.closing-section > p:not(.eyebrow):not(.hero__note) { font-size: 18px; color: var(--muted); margin-bottom: 28px; }
.closing-section .hero__actions { justify-content: center; }
.closing-pricing { display: inline-block; font-size: 13px; padding: 18px; color: #b8c8e5; }
.home .foot { margin-top: 0; }
@media (min-width: 800px) {
  .workspace { animation: workspace-enter .8s ease both; }
  @keyframes workspace-enter { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }
}
@media (max-width: 1100px) {
  .nav__links { gap: 14px; font-size: 12px; }
  .nav__links .btn { padding: 0 12px; font-size: 12px; }
  .home-hero { gap: 28px; }
  .home-hero h1 { font-size: 51px; }
  .home-hero .hero__actions { gap: 12px; }
  .home-hero .text-link { font-size: 14px; gap: 12px; }
  .desktop { padding: 22px 12px; }
  .friction-section, .continuity-section, .control-section__inner { gap: 50px; }
  .task-example { padding: 24px 20px; }
  .task-example h3 { font-size: 21px; }
  .workflow-steps { gap: 24px; }
}
@media (max-width: 799px) {
  main, .nav, .foot { padding-left: 24px; padding-right: 24px; }
  .nav { min-height: 84px; }
  .home-hero { grid-template-columns: 1fr; padding: 48px 0 64px; gap: 46px; }
  .home-hero h1 { font-size: clamp(44px,7.8vw,62px); max-width: 18ch; }
  .home-hero .hero__lead { max-width: 51ch; }
  .home-hero .hero__actions { gap: 20px; }
  .workspace { width: 100%; max-width: 520px; margin: auto; }
  .desktop { padding: 26px 20px; }
  .home .section { padding: 64px 0; }
  .friction-section, .continuity-section { grid-template-columns: 1fr; gap: 36px; }
  .section-heading .section__lead { max-width: 52ch; }
  .workflow-steps, .task-examples { grid-template-columns: 1fr; gap: 28px; margin-top: 36px; }
  .workflow-steps p { max-width: 52ch; margin-bottom: 18px; }
  .step-top { padding: 16px 0 20px; }
  .step-example { min-height: auto; }
  .task-example { padding: 28px; }
  .task-example h3 { font-size: 28px; margin-top: 22px; }
  .task-example p { max-width: 48ch; }
  .task-example__number { font-size: 10px; }
  .task-example__files { font-size: 12px; }
  .continuity-section .section-heading { grid-row: 1; }
  .control-section { margin-left: -24px; margin-right: -24px; }
  .control-section__inner { grid-template-columns: 1fr; gap: 26px; padding: 64px 24px 32px; }
  .control-section h2 { max-width: 17ch; }
  .control-details article { gap: 20px; }
  .closing-section { padding: 76px 0 58px; }
  .foot { gap: 8px 24px; }
  .foot > span { flex-basis: 100%; padding-bottom: 8px; }
}
@media (max-width: 420px) {
  main, .nav, .foot { padding-left: 20px; padding-right: 20px; }
  .home-hero { padding-top: 38px; }
  .home-hero h1 { font-size: 44px; }
  .eyebrow { font-size: 10px; letter-spacing: .1em; }
  .home-hero .hero__actions { flex-direction: column; align-items: stretch; gap: 6px; }
  .home-hero .text-link { justify-content: center; }
  .desktop { padding: 18px 10px; }
  .folder-window__title { padding: 12px 10px; font-size: 11px; gap: 6px; }
  .local-tag { display: none; }
  .file-row { padding: 11px 10px; gap: 8px; }
  .file-row small { font-size: 10px; }
  .file-row__number { display: none; }
  .task-window { padding: 14px 12px; }
  .task-window p { font-size: 16px; }
  .saved-file { padding: 12px 9px; gap: 8px; }
  .saved-file__badge { display: none; }
  .saved-file small { font-size: 10px; }
  .workspace figcaption { flex-direction: column; align-items: center; gap: 4px; font-size: 11px; }
  .context-visual { padding: 28px; }
  .control-section { margin-left: -20px; margin-right: -20px; }
  .control-section__inner { padding-left: 20px; padding-right: 20px; }
  .closing-section .hero__actions { flex-direction: column; }
  .cards, .plans { grid-template-columns: minmax(0,1fr); }
  .switch { max-width: 100%; }
  .switch__btn { padding: 0 12px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
