/* ==========================================================================
   TSN BALTIC — landing page styles
   ========================================================================== */

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-display: swap;
  font-weight: 200 800;
  src: url("../fonts/manrope-latin-wght-normal.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-display: swap;
  font-weight: 200 800;
  src: url("../fonts/manrope-latin-ext-wght-normal.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-display: swap;
  font-weight: 200 800;
  src: url("../fonts/manrope-cyrillic-wght-normal.woff2") format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

:root {
  --navy: #101B36;
  --navy-2: #18244a;
  --white: #F7F6F2;
  --red: #E33B32;
  --red-dark: #c92f27;
  --graphite: #26282D;
  --grey: #E9E9E7;
  --muted: #5d6068;
  --on-navy-muted: rgba(247, 246, 242, .68);
  --line-on-navy: rgba(247, 246, 242, .14);

  --font: "Manrope", Inter, Arial, sans-serif;
  --container: 1200px;
  --gutter: clamp(20px, 4vw, 40px);
  --section-y: clamp(80px, 11vw, 144px);
  --radius: 4px;
  --header-h: 76px;
  --ease: cubic-bezier(.2, .7, .2, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--font);
  font-size: clamp(17px, 1.1vw + 10px, 19px);
  line-height: 1.6;
  color: var(--graphite);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
h1, h2, h3 { margin: 0; font-weight: 700; letter-spacing: -.025em; line-height: 1.08; color: var(--navy); }
h1 { font-size: clamp(44px, 6vw, 72px); font-weight: 800; letter-spacing: -.035em; }
h2 { font-size: clamp(32px, 4vw, 52px); max-width: 22ch; }
h3 { font-size: 20px; letter-spacing: -.01em; line-height: 1.25; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }

.container { width: 100%; max-width: calc(var(--container) + 2 * var(--gutter)); margin: 0 auto; padding: 0 var(--gutter); }

.skip-link { position: absolute; left: -9999px; top: 8px; background: var(--navy); color: var(--white); padding: 8px 14px; z-index: 100; }
.skip-link:focus { left: 8px; }

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

/* ---------- Typography helpers ---------- */
.eyebrow {
  font-size: 13px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--navy); margin-bottom: 24px;
  display: inline-flex; align-items: center; gap: 12px;
}
.eyebrow::before { content: ""; width: 28px; height: 2px; background: var(--red); }
.eyebrow-light { color: var(--white); }
.accent-line { color: var(--red); }
.lead { font-size: clamp(18px, 1.3vw + 10px, 21px); color: var(--graphite); max-width: 34em; margin-top: 28px; }
.section-intro { font-size: clamp(18px, 1vw + 12px, 20px); max-width: 36em; margin-top: 24px; color: var(--muted); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font: inherit; font-size: 16px; font-weight: 700; letter-spacing: .005em;
  padding: 16px 26px; border-radius: var(--radius); border: 1.5px solid transparent;
  text-decoration: none; cursor: pointer; white-space: nowrap;
  transition: background-color .2s, color .2s, border-color .2s, transform .2s var(--ease);
}
.btn-primary { background: var(--red); color: #fff; }
.btn-primary:hover { background: var(--red-dark); }
.btn-ghost { border-color: var(--navy); color: var(--navy); }
.btn-ghost:hover { background: var(--navy); color: var(--white); }
.btn-sm { padding: 11px 18px; font-size: 14px; }
.btn-lg { padding: 18px 32px; }
.btn:active { transform: translateY(1px); }

/* ---------- Logo ---------- */
.logo { display: inline-flex; align-items: center; text-decoration: none; line-height: 0; }
.logo img { display: block; height: 48px; width: auto; }
.site-footer .logo img { height: 72px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(247, 246, 242, .88);
  -webkit-backdrop-filter: saturate(1.4) blur(12px); backdrop-filter: saturate(1.4) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s;
}
.site-header.scrolled { border-bottom-color: var(--grey); }
.header-inner { height: var(--header-h); display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.main-nav { display: flex; gap: clamp(18px, 2.2vw, 34px); }
.main-nav a { text-decoration: none; font-size: 15px; font-weight: 600; color: var(--graphite); position: relative; padding: 6px 0; }
.main-nav a:not(.btn)::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 2px; background: var(--red);
  transform: scaleX(0); transform-origin: left; transition: transform .25s var(--ease);
}
.main-nav a:not(.btn):hover::after, .main-nav a.active::after { transform: scaleX(1); }
.nav-cta-mobile { display: none; }
.header-actions { display: flex; align-items: center; gap: 20px; }
.lang { font-size: 13px; font-weight: 700; letter-spacing: .08em; display: flex; gap: 8px; color: var(--muted); }
.lang-current { color: var(--navy); }
.lang a { text-decoration: none; }
.lang a:hover { color: var(--navy); }
.nav-toggle { display: none; }

/* ---------- Sections ---------- */
.section { padding: var(--section-y) 0; }
.navy { background: var(--navy); color: var(--white); }
.navy h2, .navy h3 { color: var(--white); }
.navy .section-intro { color: var(--on-navy-muted); }
.grey { background: var(--grey); }

/* ---------- Hero ---------- */
.hero { padding: clamp(48px, 7vw, 96px) 0 clamp(72px, 9vw, 120px); overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(40px, 6vw, 96px); align-items: center; }
.role-strip { display: flex; flex-wrap: wrap; gap: 6px 0; margin-top: 32px; font-size: 14px; font-weight: 600; color: var(--navy); }
.role-strip li:not(:last-child)::after { content: "·"; margin: 0 10px; color: var(--red); }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 40px; }

.hero-visual { margin: 0; position: relative; }
.hero-photo { position: relative; aspect-ratio: 4 / 5; overflow: hidden; border-radius: var(--radius); background: var(--grey); }
.hero-visual::before {
  content: ""; position: absolute; top: 28px; right: -28px; bottom: -28px; left: 28px;
  background: var(--navy); border-radius: var(--radius); z-index: -1;
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 30%; }
.hero-card {
  position: absolute; left: -32px; bottom: 36px;
  background: var(--white); padding: 18px 22px; border-radius: var(--radius);
  box-shadow: 0 18px 40px -18px rgba(16, 27, 54, .35);
  display: flex; flex-direction: column; gap: 2px; min-width: 210px;
}
.hero-card-kicker { font-size: 11px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--red); }
.hero-card-big { font-size: 30px; font-weight: 800; color: var(--navy); letter-spacing: -.02em; line-height: 1.15; }
.hero-card-small { font-size: 13px; color: var(--muted); }

/* ---------- Business first ---------- */
.goal-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  margin-top: 64px; background: var(--line-on-navy); border: 1px solid var(--line-on-navy);
}
.goal-grid li {
  background: var(--navy); padding: 28px 24px; font-size: 18px; font-weight: 600;
  transition: background-color .25s;
}
.goal-grid li:hover { background: var(--navy-2); }

.formula {
  display: flex; align-items: center; flex-wrap: wrap; gap: 14px 0;
  margin-top: 56px; font-size: clamp(14px, 1.2vw, 16px); font-weight: 800; letter-spacing: .16em; text-transform: uppercase;
}
.formula li { display: flex; align-items: center; color: rgba(247, 246, 242, .28); transition: color .5s var(--ease); }
.formula li:not(:last-child)::after {
  content: ""; display: inline-block; width: clamp(28px, 5vw, 72px); height: 2px; margin: 0 18px;
  background: currentColor; transform-origin: left;
}
.formula li.on { color: var(--white); }
.formula li:last-child.on { color: var(--red); }

/* ---------- Pillars (roles) ---------- */
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 64px; }
.pillar {
  border-top: 3px solid var(--navy); padding: 32px 4px 8px;
  display: flex; flex-direction: column;
}
.pillar-num { font-size: 13px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; color: var(--red); margin-bottom: 14px; }
.pillar h3 { font-size: 26px; margin-bottom: 24px; }
.tick-list li { padding: 10px 0; border-bottom: 1px solid var(--grey); font-weight: 500; font-size: 17px; }
.pillar-note { margin-top: 24px; color: var(--muted); font-size: 16px; }

/* ---------- Assessment ---------- */
.assess-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 64px; }
.assess-card {
  background: var(--white); padding: 28px 24px 30px; border-radius: var(--radius);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  position: relative;
}
.assess-card::before { content: ""; position: absolute; left: 24px; top: 0; width: 24px; height: 3px; background: var(--red); }
.assess-card:hover { transform: translateY(-4px); box-shadow: 0 16px 32px -20px rgba(16, 27, 54, .4); }
.assess-card h3 { font-size: 15px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 10px; }
.assess-card p { font-size: 16px; color: var(--muted); }
.assess-question { margin-top: 56px; font-size: clamp(24px, 2.4vw, 32px); font-weight: 700; color: var(--navy); letter-spacing: -.02em; line-height: 1.25; }
.assess-question em { font-style: normal; color: var(--red); }

.extra-assess { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 56px; }
.extra-block { background: var(--navy); color: var(--white); padding: 36px; border-radius: var(--radius); }
.extra-block h3 { color: var(--white); font-size: 22px; }
.extra-sub { color: var(--on-navy-muted); font-size: 16px; margin-top: 8px; }
.tag-list { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.tag-list li { font-size: 14px; font-weight: 600; padding: 7px 13px; border: 1px solid var(--line-on-navy); border-radius: 100px; }

/* ---------- Timeline ---------- */
.timeline { margin-top: 64px; display: grid; grid-template-columns: repeat(7, 1fr); gap: 0; position: relative; }
.timeline::before { content: ""; position: absolute; top: 22px; left: 0; right: 0; height: 2px; background: var(--grey); }
.timeline li { position: relative; padding-right: 20px; }
.t-num {
  position: relative; z-index: 1;
  display: inline-grid; place-items: center; width: 46px; height: 46px; border-radius: 50%;
  background: var(--white); border: 2px solid var(--navy); color: var(--navy);
  font-size: 14px; font-weight: 800; margin-bottom: 22px;
  transition: background-color .3s, color .3s;
}
.timeline li:hover .t-num { background: var(--navy); color: var(--white); }
.timeline h3 { font-size: 17px; margin-bottom: 8px; }
.timeline p { font-size: 15px; color: var(--muted); line-height: 1.55; }
.big-statement { margin-top: 80px; font-size: clamp(32px, 4vw, 52px); font-weight: 800; letter-spacing: -.03em; color: var(--navy); line-height: 1.1; }

/* ---------- Founder ---------- */
.founder-grid { display: grid; grid-template-columns: 5fr 7fr; gap: clamp(40px, 6vw, 96px); align-items: center; }
.founder-photo { aspect-ratio: 4 / 5; overflow: hidden; border-radius: var(--radius); max-width: 460px; }
.founder-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 15%; }
.founder-name { margin-top: 28px; font-size: 20px; font-weight: 700; }
.founder-name span { display: block; font-size: 15px; font-weight: 500; color: var(--on-navy-muted); margin-top: 4px; }
.founder-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin: 32px 0; padding: 28px 0; border-top: 1px solid var(--line-on-navy); border-bottom: 1px solid var(--line-on-navy); }
.founder-stats strong { display: block; font-size: clamp(32px, 3.2vw, 44px); font-weight: 800; letter-spacing: -.03em; line-height: 1; }
.founder-stats span { display: block; font-size: 14px; color: var(--on-navy-muted); margin-top: 8px; line-height: 1.4; }
.founder-text > p:not(.eyebrow):not(.founder-name) { color: var(--on-navy-muted); }
.founder blockquote { margin: 32px 0 0; padding-left: 24px; border-left: 3px solid var(--red); }
.founder blockquote p { font-size: clamp(19px, 1.5vw, 22px); font-weight: 500; line-height: 1.5; color: var(--white); }
.link-arrow { display: inline-flex; align-items: center; gap: 10px; margin-top: 32px; font-weight: 700; text-decoration: none; border-bottom: 1.5px solid currentColor; padding-bottom: 3px; }
.link-arrow::after { content: "→"; transition: transform .2s var(--ease); }
.link-arrow:hover::after { transform: translateX(4px); }

/* ---------- Why ---------- */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin-top: 64px; border-top: 1px solid var(--grey); }
.why-item { padding: 36px 32px 36px 0; border-bottom: 1px solid var(--grey); }
.why-item:not(:nth-child(3n+1)) { padding-left: 32px; border-left: 1px solid var(--grey); }
.why-item h3 { font-size: 21px; margin-bottom: 8px; }
.why-item h3::before { content: ""; display: block; width: 8px; height: 8px; border-radius: 50%; background: var(--red); margin-bottom: 18px; }
.why-item p { color: var(--muted); font-size: 17px; }

/* ---------- Cost ---------- */
.cost-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 96px); align-items: start; }
.cost-list li {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 0; border-bottom: 1px solid rgba(16, 27, 54, .14);
  font-size: clamp(20px, 1.8vw, 24px); font-weight: 700; color: var(--navy); letter-spacing: -.01em;
}
.cost-list li:first-child { border-top: 1px solid rgba(16, 27, 54, .14); }
.cost-list li::after { content: "−"; color: var(--red); font-weight: 800; }

/* ---------- FAQ ---------- */
.faq-grid { display: grid; grid-template-columns: 5fr 7fr; gap: clamp(40px, 6vw, 96px); align-items: start; }
.faq-list { border-top: 1px solid var(--grey); }
.faq-list details { border-bottom: 1px solid var(--grey); }
.faq-list summary {
  list-style: none; cursor: pointer; padding: 26px 48px 26px 0; position: relative;
  font-size: 19px; font-weight: 700; color: var(--navy);
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: ""; position: absolute; right: 6px; top: 50%; width: 12px; height: 12px; margin-top: -9px;
  border-right: 2px solid var(--red); border-bottom: 2px solid var(--red); transform: rotate(45deg);
  transition: transform .25s var(--ease);
}
.faq-list details[open] summary::after { transform: rotate(-135deg); margin-top: -3px; }
.faq-list details p { padding: 0 48px 28px 0; color: var(--muted); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 5fr 7fr; gap: clamp(40px, 6vw, 96px); align-items: start; }
.contact h2 { font-size: clamp(32px, 3.4vw, 44px); }
.contact-direct { margin-top: 40px; display: grid; gap: 10px; }
.contact-direct a { color: var(--white); text-decoration: none; font-weight: 600; border-bottom: 1px solid var(--line-on-navy); padding-bottom: 2px; }
.contact-direct a:hover { border-bottom-color: var(--red); }

.contact-form { background: var(--white); color: var(--graphite); padding: clamp(28px, 4vw, 48px); border-radius: var(--radius); display: grid; gap: 20px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { display: grid; gap: 8px; }
.field > span { font-size: 14px; font-weight: 700; color: var(--navy); }
.field > span em { font-style: normal; font-weight: 500; color: var(--muted); margin-left: 6px; }
.field input, .field textarea {
  font: inherit; font-size: 16px; color: var(--graphite);
  width: 100%; padding: 14px 16px; border-radius: var(--radius);
  border: 1.5px solid #d6d6d2; background: #fff;
  transition: border-color .2s, box-shadow .2s;
}
.field textarea { resize: vertical; min-height: 120px; }
.field input::placeholder, .field textarea::placeholder { color: #9a9ca2; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--navy); box-shadow: 0 0 0 3px rgba(16, 27, 54, .12); }
.field.invalid input, .field.invalid textarea { border-color: var(--red); }
.hp { position: absolute !important; left: -9999px !important; }
.form-consent { font-size: 13px; color: var(--muted); }
.form-consent a { color: var(--navy); }
.form-bottom { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.form-status { font-size: 15px; font-weight: 600; }
.form-status.ok { color: #1f7a4a; }
.form-status.err { color: var(--red); }
.contact-form button[disabled] { opacity: .6; cursor: progress; }

/* ---------- Footer ---------- */
.site-footer { background: #0b1328; color: var(--on-navy-muted); padding: 72px 0 32px; font-size: 15px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; }
.footer-tag { margin-top: 24px; color: var(--white); font-weight: 600; }
.footer-about { margin-top: 16px; max-width: 34em; font-size: 14px; line-height: 1.6; }
.site-footer a { color: var(--on-navy-muted); text-decoration: none; }
.site-footer a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 56px; padding-top: 24px; font-size: 13px; position: relative; }
.footer-bottom::before { content: ""; position: absolute; top: 0; left: var(--gutter); right: var(--gutter); height: 1px; background: var(--line-on-navy); }

/* ---------- Reveal animation ---------- */
.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.js .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; transition: none; }
  .formula li { transition: none; }
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1100px) {
  .timeline { grid-template-columns: 1fr; gap: 0; max-width: 640px; }
  .timeline::before { top: 0; bottom: 0; left: 22px; right: auto; width: 2px; height: auto; }
  .timeline li { display: grid; grid-template-columns: 46px 1fr; gap: 24px; padding: 0 0 36px; }
  .timeline li:last-child { padding-bottom: 0; }
  .t-num { margin-bottom: 0; }
  .timeline h3 { margin-top: 10px; }
  .assess-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 960px) {
  :root { --header-h: 68px; }
  .header-cta { display: none; }
  .nav-toggle {
    display: inline-flex; flex-direction: column; justify-content: center; gap: 6px;
    width: 44px; height: 44px; padding: 0 10px; border: 0; background: transparent; cursor: pointer;
  }
  .nav-toggle span { display: block; height: 2px; background: var(--navy); transition: transform .25s var(--ease); }
  .nav-toggle[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }

  .main-nav {
    /* header's backdrop-filter makes it the containing block, so size explicitly */
    position: fixed; top: var(--header-h); left: 0; right: 0; height: calc(100vh - var(--header-h)); height: calc(100dvh - var(--header-h));
    flex-direction: column; gap: 0; padding: 16px var(--gutter) 32px;
    background: var(--white); overflow-y: auto;
    opacity: 0; visibility: hidden; transform: translateY(-8px);
    transition: opacity .25s, transform .25s var(--ease), visibility .25s;
  }
  .main-nav.open { opacity: 1; visibility: visible; transform: none; }
  .main-nav a:not(.btn) { font-size: 22px; font-weight: 700; color: var(--navy); padding: 18px 0; border-bottom: 1px solid var(--grey); }
  .main-nav a:not(.btn)::after { display: none; }
  .nav-cta-mobile { display: inline-flex; margin-top: 28px; }
  body.menu-open { overflow: hidden; }

  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { max-width: 440px; margin-right: 28px; }
  .hero-card { left: 16px; bottom: 16px; }

  .goal-grid { grid-template-columns: repeat(2, 1fr); }
  .pillars { grid-template-columns: 1fr; gap: 40px; }
  .extra-assess { grid-template-columns: 1fr; }
  .founder-grid, .cost-grid, .faq-grid, .contact-grid { grid-template-columns: 1fr; }
  .founder-photo { max-width: 360px; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .why-item, .why-item:not(:nth-child(3n+1)) { padding: 32px 24px 32px 0; border-left: 0; }
  .why-item:nth-child(2n) { padding-left: 24px; border-left: 1px solid var(--grey); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > :first-child { grid-column: 1 / -1; }
}

@media (max-width: 600px) {
  .hero-ctas .btn { flex: 1 1 100%; }
  .role-strip { font-size: 13px; }
  .goal-grid li { padding: 22px 18px; font-size: 16px; }
  .formula { flex-direction: column; align-items: flex-start; gap: 0; }
  .formula li { flex-direction: column; align-items: flex-start; }
  .formula li:not(:last-child)::after { width: 2px; height: 22px; margin: 10px 0 10px 6px; }
  .assess-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .why-item, .why-item:nth-child(2n) { padding: 28px 0; border-left: 0; }
  .field-row { grid-template-columns: 1fr; }
  .founder-photo { aspect-ratio: 1 / 1; }
  .founder-stats { grid-template-columns: 1fr 1fr 1fr; gap: 12px; }
  .founder-stats span { font-size: 12px; }
  .contact-form .btn { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
}

/* ---------- Legal pages ---------- */
.legal { padding: clamp(48px, 7vw, 96px) 0 var(--section-y); }
.legal .container { max-width: calc(760px + 2 * var(--gutter)); }
.legal h1 { font-size: clamp(36px, 4.5vw, 52px); }
.legal .updated { color: var(--muted); font-size: 15px; margin-top: 16px; }
.legal h2 { font-size: 24px; margin: 48px 0 14px; max-width: none; }
.legal p, .legal li { color: var(--graphite); }
.legal p + p { margin-top: 14px; }
.legal ul { list-style: disc; padding-left: 22px; margin-top: 12px; }
.legal li { margin: 6px 0; }
.legal a { color: var(--navy); }
.back-link { display: inline-block; margin-bottom: 32px; font-weight: 700; text-decoration: none; color: var(--navy); }
.back-link:hover { color: var(--red); }
.main-nav a.nav-cta-mobile { color: #fff; font-size: 16px; padding: 16px 26px; }
