/* ==========================================================================
   Vukokuhle Holdings — Design System
   Dark "control-room" theme: near-black base, amber signal accent,
   glass panels, monospace data readouts (echoes the NEO monitoring platform).
   ========================================================================== */

:root{
  --ink:        #0a0c0f;
  --ink-2:      #0f1216;
  --panel:      #14171d;
  --panel-2:    #191d24;
  --glass:      rgba(255,255,255,0.045);
  --glass-hi:   rgba(255,255,255,0.08);
  --border:     rgba(255,255,255,0.09);
  --border-hi:  rgba(255,255,255,0.16);

  --amber:      #f5a623;
  --amber-2:    #ffc35c;
  --amber-dim:  rgba(245,166,35,0.14);
  --amber-line: rgba(245,166,35,0.35);

  --steel:      #4b4f58;
  --silver:     #9aa2ab;

  --text:       #f3f4f6;
  --text-dim:   #c4c8ce;
  --muted:      #8b929c;
  --muted-2:    #5c6470;

  --success:    #34d399;
  --warn:       #f5a623;

  --radius-sm:  10px;
  --radius:     16px;
  --radius-lg:  24px;

  --display: 'Space Grotesk', 'Arial Narrow', sans-serif;
  --body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --mono: 'IBM Plex Mono', 'Courier New', monospace;

  --container: 1240px;
  --nav-h: 76px;
}

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; scroll-padding-top: 100px; }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *, *::before, *::after{ animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

body{
  margin:0;
  background: var(--ink);
  color: var(--text);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Ambient background: soft grid + vignette, fixed so it never re-renders on scroll */
body::before{
  content:"";
  position: fixed; inset:0;
  z-index:-2;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(ellipse 90% 60% at 50% 0%, black 40%, transparent 90%);
  -webkit-mask-image: radial-gradient(ellipse 90% 60% at 50% 0%, black 40%, transparent 90%);
}
body::after{
  content:"";
  position: fixed; inset:0;
  z-index:-3;
  background:
    radial-gradient(900px 500px at 85% -5%, rgba(245,166,35,0.10), transparent 60%),
    radial-gradient(700px 500px at 10% 10%, rgba(155,163,255,0.05), transparent 60%),
    var(--ink);
}

img{ max-width:100%; display:block; }
a{ color: inherit; text-decoration:none; }
ul, ol{ margin:0; padding:0; list-style:none; }
h1,h2,h3,h4{ font-family: var(--display); font-weight: 700; margin:0; letter-spacing:-0.01em; }
p{ margin:0; }
button{ font-family: inherit; cursor:pointer; }

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

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

.eyebrow{
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  display: inline-flex;
  align-items:center;
  gap:10px;
}
.eyebrow::before{
  content:"";
  width:7px; height:7px;
  border-radius:50%;
  background: var(--amber);
  box-shadow: 0 0 0 3px var(--amber-dim);
}

.section{ padding: 110px 0; position:relative; }
.section-tight{ padding: 70px 0; }
@media (max-width: 780px){
  .section{ padding: 72px 0; }
  .section-tight{ padding: 50px 0; }
}

.section-head{ max-width: 680px; margin-bottom: 56px; }
.section-head h2{ font-size: clamp(28px, 3.6vw, 42px); line-height:1.15; margin-top:14px; }
.section-head p{ color: var(--muted); font-size:17px; margin-top:16px; }
.section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding: 15px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  border: 1px solid transparent;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, border-color .25s ease, color .25s ease;
  white-space: nowrap;
}
.btn-primary{
  background: linear-gradient(135deg, var(--amber-2), var(--amber));
  color: #16130a;
  box-shadow: 0 8px 24px -8px rgba(245,166,35,0.55);
}
.btn-primary:hover{ transform: translateY(-2px); box-shadow: 0 12px 30px -8px rgba(245,166,35,0.7); }
.btn-ghost{
  background: var(--glass);
  border-color: var(--border);
  color: var(--text);
  backdrop-filter: blur(10px);
}
.btn-ghost:hover{ border-color: var(--border-hi); background: var(--glass-hi); transform: translateY(-2px); }
.btn-block{ width:100%; }
.btn svg{ width:16px; height:16px; flex-shrink:0; }

/* ---------- Glass panel ---------- */
.glass{
  background: linear-gradient(160deg, var(--glass), rgba(255,255,255,0.015));
  border: 1px solid var(--border);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-radius: var(--radius);
}
.glass-hover{ transition: transform .35s cubic-bezier(.2,.7,.3,1), border-color .35s, box-shadow .35s; }
.glass-hover:hover{
  transform: translateY(-6px);
  border-color: var(--amber-line);
  box-shadow: 0 20px 45px -20px rgba(0,0,0,0.6), 0 0 0 1px rgba(245,166,35,0.08) inset;
}

/* ==========================================================================
   Header / Nav
   ========================================================================== */
.site-header{
  position: fixed; top:0; left:0; right:0; z-index: 200;
  height: var(--nav-h);
  display:flex; align-items:center;
  transition: background .3s ease, border-color .3s ease, box-shadow .3s ease;
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled{
  background: rgba(10,12,15,0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 10px 30px -20px rgba(0,0,0,0.8);
}
.nav-inner{ display:flex; align-items:center; justify-content:space-between; width:100%; gap:18px; }
.brand{ display:flex; align-items:center; gap:10px; }
.brand img{ height:34px; width:auto; }
.brand .wordmark{ font-family: var(--display); font-weight:700; font-size:17px; letter-spacing:-0.01em; }
.brand .wordmark span{ color: var(--amber); }

.nav-links{ display:flex; align-items:center; gap:2px; flex-shrink:1; }
.nav-links > li > a{
  display:flex; align-items:center; gap:6px;
  padding: 10px 13px;
  font-size: 14px; font-weight:500; color: var(--text-dim);
  border-radius: 999px;
  white-space: nowrap;
  transition: color .2s, background .2s;
}
.nav-links > li > a:hover{ color: var(--text); background: var(--glass); }
.nav-links > li.has-dropdown{ position:relative; }
.nav-links > li.has-dropdown:hover .dropdown,
.nav-links > li.has-dropdown:focus-within .dropdown{ opacity:1; visibility:visible; transform: translateY(0); }
.dropdown{
  position:absolute; top:calc(100% + 10px); left:0;
  width: 300px;
  padding: 10px;
  opacity:0; visibility:hidden; transform: translateY(8px);
  transition: opacity .22s ease, transform .22s ease, visibility .22s;
  border-radius: var(--radius);
}
.dropdown a{
  display:block; padding: 11px 14px; border-radius: var(--radius-sm);
  font-size:14px; color: var(--text-dim);
}
.dropdown a:hover{ background: var(--glass-hi); color: var(--text); }
.dropdown a small{ display:block; color: var(--muted); font-size:12px; margin-top:2px; font-weight:400; }

.nav-actions{ display:flex; align-items:center; gap:10px; flex-shrink:0; }
.nav-actions .btn{ padding: 11px 18px; font-size:13.5px; white-space:nowrap; }
.nav-phone{ display:flex; align-items:center; gap:7px; font-family: var(--mono); font-size:13px; color: var(--text-dim); white-space:nowrap; }
.nav-phone svg{ width:14px; height:14px; color: var(--amber); flex-shrink:0; }

.nav-toggle{
  display:none; width:44px; height:44px; border-radius:12px;
  border:1px solid var(--border); background: var(--glass);
  align-items:center; justify-content:center; flex-direction:column; gap:5px;
}
.nav-toggle span{ width:20px; height:2px; background: var(--text); border-radius:2px; transition: transform .3s, opacity .3s; }
.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); }

@media (max-width: 1300px){
  .nav-phone{ display:none; }
}

/* Mobile menu panel: hidden off-canvas at ALL widths by default — only the
   hamburger button + collapsing the desktop nav is width-dependent below.
   (Previously these rules lived only inside the 980px media query, so on
   desktop the panel had no "hidden" rule at all and rendered inline as
   plain unstyled content — that was the bug behind the stray "Home" /
   "Products" / "Case Studies" text and oversized arrow icons on desktop.) */
.mobile-panel{
  position:fixed; inset: var(--nav-h) 0 0 0; z-index:190;
  background: rgba(10,12,15,0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 28px 24px 40px;
  overflow-y:auto;
  transform: translateY(-12px);
  opacity:0; visibility:hidden; pointer-events:none;
  transition: opacity .3s ease, transform .3s ease, visibility .3s;
}
.mobile-panel.is-open{ opacity:1; visibility:visible; transform:translateY(0); pointer-events:auto; }
.mobile-panel a{
  display:flex; justify-content:space-between; align-items:center;
  padding: 17px 4px; font-size:19px; font-weight:600;
  border-bottom: 1px solid var(--border);
}
.mobile-panel a svg{ width:18px; height:18px; flex-shrink:0; color: var(--muted-2); }
.mobile-panel .mobile-sub{ padding-left:14px; }
.mobile-panel .mobile-sub a{ font-size:15px; font-weight:500; color: var(--muted); border-bottom:none; padding:10px 4px; }
.mobile-panel .mobile-sub a svg{ display:none; }
.mobile-panel .btn{ margin-top: 24px; }

@media (max-width: 980px){
  .nav-links, .nav-actions .btn-ghost, .nav-phone{ display:none; }
  .nav-toggle{ display:flex; }
}

/* ==========================================================================
   Breadcrumbs
   ========================================================================== */
.breadcrumbs{
  padding: calc(var(--nav-h) + 26px) 0 18px;
  font-family: var(--mono); font-size: 12.5px; color: var(--muted-2);
}
.breadcrumbs ol{ display:flex; flex-wrap:wrap; align-items:center; gap:8px; }
.breadcrumbs a{ color: var(--muted); transition: color .2s; }
.breadcrumbs a:hover{ color: var(--amber); }
.breadcrumbs li[aria-current]{ color: var(--text-dim); }
.breadcrumbs .sep{ color: var(--muted-2); }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero{
  position:relative;
  padding: calc(var(--nav-h) + 64px) 0 90px;
  overflow:hidden;
}
.hero-grid{
  display:grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items:center;
}
@media (max-width: 980px){ .hero-grid{ grid-template-columns:1fr; gap:52px; } }

.hero-copy h1{
  font-size: clamp(34px, 4.8vw, 60px);
  line-height: 1.06;
  margin-top: 18px;
}
.hero-copy h1 em{ font-style:normal; color: var(--amber); }
.hero-copy .lede{
  margin-top: 22px; font-size: 18px; color: var(--muted); max-width: 540px;
}
.hero-cta{ display:flex; flex-wrap:wrap; gap:14px; margin-top:34px; }
.hero-trust{
  margin-top: 42px; display:flex; flex-wrap:wrap; gap: 28px 34px;
}
.hero-trust .stat{ display:flex; flex-direction:column; gap:4px; }
.hero-trust .stat b{
  font-family: var(--mono); font-size: 24px; color: var(--text);
  display:flex; align-items:baseline; gap:2px;
}
.hero-trust .stat b .unit{ font-size:14px; color: var(--amber); }
.hero-trust .stat span{ font-size: 12.5px; color: var(--muted); text-transform:uppercase; letter-spacing:.05em; }

/* Signature widget: live monitoring panel */
.monitor-widget{
  position:relative; border-radius: var(--radius-lg);
  padding: 22px;
  overflow:hidden;
}
.monitor-widget .mw-head{
  display:flex; align-items:center; justify-content:space-between;
  padding-bottom:16px; margin-bottom:16px; border-bottom:1px solid var(--border);
}
.mw-head .mw-title{ font-family: var(--mono); font-size:12.5px; letter-spacing:.08em; color: var(--muted); text-transform:uppercase; }
.mw-head .mw-live{ display:flex; align-items:center; gap:7px; font-family: var(--mono); font-size:11.5px; color: var(--success); }
.mw-head .mw-live i{ width:7px; height:7px; border-radius:50%; background: var(--success); box-shadow: 0 0 0 3px rgba(52,211,153,0.2); animation: pulse-dot 1.8s ease-in-out infinite; }

.mw-map{
  position: relative; height: 230px; border-radius: 14px;
  background:
    radial-gradient(circle at 20% 30%, rgba(245,166,35,0.08), transparent 55%),
    radial-gradient(circle at 80% 70%, rgba(155,163,255,0.06), transparent 55%),
    var(--ink-2);
  border: 1px solid var(--border);
  overflow:hidden;
}
.mw-map svg{ position:absolute; inset:0; width:100%; height:100%; }
.mw-map .node{ transform-origin: center; }
.mw-map .node circle.ring{ animation: pulse-ring 2.6s ease-out infinite; }
.mw-map .node.n2 circle.ring{ animation-delay: .6s; }
.mw-map .node.n3 circle.ring{ animation-delay: 1.2s; }
.mw-map .node.n4 circle.ring{ animation-delay: 1.8s; }
.mw-map .link{ stroke-dasharray: 4 5; animation: dash 3.4s linear infinite; }

.mw-rows{ margin-top:16px; display:flex; flex-direction:column; gap:10px; }
.mw-row{
  display:flex; align-items:center; justify-content:space-between; gap: 10px;
  font-family: var(--mono); font-size: 12.5px; color: var(--text-dim);
  padding: 10px 12px; border-radius:10px; background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
}
.mw-row .site{ display:flex; align-items:center; gap:9px; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.mw-row .dot{ width:7px; height:7px; border-radius:50%; background: var(--success); flex-shrink:0; }
.mw-row .dot.warn{ background: var(--amber); }
.mw-row .val{ color: var(--muted); flex-shrink:0; white-space:nowrap; }
@media (max-width: 420px){
  .mw-row{ font-size: 11px; padding: 9px 10px; }
}

@keyframes pulse-dot{ 0%,100%{ opacity:1; } 50%{ opacity:.35; } }
@keyframes pulse-ring{
  0%{ opacity:.9; r:4; }
  80%{ opacity:0; r:22; }
  100%{ opacity:0; r:22; }
}
@keyframes dash{ to{ stroke-dashoffset: -100; } }

/* ==========================================================================
   Marquee / logo strip (technology partners)
   ========================================================================== */
.strip{
  padding: 50px 0; border-top:1px solid var(--border); border-bottom:1px solid var(--border);
}
.strip-content{ display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap: 32px; }
.strip-label{ 
  font-family: var(--mono); font-size:12px; letter-spacing:.1em; text-transform:uppercase; 
  color: var(--muted-2); white-space:nowrap; min-width:140px;
}
.strip-logos{ 
  display:flex; gap: 48px; flex-wrap:wrap; align-items:center; 
  flex:1; justify-content:center;
}
.logo-item{
  display:flex; align-items:center; justify-content:center;
  transition: opacity .3s ease, transform .3s ease;
}
.logo-item img{
  height:50px; width:auto; max-width:180px;
  filter: brightness(0.85);
  transition: filter .3s ease;
}
.logo-item:hover img{
  filter: brightness(1.1);
}
.logo-item .logo-text{
  font-family: var(--display); font-weight:600; color: var(--muted); 
  font-size:14.5px; white-space:nowrap;
  transition: color .3s ease;
}
.logo-item:hover .logo-text{
  color: var(--amber);
}

@media (max-width: 780px){
  .strip{ padding: 40px 0; }
  .strip-content{ justify-content:center; }
  .strip-label{ order:1; width:100%; text-align:center; margin-bottom:16px; }
  .strip-logos{ justify-content:center; gap:32px; }
}

/* ==========================================================================
   Cards / grids
   ========================================================================== */
.grid{ display:grid; gap: 22px; }
.grid-3{ grid-template-columns: repeat(3, 1fr); }
.grid-4{ grid-template-columns: repeat(4, 1fr); }
.grid-2{ grid-template-columns: repeat(2, 1fr); }
@media (max-width: 980px){ .grid-3, .grid-4{ grid-template-columns: repeat(2,1fr); } }
@media (max-width: 640px){ .grid-3, .grid-4, .grid-2{ grid-template-columns: 1fr; } }

.card{ padding: 30px; }
.card .icon{
  width:48px; height:48px; border-radius: 13px;
  display:flex; align-items:center; justify-content:center;
  background: var(--amber-dim); color: var(--amber); margin-bottom:20px;
}
.card .icon svg{ width:24px; height:24px; }
.card h3{ font-size:19px; margin-bottom:10px; }
.card p{ color: var(--muted); font-size:14.8px; }
.card .card-link{
  margin-top:18px; display:inline-flex; align-items:center; gap:6px;
  font-size: 13.5px; font-weight:600; color: var(--amber);
}
.card .card-link svg{ width:14px; height:14px; transition: transform .2s; }
.card:hover .card-link svg{ transform: translateX(4px); }

.pill{
  display:inline-flex; align-items:center; gap:6px;
  padding: 6px 12px; border-radius:999px; font-size:12px; font-family:var(--mono);
  background: var(--glass); border:1px solid var(--border); color: var(--muted);
}

/* Solutions index list */
.solution-row{
  display:grid; grid-template-columns: 60px 1fr auto; gap: 24px; align-items:center;
  padding: 26px 8px; border-bottom:1px solid var(--border);
  transition: background .25s;
}
.solution-row:hover{ background: var(--glass); }
.solution-row .num{ font-family: var(--mono); color: var(--muted-2); font-size:14px; }
.solution-row h3{ font-size: 20px; margin-bottom:6px; }
.solution-row p{ color: var(--muted); font-size:14.5px; max-width:640px; }
.solution-row .go{
  width:42px; height:42px; border-radius:50%; border:1px solid var(--border);
  display:flex; align-items:center; justify-content:center; transition: all .25s;
}
.solution-row .go svg{ width:16px; height:16px; transition: transform .25s; }
.solution-row:hover .go{ background: var(--amber); border-color: var(--amber); }
.solution-row:hover .go svg{ transform: rotate(45deg); color:#16130a; }
@media (max-width: 700px){
  .solution-row{ grid-template-columns: 1fr auto; }
  .solution-row .num{ display:none; }
}

/* ==========================================================================
   Stats band
   ========================================================================== */
.stats-band{
  padding: 60px; border-radius: var(--radius-lg);
  display:grid; grid-template-columns: repeat(4,1fr); gap: 30px;
}
@media (max-width: 780px){ .stats-band{ grid-template-columns: repeat(2,1fr); padding:36px 24px; } }
.stats-band .stat-num{ font-family: var(--mono); font-size: clamp(30px,4vw,44px); color: var(--amber); }
.stats-band .stat-lbl{ margin-top:8px; font-size:13.5px; color: var(--muted); }

/* ==========================================================================
   Timeline (roadmap)
   ========================================================================== */
.timeline{ display:grid; grid-template-columns: repeat(3,1fr); gap:22px; position:relative; }
@media (max-width: 780px){ .timeline{ grid-template-columns:1fr; } }
.timeline .t-card{ padding:28px; position:relative; }
.timeline .t-label{ font-family:var(--mono); font-size:12px; color:var(--amber); text-transform:uppercase; letter-spacing:.08em; }
.timeline .t-card h3{ margin-top:10px; font-size:19px; }
.timeline .t-card p{ margin-top:10px; color:var(--muted); font-size:14.5px; }

/* ==========================================================================
   Sector tabs
   ========================================================================== */
.sector-tabs{ display:flex; gap:10px; flex-wrap:wrap; margin-bottom:36px; }
.sector-tab{
  padding:12px 20px; border-radius:999px; border:1px solid var(--border);
  background: var(--glass); font-size:14px; font-weight:600; color: var(--muted);
  transition: all .25s;
}
.sector-tab.is-active, .sector-tab:hover{ background: var(--amber-dim); border-color: var(--amber-line); color: var(--amber-2); }

/* ==========================================================================
   FAQ accordion
   ========================================================================== */
.faq-list{ display:flex; flex-direction:column; gap:14px; }
.faq-item{ border-radius: var(--radius); overflow:hidden; }
.faq-q{
  width:100%; display:flex; align-items:center; justify-content:space-between; gap:20px;
  padding: 22px 26px; background:none; border:none; color: var(--text); text-align:left;
  font-family: var(--display); font-size:16.5px; font-weight:600;
}
.faq-q .plus{
  width:30px; height:30px; border-radius:50%; border:1px solid var(--border);
  display:flex; align-items:center; justify-content:center; flex-shrink:0; position:relative;
}
.faq-q .plus::before, .faq-q .plus::after{
  content:""; position:absolute; background: var(--amber); border-radius:2px;
}
.faq-q .plus::before{ width:11px; height:2px; }
.faq-q .plus::after{ width:2px; height:11px; transition: transform .3s ease; }
.faq-item.is-open .faq-q .plus::after{ transform: rotate(90deg) scaleY(0); }
.faq-item.is-open .faq-q .plus{ background: var(--amber-dim); border-color: var(--amber-line); }
.faq-a{ max-height:0; overflow:hidden; transition: max-height .35s ease; }
.faq-a-inner{ padding: 0 26px 24px; color: var(--muted); font-size:15px; max-width:760px; }

/* ==========================================================================
   CTA banner
   ========================================================================== */
.cta-banner{
  position:relative; padding: 64px; border-radius: var(--radius-lg);
  display:flex; align-items:center; justify-content:space-between; gap: 30px; flex-wrap:wrap;
  overflow:hidden;
  background: linear-gradient(135deg, rgba(245,166,35,0.14), rgba(245,166,35,0.03));
  border: 1px solid var(--amber-line);
}
.cta-banner::before{
  content:""; position:absolute; inset:0; z-index:0;
  background-image: linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: radial-gradient(circle at 85% 20%, black, transparent 65%);
  -webkit-mask-image: radial-gradient(circle at 85% 20%, black, transparent 65%);
}
.cta-banner > *{ position:relative; z-index:1; }
.cta-banner h2{ font-size: clamp(24px,3vw,34px); max-width:520px; }
.cta-banner p{ color: var(--text-dim); margin-top:12px; max-width:460px; }
.cta-actions{ display:flex; gap:14px; flex-wrap:wrap; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer{ border-top:1px solid var(--border); padding: 76px 0 32px; margin-top:60px; }
.footer-top{ display:grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1.1fr; gap: 40px; padding-bottom:52px; }
@media (max-width: 980px){ .footer-top{ grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px){ .footer-top{ grid-template-columns: 1fr; } }
.footer-brand .brand{ margin-bottom:16px; }
.footer-brand p{ color: var(--muted); font-size:14px; max-width:280px; }
.footer-social{ display:flex; gap:10px; margin-top:20px; }
.footer-social a{
  width:38px; height:38px; border-radius:50%; border:1px solid var(--border);
  display:flex; align-items:center; justify-content:center; transition: all .2s;
}
.footer-social a:hover{ border-color:var(--amber-line); background: var(--amber-dim); }
.footer-social svg{ width:16px; height:16px; }
.footer-col h4{ font-size:13px; text-transform:uppercase; letter-spacing:.08em; color: var(--muted-2); margin-bottom:18px; font-family:var(--mono); font-weight:500;}
.footer-col li{ margin-bottom:12px; }
.footer-col a{ font-size:14.5px; color: var(--text-dim); transition: color .2s; }
.footer-col a:hover{ color: var(--amber); }
.footer-contact li{ display:flex; gap:10px; align-items:flex-start; font-size:14px; color:var(--text-dim); margin-bottom:14px; }
.footer-contact svg{ width:16px; height:16px; color:var(--amber); flex-shrink:0; margin-top:2px; }
.footer-bottom{
  padding-top: 28px; border-top:1px solid var(--border);
  display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:16px;
  font-size:13px; color: var(--muted-2);
}
.footer-bottom .legal-links{ display:flex; gap:20px; flex-wrap:wrap; }
.footer-bottom a:hover{ color: var(--amber); }
.footer-bottom .mono{ font-family: var(--mono); }

/* ==========================================================================
   Sticky mobile CTA
   ========================================================================== */
.mobile-sticky-cta{
  display:none; position: fixed; left:0; right:0; bottom:0; z-index:150;
  padding: 12px 14px calc(env(safe-area-inset-bottom, 0) + 12px);
  background: rgba(10,12,15,0.92);
  backdrop-filter: blur(16px);
  border-top:1px solid var(--border);
  gap:10px;
}
.mobile-sticky-cta a{
  flex:1; display:flex; align-items:center; justify-content:center; gap:8px;
  padding: 14px 10px; border-radius: 12px; font-weight:600; font-size:14px;
}
.mobile-sticky-cta a svg{ width:16px; height:16px; }
.mobile-sticky-cta .call{ background: var(--glass); border:1px solid var(--border); color:var(--text); }
.mobile-sticky-cta .quote{ background: linear-gradient(135deg, var(--amber-2), var(--amber)); color:#16130a; }
@media (max-width: 700px){
  .mobile-sticky-cta{ display:flex; }
  body{ padding-bottom: 78px; }
}

/* ==========================================================================
   Scroll reveal
   ========================================================================== */
/* Visible by default (no-JS / crawlers / slow script load never lose content).
   JS adds .js-armed right before observing, which is what actually hides
   things pre-animation — so the reveal effect is additive, never load-bearing. */
.reveal.js-armed{ opacity:0; transform: translateY(28px); }
.reveal{ transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.is-visible{ opacity:1; transform:none; }
.reveal-stagger.js-armed > *{ opacity:0; transform: translateY(24px); }
.reveal-stagger > *{ transition: opacity .6s ease, transform .6s ease; }
.reveal-stagger.is-visible > *{ opacity:1; transform:none; }
.reveal-stagger.is-visible > *:nth-child(1){ transition-delay: .02s; }
.reveal-stagger.is-visible > *:nth-child(2){ transition-delay: .09s; }
.reveal-stagger.is-visible > *:nth-child(3){ transition-delay: .16s; }
.reveal-stagger.is-visible > *:nth-child(4){ transition-delay: .23s; }
.reveal-stagger.is-visible > *:nth-child(5){ transition-delay: .30s; }
.reveal-stagger.is-visible > *:nth-child(6){ transition-delay: .37s; }

/* ==========================================================================
   Page hero (inner pages)
   ========================================================================== */
.page-hero{ padding: 30px 0 70px; }
.page-hero h1{ font-size: clamp(32px,4.4vw,52px); margin-top:16px; max-width:820px; }
.page-hero .lede{ margin-top:20px; color: var(--muted); font-size:17px; max-width:640px; }

/* ==========================================================================
   Table-ish product spec cards
   ========================================================================== */
.spec-card{ padding:26px; }
.spec-card h4{ font-size:16.5px; margin-bottom:6px; }
.spec-card .cat{ font-family: var(--mono); font-size:11.5px; color: var(--amber); text-transform:uppercase; letter-spacing:.08em; margin-bottom:10px; display:block; }
.spec-card p{ color: var(--muted); font-size:14px; }
.spec-list{ margin-top:14px; display:flex; flex-direction:column; gap:6px; }
.spec-list li{ font-size:13px; color:var(--muted); display:flex; gap:8px; align-items:flex-start; }
.spec-list li::before{ content:"—"; color: var(--amber); flex-shrink:0; }

/* ==========================================================================
   Contact page
   ========================================================================== */
.contact-grid{ display:grid; grid-template-columns: 1fr 1fr; gap:36px; align-items:start; }
@media (max-width: 900px){ .contact-grid{ grid-template-columns:1fr; } }
.form-field{ margin-bottom:18px; }
.form-field label{ display:block; font-size:13px; color: var(--muted); margin-bottom:8px; font-family:var(--mono); text-transform:uppercase; letter-spacing:.05em; }
.form-field input, .form-field select, .form-field textarea{
  width:100%; padding: 14px 16px; border-radius: 12px;
  background: var(--panel-2); border:1px solid var(--border); color: var(--text);
  font-family: var(--body); font-size:15px; transition: border-color .2s, background .2s;
}
.form-field textarea{ min-height:120px; resize:vertical; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus{
  outline:none; border-color: var(--amber-line); background: var(--panel);
}
.form-confirm{ margin-top:14px; font-size:13.5px; color: var(--success); align-items:center; gap:8px; }
.form-confirm:not([hidden]){ display:flex; }
.form-confirm svg{ width:18px; height:18px; flex-shrink:0; }
.response-promise{
  display:flex; gap:16px; align-items:flex-start; padding: 22px; margin-top:22px;
}
.response-promise .icon{ width:42px;height:42px;border-radius:12px;background:var(--amber-dim);color:var(--amber);display:flex;align-items:center;justify-content:center;flex-shrink:0; }
.response-promise .icon svg{ width:22px; height:22px; }
.response-promise h4{ font-size:15px; margin-bottom:6px; }
.response-promise p{ font-size:13.5px; color:var(--muted); }

.map-frame{ border-radius: var(--radius-lg); overflow:hidden; border:1px solid var(--border); filter: grayscale(0.4) invert(0.92) contrast(0.9); }
.map-frame iframe{ width:100%; height:340px; border:0; display:block; }
.directions-list{ margin-top:18px; display:flex; flex-direction:column; gap:12px; }
.directions-list li{ display:flex; gap:12px; font-size:14px; color:var(--text-dim); }
.directions-list b{ color:var(--amber); font-family:var(--mono); font-size:12.5px; flex-shrink:0; width:70px; }

/* ==========================================================================
   404
   ========================================================================== */
.err-page{ min-height:100vh; display:flex; align-items:center; justify-content:center; text-align:center; padding: 120px 24px 60px; }
.err-code{ font-family: var(--mono); font-size: clamp(90px,18vw,160px); color: var(--amber); line-height:1; letter-spacing:-0.02em; opacity:.9; }
.err-page h1{ font-size: clamp(24px,3vw,32px); margin-top:8px; }
.err-page p{ color: var(--muted); margin-top:14px; max-width:460px; margin-left:auto; margin-right:auto; }
.err-actions{ display:flex; gap:14px; justify-content:center; margin-top:32px; flex-wrap:wrap; }
.err-links{ margin-top: 44px; display:flex; gap:10px; flex-wrap:wrap; justify-content:center; }

/* ==========================================================================
   Legal page
   ========================================================================== */
.legal-body{ max-width: 760px; }
.legal-body h2{ font-size:22px; margin-top:40px; margin-bottom:14px; }
.legal-body h2:first-child{ margin-top:0; }
.legal-body p, .legal-body li{ color: var(--muted); font-size:15px; line-height:1.75; margin-bottom:14px; }
.legal-body ul{ padding-left:20px; list-style: disc; }
.legal-body strong{ color: var(--text-dim); }
.legal-updated{ font-family:var(--mono); font-size:12.5px; color:var(--muted-2); margin-bottom: 30px; display:block; }

/* ---------- Two-up feature panel (NEO spotlight etc.) ---------- */
.split-panel{ padding:36px; display:grid; grid-template-columns:1fr 1fr; gap:32px; align-items:center; }
@media (max-width: 700px){ .split-panel{ grid-template-columns:1fr; padding:28px; } }

/* ---------- Founder / bio panel ---------- */
.bio-panel{
  padding: 48px; display:grid; grid-template-columns: 220px 1fr; gap:40px; align-items:center;
}
.bio-panel img{ border-radius:16px; object-fit:cover; width:100%; height:auto; }
@media (max-width: 700px){
  .bio-panel{ grid-template-columns: 1fr; padding: 30px; text-align:left; }
  .bio-panel img{ max-width:180px; }
}

/* misc */
.text-amber{ color: var(--amber); }
.mt-8{ margin-top:8px;} .mt-16{ margin-top:16px;} .mt-24{ margin-top:24px;} .mt-32{ margin-top:32px;}
.visually-hidden{ position:absolute; width:1px;height:1px;overflow:hidden;clip:rect(0,0,0,0); white-space:nowrap; }
.skip-link{
  position:absolute; left:16px; top:-60px; z-index:999; background:var(--amber); color:#16130a;
  padding:12px 18px; border-radius:10px; font-weight:600; transition: top .2s;
}
.skip-link:focus{ top:16px; }
