/* ============================================================
   Stackpine LLC — marketing site
   Structure modeled on an enterprise biometric-device site.
   Colors: deep pine green + emerald accent.
   ============================================================ */

:root {
  --ink: #081410;
  --ink-2: #0d2820;
  --pine: #0f4d38;
  --pine-700: #0c3a2a;
  --accent: #34d399;
  --accent-600: #10b981;
  --mint: #a7f3d0;
  --paper: #f5f8f6;
  --paper-2: #eef3f0;
  --white: #ffffff;
  --text: #10201a;
  --muted: #5c6f68;
  --muted-d: #9db3aa;
  --line: rgba(16, 32, 26, .10);
  --line-d: rgba(255, 255, 255, .12);
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 20px 45px -20px rgba(8, 20, 16, .35);
  --shadow-sm: 0 8px 24px -12px rgba(8, 20, 16, .30);
  --wrap: 1180px;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, "Apple Color Emoji", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 84px; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

.eyebrow {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent-600);
  margin: 0 0 14px;
}
.eyebrow.on-dark { color: var(--accent); }

h1, h2, h3 { line-height: 1.12; letter-spacing: -.02em; margin: 0; font-weight: 800; }
h2.section-title { font-size: clamp(28px, 4vw, 42px); }
.section-lead { color: var(--muted); font-size: 18px; max-width: 620px; margin: 16px 0 0; }
.on-dark .section-lead { color: var(--muted-d); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-weight: 650; font-size: 15px; line-height: 1;
  padding: 14px 22px; border-radius: 999px;
  border: 1px solid transparent; cursor: pointer;
  transition: transform .15s ease, background .2s ease, box-shadow .2s ease, color .2s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-accent { background: var(--accent); color: #04150e; }
.btn-accent:hover { background: var(--mint); box-shadow: 0 10px 30px -10px rgba(52, 211, 153, .55); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: var(--pine); }
.btn-ghost { background: transparent; border-color: var(--line); color: var(--text); }
.btn-ghost:hover { border-color: var(--pine); }
.btn-ghost.on-dark { color: #fff; border-color: var(--line-d); }
.btn-ghost.on-dark:hover { border-color: var(--accent); background: rgba(255,255,255,.06); }
.btn-lg { padding: 16px 28px; font-size: 16px; }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.82);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s, box-shadow .25s;
}
.header.scrolled { border-color: var(--line); box-shadow: 0 6px 20px -14px rgba(8,20,16,.4); }
.nav { display: flex; align-items: center; gap: 30px; height: 72px; }
.brand { display: flex; align-items: center; gap: 11px; font-weight: 800; font-size: 20px; letter-spacing: -.02em; }
.brand .logo { width: 30px; height: 30px; flex: none; }
.brand b { font-weight: 800; }
.nav-links { display: flex; align-items: center; gap: 26px; margin-left: 6px; }
.nav-links a { font-size: 15px; font-weight: 550; color: #26382f; transition: color .15s; }
.nav-links a:hover { color: var(--accent-600); }
.nav-cta { margin-left: auto; display: flex; align-items: center; gap: 12px; }
.nav-cta .btn { padding: 11px 18px; }
.nav-links .nav-cta-mobile { display: none; }
.menu-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.menu-toggle span { display: block; width: 22px; height: 2px; background: var(--ink); margin: 4px 0; border-radius: 2px; transition: .25s; }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background: radial-gradient(120% 130% at 80% -10%, rgba(52,211,153,.20) 0%, transparent 60%),
              linear-gradient(160deg, #0b2019 0%, #0f4d38 55%, #0a2c20 100%);
  color: #eafff5;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(80% 70% at 50% 0%, #000 30%, transparent 75%);
  pointer-events: none;
}
.hero-inner { position: relative; display: grid; grid-template-columns: 1.05fr .95fr; gap: 40px; align-items: center; padding: 78px 0 90px; }
.hero h1 { font-size: clamp(38px, 6vw, 64px); color: #fff; }
.hero h1 .hl { color: var(--accent); }
.hero p.lead { font-size: 19px; color: #bfe6d6; max-width: 520px; margin: 22px 0 0; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 10px 20px; margin-top: 34px; color: #9fcebb; font-size: 13.5px; font-weight: 600; }
.hero-badges span { display: inline-flex; align-items: center; gap: 7px; }
.hero-badges svg { width: 15px; height: 15px; color: var(--accent); }

/* Device mockup */
.device { position: relative; justify-self: center; filter: drop-shadow(0 30px 50px rgba(0,0,0,.45)); }
.device-svg { width: min(360px, 82vw); height: auto; }

/* Hero real-photo treatment */
.hero-photo { position: relative; justify-self: center; width: min(380px, 82vw); }
.hero-photo img { width: 100%; height: auto; aspect-ratio: 5 / 6; object-fit: cover; border-radius: 22px; display: block; box-shadow: 0 34px 70px -28px rgba(0,0,0,.7); }
.hero-photo .hero-art { width: 100%; height: auto; aspect-ratio: 5 / 6; border-radius: 22px; display: block; box-shadow: 0 34px 70px -28px rgba(0,0,0,.7); }
.hero-photo::after { content: ""; position: absolute; inset: 0; border-radius: 22px; background: linear-gradient(160deg, rgba(15,77,56,.10), rgba(6,20,15,.42)); pointer-events: none; }
.hero-photo .scan-corner { position: absolute; width: 26px; height: 26px; border: 2px solid var(--accent); pointer-events: none; z-index: 2; }
.hero-photo .hp-tl { top: 16px; left: 16px; border-right: 0; border-bottom: 0; border-radius: 8px 0 0 0; }
.hero-photo .hp-tr { top: 16px; right: 16px; border-left: 0; border-bottom: 0; border-radius: 0 8px 0 0; }
.hero-photo .hp-bl { bottom: 16px; left: 16px; border-right: 0; border-top: 0; border-radius: 0 0 0 8px; }
.hero-photo .hp-br { bottom: 16px; right: 16px; border-left: 0; border-top: 0; border-radius: 0 0 8px 0; }
.hero-chip {
  position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); z-index: 3;
  display: flex; align-items: center; gap: 8px; white-space: nowrap;
  background: rgba(8,20,16,.82); backdrop-filter: blur(8px); border: 1px solid var(--accent);
  color: #eafff5; font-size: 13px; font-weight: 700; padding: 8px 14px; border-radius: 999px;
}
.hero-chip .dot { width: 17px; height: 17px; border-radius: 50%; background: var(--accent); display: grid; place-items: center; flex: none; }
.hero-chip .dot svg { width: 11px; height: 11px; color: #04150e; }

/* ---------- Trust bar ---------- */
.trust { background: var(--ink); color: #cfe6db; padding: 20px 0; }
.trust-inner { display: flex; align-items: center; justify-content: center; gap: 14px 36px; flex-wrap: wrap; font-size: 13.5px; font-weight: 650; letter-spacing: .02em; }
.trust-inner .pill { display: inline-flex; align-items: center; gap: 8px; color: #bfe6d6; }
.trust-inner .pill svg { width: 16px; height: 16px; color: var(--accent); }
.trust-sep { width: 1px; height: 16px; background: rgba(255,255,255,.14); }

/* ---------- Generic section ---------- */
section { padding: 88px 0; }
.section-head { margin-bottom: 46px; }
.section-head.center { text-align: center; }
.section-head.center .section-lead { margin-left: auto; margin-right: auto; }

/* ---------- Products ---------- */
.products { background: var(--paper); }
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; perspective: 1100px; }
.product-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px; display: flex; flex-direction: column; transition: transform .2s, box-shadow .2s, border-color .2s;
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: rgba(16,77,56,.35); }
.product-visual {
  height: 182px; border-radius: 14px; margin-bottom: 22px; position: relative; overflow: hidden;
  background: linear-gradient(160deg, #0e3f2f 0%, #06150f 100%);
}
.product-visual.alt { background: linear-gradient(160deg, #0a2f24 0%, #050f0b 100%); }
.product-visual .scene { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }
.product-visual .pv-photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 2; }

/* Living scan line inside the SVG scenes */
@keyframes scanmove { from { transform: translateY(-16px); } to { transform: translateY(30px); } }
.scan-anim { animation: scanmove 2.4s ease-in-out infinite alternate; transform-box: fill-box; transform-origin: center; }
@keyframes softpulse { 0%,100% { opacity: .35; } 50% { opacity: .9; } }
.pulse-anim { animation: softpulse 1.8s ease-in-out infinite; }
@media (prefers-reduced-motion: reduce) { .scan-anim, .pulse-anim { animation: none; } }
.product-card .tag { font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--accent-600); }
.product-card h3 { font-size: 23px; margin: 8px 0 8px; }
.product-card p { color: var(--muted); font-size: 15px; margin: 0 0 18px; }
.product-card ul { list-style: none; padding: 0; margin: 0 0 22px; display: grid; gap: 9px; }
.product-card li { display: flex; gap: 9px; font-size: 14.5px; color: #33473e; }
.product-card li svg { width: 17px; height: 17px; color: var(--accent-600); flex: none; margin-top: 3px; }
.product-card .btn { margin-top: auto; align-self: flex-start; }

/* ---------- Features ---------- */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feature {
  border: 1px solid var(--line); border-radius: var(--radius); padding: 26px;
  background: var(--white); transition: border-color .2s, transform .2s;
}
.feature:hover { border-color: rgba(16,77,56,.35); transform: translateY(-3px); }
.feature .ico { width: 46px; height: 46px; border-radius: 12px; background: #e7f6ef; display: grid; place-items: center; margin-bottom: 16px; }
.feature .ico svg { width: 24px; height: 24px; color: var(--pine); }
.feature h3 { font-size: 18px; margin-bottom: 8px; }
.feature p { color: var(--muted); font-size: 14.5px; margin: 0; }

/* ---------- Spotlight (big alternating image + text rows) ---------- */
.spotlight { background: var(--paper); }
.spot-row { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: center; margin-bottom: 72px; }
.spot-row:last-child { margin-bottom: 0; }
.spot-row.reverse .img-frame { order: 2; }
.spot-text .eyebrow { margin-bottom: 12px; }
.spot-text h3 { font-size: clamp(24px, 3.2vw, 36px); letter-spacing: -.02em; }
.spot-text p { color: var(--muted); font-size: 17px; margin: 14px 0 18px; max-width: 460px; }
.spot-text ul { list-style: none; padding: 0; margin: 0 0 24px; display: grid; gap: 10px; }
.spot-text li { display: flex; gap: 10px; font-size: 15px; color: #33473e; }
.spot-text li svg { width: 18px; height: 18px; color: var(--accent-600); flex: none; margin-top: 3px; }

.img-frame {
  position: relative; overflow: hidden; aspect-ratio: 16 / 9; border-radius: 16px;
  background: linear-gradient(155deg, #0f4d38, #071912);
  border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  display: grid; place-items: center;
}
.img-frame .pv-photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 2; }
.img-frame .ph { position: relative; z-index: 1; text-align: center; color: rgba(233,255,245,.6); padding: 20px; }
.img-frame .ph .box { width: 60px; height: 60px; margin: 0 auto 14px; border: 2px dashed rgba(52,211,153,.6); border-radius: 14px; display: grid; place-items: center; }
.img-frame .ph .box svg { width: 30px; height: 30px; color: var(--accent); }
.img-frame .ph .lbl { font-size: 13px; letter-spacing: .14em; text-transform: uppercase; font-weight: 800; color: #cdeede; }
.img-frame .ph .dim { font-size: 12.5px; margin-top: 5px; color: rgba(167,243,208,.7); font-variant-numeric: tabular-nums; }

@media (max-width: 960px) {
  .spot-row { grid-template-columns: 1fr; gap: 26px; margin-bottom: 52px; }
  .spot-row.reverse .img-frame { order: 0; }
}

/* ---------- Solutions ---------- */
.solutions { background: var(--ink); color: #eafff5; }
.solutions .section-lead { color: var(--muted-d); }
.sol-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.sol {
  border: 1px solid var(--line-d); border-radius: var(--radius); padding: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.01));
  transition: border-color .2s, transform .2s;
}
.sol:hover { border-color: var(--accent); transform: translateY(-3px); }
.sol .ico { width: 42px; height: 42px; border-radius: 10px; background: rgba(52,211,153,.14); display: grid; place-items: center; margin-bottom: 14px; }
.sol .ico svg { width: 22px; height: 22px; color: var(--accent); }
.sol h3 { font-size: 17.5px; color: #fff; margin-bottom: 6px; }
.sol p { color: #a9c6bb; font-size: 14px; margin: 0; }

/* ---------- Industries ---------- */
.ind-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.ind {
  display: flex; align-items: center; gap: 12px; padding: 18px 20px;
  border: 1px solid var(--line); border-radius: 12px; background: var(--paper);
  font-weight: 600; font-size: 15px; transition: .2s;
}
.ind:hover { background: var(--white); border-color: var(--pine); box-shadow: var(--shadow-sm); }
.ind svg { width: 22px; height: 22px; color: var(--pine); flex: none; }

/* ---------- Industries photo grid ---------- */
.ind-photo-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.ind-photo {
  position: relative; aspect-ratio: 4 / 3; border-radius: 14px; overflow: hidden;
  border: 1px solid var(--line); box-shadow: var(--shadow-sm); background: #06140f;
}
.ind-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.ind-photo:hover img { transform: scale(1.07); }
.ind-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(5,16,12,.9) 0%, rgba(5,16,12,.25) 55%, rgba(5,16,12,.05) 100%); }
.ind-photo .cap { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 15px 16px; color: #fff; font-weight: 700; font-size: 15px; display: flex; align-items: center; gap: 8px; letter-spacing: -.01em; }
.ind-photo .cap svg { width: 18px; height: 18px; color: var(--accent); flex: none; }
@media (max-width: 960px) { .ind-photo-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .ind-photo-grid { grid-template-columns: 1fr; } }

/* ---------- Stats ---------- */
.stats { background: linear-gradient(160deg, #0f4d38, #0a2c20); color: #fff; }
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; text-align: center; }
.stat .num { font-size: clamp(38px, 5vw, 54px); font-weight: 850; color: var(--accent); letter-spacing: -.03em; }
.stat .lbl { color: #bfe6d6; font-size: 15px; margin-top: 6px; }

/* ---------- Compliance ---------- */
.compliance { background: var(--paper); }
.comp-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 46px; align-items: center; }
.comp-badges { display: flex; flex-wrap: wrap; gap: 12px; }
.comp-badges .badge {
  display: inline-flex; align-items: center; gap: 9px; padding: 12px 18px;
  background: var(--white); border: 1px solid var(--line); border-radius: 999px; font-weight: 700; font-size: 14px;
}
.comp-badges .badge svg { width: 18px; height: 18px; color: var(--accent-600); }
.comp-list { list-style: none; padding: 0; margin: 20px 0 0; display: grid; gap: 12px; }
.comp-list li { display: flex; gap: 11px; color: #33473e; font-size: 15.5px; }
.comp-list li svg { width: 20px; height: 20px; color: var(--accent-600); flex: none; margin-top: 3px; }

/* ---------- Team / Org ---------- */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.member {
  border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; text-align: center; background: var(--white);
  transition: transform .2s, box-shadow .2s;
}
.member:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.member .avatar {
  width: 74px; height: 74px; border-radius: 50%; margin: 0 auto 14px;
  background: linear-gradient(155deg, #0f4d38, #0a2c20); color: var(--accent);
  display: grid; place-items: center; font-weight: 800; font-size: 24px; letter-spacing: .02em;
}
.member.open .avatar { background: #e7f6ef; color: var(--pine); border: 2px dashed rgba(15,77,56,.35); }
.member .avatar.has-photo { background: none; border: none; padding: 0; overflow: hidden; }
.member .avatar.has-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.member h3 { font-size: 17px; margin-bottom: 3px; }
.member .role { color: var(--accent-600); font-size: 13.5px; font-weight: 700; }
.member .note { color: var(--muted); font-size: 13px; margin-top: 8px; }
.team-hint { margin-top: 26px; padding: 16px 20px; border-left: 3px solid var(--accent); background: var(--paper); border-radius: 8px; color: var(--muted); font-size: 14px; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--ink); color: #fff; text-align: center; }
.cta-band h2 { font-size: clamp(28px, 4.5vw, 44px); }
.cta-band p { color: var(--muted-d); font-size: 18px; max-width: 560px; margin: 16px auto 30px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- Contact ---------- */
.contact-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.contact-card { border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; background: var(--paper); }
.contact-row { display: flex; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.contact-row:last-child { border-bottom: 0; }
.contact-row .ico { width: 40px; height: 40px; border-radius: 10px; background: #e7f6ef; display: grid; place-items: center; flex: none; }
.contact-row .ico svg { width: 20px; height: 20px; color: var(--pine); }
.contact-row .k { font-size: 12.5px; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); font-weight: 700; }
.contact-row .v { font-size: 16px; font-weight: 600; color: var(--text); }
.contact-row .v a:hover { color: var(--accent-600); }
form.lead-form { display: grid; gap: 14px; }
form.lead-form label { font-size: 13.5px; font-weight: 650; color: #33473e; }
form.lead-form input, form.lead-form textarea, form.lead-form select {
  width: 100%; padding: 13px 15px; border: 1px solid var(--line); border-radius: 10px;
  font: inherit; font-size: 15px; background: var(--white); margin-top: 6px;
}
form.lead-form input:focus, form.lead-form textarea:focus, form.lead-form select:focus { outline: 2px solid var(--accent); border-color: transparent; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

/* ---------- Footer ---------- */
.footer { background: #05100c; color: #9db3aa; padding: 64px 0 30px; }
.footer-top { display: grid; grid-template-columns: 1.6fr repeat(4, 1fr); gap: 30px; }
.footer .brand { color: #fff; margin-bottom: 14px; }
.footer .about { font-size: 14px; max-width: 260px; color: #86a093; }
.footer h4 { color: #fff; font-size: 13px; letter-spacing: .08em; text-transform: uppercase; margin: 0 0 16px; }
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer ul a { font-size: 14px; color: #9db3aa; transition: color .15s; }
.footer ul a:hover { color: var(--accent); }
.footer-bottom {
  margin-top: 46px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.09);
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 13px; color: #6f887c;
}
.footer-bottom a:hover { color: var(--accent); }

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

/* ---------- Legal / long-form pages ---------- */
.legal { max-width: 820px; margin: 0 auto; }
.legal .updated { color: var(--muted); font-size: 14px; margin: 0 0 30px; padding-bottom: 20px; border-bottom: 1px solid var(--line); }
.legal .intro { font-size: 16.5px; color: #33473e; margin: 0 0 10px; }
.legal h2 { font-size: 20px; margin: 34px 0 10px; letter-spacing: -.01em; }
.legal h3 { font-size: 16px; margin: 18px 0 6px; color: var(--text); }
.legal p { color: #3a4b44; font-size: 15.5px; margin: 0 0 12px; }
.legal ul { margin: 0 0 14px; padding-left: 20px; display: grid; gap: 8px; }
.legal li { color: #3a4b44; font-size: 15.5px; }
.legal .contact-block { margin-top: 8px; padding: 18px 20px; background: var(--paper); border-radius: 12px; border-left: 3px solid var(--accent); font-size: 15.5px; color: #33473e; line-height: 1.7; }
.legal .contact-block a { color: var(--accent-600); font-weight: 600; }

/* ---------- Interior page header + active nav ---------- */
.nav-links a.active { color: var(--accent-600); }
.page-hero {
  position: relative; overflow: hidden; color: #eafff5;
  background: radial-gradient(120% 130% at 80% -10%, rgba(52,211,153,.20) 0%, transparent 60%), linear-gradient(160deg, #0b2019 0%, #0f4d38 55%, #0a2c20 100%);
  padding: 64px 0 58px; text-align: center;
}
.page-hero .crumb { color: #7fb8a2; font-size: 13px; margin-bottom: 12px; letter-spacing: .04em; }
.page-hero .crumb a:hover { color: var(--accent); }
.page-hero .eyebrow { color: var(--accent); }
.page-hero h1 { font-size: clamp(32px, 5vw, 52px); color: #fff; }
.page-hero p { color: #bfe6d6; font-size: 18px; max-width: 640px; margin: 16px auto 0; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; text-align: left; }
  .device { order: -1; }
  .device-svg { width: min(300px, 70vw); }
  .product-grid, .feature-grid, .sol-grid { grid-template-columns: 1fr 1fr; }
  .ind-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .comp-wrap, .contact-wrap, .footer-top { grid-template-columns: 1fr; }
  .footer-top { gap: 34px; }
  .stats-grid { grid-template-columns: 1fr; gap: 34px; }
}
@media (max-width: 680px) {
  .nav-links { display: none; }
  .menu-toggle { display: block; margin-left: auto; }
  .nav-cta { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column; align-items: flex-start; gap: 4px;
    position: absolute; top: 72px; left: 0; right: 0;
    background: #fff; border-bottom: 1px solid var(--line); padding: 14px 22px 22px; margin: 0;
  }
  .nav-links.open a { padding: 10px 0; width: 100%; border-bottom: 1px solid var(--line); }
  .nav-links.open .nav-cta-mobile { display: inline-flex; margin-top: 14px; border-bottom: 0; color: #04150e; justify-content: center; }
  .product-grid, .feature-grid, .sol-grid, .ind-grid, .team-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  section { padding: 62px 0; }
}
