/* ═══════════════════════════════════════════════════════════════
   EURION.SE — Main Stylesheet
   Scandinavian minimalism · EU sovereignty
   ═══════════════════════════════════════════════════════════════ */

/* ── Reset & Base ────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Dark palette */
  --ink:        #07101f;
  --ink-2:      #0d1a35;
  --ink-3:      #152040;
  --ink-border: rgba(255,255,255,0.07);

  /* Light palette */
  --paper:      #f6f8fc;
  --paper-2:    #eef1f8;
  --paper-border: rgba(15,30,70,0.08);

  /* Brand */
  --blue:       #1a54f0;
  --blue-2:     #3569f5;
  --blue-glow:  rgba(26,84,240,0.35);
  --gold:       #f0a500;
  --gold-2:     #ffc340;

  /* Semantic colours */
  --green:  #22c55e;
  --purple: #a855f7;

  /* Text */
  --tw:    #ffffff;
  --tw-85: rgba(255,255,255,0.85);
  --tw-55: rgba(255,255,255,0.55);
  --tw-30: rgba(255,255,255,0.30);
  --td:    #0f1e40;
  --td-65: rgba(15,30,64,0.65);

  /* Type */
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Layout */
  --container: 1160px;
  --r:    10px;
  --r-lg: 18px;
  --r-xl: 26px;
  --sec:  110px;   /* section vertical padding */
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  color: var(--td);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

/* ── Utilities ───────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.text-light  { color: var(--tw); }
.text-muted  { color: var(--tw-55); }

.section {
  padding: var(--sec) 0;
}
.section--dark {
  background: var(--ink);
  color: var(--tw);
}
.section--tint {
  background: var(--paper-2);
}

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--r);
  border: 1.5px solid transparent;
  cursor: pointer;
  padding: 10px 22px;
  transition: all 0.2s ease;
  white-space: nowrap;
  text-decoration: none;
}
.btn--lg  { padding: 14px 30px; font-size: 15px; border-radius: 12px; }
.btn--sm  { padding: 8px 18px; font-size: 13px; }

.btn--primary {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
  box-shadow: 0 0 0 0 var(--blue-glow);
}
.btn--primary:hover {
  background: var(--blue-2);
  border-color: var(--blue-2);
  box-shadow: 0 4px 20px var(--blue-glow);
  transform: translateY(-1px);
}

.btn--ghost {
  background: transparent;
  color: var(--tw-85);
  border-color: transparent;
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.06);
  color: var(--tw);
}

.btn--outline {
  background: transparent;
  color: var(--tw-85);
  border-color: rgba(255,255,255,0.2);
}
.btn--outline:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.35);
  color: var(--tw);
  transform: translateY(-1px);
}

/* ── Section headers ─────────────────────────────────────────── */
.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 14px;
}
.eyebrow--light { color: var(--gold); }

.section__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}
.section__header h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: var(--td);
  margin-bottom: 18px;
}
.section__header p {
  font-size: 17px;
  color: var(--td-65);
  line-height: 1.7;
}

/* ── NAV ─────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.nav.is-scrolled {
  background: rgba(7,16,31,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--ink-border);
}
.nav__inner {
  display: flex;
  align-items: center;
  height: 68px;
  gap: 32px;
}

/* Logo */
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--tw);
  flex-shrink: 0;
}
.logo-mark { width: 34px; height: 34px; flex-shrink: 0; }
.logo-text {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--tw);
}

/* Nav links */
.nav__links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  margin-left: auto;
}
.nav__links a {
  color: var(--tw-55);
  font-size: 14px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 8px;
  transition: color 0.15s, background 0.15s;
}
.nav__links a:hover {
  color: var(--tw);
  background: rgba(255,255,255,0.06);
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Mobile burger */
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.nav__burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--tw-85);
  border-radius: 2px;
  transition: all 0.25s;
}
.nav__burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.nav__mobile {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 12px 24px 20px;
  background: rgba(7,16,31,0.97);
  border-top: 1px solid var(--ink-border);
}
.nav__mobile.is-open { display: flex; }
.nav__mobile a {
  color: var(--tw-85);
  font-size: 15px;
  font-weight: 500;
  padding: 10px 4px;
  border-bottom: 1px solid var(--ink-border);
  transition: color 0.15s;
}
.nav__mobile a:last-child { border-bottom: none; margin-top: 8px; }
.nav__mobile a:hover { color: var(--tw); }

/* ── HERO ────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--ink);
  overflow: hidden;
  padding: 120px 0 80px;
}

.hero__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.6;
}

.hero__glows { position: absolute; inset: 0; pointer-events: none; }
.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.45;
}
.hero__glow--blue {
  width: 600px; height: 600px;
  top: -100px; left: 50%;
  transform: translateX(-60%);
  background: radial-gradient(circle, rgba(26,84,240,0.6) 0%, transparent 70%);
}
.hero__glow--gold {
  width: 400px; height: 400px;
  bottom: 0; right: 5%;
  background: radial-gradient(circle, rgba(240,165,0,0.25) 0%, transparent 70%);
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 820px;
}

/* Eyebrow */
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--tw-55);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  padding: 6px 16px;
  margin-bottom: 32px;
  background: rgba(255,255,255,0.03);
}

/* Title */
.hero__title {
  font-size: clamp(36px, 6.5vw, 76px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--tw);
  margin-bottom: 24px;
}
.hero__title-accent {
  display: block;
  background: linear-gradient(135deg, #5b8fff 0%, #a0c4ff 40%, var(--gold-2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__sub {
  font-size: 18px;
  color: var(--tw-55);
  line-height: 1.75;
  max-width: 600px;
  margin: 0 auto 40px;
}

.hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 48px;
}

/* Trust pills */
.hero__trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}
.trust-pill {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--tw-55);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 999px;
  padding: 5px 14px;
  background: rgba(255,255,255,0.03);
  transition: border-color 0.2s, color 0.2s;
}
.trust-pill:hover {
  border-color: rgba(255,255,255,0.25);
  color: var(--tw-85);
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.scroll-dot {
  width: 5px;
  height: 5px;
  background: var(--tw-30);
  border-radius: 50%;
  animation: scrollBob 2.4s ease-in-out infinite;
  margin: 0 auto;
}
@keyframes scrollBob {
  0%, 100% { transform: translateY(0); opacity: 0.4; }
  50%       { transform: translateY(8px); opacity: 1; }
}

/* ── STATS ───────────────────────────────────────────────────── */
.stats {
  background: var(--ink-2);
  border-top: 1px solid var(--ink-border);
  border-bottom: 1px solid var(--ink-border);
}
.stats__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 40px 24px;
  flex-wrap: wrap;
}
.stat {
  flex: 1;
  min-width: 160px;
  text-align: center;
  padding: 16px 24px;
}
.stat__value {
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 800;
  color: var(--tw);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 6px;
}
.stat__label {
  font-size: 13px;
  color: var(--tw-55);
  font-weight: 400;
}
.stats__div {
  width: 1px;
  height: 48px;
  background: var(--ink-border);
  flex-shrink: 0;
}

/* ── FEATURES ────────────────────────────────────────────────── */
.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feat-card {
  background: var(--paper);
  border: 1px solid var(--paper-border);
  border-radius: var(--r-lg);
  padding: 32px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  opacity: 0;
  transform: translateY(24px);
}
.feat-card.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.feat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(15,30,70,0.09);
  border-color: rgba(26,84,240,0.2);
}

.feat-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(26,84,240,0.08) 0%, rgba(26,84,240,0.04) 100%);
  border: 1px solid rgba(26,84,240,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  margin-bottom: 22px;
}

.feat-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--td);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.feat-card p {
  font-size: 14.5px;
  color: var(--td-65);
  line-height: 1.7;
  margin-bottom: 20px;
}
.feat-card__tag {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--blue);
  background: rgba(26,84,240,0.06);
  border: 1px solid rgba(26,84,240,0.12);
  border-radius: 6px;
  padding: 4px 10px;
  display: inline-block;
}

/* ── SOVEREIGNTY ─────────────────────────────────────────────── */
.sovereignty__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.sovereignty__left h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: 18px;
}
.sovereignty__left p {
  font-size: 16px;
  color: var(--tw-55);
  line-height: 1.75;
  margin-bottom: 40px;
}

.sov-points { display: flex; flex-direction: column; gap: 22px; }
.sov-point {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.sov-point__icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border-radius: 9px;
  background: rgba(26,84,240,0.12);
  border: 1px solid rgba(26,84,240,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-2);
  margin-top: 2px;
}
.sov-point strong {
  display: block;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--tw);
  margin-bottom: 3px;
}
.sov-point span {
  font-size: 13.5px;
  color: var(--tw-55);
  line-height: 1.65;
}

/* Compliance cards */
.compliance-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.comp-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--ink-border);
  border-radius: var(--r-lg);
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: background 0.2s, border-color 0.2s;
}
.comp-card:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.12);
}
.comp-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.comp-card__icon--blue   { background: rgba(26,84,240,0.15);  color: #6b9bff; border: 1px solid rgba(26,84,240,0.2); }
.comp-card__icon--gold   { background: rgba(240,165,0,0.12);  color: var(--gold-2); border: 1px solid rgba(240,165,0,0.2); }
.comp-card__icon--green  { background: rgba(34,197,94,0.1);   color: #4ade80; border: 1px solid rgba(34,197,94,0.2); }
.comp-card__icon--purple { background: rgba(168,85,247,0.1);  color: #c084fc; border: 1px solid rgba(168,85,247,0.2); }

.comp-card strong {
  font-size: 16px;
  font-weight: 700;
  color: var(--tw);
  display: block;
}
.comp-card span {
  font-size: 12.5px;
  color: var(--tw-55);
  line-height: 1.5;
}

/* ── ARCHITECTURE ────────────────────────────────────────────── */
.arch-diagram {
  background: var(--paper);
  border: 1px solid var(--paper-border);
  border-radius: var(--r-xl);
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.arch-diagram.is-visible { opacity: 1; transform: translateY(0); }

.arch-layer {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 20px 0;
}
.arch-layer__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--td-65);
  margin-bottom: 4px;
}
.arch-layer__nodes {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.arch-node {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 500;
  border-radius: var(--r);
  padding: 10px 18px;
  transition: background 0.2s;
}
.arch-node--client {
  background: var(--paper-2);
  border: 1px solid var(--paper-border);
  color: var(--td-65);
}
.arch-node--gateway {
  background: linear-gradient(135deg, rgba(26,84,240,0.08) 0%, rgba(26,84,240,0.04) 100%);
  border: 1px solid rgba(26,84,240,0.2);
  color: var(--blue);
  font-weight: 600;
  padding: 14px 32px;
  font-size: 14px;
  letter-spacing: -0.01em;
}
.arch-node--infra {
  background: var(--paper-2);
  border: 1px solid var(--paper-border);
  color: var(--td-65);
  font-size: 12.5px;
}

.arch-services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  max-width: 760px;
}
.arch-svc {
  font-size: 12.5px;
  font-weight: 500;
  background: var(--paper-2);
  border: 1px solid var(--paper-border);
  border-radius: 8px;
  padding: 8px 14px;
  color: var(--td-65);
  display: inline-flex;
  gap: 6px;
  align-items: center;
  transition: background 0.15s, border-color 0.15s;
}
.arch-svc:hover {
  background: rgba(26,84,240,0.05);
  border-color: rgba(26,84,240,0.15);
  color: var(--blue);
}
.arch-svc span {
  opacity: 0.5;
  font-weight: 400;
  font-size: 11.5px;
}

.arch-arrow {
  width: 1px;
  height: 28px;
  background: linear-gradient(to bottom, var(--paper-border), transparent);
  position: relative;
}
.arch-arrow::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid var(--paper-border);
}

.arch-stack {
  text-align: center;
}
.arch-stack__label {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--td-65);
  display: block;
  margin-bottom: 14px;
}
.arch-stack__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}
.arch-stack__tags span {
  font-size: 12px;
  font-weight: 500;
  color: var(--td-65);
  background: var(--paper-2);
  border: 1px solid var(--paper-border);
  border-radius: 6px;
  padding: 5px 12px;
}

/* ── FOR WHOM ────────────────────────────────────────────────── */
.whom-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.whom-card {
  background: white;
  border: 1px solid var(--paper-border);
  border-radius: var(--r-lg);
  padding: 32px 26px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  opacity: 0;
  transform: translateY(20px);
}
.whom-card.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.25s ease;
}
.whom-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(15,30,70,0.08);
}

.whom-card__icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(26,84,240,0.07) 0%, rgba(26,84,240,0.03) 100%);
  border: 1px solid rgba(26,84,240,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  margin-bottom: 22px;
}
.whom-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--td);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.whom-card p {
  font-size: 14px;
  color: var(--td-65);
  line-height: 1.7;
}

/* ── CTA ─────────────────────────────────────────────────────── */
.cta {
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta__stars {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.cta__stars svg {
  width: min(500px, 90vw);
  height: auto;
  opacity: 0.6;
}

.cta__inner {
  position: relative;
  z-index: 2;
}
.cta h2 {
  font-size: clamp(26px, 4vw, 46px);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--tw);
  line-height: 1.18;
  margin-bottom: 18px;
}
.cta p {
  font-size: 16.5px;
  color: var(--tw-55);
  max-width: 520px;
  margin: 0 auto 44px;
  line-height: 1.7;
}

.cta__form { max-width: 680px; margin: 0 auto 16px; }
.cta__form-row {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
}
.cta__form input {
  flex: 1;
  font-family: var(--font);
  font-size: 14.5px;
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 14px 18px;
  color: var(--tw);
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  min-width: 0;
}
.cta__form input::placeholder { color: var(--tw-30); }
.cta__form input:focus {
  border-color: rgba(26,84,240,0.6);
  background: rgba(255,255,255,0.08);
}

.form-note {
  font-size: 12px !important;
  color: var(--tw-30) !important;
  margin: 0 !important;
  line-height: 1.5 !important;
}

.cta__alt {
  font-size: 13.5px;
  color: var(--tw-30);
  margin-top: 28px;
}
.cta__alt a {
  color: var(--gold-2);
  transition: color 0.15s;
}
.cta__alt a:hover { color: var(--tw); }

/* ── FOOTER ──────────────────────────────────────────────────── */
.footer {
  background: var(--ink);
  border-top: 1px solid var(--ink-border);
}
.footer__top {
  display: flex;
  gap: 60px;
  padding: 72px 24px 56px;
  flex-wrap: wrap;
}

.footer__brand {
  flex: 1;
  min-width: 200px;
  max-width: 280px;
}
.footer__brand .nav__logo { margin-bottom: 18px; }
.footer__brand p {
  font-size: 14px;
  color: var(--tw-55);
  line-height: 1.65;
  margin-bottom: 6px;
}
.footer__sub {
  font-size: 12px !important;
  color: var(--tw-30) !important;
}

.footer__links {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  flex: 2;
  justify-content: flex-end;
}
.footer__col {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 120px;
}
.footer__col h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--tw-30);
  margin-bottom: 4px;
}
.footer__col a {
  font-size: 13.5px;
  color: var(--tw-55);
  transition: color 0.15s;
}
.footer__col a:hover { color: var(--tw); }

.footer__bottom {
  border-top: 1px solid var(--ink-border);
}
.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
  font-size: 12.5px;
  color: var(--tw-30);
}

/* ── ANIMATE ON SCROLL ───────────────────────────────────────── */
[data-animate] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .features__grid { grid-template-columns: repeat(2, 1fr); }
  .sovereignty__inner { grid-template-columns: 1fr; gap: 56px; }
  .whom-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --sec: 72px; }

  .nav__links,
  .nav__actions { display: none; }
  .nav__burger { display: flex; }

  .hero { padding: 100px 0 72px; }
  .hero__title { font-size: clamp(32px, 10vw, 52px); }
  .hero__sub { font-size: 16px; }
  .hero__actions { flex-direction: column; align-items: center; }
  .hero__actions .btn { width: 100%; max-width: 320px; justify-content: center; }

  .stats__inner { flex-direction: column; gap: 24px; padding: 32px 24px; }
  .stats__div { width: 80%; height: 1px; }

  .features__grid { grid-template-columns: 1fr; }

  .compliance-grid { grid-template-columns: 1fr; }

  .arch-diagram { padding: 24px 16px; }
  .arch-services-grid { gap: 6px; }

  .whom-grid { grid-template-columns: 1fr; }

  .cta__form-row { flex-direction: column; }
  .cta__form input { width: 100%; }

  .footer__top { flex-direction: column; gap: 40px; }
  .footer__brand { max-width: 100%; }
  .footer__links { justify-content: flex-start; gap: 32px; }
  .footer__bottom-inner { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .trust-pill { font-size: 11px; padding: 4px 11px; }
  .section__header h2 { font-size: 26px; }
  .whom-card { padding: 24px 20px; }
}

/* ── Accessibility ───────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
  [data-animate], .arch-diagram { opacity: 1; transform: none; }
  .feat-card, .whom-card { opacity: 1; transform: none; }
}
:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
  border-radius: 4px;
}
