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

:root {
  /* Surfaces. The page is near-white; purple appears only where it is meant to
     carry meaning — CTAs, links, the eyebrow label, and the tinted bands. */
  --background: #FDFCFB;
  --surface: #F4EDF8;
  --white: #FFFFFF;

  --ink: #1A1916;
  --ink-muted: #6B6860;
  --ink-faint: #C4C2BC;

  --accent: #A45BC1;
  --accent-deep: #6D3384;  /* hover / pressed */
  --accent-soft: #E5C7F2;  /* accent text on the dark ink panels */

  --border: rgba(26,25,22,0.1);
  --serif: 'DM Serif Display', Georgia, serif;
  --sans: 'DM Sans', system-ui, sans-serif;
  --radius: 12px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--background);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* NAV */
nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--white);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 5vw;
  display: flex; align-items: center; justify-content: space-between;
  height: 60px;
}
.nav-logo { font-family: var(--serif); font-size: 22px; color: var(--ink); text-decoration: none; letter-spacing: -0.02em; }
.nav-links { display: flex; gap: 28px; list-style: none; }
.nav-links a { font-size: 14px; color: var(--ink-muted); text-decoration: none; font-weight: 400; transition: color .2s; }
.nav-links a:hover { color: var(--ink); }
.nav-links a[aria-current="page"] { color: var(--ink); font-weight: 500; }
.nav-right { display: flex; align-items: center; gap: 12px; }

/* Hamburger. Hidden above the breakpoint; `order` moves it past .nav-right so
   the bar reads logo → language → menu on a phone. */
.nav-toggle {
  display: none; order: 3;
  flex-direction: column; justify-content: center; gap: 4px;
  width: 38px; height: 38px; padding: 8px;
  background: none; border: 1px solid var(--border); border-radius: 8px;
  cursor: pointer;
}
.nav-toggle-bar { display: block; height: 1.5px; width: 100%; background: var(--ink); border-radius: 2px; transition: transform .2s, opacity .2s; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

/* LANGUAGE SWITCHER */
.lang-switcher { display: flex; align-items: center; gap: 2px; background: rgba(26,25,22,0.06); border-radius: 8px; padding: 3px; }
.lang-btn {
  background: none; border: none; cursor: pointer;
  font-family: var(--sans); font-size: 12px; font-weight: 500; line-height: 1.5;
  color: var(--ink-muted); padding: 4px 9px; border-radius: 6px;
  transition: background .15s, color .15s; letter-spacing: 0.04em;
  /* These are <a> now, not <button>: each language is its own URL. */
  text-decoration: none; display: inline-block;
}
.lang-btn.active { background: var(--white); color: var(--ink); box-shadow: 0 1px 3px rgba(26,25,22,0.1); }
.lang-btn:hover:not(.active) { color: var(--ink); }

.nav-cta {
  background: var(--ink); color: var(--white);
  border: none; border-radius: 8px;
  padding: 8px 18px; font-family: var(--sans); font-size: 14px; font-weight: 500;
  cursor: pointer; transition: background .2s, transform .1s;
  text-decoration: none;
}
.nav-cta:hover { background: var(--accent-deep); transform: translateY(-1px); }

@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute; top: 60px; left: 0; right: 0;
    flex-direction: column; gap: 0; align-items: stretch;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 24px rgba(26,25,22,0.06);
    padding: 4px 5vw 12px;
    max-height: calc(100vh - 60px); overflow-y: auto;
  }
  .nav-links.open { display: flex; }
  /* Dividers go on the top-level items, not on every <a> — the dropdown links
     are nested inside those items and would otherwise draw a second rule. */
}

/* HERO */
.hero {
  min-height: 88vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  padding: 80px 5vw 60px;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; top: -120px; left: 50%; transform: translateX(-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(164,91,193,0.10) 0%, transparent 70%);
  pointer-events: none;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--surface); color: var(--accent-deep);
  border: 1px solid rgba(164,91,193,0.25);
  border-radius: 100px; padding: 5px 14px;
  font-size: 12px; font-weight: 500; letter-spacing: 0.04em; text-transform: uppercase;
  margin-bottom: 28px;
  animation: fadeUp 0.5s ease both;
}
.hero-badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }
.hero h1 {
  font-family: var(--sans);
  font-size: clamp(44px, 7vw, 88px);
  line-height: 1.05; letter-spacing: -0.03em; color: var(--ink);
  max-width: 780px;
  animation: fadeUp 0.5s 0.1s ease both;
}
.hero h1 em { font-style: italic; color: var(--accent); }
.hero-sub {
  margin-top: 24px;
  font-size: 18px; color: var(--ink-muted); font-weight: 300;
  max-width: 560px; line-height: 1.7;
  animation: fadeUp 0.5s 0.2s ease both;
}
.hero-actions {
  margin-top: 40px;
  display: flex; gap: 12px; align-items: center; flex-wrap: wrap; justify-content: center;
  animation: fadeUp 0.5s 0.3s ease both;
}
.btn-primary {
  background: var(--ink); color: var(--white);
  border: none; border-radius: 10px;
  padding: 14px 28px; font-family: var(--sans); font-size: 15px; font-weight: 500;
  cursor: pointer; transition: background .2s, transform .15s;
  text-decoration: none; display: inline-block;
}
.btn-primary:hover { background: var(--accent-deep); transform: translateY(-2px); }
.btn-secondary {
  background: transparent; color: var(--ink-muted);
  border: 1px solid var(--border); border-radius: 10px;
  padding: 14px 24px; font-family: var(--sans); font-size: 15px; font-weight: 400;
  cursor: pointer; transition: border-color .2s, color .2s;
  text-decoration: none; display: inline-block;
}
.btn-secondary:hover { border-color: var(--ink-muted); color: var(--ink); }

/* SECTIONS */
.section { padding: 100px 5vw; }
.section-label { font-size: 12px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent); margin-bottom: 12px; }
.section-title { font-family: var(--serif); font-size: clamp(32px, 4vw, 52px); line-height: 1.1; letter-spacing: -0.02em; color: var(--ink); max-width: 560px; }
.section-title em { font-style: italic; }

/* Stand-in for a screenshot where the subject is what *doesn't* happen: the
   waveform stays inside the machine, under lock. Used by .fblock-diagram. */
.dg-screen { fill: var(--white); stroke: var(--accent); stroke-width: 2; }
.dg-base { fill: var(--accent); opacity: 0.25; }
.dg-wave { fill: none; stroke: var(--accent); stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }
.dg-halo { fill: none; stroke: var(--accent); stroke-width: 1.5; stroke-dasharray: 4 7; opacity: 0.4; }
.dg-lock rect { fill: var(--accent); }
.dg-shackle { fill: none; stroke: var(--accent); stroke-width: 3.5; }

/* REGISTRATION — the dark panel shared by the download and contact forms */
.register { padding: 100px 5vw; display: flex; justify-content: center; }
.register-box { background: var(--ink); color: var(--white); border-radius: 20px; padding: 56px; max-width: 560px; width: 100%; text-align: center; position: relative; overflow: hidden; }
.register-box::before { content: ''; position: absolute; top: -80px; right: -80px; width: 240px; height: 240px; background: radial-gradient(circle, rgba(164,91,193,0.45) 0%, transparent 70%); pointer-events: none; }
.register-box h2 { font-family: var(--serif); font-size: 38px; line-height: 1.1; letter-spacing: -0.02em; color: var(--white); margin-bottom: 12px; }
.register-box h2 em { font-style: italic; color: var(--accent-soft); }
.register-sub { font-size: 15px; color: rgba(255,255,255,0.6); font-weight: 300; margin-bottom: 36px; }
.register-sub a { color: var(--accent-soft); }
.form { display: flex; flex-direction: column; gap: 14px; text-align: left; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-label { font-size: 12px; font-weight: 500; color: rgba(255,255,255,0.6); letter-spacing: 0.03em; }
.form-input { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); border-radius: 9px; padding: 11px 14px; font-family: var(--sans); font-size: 14px; color: var(--white); outline: none; transition: border-color .2s; width: 100%; }
.form-input::placeholder { color: rgba(255,255,255,0.3); }
.form-input:focus { border-color: rgba(255,255,255,0.4); }
.form-submit { margin-top: 8px; background: var(--white); color: var(--ink); border: none; border-radius: 10px; padding: 14px; font-family: var(--sans); font-size: 15px; font-weight: 500; cursor: pointer; transition: background .2s, transform .15s; width: 100%; }
.form-submit:hover { background: var(--accent-soft); transform: translateY(-1px); }
.form-note { font-size: 12px; color: rgba(255,255,255,0.35); text-align: center; margin-top: 4px; }
.form-note a { color: rgba(255,255,255,0.55); }
textarea.form-input { resize: vertical; min-height: 90px; font-family: var(--sans); }

/* DOWNLOAD — platform / architecture pickers and the redirect error banner */
.dl-platforms { display: flex; gap: 8px; }
.dl-platform { flex: 1; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); border-radius: 9px; padding: 11px 10px; font-family: var(--sans); font-size: 14px; color: rgba(255,255,255,0.7); cursor: pointer; transition: border-color .2s, background .2s, color .2s; }
.dl-platform:hover { border-color: rgba(255,255,255,0.35); color: var(--white); }
.dl-platform.active { background: var(--white); border-color: var(--white); color: var(--ink); font-weight: 500; }
.dl-error { padding: 14px 16px; margin-bottom: 20px; border-radius: 10px; background: rgba(164,91,193,0.12); border: 1px solid rgba(164,91,193,0.45); color: var(--accent-soft); font-size: 14px; text-align: left; }
/* An author `display` rule beats the browser's `[hidden] { display: none }`, so
   every element toggled via the `hidden` property needs this back. Without it
   the macOS arch toggle and the error banner are permanently visible. */
[hidden] { display: none !important; }

/* FOOTER */
footer { border-top: 1px solid var(--border); background: var(--white); padding: 32px 5vw; display: flex; flex-direction: column; gap: 20px; }
.footer-contact { display: flex; flex-direction: column; gap: 4px; font-size: 13px; color: var(--ink-muted); }
.footer-contact a { color: var(--ink-muted); text-decoration: none; transition: color .2s; }
.footer-contact a:hover { color: var(--ink); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-logo { font-family: var(--serif); font-size: 18px; color: var(--ink-muted); }
.footer-copy { font-size: 13px; color: var(--ink-faint); }
.footer-links { display: flex; gap: 20px; }
.footer-links a { font-size: 13px; color: var(--ink-faint); text-decoration: none; transition: color .2s; }
.footer-links a:hover { color: var(--ink-muted); }

@keyframes fadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }

@media (max-width: 600px) {
  .section { padding: 72px 5vw; }
  .register { padding: 72px 5vw; }
  .register-box { padding: 36px 24px; }
  .register-box h2 { font-size: 30px; }
  .form-row { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════════
   NAV: logo mark, dropdown menus, active page
   ═══════════════════════════════════════════════════════════════ */
.nav-logo { display: flex; align-items: center; gap: 9px; }
.nav-logo img { display: block; height: 24px; width: auto; }

.nav-links { align-items: center; }
.nav-links > li { position: relative; }
.nav-link {
  display: inline-block;
  background: none; border: none; padding: 0; cursor: pointer;
  font-family: var(--sans); font-size: 14px; font-weight: 400; line-height: 1.6;
  color: var(--ink-muted); text-decoration: none; transition: color .2s;
}
.nav-link:hover { color: var(--ink); }
.nav-current > .nav-link { color: var(--ink); font-weight: 500; }
.nav-menu-btn::after {
  content: ''; display: inline-block; margin-left: 6px; vertical-align: 2px;
  border: 3.5px solid transparent; border-top-color: currentColor; border-bottom: 0;
  transition: transform .18s;
}
.nav-menu-btn[aria-expanded="true"]::after { transform: rotate(180deg); }

.nav-menu {
  display: none;
  position: absolute; top: calc(100% + 10px); left: 50%; transform: translateX(-50%);
  min-width: 232px; padding: 8px;
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  box-shadow: 0 12px 32px rgba(26,25,22,0.10);
}
.nav-menu a {
  display: block; padding: 9px 12px; border-radius: 8px;
  font-size: 14px; color: var(--ink-muted); text-decoration: none; white-space: nowrap;
  transition: background .15s, color .15s;
}
.nav-menu a:hover { background: var(--surface); color: var(--ink); }
.nav-menu-btn[aria-expanded="true"] + .nav-menu { display: block; }
/* Hover only where hovering is a real gesture — a touch device reports hover on
   tap and would open the menu underneath the finger that is trying to navigate. */
@media (hover: hover) and (min-width: 901px) {
  .has-menu:hover .nav-menu { display: block; }
}
/* The gap between the button and the panel would otherwise drop the hover. */
.has-menu::after { content: ''; position: absolute; top: 100%; left: 0; right: 0; height: 12px; }

.nav-secondary {
  font-size: 14px; color: var(--ink-muted); text-decoration: none; transition: color .2s;
}
.nav-secondary:hover { color: var(--ink); }
.nav-links-only-mobile { display: none; }

@media (max-width: 900px) {
  .nav-links { padding-bottom: 8px; }
  .nav-links > li { width: 100%; border-top: 1px solid var(--border); }
  .nav-link { display: block; width: 100%; text-align: left; padding: 14px 0; font-size: 15px; }
  .nav-menu {
    position: static; transform: none; display: none;
    min-width: 0; padding: 0 0 10px 12px;
    border: 0; box-shadow: none; background: none;
  }
  .nav-menu a { padding: 9px 0; }
  .has-menu::after { display: none; }
  /* Both bar actions move into the panel, leaving room for the logo, the
     language switcher and the hamburger on a 360px-wide screen. */
  .nav-secondary, .nav-cta { display: none; }
  .nav-links-only-mobile { display: list-item; }
}

/* ═══════════════════════════════════════════════════════════════
   SHARED PIECES
   ═══════════════════════════════════════════════════════════════ */
.lead {
  margin-top: 20px; max-width: 640px;
  font-size: 18px; line-height: 1.7; font-weight: 300; color: var(--ink-muted);
}
.link-arrow {
  display: inline-block; margin-top: 24px;
  font-size: 15px; font-weight: 500; color: var(--accent); text-decoration: none;
}
.link-arrow::after { content: ' →'; transition: margin .15s; }
.link-arrow:hover::after { margin-left: 4px; }

.page-hero { padding: 76px 5vw 40px; border-bottom: 1px solid var(--border); }
.page-title {
  margin-top: 12px;
  font-family: var(--serif); font-size: clamp(36px, 5vw, 60px);
  line-height: 1.08; letter-spacing: -0.02em; color: var(--ink); max-width: 780px;
}

.section-title { margin-bottom: 4px; }
.prose { max-width: 780px; }
.detail-desc { margin-top: 18px; font-size: 17px; line-height: 1.75; font-weight: 300; color: var(--ink-muted); max-width: 720px; }

/* Wide content scrolls inside itself; the page body never scrolls sideways. */
.table-scroll { margin-top: 36px; overflow-x: auto; }
.spec-table { width: 100%; border-collapse: collapse; min-width: 520px; }
.spec-table th, .spec-table td {
  text-align: left; vertical-align: top; padding: 16px 20px 16px 0;
  border-top: 1px solid var(--border); font-weight: 400;
}
.spec-table th { width: 34%; color: var(--ink); font-weight: 500; font-size: 15px; }
.spec-table td { color: var(--ink-muted); font-size: 15px; font-weight: 300; line-height: 1.7; }

/* ═══════════════════════════════════════════════════════════════
   HOME
   ═══════════════════════════════════════════════════════════════ */
.trust-strip {
  padding: 22px 5vw; background: var(--white);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.trust-strip ul {
  list-style: none; display: flex; flex-wrap: wrap; justify-content: center;
  gap: 14px 40px; max-width: 1100px; margin: 0 auto;
}
.trust-strip li {
  font-size: 13px; color: var(--ink-muted); letter-spacing: 0.01em;
  display: flex; align-items: center; gap: 9px;
}
.trust-strip li::before {
  content: ''; width: 5px; height: 5px; border-radius: 50%;
  background: var(--accent); flex-shrink: 0;
}

.pillars-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 32px; margin-top: 52px; }
.pillar-num {
  width: 34px; height: 34px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--surface); color: var(--accent-deep);
  font-size: 14px; font-weight: 500; margin-bottom: 18px;
}
.pillar-name { font-size: 18px; font-weight: 500; color: var(--ink); margin-bottom: 8px; }
.pillar-desc { font-size: 15px; line-height: 1.7; font-weight: 300; color: var(--ink-muted); }

.fblocks { display: flex; flex-direction: column; gap: 96px; margin-top: 64px; }
.fblock { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
/* Alternate which side the image sits on, so the eye zig-zags down the page. */
.fblock:nth-child(even) .fblock-media { order: 2; }
.fblock-media {
  border: 1px solid var(--border); border-radius: 14px; overflow: hidden;
  background: var(--surface); aspect-ratio: 16/10;
}
.fblock-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.fblock-diagram { display: flex; align-items: center; justify-content: center; }
.fblock-diagram svg { width: 78%; height: auto; display: block; }
.fblock-name { font-family: var(--serif); font-size: 28px; line-height: 1.2; color: var(--ink); letter-spacing: -0.01em; }
.fblock-desc { margin-top: 16px; font-size: 16px; line-height: 1.75; font-weight: 300; color: var(--ink-muted); }
.fblock-link { display: inline-block; margin-top: 20px; font-size: 15px; font-weight: 500; color: var(--accent); text-decoration: none; }
.fblock-link::after { content: ' →'; transition: margin .15s; }
.fblock-link:hover::after { margin-left: 4px; }

.why-teaser { max-width: 820px; }

.band { padding: 96px 5vw; background: var(--surface); }
.band-inner { max-width: 780px; margin: 0 auto; text-align: center; }
.band-title { font-family: var(--serif); font-size: clamp(30px, 3.6vw, 44px); line-height: 1.12; letter-spacing: -0.02em; color: var(--ink); }
.band-desc { margin-top: 20px; font-size: 17px; line-height: 1.75; font-weight: 300; color: var(--ink-muted); }

.faq { max-width: 820px; }
.faq-list { margin-top: 44px; }
.faq-item { border-top: 1px solid var(--border); }
.faq-item:last-child { border-bottom: 1px solid var(--border); }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 22px 40px 22px 0; position: relative;
  font-size: 17px; font-weight: 500; color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; position: absolute; right: 4px; top: 50%; transform: translateY(-50%);
  font-size: 22px; font-weight: 300; color: var(--ink-muted); line-height: 1;
}
.faq-item[open] summary::after { content: '–'; }
.faq-item p { padding: 0 40px 24px 0; font-size: 16px; line-height: 1.75; font-weight: 300; color: var(--ink-muted); }

.cta-band { padding: 104px 5vw; background: var(--ink); }
.cta-band-inner { max-width: 660px; margin: 0 auto; text-align: center; }
.cta-band-title { font-family: var(--serif); font-size: clamp(32px, 4vw, 46px); line-height: 1.1; letter-spacing: -0.02em; color: var(--white); }
.cta-band-desc { margin: 18px 0 34px; font-size: 16px; line-height: 1.7; font-weight: 300; color: rgba(255,255,255,0.62); }
.btn-on-dark { background: var(--white); color: var(--ink); }
.btn-on-dark:hover { background: var(--accent-soft); color: var(--ink); }

/* ═══════════════════════════════════════════════════════════════
   FEATURES / WHY / PRICING
   ═══════════════════════════════════════════════════════════════ */
.detail { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.detail:has(.detail-media) .detail-body { max-width: none; }
/* A detail block with no screenshot yet should not leave half the row empty. */
.detail:not(:has(.detail-media)) { display: block; max-width: 780px; }
.detail:nth-of-type(even) .detail-media { order: -1; }
.detail-name { font-family: var(--serif); font-size: clamp(26px, 2.8vw, 36px); line-height: 1.15; letter-spacing: -0.01em; color: var(--ink); }
.detail-media { border: 1px solid var(--border); border-radius: 14px; overflow: hidden; background: var(--surface); aspect-ratio: 16/10; }
.detail-media img { width: 100%; height: 100%; object-fit: cover; display: block; }

.measure-list, .tick-list { list-style: none; margin-top: 26px; display: grid; gap: 10px 28px; }
.measure-list { grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); }
.tick-list { grid-template-columns: 1fr; max-width: 620px; }
.measure-list li, .tick-list li {
  display: flex; align-items: baseline; gap: 10px;
  font-size: 15px; font-weight: 300; color: var(--ink-muted);
}
.measure-list li::before {
  content: ''; width: 5px; height: 5px; border-radius: 50%;
  background: var(--accent); flex-shrink: 0; transform: translateY(-2px);
}
.tick-list li::before { content: '✓'; color: var(--accent); font-size: 14px; flex-shrink: 0; }

.placeholder-note {
  margin-top: 22px; padding: 12px 16px; max-width: 620px;
  background: var(--surface); border: 1px dashed var(--accent);
  border-radius: 10px; font-size: 14px; color: var(--accent-deep);
}
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; margin-top: 44px; }
.team-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; }
.team-avatar {
  width: 52px; height: 52px; border-radius: 50%; margin-bottom: 20px;
  display: flex; align-items: center; justify-content: center;
  background: var(--surface); color: var(--accent-deep);
  font-family: var(--serif); font-size: 22px;
}
.team-name { font-size: 17px; font-weight: 500; color: var(--ink); }
.team-role { margin-top: 3px; font-size: 14px; color: var(--accent); }
.team-desc { margin-top: 14px; font-size: 15px; line-height: 1.7; font-weight: 300; color: var(--ink-muted); }

.honest { background: var(--surface); }

/* ═══════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════ */
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 44px;
  padding-bottom: 34px; border-bottom: 1px solid var(--border);
}
.footer-brand { display: flex; flex-direction: column; gap: 5px; font-size: 13px; color: var(--ink-muted); }
.footer-brand img { height: 27px; width: auto; margin-bottom: 10px; }
.footer-brand a { color: var(--ink-muted); text-decoration: none; }
.footer-brand a:hover { color: var(--ink); }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col-title { font-size: 12px; font-weight: 500; letter-spacing: 0.07em; text-transform: uppercase; color: var(--ink); margin-bottom: 4px; }
.footer-col a { font-size: 14px; color: var(--ink-muted); text-decoration: none; transition: color .2s; }
.footer-col a:hover { color: var(--ink); }

@media (max-width: 860px) {
  .fblock, .detail { grid-template-columns: 1fr; gap: 32px; }
  .fblock:nth-child(even) .fblock-media, .detail:nth-of-type(even) .detail-media { order: 0; }
  .fblocks { gap: 72px; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .band, .cta-band { padding: 72px 5vw; }
}

/* ═══════════════════════════════════════════════════════════════
   DOWNLOAD / LEGAL PAGES
   ═══════════════════════════════════════════════════════════════ */
.version-line { margin-top: 18px; font-size: 14px; color: var(--ink-muted); }

/* The requirements table has a real header row; the others are key/value. */
.req-table thead th {
  border-top: 0; border-bottom: 1px solid var(--border);
  font-size: 13px; letter-spacing: 0.04em; text-transform: uppercase; color: var(--ink);
  width: auto; padding-right: 20px;
}
.req-table thead td { border-top: 0; border-bottom: 1px solid var(--border); }
.req-table th[scope="row"] { width: 20%; }
.req-table td { padding-right: 20px; }
.req-table { min-width: 720px; }

.legal { max-width: 760px; }
.legal-h { margin-top: 44px; font-family: var(--serif); font-size: 24px; line-height: 1.2; color: var(--ink); }
.legal-updated { margin-top: 18px; font-size: 13px; color: var(--ink-faint); }
.draft-notice {
  margin-top: 26px; padding: 14px 18px;
  background: var(--surface); border: 1px dashed var(--accent);
  border-radius: 10px; font-size: 14px; line-height: 1.6; color: var(--accent-deep);
}
.legal .page-title { font-size: clamp(32px, 4vw, 46px); }

@media (max-width: 600px) {
  .req-table { min-width: 600px; }
}
