:root {
  --bg: #f5f7fb;
  --surface: #fff;
  --surface-soft: #f8faff;
  --ink: #0f1f35;
  --muted: #64748b;
  --line: #dfe6f0;
  --line-soft: #edf1f7;
  --navy: #0b2447;
  --navy2: #123b72;
  --blue: #2563eb;
  --blue2: #1d4ed8;
  --blue-soft: #edf4ff;
  --cyan: #0891b2;
  --cyan-bright: #2de7df;
  --ok: #087a55;
  --ok-soft: #eaf8f2;
  --warn: #b45309;
  --warn-soft: #fff7e8;
  --shadow: 0 16px 42px rgba(15,31,53,.08);
  --shadow-lg: 0 28px 80px rgba(11,36,71,.18);
  --radius: 18px;
  --radius-lg: 28px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img,svg {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,input {
  font: inherit;
}

:focus-visible {
  outline: 3px solid rgba(37,99,235,.28);
  outline-offset: 3px;
}

.container {
  width: min(calc(100% - 36px),var(--max));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  left: 14px;
  top: 10px;
  z-index: 9999;
  transform: translateY(-160%);
  padding: 10px 14px;
  border-radius: 9px;
  background: #fff;
  box-shadow: var(--shadow);
  transition: transform .15s ease;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(223,230,240,.86);
  background: rgba(245,247,251,.9);
  backdrop-filter: blur(18px);
}

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img {
  width: 154px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 5px;
}

.nav-links a {
  padding: 9px 10px;
  border-radius: 9px;
  color: #506176;
  font-size: 13px;
  font-weight: 680;
  white-space: nowrap;
}

.nav-links a:hover,.nav-links a[aria-current=page] {
  background: #fff;
  color: var(--blue);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 9px 15px;
  border: 1px solid transparent;
  border-radius: 10px;
  font-weight: 740;
  font-size: 14px;
  cursor: pointer;
  transition: transform .16s ease,background .16s ease,border-color .16s ease,box-shadow .16s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 8px 20px rgba(37,99,235,.17);
}

.button-primary:hover {
  background: var(--blue2);
}

.button-secondary {
  background: #fff;
  border-color: #cfd9e7;
  color: var(--ink);
}

.button-secondary:hover {
  border-color: #b8c7db;
  color: var(--blue);
  box-shadow: 0 7px 20px rgba(15,31,53,.05);
}

.button-lg {
  min-height: 48px;
  padding: 11px 18px;
}

.button-light {
  background: #fff;
  color: var(--navy);
}

.button-ghost {
  border-color: rgba(255,255,255,.26);
  background: rgba(255,255,255,.08);
  color: #fff;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
}

.menu-toggle svg {
  width: 22px;
  height: 22px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 78px 0 58px;
  background: radial-gradient(circle at 85% 10%,rgba(37,99,235,.15),transparent 30%),radial-gradient(circle at 62% 5%,rgba(45,231,223,.08),transparent 20%),linear-gradient(180deg,#fbfdff 0%,var(--bg) 100%);
}

.hero:after {
  content: "";
  position: absolute;
  right: -210px;
  top: 80px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(37,99,235,.08);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(37,99,235,.018),0 0 0 145px rgba(8,145,178,.013);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: .96fr 1.04fr;
  gap: 54px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 10px;
  border: 1px solid #ccdcfb;
  border-radius: 999px;
  background: var(--blue-soft);
  color: var(--blue);
  font-size: 11px;
  font-weight: 820;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hero h1,.page-hero h1,.donate-hero h1 {
  margin: 19px 0 18px;
  font-size: clamp(46px,6vw,76px);
  line-height: .99;
  letter-spacing: -.055em;
}

.gradient-text,.donate-hero h1 span {
  background: linear-gradient(100deg,#123b72 5%,#2563eb 56%,#0891b2 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-copy {
  max-width: 650px;
  font-size: 18px;
  color: var(--muted);
}

.hero-actions,.page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-top: 27px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 27px;
  color: #53677f;
  font-size: 12px;
  font-weight: 670;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
}

.trust-item svg {
  width: 17px;
  height: 17px;
  color: var(--ok);
}

.app-nav-item.active {
  background: #1677ff;
  color: #fff;
  font-weight: 800;
}

.compat-strip {
  border-block: 1px solid var(--line);
  background: #fff;
}

.compat-inner {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  color: #5d6f84;
  font-size: 12px;
  font-weight: 730;
}

.compat-inner i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #a9b7c7;
}

.section {
  padding: 82px 0;
}

.section-topless {
  padding-top: 24px;
}

.section-soft {
  background: #fff;
  border-block: 1px solid var(--line-soft);
}

.section-head {
  max-width: 780px;
  margin-bottom: 36px;
}

.kicker {
  font-size: 11px;
  color: var(--blue);
  font-weight: 820;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.kicker-light {
  color: #8ec3ff;
}

.section h2,.legal-card h2 {
  margin: 8px 0 10px;
  font-size: clamp(31px,4vw,48px);
  line-height: 1.08;
  letter-spacing: -.04em;
}

.section-head p,.lead {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.features {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 16px;
}

.feature {
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.icon-box {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--blue-soft);
  color: var(--blue);
  margin-bottom: 17px;
}

.icon-box svg {
  width: 22px;
  height: 22px;
}

.feature h3 {
  margin: 0 0 8px;
  font-size: 18px;
  line-height: 1.25;
}

.feature p {
  margin: 0;
  color: var(--muted);
  font-size: 13.5px;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
}

.split-wide {
  grid-template-columns: .9fr 1.1fr;
}

.dark-panel {
  padding: 35px;
  border-radius: 27px;
  color: #fff;
  background: radial-gradient(circle at 86% 16%,rgba(61,141,255,.28),transparent 30%),linear-gradient(145deg,var(--navy),#12386a);
  box-shadow: 0 20px 46px rgba(11,36,71,.2);
}

.dark-panel .kicker {
  color: #8ec3ff;
}

.dark-panel h2 {
  color: #fff;
}

.dark-panel p {
  color: #cbd8e9;
}

.mini-stats {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 10px;
  margin-top: 22px;
}

.mini-stat {
  padding: 14px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 12px;
  background: rgba(255,255,255,.06);
}

.mini-stat span {
  display: block;
  font-size: 10px;
  color: #9fb4ce;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.mini-stat strong {
  display: block;
  margin-top: 5px;
  font-size: 20px;
}

.text-link {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  margin-top: 18px;
  color: var(--blue);
  font-weight: 760;
  font-size: 13px;
}

.light-link {
  color: #7dd3fc;
}

.steps {
  display: grid;
  gap: 12px;
}

.step {
  display: flex;
  gap: 14px;
  padding: 19px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: #fff;
}

.step-num {
  display: grid;
  place-items: center;
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--blue-soft);
  color: var(--blue);
  font-weight: 820;
  font-size: 11px;
}

.step h3 {
  margin: 0 0 4px;
  font-size: 16px;
}

.step p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.ui-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 16px;
}

.ui-card {
  position: relative;
  overflow: hidden;
  padding: 27px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: linear-gradient(145deg,#fff,#f8fbff);
  box-shadow: var(--shadow);
}

.ui-number {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 11px;
  background: var(--blue-soft);
  color: var(--blue);
  font-size: 11px;
  font-weight: 850;
}

.ui-card h3 {
  margin: 35px 0 8px;
}

.ui-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.price-table {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--shadow);
}

.table-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 19px;
  border-bottom: 1px solid var(--line-soft);
}

.table-toolbar strong {
  display: block;
}

.table-toolbar small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 10px;
}

.searchbox {
  display: flex;
  align-items: center;
  gap: 8px;
  width: min(100%,350px);
  padding: 9px 11px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #f9fbfd;
  color: #718096;
}

.searchbox svg {
  width: 18px;
}

.searchbox span {
  font-size: 13px;
}

.table-scroll {
  overflow-x: auto;
}

.public-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 820px;
}

.public-table th,.public-table td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid var(--line-soft);
  font-size: 13px;
}

.public-table th {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: #66768a;
  background: #f7f9fc;
}

.public-table tbody tr:last-child td {
  border-bottom: 0;
}

.public-table tbody tr:hover td {
  background: #fbfcff;
}

.price {
  font-weight: 800;
}

.anchor-price {
  color: var(--muted);
}

.badge {
  display: inline-flex;
  padding: 5px 8px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
}

.badge-ok {
  background: var(--ok-soft);
  color: var(--ok);
}

.badge-blue {
  background: var(--blue-soft);
  color: var(--blue);
}

.badge-warn {
  background: var(--warn-soft);
  color: var(--warn);
}

.check-list {
  display: grid;
  gap: 11px;
  margin-top: 24px;
}

.check-list>div {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: #506176;
}

.check-list svg {
  flex: 0 0 19px;
  width: 19px;
  height: 19px;
  color: var(--ok);
  margin-top: 2px;
}

.check-list strong {
  color: var(--ink);
}

.check-list.compact {
  gap: 9px;
  margin-top: 16px;
}

.security-panel {
  padding: 31px;
  border: 1px solid #d6e3f4;
  border-radius: 24px;
  background: linear-gradient(145deg,#fff,#f5f9ff);
  box-shadow: var(--shadow);
}

.security-mark {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 15px;
  background: linear-gradient(145deg,#0c2d5a,#174f93);
  color: #fff;
  margin-bottom: 18px;
}

.security-mark svg {
  width: 26px;
  height: 26px;
}

.security-panel h3 {
  font-size: 27px;
  line-height: 1.1;
  margin: 8px 0 10px;
}

.security-panel p {
  color: var(--muted);
}

.law-summary {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 16px;
}

.law-summary-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow);
}

.law-summary-card.emphasis {
  border-color: #bcd0f5;
  background: linear-gradient(145deg,#fff,#f3f7ff);
}

.date-tag {
  display: inline-flex;
  padding: 6px 8px;
  border-radius: 8px;
  background: var(--blue-soft);
  color: var(--blue);
  font-size: 11px;
  font-weight: 830;
}

.law-summary-card h3 {
  font-size: 18px;
  line-height: 1.25;
}

.law-summary-card p {
  color: var(--muted);
  font-size: 13.5px;
}

.section-actions {
  margin-top: 22px;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.faq-grid details {
  padding: 0 20px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
}

.faq-grid summary {
  cursor: pointer;
  padding: 18px 0;
  font-weight: 760;
}

.faq-grid p {
  margin: -3px 0 18px;
  color: var(--muted);
  font-size: 14px;
}

.donate-band {
  padding: 56px 0;
}

.donate-band-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 28px 32px;
  border: 1px solid #ccdafa;
  border-radius: 24px;
  background: radial-gradient(circle at 85% 20%,rgba(37,99,235,.12),transparent 25%),linear-gradient(145deg,#fff,#f6f9ff);
  box-shadow: var(--shadow);
}

.donate-symbol {
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  border-radius: 18px;
  background: var(--blue);
  color: #fff;
  box-shadow: 0 12px 26px rgba(37,99,235,.22);
}

.donate-symbol svg {
  width: 29px;
  height: 29px;
}

.donate-band h2 {
  font-size: 30px;
  margin: 3px 0 5px;
}

.donate-band p {
  margin: 0;
  color: var(--muted);
  max-width: 720px;
}

.final-cta {
  padding-top: 40px;
}

.cta {
  padding: 42px;
  border-radius: 28px;
  background: radial-gradient(circle at 85% 10%,rgba(45,231,223,.16),transparent 28%),linear-gradient(145deg,#0c2d5a,#174f93);
  color: #fff;
  display: flex;
  justify-content: space-between;
  gap: 26px;
  align-items: center;
  box-shadow: 0 20px 50px rgba(11,36,71,.18);
}

.cta h2 {
  margin: 7px 0 8px;
  color: #fff;
}

.cta p {
  margin: 0;
  color: #cbd8e9;
  max-width: 690px;
}

.site-footer {
  padding: 48px 0 24px;
  background: #071c34;
  color: #cbd8e9;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.45fr .7fr .7fr;
  gap: 38px;
}

.footer-brand img {
  width: 150px;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  max-width: 430px;
  font-size: 13px;
  color: #9fb4ce;
}

.footer-domain {
  display: inline-block;
  margin-top: 7px;
  color: #49e6dc;
  font-size: 12px;
  font-weight: 730;
}

.footer-title {
  font-size: 11px;
  color: #fff;
  font-weight: 820;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 10px;
}

.footer-links {
  display: grid;
  gap: 8px;
  font-size: 13px;
}

.footer-links a:hover {
  color: #49e6dc;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
  margin-top: 32px;
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: 12px;
  color: #8ea8bf;
}

.page-hero {
  padding: 66px 0 42px;
  background: radial-gradient(circle at 88% 15%,rgba(37,99,235,.1),transparent 30%);
}

.page-hero h1 {
  max-width: 920px;
  font-size: clamp(42px,6vw,68px);
}

.page-hero p {
  max-width: 790px;
  color: var(--muted);
  font-size: 18px;
}

.doc-layout {
  display: grid;
  grid-template-columns: 245px minmax(0,1fr);
  gap: 28px;
  align-items: start;
}

.doc-nav {
  position: sticky;
  top: 96px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(15,31,53,.04);
}

.doc-nav strong {
  display: block;
  padding: 5px 10px 8px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #8291a3;
}

.doc-nav a {
  display: block;
  padding: 8px 10px;
  border-radius: 8px;
  color: #5d6e82;
  font-size: 13px;
}

.doc-nav a:hover {
  background: var(--blue-soft);
  color: var(--blue);
}

.doc-content {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--shadow);
}

.doc-content h2 {
  scroll-margin-top: 110px;
  font-size: 29px;
  line-height: 1.18;
  margin: 42px 0 12px;
}

.doc-content h2:first-child {
  margin-top: 0;
}

.doc-content h3 {
  margin: 24px 0 7px;
}

.doc-content p,.doc-content li {
  color: #526579;
}

.doc-content li+li {
  margin-top: 5px;
}

.doc-content code {
  padding: 2px 6px;
  border-radius: 6px;
  background: #f2f5f9;
  color: #27415f;
}

.code-block {
  overflow-x: auto;
  padding: 18px;
  border: 1px solid #dfe7f2;
  border-radius: 13px;
  background: #0c2038;
  color: #d7e8f6;
  font: 13px/1.7 ui-monospace,SFMono-Regular,Consolas,monospace;
}

.notice {
  padding: 16px 18px;
  border: 1px solid #cfe0fb;
  border-radius: 13px;
  background: #f8fbff;
  color: #405a76;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 10px;
  margin: 22px 0;
}

.info-grid div {
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #f9fbfd;
}

.info-grid span {
  display: block;
  color: var(--muted);
  font-size: 10px;
  text-transform: uppercase;
}

.info-grid strong {
  display: block;
  margin-top: 4px;
}

.doc-end-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(0,1fr) 330px;
  gap: 24px;
  align-items: start;
}

.legal-card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--shadow);
}

.legal-card h2 {
  font-size: 28px;
  margin-top: 34px;
}

.legal-card h2:first-child {
  margin-top: 0;
}

.legal-card p,.legal-card li {
  color: #526579;
}

.privacy-aside {
  position: sticky;
  top: 96px;
}

.project-grid {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 24px;
  align-items: stretch;
}

.project-story h2 {
  font-size: 37px;
}

.principles {
  display: grid;
  gap: 11px;
  margin-top: 22px;
}

.principles>div {
  display: flex;
  gap: 10px;
  color: #d7e4f2;
}

.principles svg {
  width: 18px;
  height: 18px;
  color: #49e6dc;
  flex: 0 0 18px;
  margin-top: 2px;
}

.brand-showcase {
  display: grid;
  grid-template-columns: .7fr 1.3fr 1fr;
  gap: 16px;
}

.brand-logo-card,.palette {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--shadow);
}

.brand-logo-card img {
  width: 130px;
  margin-bottom: 22px;
}

.brand-logo-card.horizontal img {
  width: 280px;
  margin-top: 20px;
}

.brand-logo-card strong {
  display: block;
}

.brand-logo-card span {
  color: var(--muted);
  font-size: 12px;
}

.palette {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.palette span {
  display: block;
  padding: 10px;
  border-radius: 12px;
  background: #f8fafc;
}

.palette i {
  display: block;
  height: 38px;
  border-radius: 9px;
  border: 1px solid rgba(15,31,53,.07);
}

.swatch-navy i {
  background: #0b2447;
}

.swatch-blue i {
  background: #2563eb;
}

.swatch-cyan i {
  background: #0891b2;
}

.swatch-bg i {
  background: #f5f7fb;
}

.palette b,.palette small {
  display: block;
}

.palette b {
  margin-top: 7px;
  font-size: 11px;
}

.palette small {
  font-size: 10px;
  color: var(--muted);
}

.project-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.project-facts div {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow);
}

.project-facts span {
  display: block;
  color: var(--muted);
  font-size: 10px;
  text-transform: uppercase;
}

.project-facts strong {
  display: block;
  margin-top: 6px;
}

.law-alert {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  padding: 20px;
  border: 1px solid #cfe0fb;
  border-radius: 16px;
  background: #f8fbff;
}

.law-alert svg {
  width: 30px;
  height: 30px;
  color: var(--blue);
  flex: 0 0 30px;
}

.law-alert p {
  margin: 3px 0 0;
  color: var(--muted);
}

.timeline {
  display: grid;
  gap: 0;
  margin-top: 30px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 28px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
}

.timeline-item:last-child {
  border-bottom: 1px solid var(--line);
}

.timeline-date {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 38px;
  padding: 0 12px;
  border-radius: 10px;
  background: var(--blue-soft);
  color: var(--blue);
  font-weight: 850;
  font-size: 12px;
}

.timeline-item.active .timeline-date {
  background: var(--blue);
  color: #fff;
}

.timeline-item h2 {
  font-size: 24px;
  margin: 0 0 6px;
}

.timeline-item p {
  margin: 0;
  color: var(--muted);
}

.law-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 16px;
}

.law-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow);
}

.law-card h3 {
  margin: 0 0 8px;
}

.law-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.source-cards {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 16px;
}

.source-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow);
  transition: transform .16s ease,border-color .16s ease;
}

.source-card:hover {
  transform: translateY(-2px);
  border-color: #b8ccec;
}

.source-card span {
  display: block;
  color: var(--blue);
  font-size: 10px;
  font-weight: 830;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.source-card strong {
  display: block;
  margin: 10px 0 7px;
  font-size: 18px;
  line-height: 1.25;
}

.source-card p {
  color: var(--muted);
  font-size: 13px;
}

.source-card em {
  color: var(--blue);
  font-style: normal;
  font-size: 12px;
  font-weight: 760;
}

.donate-hero {
  padding: 78px 0;
  color: #fff;
  background: radial-gradient(circle at 80% 15%,rgba(45,231,223,.18),transparent 26%),radial-gradient(circle at 64% 86%,rgba(37,99,235,.22),transparent 30%),linear-gradient(145deg,#061e38,#0b3b70);
}

.donate-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 52px;
  align-items: center;
}

.donate-hero .eyebrow {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.18);
  color: #7dd3fc;
}

.donate-hero h1 {
  color: #fff;
}

.donate-hero h1 span {
  background: linear-gradient(100deg,#fff 5%,#7dd3fc 55%,#2de7df 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.donate-hero p {
  max-width: 680px;
  color: #c7d8e8;
  font-size: 17px;
}

.donate-fine {
  margin-top: 16px !important;
  font-size: 11px !important;
  color: #8fa9c0 !important;
}

.donate-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 420px;
}

.donate-heart {
  position: relative;
  display: grid;
  place-items: center;
  width: 250px;
  height: 250px;
  border-radius: 65px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: 0 30px 70px rgba(0,17,35,.35);
}

.donate-heart img {
  width: 190px;
}

.donate-heart span {
  position: absolute;
  right: -18px;
  bottom: 22px;
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border-radius: 22px;
  background: #fff;
  color: var(--blue);
  box-shadow: 0 18px 35px rgba(0,0,0,.25);
}

.donate-heart span svg {
  width: 34px;
  height: 34px;
}

.donate-card {
  position: absolute;
  left: 0;
  bottom: 5px;
  max-width: 270px;
  padding: 17px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 16px;
  background: rgba(6,30,56,.82);
  backdrop-filter: blur(10px);
}

.donate-card strong {
  display: block;
  color: #fff;
}

.donate-card p {
  margin: 5px 0 0;
  font-size: 12px;
  color: #afc4d7;
}

.donate-principles {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 35px;
  align-items: start;
}

.principle-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.principle {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
}

.principle>span {
  display: inline-flex;
  color: var(--blue);
  font-size: 10px;
  font-weight: 850;
}

.principle strong {
  display: block;
  margin: 8px 0 5px;
}

.principle p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.support-card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow);
}

.support-card-primary {
  background: linear-gradient(145deg,#fff,#f4f8ff);
  border-color: #cddcf5;
}

.support-icon {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 15px;
  background: var(--blue-soft);
  color: var(--blue);
  margin-bottom: 18px;
}

.support-icon svg {
  width: 25px;
  height: 25px;
}

.support-card h2 {
  font-size: 32px;
}

.support-card p {
  color: var(--muted);
}

@media (max-width:1080px) {
  .nav-links {
    gap: 0;
  }

  .nav-links a {
    padding-inline: 7px;
    font-size: 12px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy-wrap {
    max-width: 760px;
  }

  .brand-showcase {
    grid-template-columns: 1fr 1fr;
  }

  .palette {
    grid-column: 1/-1;
  }

  .donate-hero-grid {
    grid-template-columns: 1fr;
  }

  .donate-visual {
    min-height: 350px;
    max-width: 600px;
  }

  .donate-card {
    left: 7%;
  }
}

@media (max-width:900px) {
  .nav-links {
    display: none;
    position: absolute;
    left: 18px;
    right: 18px;
    top: 70px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #fff;
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: stretch;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 10px 12px;
    font-size: 13px;
  }

  .menu-toggle {
    display: grid;
    place-items: center;
  }

  .features,.ui-grid,.law-summary,.source-cards {
    grid-template-columns: repeat(2,1fr);
  }

  .split,.split-wide,.project-grid,.legal-layout,.donate-principles {
    grid-template-columns: 1fr;
  }

  .privacy-aside {
    position: static;
  }

  .doc-layout {
    grid-template-columns: 1fr;
  }

  .doc-nav {
    position: static;
    display: flex;
    overflow-x: auto;
    gap: 4px;
  }

  .doc-nav strong {
    display: none;
  }

  .doc-nav a {
    white-space: nowrap;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1/-1;
  }

  .donate-band-inner {
    grid-template-columns: auto 1fr;
  }

  .donate-band-inner>div:last-child {
    grid-column: 2;
  }

  .cta {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width:680px) {
  .container {
    width: min(calc(100% - 24px),var(--max));
  }

  .nav {
    min-height: 68px;
  }

  .brand img {
    width: 132px;
  }

  .nav-actions .button-primary {
    display: none;
  }

  .hero,.donate-hero {
    padding: 46px 0 38px;
  }

  .hero h1,.donate-hero h1 {
    font-size: 44px;
  }

  .hero-copy {
    font-size: 16px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .features,.ui-grid,.law-summary,.source-cards,.law-grid,.faq-grid,.principle-grid,.brand-showcase,.project-facts,.info-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 58px 0;
  }

  .section h2,.legal-card h2 {
    font-size: 34px;
  }

  .compat-inner {
    justify-content: flex-start;
    overflow-x: auto;
    white-space: nowrap;
  }

  .compat-inner i {
    flex: 0 0 4px;
  }

  .mini-stats {
    grid-template-columns: 1fr;
  }

  .table-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .cta {
    padding: 28px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .doc-content,.legal-card {
    padding: 21px;
  }

  .page-hero {
    padding: 44px 0 28px;
  }

  .page-hero h1 {
    font-size: 42px;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .timeline-date {
    justify-self: start;
  }

  .donate-band {
    padding: 40px 0;
  }

  .donate-band-inner {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .donate-band-inner>div:last-child {
    grid-column: auto;
  }

  .donate-symbol {
    width: 52px;
    height: 52px;
  }

  .donate-visual {
    min-height: 315px;
  }

  .donate-heart {
    width: 210px;
    height: 210px;
    border-radius: 52px;
  }

  .donate-heart img {
    width: 160px;
  }

  .donate-card {
    position: relative;
    left: auto;
    bottom: auto;
    margin-top: -24px;
    z-index: 2;
  }

  .palette {
    grid-column: auto;
  }

  .brand-logo-card.horizontal img {
    width: 240px;
  }
}

@media (prefers-reduced-motion:reduce) {
  html {
    scroll-behavior: auto;
  }

  .button,.source-card,.skip-link {
    transition: none;
  }
}

.hero-shot {
  position: relative;
  min-height: 540px;
  padding: 18px 18px 84px;
  border-radius: 28px;
  background: linear-gradient(145deg,var(--navy),#12386a);
  box-shadow: var(--shadow-lg);
}

.hero-shot-card {
  margin: 0;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,.12);
  background: #fff;
  box-shadow: 0 20px 50px rgba(6,30,56,.28);
}

.hero-shot-card img,
.screenshot-card img {
  width: 100%;
  height: auto;
}

.hero-shot-main {
  position: relative;
  z-index: 1;
}

.hero-shot-meta {
  position: absolute;
  left: 24px;
  bottom: 22px;
  z-index: 3;
  max-width: 280px;
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 16px;
  background: rgba(6,30,56,.86);
  backdrop-filter: blur(10px);
  color: #dce8f5;
}

.hero-shot-meta strong {
  display: block;
  color: #fff;
  font-size: 15px;
}

.hero-shot-meta span {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  line-height: 1.5;
}

.screenshot-card {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow);
}

.screenshot-card figcaption {
  padding: 18px 20px 20px;
}

.screenshot-card figcaption strong {
  display: block;
  font-size: 17px;
}

.screenshot-card figcaption span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
}

.screenshot-card-large {
  grid-row: span 2;
}

.screenshot-card-banner img {
  background: #061f3a;
}

.project-grid-media {
  align-items: start;
}

.project-shot-stack {
  display: grid;
  gap: 16px;
}

.project-shot-stack .compact figcaption {
  display: none;
}

@media (max-width:1080px) {
  .hero-shot {
    min-height: 0;
    max-width: 760px;
  }
}

@media (max-width:900px) {
  .screenshot-card-large {
    grid-row: auto;
  }
}

@media (max-width:680px) {
  .hero-shot {
    padding: 10px 10px 20px;
  }

  .hero-shot-meta {
    position: relative;
    left: auto;
    bottom: auto;
    max-width: none;
    margin-top: 12px;
  }
}

.hero-grid {
  align-items: center;
}

.hero-shot {
  min-height: 0;
  padding: 12px;
  border-radius: 24px;
  background: linear-gradient(145deg,var(--navy),#12386a);
  box-shadow: var(--shadow-lg);
}

.hero-shot-main {
  position: static;
  border-radius: 16px;
  box-shadow: none;
}

.hero-shot-main img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1448/1086;
  object-fit: cover;
}

.hero-shot-meta {
  position: static;
  max-width: none;
  margin-top: 10px;
  padding: 10px 12px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 12px;
  background: rgba(255,255,255,.06);
  backdrop-filter: none;
}

.hero-shot-meta strong {
  font-size: 13px;
}

.hero-shot-meta span {
  font-size: 11px;
  color: #b9cce0;
}

.nav-actions {
  margin-left: auto;
}

@media (max-width:1080px) {
  .hero-shot {
    max-width: none;
  }
}

@media (max-width:680px) {
  .hero-shot {
    padding: 7px;
    border-radius: 18px;
  }

  .hero-shot-main {
    border-radius: 12px;
  }

  .hero-shot-meta {
    margin-top: 7px;
    padding: 9px 10px;
  }
}

.intent-section {
  padding: 34px 0 20px;
}

.intent-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.intent-card {
  display: block;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow);
  transition: transform .16s ease, border-color .16s ease, box-shadow .16s ease;
}

.intent-card:hover {
  transform: translateY(-2px);
  border-color: #b9cbed;
  box-shadow: 0 18px 46px rgba(15, 31, 53, .11);
}

.intent-card > span {
  display: block;
  color: var(--blue);
  font-size: 10px;
  font-weight: 830;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.intent-card h2 {
  margin: 10px 0 7px;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: -.02em;
}

.intent-card p {
  margin: 0;
  min-height: 66px;
  color: var(--muted);
  font-size: 13px;
}

.intent-card b {
  display: inline-block;
  margin-top: 16px;
  color: var(--blue);
  font-size: 12px;
}

.seo-hero {
  padding-bottom: 46px;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 12px;
}

.breadcrumbs a:hover {
  color: var(--blue);
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 36px;
  align-items: start;
}

.content-main {
  min-width: 0;
}

.content-main > h2,
.content-narrow > h2 {
  margin: 50px 0 12px;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.13;
  letter-spacing: -.03em;
}

.content-main > h2:first-of-type {
  margin-top: 8px;
}

.content-main p,
.content-narrow p {
  color: #4f6278;
  font-size: 16px;
}

.content-aside {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 14px;
}

.aside-card {
  padding: 21px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: #fff;
  box-shadow: var(--shadow);
}

.aside-card h3 {
  margin: 7px 0 10px;
  font-size: 18px;
}

.aside-card p {
  color: var(--muted);
  font-size: 13px;
}

.aside-card > a:not(.text-link) {
  display: block;
  margin-top: 10px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 720;
}

.fact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 24px 0 8px;
}

.fact-grid div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
}

.fact-grid span {
  display: block;
  color: var(--muted);
  font-size: 10px;
  font-weight: 760;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.fact-grid strong {
  display: block;
  margin-top: 5px;
  color: var(--ink);
  font-size: 20px;
}

.compare-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 22px 0;
}

.compare-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(145deg, #fff, #f8fbff);
}

.compare-label {
  color: var(--blue);
  font-size: 10px;
  font-weight: 820;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.compare-card h3 {
  margin: 8px 0 5px;
  font-size: 18px;
}

.compare-card p {
  margin: 0;
  font-size: 13px;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 20px 0;
}

.field-grid span {
  position: relative;
  padding: 12px 14px 12px 34px;
  border: 1px solid var(--line-soft);
  border-radius: 11px;
  background: #fff;
  color: #41566e;
  font-size: 13px;
}

.field-grid span::before {
  content: "✓";
  position: absolute;
  left: 12px;
  top: 11px;
  color: var(--ok);
  font-weight: 850;
}

.inline-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 34px 0;
  padding: 20px 22px;
  border: 1px solid #cbdcf6;
  border-radius: 17px;
  background: linear-gradient(145deg, #fff, #f4f8ff);
}

.inline-cta strong,
.inline-cta span {
  display: block;
}

.inline-cta span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 13px;
}

.faq-stack {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.faq-stack details {
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: #fff;
}

.faq-stack summary {
  cursor: pointer;
  padding: 16px 0;
  color: var(--ink);
  font-weight: 760;
}

.faq-stack p {
  margin: -2px 0 17px;
  font-size: 14px;
}

.seo-split {
  align-items: start;
}

.product-shot {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--shadow);
}

.product-shot img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: top left;
}

.product-shot figcaption {
  padding: 12px 15px;
  color: var(--muted);
  font-size: 11px;
}

.logo-text-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.logo-text-grid div,
.feature-row > div {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: #fff;
}

.logo-text-grid strong,
.logo-text-grid span,
.feature-row strong,
.feature-row span {
  display: block;
}

.logo-text-grid span,
.feature-row span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
}

.content-narrow {
  max-width: 900px;
  margin-inline: auto;
}

.feature-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 24px 0;
}

.feature-row svg {
  width: 23px;
  height: 23px;
  margin-bottom: 12px;
  color: var(--blue);
}

main > .section:not(.intent-section),
.site-footer {
  content-visibility: auto;
  contain-intrinsic-size: 1px 700px;
}

@media (max-width: 980px) {
  .intent-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .content-grid {
    grid-template-columns: 1fr;
  }

  .content-aside {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .fact-grid,
  .compare-grid,
  .field-grid,
  .logo-text-grid,
  .feature-row,
  .content-aside {
    grid-template-columns: 1fr;
  }

  .inline-cta {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .intent-grid {
    grid-template-columns: 1fr;
  }

  .intent-card p {
    min-height: 0;
  }
}

/* Download and newsletter flow */
.header-download{white-space:nowrap}
.nav-mobile-download{display:none!important}
.download-hero{padding-bottom:42px}
.download-hero-grid{display:grid;grid-template-columns:1fr .9fr;gap:38px;align-items:center}
.download-hero-image{width:100%;border:1px solid var(--line);border-radius:20px;box-shadow:var(--shadow);background:#061f3a}
.download-layout{display:grid;grid-template-columns:minmax(0,1fr) 340px;gap:24px;align-items:start}
.download-card{padding:32px;border:1px solid var(--line);border-radius:22px;background:#fff;box-shadow:var(--shadow)}
.download-card h2{margin:8px 0 12px;font-size:clamp(30px,4vw,44px);line-height:1.08;letter-spacing:-.035em}
.newsletter-form{display:grid;gap:18px;margin-top:26px}
.form-field{display:grid;gap:7px}
.form-field>span{font-size:13px;font-weight:760;color:var(--ink)}
.form-field input[type=email],.form-field input[type=text]{width:100%;min-height:50px;padding:11px 14px;border:1px solid #cfd9e7;border-radius:11px;background:#fff;color:var(--ink);font-size:16px;box-shadow:inset 0 1px 2px rgba(15,31,53,.03)}
.form-field input:focus{border-color:var(--blue);outline:0;box-shadow:0 0 0 3px rgba(37,99,235,.12)}
.consent-check{display:grid;grid-template-columns:20px 1fr;gap:10px;align-items:start;padding:15px;border:1px solid var(--line);border-radius:13px;background:#f9fbfd;color:#4d6075;font-size:13px;line-height:1.55}
.consent-check input{width:18px;height:18px;margin:2px 0 0;accent-color:var(--blue)}
.form-submit{justify-self:start}
.form-note{margin:0;color:var(--muted);font-size:12px;line-height:1.55}
.form-note a{color:var(--blue);font-weight:700}
.form-alert{margin:18px 0 0;padding:13px 15px;border-radius:11px;font-size:13px;font-weight:650}
.form-alert-error{border:1px solid #f0c9c5;background:#fff4f2;color:#9f2d24}
.form-alert-success{border:1px solid #bfe3d4;background:var(--ok-soft);color:var(--ok)}
.form-honeypot{position:absolute!important;width:1px!important;height:1px!important;overflow:hidden!important;clip:rect(0 0 0 0)!important;white-space:nowrap!important}
.download-success-box{display:flex;align-items:center;justify-content:space-between;gap:18px;margin-top:24px;padding:20px;border:1px solid #cfe0fb;border-radius:16px;background:#f7faff}
.download-success-box span{display:block;color:var(--muted);font-size:11px;text-transform:uppercase;letter-spacing:.05em;font-weight:760}
.download-success-box strong{display:block;margin-top:4px;font-size:23px;color:var(--ink)}
.download-aside{position:sticky;top:96px}
.narrow-container{max-width:760px}

@media(max-width:900px){
  .download-hero-grid,.download-layout{grid-template-columns:1fr}
  .download-aside{position:static}
  .nav-mobile-download{display:block!important}
}
@media(max-width:680px){
  .header-download{display:none}
  .download-card{padding:22px}
  .download-success-box{align-items:flex-start;flex-direction:column}
  .download-success-box .button{width:100%}
  .form-submit{width:100%}
}

/* Keep the product header stable before the mobile breakpoint. */
@media(max-width:1120px){
  .nav-links{display:none;position:absolute;left:18px;right:18px;top:70px;padding:12px;border:1px solid var(--line);border-radius:14px;background:#fff;box-shadow:var(--shadow);flex-direction:column;align-items:stretch}
  .nav-links.open{display:flex}
  .nav-links a{padding:10px 12px;font-size:13px}
  .menu-toggle{display:grid;place-items:center}
  .nav-mobile-download{display:block!important;color:var(--blue)!important;font-weight:800!important}
}
