/* ═══════════════════════════════════════════════════════════════
   ParrotParking — marketing site
   Palette: deep car-park-sign blue canvas, vivid blue primary, with
   the parrot's green / yellow / red used as functional accents
   (green = go/paid, amber = grace, red = overstay/PCN).
   ═══════════════════════════════════════════════════════════════ */

:root {
  --blue-900: #05152b;
  --blue-850: #071d38;
  --blue-800: #0a2445;
  --blue-750: #0d2c53;
  --blue-700: #103562;
  --line:      rgba(125, 182, 255, 0.14);
  --line-soft: rgba(125, 182, 255, 0.08);

  --txt:      #eaf1fb;
  --txt-soft: #a6bad6;
  --txt-mute: #6f86a6;

  --brand:   #1f7ae0;   /* parking blue */
  --brand-d: #0a66c8;
  --brand-l: #7db6ff;   /* light-blue text accent */
  --green:   #22c55e;
  --green-l: #4ade80;
  --yellow:  #ffc20e;
  --yellow-l:#ffd75e;
  --amber:   #f59e0b;
  --red:     #f56565;
  --red-l:   #fca5a5;
  --violet:  #a78bfa;

  --grad:   linear-gradient(135deg, #2b86ea, var(--brand-d));
  --grad-h: linear-gradient(90deg, #2b86ea, var(--brand-d));

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

  --shadow: 0 24px 60px -20px rgba(0, 8, 20, .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(--blue-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(--yellow), var(--green-l) 55%, var(--brand-l));
  -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(31, 122, 224, .7);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 30px -8px rgba(31, 122, 224, .85); }
.btn-outline { border-color: var(--line); color: var(--txt); background: rgba(255,255,255,.02); }
.btn-outline:hover { border-color: var(--brand-l); background: rgba(125,182,255,.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(5, 21, 43, .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(5, 21, 43, .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: 53px; height: 53px; border-radius: 13px; box-shadow: 0 4px 12px -4px rgba(0,0,0,.55); }
.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(--yellow); }
.brand-tag {
  font-family: 'Spline Sans Mono', monospace; font-size: 8.5px; line-height: 1;
  letter-spacing: .16em; 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; }

.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(31,122,224,.24), transparent 60%),
    radial-gradient(760px 460px at 12% 30%, rgba(34,197,94,.12), transparent 60%);
}
.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(--brand-l);
  background: rgba(125,182,255,.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(34,197,94,.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(31,122,224,.28), transparent 70%); filter: blur(20px); }

.scanner {
  position: relative; z-index: 1;
  background: linear-gradient(160deg, var(--blue-750), var(--blue-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); flex-shrink: 0; }
.cam-label { font-weight: 600; letter-spacing: .01em; }
.cam-live { margin-left: auto; color: var(--red); font-weight: 700; font-size: 11px; letter-spacing: .08em; }

.plate-stage {
  position: relative; background: #04101f; 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(31,122,224,.12), transparent 60%);
}
.plate-frame { position: relative; }
.reticle { position: absolute; width: 18px; height: 18px; border: 2px solid var(--brand-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;
}

.scan-line {
  position: absolute; left: 0; right: 0; height: 3px; top: 0;
  background: linear-gradient(90deg, transparent, var(--brand-l), transparent);
  box-shadow: 0 0 14px 2px rgba(125,182,255,.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: 74px; 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(34,197,94,.14); color: #86efac; border: 1px solid rgba(34,197,94,.32);
  padding: 4px 12px; border-radius: 999px; font-size: 13px; font-weight: 600;
}

/* occupancy bar */
.occ { padding: 14px 8px 4px; }
.occ-top { display: flex; justify-content: space-between; align-items: baseline; font-size: 12.5px; color: var(--txt-mute); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 8px; }
.occ-top b { font-family: 'Spline Sans Mono', monospace; font-size: 13px; color: var(--txt); letter-spacing: 0; text-transform: none; }
.occ-bar { height: 8px; border-radius: 5px; background: rgba(255,255,255,.08); overflow: hidden; }
.occ-bar i { display: block; height: 100%; border-radius: 5px; background: linear-gradient(90deg, var(--green), var(--yellow)); transition: width .6s var(--ease); }

/* ═══════════════════  INTEGRATION 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: .06em; 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: 13.5px; color: var(--txt-soft); font-weight: 600; }

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

.section-head { max-width: 700px; margin: 0 auto 56px; text-align: center; }
.kicker { font-size: 12.5px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--brand-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(--blue-800), var(--blue-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(125,182,255,.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(31,122,224,.12); border: 1px solid rgba(31,122,224,.3);
}
.cap-ico svg { width: 23px; height: 23px; fill: none; stroke: var(--brand-l); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
/* icon colour variants (parrot palette) */
.ico-blue   { background: rgba(31,122,224,.12); border-color: rgba(31,122,224,.32); }
.ico-blue   svg { stroke: var(--brand-l); }
.ico-green  { background: rgba(34,197,94,.12);  border-color: rgba(34,197,94,.34); }
.ico-green  svg { stroke: var(--green-l); }
.ico-yellow { background: rgba(255,194,14,.14); border-color: rgba(255,194,14,.36); }
.ico-yellow svg { stroke: var(--yellow-l); }
.ico-red    { background: rgba(245,101,101,.13); border-color: rgba(245,101,101,.34); }
.ico-red    svg { stroke: var(--red-l); }
.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(--blue-800), var(--blue-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(31,122,224,.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(--brand-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(34,197,94,.16); border: 1px solid rgba(34,197,94,.42);
}
.ticks li::after { content: ''; position: absolute; left: 6px; top: 8px; width: 5px; height: 9px;
  border: solid var(--green-l); border-width: 0 2px 2px 0; transform: rotate(40deg); }

/* ── UI mock cards ──────────────────────────── */
.ui-card {
  background: linear-gradient(165deg, var(--blue-750), var(--blue-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(--brand-l); background: rgba(125,182,255,.1); border: 1px solid var(--line); padding: 4px 11px; border-radius: 999px; }
.ui-pill.ok { color: var(--green-l); background: rgba(34,197,94,.12); border-color: rgba(34,197,94,.32); }
.ui-pill.danger { color: var(--red-l); background: rgba(245,101,101,.12); border-color: rgba(245,101,101,.34); }

.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); } .sw-blue { background: var(--brand); }
.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(--brand-l); background: rgba(125,182,255,.1); padding: 4px 10px; border-radius: 7px; white-space: nowrap; }

/* mini plate chip */
.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; display: inline-block; }

/* ── Session card (paid parking) ────────────── */
.sess { padding: 2px 6px 6px; }
.sess-plate { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.sess-loc { font-size: 13px; color: var(--txt-mute); }
.sess-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 16px; }
.sess-grid > div { display: flex; flex-direction: column; gap: 3px; }
.sess-k { font-size: 11.5px; text-transform: uppercase; letter-spacing: .05em; color: var(--txt-mute); }
.sess-v { font-size: 15px; font-weight: 600; }
.sess-bar { height: 8px; border-radius: 5px; background: rgba(255,255,255,.08); overflow: hidden; }
.sess-bar i { display: block; height: 100%; border-radius: 5px; background: var(--grad-h); }
.sess-foot { display: flex; justify-content: space-between; font-size: 12.5px; color: var(--txt-soft); margin-top: 8px; }

/* ── Validation terminal card ───────────────── */
.term-card { max-width: 340px; margin: 0 auto; }
.term-head { font-weight: 700; font-size: 15px; text-align: center; padding: 2px 0 14px; color: var(--txt-soft); }
.term-screen {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  background: #04101f; border: 1px solid var(--line-soft); border-radius: 12px;
  padding: 20px; margin-bottom: 14px;
}
.term-label { font-size: 11.5px; text-transform: uppercase; letter-spacing: .1em; color: var(--txt-mute); }
.term-plate { font-size: 30px; font-weight: 800; letter-spacing: .12em; background: #f7d518; color: #0a0a0a; padding: 6px 16px; border-radius: 6px; }
.term-ok { font-size: 13.5px; font-weight: 700; color: var(--green-l); margin-top: 4px; }
.term-keys { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.term-keys span {
  display: flex; align-items: center; justify-content: center; height: 46px;
  border-radius: 10px; background: rgba(255,255,255,.04); border: 1px solid var(--line-soft);
  font-family: 'Spline Sans Mono', monospace; font-size: 17px; font-weight: 600; color: var(--txt);
}
.term-keys span.wide { font-size: 13px; color: var(--txt-soft); font-family: 'Inter', sans-serif; }
.term-keys span.go { background: var(--grad); border-color: transparent; color: #fff; font-family: 'Inter', sans-serif; font-size: 13.5px; }

/* ── PCN evidence card ──────────────────────── */
.pcn-shots { display: flex; align-items: center; gap: 8px; margin-bottom: 16px; }
.pcn-shot {
  flex: 1; display: flex; flex-direction: column; align-items: center; gap: 8px;
  background: #04101f; border: 1px solid var(--line-soft); border-radius: 12px; padding: 16px 10px;
}
.pcn-cap { font-family: 'Spline Sans Mono', monospace; font-size: 11.5px; color: var(--txt-mute); }
.pcn-arrow { color: var(--brand-l); font-size: 20px; font-weight: 700; opacity: .6; }
.pcn-rows { display: grid; gap: 2px; }
.pcn-row { display: flex; justify-content: space-between; align-items: center; padding: 10px 12px; border-radius: 9px; font-size: 14px; }
.pcn-row span { color: var(--txt-soft); }
.pcn-row b { font-weight: 700; }
.pcn-row + .pcn-row { border-top: 1px solid var(--line-soft); }
.pcn-row.hot { background: rgba(245,101,101,.1); }
.pcn-row.hot span, .pcn-row.hot b { color: var(--red-l); }

/* ── Sectors / use cases ────────────────────── */
.uc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.uc-grid-3 { grid-template-columns: repeat(3, 1fr); }
.uc { background: linear-gradient(160deg, var(--blue-800), var(--blue-850)); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 24px 22px; transition: border-color .25s, transform .25s; }
.uc:hover { border-color: rgba(125,182,255,.4); transform: translateY(-4px); }
.uc h3 { font-size: 17px; margin-bottom: 10px; }
.uc p { font-size: 14px; color: var(--txt-soft); }
.uc sup { color: var(--brand-l); font-weight: 700; }
.setup-note { text-align: center; margin-top: 24px; font-size: 13px; color: var(--txt-mute); }
.setup-note sup { color: var(--brand-l); }

/* ── Compliance / 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(--blue-800), var(--blue-850)); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 28px; border-left: 3px solid var(--brand); }
.sec h3 { font-size: 18px; margin-bottom: 10px; }
.sec p { font-size: 14.5px; color: var(--txt-soft); }

/* ── Platform / powered by ──────────────────── */
.section-platform { background:
  radial-gradient(800px 400px at 50% 0%, rgba(31,122,224,.18), transparent 65%), var(--blue-900);
  text-align: center; border-top: 1px solid var(--line-soft); }
.platform-inner { max-width: 760px; margin: 0 auto; }
.metgrid-logo { width: 210px; 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(--brand-l); color: var(--txt); }
.platform-foot { font-size: 15px; color: var(--txt-mute); }
.platform-cta { margin-top: 26px; }

/* ── FAQ ────────────────────────────────────── */
.faq-wrap { max-width: 820px; }
.faq-list { display: grid; gap: 12px; }
.faq-item {
  background: linear-gradient(160deg, var(--blue-800), var(--blue-850));
  border: 1px solid var(--line); border-radius: 14px; padding: 4px 22px;
  transition: border-color .2s;
}
.faq-item[open] { border-color: rgba(125,182,255,.35); }
.faq-item summary {
  cursor: pointer; list-style: none; padding: 18px 30px 18px 0; position: relative;
  font-weight: 600; font-size: 16px; color: var(--txt);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  font-size: 22px; font-weight: 400; color: var(--brand-l); transition: transform .2s;
}
.faq-item[open] summary::after { content: '−'; }
.faq-a { padding: 0 0 20px; }
.faq-a p { font-size: 15px; color: var(--txt-soft); }

/* ── CTA ────────────────────────────────────── */
.cta { padding: 96px 0; }
.cta-inner {
  max-width: 720px; margin: 0 auto; text-align: center;
  background: linear-gradient(150deg, var(--blue-700), var(--blue-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(31,122,224,.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(--brand-l); box-shadow: 0 0 0 3px rgba(125,182,255,.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-l); margin-bottom: 14px; }
.hp { position: absolute; left: -9999px; }

/* ── Footer ─────────────────────────────────── */
.footer { border-top: 1px solid var(--line); background: var(--blue-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-mark { width: 51px; height: 51px; border-radius: 12px; }
.footer-word { font-size: 20px; }
.footer-brand .brand { margin-bottom: 14px; }
.footer-brand p { font-size: 14px; color: var(--txt-mute); max-width: 300px; }
.footer-company { display: inline-block; margin-top: 12px; font-size: 14px; font-weight: 600; color: var(--brand-l); transition: color .15s; }
.footer-company:hover { color: var(--txt); }
.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, .uc-grid-3 { 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(5,21,43,.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; }
}
@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, .uc-grid-3 { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
  .strip-formats { margin-left: 0; }
  .section { padding: 72px 0; }
  .cta-inner { padding: 40px 24px; }
  .sess-grid { grid-template-columns: 1fr 1fr; }
}

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