/* ═══════════════════════════════════════════════════════════════
   ANPR-Live — marketing site
   Palette mirrors the product UI: deep navy canvas, cyan→indigo
   accent, yellow signature mark.
   ═══════════════════════════════════════════════════════════════ */

:root {
  --navy-900: #060d1a;
  --navy-850: #0a1424;
  --navy-800: #0c1a2e;
  --navy-750: #0f2138;
  --navy-700: #112240;
  --line:      rgba(126, 179, 247, 0.14);
  --line-soft: rgba(126, 179, 247, 0.08);

  --txt:      #eaf1fb;
  --txt-soft: #9fb2cc;
  --txt-mute: #6b7e99;

  --cyan:   #0891b2;
  --indigo: #4f46e5;
  --blue:   #2d6bcf;
  --blue-l: #7eb3f7;
  --yellow: #fde047;
  --yellow-d:#eab308;
  --green:  #34d399;
  --amber:  #f59e0b;
  --red:    #f87171;
  --violet: #a78bfa;

  --grad: linear-gradient(135deg, var(--cyan), var(--indigo));
  --grad-h: linear-gradient(90deg, var(--cyan), var(--indigo));

  --radius: 16px;
  --radius-sm: 11px;
  --maxw: 1180px;
  --ease: cubic-bezier(.4, 0, .2, 1);

  --shadow: 0 24px 60px -20px rgba(0, 0, 0, .7);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; }

body {
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  background: var(--navy-900);
  color: var(--txt);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.mono { font-family: 'Spline Sans Mono', ui-monospace, 'Courier New', monospace; }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

h1, h2, h3, h4 { line-height: 1.12; letter-spacing: -0.02em; font-weight: 800; }

.grad-text {
  background: linear-gradient(110deg, var(--blue-l), var(--violet) 60%, var(--cyan));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  font-weight: 600; font-size: 15px; border-radius: 10px;
  padding: 11px 20px; cursor: pointer; border: 1px solid transparent;
  transition: transform .18s var(--ease), box-shadow .18s var(--ease), background .18s, border-color .18s;
  white-space: nowrap;
}
.btn-lg { padding: 14px 26px; font-size: 16px; }
.btn-primary {
  background: var(--grad); color: #fff;
  box-shadow: 0 8px 24px -8px rgba(79, 70, 229, .7);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 30px -8px rgba(79, 70, 229, .8); }
.btn-outline { border-color: var(--line); color: var(--txt); background: rgba(255,255,255,.02); }
.btn-outline:hover { border-color: var(--blue-l); background: rgba(126,179,247,.08); transform: translateY(-2px); }
.btn-ghost { color: var(--txt-soft); padding: 11px 14px; }
.btn-ghost:hover { color: var(--txt); }

/* ═══════════════════  NAV  ═══════════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(6, 13, 26, .55);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: background .3s, border-color .3s;
}
.nav.scrolled { background: rgba(6, 13, 26, .9); border-bottom-color: var(--line); }
.nav-inner { display: flex; align-items: center; gap: 20px; height: 70px; }

.brand { display: flex; align-items: center; gap: 11px; flex-shrink: 0; }
.brand-mark { width: 38px; height: 38px; border-radius: 9px; background: #fbfdff; padding: 3px; box-shadow: 0 2px 8px -2px rgba(0,0,0,.5); }
.brand-lockup { display: flex; flex-direction: column; gap: 3px; }
.brand-word { font-weight: 800; font-size: 18px; letter-spacing: -.02em; line-height: 1; }
.brand-live { color: var(--blue-l); }
.brand-tag {
  font-family: 'Spline Sans Mono', monospace; font-size: 8.5px; line-height: 1;
  letter-spacing: .18em; text-transform: uppercase; color: var(--txt-mute);
}

.nav-links { display: flex; gap: 22px; margin-left: auto; }
.nav-links a { color: var(--txt-soft); font-size: 14.5px; font-weight: 500; position: relative; transition: color .15s; white-space: nowrap; }
.nav-links a:hover { color: var(--txt); }
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: -6px; height: 2px; width: 0;
  background: var(--grad-h); transition: width .22s var(--ease);
}
.nav-links a:hover::after { width: 100%; }

.nav-cta { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }

/* Collapsing nav wrapper — transparent to the desktop flex layout, becomes the
   mobile dropdown panel. */
.nav-collapse { display: contents; }

/* Language switcher (dark theme) */
.lang-select {
  appearance: none; -webkit-appearance: none;
  font-family: inherit; font-size: 13.5px; font-weight: 600;
  color: var(--txt-soft); background-color: rgba(255,255,255,.03);
  border: 1px solid var(--line); border-radius: 8px;
  padding: 7px 28px 7px 12px; cursor: pointer; flex-shrink: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'><path d='M2 4.5l4 4 4-4' fill='none' stroke='%239fb2cc' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat; background-position: right 9px center; background-size: 11px;
  transition: border-color .15s, color .15s, box-shadow .15s;
}
.lang-select:hover { border-color: var(--blue-l); color: var(--txt); }
.lang-select:focus { outline: none; border-color: var(--blue-l); box-shadow: 0 0 0 3px rgba(126,179,247,.15); }
.lang-select option { color: #0a0a0a; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 6px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--txt); border-radius: 2px; transition: .25s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ═══════════════════  HERO  ═══════════════════ */
.hero { position: relative; padding: 150px 0 90px; overflow: hidden; }
.hero-grid-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(900px 480px at 78% 8%, rgba(79,70,229,.22), transparent 60%),
    radial-gradient(760px 460px at 12% 30%, rgba(8,145,178,.18), transparent 60%),
    linear-gradient(transparent 0 0) ;
}
.hero-grid-bg::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--line-soft) 1px, transparent 1px),
    linear-gradient(90deg, var(--line-soft) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 0%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 0%, #000 30%, transparent 75%);
}
.hero-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center;
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 13px; font-weight: 600; color: var(--blue-l);
  background: rgba(126,179,247,.08); border: 1px solid var(--line);
  padding: 7px 14px; border-radius: 999px; margin-bottom: 24px;
  letter-spacing: .01em;
}
.eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px rgba(52,211,153,.18); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.45} }

.hero-title { font-size: clamp(38px, 5.4vw, 66px); font-weight: 800; margin-bottom: 22px; }
.hero-sub { font-size: clamp(16px, 1.5vw, 19px); color: var(--txt-soft); max-width: 540px; margin-bottom: 32px; }

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 30px; }

.hero-tags { list-style: none; display: flex; flex-wrap: wrap; gap: 10px 22px; }
.hero-tags li { font-size: 13.5px; color: var(--txt-mute); display: flex; align-items: center; gap: 8px; }
.hero-tags li::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--grad); }

/* ── Hero scanner visual ─────────────────────── */
.hero-visual { position: relative; }
.visual-glow { position: absolute; inset: -10% -6% -16% -6%; z-index: 0;
  background: radial-gradient(60% 60% at 50% 40%, rgba(79,70,229,.28), transparent 70%); filter: blur(20px); }

.scanner {
  position: relative; z-index: 1;
  background: linear-gradient(160deg, var(--navy-750), var(--navy-850));
  border: 1px solid var(--line); border-radius: 20px; padding: 18px;
  box-shadow: var(--shadow);
}
.scanner-head { display: flex; align-items: center; gap: 10px; padding: 4px 6px 14px; font-size: 12.5px; color: var(--txt-soft); }
.cam-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--grad); }
.cam-label { font-weight: 600; letter-spacing: .02em; }
.cam-live { margin-left: auto; color: var(--red); font-weight: 700; font-size: 11px; letter-spacing: .08em; }

.plate-stage {
  position: relative; background: #05101f; border: 1px solid var(--line-soft);
  border-radius: 12px; padding: 30px; display: flex; justify-content: center;
  background-image: radial-gradient(circle at 50% 40%, rgba(8,145,178,.10), transparent 60%);
}
.plate-frame { position: relative; }
.reticle { position: absolute; width: 18px; height: 18px; border: 2px solid var(--blue-l); opacity: .8; }
.reticle.tl { top: -10px; left: -10px; border-right: 0; border-bottom: 0; }
.reticle.tr { top: -10px; right: -10px; border-left: 0; border-bottom: 0; }
.reticle.bl { bottom: -10px; left: -10px; border-right: 0; border-top: 0; }
.reticle.br { bottom: -10px; right: -10px; border-left: 0; border-top: 0; }

.plate {
  display: flex; align-items: stretch; border-radius: 7px; overflow: hidden;
  background: #f7d518; box-shadow: 0 6px 20px -6px rgba(0,0,0,.6);
  border: 2px solid #0a0a0a;
}
.plate-gb {
  background: #15357e; color: #f7d518; font-weight: 700; font-size: 13px;
  display: flex; align-items: flex-end; justify-content: center; padding: 6px 7px 6px;
  font-family: 'Inter', sans-serif; letter-spacing: .03em;
}
.plate-text {
  color: #0a0a0a; font-weight: 800; font-size: clamp(26px, 4vw, 40px);
  letter-spacing: .06em; padding: 8px 16px 9px;
  font-family: 'Spline Sans Mono', monospace;
}
/* Country plate variants */
.plate--es { background: #ffffff; }
.plate--es .plate-gb { background: #003399; color: #ffdd00; }
.plate--ae { background: #ffffff; }
.plate--ae .plate-gb { background: #009a44; color: #ffffff; font-size: 10px; letter-spacing: 0; }
.plate--us { background: #ffffff; }
.plate--us .plate-gb { background: #b22234; color: #ffffff; font-size: 10px; letter-spacing: 0; }
.plate--us .plate-text { color: #003087; }

.scan-line {
  position: absolute; left: 0; right: 0; height: 3px; top: 0;
  background: linear-gradient(90deg, transparent, var(--blue-l), transparent);
  box-shadow: 0 0 14px 2px rgba(126,179,247,.7);
  animation: scan 2.6s var(--ease) infinite;
}
@keyframes scan { 0%{top:-2px;opacity:0} 12%{opacity:1} 88%{opacity:1} 100%{top:100%;opacity:0} }

.readout { padding: 16px 8px 4px; display: grid; gap: 11px; }
.readout-row { display: flex; align-items: center; gap: 14px; font-size: 14px; }
.r-label { width: 86px; color: var(--txt-mute); font-size: 12.5px; text-transform: uppercase; letter-spacing: .06em; flex-shrink: 0; }
.r-value { color: var(--txt); font-weight: 600; display: flex; align-items: center; gap: 10px; }
.readout-row.action { border-top: 1px solid var(--line-soft); padding-top: 12px; margin-top: 3px; }
.r-value.tag {
  background: rgba(52,211,153,.12); color: #6ee7b7; border: 1px solid rgba(52,211,153,.3);
  padding: 4px 12px; border-radius: 999px; font-size: 13px; font-weight: 600;
}
.conf-bar { width: 84px; height: 6px; border-radius: 4px; background: rgba(255,255,255,.1); overflow: hidden; }
.conf-bar i { display: block; height: 100%; background: var(--grad-h); transition: width .5s var(--ease); }

/* ═══════════════════  INGEST STRIP  ═══════════════════ */
.strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(255,255,255,.012); }
.strip-inner { display: flex; align-items: center; gap: 30px; padding: 22px 24px; flex-wrap: wrap; }
.strip-label { font-size: 13px; color: var(--txt-mute); text-transform: uppercase; letter-spacing: .08em; font-weight: 600; }
.strip-formats { display: flex; gap: 12px 26px; flex-wrap: wrap; margin-left: auto; }
.strip-formats span { font-family: 'Spline Sans Mono', monospace; font-size: 14px; color: var(--txt-soft); font-weight: 600; }

/* ═══════════════════  SECTIONS  ═══════════════════ */
.section { padding: 96px 0; position: relative; }
.section-alt { background: linear-gradient(180deg, var(--navy-850), var(--navy-900)); border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }

.section-head { max-width: 680px; margin: 0 auto 56px; text-align: center; }
.kicker { font-size: 12.5px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--blue-l); margin-bottom: 14px;
  display: inline-block; }
.section-head h2 { font-size: clamp(28px, 3.6vw, 44px); margin-bottom: 16px; }
.section-head p { font-size: 17px; color: var(--txt-soft); }

/* ── Capabilities grid ──────────────────────── */
.cap-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.cap {
  background: linear-gradient(160deg, var(--navy-800), var(--navy-850));
  border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 22px;
  transition: transform .25s var(--ease), border-color .25s, box-shadow .25s;
}
.cap:hover { transform: translateY(-5px); border-color: rgba(126,179,247,.4); box-shadow: var(--shadow); }
.cap-ico {
  width: 46px; height: 46px; border-radius: 12px; margin-bottom: 18px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(79,70,229,.12); border: 1px solid rgba(79,70,229,.3);
}
.cap-ico svg { width: 23px; height: 23px; fill: none; stroke: var(--blue-l); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.cap h3 { font-size: 17.5px; font-weight: 700; margin-bottom: 9px; letter-spacing: -.01em; }
.cap p { font-size: 14.5px; color: var(--txt-soft); line-height: 1.6; }

/* ── Pipeline ───────────────────────────────── */
.pipeline { list-style: none; display: flex; align-items: stretch; gap: 8px; justify-content: center; flex-wrap: wrap; }
.pl-step {
  flex: 1 1 0; min-width: 180px; max-width: 230px;
  background: linear-gradient(165deg, var(--navy-800), var(--navy-850));
  border: 1px solid var(--line); border-radius: var(--radius); padding: 24px 20px;
  position: relative;
}
.pl-num {
  width: 38px; height: 38px; border-radius: 10px; display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 17px; color: #fff; background: var(--grad); margin-bottom: 16px;
  box-shadow: 0 8px 20px -8px rgba(79,70,229,.7);
}
.pl-step h3 { font-size: 16px; margin-bottom: 8px; }
.pl-step p { font-size: 13.5px; color: var(--txt-soft); }
.pl-arrow { display: flex; align-items: center; color: var(--blue-l); font-size: 26px; font-weight: 700; opacity: .55; padding: 0 2px; }

/* ── Split deep-dive ────────────────────────── */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split.reverse .split-copy { order: 2; }
.split-copy h2 { font-size: clamp(26px, 3.2vw, 38px); margin-bottom: 16px; }
.split-copy > p { font-size: 16.5px; color: var(--txt-soft); margin-bottom: 22px; }
.ticks { list-style: none; display: grid; gap: 13px; }
.ticks li { position: relative; padding-left: 30px; font-size: 15px; color: var(--txt-soft); }
.ticks li::before {
  content: ''; position: absolute; left: 0; top: 4px; width: 18px; height: 18px; border-radius: 6px;
  background: rgba(52,211,153,.14); border: 1px solid rgba(52,211,153,.4);
}
.ticks li::after { content: ''; position: absolute; left: 6px; top: 8px; width: 5px; height: 9px;
  border: solid var(--green); border-width: 0 2px 2px 0; transform: rotate(40deg); }

/* ── UI mock cards ──────────────────────────── */
.ui-card {
  background: linear-gradient(165deg, var(--navy-750), var(--navy-850));
  border: 1px solid var(--line); border-radius: 18px; padding: 18px; box-shadow: var(--shadow);
}
.ui-card-head { display: flex; align-items: center; justify-content: space-between; padding: 4px 6px 16px; }
.ui-title { font-weight: 700; font-size: 16px; }
.ui-pill { font-size: 12px; font-weight: 600; color: var(--blue-l); background: rgba(126,179,247,.1); border: 1px solid var(--line); padding: 4px 11px; border-radius: 999px; }
.ui-pill.ok { color: var(--green); background: rgba(52,211,153,.1); border-color: rgba(52,211,153,.3); }

.list-row { display: flex; align-items: center; gap: 12px; padding: 13px 10px; border-radius: 10px; transition: background .2s; }
.list-row:hover { background: rgba(255,255,255,.03); }
.list-row + .list-row { border-top: 1px solid var(--line-soft); }
.swatch { width: 12px; height: 12px; border-radius: 4px; flex-shrink: 0; }
.sw-green { background: var(--green); } .sw-amber { background: var(--amber); }
.sw-violet { background: var(--violet); } .sw-red { background: var(--red); }
.list-name { font-weight: 600; font-size: 14.5px; }
.list-meta { margin-left: auto; font-size: 13px; color: var(--txt-mute); }
.list-act { font-size: 12px; font-weight: 600; color: var(--blue-l); background: rgba(126,179,247,.1); padding: 4px 10px; border-radius: 7px; }
.list-row.danger .list-act { color: var(--red); background: rgba(248,113,113,.12); }

/* zone card */
.zone-tree { padding: 4px 4px 8px; display: grid; gap: 3px; }
.zt-node { display: flex; align-items: center; gap: 10px; font-size: 14px; padding: 7px 10px; border-radius: 8px; }
.zt-node em { margin-left: auto; font-style: normal; font-family: 'Spline Sans Mono', monospace; font-size: 12.5px; color: var(--txt-soft); }
.zt-node em.muted { color: var(--txt-mute); }
.zt-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--grad); flex-shrink: 0; }
.zt-node.lvl1 { margin-left: 20px; } .zt-node.lvl2 { margin-left: 40px; }
.zt-node.lvl1 .zt-dot { background: var(--blue); } .zt-node.lvl2 .zt-dot { background: var(--cyan); }
.zt-node.lvl0 { background: rgba(126,179,247,.06); font-weight: 600; }

.speed-callout { display: flex; align-items: center; gap: 16px; margin-top: 12px; padding: 14px; border-radius: 12px;
  background: rgba(8,145,178,.08); border: 1px solid rgba(8,145,178,.22); }
.sc-gauge { position: relative; width: 92px; flex-shrink: 0; }
.sc-gauge svg { width: 92px; }
.sc-num { position: absolute; left: 0; right: 0; bottom: 0; text-align: center; font-weight: 800; font-size: 22px; }
.sc-num small { font-size: 11px; font-weight: 600; color: var(--txt-mute); margin-left: 2px; }
.sc-text b { display: block; font-size: 14px; margin-bottom: 3px; }
.sc-text span { font-size: 12.5px; color: var(--txt-soft); }

/* search card */
.ui-tabs { display: flex; gap: 6px; padding: 2px 4px 14px; }
.ui-tab { font-size: 13px; font-weight: 600; color: var(--txt-mute); padding: 6px 13px; border-radius: 8px; }
.ui-tab.active { color: var(--txt); background: rgba(126,179,247,.12); }
.ui-tab.live { margin-left: auto; color: var(--red); }
.sight-row { display: flex; align-items: center; gap: 12px; padding: 12px 10px; border-radius: 9px; }
.sight-row + .sight-row { border-top: 1px solid var(--line-soft); }
.sight-row.hot { background: rgba(52,211,153,.06); }
.mini-plate { font-family: 'Spline Sans Mono', monospace; font-weight: 700; font-size: 14px; background: #f7d518; color: #0a0a0a; padding: 4px 9px; border-radius: 5px; letter-spacing: .04em; }
.sight-meta { font-size: 13.5px; color: var(--txt-soft); }
.sight-time { margin-left: auto; font-family: 'Spline Sans Mono', monospace; font-size: 12.5px; color: var(--txt-mute); }

/* ── Use cases ──────────────────────────────── */
.uc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-bottom: 40px; }
.uc { background: linear-gradient(160deg, var(--navy-800), var(--navy-850)); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 24px 22px; transition: border-color .25s, transform .25s; }
.uc:hover { border-color: rgba(126,179,247,.4); transform: translateY(-4px); }
.uc h3 { font-size: 17px; margin-bottom: 10px; }
.uc p { font-size: 14px; color: var(--txt-soft); }

.billing { background: linear-gradient(160deg, var(--navy-750), var(--navy-850)); border: 1px solid var(--line);
  border-radius: 20px; padding: 36px; }
.billing-head { text-align: center; max-width: 640px; margin: 0 auto 28px; }
.billing-head h3 { font-size: 24px; margin-bottom: 10px; }
.billing-head p { color: var(--txt-soft); font-size: 15.5px; }
.billing-models { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.bm { padding: 18px; border-radius: 12px; background: rgba(255,255,255,.02); border: 1px solid var(--line-soft); }
.bm-tag { display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
  color: var(--blue-l); background: rgba(126,179,247,.1); border: 1px solid var(--line); padding: 4px 11px; border-radius: 999px; margin-bottom: 11px; }
.bm p { font-size: 13.5px; color: var(--txt-soft); }

/* ── Security ───────────────────────────────── */
.sec-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; max-width: 920px; margin: 0 auto; }
.sec { background: linear-gradient(160deg, var(--navy-800), var(--navy-850)); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 28px; border-left: 3px solid transparent; border-image: var(--grad) 1; }
.sec { border-left: 3px solid var(--indigo); }
.sec h3 { font-size: 18px; margin-bottom: 10px; }
.sec p { font-size: 14.5px; color: var(--txt-soft); }

/* ── Platform / MET-Grid ────────────────────── */
.section-platform { background:
  radial-gradient(800px 400px at 50% 0%, rgba(79,70,229,.18), transparent 65%), var(--navy-900);
  text-align: center; border-top: 1px solid var(--line-soft); }
.platform-inner { max-width: 760px; margin: 0 auto; }
.metgrid-logo { width: 230px; margin: 0 auto 26px; border-radius: 12px; opacity: .96; }
.platform-title { font-size: clamp(28px, 3.6vw, 42px); margin-bottom: 18px; }
.platform-copy > p { font-size: 17px; color: var(--txt-soft); margin-bottom: 26px; }
.platform-chips { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 26px; }
.platform-chips span { font-size: 13.5px; font-weight: 500; color: var(--txt-soft);
  background: rgba(255,255,255,.03); border: 1px solid var(--line); padding: 8px 15px; border-radius: 999px; transition: .2s; }
.platform-chips span:hover { border-color: var(--blue-l); color: var(--txt); }
.platform-foot { font-size: 15px; color: var(--txt-mute); }

/* ── CTA ────────────────────────────────────── */
.cta { padding: 96px 0; }
.cta-inner {
  max-width: 720px; margin: 0 auto; text-align: center;
  background: linear-gradient(150deg, var(--navy-700), var(--navy-850));
  border: 1px solid var(--line); border-radius: 26px; padding: 56px 40px;
  position: relative; overflow: hidden; box-shadow: var(--shadow);
}
.cta-inner::before { content: ''; position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(420px 200px at 50% -10%, rgba(8,145,178,.3), transparent 70%); }
.cta-inner > * { position: relative; z-index: 1; }
.cta h2 { font-size: clamp(28px, 4vw, 42px); margin-bottom: 14px; }
.cta p { font-size: 17px; color: var(--txt-soft); margin-bottom: 28px; }
.cta-form { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-bottom: 16px; }
.cta-form input {
  flex: 1 1 280px; max-width: 340px; padding: 14px 18px; font-size: 15px; border-radius: 10px;
  background: rgba(0,0,0,.25); border: 1px solid var(--line); color: var(--txt); font-family: inherit;
}
.cta-form input:focus { outline: none; border-color: var(--blue-l); box-shadow: 0 0 0 3px rgba(126,179,247,.15); }
.cta-form input::placeholder { color: var(--txt-mute); }
.cta-fine { font-size: 13px; color: var(--txt-mute); }
.cta-success { font-size: 16px; font-weight: 600; color: var(--green); margin-bottom: 14px; }
.hp { position: absolute; left: -9999px; }

/* ── Footer ─────────────────────────────────── */
.footer { border-top: 1px solid var(--line); background: var(--navy-850); padding: 56px 0 28px; }
.footer-inner { display: grid; grid-template-columns: 1.3fr 2fr; gap: 40px; padding-bottom: 36px; border-bottom: 1px solid var(--line-soft); }
.footer-logo { width: 150px; margin-bottom: 14px; }
.footer-brand p { font-size: 14px; color: var(--txt-mute); max-width: 280px; }
.footer-company { display: inline-block; margin-top: 12px; font-size: 14px; font-weight: 600; color: var(--blue-l); transition: color .15s; }
.footer-company:hover { color: var(--txt); }
.platform-cta { margin-top: 26px; }
.footer-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.footer-col h4 { font-size: 12px; text-transform: uppercase; letter-spacing: .1em; color: var(--txt-mute); margin-bottom: 14px; font-weight: 700; }
.footer-col a { display: block; font-size: 14px; color: var(--txt-soft); padding: 5px 0; transition: color .15s; }
.footer-col a:hover { color: var(--txt); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 24px; font-size: 13px; color: var(--txt-mute); flex-wrap: wrap; gap: 8px; }
.footer-tag { font-family: 'Spline Sans Mono', monospace; letter-spacing: .15em; font-size: 11px; color: var(--txt-mute); }

/* ── Reveal animation ───────────────────────── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ═══════════════════  RESPONSIVE  ═══════════════════ */
@media (max-width: 1020px) {
  .cap-grid { grid-template-columns: repeat(2, 1fr); }
  .uc-grid { grid-template-columns: repeat(2, 1fr); }
  .billing-models { grid-template-columns: repeat(2, 1fr); }
  .pl-arrow { display: none; }
  .pl-step { max-width: none; flex-basis: 45%; }
}
@media (max-width: 1080px) {
  .nav-collapse { display: none; }
  .nav-toggle { display: flex; margin-left: auto; }
  .nav.menu-open .nav-collapse {
    display: flex; flex-direction: column; align-items: stretch; gap: 10px;
    position: absolute; top: 70px; left: 0; right: 0;
    background: rgba(6,13,26,.97); backdrop-filter: blur(14px);
    padding: 16px 20px 20px; border-bottom: 1px solid var(--line);
    box-shadow: 0 24px 50px -20px rgba(0,0,0,.7);
  }
  .nav.menu-open .nav-links { display: flex; flex-direction: column; gap: 2px; margin-left: 0; }
  .nav.menu-open .nav-links a { padding: 12px 2px; font-size: 16px; }
  .nav.menu-open .nav-cta { display: flex; flex-direction: column; gap: 8px; margin-top: 4px; }
  .nav.menu-open .lang-select { width: 100%; }
}
@media (max-width: 860px) {
  .hero-inner { grid-template-columns: 1fr; gap: 44px; }
  .hero { padding: 124px 0 70px; }
  .hero-sub { max-width: none; }
  .split, .split.reverse .split-copy { grid-template-columns: 1fr; }
  .split.reverse .split-copy { order: 0; }
  .split { gap: 36px; }
  .sec-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
}
@media (max-width: 560px) {
  .container { padding: 0 18px; }
  .cap-grid, .uc-grid, .billing-models { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
  .strip-formats { margin-left: 0; }
  .section { padding: 72px 0; }
  .billing { padding: 24px; }
  .cta-inner { padding: 40px 24px; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}
