/* ───── Tokens ───── */
:root {
  --bg: #0b0d10;
  --bg-elev: #11151a;
  --bg-card: #151a21;
  --line: rgba(255,255,255,.08);
  --text: #e9edf2;
  --text-muted: #9aa3ad;
  --accent: #00b8d4;
  --accent-2: #0091ad;
  --radius: 4px;
  --maxw: 1200px;
  --ease: cubic-bezier(.2,.7,.2,1);
}

/* ───── Reset ───── */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; margin: 0; }
h1, h2, h3, h4 { font-family: 'Roboto Slab', Georgia, serif; font-weight: 700; line-height: 1.15; letter-spacing: -.01em; margin: 0 0 .5em; }
h1 { font-size: clamp(2rem, 5vw, 3.75rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1em; }

/* ───── Buttons ───── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: .85rem 1.6rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .02em;
  transition: transform .25s var(--ease), background .25s var(--ease), border-color .25s var(--ease), color .25s var(--ease), box-shadow .25s var(--ease);
  border: 1px solid transparent;
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--accent);
  color: #06121a;
  box-shadow: 0 8px 24px -8px rgba(0,184,212,.55);
}
.btn-primary:hover { background: #2ed3ec; box-shadow: 0 12px 30px -10px rgba(0,184,212,.7); }
.btn-outline { border-color: rgba(255,255,255,.4); color: #fff; }
.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,.05); }
.btn-ghost { padding: .55rem 1.1rem; border: 1px solid rgba(255,255,255,.25); border-radius: var(--radius); font-size: .9rem; }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

/* Nav contact CTA — make it a recognizable filled button */
.nav-menu > li > a.btn-ghost {
  padding: .6rem 1.4rem;
  background: var(--accent);
  border-color: var(--accent);
  color: #06121a;
  font-weight: 600;
  letter-spacing: .04em;
  box-shadow: 0 6px 18px -8px rgba(0,184,212,.6);
}
.nav-menu > li > a.btn-ghost:hover {
  background: #2ed3ec;
  border-color: #2ed3ec;
  color: #06121a;
  transform: translateY(-1px);
  box-shadow: 0 10px 24px -10px rgba(0,184,212,.8);
}

/* ───── Header / Nav ───── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 1.5rem;
  transition: background .35s var(--ease), backdrop-filter .35s var(--ease), padding .35s var(--ease), border-color .35s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(11,13,16,.78);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom-color: var(--line);
  padding: .65rem 1.5rem;
}
.brand img { height: 36px; }

.primary-nav { display: flex; align-items: center; gap: 1rem; }
.nav-menu { display: flex; align-items: center; gap: 1.5rem; }
.nav-menu > li > a {
  position: relative;
  font-size: .95rem;
  letter-spacing: .03em;
  padding: .5rem 0;
  transition: color .2s var(--ease);
}
.nav-menu > li > a:not(.btn-ghost)::after {
  content: ''; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1.5px; background: var(--accent);
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s var(--ease);
}
.nav-menu > li > a:hover { color: var(--accent); }
.nav-menu > li > a:not(.btn-ghost):hover::after { transform: scaleX(1); }

.has-dropdown { position: relative; }
.has-dropdown > a {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
}
.has-dropdown > a::before {
  content: "";
  width: 0; height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  margin-left: .35rem;
  order: 2;
  opacity: .7;
  transition: transform .25s var(--ease), opacity .2s var(--ease);
  animation: dropdown-bounce 3.5s var(--ease) infinite;
}
.has-dropdown:hover > a::before,
.has-dropdown:focus-within > a::before {
  transform: rotate(180deg);
  opacity: 1;
  animation: none;
}
@keyframes dropdown-bounce {
  0%, 75%, 100% { transform: translateY(0); }
  82%          { transform: translateY(3px); }
  88%          { transform: translateY(0); }
  93%          { transform: translateY(2px); }
  97%          { transform: translateY(0); }
}
.dropdown {
  position: absolute; top: calc(100% + 6px); left: -1rem;
  min-width: 240px;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: .5rem;
  box-shadow: 0 20px 40px -10px rgba(0,0,0,.5);
  opacity: 0; pointer-events: none; transform: translateY(-6px);
  transition: opacity .25s var(--ease), transform .25s var(--ease);
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown { opacity: 1; pointer-events: auto; transform: translateY(0); }
.dropdown a {
  display: block; padding: .55rem .85rem; border-radius: 3px;
  font-size: .9rem; color: var(--text-muted);
  transition: background .2s var(--ease), color .2s var(--ease);
}
.dropdown a:hover { background: rgba(0,184,212,.08); color: var(--accent); }

.nav-toggle {
  display: none;
  width: 40px; height: 40px;
  background: transparent; border: 0; padding: 0;
  cursor: pointer;
  flex-direction: column; gap: 5px; align-items: center; justify-content: center;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px; background: #fff;
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ───── Hero ───── */
.hero {
  position: relative; min-height: 100svh;
  display: flex; flex-direction: column; justify-content: center;
  padding: 7rem 1.5rem 4rem;
  overflow: hidden;
}
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media video {
  width: 100%; height: 100%; object-fit: cover;
  animation: kenburns 20s var(--ease) infinite alternate;
}
.hero-veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(11,13,16,.55) 0%, rgba(11,13,16,.4) 40%, rgba(11,13,16,.95) 100%),
    radial-gradient(ellipse at 30% 20%, rgba(0,184,212,.15), transparent 60%);
}
@keyframes kenburns {
  from { transform: scale(1.05) translateX(0); }
  to   { transform: scale(1.12) translateX(-1.5%); }
}
.hero-content {
  position: relative; z-index: 1;
  max-width: var(--maxw); width: 100%; margin: 0 auto;
}
.hero-content > * { animation: rise .9s var(--ease) both; }
.hero-content > *:nth-child(1) { animation-delay: .05s; }
.hero-content > *:nth-child(2) { animation-delay: .15s; }
.hero-content > *:nth-child(3) { animation-delay: .3s; }
.hero-content > *:nth-child(4) { animation-delay: .45s; }
@keyframes rise { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.eyebrow {
  text-transform: uppercase; letter-spacing: .25em;
  font-size: .8rem; color: var(--accent); margin-bottom: 1rem;
}
.hero h1 { max-width: 18ch; }
.lede { font-size: clamp(1rem, 1.4vw, 1.2rem); color: var(--text-muted); max-width: 56ch; }
.hero-cta { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2rem; }

.scroll-cue {
  position: absolute; left: 50%; bottom: 2rem; transform: translateX(-50%);
  width: 26px; height: 42px;
  border: 1.5px solid rgba(255,255,255,.5); border-radius: 999px;
  display: grid; place-items: center;
  z-index: 1;
}
.scroll-cue span {
  width: 4px; height: 8px; background: #fff; border-radius: 2px;
  animation: scrolldot 1.8s var(--ease) infinite;
}
@keyframes scrolldot {
  0% { transform: translateY(-8px); opacity: 0; }
  40% { opacity: 1; }
  100% { transform: translateY(8px); opacity: 0; }
}

/* ───── Intro band ───── */
.intro {
  text-align: center;
  padding: 6rem 1.5rem 2rem;
  font-family: 'Roboto Slab', Georgia, serif;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--text-muted);
  max-width: 64ch; margin: 0 auto;
}

/* ───── Products ───── */
.products {
  max-width: var(--maxw); margin: 0 auto;
  padding: 3rem 1.5rem 5rem;
}
.grid {
  display: grid; gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
.card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
}
.card:hover {
  transform: translateY(-4px);
  border-color: rgba(0,184,212,.4);
  box-shadow: 0 20px 40px -20px rgba(0,184,212,.4);
}
.card-media {
  position: relative; aspect-ratio: 16/10; overflow: hidden;
  background: #000;
}
.card-media img,
.card-media video {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  transition: opacity .5s var(--ease), transform .8s var(--ease);
}
.card-media video { opacity: 0; }
.card:hover .card-media img { opacity: 0; transform: scale(1.04); }
.card:hover .card-media video { opacity: 1; transform: scale(1.04); }
.card-body { padding: 1.5rem 1.5rem 1.75rem; }
.card-body h3 { color: #fff; }
.card-body p { color: var(--text-muted); font-size: .95rem; }
.link-arrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-weight: 600; color: var(--accent); font-size: .9rem;
  letter-spacing: .04em; text-transform: uppercase;
}
.link-arrow span { transition: transform .25s var(--ease); display: inline-block; }
.link-arrow:hover span { transform: translateX(4px); }

.all-products { text-align: center; margin-top: 3rem; }

/* ───── Sectors ───── */
.sectors {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-elev) 100%);
  padding: 5rem 1.5rem;
  text-align: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.sectors h2 { margin-bottom: 2.5rem; }
.sector-grid {
  max-width: var(--maxw); margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}
.sector-card {
  position: relative;
  aspect-ratio: 220 / 180;
  border-radius: var(--radius);
  overflow: hidden;
  background-color: #0f1722;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  cursor: pointer;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
  border: 1px solid var(--line);
}
.sector-card span {
  position: relative; z-index: 2;
  color: #fff;
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 0 .75rem;
  line-height: 1.25;
  text-shadow: 0 2px 12px rgba(0,0,0,.6);
  transition: transform .35s var(--ease);
}
.sector-card::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,184,212,0) 0%, rgba(0,184,212,.35) 100%);
  opacity: 0;
  transition: opacity .35s var(--ease);
  z-index: 1;
}
.sector-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0,0,0,.45);
}
.sector-card:hover::after { opacity: 1; }
.sector-card:hover span { transform: scale(1.04); }
.sector-card--placeholder {
  background: linear-gradient(135deg, #1a2230 0%, #0f1722 100%);
}

@media (max-width: 1024px) {
  .sector-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
  .sector-grid { grid-template-columns: repeat(2, 1fr); gap: .75rem; }
  .sector-card span { font-size: .82rem; }
}

/* ───── Clients (white band, logo grid) ───── */
.clients {
  background: #fff;
  color: #1a2230;
  padding: 5rem 1.5rem 6rem;
  text-align: center;
}
.clients-inner {
  max-width: var(--maxw);
  margin: 0 auto;
}
.clients h2 {
  color: #0f1722;
  margin-bottom: .5rem;
}
.clients-sub {
  color: #5a6573;
  margin-bottom: 3rem;
  font-size: 1rem;
}
.logo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
}
.logo-grid li {
  aspect-ratio: 16/9;
  display: grid;
  place-items: center;
  padding: 1.25rem;
  background: #fff;
  border: 1px solid #e6ecf2;
  border-radius: var(--radius);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.logo-grid li:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px -14px rgba(15, 23, 34, .18);
  border-color: #cfd9e4;
}
.logo-grid img {
  height: 64px;
  width: auto;
  max-width: 85%;
  object-fit: contain;
}
@media (max-width: 860px) {
  .logo-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 520px) {
  .logo-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
  .logo-grid li { padding: .9rem; }
  .logo-grid img { height: 52px; }
}

/* ───── CTA ───── */
.cta {
  padding: 6rem 1.5rem;
  text-align: center;
  background:
    radial-gradient(ellipse at top, rgba(0,184,212,.12), transparent 60%),
    var(--bg);
}
.cta-inner { max-width: 56ch; margin: 0 auto; }
.cta p { color: var(--text-muted); margin-bottom: 2rem; }

/* ───── Footer ───── */
.site-footer {
  background: #06080a;
  border-top: 1px solid var(--line);
  padding: 3.5rem 1.5rem 1.5rem;
}
.footer-grid {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; gap: 2.5rem;
  grid-template-columns: 1.5fr repeat(3, 1fr);
}
.footer-logo { height: 32px; margin-bottom: 1rem; }
.site-footer h4 {
  font-family: 'Inter', sans-serif;
  font-size: .8rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: .75rem;
}
.site-footer ul li { margin-bottom: .5rem; }
.site-footer a { color: var(--text); font-size: .9rem; transition: color .2s var(--ease); }
.site-footer a:hover { color: var(--accent); }
.social { display: flex; gap: .75rem; }
.social img { width: 22px; height: 22px; opacity: .8; transition: opacity .2s var(--ease); }
.social a:hover img { opacity: 1; }
.footer-bottom {
  max-width: var(--maxw); margin: 3rem auto 0;
  padding-top: 1.5rem; border-top: 1px solid var(--line);
  color: var(--text-muted); font-size: .8rem; text-align: center;
}

/* ───── Inner-page hero ───── */
.page-hero {
  position: relative;
  padding: 9rem 1.5rem 4rem;
  background: radial-gradient(ellipse at 30% 20%, rgba(0,184,212,.18) 0%, transparent 55%),
              linear-gradient(180deg, var(--bg-elev) 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.page-hero-inner {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: 1.2fr 1fr;
  gap: 3rem; align-items: center;
}
.page-hero .eyebrow { color: var(--accent); }
.page-hero h1 { font-size: clamp(1.8rem, 4vw, 3rem); margin-bottom: 1rem; }
.page-hero .lede { color: var(--text-muted); font-size: 1.1rem; max-width: 56ch; }
.page-hero-art {
  display: grid; place-items: center;
  min-height: 280px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.03);
  border: 1px solid var(--line);
  padding: 2rem;
  overflow: hidden;
}
.page-hero-art img { max-height: 380px; max-width: 100%; object-fit: contain; }
.page-hero-art.has-photo { padding: 0; background: #000; }
.page-hero-art.has-photo img { max-height: none; width: 100%; height: 100%; object-fit: cover; }

@media (max-width: 860px) {
  .page-hero { padding: 7rem 1.25rem 3rem; }
  .page-hero-inner { grid-template-columns: 1fr; gap: 2rem; }
  .page-hero-art { min-height: 220px; }
}

/* ───── Features grid (inner pages) ───── */
.features {
  padding: 5rem 1.5rem;
  background: var(--bg);
}
.features-inner {
  max-width: var(--maxw); margin: 0 auto;
}
.features h2 {
  text-align: center;
  margin-bottom: 3rem;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: transform .25s var(--ease), border-color .25s var(--ease), background .25s var(--ease);
}
.feature-card:hover {
  transform: translateY(-3px);
  border-color: rgba(0,184,212,.4);
  background: linear-gradient(180deg, var(--bg-card) 0%, rgba(0,184,212,.04) 100%);
}
.feature-card h3 {
  color: var(--accent);
  font-size: 1.1rem;
  margin-bottom: .5rem;
  letter-spacing: .02em;
}
.feature-card p {
  color: var(--text-muted);
  font-size: .98rem;
  margin: 0;
}
@media (max-width: 720px) {
  .features-grid { grid-template-columns: 1fr; }
}

/* ───── Full-bleed hero with autoplay video ───── */
.product-hero-video {
  position: relative;
  min-height: min(80vh, 720px);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.product-hero-video video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.product-hero-video::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(11,13,16,.45) 0%, rgba(11,13,16,.15) 60%, rgba(11,13,16,.85) 100%);
}
.product-hero-video .product-hero-content {
  position: relative; z-index: 2;
  max-width: var(--maxw); margin: 0 auto;
  padding: 9rem 1.5rem 5rem;
  display: flex; flex-direction: column; justify-content: flex-end;
  min-height: inherit;
}
.product-hero-video .eyebrow { color: var(--accent); margin-bottom: .5rem; }
.product-hero-video h1 {
  font-size: clamp(2rem, 5vw, 3.75rem);
  max-width: 16ch;
  color: #fff;
  text-shadow: 0 2px 24px rgba(0,0,0,.5);
}
.product-hero-video .lede {
  color: rgba(255,255,255,.92);
  font-size: 1.2rem;
  max-width: 50ch;
  text-shadow: 0 1px 12px rgba(0,0,0,.5);
}

/* ───── Showcase variant: bg image + 65/35 split text ───── */
.showcase-split {
  background: #fff;
  color: #0f1722;
  border-top: 1px solid #e6ecf2;
  border-bottom: 1px solid #e6ecf2;
}
.showcase-split-inner {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: 1.85fr 1fr;
  gap: 3rem; align-items: center;
  padding: 4rem 1.5rem;
}
.showcase-split-media {
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 400px;
}
.showcase-split-text h2 { color: #0f1722; margin-bottom: 1rem; }
.showcase-split-text p { color: #4a5560; font-size: 1.1rem; margin: 0; }
@media (max-width: 860px) {
  .showcase-split-inner { grid-template-columns: 1fr; }
  .showcase-split-media { min-height: 300px; }
}

/* ───── Light-grey features (Axon Body 4 style — 3 col) ───── */
.features-light {
  background: #e4e9e7;
  color: #0f1722;
  padding: 4.5rem 1.5rem;
}
.features-light-inner {
  max-width: var(--maxw); margin: 0 auto;
}
.features-light h2 {
  color: #0f1722;
  text-align: center;
  margin-bottom: 3rem;
}
.features-light-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem 2rem;
}
.feat-light {
  padding: 1.5rem .5rem;
  text-align: left;
}
.feat-light h3 {
  color: #0f1722;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: .65rem;
  letter-spacing: .01em;
  border-left: 3px solid var(--accent);
  padding-left: .85rem;
  line-height: 1.3;
}
.feat-light p {
  color: #4a5560;
  font-size: .95rem;
  margin: 0;
  padding-left: 1.1rem;
  line-height: 1.55;
}
.feat-img-light {
  margin-bottom: 1rem;
  border-radius: var(--radius);
  overflow: hidden;
  background: #d6dad8;
  aspect-ratio: 16/10;
}
.feat-img-light img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 860px) { .features-light-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .features-light-grid { grid-template-columns: 1fr; } }

/* ───── Atlas section (Boston Dynamics) ───── */
.atlas-section {
  background: var(--bg-elev);
  border-top: 1px solid var(--line);
  padding: 5rem 1.5rem;
}
.atlas-inner {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3rem; align-items: center;
}
.atlas-text .eyebrow { color: var(--accent); margin-bottom: .5rem; }
.atlas-text p { color: var(--text-muted); font-size: 1.1rem; }
.atlas-media {
  background: #000;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  padding: 2rem;
  display: grid; place-items: center;
}
.atlas-media img { max-width: 100%; max-height: 380px; object-fit: contain; }
@media (max-width: 860px) { .atlas-inner { grid-template-columns: 1fr; } }

/* ───── Closing banner (big bg image + overlay tagline) ───── */
.product-banner {
  position: relative;
  min-height: 670px;
  display: flex; align-items: center; justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: center;
  padding: 4rem 1.5rem;
  overflow: hidden;
}
.product-banner::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(11,13,16,.55) 0%, rgba(11,13,16,.2) 100%);
}
.product-banner h2 {
  position: relative; z-index: 1;
  color: #fff;
  font-size: clamp(2rem, 5vw, 3.5rem);
  letter-spacing: .04em;
  text-shadow: 0 2px 24px rgba(0,0,0,.55);
  margin: 0;
}

/* ───── Full-bleed hero with bg image ───── */
.product-hero-bg {
  position: relative;
  min-height: 660px;
  padding: 9rem 8% 4rem;
  display: flex; flex-direction: column; justify-content: flex-start;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-bottom: 1px solid var(--line);
}
.product-hero-bg::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,13,16,.55) 0%, rgba(11,13,16,.25) 60%, rgba(11,13,16,.85) 100%);
}
.product-hero-bg > * { position: relative; z-index: 1; }
.product-hero-bg .eyebrow { color: var(--accent); margin-bottom: .5rem; }
.product-hero-bg h1 {
  font-size: clamp(2rem, 5vw, 3.75rem);
  max-width: 14ch;
  line-height: 1.1;
  margin-bottom: 1rem;
  color: #fff;
  text-shadow: 0 2px 24px rgba(0,0,0,.5);
}
.product-hero-bg .lede {
  color: rgba(255,255,255,.92);
  font-size: 1.25rem;
  max-width: 38ch;
  text-shadow: 0 1px 12px rgba(0,0,0,.5);
}
@media (max-width: 720px) {
  .product-hero-bg { min-height: 480px; padding: 7rem 1.5rem 3rem; }
}

/* ───── Asymmetric features grid (38/60, mirrors original disposition) ───── */
.features-asymmetric {
  padding: 4rem 8%;
  background: var(--bg);
}
.features-asymmetric-grid {
  display: grid;
  grid-template-columns: 38fr 60fr;
  gap: 1rem;
  max-width: 1400px; margin: 0 auto;
}
.feat-block {
  background: #000;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  display: flex; flex-direction: column;
  overflow: hidden;
  position: relative;
}
.feat-block h3 {
  color: var(--accent);
  font-size: 1.15rem;
  margin-bottom: .65rem;
  letter-spacing: .02em;
}
.feat-block p {
  color: var(--text-muted);
  margin: 0;
}
.feat-block .feat-img {
  margin-top: 1.5rem;
  display: grid; place-items: center;
  flex: 1;
}
.feat-block .feat-img img { max-width: 100%; max-height: 260px; object-fit: contain; }

.feat-block.tall { min-height: 475px; }
.feat-block.wide-cover {
  padding: 2rem 1.75rem 0;
}
.feat-block.wide-cover .feat-img {
  margin-top: 1.5rem;
  margin-left: -1.75rem; margin-right: -1.75rem;
}
.feat-block.wide-cover .feat-img img {
  width: 100%; max-height: none; object-fit: cover; height: 100%; min-height: 200px;
}

/* fourth card: gold accent, horizontal text+image */
.feat-block.accent {
  background: linear-gradient(135deg, #f5c518 0%, #e0a200 100%);
  display: grid; grid-template-columns: 55fr 45fr; gap: 1.5rem;
  align-items: center;
  padding: 2rem;
}
.feat-block.accent h3 { color: #1a1300; font-weight: 700; }
.feat-block.accent p   { color: rgba(26,19,0,.78); }
.feat-block.accent .feat-img {
  margin: 0; flex: none;
}
.feat-block.accent .feat-img img { max-height: 220px; }

@media (max-width: 860px) {
  .features-asymmetric { padding: 3rem 1.5rem; }
  .features-asymmetric-grid { grid-template-columns: 1fr; }
  .feat-block.tall { min-height: auto; }
  .feat-block.accent { grid-template-columns: 1fr; }
}

/* ───── Product showcase (big image + tagline) ───── */
.showcase {
  padding: 5rem 1.5rem;
  background: #fff;
  color: #0f1722;
  border-top: 1px solid #e6ecf2;
  border-bottom: 1px solid #e6ecf2;
}
.showcase-inner {
  max-width: var(--maxw); margin: 0 auto;
  display: flex; flex-direction: column;
  gap: 3rem; align-items: center;
  text-align: center;
}
.showcase-media {
  display: grid; place-items: center;
  background: transparent;
  padding: 0;
  width: 100%;
}
.showcase-media img {
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: contain;
}
.showcase h2 { color: #0f1722; margin-bottom: 1rem; }
.showcase p { color: #4a5560; font-size: 1.1rem; max-width: 60ch; margin-left: auto; margin-right: auto; }
@media (max-width: 860px) {
  .showcase-inner { grid-template-columns: 1fr; }
}

/* ───── Feature card variant: with image ───── */
.feature-card.with-image {
  display: flex; flex-direction: column;
  gap: 1rem; padding: 0;
  overflow: hidden;
}
.feature-card.with-image .feature-text {
  padding: 1.75rem 1.75rem 1rem;
}
.feature-card.with-image .feature-text h3 { margin-bottom: .5rem; }
.feature-card.with-image .feature-text p { margin: 0; }
.feature-card.with-image .feature-image {
  margin-top: auto;
  display: grid; place-items: center;
  background: rgba(255,255,255,.02);
  padding: 1.5rem;
  min-height: 180px;
}
.feature-card.with-image .feature-image img {
  max-width: 100%; max-height: 180px; object-fit: contain;
}
.feature-card.with-image .feature-image.cover {
  padding: 0; min-height: 200px;
  background: #000;
}
.feature-card.with-image .feature-image.cover img {
  width: 100%; height: 100%; max-height: none; object-fit: cover;
}

/* ───── Video embed ───── */
.video-section {
  padding: 4rem 1.5rem;
  background: var(--bg);
  border-top: 1px solid var(--line);
}
.video-section-inner {
  max-width: 1000px; margin: 0 auto;
}
.video-section h2 { text-align: center; margin-bottom: 2rem; }
.video-frame {
  position: relative;
  padding-top: 56.25%;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: #000;
}
.video-frame iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%; border: 0;
}

/* ───── Inline product contact form ───── */
.product-form-section {
  padding: 5rem 1.5rem 6rem;
  background:
    radial-gradient(ellipse at 80% 0%, rgba(0,184,212,.18) 0%, transparent 55%),
    radial-gradient(ellipse at 0% 100%, rgba(0,184,212,.10) 0%, transparent 50%),
    var(--bg);
  border-top: 1px solid var(--line);
}
.product-form-inner {
  max-width: 640px; margin: 0 auto;
  text-align: center;
}
.product-form-inner h2 { margin-bottom: .65rem; }
.product-form-inner > p {
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  font-size: 1.05rem;
}
.product-form-inner form {
  position: relative;
  display: grid; gap: 1.25rem;
  text-align: left;
  background: linear-gradient(180deg, var(--bg-card) 0%, rgba(21,26,33,.85) 100%);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) * 2);
  padding: 2.5rem;
  box-shadow:
    0 1px 0 rgba(255,255,255,.04) inset,
    0 24px 48px -16px rgba(0,0,0,.6),
    0 8px 24px -12px rgba(0,184,212,.18);
  overflow: hidden;
}
.product-form-inner form::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--accent) 50%, transparent 100%);
}
.product-form-inner form .form-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
}
.product-form-inner label {
  display: block;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: .5rem;
}
.product-form-inner input,
.product-form-inner textarea {
  width: 100%;
  padding: .95rem 1.1rem;
  background: rgba(255,255,255,.02);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--text);
  font: inherit;
  transition: border-color .2s var(--ease), background .2s var(--ease), box-shadow .2s var(--ease);
}
.product-form-inner input::placeholder,
.product-form-inner textarea::placeholder {
  color: rgba(154,163,173,.55);
}
.product-form-inner input:hover,
.product-form-inner textarea:hover {
  border-color: rgba(0,184,212,.3);
}
.product-form-inner input:focus,
.product-form-inner textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(0,184,212,.04);
  box-shadow: 0 0 0 4px rgba(0,184,212,.12);
}
.product-form-inner button[type="submit"] {
  width: 100%;
  margin-top: .5rem;
  padding: 1.05rem 1.6rem;
  font-size: 1rem;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.product-form-inner .form-note {
  font-size: .82rem;
  color: var(--text-muted);
  text-align: center;
  margin: 0;
  display: inline-flex; align-items: center; justify-content: center;
  gap: .4rem;
}
.product-form-inner .form-note::before {
  content: "";
  width: 14px; height: 14px;
  background-color: currentColor;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><rect x='3' y='11' width='18' height='11' rx='2'/><path d='M7 11V7a5 5 0 0 1 10 0v4'/></svg>") no-repeat center / contain;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><rect x='3' y='11' width='18' height='11' rx='2'/><path d='M7 11V7a5 5 0 0 1 10 0v4'/></svg>") no-repeat center / contain;
  opacity: .65;
}
@media (max-width: 520px) {
  .product-form-inner form { padding: 1.75rem; }
  .product-form-inner form .form-row { grid-template-columns: 1fr; }
}

/* ───── Inline lede / intro band ───── */
.intro-band {
  padding: 4rem 1.5rem;
  background: var(--bg-elev);
  border-bottom: 1px solid var(--line);
  text-align: center;
}
.intro-band .intro-inner {
  max-width: 880px; margin: 0 auto;
}
.intro-band h2 {
  margin-bottom: 1rem;
}
.intro-band p {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin: 0;
}

/* ───── Contact form ───── */
.contact-section {
  padding: 5rem 1.5rem;
  background: var(--bg);
  border-top: 1px solid var(--line);
}
.contact-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 3rem;
  align-items: start;
}
.contact-info h2 { margin-bottom: 1rem; }
.contact-info p { color: var(--text-muted); margin-bottom: 1.25rem; }
.contact-info ul { margin: 0; }
.contact-info li {
  padding: .65rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--text);
  display: flex; align-items: center; gap: .75rem;
}
.contact-info li:last-child { border-bottom: 0; }
.contact-info li strong { color: var(--text-muted); font-weight: 500; min-width: 110px; font-size: .9rem; text-transform: uppercase; letter-spacing: .04em; }
.contact-info li a { color: var(--accent); }

.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem;
  display: grid; gap: 1rem;
}
.contact-form label {
  display: block; font-size: .85rem; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: .06em; margin-bottom: .35rem;
}
.contact-form input, .contact-form textarea {
  width: 100%;
  padding: .85rem 1rem;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--text);
  font: inherit;
  transition: border-color .2s var(--ease);
}
.contact-form input:focus, .contact-form textarea:focus {
  outline: none; border-color: var(--accent);
}
.contact-form textarea { min-height: 130px; resize: vertical; }
.contact-form button { justify-self: start; }

@media (max-width: 860px) {
  .contact-inner { grid-template-columns: 1fr; }
}

/* ───── Long-form policy / about content ───── */
.prose {
  max-width: 820px; margin: 0 auto;
  padding: 4rem 1.5rem 5rem;
}
.prose h2 { margin-top: 2.5rem; margin-bottom: .75rem; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { color: var(--accent); margin-top: 2rem; margin-bottom: .5rem; }
.prose p { color: var(--text-muted); line-height: 1.75; margin-bottom: 1.25rem; }

/* ───── Pillars (somos values) ───── */
.pillars {
  padding: 4rem 1.5rem;
  background: var(--bg-elev);
}
.pillars-inner {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem;
}
.pillar {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem;
}
.pillar h3 {
  color: var(--accent);
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .9rem;
  margin-bottom: .75rem;
}
.pillar p {
  font-size: 1.05rem; line-height: 1.6; margin: 0;
}
@media (max-width: 720px) {
  .pillars-inner { grid-template-columns: 1fr; }
}

/* ───── Inner-page CTA strip ───── */
.cta-strip {
  padding: 4rem 1.5rem;
  background: linear-gradient(135deg, rgba(0,184,212,.12) 0%, rgba(0,184,212,.02) 100%);
  border-top: 1px solid var(--line);
  text-align: center;
}
.cta-strip h2 { margin-bottom: .5rem; }
.cta-strip p { color: var(--text-muted); margin-bottom: 1.5rem; }

/* ───── Scroll reveal ───── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal:nth-child(2) { transition-delay: .05s; }
.reveal:nth-child(3) { transition-delay: .1s; }
.reveal:nth-child(4) { transition-delay: .15s; }
.reveal:nth-child(5) { transition-delay: .2s; }

/* ───── Responsive ───── */
@media (max-width: 860px) {
  .nav-toggle { display: flex; }
  .nav-menu {
    position: fixed; inset: 0 0 auto 0; top: 64px;
    flex-direction: column; align-items: stretch; gap: 0;
    background: rgba(11,13,16,.96);
    backdrop-filter: blur(14px);
    padding: 1.5rem;
    max-height: 0; overflow: hidden;
    transition: max-height .35s var(--ease);
  }
  .nav-menu.open { max-height: 90vh; overflow-y: auto; border-bottom: 1px solid var(--line); }
  .nav-menu > li { border-bottom: 1px solid var(--line); }
  .nav-menu > li > a { display: block; padding: 1rem .25rem; font-size: 1rem; }
  .has-dropdown .dropdown {
    position: static; opacity: 1; pointer-events: auto; transform: none;
    background: transparent; border: 0; box-shadow: none; padding: 0 0 .5rem 1rem;
  }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .hero { padding: 6rem 1.25rem 3rem; }
}

/* ───── Reduced motion ───── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001s !important; transition-duration: 0.001s !important; }
  .hero-media video { animation: none; }
}
