:root {
  --bg: #050913;
  --bg-soft: #0a1024;
  --card: rgba(255, 255, 255, 0.06);
  --card-strong: rgba(255, 255, 255, 0.10);
  --text: #f3f6ff;
  --muted: #9aa6c2;
  --muted-2: #6f7c9a;
  --line: rgba(255, 255, 255, 0.10);
  --line-strong: rgba(255, 255, 255, 0.18);
  --brand: #3FB5FF;
  --brand-bright: #62C9FF;
  --brand-deep: #1454C8;
  --brand-ink: #0A1F4D;
  --shadow: 0 30px 90px rgba(0, 8, 30, 0.55);
  --shadow-soft: 0 18px 50px rgba(0, 8, 30, 0.35);
  --radius: 28px;
  --radius-sm: 18px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Nunito Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-weight: 400;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea, select { font: inherit; }

.container { width: min(1200px, calc(100% - 40px)); margin: 0 auto; }
.section-pad { padding: 130px 0; }
.section-tight { padding: 40px 0; }

/* ---------- Backdrop ---------- */
.site-bg {
  position: fixed; inset: 0; z-index: -2; overflow: hidden;
  background:
    radial-gradient(1200px 800px at 80% -10%, rgba(20, 84, 200, .35), transparent 60%),
    radial-gradient(900px 700px at -10% 30%, rgba(63, 181, 255, .18), transparent 60%),
    linear-gradient(180deg, #060a17 0%, #050813 60%, #03060d 100%);
}
.orb {
  position: absolute; width: 44vw; aspect-ratio: 1; border-radius: 999px;
  filter: blur(110px); opacity: .35;
  animation: drift 14s ease-in-out infinite alternate;
}
.orb-one { background: var(--brand-deep); top: -20%; left: -14%; }
.orb-two { background: var(--brand); right: -18%; top: 22%; animation-delay: -4s; }
.grid-glow {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
}

/* ---------- Typography ---------- */
h1, h2, h3, h4, p { margin-top: 0; }
h1 {
  font-size: clamp(46px, 6.6vw, 92px);
  line-height: 1.02;
  letter-spacing: -0.045em;
  font-weight: 200;
  margin-bottom: 26px;
}
h1 em {
  font-style: normal;
  font-weight: 400;
  background: linear-gradient(120deg, var(--brand-bright), #ffffff 60%, var(--brand));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
h2 {
  font-size: clamp(34px, 4.2vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.035em;
  font-weight: 200;
  margin-bottom: 18px;
}
h3 {
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.015em;
  font-weight: 500;
  margin-bottom: 10px;
}
h4 {
  font-size: 13px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 12px;
}
p { line-height: 1.65; }
.eyebrow {
  margin: 0 0 18px;
  color: var(--brand-bright);
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: .22em;
  font-weight: 600;
}
.lead, .section-sub, .capability-copy p, .cta-card p, .contact-copy p, .product-card p, .industry p {
  color: var(--muted); line-height: 1.7;
}
.lead { font-size: 19px; max-width: 600px; font-weight: 300; }
.section-sub { max-width: 640px; margin: 14px auto 0; font-size: 16px; }

/* ---------- Header ---------- */
.header {
  position: fixed; top: 18px; left: 50%; transform: translateX(-50%);
  z-index: 30; width: min(1200px, calc(100% - 32px));
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 12px 10px 18px;
  border: 1px solid var(--line); border-radius: 999px;
  background: rgba(7, 11, 24, 0.55);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  transition: background .25s ease, box-shadow .25s ease, padding .25s ease;
}
.header.is-scrolled {
  background: rgba(7, 11, 24, 0.82);
  box-shadow: var(--shadow-soft);
}
.brand { display: inline-flex; align-items: center; height: 38px; }
.brand-logo {
  height: 38px;
  width: auto;
  display: block;
  object-fit: contain;
  filter:
    drop-shadow(0 0 4px rgba(255, 255, 255, 0.18))
    drop-shadow(0 0 10px rgba(98, 201, 255, 0.12))
    drop-shadow(0 0 12px rgba(63, 181, 255, 0.1));
}
.nav { display: flex; gap: 4px; align-items: center; }
.nav a {
  padding: 9px 14px;
  color: var(--muted);
  font-weight: 500;
  font-size: 14px;
  border-radius: 999px;
  transition: color .2s ease, background .2s ease;
}
.nav a:hover { color: var(--text); background: rgba(255, 255, 255, .06); }
.nav-cta {
  margin-left: 8px;
  background: linear-gradient(135deg, var(--brand), var(--brand-deep)) !important;
  color: #fff !important;
  font-weight: 600 !important;
  padding: 9px 16px !important;
  box-shadow: 0 8px 24px rgba(63, 181, 255, .25);
}
.nav-cta:hover { transform: translateY(-1px); }
.nav-toggle { display: none; background: transparent; border: 0; width: 42px; height: 42px; cursor: pointer; }
.nav-toggle span { display: block; height: 2px; width: 22px; margin: 5px auto; background: var(--text); transition: .2s ease; }

/* ---------- Buttons ---------- */
.btn {
  position: relative; display: inline-flex; justify-content: center; align-items: center;
  min-height: 52px; padding: 0 24px;
  border-radius: 999px;
  font-weight: 500; font-size: 15px; letter-spacing: -0.005em;
  border: 1px solid var(--line); cursor: pointer; overflow: hidden;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); border-color: var(--line-strong); }
.btn.primary {
  color: #fff;
  background: linear-gradient(135deg, var(--brand-bright) 0%, var(--brand) 45%, var(--brand-deep) 100%);
  box-shadow: 0 18px 44px rgba(63, 181, 255, .28);
  border: none;
  font-weight: 600;
}
.btn.secondary { background: rgba(255, 255, 255, .04); color: var(--text); }

/* ---------- Hero ---------- */
.hero { min-height: 100vh; display: grid; align-items: center; padding-top: 170px; }
.hero-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 60px; align-items: center; }
.hero-actions { display: flex; gap: 12px; margin: 36px 0 32px; flex-wrap: wrap; }
.trust-row { display: flex; gap: 8px; flex-wrap: wrap; }
.trust-row span {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .04);
  padding: 9px 13px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 12.5px;
  font-weight: 400;
}

.device-stage {
  position: relative;
  min-height: 640px;
  display: grid; place-items: center;
  perspective: 1400px;
}
.kiosk-img {
  width: min(440px, 82vw);
  filter: drop-shadow(0 40px 80px rgba(0, 0, 0, .55));
}
.floaty { animation: floaty 5.8s ease-in-out infinite; }
.scan-line {
  position: absolute;
  width: 46%;
  height: 2px;
  top: 22%;
  background: linear-gradient(90deg, transparent, var(--brand-bright), transparent);
  filter: drop-shadow(0 0 16px var(--brand));
  animation: scan 3.6s linear infinite;
  pointer-events: none;
}

.pulse-card {
  position: absolute;
  width: 168px;
  padding: 14px 16px;
  border: 1px solid var(--line-strong);
  border-radius: 18px;
  background: rgba(8, 14, 30, .72);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
  animation: pulseFloat 4.2s ease-in-out infinite;
}
.pulse-card strong { display: block; font-size: 14px; font-weight: 500; }
.pulse-card span { color: var(--muted); font-size: 12px; font-weight: 400; }
.card-one { left: -2%; top: 18%; }
.card-two { right: -2%; bottom: 16%; animation-delay: -2s; }
.card-two strong::before {
  content: ""; display: inline-block; width: 8px; height: 8px; border-radius: 50%;
  background: #30D158; box-shadow: 0 0 12px #30D158;
  margin-right: 8px; vertical-align: middle;
}

/* ---------- Stats ---------- */
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px;
  padding: 14px;
  border: 1px solid var(--line); border-radius: var(--radius);
  background: rgba(255, 255, 255, .035);
  backdrop-filter: blur(14px);
}
.stats-grid > div {
  padding: 26px 28px; border-radius: 22px; background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .04);
}
.stats-grid strong {
  display: block;
  font-size: 46px;
  line-height: 1.05;
  letter-spacing: -0.04em;
  font-weight: 200;
  color: #fff;
  margin-bottom: 6px;
}
.stats-grid .stat-suffix {
  font-size: 0.5em;
  margin-left: 4px;
  color: var(--brand-bright);
  font-weight: 300;
  letter-spacing: -0.02em;
  vertical-align: 0.05em;
}
.stats-grid > div > span { color: var(--muted); font-size: 14px; }

/* ---------- Section heads ---------- */
.section-head { max-width: 820px; text-align: center; margin: 0 auto 56px; }

/* ---------- Product grid ---------- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, .055), rgba(255, 255, 255, .02));
  overflow: hidden;
  cursor: pointer;
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.product-card:focus { outline: none; }
.product-card:hover, .product-card:focus-visible {
  transform: translateY(-6px);
  border-color: rgba(63, 181, 255, .4);
  box-shadow: 0 30px 70px rgba(0, 8, 30, .5), 0 0 0 1px rgba(63, 181, 255, .15);
}
.product-card-wide { grid-column: span 2; }

.product-media {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.product-card-wide .product-media { aspect-ratio: 21/9; }
.product-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s ease;
}
.product-card:hover .product-media img { transform: scale(1.04); }
.product-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(5, 9, 19, 0) 60%, rgba(5, 9, 19, .55) 100%);
  pointer-events: none;
}

.product-body {
  padding: 16px 26px 28px;
  display: flex;
  flex-direction: column;
}
.product-tag {
  align-self: flex-end;
  margin: 0 0 8px;
  padding: 5px 11px;
  border-radius: 999px;
  background: rgba(63, 181, 255, .12);
  border: 1px solid rgba(63, 181, 255, .25);
  color: var(--brand-bright);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.product-body h3 { font-weight: 400; font-size: 24px; letter-spacing: -0.02em; }
.product-body p { color: var(--muted); margin-bottom: 16px; font-size: 15px; }
.product-link {
  color: var(--brand-bright); font-size: 14px; font-weight: 500;
  transition: gap .2s ease;
}
.product-card:hover .product-link { color: #fff; }

/* ---------- Capability section ---------- */
.capability-section {
  background:
    radial-gradient(700px 400px at 10% 50%, rgba(63, 181, 255, .08), transparent 70%),
    linear-gradient(180deg, transparent, rgba(63, 181, 255, .03), transparent);
}
.capability-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 60px; align-items: center; }
.feature-list { list-style: none; padding: 0; margin: 30px 0 0; display: grid; gap: 16px; }
.feature-list li {
  display: flex; gap: 14px; align-items: center;
  color: var(--muted); font-weight: 400; font-size: 15.5px;
}
.feature-list span {
  width: 8px; height: 8px; border-radius: 50%; flex: 0 0 8px;
  background: var(--brand-bright);
  box-shadow: 0 0 16px var(--brand);
}

.glass {
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .04);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow);
}
.dashboard-card {
  position: relative;
  padding: 22px;
  transform-style: preserve-3d;
  transition: transform .35s ease;
}
.dash-top {
  display: flex; gap: 7px; align-items: center; margin-bottom: 18px;
  padding-bottom: 14px; border-bottom: 1px solid var(--line);
}
.dash-top > span:not(.dash-title) {
  width: 10px; height: 10px; border-radius: 999px; background: rgba(255, 255, 255, .25);
}
.dash-title {
  margin-left: 12px; font-size: 13px; color: var(--muted); font-weight: 500;
  letter-spacing: -0.01em;
}
.dash-body { display: grid; gap: 14px; }
.dash-row {
  display: grid; grid-template-columns: 130px 1fr 50px; gap: 14px; align-items: center;
}
.dash-label { color: var(--muted); font-size: 13px; }
.dash-bar {
  position: relative; height: 8px; border-radius: 999px;
  background: rgba(255, 255, 255, .06); overflow: hidden;
}
.dash-bar > span {
  position: absolute; inset: 0;
  width: var(--w);
  background: linear-gradient(90deg, var(--brand-bright), var(--brand-deep));
  border-radius: 999px;
}
.dash-val { color: var(--text); font-size: 13px; text-align: right; font-weight: 500; }
.dash-chart { margin-top: 8px; height: 90px; }
.dash-chart svg { width: 100%; height: 100%; display: block; }
.live-chip {
  position: absolute; right: 24px; bottom: 24px;
  border-radius: 999px;
  background: rgba(5, 9, 19, .9);
  color: var(--brand-bright);
  padding: 9px 14px;
  font-weight: 500; font-size: 12.5px;
  border: 1px solid rgba(63, 181, 255, .3);
}

/* ---------- Industries ---------- */
.industries-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.industry {
  position: relative;
  display: flex; flex-direction: column; gap: 8px;
  min-height: 170px;
  padding: 28px 26px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, .035);
  transition: transform .25s ease, background .25s ease, border-color .25s ease;
  overflow: hidden;
}
.industry::before {
  content: "";
  position: absolute; inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(63, 181, 255, .35), transparent 55%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0; transition: opacity .25s ease;
  pointer-events: none;
}
.industry:hover {
  transform: translateY(-4px);
  background: rgba(63, 181, 255, .06);
  border-color: rgba(63, 181, 255, .3);
}
.industry:hover::before { opacity: 1; }
.industry h3 { margin: 0 0 4px; font-weight: 400; font-size: 22px; }
.industry p { margin: 0; font-size: 14px; line-height: 1.55; }

/* ---------- CTA band ---------- */
.cta-card {
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
  padding: 52px;
  border-radius: var(--radius);
  border: 1px solid rgba(63, 181, 255, .25);
  background:
    radial-gradient(600px 300px at 0% 0%, rgba(63, 181, 255, .25), transparent 70%),
    radial-gradient(500px 300px at 100% 100%, rgba(20, 84, 200, .25), transparent 70%),
    rgba(255, 255, 255, .03);
  box-shadow: var(--shadow);
}
.cta-card div { max-width: 680px; }
.cta-card p { margin: 0; color: var(--muted); }

/* ---------- Contact ---------- */
.contact-section { padding-bottom: 90px; }
.contact-grid { display: grid; grid-template-columns: .85fr 1fr; gap: 50px; align-items: start; }
.contact-meta { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 12px; }
.contact-meta li { display: flex; gap: 14px; align-items: baseline; }
.contact-meta span {
  color: var(--muted); font-size: 12px; letter-spacing: .18em;
  text-transform: uppercase; font-weight: 600; width: 76px;
}
.contact-meta a { color: var(--text); font-weight: 400; }
.contact-meta a:hover { color: var(--brand-bright); }

.contact-form {
  display: grid; gap: 16px;
  padding: 28px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .045);
  box-shadow: var(--shadow);
}
.contact-form label {
  display: grid; gap: 8px;
  color: var(--muted); font-weight: 500; font-size: 12.5px;
  letter-spacing: .04em;
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(0, 0, 0, .25);
  color: var(--text);
  padding: 14px 15px;
  outline: none;
  font-weight: 400;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(63, 181, 255, .12);
}
.contact-form select option { background: #0a1024; }
.contact-form button[type="submit"][disabled] { opacity: .6; cursor: progress; }
.form-status {
  margin: 0;
  min-height: 20px;
  font-size: 14px;
  font-weight: 400;
  transition: color .2s ease;
}
.form-status.sending { color: var(--muted); }
.form-status.success { color: var(--brand-bright); }
.form-status.error   { color: #ff6068; }
.form-status a { color: inherit; text-decoration: underline; }

/* ---------- Footer ---------- */
.footer { padding: 36px 0; color: var(--muted); border-top: 1px solid var(--line); }
.footer-inner { display: flex; justify-content: space-between; gap: 16px; align-items: center; }
.footer-brand { display: flex; align-items: center; gap: 10px; }
.footer-brand img { width: 24px; height: 24px; object-fit: contain; }
.footer-brand span { font-size: 14px; }
.footer a { color: var(--text); font-weight: 500; font-size: 14px; }
.footer a:hover { color: var(--brand-bright); }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s ease, transform .8s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* ---------- Modal ---------- */
.modal {
  position: fixed; inset: 0; z-index: 60;
  display: none;
  align-items: center; justify-content: center;
  padding: 20px;
}
.modal.open { display: flex; }
.modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(3, 6, 13, .72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  animation: fadeIn .25s ease;
}
.modal-card {
  position: relative;
  width: min(960px, 100%);
  max-height: calc(100vh - 40px);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  border-radius: var(--radius);
  border: 1px solid var(--line-strong);
  background: linear-gradient(180deg, rgba(20, 28, 56, .98), rgba(8, 12, 26, .98));
  box-shadow: 0 60px 140px rgba(0, 8, 30, .6);
  animation: modalIn .35s cubic-bezier(.2, .8, .2, 1);
}
.modal-media { overflow: hidden; min-height: 380px; }
.modal-media img { width: 100%; height: 100%; object-fit: cover; }
.modal-body {
  padding: 36px 36px 32px;
  overflow-y: auto;
  max-height: calc(100vh - 40px);
}
.modal-body h3 {
  font-size: 30px;
  font-weight: 300;
  letter-spacing: -0.025em;
  margin-bottom: 12px;
}
.modal-summary { color: var(--muted); margin-bottom: 26px; font-size: 15.5px; }
.modal-section { margin-bottom: 22px; }
.modal-section ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.modal-section li {
  position: relative; padding-left: 22px;
  color: var(--muted); line-height: 1.55; font-size: 14.5px;
}
.modal-section li::before {
  content: ""; position: absolute; left: 0; top: 9px;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--brand-bright);
  box-shadow: 0 0 12px var(--brand);
}
.modal-section p { color: var(--muted); margin: 0; font-size: 14.5px; }
.modal-cta { margin-top: 8px; }
.modal-close {
  position: absolute; top: 14px; right: 14px;
  z-index: 2;
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  background: rgba(0, 0, 0, .45);
  color: #fff;
  font-size: 0;
  cursor: pointer;
  padding: 0;
  transition: background .25s ease, border-color .25s ease, color .25s ease, box-shadow .25s ease, transform .25s ease;
}
.modal-close::before,
.modal-close::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 14px; height: 2px;
  background: currentColor;
  border-radius: 2px;
  transform-origin: center center;
  transition: background .25s ease;
}
.modal-close::before { transform: translate(-50%, -50%) rotate(45deg); }
.modal-close::after  { transform: translate(-50%, -50%) rotate(-45deg); }
.modal-close:hover {
  background: rgba(255, 56, 64, 0.18);
  border-color: rgba(255, 80, 90, 0.85);
  color: #ff6068;
  box-shadow:
    0 0 0 1px rgba(255, 80, 90, 0.35),
    0 0 18px rgba(255, 56, 64, 0.55),
    0 0 36px rgba(255, 56, 64, 0.35);
  transform: rotate(90deg);
}
body.modal-open { overflow: hidden; }

/* ---------- Animations ---------- */
@keyframes drift { to { transform: translate3d(6%, 8%, 0) scale(1.08); } }
@keyframes floaty { 0%, 100% { transform: translateY(0) rotateX(0); } 50% { transform: translateY(-18px) rotateX(2deg); } }
@keyframes pulseFloat { 0%, 100% { transform: translateY(0); opacity: .94; } 50% { transform: translateY(-10px); opacity: 1; } }
@keyframes scan { 0% { transform: translateY(0); opacity: 0; } 12%, 78% { opacity: 1; } 100% { transform: translateY(420px); opacity: 0; } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes modalIn { from { opacity: 0; transform: translateY(20px) scale(.98); } to { opacity: 1; transform: translateY(0) scale(1); } }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .section-pad { padding: 90px 0; }
  .hero-grid, .capability-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero { padding-top: 130px; }
  .device-stage { min-height: 460px; }
  .product-grid { grid-template-columns: 1fr; }
  .product-card-wide { grid-column: span 1; }
  .industries-grid, .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-card { flex-direction: column; align-items: flex-start; padding: 36px; }
  .modal-card { grid-template-columns: 1fr; }
  .modal-media { min-height: 220px; aspect-ratio: 16/9; }
  .modal-body { padding: 28px 24px; }
  .nav-toggle { display: block; }
  .nav {
    position: absolute; top: calc(100% + 12px); right: 0; left: 0;
    display: none; flex-direction: column; gap: 4px;
    padding: 14px;
    border: 1px solid var(--line); border-radius: 24px;
    background: rgba(7, 11, 24, .95);
    backdrop-filter: blur(20px);
  }
  .nav.open { display: flex; }
  .nav a { width: 100%; text-align: center; }
  .nav-cta { margin: 6px 0 0 !important; }
  .nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.is-open span:nth-child(2) { opacity: 0; }
  .nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .dash-row { grid-template-columns: 100px 1fr 44px; }
}

@media (max-width: 620px) {
  .container { width: calc(100% - 28px); }
  .industries-grid, .stats-grid { grid-template-columns: 1fr; }
  .pulse-card { display: none; }
  .scan-line { width: 70%; }
  .footer-inner { flex-direction: column; }
  .stats-grid strong { font-size: 38px; }
  .cta-card { padding: 30px; }
  .modal-body h3 { font-size: 24px; }
}
