:root {
  /* Finnish flag — crisp white, strong Finnish blue */
  --bg: #ffffff;          /* pure snow white */
  --bg-alt: #eef3f7;      /* pale sky wash */
  --ink: #0a1a2e;         /* deep navy ink */
  --ink-soft: #16324f;    /* body navy */
  --muted: #5a6e82;       /* cool grey */
  --line: #c9d4de;        /* chilled hairline */
  --accent: #003580;      /* Finnish flag blue */
  --accent-soft: #d6e2ee; /* iced sky */
  --deep: #002157;        /* midnight blue */
  --cream: #ffffff;       /* pure white */
}

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

html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Inter Tight', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Optional paper grain */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  z-index: 1000;
}

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

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 2px;
}

/* Skip link for a11y */
.skip-link {
  position: absolute;
  top: -48px;
  left: 16px;
  background: var(--ink);
  color: var(--cream);
  padding: 10px 16px;
  border-radius: 4px;
  font-size: 14px;
  z-index: 2000;
  transition: top 0.15s;
}
.skip-link:focus { top: 12px; }

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ---------------- Navigation ---------------- */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 32px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, padding 0.25s ease;
}
.site-nav.scrolled {
  border-bottom-color: var(--line);
  padding-top: 14px;
  padding-bottom: 14px;
}

.nav-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Source Sans 3', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.015em;
  color: var(--ink);
}

.logo svg {
  width: 22px;
  height: 28px;
  color: var(--deep);
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
}

.nav-links a { color: var(--ink-soft); transition: color 0.2s; }
.nav-links a:hover { color: var(--accent); }

.nav-right {
  display: flex;
  gap: 24px;
  align-items: center;
}

/* Language switcher */
.lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 0;
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--muted);
}
.lang-switcher button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px 7px;
  font: inherit;
  color: var(--muted);
  text-transform: uppercase;
  transition: color 0.15s;
}
.lang-switcher button:hover { color: var(--ink); }
.lang-switcher button[aria-current="true"] { color: var(--accent); }
.lang-switcher .sep {
  color: var(--line);
  user-select: none;
  pointer-events: none;
}

.nav-cta {
  padding: 9px 18px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  transition: background 0.2s, color 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.nav-cta:hover { background: var(--ink); color: var(--cream); }

.mobile-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  cursor: pointer;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  color: var(--ink);
}

/* ---------------- Buttons ---------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  font-family: inherit;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
.btn-primary { background: var(--deep); color: var(--cream); }
.btn-primary:hover { background: var(--ink); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--ink); }
.btn .arrow { transition: transform 0.15s; }
.btn:hover .arrow { transform: translateX(3px); }

/* ---------------- Hero ---------------- */
.hero {
  padding: 180px 0 120px;
  position: relative;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 80px;
  align-items: center;
}

.eyebrow {
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 32px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: currentColor;
}

.hero h1 {
  font-family: 'Source Sans 3', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 600;
  letter-spacing: -0.02em;
  font-size: clamp(44px, 6.2vw, 84px);
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin-bottom: 36px;
  color: var(--ink);
  text-wrap: balance;
  font-variation-settings: "opsz" 144;
}
.hero h1 em {
  font-style: italic;
  font-weight: 300;
  color: var(--accent);
}

.hero-lede {
  font-size: 19px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 480px;
  margin-bottom: 40px;
  text-wrap: pretty;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}

/* Hero illustration — stacked quiet cards */
.hero-visual {
  position: relative;
  aspect-ratio: 1 / 1.05;
  max-width: 520px;
  margin-left: auto;
  width: 100%;
}

.visual-card {
  position: absolute;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 3px;
}

.card-lang {
  top: 4%;
  left: 0;
  width: 64%;
  aspect-ratio: 1 / 1.2;
  padding: 28px;
  z-index: 2;
  transform: rotate(-2deg);
}
.card-lang-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.card-lang-label::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
}
.card-lang-text {
  font-family: 'Source Sans 3', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 24px;
  line-height: 1.25;
  color: var(--ink);
  margin-bottom: 18px;
  letter-spacing: -0.01em;
}
.card-lang-text em { font-style: italic; color: var(--accent); }
.card-lang-trans {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
  padding-top: 16px;
  border-top: 1px dashed var(--line);
  font-style: italic;
}

.card-stat {
  bottom: 2%;
  right: 0;
  width: 56%;
  aspect-ratio: 1 / 0.95;
  padding: 24px;
  z-index: 3;
  transform: rotate(3deg);
  background: var(--deep);
  color: var(--cream);
  border-color: var(--deep);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.card-stat-mark {
  color: #e8a87c;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.card-stat-num {
  font-family: 'Source Sans 3', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 600;
  letter-spacing: -0.03em;
  font-size: 76px;
  line-height: 0.9;
  letter-spacing: -0.03em;
  margin-bottom: 4px;
  font-weight: 300;
}
.card-stat-label {
  font-size: 12.5px;
  color: rgba(250, 247, 241, 0.72);
  line-height: 1.45;
}

.visual-dots {
  position: absolute;
  top: 45%;
  right: 6%;
  width: 72px;
  height: 72px;
  background-image: radial-gradient(var(--accent) 1.4px, transparent 1.4px);
  background-size: 10px 10px;
  opacity: 0.55;
  z-index: 0;
}

/* ---------------- Marquee ---------------- */
.marquee {
  padding: 28px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-alt);
  overflow: hidden;
  position: relative;
}
.marquee::before, .marquee::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.marquee::before { left: 0; background: linear-gradient(to right, var(--bg-alt), rgba(238,243,247,0)); }
.marquee::after  { right: 0; background: linear-gradient(to left, var(--bg-alt), rgba(238,243,247,0)); }

.marquee-track {
  display: flex;
  gap: 56px;
  white-space: nowrap;
  animation: scroll 50s linear infinite;
  font-family: 'Source Sans 3', -apple-system, BlinkMacSystemFont, sans-serif;
  font-style: italic;
  font-size: 22px;
  color: var(--ink-soft);
  font-weight: 400;
  align-items: center;
}
.marquee-track span {
  display: inline-flex;
  align-items: center;
  gap: 56px;
}
.marquee-track span::after {
  content: '✦';
  color: var(--accent);
  font-style: normal;
  font-size: 14px;
}
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}

/* ---------------- Sections ---------------- */
section { padding: 120px 0; }

.section-header {
  max-width: 760px;
  margin-bottom: 72px;
}
.section-header h2 {
  font-family: 'Source Sans 3', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 600;
  letter-spacing: -0.02em;
  font-size: clamp(36px, 4.5vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 24px;
  color: var(--ink);
  text-wrap: balance;
}
.section-header h2 em { font-style: italic; color: var(--accent); }
.section-header p {
  font-size: 18px;
  color: var(--ink-soft);
  line-height: 1.6;
  max-width: 620px;
  text-wrap: pretty;
}

/* Mission */
.mission { background: var(--cream); }
.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.mission-text p {
  font-size: 19px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin-bottom: 22px;
}
.mission-text p:first-of-type::first-letter {
  font-family: 'Source Sans 3', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 74px;
  float: left;
  line-height: 0.85;
  padding: 8px 14px 0 0;
  color: var(--accent);
  font-weight: 400;
}
.mission-stats { padding-top: 32px; }
.stat-row {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 24px;
  padding: 26px 0;
  border-top: 1px solid var(--line);
  align-items: baseline;
}
.stat-row:last-child { border-bottom: 1px solid var(--line); }
.stat-num {
  font-family: 'Source Sans 3', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 600;
  letter-spacing: -0.03em;
  font-size: 52px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--ink);
  font-weight: 400;
}
.stat-num em { font-style: italic; color: var(--accent); }
.stat-desc {
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
}
.stat-desc strong { color: var(--ink); font-weight: 500; }

/* Product / features */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 3px;
  overflow: hidden;
  background: var(--line);
  gap: 1px;
}
.feature {
  background: var(--bg);
  padding: 44px 36px 40px;
  position: relative;
  transition: background 0.25s;
}
.feature:hover { background: var(--cream); }
.feature-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  border: 1px solid var(--accent);
  border-radius: 2px;
  background: var(--accent-soft);
}
.feature h3 {
  font-family: 'Source Sans 3', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 500;
  font-size: 22px;
  line-height: 1.25;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.feature p {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.6;
}
.feature-num {
  position: absolute;
  top: 22px;
  right: 26px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.1em;
}

/* How (dark forest) */
.how {
  background: var(--deep);
  color: var(--cream);
}
.how .section-header h2 { color: var(--cream); }
.how .section-header h2 em { color: #e8a87c; }
.how .section-header p { color: rgba(250, 247, 241, 0.7); }
.how .eyebrow { color: #e8a87c; }

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
  position: relative;
}
.steps::before {
  content: '';
  position: absolute;
  top: 18px;
  left: 12px;
  right: 12px;
  height: 1px;
  background-image: linear-gradient(to right, rgba(250, 247, 241, 0.3) 50%, transparent 50%);
  background-size: 8px 1px;
}
.step { position: relative; padding-top: 50px; }
.step::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 0;
  width: 14px;
  height: 14px;
  background: var(--deep);
  border: 1px solid rgba(250, 247, 241, 0.5);
  border-radius: 50%;
}
.step-num {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.15em;
  color: #e8a87c;
  margin-bottom: 14px;
  text-transform: uppercase;
}
.step h4 {
  font-family: 'Source Sans 3', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.22;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.step p {
  font-size: 14px;
  color: rgba(250, 247, 241, 0.68);
  line-height: 1.55;
}

/* Partners */
.partners { text-align: center; background: var(--bg); }
.partners-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 40px;
}
.partners-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  gap: 0;
  padding: 40px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.partner {
  text-align: center;
  padding: 20px 12px;
  border-right: 1px solid var(--line);
}
.partner:last-child { border-right: none; }
.partner-name {
  font-family: 'Source Sans 3', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 20px;
  color: var(--ink);
  margin-bottom: 6px;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.partner-role {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.03em;
  font-family: 'IBM Plex Mono', monospace;
  text-transform: uppercase;
}

/* About */
.about { background: var(--cream); }
.about-content {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 80px;
  align-items: start;
}
.about-sidebar { padding-top: 4px; }
.about-sidebar .eyebrow { margin-bottom: 20px; }
.about-sidebar h2 {
  font-family: 'Source Sans 3', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 600;
  letter-spacing: -0.02em;
  font-size: clamp(34px, 3.6vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 24px;
  text-wrap: balance;
}
.about-sidebar h2 em { font-style: italic; color: var(--accent); }
.about-sidebar p {
  color: var(--ink-soft);
  margin-bottom: 16px;
  font-size: 17px;
  line-height: 1.6;
}

.about-details {
  background: var(--bg);
  padding: 8px 36px;
  border: 1px solid var(--line);
  border-radius: 3px;
}
.detail-row {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}
.detail-row:last-child { border-bottom: none; }
.detail-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.detail-value {
  font-size: 15px;
  color: var(--ink);
  line-height: 1.5;
}
.detail-value a { color: var(--accent); border-bottom: 1px solid currentColor; }

/* Contact CTA */
.contact-cta {
  background: var(--bg-alt);
  text-align: center;
  padding: 140px 32px;
  position: relative;
}
.contact-cta::before {
  content: '✦';
  position: absolute;
  top: 48px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--accent);
  font-size: 18px;
}
.contact-cta h2 {
  font-family: 'Source Sans 3', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 600;
  letter-spacing: -0.02em;
  font-size: clamp(36px, 4.8vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  max-width: 860px;
  margin: 0 auto 28px;
  color: var(--ink);
  text-wrap: balance;
}
.contact-cta h2 em { font-style: italic; color: var(--accent); }
.contact-cta p {
  font-size: 18px;
  color: var(--ink-soft);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.6;
}
.contact-cta .hero-ctas { justify-content: center; }

/* Footer */
footer {
  background: var(--deep);
  color: var(--cream);
  padding: 80px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 56px;
  margin-bottom: 56px;
}
.footer-brand .logo { color: var(--cream); margin-bottom: 20px; }
.footer-brand .logo svg { color: var(--cream); }
.footer-tagline {
  font-family: 'Source Sans 3', -apple-system, BlinkMacSystemFont, sans-serif;
  font-style: italic;
  font-size: 17px;
  color: rgba(250, 247, 241, 0.62);
  max-width: 320px;
  line-height: 1.5;
  font-weight: 300;
}
.footer-col h5 {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(250, 247, 241, 0.5);
  margin-bottom: 20px;
  font-weight: 400;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  font-size: 14px;
  color: rgba(250, 247, 241, 0.85);
  transition: color 0.15s;
}
.footer-col a:hover { color: #e8a87c; }
.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(250, 247, 241, 0.12);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 13px;
  color: rgba(250, 247, 241, 0.55);
}
.footer-bottom a { color: inherit; border-bottom: 1px solid transparent; transition: border-color 0.15s, color 0.15s; }
.footer-bottom a:hover { color: #e8a87c; border-bottom-color: currentColor; }

/* ---------------- Legal pages ---------------- */
.legal {
  padding: 160px 0 120px;
  background: var(--bg);
}
.legal-wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 32px;
}
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 40px;
  font-family: 'IBM Plex Mono', monospace;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.15s;
}
.back-link:hover { color: var(--accent); }

.legal h1 {
  font-family: 'Source Sans 3', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 600;
  letter-spacing: -0.02em;
  font-size: clamp(38px, 5vw, 60px);
  letter-spacing: -0.03em;
  margin-bottom: 14px;
  line-height: 1.02;
  text-wrap: balance;
}
.legal .updated {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.1em;
  margin-bottom: 56px;
  text-transform: uppercase;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.legal h2 {
  font-family: 'Source Sans 3', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 26px;
  font-weight: 500;
  letter-spacing: -0.015em;
  margin: 52px 0 16px;
  color: var(--ink);
}
.legal h3 {
  font-family: 'Source Sans 3', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 19px;
  font-weight: 500;
  margin: 28px 0 10px;
  color: var(--ink);
}
.legal p, .legal li {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 14px;
}
.legal ul, .legal ol {
  padding-left: 22px;
  margin-bottom: 20px;
}
.legal li { margin-bottom: 8px; }
.legal a { color: var(--accent); border-bottom: 1px solid currentColor; }
.legal strong { color: var(--ink); font-weight: 600; }

.legal-callout {
  background: var(--cream);
  border-left: 2px solid var(--accent);
  padding: 24px 28px;
  margin: 32px 0;
  border-radius: 0 3px 3px 0;
}
.legal-callout h3 { margin-top: 0; }
.legal-callout p:last-child { margin-bottom: 0; }

.legal-contacts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 3px;
  margin: 32px 0;
}
.legal-contact {
  padding: 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.legal-contact:nth-child(2n) { border-right: none; }
.legal-contact:nth-last-child(-n+2) { border-bottom: none; }
.legal-contact-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.legal-contact p { margin-bottom: 6px; font-size: 15px; }
.legal-contact a { font-family: 'Source Sans 3', -apple-system, BlinkMacSystemFont, sans-serif; font-size: 18px; border-bottom: none; }

/* ---------------- Scroll reveal ---------------- */
.scroll-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.scroll-reveal.in-view { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .scroll-reveal { opacity: 1; transform: none; }
}

/* ---------------- Responsive ---------------- */
@media (max-width: 960px) {
  .nav-links { display: none; }
  .nav-right .lang-switcher { display: none; }
  .mobile-toggle { display: inline-flex; }
  .site-nav.menu-open .nav-links {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    flex-direction: column;
    background: var(--bg);
    padding: 20px 32px 24px;
    gap: 16px;
    border-bottom: 1px solid var(--line);
    align-items: flex-start;
  }
  .site-nav.menu-open .nav-right .lang-switcher {
    display: inline-flex;
    position: absolute;
    top: calc(100% + 160px);
    left: 32px;
  }
  .hero-grid, .mission-grid, .about-content {
    grid-template-columns: 1fr;
    gap: 56px;
  }
  .hero { padding: 130px 0 60px; }
  section { padding: 80px 0; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; gap: 32px; }
  .steps::before { display: none; }
  .partners-grid { grid-template-columns: 1fr 1fr; }
  .partner:nth-child(2n) { border-right: none; }
  .partner:not(:nth-last-child(-n+2)) { border-bottom: 1px solid var(--line); }
  .partner:last-child:nth-child(2n+1) { grid-column: 1 / -1; border-right: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .hero-visual { max-width: 440px; margin: 0 auto; }
  .section-header { margin-bottom: 48px; }
  .stat-row { grid-template-columns: 110px 1fr; }
  .stat-num { font-size: 40px; }
  .detail-row { grid-template-columns: 130px 1fr; }
}

@media (max-width: 600px) {
  .container { padding: 0 20px; }
  .site-nav { padding: 14px 20px; }
  .features-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .partners-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .contact-cta { padding: 80px 20px; }
  .detail-row { grid-template-columns: 1fr; gap: 4px; }
  .detail-label { font-size: 10px; }
  .legal-contacts { grid-template-columns: 1fr; }
  .legal-contact { border-right: none; border-bottom: 1px solid var(--line); }
  .legal-contact:last-child { border-bottom: none; }
  .hero h1 { font-size: clamp(38px, 10vw, 56px); }
  .legal-wrap { padding: 0 20px; }
  .hero-visual { max-width: 360px; }
}
