:root {
  --bg: #05070c;
  --bg-2: #081120;
  --surface: rgba(255, 255, 255, 0.075);
  --surface-2: rgba(255, 255, 255, 0.115);
  --surface-3: rgba(255, 255, 255, 0.16);
  --line: rgba(255, 255, 255, 0.14);
  --text: #f7f9ff;
  --muted: #a9b3c9;
  --soft: #dce7ff;
  --blue: #0a84ff;
  --cyan: #22d3ee;
  --gold: #f8c85a;
  --ok: #35d399;
  --danger: #ff6174;
  --shadow: 0 26px 90px rgba(0, 0, 0, 0.36);
  --container: 1180px;
  --nav: 86px;
  --radius-xl: 34px;
  --radius-lg: 28px;
  --radius-md: 20px;
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

@media (prefers-color-scheme: light) {
  :root {
    --bg: #f7f9ff;
    --bg-2: #eef4ff;
    --surface: rgba(255, 255, 255, 0.78);
    --surface-2: rgba(255, 255, 255, 0.94);
    --surface-3: rgba(255, 255, 255, 1);
    --line: rgba(15, 23, 42, 0.12);
    --text: #101322;
    --muted: #5d687e;
    --soft: #202738;
    --shadow: 0 24px 70px rgba(24, 44, 88, 0.14);
  }
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: geometricPrecision;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font);
  color: var(--text);
  background:
    radial-gradient(circle at 8% 6%, rgba(10, 132, 255, 0.30), transparent 34rem),
    radial-gradient(circle at 92% 16%, rgba(34, 211, 238, 0.18), transparent 30rem),
    radial-gradient(circle at 55% 95%, rgba(248, 200, 90, 0.10), transparent 34rem),
    linear-gradient(180deg, var(--bg), var(--bg-2));
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, #000, transparent 76%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background: linear-gradient(90deg, rgba(5,7,12,.35), transparent 18%, transparent 82%, rgba(5,7,12,.35));
}

a { color: inherit; text-decoration: none; }
a:hover { color: var(--cyan); }
img { display: block; max-width: 100%; }
button, input, select { font: inherit; }
button { cursor: pointer; }

:focus-visible {
  outline: 0;
  box-shadow: 0 0 0 4px rgba(34, 211, 238, .26);
}

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

.narrow { max-width: 860px; }

.skip-link,
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.skip-link:focus {
  position: fixed !important;
  left: 16px;
  top: 16px;
  width: auto !important;
  height: auto !important;
  clip: auto !important;
  padding: 12px 16px;
  border-radius: 999px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  z-index: 999;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav);
  background: color-mix(in srgb, var(--bg) 84%, transparent);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
}

.nav-row {
  height: var(--nav);
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto minmax(220px, 1fr);
  align-items: center;
  gap: 18px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-weight: 950;
  letter-spacing: .035em;
}

.brand { justify-self: start; }

.brand img,
.footer-brand img {
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  object-fit: contain;
  object-position: center;
  border-radius: 18px;
  box-shadow: 0 14px 34px rgba(248, 200, 90, .16);
}

.brand span {
  display: grid;
  min-width: 0;
  line-height: 1;
}

.brand strong {
  display: block;
  font-size: 18px;
  white-space: nowrap;
}

.brand small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .18em;
  white-space: nowrap;
}

.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 4px;
  max-width: 100%;
  padding: 7px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  box-shadow: 0 16px 50px rgba(0,0,0,.12);
}

.site-nav a {
  padding: 11px 14px;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 900;
  font-size: 13px;
  line-height: 1;
  white-space: nowrap;
}

.site-nav a:hover {
  background: var(--surface-2);
  color: var(--text);
}

.nav-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.lang-select {
  width: 78px;
  min-height: 48px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text);
  padding: 0 12px;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: #fff !important;
  font-weight: 950;
  letter-spacing: -.01em;
  box-shadow: 0 18px 52px rgba(10,132,255,.28);
  transition: transform .18s ease, box-shadow .18s ease, opacity .18s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 60px rgba(10,132,255,.35);
}

.btn-small { min-height: 48px; padding-inline: 18px; font-size: 14px; }
.btn-muted { background: var(--surface); border: 1px solid var(--line); box-shadow: none; color: var(--text) !important; }
.btn-muted:hover { box-shadow: 0 18px 50px rgba(0,0,0,.14); }

.hero { padding: 118px 0 86px; }

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 440px);
  gap: 64px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  max-width: 100%;
  border: 1px solid var(--line);
  background: var(--surface);
  padding: 9px 13px;
  border-radius: 999px;
  color: var(--soft);
  font-weight: 950;
  font-size: 14px;
  box-shadow: 0 16px 42px rgba(0,0,0,.12);
}

.eyebrow span {
  flex: 0 0 auto;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--ok);
  box-shadow: 0 0 0 7px rgba(53,211,153,.14);
}

h1, h2, h3, p { margin-top: 0; }

.hero h1,
.page-hero h1 {
  margin: 26px 0 22px;
  font-size: clamp(48px, 7vw, 94px);
  line-height: .96;
  letter-spacing: -.076em;
}

.hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, #dfe9ff 0%, var(--cyan) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero p,
.page-hero p {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 22px;
}

.pill-row span {
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--soft);
  font-size: 14px;
  font-weight: 900;
}

.truth-panel { display: grid; gap: 14px; }

.truth-card,
.card,
.form-card,
.faq-list details,
.flow-grid article,
.steps div,
.cta-band {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, var(--surface-2), var(--surface));
  box-shadow: 0 18px 60px rgba(0,0,0,.11);
}

.truth-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  padding: 30px;
  box-shadow: var(--shadow);
}

.truth-card::before {
  content: "";
  position: absolute;
  inset: -35% -20% auto auto;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(34,211,238,.26), transparent 64%);
  pointer-events: none;
}

.truth-card small {
  display: block;
  margin-bottom: 12px;
  color: var(--cyan);
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.truth-card strong {
  position: relative;
  display: block;
  font-size: 30px;
  line-height: 1.12;
  letter-spacing: -.045em;
}

.truth-card p {
  position: relative;
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.truth-stack,
.metric-list { display: grid; gap: 10px; }

.truth-stack div,
.metric-list div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  min-height: 64px;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 20px;
  padding: 16px;
}

.truth-stack b,
.metric-list b { color: var(--text); }
.truth-stack span,
.metric-list span { color: var(--muted); font-weight: 800; text-align: right; }

.section { padding: 88px 0; }
.section-alt { background: linear-gradient(180deg, transparent, rgba(255,255,255,.032), transparent); }
.section-head { max-width: 860px; margin-bottom: 28px; }
.section-head h2,
.split h2,
.cta-band h2 {
  margin: 18px 0 12px;
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1.02;
  letter-spacing: -.06em;
}
.section-head p,
.lead-lite,
.cta-band p {
  color: var(--muted);
  line-height: 1.72;
  font-size: 18px;
}

.grid { display: grid; gap: 18px; }
.cards-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.cards-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.card {
  border-radius: var(--radius-lg);
  padding: 26px;
}

.card i {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 18px;
  margin-bottom: 18px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: #fff;
  font-style: normal;
  font-weight: 950;
}

.card h2,
.card h3 { margin-bottom: 10px; font-size: 24px; letter-spacing: -.035em; }
.card p { color: var(--muted); line-height: 1.7; }

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  gap: 34px;
  align-items: start;
}

.steps { display: grid; gap: 12px; }
.steps div {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 8px 14px;
  border-radius: 24px;
  padding: 18px;
}
.steps b {
  grid-row: 1 / 3;
  width: 48px;
  height: 48px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: var(--surface-2);
  color: var(--cyan);
}
.steps span { font-weight: 950; }
.steps p { grid-column: 2; margin: 0; color: var(--muted); line-height: 1.55; }

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  border-radius: var(--radius-xl);
  padding: 34px;
  background: linear-gradient(135deg, rgba(10,132,255,.18), rgba(34,211,238,.10));
}

.page-hero { padding: 92px 0 40px; }
.flow-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 18px; }
.flow-grid article { border-radius: 28px; padding: 28px; }
.flow-grid b { color: var(--cyan); font-size: 14px; }
.flow-grid h2 { font-size: 28px; }
.flow-grid p { color: var(--muted); line-height: 1.7; }

.form-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-card { border-radius: 30px; padding: 28px; }
.site-form { display: grid; gap: 12px; }
.site-form label { font-weight: 950; }
.site-form input {
  width: 100%;
  min-height: 54px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,.06);
  color: var(--text);
  padding: 0 16px;
  outline: 0;
}
.site-form small { min-height: 20px; color: var(--muted); }
.hp { display: none; }

.faq-list { display: grid; gap: 12px; }
.faq-list details { border-radius: 22px; padding: 20px; }
.faq-list summary { font-size: 20px; font-weight: 950; cursor: pointer; }
.faq-list p { color: var(--muted); line-height: 1.7; }
.legal-body h2 { font-size: 26px; margin-top: 30px; }
.legal-body p { color: var(--muted); line-height: 1.8; }
.inline-link { color: var(--cyan); font-weight: 950; }

.site-footer {
  border-top: 1px solid var(--line);
  padding: 48px 0 24px;
  background: rgba(0,0,0,.12);
}
.footer-grid { display: grid; grid-template-columns: 1.6fr repeat(3,1fr); gap: 28px; }
.footer-grid h2 { font-size: 15px; text-transform: uppercase; letter-spacing: .12em; color: var(--muted); }
.footer-grid a { display: block; margin: 10px 0; color: var(--muted); font-weight: 800; }
.footer-grid p { color: var(--muted); line-height: 1.65; }
.footer-bottom { display: flex; justify-content: space-between; gap: 16px; border-top: 1px solid var(--line); margin-top: 28px; padding-top: 18px; color: var(--muted); font-size: 14px; }

.to-top,
.a11y-fab {
  position: fixed;
  right: 18px;
  border: 1px solid var(--line);
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: #fff;
  border-radius: 18px;
  z-index: 80;
  box-shadow: 0 18px 50px rgba(10,132,255,.26);
}
.to-top { bottom: 86px; width: 50px; height: 50px; opacity: 0; pointer-events: none; }
.to-top.show { opacity: 1; pointer-events: auto; }
.a11y-fab { bottom: 22px; width: 56px; height: 56px; }
.a11y-panel {
  position: fixed;
  right: 18px;
  bottom: 90px;
  width: min(360px, calc(100vw - 36px));
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 16px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
  z-index: 120;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: .18s ease;
}
.a11y-panel.open { opacity: 1; transform: none; pointer-events: auto; }
.a11y-head { display: flex; align-items: center; justify-content: space-between; }
.a11y-head button,
.a11y-actions button {
  min-height: 40px;
  border-radius: 14px;
  border: 1px solid var(--line);
  color: var(--text);
  background: var(--surface);
  font-weight: 850;
  padding-inline: 12px;
}
.a11y-actions { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 130;
  width: min(460px, calc(100vw - 36px));
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--surface-2);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
}
.cookie-banner p { color: var(--muted); line-height: 1.55; }
.cookie-actions { display: flex; gap: 8px; flex-wrap: wrap; justify-content: flex-end; }
.cookie-actions button {
  min-height: 38px;
  border-radius: 13px;
  border: 1px solid var(--line);
  color: var(--text);
  background: var(--surface);
  padding: 0 12px;
  font-weight: 850;
}
.cookie-actions .accept { color: #fff; border: 0; background: linear-gradient(135deg, var(--blue), var(--cyan)); }

.high-contrast {
  --bg:#000; --bg-2:#000; --surface:#111; --surface-2:#171717; --surface-3:#222;
  --line:rgba(255,255,255,.62); --text:#fff; --muted:#fff; --soft:#fff; --cyan:#fff; --blue:#00e5ff;
}
.reduce-motion *, .reduce-motion *::before, .reduce-motion *::after { animation-duration:.001ms!important; transition-duration:.001ms!important; scroll-behavior:auto!important; }

@media (max-width: 1120px) {
  .nav-row { grid-template-columns: 1fr auto auto; }
  .site-nav {
    position: fixed;
    left: 16px;
    right: 16px;
    top: calc(var(--nav) + 10px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    border-radius: 24px;
    padding: 10px;
  }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 15px 16px; }
  .nav-toggle { display: block; }
  .hero-grid, .split, .form-layout { grid-template-columns: 1fr; }
  .truth-panel { max-width: 760px; }
  .cards-3 { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  :root { --nav: 76px; }
  .container { width: min(var(--container), calc(100% - 24px)); }
  .brand img { width: 44px; height: 44px; border-radius: 16px; }
  .brand strong { font-size: 16px; }
  .brand small { display: none; }
  .nav-actions .btn { display: none; }
  .lang-select { width: 68px; min-height: 44px; }
  .hero { padding: 58px 0 64px; }
  .hero h1, .page-hero h1 { font-size: clamp(42px, 14vw, 64px); letter-spacing: -.065em; }
  .hero-actions .btn { width: 100%; }
  .cards-3, .cards-2, .flow-grid, .footer-grid { grid-template-columns: 1fr; }
  .cta-band { display: grid; padding: 26px; }
  .footer-bottom { display: grid; }
  .section { padding: 62px 0; }
  .truth-stack div, .metric-list div { display: grid; gap: 6px; }
  .truth-stack span, .metric-list span { text-align: left; }
}
