/*
  FinQ Pulse marketing site
  Design foundation copied from the application frontend/src/styles.css.
*/
:root {
  --bg: #f4f7f9;
  --surface: #ffffff;
  --surface2: #eaf0f4;
  --surface3: #dfe8ee;
  --border: #cfd9e1;
  --border2: #b6c5d1;
  --text: #00101f;
  --text2: #06263a;
  --text3: #36566a;
  --muted: #71859a;
  --accent: #78fefc;
  --accent-dark: #45e5e6;
  --accent2: #f5a623;
  --good: #178a55;
  --good-bright: #2bd179;
  --good-bg: rgba(43, 209, 121, 0.10);
  --warn: #b46e00;
  --warn-bg: rgba(245, 166, 35, 0.12);
  --info: #0d5d8f;
  --info-bg: rgba(13, 93, 143, 0.08);
  --tag-bg: rgba(0, 16, 31, 0.06);
  --shadow: 0 2px 8px rgba(0, 16, 31, 0.05), 0 16px 48px rgba(0, 16, 31, 0.10);
  --hdr-bg: rgba(0, 16, 31, 0.98);
  --hdr-text: #ffffff;
  --hdr-muted: rgba(232, 238, 244, 0.70);
  --hdr-border: #78fefc;
  --fn-display: Inter, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --fn-body: Inter, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --fn-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, 'Liberation Mono', monospace;
  --btn-pri-bg: #00101f;
  --btn-pri-text: #ffffff;
  --btn-out-border: #b6c5d1;
  --btn-out-text: #06263a;
  --table-head-bg: #06263a;
  --table-head-text: #e8eef4;

  --container: 1180px;
  --container-narrow: 850px;
  --radius: 0;
  --ease: cubic-bezier(.2,.75,.25,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; }
body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--text);
  font-family: var(--fn-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(circle, rgba(0, 16, 31, 0.05) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: .55;
  z-index: -1;
}
body.nav-open { overflow: hidden; }
main { overflow: clip; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
img, svg { display: block; max-width: 100%; }
p { margin: 0 0 1rem; color: var(--text3); }
h1, h2, h3, h4 { margin: 0; color: var(--text); font-weight: 700; }
h1, h2 { font-family: var(--fn-display); letter-spacing: -.045em; }
h1 { font-size: clamp(3rem, 6.5vw, 6.35rem); line-height: .98; }
h2 { font-size: clamp(2.15rem, 4.2vw, 4rem); line-height: 1.04; }
h3 { font-size: 1.2rem; line-height: 1.25; }
code { font-family: var(--fn-mono); font-size: .87em; background: var(--surface2); border: 1px solid var(--border); padding: .1em .35em; }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.container.narrow { width: min(calc(100% - 40px), var(--container-narrow)); }
.section { position: relative; padding: 110px 0; }
.section-tight { padding-top: 72px; }
.section-compact { padding: 72px 0; }
.alt { background: rgba(223, 232, 238, .55); border-block: 1px solid var(--border); }
.section-dark { background: #00101f; color: var(--hdr-text); }
.section-dark h2, .section-dark h3, .section-dark strong { color: var(--hdr-text); }
.section-dark p { color: var(--hdr-muted); }
.center-action { text-align: center; margin-top: 42px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; left: 16px; top: -80px; z-index: 999; background: var(--accent); color: white; padding: 10px 14px; font-weight: 700; transition: top .2s; }
.skip-link:focus { top: 16px; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: 76px;
  background: var(--hdr-bg);
  color: var(--hdr-text);
  border-bottom: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(15px);
}
.site-header::after { content: ''; position: absolute; left: 0; right: 0; bottom: -1px; height: 1px; background: linear-gradient(90deg, var(--accent), transparent 35%); opacity: .75; }
.nav-shell { min-height: 76px; display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 34px; }
.brand { display: inline-flex; align-items: center; gap: 12px; width: fit-content; }
.brand-logo { width: 46px; height: 46px; flex: none; border-radius: 50%; object-fit: cover; box-shadow: 0 0 0 1px rgba(120,254,252,.16), 0 8px 24px rgba(0,0,0,.18); }
.brand-word { display: flex; align-items: baseline; font-size: 1.12rem; letter-spacing: .035em; }
.brand-word strong { color: var(--hdr-text); font-weight: 800; }
.brand-word em { color: var(--accent); font-style: normal; font-weight: 750; }
.primary-nav { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 30px; }
.nav-links { display: flex; align-items: center; justify-content: center; gap: 4px; }
.nav-link { position: relative; padding: 12px 14px; color: var(--hdr-muted); font-size: .86rem; font-weight: 600; transition: color .2s; }
.nav-link:hover, .nav-link.is-active { color: var(--hdr-text); }
.nav-link.is-active::after { content: ''; position: absolute; left: 14px; right: 14px; bottom: 4px; height: 2px; background: var(--accent); }
.nav-actions { display: flex; align-items: center; gap: 18px; }
.nav-login { color: var(--hdr-muted); font-size: .86rem; font-weight: 600; }
.nav-login:hover { color: var(--hdr-text); }
.nav-toggle { display: none; width: 44px; height: 44px; background: transparent; border: 1px solid rgba(255,255,255,.18); padding: 10px; cursor: pointer; }
.nav-toggle span:not(.sr-only) { display: block; height: 1px; margin: 5px 0; background: var(--hdr-text); transition: transform .2s, opacity .2s; }

/* Buttons */
.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  padding: 12px 21px;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .2s var(--ease), box-shadow .2s, background .2s, border-color .2s;
}
.button:hover { transform: translateY(-2px); }
.button:focus-visible, a:focus-visible, input:focus-visible, textarea:focus-visible, button:focus-visible { outline: 3px solid rgba(120,254,252,.30); outline-offset: 3px; }
.button-sm { min-height: 40px; padding: 9px 15px; font-size: .7rem; }
.button-accent { background: var(--accent); color: #00101f; box-shadow: 0 8px 26px rgba(120,254,252,.22); }
.button-accent:hover { background: var(--accent-dark); box-shadow: 0 12px 30px rgba(120,254,252,.30); }
.button-dark { background: var(--text); color: var(--hdr-text); }
.button-dark:hover { background: var(--text2); }
.button-light { background: var(--hdr-text); color: var(--text); }
.button-light:hover { background: white; }
.button-ghost { border-color: var(--border2); color: var(--text2); background: rgba(255,255,255,.55); }
.button-ghost:hover { border-color: var(--text); background: var(--surface); }
.button-full { width: 100%; }
.text-arrow { display: inline-flex; gap: 10px; color: var(--text); font-weight: 800; font-size: .84rem; letter-spacing: .04em; }
.text-arrow span { color: var(--accent); transition: transform .2s; }
.text-arrow:hover span { transform: translateX(4px); }

/* Shared headings */
.eyebrow { display: flex; align-items: center; gap: 10px; margin-bottom: 22px; color: var(--text3); font-family: var(--fn-mono); font-size: .69rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.eyebrow > span { width: 28px; height: 2px; background: var(--accent); }
.eyebrow-light { color: var(--hdr-muted); }
.number-label { display: block; margin-bottom: 20px; color: var(--accent); font-family: var(--fn-mono); font-size: .69rem; font-weight: 700; letter-spacing: .15em; }
.section-heading { margin-bottom: 52px; }
.section-heading h2 { max-width: 760px; }
.section-heading > p { max-width: 560px; font-size: 1.05rem; line-height: 1.8; }
.split-heading { display: grid; grid-template-columns: 1.3fr .7fr; gap: 70px; align-items: end; }
.centered { max-width: 820px; margin-left: auto; margin-right: auto; text-align: center; }
.centered .eyebrow { justify-content: center; }
.centered p { max-width: 680px; margin: 20px auto 0; }

/* Hero */
.hero { position: relative; padding: 98px 0 105px; }
.hero-home::after { content: ''; position: absolute; width: 640px; height: 640px; right: -260px; top: -180px; background: radial-gradient(circle, rgba(120,254,252,.12), transparent 68%); pointer-events: none; }
.hero-grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: 70px; align-items: center; }
.hero-copy h1 { max-width: 720px; font-size: clamp(3.4rem, 6.4vw, 6.4rem); }
.value-lines { margin: 30px 0 26px; display: flex; flex-direction: column; font-family: var(--fn-display); font-size: clamp(1.2rem, 2vw, 1.55rem); line-height: 1.45; color: var(--text2); }
.value-lines span::before { content: '—'; color: var(--accent); margin-right: 10px; }
.hero-lede { max-width: 650px; font-size: 1.08rem; line-height: 1.82; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.hero-trust-row { display: flex; flex-wrap: wrap; gap: 21px; margin-top: 35px; color: var(--text3); font-size: .78rem; font-weight: 700; }
.hero-trust-row span { display: inline-flex; align-items: center; gap: 8px; }
.hero-trust-row .icon { width: 16px; height: 16px; color: var(--accent); }

.hero-visual { position: relative; min-height: 570px; display: flex; align-items: center; }
.app-window { width: 100%; background: var(--surface); border: 1px solid var(--border); box-shadow: 0 30px 90px rgba(0,16,31,.16); transform: perspective(1300px) rotateY(-4deg) rotateX(1deg); }
.window-top { height: 43px; display: flex; align-items: center; gap: 6px; padding: 0 15px; background: #0a1628; color: var(--hdr-muted); border-bottom: 2px solid var(--accent); }
.window-top span { width: 7px; height: 7px; border: 1px solid rgba(255,255,255,.3); }
.window-top span:first-child { background: var(--accent); border-color: var(--accent); }
.window-top strong { margin-left: 10px; font-family: var(--fn-mono); font-size: .62rem; letter-spacing: .08em; font-weight: 500; }
.window-body { min-height: 425px; display: grid; grid-template-columns: 54px 1fr; }
.mock-sidebar { background: var(--surface2); border-right: 1px solid var(--border); display: flex; flex-direction: column; align-items: center; gap: 20px; padding: 17px 0; }
.mock-sidebar b { width: 27px; height: 27px; display: grid; place-items: center; color: white; background: var(--accent); font-size: .58rem; }
.mock-sidebar i { display: block; width: 19px; height: 3px; background: var(--border2); }
.mock-content { padding: 28px; }
.mock-heading { display: flex; justify-content: space-between; align-items: start; gap: 20px; }
.mock-heading small, .mock-kpis small { font-family: var(--fn-mono); font-size: .55rem; letter-spacing: .13em; color: var(--muted); }
.mock-heading h2 { font-family: var(--fn-body); font-size: 1.25rem; letter-spacing: -.02em; margin-top: 3px; }
.status-chip { padding: 5px 8px; border: 1px solid rgba(43,209,121,.28); background: var(--good-bg); color: var(--good); font-family: var(--fn-mono); font-size: .55rem; letter-spacing: .08em; text-transform: uppercase; white-space: nowrap; }
.mock-kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin: 25px 0 16px; }
.mock-kpis > div { min-height: 90px; border: 1px solid var(--border); background: var(--surface2); padding: 13px; display: flex; flex-direction: column; }
.mock-kpis strong { font-size: .83rem; margin: 8px 0 5px; }
.mock-kpis span { color: var(--muted); font-size: .61rem; }
.mock-chart { position: relative; height: 165px; border: 1px solid var(--border); overflow: hidden; background: var(--surface); }
.chart-grid { position: absolute; inset: 0; background: linear-gradient(to right, transparent 24.8%, var(--border) 25%, transparent 25.2%, transparent 49.8%, var(--border) 50%, transparent 50.2%, transparent 74.8%, var(--border) 75%, transparent 75.2%), linear-gradient(to bottom, transparent 32.8%, var(--border) 33%, transparent 33.2%, transparent 65.8%, var(--border) 66%, transparent 66.2%); opacity: .6; }
.mock-chart svg { position: absolute; inset: 18px 12px; width: calc(100% - 24px); height: calc(100% - 36px); overflow: visible; }
.mock-chart polyline { fill: none; stroke: var(--accent); stroke-width: 3; vector-effect: non-scaling-stroke; }
.mock-chart .chart-line-muted { stroke: var(--accent2); stroke-width: 2; }
.mock-steps { display: flex; align-items: center; justify-content: space-between; margin-top: 18px; }
.mock-steps span { position: relative; color: var(--muted); font-family: var(--fn-mono); font-size: .52rem; text-transform: uppercase; }
.mock-steps span:not(:last-child)::after { content: ''; position: absolute; left: calc(100% + 7px); top: 50%; width: 17px; height: 1px; background: var(--border2); }
.mock-steps .done::before { content: ''; display: inline-block; width: 5px; height: 5px; margin-right: 4px; background: var(--good); }
.floating-card { position: absolute; display: flex; align-items: center; gap: 12px; min-width: 230px; padding: 14px 17px; background: #0a1628; color: var(--hdr-text); box-shadow: 0 16px 44px rgba(0,16,31,.24); border-left: 3px solid var(--accent); }
.floating-card .icon { width: 24px; color: var(--accent); }
.floating-card div { display: flex; flex-direction: column; }
.floating-card strong { font-size: .79rem; }
.floating-card span { color: var(--hdr-muted); font-size: .63rem; }
.floating-security { left: -30px; bottom: 15px; }
.floating-report { right: -25px; top: 32px; }

/* Social proof */
.proof-strip { border-block: 1px solid var(--border); background: rgba(255,255,255,.76); }
.proof-inner { min-height: 118px; display: grid; grid-template-columns: 230px 1fr; gap: 40px; align-items: center; }
.proof-inner p { margin: 0; color: var(--text3); font-family: var(--fn-mono); font-size: .68rem; letter-spacing: .14em; }
.logo-row { display: grid; grid-template-columns: repeat(4, 1fr); }
.logo-row span { min-height: 54px; display: grid; place-items: center; color: var(--muted); border-left: 1px solid var(--border); font-size: .72rem; font-weight: 700; letter-spacing: .06em; }

/* Feature cards */
.feature-grid { display: grid; gap: 16px; }
.feature-grid-3 { grid-template-columns: repeat(3, 1fr); }
.feature-card { position: relative; min-height: 330px; padding: 30px; background: var(--surface); border: 1px solid var(--border); transition: transform .25s var(--ease), box-shadow .25s, border-color .25s; }
.feature-card::after { content: ''; position: absolute; inset: 0; border-top: 2px solid transparent; pointer-events: none; }
.feature-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--border2); }
.feature-card:hover::after { border-color: var(--accent); }
.icon-box { width: 49px; height: 49px; display: grid; place-items: center; margin-bottom: 36px; background: var(--surface2); border: 1px solid var(--border); color: var(--accent); }
.icon-box .icon { width: 23px; }
.card-index { position: absolute; right: 26px; top: 28px; color: var(--muted); font-family: var(--fn-mono); font-size: .65rem; }
.feature-card h3 { font-size: 1.13rem; margin-bottom: 14px; }
.feature-card p { font-size: .92rem; line-height: 1.75; }
.feature-card a { position: absolute; left: 30px; bottom: 26px; display: flex; gap: 8px; color: var(--text2); font-size: .76rem; font-weight: 800; }
.feature-card a span { color: var(--accent); }

/* Workflow */
.workflow-line { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr auto 1fr; align-items: center; gap: 13px; margin-top: 64px; }
.workflow-node { min-height: 168px; border: 1px solid rgba(255,255,255,.13); display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 18px; }
.workflow-node > div { width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.16); color: var(--accent); margin-bottom: 16px; }
.workflow-node .icon { width: 21px; }
.workflow-node strong { font-size: .87rem; }
.workflow-node span { color: var(--hdr-muted); font-size: .69rem; margin-top: 5px; }
.workflow-arrow { color: var(--accent); font-size: 1.3rem; }

/* Trust */
.trust-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: 90px; align-items: center; }
.trust-copy h2 { margin-bottom: 26px; }
.trust-copy p { font-size: 1rem; line-height: 1.85; }
.trust-copy .button { margin-top: 18px; }
.trust-panel { background: var(--surface); border: 1px solid var(--border); box-shadow: var(--shadow); }
.map-card { min-height: 260px; position: relative; display: flex; align-items: flex-end; padding: 32px; background: #dfe8ee; overflow: hidden; }
.map-card::before, .map-card::after { content: ''; position: absolute; border: 1px solid rgba(0,16,31,.12); border-radius: 50%; }
.map-card::before { width: 430px; height: 430px; left: -80px; top: -240px; }
.map-card::after { width: 250px; height: 250px; right: -80px; bottom: -130px; }
.map-pin { position: absolute; right: 24%; top: 25%; width: 52px; height: 52px; border: 1px solid rgba(120,254,252,.34); border-radius: 50%; display: grid; place-items: center; }
.map-pin::after { content: ''; width: 13px; height: 13px; background: var(--accent); border-radius: 50%; box-shadow: 0 0 0 7px rgba(120,254,252,.14); }
.map-pin span { position: absolute; width: 120px; height: 120px; border: 1px solid rgba(120,254,252,.16); border-radius: 50%; }
.map-label { position: relative; z-index: 1; display: flex; flex-direction: column; }
.map-label small { font-family: var(--fn-mono); color: var(--accent); letter-spacing: .13em; font-size: .62rem; }
.map-label strong { font-family: var(--fn-display); font-size: 1.55rem; }
.map-label span { color: var(--text3); font-size: .8rem; }
.control-list > div { display: grid; grid-template-columns: 42px 1fr; align-items: center; gap: 17px; padding: 20px 25px; border-top: 1px solid var(--border); }
.control-list .icon { width: 22px; color: var(--accent); }
.control-list span { display: flex; flex-direction: column; color: var(--text3); font-size: .76rem; }
.control-list strong { color: var(--text); font-size: .86rem; }

/* CTA */
.pilot-banner, .cta-panel { background: #0a1628; color: var(--hdr-text); padding: 46px 52px; display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center; border-left: 4px solid var(--accent); }
.pilot-banner h2, .cta-panel h2 { color: var(--hdr-text); font-size: clamp(2rem, 3.5vw, 3.3rem); }
.pilot-banner p, .cta-panel p { color: var(--hdr-muted); margin: 12px 0 0; }

/* Contact */
.contact-section { border-top: 1px solid var(--border); }
.contact-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 90px; align-items: start; }
.contact-intro h2 { margin-bottom: 25px; }
.contact-intro > p { font-size: 1rem; line-height: 1.85; margin-bottom: 34px; }
.contact-detail { display: grid; grid-template-columns: 38px 1fr; gap: 15px; align-items: center; margin: 22px 0; }
.contact-detail .icon { width: 21px; color: var(--accent); }
.contact-detail span { display: flex; flex-direction: column; color: var(--text3); font-size: .8rem; }
.contact-detail strong { color: var(--text); font-size: .9rem; }
.contact-form { background: var(--surface); border: 1px solid var(--border); box-shadow: var(--shadow); padding: 34px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.contact-form label { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; color: var(--text2); font-size: .72rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.contact-form input, .contact-form textarea { width: 100%; border: 1px solid var(--border); background: var(--surface2); color: var(--text); padding: 13px 14px; outline: 0; text-transform: none; letter-spacing: 0; }
.contact-form input { min-height: 49px; }
.contact-form textarea { min-height: 145px; resize: vertical; }
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--accent2); box-shadow: 0 0 0 3px rgba(120,254,252,.12); }
.form-footer { display: flex; justify-content: space-between; gap: 24px; align-items: center; margin-top: 4px; }
.form-footer p { max-width: 390px; margin: 0; font-size: .68rem; line-height: 1.5; }
.form-status { min-height: 24px; margin: 16px 0 0; font-size: .78rem; font-weight: 700; }
.form-status.is-success { color: var(--good); }
.form-status.is-error { color: var(--warn); }

/* Page hero */
.page-hero { position: relative; padding: 112px 0 92px; text-align: center; border-bottom: 1px solid var(--border); }
.page-hero::after { content: ''; position: absolute; width: 520px; height: 240px; left: 50%; top: 0; transform: translateX(-50%); background: radial-gradient(ellipse, rgba(120,254,252,.10), transparent 70%); pointer-events: none; }
.page-hero .eyebrow { justify-content: center; }
.page-hero h1 { font-size: clamp(3.2rem, 6.3vw, 6.1rem); }
.page-hero p { max-width: 760px; margin: 27px auto 0; font-size: 1.1rem; line-height: 1.85; }
.page-hero-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; margin-top: 34px; }

/* Product */
.workflow-diagram { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr auto 1fr; gap: 12px; align-items: center; }
.diagram-step { position: relative; min-height: 175px; padding: 25px 15px; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; border: 1px solid var(--border); background: var(--surface); }
.diagram-step > span { position: absolute; top: 12px; right: 12px; color: var(--muted); font-family: var(--fn-mono); font-size: .57rem; }
.diagram-step > div { color: var(--accent); margin-bottom: 15px; }
.diagram-step .icon { width: 26px; }
.diagram-step strong { font-size: .87rem; }
.diagram-step small { color: var(--text3); font-size: .65rem; }
.workflow-diagram > b { color: var(--accent); font-weight: 400; }
.product-section { border-top: 1px solid var(--border); }
.product-split { display: grid; grid-template-columns: .9fr 1.1fr; gap: 90px; align-items: center; }
.product-split-reverse { grid-template-columns: 1.1fr .9fr; }
.product-split-reverse > :first-child { order: 2; }
.product-copy h2 { margin-bottom: 25px; }
.product-copy > p { font-size: 1rem; line-height: 1.85; }
.check-list { list-style: none; margin: 28px 0 0; padding: 0; }
.check-list li { position: relative; padding: 12px 0 12px 30px; border-top: 1px solid var(--border); color: var(--text2); font-size: .88rem; }
.check-list li:last-child { border-bottom: 1px solid var(--border); }
.check-list li::before { content: '✓'; position: absolute; left: 2px; top: 11px; color: var(--good); font-weight: 900; }
.screenshot-placeholder { border: 1px solid var(--border); background: var(--surface); box-shadow: var(--shadow); }
.placeholder-top { height: 40px; background: #0a1628; display: flex; align-items: center; gap: 6px; padding: 0 14px; border-bottom: 2px solid var(--accent); }
.placeholder-top span { width: 7px; height: 7px; border: 1px solid rgba(255,255,255,.35); }
.placeholder-body { min-height: 410px; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 35px; text-align: center; background-image: linear-gradient(rgba(0,16,31,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(0,16,31,.045) 1px, transparent 1px); background-size: 30px 30px; }
.placeholder-body .icon { width: 44px; color: var(--accent); margin-bottom: 22px; }
.placeholder-body strong { font-family: var(--fn-mono); font-size: .8rem; letter-spacing: .08em; }
.placeholder-body span { color: var(--text3); font-size: .76rem; margin-top: 9px; max-width: 350px; }
.detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; margin-top: 32px; background: var(--border); border: 1px solid var(--border); }
.detail-grid > div { min-height: 155px; display: flex; flex-direction: column; gap: 8px; padding: 20px; background: var(--surface); }
.detail-grid strong { font-size: .81rem; }
.detail-grid span { color: var(--text3); font-size: .74rem; line-height: 1.65; }
.approval-visual { padding: 38px; border: 1px solid var(--border); background: var(--surface); box-shadow: var(--shadow); }
.approval-person { display: grid; grid-template-columns: 50px 1fr auto; gap: 16px; align-items: center; }
.approval-person > span { width: 48px; height: 48px; display: grid; place-items: center; background: var(--surface2); border: 1px solid var(--border); color: var(--accent); font-family: var(--fn-mono); font-size: .65rem; font-weight: 800; }
.approval-person div { display: flex; flex-direction: column; }
.approval-person small { color: var(--muted); font-family: var(--fn-mono); font-size: .55rem; letter-spacing: .1em; }
.approval-person strong { font-size: .86rem; }
.approval-person b { padding: 5px 8px; font-family: var(--fn-mono); font-size: .52rem; letter-spacing: .08em; text-transform: uppercase; }
.approval-person b.approved { color: var(--good); background: var(--good-bg); border: 1px solid rgba(43,209,121,.24); }
.approval-line { height: 45px; width: 1px; background: var(--border2); margin-left: 24px; }
.approval-note { margin-top: 30px; padding: 15px; background: var(--surface2); border-left: 3px solid var(--accent); color: var(--text3); font-size: .75rem; }
.report-placeholder { display: grid; place-items: center; padding: 35px; background: var(--surface2); border: 1px solid var(--border); }
.report-page { width: min(100%, 410px); min-height: 520px; background: white; border: 1px solid var(--border); box-shadow: 0 16px 40px rgba(0,16,31,.16); padding: 25px; }
.report-head { display: flex; justify-content: space-between; padding-bottom: 11px; border-bottom: 3px solid var(--accent); font-size: .58rem; font-weight: 800; }
.report-title { min-height: 115px; display: grid; place-items: center; text-align: center; color: var(--text3); font-family: var(--fn-mono); font-size: .65rem; border-bottom: 1px solid var(--border); }
.report-kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 7px; margin: 18px 0; }
.report-kpis i { height: 70px; background: var(--surface2); border: 1px solid var(--border); }
.report-table { border: 1px solid var(--border); }
.report-table i { display: block; height: 34px; border-bottom: 1px solid var(--border); }
.report-table i:first-child { background: var(--surface2); }
.report-table i:last-child { border: 0; }
.report-foot { margin-top: 30px; padding-top: 10px; border-top: 1px solid var(--border); color: var(--muted); font-size: .55rem; }
.security-feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--border); }
.security-mini { min-height: 230px; padding: 27px; background: var(--surface); border-right: 1px solid var(--border); }
.security-mini:last-child { border-right: 0; }
.security-mini .icon { width: 28px; color: var(--accent); margin-bottom: 28px; }
.security-mini h3 { margin-bottom: 11px; }
.security-mini p { font-size: .8rem; line-height: 1.7; }

/* Security */
.security-hero-badges { display: flex; justify-content: center; flex-wrap: wrap; gap: 9px; margin-top: 30px; }
.security-hero-badges span { display: inline-flex; align-items: center; gap: 8px; padding: 8px 12px; border: 1px solid var(--border); background: var(--surface); color: var(--text2); font-size: .69rem; font-weight: 700; }
.security-hero-badges .icon { width: 16px; color: var(--accent); }
.residency-callout { display: grid; grid-template-columns: 80px 1fr auto; gap: 30px; align-items: center; padding: 40px; background: var(--surface); border: 1px solid var(--border); box-shadow: var(--shadow); }
.residency-icon { width: 70px; height: 70px; display: grid; place-items: center; color: var(--accent); background: var(--surface2); border: 1px solid var(--border); }
.residency-icon .icon { width: 31px; }
.residency-callout h2 { font-size: clamp(2rem, 3.5vw, 3.1rem); }
.residency-callout p { margin: 13px 0 0; }
.region-code { min-width: 175px; display: flex; flex-direction: column; padding-left: 30px; border-left: 1px solid var(--border); }
.region-code small { font-family: var(--fn-mono); color: var(--muted); font-size: .57rem; letter-spacing: .13em; }
.region-code strong { color: var(--accent); font-family: var(--fn-mono); font-size: 1.25rem; }
.region-code span { color: var(--text3); font-size: .72rem; }
.security-stack { display: flex; flex-direction: column; gap: 0; }
.security-row { display: grid; grid-template-columns: 70px 1fr 250px; gap: 45px; padding: 65px 0; border-top: 1px solid var(--border); }
.security-row:last-child { border-bottom: 1px solid var(--border); }
.security-row-icon { width: 60px; height: 60px; display: grid; place-items: center; background: var(--surface2); border: 1px solid var(--border); color: var(--accent); }
.security-row-icon .icon { width: 28px; }
.security-row h2 { font-size: clamp(2rem, 3.5vw, 3.25rem); margin-bottom: 20px; }
.security-row > div > p { max-width: 700px; }
.security-row aside { align-self: start; display: flex; flex-direction: column; padding: 22px; background: var(--surface); border: 1px solid var(--border); }
.security-row aside strong { margin-bottom: 12px; font-size: .78rem; }
.security-row aside span { padding: 9px 0; color: var(--text3); border-top: 1px solid var(--border); font-family: var(--fn-mono); font-size: .62rem; }
.architecture-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px; align-items: center; }
.architecture-copy h2 { margin-bottom: 24px; }
.architecture-layers { display: flex; flex-direction: column; border: 1px solid rgba(255,255,255,.12); }
.architecture-layers > div { display: grid; grid-template-columns: 45px 1fr 1.2fr; align-items: center; gap: 18px; padding: 22px; border-bottom: 1px solid rgba(255,255,255,.1); }
.architecture-layers > div:last-child { border: 0; }
.architecture-layers span { color: var(--accent); font-family: var(--fn-mono); font-size: .65rem; }
.architecture-layers small { color: var(--hdr-muted); font-family: var(--fn-mono); font-size: .62rem; }
.assurance-note { display: grid; grid-template-columns: 65px 1fr auto; gap: 30px; align-items: center; padding: 34px; border: 1px solid var(--border); background: var(--surface); }
.assurance-note > div:first-child { width: 55px; height: 55px; display: grid; place-items: center; color: var(--accent); border: 1px solid var(--border); background: var(--surface2); }
.assurance-note .icon { width: 26px; }
.assurance-note h2 { font-family: var(--fn-body); font-size: 1.25rem; letter-spacing: 0; margin-bottom: 7px; }
.assurance-note p { margin: 0; font-size: .8rem; }

/* Pricing */
.pricing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; max-width: 1100px; margin: 0 auto; align-items: stretch; }
.pricing-grid-four { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.price-card { position: relative; padding: 42px; background: var(--surface); border: 1px solid var(--border); box-shadow: var(--shadow); display: flex; flex-direction: column; }
.price-featured { border-top: 3px solid var(--accent2); }
.featured-label { position: absolute; right: 20px; top: 18px; color: var(--accent2); font-family: var(--fn-mono); font-size: .57rem; letter-spacing: .12em; }
.tier-label { color: var(--accent); font-family: var(--fn-mono); font-size: .65rem; letter-spacing: .15em; font-weight: 800; }
.price-top h2 { font-size: 2.35rem; margin: 12px 0 14px; }
.price-top p { min-height: 55px; }
.price-placeholder { margin: 26px 0; color: var(--text); font-family: var(--fn-display); font-size: 2.2rem; }
.price-placeholder small { display: block; color: var(--muted); font-family: var(--fn-body); font-size: .67rem; letter-spacing: .07em; text-transform: uppercase; }
.price-card .check-list { margin: 0 0 30px; flex: 1; }
.table-wrap { overflow-x: auto; border: 1px solid var(--border); background: var(--surface); }
.pricing-table { width: 100%; border-collapse: collapse; min-width: 660px; }
.pricing-table-wide { min-width: 980px; }
.pricing-table th, .pricing-table td { padding: 17px 21px; border-bottom: 1px solid var(--border); text-align: left; font-size: .82rem; }
.pricing-table th { background: var(--table-head-bg); color: var(--table-head-text); font-family: var(--fn-mono); font-size: .64rem; letter-spacing: .1em; text-transform: uppercase; }
.pricing-table th:not(:first-child), .pricing-table td:not(:first-child) { text-align: center; }
.pricing-table tbody tr:last-child td { border-bottom: 0; }
.table-yes { color: var(--good); font-weight: 800; }

/* About */
.story-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 90px; align-items: center; }
.story-copy h2 { margin-bottom: 28px; }
.story-copy p { font-size: 1rem; line-height: 1.9; }
.story-quote { min-height: 440px; padding: 55px 45px; background: #0a1628; color: var(--hdr-text); display: flex; flex-direction: column; justify-content: center; border-left: 4px solid var(--accent); }
.story-quote > span { color: var(--accent); font-family: var(--fn-display); font-size: 5rem; line-height: .7; }
.story-quote blockquote { margin: 25px 0; font-family: var(--fn-display); font-size: 2rem; line-height: 1.3; }
.story-quote small { color: var(--hdr-muted); font-family: var(--fn-mono); font-size: .65rem; letter-spacing: .12em; text-transform: uppercase; }
.mission-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 90px; }
.mission-points { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid rgba(255,255,255,.12); }
.mission-points article { min-height: 280px; padding: 27px; border-right: 1px solid rgba(255,255,255,.12); }
.mission-points article:last-child { border: 0; }
.mission-points span { color: var(--accent); font-family: var(--fn-mono); font-size: .6rem; }
.mission-points h3 { margin: 40px 0 14px; }
.mission-points p { font-size: .78rem; }
.location-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 80px; align-items: center; }
.location-card { position: relative; min-height: 370px; padding: 50px; display: flex; align-items: flex-end; background: var(--surface3); border: 1px solid var(--border); overflow: hidden; }
.location-card::before { content: ''; position: absolute; width: 500px; height: 500px; border: 1px solid rgba(0,16,31,.12); border-radius: 50%; right: -220px; top: -250px; }
.location-card > div:last-child { position: relative; z-index: 2; max-width: 490px; }
.location-card small { color: var(--accent); font-family: var(--fn-mono); letter-spacing: .13em; font-size: .62rem; }
.location-card h2 { margin: 10px 0 17px; font-size: 2.6rem; }
.map-pin.large { right: 20%; top: 19%; width: 76px; height: 76px; }
.location-copy h2 { margin-bottom: 20px; }
.founder-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; max-width: 880px; margin: 0 auto; }
.founder-card { padding: 25px; background: var(--surface); border: 1px solid var(--border); }
.founder-photo { aspect-ratio: 4/3; display: grid; place-items: center; margin-bottom: 24px; background: var(--surface2); border: 1px dashed var(--border2); color: var(--muted); font-family: var(--fn-mono); font-size: .68rem; }
.founder-card h3 { margin-bottom: 4px; }
.founder-card > span { color: var(--accent); font-family: var(--fn-mono); font-size: .62rem; letter-spacing: .08em; }
.founder-card p { margin-top: 15px; font-size: .8rem; }

/* Contact page */
.contact-page-grid { grid-template-columns: .7fr 1.3fr; }
.contact-note { margin-top: 38px; padding: 19px; background: var(--surface2); border-left: 3px solid var(--accent); }
.contact-note strong { font-size: .82rem; }
.contact-note p { margin: 5px 0 0; font-size: .75rem; }
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--border); }
.process-card { min-height: 250px; padding: 30px; background: var(--surface); border-right: 1px solid var(--border); }
.process-card:last-child { border: 0; }
.process-card > span { color: var(--accent); font-family: var(--fn-mono); font-size: .63rem; }
.process-card h3 { margin: 45px 0 13px; }
.process-card p { font-size: .82rem; }

/* Legal */
.legal-hero { padding-bottom: 65px; }
.legal-copy { max-width: 850px; }
.legal-copy h2 { margin: 42px 0 12px; font-family: var(--fn-body); font-size: 1.2rem; letter-spacing: 0; }
.legal-copy p { line-height: 1.8; }
.placeholder-notice { padding: 24px; border: 1px solid rgba(245,166,35,.30); background: var(--warn-bg); }
.placeholder-notice strong { color: var(--accent); font-family: var(--fn-mono); font-size: .7rem; letter-spacing: .1em; }
.placeholder-notice p { margin: 7px 0 0; }

/* Footer */
.site-footer { padding: 65px 0 0; background: #00101f; color: var(--hdr-text); }
.footer-grid { display: grid; grid-template-columns: 1.6fr repeat(3, 1fr); gap: 55px; padding-bottom: 55px; }
.brand-footer .brand-word strong { color: var(--hdr-text); }
.footer-brand p { max-width: 300px; margin-top: 20px; color: var(--hdr-muted); font-size: .8rem; }
.footer-col { display: flex; flex-direction: column; gap: 9px; }
.footer-col h2 { margin-bottom: 8px; color: var(--hdr-text); font-family: var(--fn-mono); font-size: .63rem; letter-spacing: .13em; text-transform: uppercase; }
.footer-col a, .footer-col span { color: var(--hdr-muted); font-size: .76rem; }
.footer-col a:hover { color: var(--hdr-text); }
.footer-bottom { min-height: 72px; display: flex; justify-content: space-between; align-items: center; gap: 25px; border-top: 1px solid rgba(255,255,255,.1); color: var(--hdr-muted); font-size: .68rem; }
.residency-badge { display: inline-flex; align-items: center; gap: 8px; padding: 7px 10px; border: 1px solid rgba(255,255,255,.12); font-family: var(--fn-mono); letter-spacing: .04em; }
.residency-badge .icon { width: 15px; color: var(--accent); }

.icon { width: 24px; height: 24px; flex: none; }

/* Progressive reveal */
.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s var(--ease), transform .65s var(--ease); }
.js .reveal.is-visible { opacity: 1; transform: none; }
.js .reveal-delay { transition-delay: .12s; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .001ms !important; animation-duration: .001ms !important; animation-iteration-count: 1 !important; }
  .js .reveal { opacity: 1; transform: none; }
}

/* Responsive */
@media (max-width: 1080px) {
  .nav-shell { gap: 20px; }
  .nav-link { padding-inline: 9px; }
  .nav-actions { gap: 12px; }
  .hero-grid { grid-template-columns: 1fr; gap: 45px; }
  .hero-copy { max-width: 820px; }
  .hero-visual { min-height: 520px; max-width: 840px; }
  .floating-security { left: 18px; }
  .floating-report { right: 15px; }
  .feature-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .trust-layout, .product-split, .product-split-reverse, .story-grid, .location-grid { gap: 55px; }
  .security-row { grid-template-columns: 60px 1fr; }
  .security-row aside { grid-column: 2; display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .security-row aside strong { grid-column: 1 / -1; }
  .security-row aside span { border-top: 0; border-left: 1px solid var(--border); padding: 6px 10px; }
  .architecture-grid { gap: 50px; }
  .mission-grid { grid-template-columns: 1fr; gap: 45px; }
}

@media (max-width: 900px) {
  .site-header { min-height: 70px; }
  .nav-shell { min-height: 70px; grid-template-columns: 1fr auto; }
  .nav-toggle { display: block; }
  .nav-toggle[aria-expanded="true"] span:nth-of-type(2) { transform: translateY(6px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-of-type(3) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-of-type(4) { transform: translateY(-6px) rotate(-45deg); }
  .primary-nav { position: fixed; top: 70px; left: 0; right: 0; bottom: 0; display: flex; flex-direction: column; align-items: stretch; justify-content: space-between; gap: 30px; padding: 24px 20px 35px; background: #0a1628; transform: translateX(100%); transition: transform .3s var(--ease); overflow-y: auto; }
  .primary-nav.is-open { transform: translateX(0); }
  .nav-links { flex-direction: column; align-items: stretch; }
  .nav-link { padding: 14px 6px; border-bottom: 1px solid rgba(255,255,255,.1); font-size: 1rem; }
  .nav-link.is-active::after { display: none; }
  .nav-actions { display: grid; grid-template-columns: 1fr 1fr; }
  .nav-login { min-height: 44px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.16); }
  .split-heading, .trust-layout, .product-split, .product-split-reverse, .story-grid, .location-grid, .contact-grid, .contact-page-grid, .architecture-grid { grid-template-columns: 1fr; }
  .product-split-reverse > :first-child { order: 0; }
  .workflow-line, .workflow-diagram { grid-template-columns: repeat(5, 1fr); gap: 8px; }
  .workflow-arrow, .workflow-diagram > b { display: none; }
  .workflow-node { min-height: 145px; padding: 14px 8px; }
  .diagram-step { min-height: 150px; }
  .mission-points { grid-template-columns: 1fr; }
  .mission-points article { min-height: 190px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.12); }
  .mission-points h3 { margin-top: 24px; }
  .residency-callout { grid-template-columns: 70px 1fr; }
  .region-code { grid-column: 2; border-left: 0; border-top: 1px solid var(--border); padding: 18px 0 0; }
  .architecture-copy { max-width: 720px; }
  .assurance-note { grid-template-columns: 55px 1fr; }
  .assurance-note .button { grid-column: 2; justify-self: start; }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-col:last-child { grid-column: 2; }
}

@media (max-width: 700px) {
  .container, .container.narrow { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 78px 0; }
  .section-compact { padding: 50px 0; }
  h1 { font-size: clamp(2.8rem, 15vw, 4.35rem); }
  h2 { font-size: clamp(2rem, 10vw, 3rem); }
  .hero { padding: 72px 0 80px; }
  .hero-copy h1 { font-size: clamp(3rem, 15vw, 4.5rem); }
  .hero-actions, .page-hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .button, .page-hero-actions .button { width: 100%; }
  .hero-trust-row { flex-direction: column; gap: 10px; }
  .hero-visual { min-height: 460px; margin-inline: -5px; }
  .app-window { transform: none; }
  .window-body { grid-template-columns: 42px 1fr; }
  .mock-content { padding: 18px 13px; }
  .mock-kpis { grid-template-columns: 1fr 1fr; }
  .mock-kpis > div:last-child { display: none; }
  .mock-chart { height: 145px; }
  .floating-card { min-width: 0; max-width: 210px; padding: 11px 13px; }
  .floating-report { display: none; }
  .floating-security { left: 12px; bottom: 0; }
  .proof-inner { grid-template-columns: 1fr; gap: 12px; padding: 25px 0; }
  .logo-row { grid-template-columns: 1fr 1fr; }
  .logo-row span { border: 1px solid var(--border); min-height: 45px; }
  .feature-grid-3, .security-feature-grid, .pricing-grid, .founder-grid, .process-grid { grid-template-columns: 1fr; }
  .security-feature-grid { border: 0; gap: 12px; }
  .security-mini { border: 1px solid var(--border); }
  .feature-card { min-height: 305px; }
  .workflow-line, .workflow-diagram { display: flex; flex-direction: column; }
  .workflow-node, .diagram-step { width: 100%; min-height: 125px; }
  .trust-layout { gap: 40px; }
  .map-card { min-height: 230px; }
  .pilot-banner, .cta-panel { grid-template-columns: 1fr; padding: 35px 27px; }
  .pilot-banner .button, .cta-panel .button { width: 100%; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .contact-form { padding: 24px 18px; }
  .form-footer { flex-direction: column; align-items: stretch; }
  .page-hero { padding: 78px 0 65px; }
  .page-hero h1 { font-size: clamp(2.8rem, 14vw, 4.4rem); }
  .detail-grid { grid-template-columns: 1fr; }
  .placeholder-body { min-height: 310px; }
  .approval-visual { padding: 24px 17px; }
  .approval-person { grid-template-columns: 44px 1fr; }
  .approval-person > b { grid-column: 2; justify-self: start; }
  .report-placeholder { padding: 18px; }
  .residency-callout { grid-template-columns: 1fr; padding: 26px; }
  .region-code { grid-column: 1; }
  .security-row { grid-template-columns: 1fr; gap: 24px; padding: 48px 0; }
  .security-row aside { grid-column: 1; grid-template-columns: 1fr; }
  .security-row aside span { border-left: 0; border-top: 1px solid var(--border); padding: 9px 0; }
  .architecture-layers > div { grid-template-columns: 35px 1fr; }
  .architecture-layers small { grid-column: 2; }
  .assurance-note { grid-template-columns: 1fr; }
  .assurance-note .button { grid-column: 1; width: 100%; }
  .price-card { padding: 33px 24px; }
  .story-quote { min-height: 350px; padding: 38px 28px; }
  .story-quote blockquote { font-size: 1.65rem; }
  .location-card { min-height: 340px; padding: 30px; }
  .location-card h2 { font-size: 2.15rem; }
  .process-grid { border: 0; gap: 12px; }
  .process-card { border: 1px solid var(--border); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 35px 25px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-col:last-child { grid-column: auto; }
  .footer-bottom { padding: 22px 0; flex-direction: column; align-items: flex-start; }
}


/* Brand and legal refinements */
.legal-copy a { color: #087f86; text-decoration: underline; text-underline-offset: 3px; }
.legal-copy strong { color: var(--text); }
.contact-detail a { color: var(--text); font-weight: 700; }
.contact-detail a:hover { color: #087f86; }
.price-card .button-accent { color: #071426; }
@media (max-width: 700px) { .pricing-grid-four { grid-template-columns: 1fr; } }

/* Supplied FinQ brand asset */
@media (max-width: 720px) { .brand-logo { width: 42px; height: 42px; } .brand-word { font-size: 1.02rem; } }


/* Language version switch */
.language-switch { display: inline-flex; align-items: center; gap: 2px; padding: 3px; border: 1px solid rgba(255,255,255,.20); border-radius: 999px; background: rgba(255,255,255,.05); }
.language-switch a { min-width: 34px; padding: 6px 9px; border-radius: 999px; color: rgba(255,255,255,.68); font-size: .76rem; font-weight: 800; letter-spacing: .08em; line-height: 1; text-align: center; }
.language-switch a:hover, .language-switch a:focus-visible { color: #fff; background: rgba(255,255,255,.10); }
.language-switch a.is-active { color: var(--header-bg, #0A1628); background: var(--accent, #42E8E0); }
@media (max-width: 900px) { .language-switch { grid-column: 1 / -1; justify-self: start; margin-bottom: 2px; } }
