/* ==========================================================================
   MachiNx Intelligent Systems — Global Stylesheet
   ========================================================================== */

:root {
  /* Surfaces */
  --bg: #ffffff;
  --bg-alt: #f5f6f8;
  --surface: #ffffff;
  --surface-2: #eef0f3;
  --border: rgba(15, 23, 42, 0.09);
  --border-strong: rgba(15, 23, 42, 0.16);

  /* Text */
  --text-primary: #10151f;
  --text-secondary: #4c5566;
  --text-muted: #838da0;

  /* Brand accents */
  --accent-cyan: #fbbf24;
  --accent-blue: #fb923c;
  --accent-violet: #f43f5e;
  --accent-ink: #b45309;
  --accent-gradient: linear-gradient(135deg, #fbbf24 0%, #fb923c 55%, #f43f5e 100%);
  --accent-gradient-soft: linear-gradient(135deg, rgba(251,191,36,0.14) 0%, rgba(251,146,60,0.14) 55%, rgba(244,63,94,0.14) 100%);

  /* Status */
  --good: #059669;

  /* Layout */
  --max-width: 1240px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --gap: 24px;

  /* Shadows */
  --shadow-glow: 0 0 0 1px var(--border), 0 20px 60px -20px rgba(251, 191, 36, 0.22);
  --shadow-card: 0 1px 2px rgba(15,23,42,0.04), 0 12px 28px -16px rgba(15,23,42,0.14);

  color-scheme: light;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; max-width: 100%; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text-primary);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, p { margin: 0; }
button { font-family: inherit; }

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

@media (max-width: 640px) {
  .container { padding: 0 20px; }
}

/* Background texture: soft grid + glow blobs */
.bg-decor {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(15,23,42,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15,23,42,0.045) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 40%, transparent 90%);
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 40%, transparent 90%);
}

.glow-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.16;
  pointer-events: none;
}

/* ---------- Eyebrow / section labels ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-ink);
  padding: 6px 14px;
  border: 1px solid rgba(251, 191, 36, 0.25);
  border-radius: 999px;
  background: rgba(251, 191, 36, 0.06);
}
.eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent-gradient);
}

/* ---------- Typography helpers ---------- */
.section-tag { margin-bottom: 18px; }
.section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--text-primary);
}
.section-sub {
  margin-top: 16px;
  max-width: 620px;
  color: var(--text-secondary);
  font-size: 17px;
}
.section-header { margin-bottom: 48px; }
.section-header.center { text-align: center; margin-left: auto; margin-right: auto; }
.section-header.center .section-sub { margin-left: auto; margin-right: auto; }

.gradient-text {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  font-size: 14.5px;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent-gradient);
  color: #04070d;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 28px -10px rgba(251, 146, 60, 0.55); }
.btn-ghost {
  background: rgba(15,23,42,0.035);
  border-color: var(--border-strong);
  color: var(--text-primary);
}
.btn-ghost:hover { border-color: var(--accent-cyan); background: rgba(251,191,36,0.06); transform: translateY(-2px); }
.btn-sm { padding: 9px 18px; font-size: 13.5px; }
.btn svg { width: 16px; height: 16px; }

/* ---------- Navbar ---------- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: background 0.3s ease, border-color 0.3s ease, padding 0.3s ease;
  border-bottom: 1px solid transparent;
}
.navbar.scrolled {
  padding: 12px 0;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; row-gap: 8px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 19px; letter-spacing: -0.01em; }
.brand img { height: 40px; width: auto; }

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  padding: 9px 15px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: 999px;
  transition: color 0.2s ease, background 0.2s ease;
}
.nav-links a:hover { color: var(--text-primary); background: rgba(15,23,42,0.05); }
.nav-links a.active { color: var(--text-primary); background: rgba(15,23,42,0.06); }
.nav-cta { display: flex; align-items: center; gap: 10px; }

.nav-toggle {
  display: none;
  width: 40px; height: 40px;
  border-radius: 10px;
  border: 1px solid var(--border-strong);
  background: rgba(15,23,42,0.035);
  align-items: center; justify-content: center;
  cursor: pointer;
}
.nav-toggle span, .nav-toggle::before, .nav-toggle::after { display: none; }
.nav-toggle svg { width: 20px; height: 20px; }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-toggle { display: flex; }
}
@media (max-width: 480px) { .brand img { height: 32px; } }

/* Mobile menu panel */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  padding: 100px 32px 40px;
  gap: 6px;
  transform: translateY(-12px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.mobile-menu.open { opacity: 1; transform: translateY(0); pointer-events: auto; }
.mobile-menu a {
  font-size: 22px;
  font-weight: 600;
  padding: 14px 4px;
  border-bottom: 1px solid var(--border);
  color: var(--text-primary);
}
.mobile-menu .btn { margin-top: 24px; align-self: flex-start; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 168px 0 110px;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero { padding: 140px 0 70px; }
}
.hero h1 {
  font-size: clamp(36px, 5.4vw, 62px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin: 22px 0 22px;
}
.hero p.lead {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 540px;
}
.hero-actions { display: flex; gap: 14px; margin-top: 34px; flex-wrap: wrap; }

.hero-stats { display: flex; gap: 36px; margin-top: 52px; flex-wrap: wrap; }
.hero-stat .num { font-size: 26px; font-weight: 800; }
.hero-stat .label { font-size: 13px; color: var(--text-muted); margin-top: 4px; }

.hero-visual { position: relative; }
.hero-visual-frame {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: radial-gradient(circle at 30% 20%, rgba(251,146,60,0.14), transparent 55%), var(--surface);
  overflow: hidden;
}
@media (max-width: 900px) { .hero-visual-frame { aspect-ratio: 16/10; } }
.hero-scene { width: 100%; height: 100%; display: block; }

/* Hero scene: satellite beaming a signal down to a gateway chip */
.hs-orbit { fill: none; stroke: var(--border-strong); stroke-width: 1; stroke-dasharray: 3 5; }

.hs-signal { fill: none; stroke: var(--accent-cyan); stroke-width: 2; opacity: 0; animation: hsPulse 3s ease-in-out infinite; }
.hs-signal.r2 { animation-delay: .5s; }
.hs-signal.r3 { animation-delay: 1s; }
@keyframes hsPulse { 0%, 100% { opacity: 0; } 50% { opacity: .8; } }

.hs-beam { fill: none; stroke: var(--accent-cyan); stroke-width: 1.6; stroke-dasharray: 4 6; opacity: .5; animation: hsBeamFlow 1.6s linear infinite; }
@keyframes hsBeamFlow { to { stroke-dashoffset: -20; } }

.hs-packet {
  fill: var(--accent-cyan);
  offset-path: path('M290,95 C260,150 220,190 200,260');
  offset-distance: 0%;
  animation: hsPacketMove 2.4s linear infinite;
}
.hs-packet.delay { animation-delay: 1.2s; }
@keyframes hsPacketMove {
  0% { offset-distance: 0%; opacity: 0; }
  8% { opacity: 1; }
  92% { opacity: 1; }
  100% { offset-distance: 100%; opacity: 0; }
}

.hs-board { fill: none; stroke: var(--border-strong); stroke-width: 1.5; }
.hs-trace { fill: none; stroke: var(--border-strong); stroke-width: 1.4; }
.hs-pad { fill: var(--accent-blue); }
.hs-chip { fill: rgba(15,23,42,0.035); stroke: var(--accent-cyan); stroke-width: 1.6; }
.hs-pin { fill: none; stroke: var(--accent-cyan); stroke-width: 1.6; }

.hs-led { fill: var(--accent-violet); animation: hsBlink 2.4s ease-in-out infinite; }
.hs-led.d2 { animation-delay: .6s; }
.hs-led.d3 { animation-delay: 1.2s; }
@keyframes hsBlink { 0%, 100% { opacity: .25; } 50% { opacity: 1; } }

.hs-satellite { animation: hsFloat 5s ease-in-out infinite; }
@keyframes hsFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }
.hs-sat-body { fill: rgba(15,23,42,0.045); stroke: var(--text-primary); stroke-width: 1.4; }
.hs-sat-panel { fill: none; stroke: var(--accent-blue); stroke-width: 1.4; }
.hs-sat-panel-grid { stroke: var(--accent-blue); stroke-width: .8; opacity: .6; }
.hs-sat-antenna { stroke: var(--text-primary); stroke-width: 1.4; }
.hs-sat-dish { fill: rgba(15,23,42,0.045); stroke: var(--text-primary); stroke-width: 1.2; }

/* ---------- Certification strip ---------- */
.cert-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 52px 0;
  background: var(--bg-alt);
}
.cert-strip-inner { display: flex; flex-direction: column; align-items: center; gap: 26px; text-align: center; }
.cert-strip-label { font-size: 13.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-muted); font-weight: 700; }
.cert-badges { display: flex; align-items: stretch; gap: 24px; flex-wrap: wrap; justify-content: center; }
.cert-badge {
  display: flex; align-items: center; gap: 18px;
  padding: 20px 30px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-strong);
  background: var(--surface);
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.cert-badge:hover {
  transform: translateY(-4px);
  border-color: var(--accent-cyan);
  box-shadow: 0 20px 40px -20px rgba(251, 191, 36, 0.35);
}
.cert-badge img { height: 52px; width: 52px; flex-shrink: 0; }
.cert-badge .txt { display: flex; flex-direction: column; line-height: 1.3; text-align: left; }
.cert-badge .txt strong { font-size: 19px; font-weight: 700; }
.cert-badge .txt span { font-size: 13.5px; color: var(--text-muted); margin-top: 2px; }
.cert-badge .ext-icon { width: 15px; height: 15px; color: var(--text-muted); margin-left: 4px; flex-shrink: 0; transition: color 0.2s ease; }
.cert-badge:hover .ext-icon { color: var(--accent-ink); }

/* ---------- Sections ---------- */
section { position: relative; padding: 96px 0; }
.section-alt { background: var(--bg-alt); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

/* ---------- Card grid ---------- */
.grid { display: grid; gap: var(--gap); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
@media (max-width: 900px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 640px) { .grid-3, .grid-4, .grid-2 { grid-template-columns: minmax(0, 1fr); } }

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 30px;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.card:hover { transform: translateY(-4px); border-color: var(--border-strong); box-shadow: 0 20px 40px -20px rgba(251,191,36,0.2); }

.icon-tile {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  background: var(--accent-gradient-soft);
  border: 1px solid rgba(15,23,42,0.08);
  margin-bottom: 20px;
}
.icon-tile svg { width: 26px; height: 26px; stroke: url(#icon-grad); }

.card h3 { font-size: 19px; font-weight: 700; margin-bottom: 10px; letter-spacing: -0.01em; }
.card p { color: var(--text-secondary); font-size: 15px; }
.tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 18px; }
.tag {
  font-size: 11.5px; font-weight: 600; letter-spacing: 0.03em;
  padding: 4px 10px; border-radius: 999px;
  background: rgba(15,23,42,0.05); color: var(--text-secondary);
  border: 1px solid var(--border);
}
.card-link { margin-top: 20px; display: inline-flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 600; color: var(--accent-ink); }
.card-link svg { width: 14px; height: 14px; transition: transform 0.2s ease; }
.card:hover .card-link svg { transform: translateX(3px); }

/* Feature row (icon left, text right) */
.feature-row { display: flex; gap: 18px; }
.feature-row .icon-tile { flex-shrink: 0; margin-bottom: 0; }
.feature-row h4 { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.feature-row p { font-size: 14.5px; color: var(--text-secondary); }

/* Two-col content section */
.split { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr); gap: 56px; align-items: center; }
@media (max-width: 900px) { .split { grid-template-columns: minmax(0,1fr); gap: 36px; } }
.split.reverse .split-visual { order: 2; }

.panel {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: linear-gradient(160deg, var(--surface), var(--bg-alt));
  padding: 40px;
  position: relative;
  overflow: hidden;
}

/* ---------- Timeline / list ---------- */
.check-list { display: flex; flex-direction: column; gap: 14px; margin-top: 26px; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 15px; color: var(--text-secondary); }
.check-list svg { width: 20px; height: 20px; flex-shrink: 0; color: var(--good); margin-top: 1px; }

/* ---------- CTA band ---------- */
.cta-band {
  border-radius: var(--radius-lg);
  padding: 56px;
  background: var(--accent-gradient-soft);
  border: 1px solid rgba(244,63,94,0.25);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band h2 { font-size: clamp(24px, 3.4vw, 34px); font-weight: 800; letter-spacing: -0.02em; }
.cta-band p { color: var(--text-secondary); margin-top: 14px; max-width: 520px; margin-left: auto; margin-right: auto; }
.cta-band .hero-actions { justify-content: center; margin-top: 30px; }

/* ---------- Footer ---------- */
footer { border-top: 1px solid var(--border); padding: 64px 0 32px; background: var(--bg-alt); }
.footer-grid { display: grid; grid-template-columns: minmax(0,1.4fr) minmax(0,1fr) minmax(0,1fr) minmax(0,1.2fr); gap: 40px; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: minmax(0,1fr) minmax(0,1fr); } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: minmax(0,1fr); } }
.footer-brand p { color: var(--text-secondary); font-size: 14.5px; margin-top: 14px; max-width: 300px; }
.footer-badges { display: flex; align-items: center; gap: 22px; margin-top: 22px; flex-wrap: wrap; }
.footer-badges a { display: inline-flex; align-items: center; opacity: 0.85; transition: opacity 0.2s ease, transform 0.2s ease; }
.footer-badges a:hover { opacity: 1; transform: translateY(-2px); }
.footer-badges img { height: 34px; width: 34px; display: block; }
.footer-col h5 { font-size: 13px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 14.5px; color: var(--text-secondary); transition: color 0.2s ease; }
.footer-col a:hover { color: var(--accent-ink); }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; color: var(--text-secondary); overflow-wrap: anywhere; }
.footer-contact svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; color: var(--accent-ink); }
.footer-bottom {
  margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
}
.footer-bottom span { font-size: 13px; color: var(--text-muted); }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 34px; height: 34px; border-radius: 50%; border: 1px solid var(--border-strong);
  display: flex; align-items: center; justify-content: center; color: var(--text-secondary);
  transition: all 0.2s ease;
}
.footer-social a:hover { color: var(--bg); background: var(--accent-cyan); border-color: var(--accent-cyan); }
.footer-social svg { width: 15px; height: 15px; }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero { padding: 158px 0 70px; text-align: center; }
.page-hero .eyebrow { margin-bottom: 20px; }
.page-hero h1 { font-size: clamp(32px, 5vw, 52px); font-weight: 800; letter-spacing: -0.03em; }
.page-hero p { max-width: 640px; margin: 20px auto 0; color: var(--text-secondary); font-size: 17px; }
.breadcrumb { display: flex; gap: 8px; align-items: center; justify-content: center; font-size: 13.5px; color: var(--text-muted); margin-bottom: 18px; }
.breadcrumb a:hover { color: var(--accent-ink); }
.breadcrumb svg { width: 12px; height: 12px; }

/* ---------- Stats row ---------- */
.stats-row { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 24px; }
@media (max-width: 720px) { .stats-row { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.stats-row-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
@media (max-width: 480px) { .stats-row-3 { grid-template-columns: minmax(0, 1fr); } }
.stat-box { text-align: center; padding: 28px 16px; border: 1px solid var(--border); border-radius: var(--radius-md); background: var(--surface); overflow-wrap: anywhere; }
.stat-box .num { font-size: 30px; font-weight: 800; overflow-wrap: anywhere; }
.stat-box .label { font-size: 13px; color: var(--text-muted); margin-top: 6px; overflow-wrap: anywhere; }

/* ---------- Badge / pill grid for certifications page ---------- */
.cert-card {
  display: flex; gap: 22px; align-items: flex-start;
  border: 1px solid var(--border); border-radius: var(--radius-md);
  padding: 28px; background: var(--surface);
}
.cert-card img { width: 56px; height: 56px; flex-shrink: 0; }
.cert-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.cert-card p { color: var(--text-secondary); font-size: 14.5px; }

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }
.hidden-svg-defs { position: absolute; width: 0; height: 0; }

/* ---------- Form (contact page) ---------- */
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
@media (max-width: 640px) { .form-grid { grid-template-columns: minmax(0, 1fr); } }
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-size: 13.5px; font-weight: 600; color: var(--text-secondary); }
.form-field input, .form-field textarea, .form-field select {
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: 10px;
  padding: 13px 15px;
  color: var(--text-primary);
  font-size: 14.5px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus {
  border-color: var(--accent-cyan);
  box-shadow: 0 0 0 3px rgba(251,191,36,0.15);
}
.form-field textarea { resize: vertical; min-height: 120px; }
.map-embed { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); filter: grayscale(0.15) contrast(0.97); }
.map-embed iframe { width: 100%; height: 100%; min-height: 340px; border: 0; display: block; }

/* ---------- Table (CVMS specs) ---------- */
.spec-table { width: 100%; border-collapse: collapse; border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; }
.spec-table tr { border-top: 1px solid var(--border); }
.spec-table tr:first-child { border-top: none; }
.spec-table td { padding: 16px 20px; font-size: 14.5px; }
.spec-table td:first-child { color: var(--text-muted); width: 40%; font-weight: 600; }
.spec-table td:last-child { color: var(--text-secondary); }
.spec-table tr:nth-child(odd) { background: rgba(15,23,42,0.02); }
