/* ==========================================================================
   Vina Blockchain Capital — Design System
   Author: Vinathis Corporation (THiG)
   Single stylesheet. No framework dependency.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Tokens
   -------------------------------------------------------------------------- */
:root {
  /* Surfaces */
  --bg: #070b14;
  --bg-alt: #0b1120;
  --bg-elev: #101a2c;
  --surface: rgba(255, 255, 255, 0.035);
  --surface-hover: rgba(255, 255, 255, 0.06);
  --border: rgba(148, 163, 184, 0.18);
  --border-strong: rgba(148, 163, 184, 0.34);

  /* Text */
  --text: #e8eefb;
  --text-soft: #b6c2d9;
  --muted: #8496b1;

  /* Brand */
  --accent: #22d3ee;
  --accent-deep: #0891b2;
  --gold: #f0b90b;
  --gold-deep: #c99400;
  --positive: #16c784;
  --negative: #ea3943;

  /* Effects */
  --glow: 0 0 0 1px rgba(34, 211, 238, 0.25), 0 18px 50px -20px rgba(34, 211, 238, 0.45);
  --shadow-sm: 0 2px 8px rgba(2, 6, 16, 0.4);
  --shadow: 0 18px 40px -24px rgba(2, 6, 16, 0.9);
  --shadow-lg: 0 40px 90px -40px rgba(2, 6, 16, 1);

  /* Geometry */
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --radius-pill: 999px;
  --maxw: 1200px;
  --maxw-narrow: 780px;
  --header-h: 72px;

  /* Type */
  --font-sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-display: "Sora", var(--font-sans);
  --font-mono: "SFMono-Regular", ui-monospace, Menlo, Consolas, monospace;

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --dur: 0.45s;
}

/* --------------------------------------------------------------------------
   2. Reset & base
   -------------------------------------------------------------------------- */
*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 24px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: clamp(15.5px, 0.4vw + 14.6px, 17px);
  line-height: 1.7;
  letter-spacing: 0.005em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Ambient background wash */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(900px 520px at 12% -6%, rgba(34, 211, 238, 0.14), transparent 62%),
    radial-gradient(760px 460px at 88% 4%, rgba(240, 185, 11, 0.09), transparent 60%),
    radial-gradient(1000px 700px at 50% 108%, rgba(8, 145, 178, 0.12), transparent 65%);
}

/* Fine grid texture */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.35;
  background-image:
    linear-gradient(rgba(148, 163, 184, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.05) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 20%, transparent 75%);
}

img,
svg,
iframe { max-width: 100%; }

img {
  height: auto;
  display: block;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s var(--ease), opacity 0.2s var(--ease);
}

a:hover { color: #67e8f9; }

p { margin: 0 0 1.1em; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.02em;
  margin: 0 0 0.6em;
  color: #fff;
  text-wrap: balance;
}

h1 { font-size: clamp(2.1rem, 4.2vw + 0.9rem, 3.65rem); }
h2 { font-size: clamp(1.65rem, 2.1vw + 1rem, 2.5rem); }
h3 { font-size: clamp(1.2rem, 0.8vw + 1rem, 1.45rem); }
h4 { font-size: 1.08rem; }

ul, ol { padding-left: 1.15rem; }
li { margin-bottom: 0.45em; }

hr {
  border: 0;
  border-top: 1px solid var(--border);
  margin: 3rem 0;
}

::selection {
  background: rgba(34, 211, 238, 0.28);
  color: #fff;
}

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

/* --------------------------------------------------------------------------
   3. Layout primitives
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: clamp(18px, 4vw, 34px);
}

.container-narrow {
  max-width: var(--maxw-narrow);
}

.section {
  position: relative;
  padding-block: clamp(56px, 8vw, 104px);
}

.section--tight { padding-block: clamp(40px, 5vw, 64px); }

.section--alt {
  background: linear-gradient(180deg, rgba(11, 17, 32, 0) 0%, rgba(11, 17, 32, 0.85) 12%, rgba(11, 17, 32, 0.85) 88%, rgba(11, 17, 32, 0) 100%);
}

.section-head {
  max-width: 760px;
  margin-bottom: clamp(32px, 4vw, 56px);
}

.section-head--center {
  margin-inline: auto;
  text-align: center;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

.kicker::before {
  content: "";
  width: 26px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent));
}

.section-head--center .kicker::after {
  content: "";
  width: 26px;
  height: 1px;
  background: linear-gradient(90deg, var(--accent), transparent);
}

.lead {
  font-size: clamp(1.02rem, 0.5vw + 0.92rem, 1.18rem);
  color: var(--text-soft);
  line-height: 1.75;
}

.muted { color: var(--muted); }
.small { font-size: 0.86rem; }
.center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2.25rem; }
.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;
}

/* Grid helpers */
.grid { display: grid; gap: clamp(16px, 2vw, 24px); }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
}

.split--reverse .split__media { order: -1; }

/* --------------------------------------------------------------------------
   4. Skip link
   -------------------------------------------------------------------------- */
.skip-link {
  position: absolute;
  left: 12px;
  top: -100px;
  z-index: 2000;
  background: var(--accent);
  color: #04202a;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  transition: top 0.2s var(--ease);
}

.skip-link:focus { top: 12px; color: #04202a; }

/* --------------------------------------------------------------------------
   5. Market ticker
   -------------------------------------------------------------------------- */
.ticker {
  background: #05080f;
  border-bottom: 1px solid var(--border);
}

.ticker__inner {
  max-width: var(--maxw);
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 clamp(18px, 4vw, 34px);
}

.ticker__label {
  flex: 0 0 auto;
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 7px;
}

.ticker__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--positive);
  box-shadow: 0 0 0 0 rgba(22, 199, 132, 0.7);
  animation: pulse 2.4s infinite;
}

@keyframes pulse {
  70% { box-shadow: 0 0 0 8px rgba(22, 199, 132, 0); }
  100% { box-shadow: 0 0 0 0 rgba(22, 199, 132, 0); }
}

.ticker iframe {
  display: block;
  width: 100%;
  height: 40px;
  border: 0;
  filter: invert(0.92) hue-rotate(180deg) saturate(0.85);
}

/* --------------------------------------------------------------------------
   6. Header / navigation
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(7, 11, 20, 0.72);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}

.site-header.is-stuck {
  border-bottom-color: var(--border);
  background: rgba(7, 11, 20, 0.92);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: var(--header-h);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.brand img {
  height: 40px;
  width: auto;
}

.brand__text {
  display: none;
  line-height: 1.15;
}

.brand__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: #fff;
  letter-spacing: -0.01em;
}

.brand__sub {
  font-size: 0.68rem;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav__menu li { margin: 0; }

.nav__link {
  display: block;
  padding: 9px 13px;
  border-radius: var(--radius-sm);
  color: var(--text-soft);
  font-size: 0.925rem;
  font-weight: 500;
  white-space: nowrap;
  transition: color 0.2s var(--ease), background 0.2s var(--ease);
}

.nav__link:hover {
  color: #fff;
  background: var(--surface-hover);
}

.nav__link[aria-current="page"] {
  color: #fff;
  background: rgba(34, 211, 238, 0.11);
  box-shadow: inset 0 0 0 1px rgba(34, 211, 238, 0.24);
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

/* Duplicate of the header CTA, revealed only inside the mobile drawer */
.nav__cta { display: none; }

.nav__toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.nav__toggle span,
.nav__toggle span::before,
.nav__toggle span::after {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.2s var(--ease);
}

.nav__toggle span::before,
.nav__toggle span::after {
  content: "";
  position: absolute;
}

.nav__toggle span::before { transform: translateY(-6px); }
.nav__toggle span::after { transform: translateY(6px); }

.nav__toggle[aria-expanded="true"] span { background: transparent; }
.nav__toggle[aria-expanded="true"] span::before { transform: rotate(45deg); }
.nav__toggle[aria-expanded="true"] span::after { transform: rotate(-45deg); }

/* --------------------------------------------------------------------------
   7. Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 22px;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  font-family: var(--font-sans);
  font-size: 0.94rem;
  font-weight: 600;
  line-height: 1.2;
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
  transition: transform 0.2s var(--ease), box-shadow 0.25s var(--ease),
    background 0.25s var(--ease), border-color 0.25s var(--ease), color 0.2s var(--ease);
}

.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-deep) 100%);
  color: #032029;
  box-shadow: 0 14px 30px -14px rgba(34, 211, 238, 0.8);
}

.btn--primary:hover {
  color: #032029;
  box-shadow: 0 20px 42px -14px rgba(34, 211, 238, 0.95);
}

.btn--gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
  color: #26190a;
  box-shadow: 0 14px 30px -14px rgba(240, 185, 11, 0.75);
}

.btn--gold:hover { color: #26190a; }

.btn--ghost {
  background: var(--surface);
  border-color: var(--border-strong);
  color: var(--text);
}

.btn--ghost:hover {
  background: var(--surface-hover);
  border-color: var(--accent);
  color: #fff;
}

.btn--sm { padding: 9px 16px; font-size: 0.86rem; }
.btn--block { width: 100%; }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.btn-row--center { justify-content: center; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-weight: 600;
  font-size: 0.92rem;
}

.link-arrow::after {
  content: "→";
  transition: transform 0.2s var(--ease);
}

.link-arrow:hover::after { transform: translateX(4px); }

/* --------------------------------------------------------------------------
   8. Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  padding-block: clamp(56px, 8vw, 108px) clamp(48px, 7vw, 92px);
  overflow: hidden;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 16px 7px 8px;
  border-radius: var(--radius-pill);
  background: var(--surface);
  border: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--text-soft);
  margin-bottom: 22px;
}

.hero__badge b {
  background: rgba(34, 211, 238, 0.16);
  color: var(--accent);
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero h1 { margin-bottom: 20px; }

.hero h1 .grad {
  background: linear-gradient(120deg, var(--accent) 0%, #a5f3fc 40%, var(--gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__lead {
  font-size: clamp(1.02rem, 0.55vw + 0.92rem, 1.2rem);
  color: var(--text-soft);
  max-width: 56ch;
  margin-bottom: 30px;
}

.hero__media {
  position: relative;
}

.hero__media img {
  width: 100%;
  border-radius: var(--radius-lg);
  filter: drop-shadow(0 40px 60px rgba(2, 6, 16, 0.85));
}

.hero__media::before {
  content: "";
  position: absolute;
  inset: -8% -6%;
  background: radial-gradient(closest-side, rgba(34, 211, 238, 0.22), transparent 70%);
  z-index: -1;
  filter: blur(10px);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 22px;
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 0.84rem;
  color: var(--muted);
}

.trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.trust-row span::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
}

/* Page hero (subpages) */
.page-hero {
  padding-block: clamp(44px, 6vw, 78px) clamp(28px, 4vw, 44px);
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(34, 211, 238, 0.07), transparent 70%);
}

.page-hero h1 { margin-bottom: 16px; }
.page-hero .lead { max-width: 68ch; margin-bottom: 0; }

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  font-size: 0.8rem;
  color: var(--muted);
}

.breadcrumb li { margin: 0; display: flex; gap: 8px; align-items: center; }
.breadcrumb li + li::before { content: "/"; color: var(--border-strong); }
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--accent); }

/* --------------------------------------------------------------------------
   9. Cards
   -------------------------------------------------------------------------- */
.card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(22px, 2.4vw, 30px);
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease),
    background 0.35s var(--ease), box-shadow 0.35s var(--ease);
  overflow: hidden;
}

.card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(140deg, rgba(34, 211, 238, 0.09), transparent 45%);
  opacity: 0;
  transition: opacity 0.35s var(--ease);
  pointer-events: none;
}

.card:hover {
  transform: translateY(-5px);
  border-color: var(--border-strong);
  background: var(--surface-hover);
  box-shadow: var(--shadow);
}

.card:hover::after { opacity: 1; }

.card h3 { margin-bottom: 10px; }
.card p:last-child { margin-bottom: 0; }

.card__icon {
  width: 48px;
  height: 48px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  background: linear-gradient(140deg, rgba(34, 211, 238, 0.2), rgba(34, 211, 238, 0.04));
  border: 1px solid rgba(34, 211, 238, 0.25);
  color: var(--accent);
}

.card__icon--gold {
  background: linear-gradient(140deg, rgba(240, 185, 11, 0.22), rgba(240, 185, 11, 0.04));
  border-color: rgba(240, 185, 11, 0.3);
  color: var(--gold);
}

.card__icon svg { width: 23px; height: 23px; }

.card__tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}

.card--link { display: block; color: inherit; }
.card--link:hover { color: inherit; }

.card--feature {
  background: linear-gradient(150deg, rgba(34, 211, 238, 0.09), rgba(255, 255, 255, 0.02));
  border-color: rgba(34, 211, 238, 0.26);
}

/* --------------------------------------------------------------------------
   10. Stats
   -------------------------------------------------------------------------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.stat {
  background: rgba(11, 17, 32, 0.9);
  padding: clamp(22px, 2.6vw, 34px) clamp(18px, 2vw, 26px);
  text-align: center;
  transition: background 0.3s var(--ease);
}

.stat:hover { background: rgba(16, 26, 44, 0.95); }

.stat__num {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 2.4vw + 1rem, 2.5rem);
  font-weight: 700;
  line-height: 1.05;
  background: linear-gradient(120deg, #fff, var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 8px;
}

.stat__label {
  font-size: 0.82rem;
  color: var(--muted);
  letter-spacing: 0.04em;
  margin: 0;
}

/* --------------------------------------------------------------------------
   11. Process steps
   -------------------------------------------------------------------------- */
.steps {
  display: grid;
  gap: clamp(16px, 2vw, 22px);
  grid-template-columns: repeat(4, minmax(0, 1fr));
  counter-reset: step;
}

.step {
  position: relative;
  padding: clamp(22px, 2.4vw, 28px);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease);
}

.step:hover { transform: translateY(-4px); border-color: rgba(34, 211, 238, 0.4); }

.step__num {
  counter-increment: step;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.step__num::before {
  content: "0" counter(step);
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: rgba(34, 211, 238, 0.12);
  border: 1px solid rgba(34, 211, 238, 0.28);
}

.step h3 { font-size: 1.06rem; margin-bottom: 8px; }
.step p { font-size: 0.92rem; color: var(--text-soft); margin: 0; }

/* Vertical timeline */
.timeline {
  position: relative;
  list-style: none;
  padding: 0 0 0 34px;
  margin: 0;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 9px;
  top: 6px;
  bottom: 6px;
  width: 1px;
  background: linear-gradient(180deg, var(--accent), rgba(34, 211, 238, 0.05));
}

.timeline li {
  position: relative;
  margin-bottom: 26px;
}

.timeline li::before {
  content: "";
  position: absolute;
  left: -30px;
  top: 8px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--accent);
}

.timeline h3 { font-size: 1.02rem; margin-bottom: 6px; }
.timeline p { margin: 0; color: var(--text-soft); font-size: 0.94rem; }

/* --------------------------------------------------------------------------
   12. Sector / tag chips
   -------------------------------------------------------------------------- */
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.chips li { margin: 0; }

.chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 15px;
  border-radius: var(--radius-pill);
  background: var(--surface);
  border: 1px solid var(--border);
  font-size: 0.84rem;
  color: var(--text-soft);
  transition: border-color 0.25s var(--ease), color 0.25s var(--ease), background 0.25s var(--ease);
}

a.chip:hover {
  border-color: var(--accent);
  color: #fff;
  background: rgba(34, 211, 238, 0.1);
}

.chip--gold { border-color: rgba(240, 185, 11, 0.35); color: var(--gold); }

/* --------------------------------------------------------------------------
   13. Checklist
   -------------------------------------------------------------------------- */
.checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 13px;
}

.checklist li {
  position: relative;
  padding-left: 34px;
  margin: 0;
  color: var(--text-soft);
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(22, 199, 132, 0.14);
  border: 1px solid rgba(22, 199, 132, 0.4);
}

.checklist li::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 9px;
  width: 5px;
  height: 9px;
  border: solid var(--positive);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.checklist--cross li::before {
  background: rgba(234, 57, 67, 0.13);
  border-color: rgba(234, 57, 67, 0.4);
}

.checklist--cross li::after {
  left: 8.5px;
  top: 9px;
  width: 9px;
  height: 9px;
  border: 0;
  background:
    linear-gradient(45deg, transparent 44%, var(--negative) 44%, var(--negative) 56%, transparent 56%),
    linear-gradient(-45deg, transparent 44%, var(--negative) 44%, var(--negative) 56%, transparent 56%);
  transform: none;
}

.checklist strong { color: var(--text); }

/* --------------------------------------------------------------------------
   14. Partner logos
   -------------------------------------------------------------------------- */
.partners {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 1px;
  /* Matches the tile colour so an incomplete last row leaves no visible gap block */
  background: rgba(11, 17, 32, 0.9);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.partners__item {
  background: rgba(11, 17, 32, 0.9);
  box-shadow: inset 0 0 0 1px var(--border);
  min-height: 104px;
  display: grid;
  place-items: center;
  padding: 20px;
  transition: background 0.3s var(--ease);
}

.partners__item:hover { background: rgba(20, 32, 54, 0.95); }

.partners__item img {
  max-height: 34px;
  width: auto;
  max-width: 100%;
  opacity: 0.62;
  filter: grayscale(1) brightness(1.9);
  transition: opacity 0.3s var(--ease), filter 0.3s var(--ease);
}

.partners__item:hover img {
  opacity: 1;
  filter: grayscale(0) brightness(1.05);
}

/* --------------------------------------------------------------------------
   15. Quote / founder
   -------------------------------------------------------------------------- */
.quote {
  position: relative;
  background: linear-gradient(150deg, rgba(34, 211, 238, 0.08), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 52px);
}

.quote::before {
  content: "\201C";
  position: absolute;
  top: -6px;
  left: 22px;
  font-family: Georgia, serif;
  font-size: 7rem;
  line-height: 1;
  color: rgba(34, 211, 238, 0.18);
}

.quote blockquote {
  margin: 0 0 26px;
  font-size: clamp(1.05rem, 0.8vw + 0.95rem, 1.32rem);
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.6;
  color: #f2f7ff;
  position: relative;
}

.quote__author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.quote__author img {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(34, 211, 238, 0.4);
}

.quote__author strong { display: block; color: #fff; font-family: var(--font-display); }
.quote__author span { font-size: 0.85rem; color: var(--muted); }

/* --------------------------------------------------------------------------
   16. Accordion (FAQ)
   -------------------------------------------------------------------------- */
.faq { display: grid; gap: 12px; }

.faq details {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease);
}

.faq details[open] {
  border-color: rgba(34, 211, 238, 0.35);
  background: rgba(34, 211, 238, 0.05);
}

.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 56px 18px 22px;
  position: relative;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: #fff;
}

.faq summary::-webkit-details-marker { display: none; }

.faq summary::after {
  content: "";
  position: absolute;
  right: 22px;
  top: 50%;
  width: 10px;
  height: 10px;
  border: solid var(--accent);
  border-width: 0 2px 2px 0;
  transform: translateY(-70%) rotate(45deg);
  transition: transform 0.25s var(--ease);
}

.faq details[open] summary::after { transform: translateY(-30%) rotate(-135deg); }

.faq__body {
  padding: 0 22px 20px;
  color: var(--text-soft);
  font-size: 0.95rem;
}

.faq__body p:last-child { margin-bottom: 0; }

/* --------------------------------------------------------------------------
   17. Callouts & notes
   -------------------------------------------------------------------------- */
.callout {
  display: flex;
  gap: 16px;
  padding: 20px 24px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
  font-size: 0.93rem;
  color: var(--text-soft);
}

.callout__icon {
  flex: 0 0 auto;
  width: 26px;
  height: 26px;
  color: var(--accent);
}

.callout p:last-child { margin-bottom: 0; }

.callout--warn {
  border-color: rgba(240, 185, 11, 0.34);
  background: rgba(240, 185, 11, 0.06);
}

.callout--warn .callout__icon { color: var(--gold); }

.footnote {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 16px;
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   18. Tables
   -------------------------------------------------------------------------- */
.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  -webkit-overflow-scrolling: touch;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
  min-width: 560px;
}

th, td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}

thead th {
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
}

tbody tr:last-child td { border-bottom: 0; }
tbody tr:hover { background: rgba(255, 255, 255, 0.02); }
td { color: var(--text-soft); }

/* --------------------------------------------------------------------------
   19. Embeds
   -------------------------------------------------------------------------- */
.embed {
  position: relative;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #05080f;
  box-shadow: var(--shadow-lg);
}

.embed__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 18px;
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  font-size: 0.8rem;
  color: var(--muted);
  flex-wrap: wrap;
}

.embed__bar strong {
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.9rem;
}

.embed iframe {
  display: block;
  width: 100%;
  height: min(80vh, 820px);
  border: 0;
}

.embed__live {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--positive);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* --------------------------------------------------------------------------
   20. Forms
   -------------------------------------------------------------------------- */
.form-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 40px);
}

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

.field { margin-bottom: 18px; }

.field label {
  display: block;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 7px;
}

.field .req { color: var(--gold); }

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 15px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: rgba(3, 7, 15, 0.6);
  color: var(--text);
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s var(--ease);
}

.field textarea { min-height: 132px; resize: vertical; }

.field input::placeholder,
.field textarea::placeholder { color: #5d6d86; }

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(3, 7, 15, 0.9);
  box-shadow: 0 0 0 3px rgba(34, 211, 238, 0.15);
}

.field select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--muted) 50%),
    linear-gradient(135deg, var(--muted) 50%, transparent 50%);
  background-position: calc(100% - 20px) 50%, calc(100% - 14px) 50%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 42px;
}

.field select option { background: var(--bg-elev); color: var(--text); }

.consent {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 22px;
}

.consent input {
  width: 17px;
  height: 17px;
  margin-top: 3px;
  flex: 0 0 auto;
  accent-color: var(--accent);
}

.form-status {
  margin-top: 16px;
  font-size: 0.88rem;
  color: var(--positive);
}

/* --------------------------------------------------------------------------
   21. Contact cards
   -------------------------------------------------------------------------- */
.office {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(22px, 2.4vw, 30px);
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease);
}

.office:hover { transform: translateY(-4px); border-color: rgba(34, 211, 238, 0.4); }

.office__flag {
  font-size: 1.6rem;
  line-height: 1;
  margin-bottom: 14px;
  display: block;
}

.office h3 { font-size: 1.05rem; margin-bottom: 4px; }

.office__role {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.office address {
  font-style: normal;
  color: var(--text-soft);
  font-size: 0.92rem;
  line-height: 1.65;
}

.office address a { color: var(--text-soft); }
.office address a:hover { color: var(--accent); }

/* --------------------------------------------------------------------------
   22. CTA band
   -------------------------------------------------------------------------- */
.cta-band {
  position: relative;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(34, 211, 238, 0.28);
  background:
    radial-gradient(700px 320px at 15% 0%, rgba(34, 211, 238, 0.2), transparent 65%),
    radial-gradient(600px 300px at 90% 100%, rgba(240, 185, 11, 0.14), transparent 60%),
    rgba(11, 17, 32, 0.85);
  padding: clamp(32px, 4.5vw, 62px);
  text-align: center;
  overflow: hidden;
}

.cta-band h2 { margin-bottom: 14px; }
.cta-band p { color: var(--text-soft); max-width: 60ch; margin-inline: auto; margin-bottom: 28px; }

/* --------------------------------------------------------------------------
   23. Footer
   -------------------------------------------------------------------------- */
.site-footer {
  margin-top: clamp(48px, 6vw, 80px);
  border-top: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(11, 17, 32, 0.5), rgba(5, 8, 15, 0.95));
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: clamp(26px, 3vw, 44px);
  padding-block: clamp(44px, 5vw, 66px) 34px;
}

/* width:auto is required — without it the intrinsic width attribute wins
   and squashes the logo out of proportion */
.footer__brand img { height: 64px; width: auto; margin-bottom: 18px; }

.footer__brand p {
  font-size: 0.9rem;
  color: var(--muted);
  max-width: 34ch;
}

.footer h4 {
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 16px;
}

.footer__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer__list li { margin-bottom: 10px; }

.footer__list a {
  color: var(--muted);
  font-size: 0.9rem;
}

.footer__list a:hover { color: var(--accent); }

.social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.social a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text-soft);
  transition: border-color 0.25s var(--ease), color 0.25s var(--ease), transform 0.25s var(--ease);
}

.social a:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-3px);
}

.social svg { width: 17px; height: 17px; }

.footer__legal {
  border-top: 1px solid var(--border);
  padding-block: 24px 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 26px;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--muted);
}

.footer__legal nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
}

.footer__legal a { color: var(--muted); }
.footer__legal a:hover { color: var(--accent); }

.footer__risk {
  border-top: 1px solid var(--border);
  padding-block: 22px 30px;
  font-size: 0.78rem;
  line-height: 1.65;
  color: #6d7d95;
}

/* --------------------------------------------------------------------------
   24. Legal document pages
   -------------------------------------------------------------------------- */
.doc {
  max-width: 78ch;
}

.doc h2 {
  font-size: clamp(1.25rem, 1vw + 1.05rem, 1.55rem);
  margin-top: 2.4em;
  padding-top: 1.2em;
  border-top: 1px solid var(--border);
}

.doc h2:first-of-type { margin-top: 1em; }
.doc h3 { font-size: 1.06rem; margin-top: 1.8em; }
.doc p, .doc li { color: var(--text-soft); }
.doc ul { margin-bottom: 1.2em; }

.doc__meta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-mono);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 7px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  margin-bottom: 26px;
}

.toc {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 26px;
  margin-bottom: 34px;
}

.toc h4 { margin-bottom: 12px; }
.toc ol { margin: 0; padding-left: 1.1rem; }
.toc li { margin-bottom: 7px; font-size: 0.9rem; }

/* --------------------------------------------------------------------------
   25. 404
   -------------------------------------------------------------------------- */
.error-page {
  min-height: 70vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding-block: 80px;
}

.error-page__code {
  font-family: var(--font-display);
  font-size: clamp(4.5rem, 14vw, 9rem);
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(120deg, var(--accent), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 12px;
}

/* --------------------------------------------------------------------------
   26. Scroll reveal
   -------------------------------------------------------------------------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  will-change: opacity, transform;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

/* Back to top */
.to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 800;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  background: rgba(11, 17, 32, 0.9);
  backdrop-filter: blur(8px);
  color: var(--text);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), visibility 0.3s;
}

.to-top.is-visible { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { border-color: var(--accent); color: var(--accent); }
.to-top svg { width: 18px; height: 18px; }

/* --------------------------------------------------------------------------
   27. Responsive
   -------------------------------------------------------------------------- */
@media (min-width: 1100px) {
  .brand__text { display: block; }
}

@media (max-width: 1024px) {
  .stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 900px) {
  .grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero__grid { grid-template-columns: 1fr; }
  .hero__media { max-width: 520px; margin-inline: auto; order: -1; }
  .split { grid-template-columns: 1fr; }
  .split--reverse .split__media { order: 0; }
}

@media (max-width: 860px) {
  .nav__toggle { display: inline-flex; position: relative; }

  .nav__menu {
    position: fixed;
    inset: var(--header-h) 0 auto;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    padding: 18px clamp(18px, 4vw, 34px) 26px;
    background: rgba(7, 11, 20, 0.985);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    max-height: calc(100dvh - var(--header-h));
    overflow-y: auto;
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.28s var(--ease), transform 0.28s var(--ease), visibility 0.28s;
  }

  .nav__menu.is-open {
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .nav__link {
    padding: 13px 14px;
    font-size: 1rem;
    border-bottom: 1px solid rgba(148, 163, 184, 0.09);
    border-radius: 0;
  }

  .nav__menu .btn { margin-top: 16px; }
  .nav__cta { display: block; }
  .nav__actions .btn--desktop { display: none; }
}

@media (max-width: 700px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .ticker__label { display: none; }
  .quote::before { display: none; }
  .footer__legal { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 560px) {
  .stats { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .btn { width: 100%; }
  .btn-row .btn { width: auto; flex: 1 1 200px; }
  .embed iframe { height: 70vh; }
  table { min-width: 460px; }
}

/* --------------------------------------------------------------------------
   28. Accessibility / motion / print
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  [data-reveal] { opacity: 1; transform: none; }
}

@media print {
  body { background: #fff; color: #000; }
  body::before, body::after { display: none; }
  .site-header, .ticker, .site-footer, .to-top, .cta-band, .embed { display: none !important; }
  a { color: #000; text-decoration: underline; }
  .card, .office { border: 1px solid #ccc; }
}
