/* ============================================================
   MISSION DYNAMICS — Design System v2
   Tech-industrial. Mobile-first. Animations.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500;600&display=swap');

* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  /* Surfaces */
  --bg: #0a0b0d;
  --bg-elev: #111316;
  --bg-elev-2: #1a1d22;
  --line: #25282e;
  --line-strong: #3a3f47;

  /* Type */
  --text: #ececec;
  --text-mute: #9098a3;
  --text-dim: #5c636d;

  /* Brand */
  --accent: #ff5722;
  --accent-glow: rgba(255, 87, 34, 0.18);
  --signal: #ffb547;
  --ok: #4ade80;

  /* Type stacks */
  --sans: 'Space Grotesk', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, monospace;

  /* Scale */
  --radius: 4px;
  --radius-lg: 8px;
  --header-h: 64px;
  --container: 1280px;

  /* Motion */
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --t-fast: 180ms;
  --t-med: 360ms;
  --t-slow: 720ms;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  font-size: 16px;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* ============================================================
   GRID BACKDROP — subtle technical grid behind hero areas
   ============================================================ */
.grid-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
.eyebrow {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-mute);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.eyebrow::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--accent);
  display: inline-block;
}

h1, .h1 {
  font-size: clamp(2.4rem, 8vw, 5.5rem);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.03em;
}
h2, .h2 {
  font-size: clamp(1.8rem, 4.5vw, 3.2rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.02em;
}
h3, .h3 {
  font-size: clamp(1.2rem, 2.4vw, 1.6rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
h4 { font-size: 1.05rem; font-weight: 600; letter-spacing: -0.005em; }

.lead {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: var(--text-mute);
  max-width: 60ch;
  line-height: 1.55;
}

.mono { font-family: var(--mono); letter-spacing: 0.02em; }
.text-mute { color: var(--text-mute); }
.text-accent { color: var(--accent); }

/* ============================================================
   LAYOUT
   ============================================================ */
.wrap {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.25rem;
}
@media (min-width: 768px) { .wrap { padding: 0 2rem; } }
@media (min-width: 1200px) { .wrap { padding: 0 2.5rem; } }

.section {
  padding: 4rem 0;
}
@media (min-width: 768px) { .section { padding: 6rem 0; } }
@media (min-width: 1200px) { .section { padding: 8rem 0; } }

.section-tight {
  padding-top: 2rem !important;
}
@media (min-width: 768px) { .section-tight { padding-top: 3rem !important; } }
@media (min-width: 1200px) { .section-tight { padding-top: 4rem !important; } }

.section-head { margin-bottom: 3rem; }
.section-head .eyebrow { margin-bottom: 1rem; }
.section-head h2 { margin-bottom: 1rem; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 11, 13, 0.7);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  height: var(--header-h);
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
@media (min-width: 768px) { .header-inner { padding: 0 2rem; } }

.logo { display: flex; align-items: center; gap: 0.5rem; }
.logo img { height: 55px; width: auto; }

@media (max-width: 768px) {
  .logo img { height: 42.5px; }
}

.nav-desktop {
  display: none;
  gap: 2rem;
  align-items: center;
}
.nav-desktop a, .nav-desktop .nav-trigger {
  font-size: 0.875rem;
  color: var(--text-mute);
  font-weight: 500;
  transition: color var(--t-fast) var(--ease);
  position: relative;
}
.nav-desktop a:hover, .nav-desktop .nav-trigger:hover { color: var(--text); }
.nav-desktop a.active { color: var(--text); }

.nav-dropdown { position: relative; }
.nav-trigger::after {
  content: '↓';
  margin-left: 0.35rem;
  font-size: 0.7rem;
  opacity: 0.6;
}
.dropdown {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  min-width: 240px;
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transition: all var(--t-med) var(--ease);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}
.nav-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.dropdown a {
  display: block;
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  font-size: 0.9rem;
  color: var(--text-mute);
}
.dropdown a:hover { background: var(--bg-elev-2); color: var(--text); }
.dropdown a strong {
  display: block;
  color: #e0e0e0;
  font-weight: 600;
  margin-bottom: 0.15rem;
}
.dropdown a span {
  font-family: var(--mono);
  font-size: 0.72rem;
  color: #b0b0b0;
  color: var(--text-dim);
}

.header-cta { display: none; }

@media (min-width: 1024px) {
  .nav-desktop { display: flex; }
  .header-cta { display: inline-flex; }
}

/* Mobile menu trigger */
.menu-btn {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 0;
  z-index: 1000;
  position: relative;
  flex-shrink: 0;
  margin-left: auto;
}
.menu-btn span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  transition: all var(--t-med) var(--ease);
  margin-left: auto;
  margin-right: auto;
}
.menu-btn[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-btn[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-btn[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (min-width: 768px) { .menu-btn { display: none; } }

/* Mobile overlay nav */
.mobile-nav {
  position: fixed;
  inset: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(10, 11, 13, 0.98);
  backdrop-filter: blur(24px);
  z-index: 999;
  padding: calc(var(--header-h) + 2rem) 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-20px);
  transition: opacity var(--t-med) var(--ease), transform var(--t-med) var(--ease), visibility var(--t-med);
  overflow-y: auto;
}
.mobile-nav.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.mobile-nav .m-eyebrow {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
  padding: 1.5rem 0 0.75rem;
  border-bottom: 1px solid var(--line);
  margin-bottom: 0.5rem;
}
.mobile-nav a.mobile-link {
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: -0.005em;
  padding: 1rem 0;
  color: var(--text);
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color var(--t-fast) var(--ease);
}
.mobile-nav a.mobile-link:hover { color: var(--accent); }
.mobile-nav a.mobile-link .arrow { color: var(--text-dim); font-size: 0.9rem; font-family: var(--mono); }
.mobile-nav .m-cta {
  margin-top: 2rem;
}
@media (min-width: 1024px) { .mobile-nav { display: none; } }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.4rem;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: -0.005em;
  border-radius: var(--radius);
  transition: all var(--t-fast) var(--ease);
  white-space: nowrap;
  border: 1px solid transparent;
  cursor: pointer;
}
.btn-primary {
  background: var(--accent);
  color: #0a0b0d;
  font-weight: 600;
}
.btn-primary:hover {
  background: #ff7144;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px var(--accent-glow);
}
.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--line-strong);
}
.btn-ghost:hover {
  background: var(--bg-elev);
  border-color: var(--text-mute);
}
.btn-link {
  color: var(--accent);
  padding: 0;
  background: transparent;
  font-weight: 500;
}
.btn-link:hover { color: #ff7144; gap: 0.85rem; }
.btn-link::after { content: '→'; transition: transform var(--t-fast) var(--ease); }
.btn-link:hover::after { transform: translateX(2px); }

.btn-sm { padding: 0.5rem 0.9rem; font-size: 0.82rem; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding: 6rem 0 4rem;
  overflow: hidden;
}
@media (min-width: 768px) { .hero { padding: 8rem 0 6rem; } }
@media (min-width: 1200px) { .hero { padding: 10rem 0 8rem; } }

.hero-inner { position: relative; z-index: 2; }

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
  }
}

.hero h1 { margin-bottom: 1.5rem; }
.hero h1 .accent-word {
  background: linear-gradient(135deg, var(--accent), var(--signal));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero .lead { margin-bottom: 2rem; }
.hero-audience { 
  font-size: 0.9rem; 
  color: var(--text-mute); 
  margin-bottom: 2rem; 
  font-style: italic;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 2.5rem; }

.hero-meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}
@media (min-width: 480px) { .hero-meta { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 768px) { .hero-meta { grid-template-columns: repeat(5, 1fr); } }
@media (min-width: 1024px) { .hero-meta { grid-template-columns: repeat(5, 1fr); } }
.hero-meta .stat-num {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em;
  letter-spacing: -0.02em;
  margin-bottom: 0.25rem;
}

.slashed-zero {
  position: relative;
  font-family: 'Courier New', monospace;
  display: inline-block;
}

.slashed-zero::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 65%;
  height: 2px;
  background: currentColor;
  transform: translate(-50%, -50%) rotate(-25deg);
  pointer-events: none;
}

.hero-meta .stat-label {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.hero-visual {
  position: relative;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, var(--bg-elev) 0%, var(--bg) 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 32px 32px;
}
.hero-visual img {
  max-width: 85%;
  max-height: 85%;
  object-fit: contain;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.5));
}
.hero-visual .corner {
  position: absolute;
  width: 18px; height: 18px;
  border: 1px solid var(--accent);
}
.hero-visual .corner.tl { top: 12px; left: 12px; border-right: none; border-bottom: none; }
.hero-visual .corner.tr { top: 12px; right: 12px; border-left: none; border-bottom: none; }
.hero-visual .corner.bl { bottom: 12px; left: 12px; border-right: none; border-top: none; }
.hero-visual .corner.br { bottom: 12px; right: 12px; border-left: none; border-top: none; }

.hero-visual .status {
  position: absolute;
  bottom: 18px; left: 50%;
  transform: translateX(-50%);
  font-family: var(--mono);
  font-size: 0.68rem;
  color: var(--text-mute);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  z-index: 2;
}
.hero-visual .status .dot {
  width: 6px; height: 6px;
  background: var(--ok);
  border-radius: 50%;
  animation: pulse 1.8s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

/* ============================================================
   LOGO TICKER (clients/credentials) — SOPHISTICATED SCROLL
   ============================================================ */
.ticker {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 1.75rem 0;
  overflow: hidden;
  background: var(--bg);
  position: relative;
}
.ticker-track {
  display: flex;
  gap: 2.5rem;
  align-items: center;
  white-space: nowrap;
  will-change: transform;
  animation: tickerSmooth 50s linear infinite !important;
  position: relative;
}
.ticker-item {
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-mute);
  letter-spacing: 0.01em;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
}
.ticker-item::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}
.ticker-item::after {
  content: '';
  width: 1px;
  height: 18px;
  background: linear-gradient(180deg, transparent 0%, var(--line) 50%, transparent 100%);
  margin-left: 0.8rem;
}
.ticker-item:last-child::after {
  display: none;
}
@keyframes tickerSmooth {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-50% - 1.25rem));
  }
}
@media (prefers-reduced-motion: reduce) {
  .ticker-track {
    animation: none;
    transform: translateX(0);
  }
}

/* ============================================================
   PRODUCT CARDS
   ============================================================ */
.products {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 768px) { .products { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .products { grid-template-columns: repeat(3, 1fr); } }

.product {
  position: relative;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--t-med) var(--ease);
  display: flex;
  flex-direction: column;
}
.product:hover {
  border-color: var(--line-strong);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
}
.product:hover .product-media {
  background-position: 55% 50%;
}
.product:hover .product-cta::after { transform: translateX(3px); }

.product-media {
  aspect-ratio: 16 / 11;
  background: linear-gradient(160deg, var(--bg-elev-2) 0%, var(--bg-elev) 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--line);
}
.product-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 24px 24px;
}
.product-media img {
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
  position: relative;
  z-index: 1;
  transition: transform var(--t-slow) var(--ease);
}
.product:hover .product-media img { transform: scale(1.04); }

.product-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.product-tag {
  font-family: var(--mono);
  font-size: 0.7rem;
  color: var(--text-dim);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.product-body h3 { margin-bottom: 0.6rem; }
.product-body p { color: var(--text-mute); font-size: 0.95rem; margin-bottom: 1.25rem; }
.product-specs {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.product-specs li {
  display: flex;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: var(--text-mute);
}
.product-specs li::before {
  content: '+';
  color: var(--accent);
  font-family: var(--mono);
  font-weight: 600;
  flex-shrink: 0;
}
.product-cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 500;
}
.product-cta::after { content: '→'; transition: transform var(--t-fast) var(--ease); }

/* ============================================================
   FEATURES GRID
   ============================================================ */
.features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
@media (min-width: 640px) { .features { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .features { grid-template-columns: repeat(3, 1fr); } }

.feature {
  background: var(--bg);
  padding: 2rem 1.75rem;
  transition: background var(--t-med) var(--ease);
}
.feature:hover { background: var(--bg-elev); }
.feature .num {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  color: var(--accent);
  margin-bottom: 1.5rem;
}
.feature h3 { margin-bottom: 0.6rem; }
.feature p { color: var(--text-mute); font-size: 0.95rem; }

/* ============================================================
   COMPARISON TABLE
   ============================================================ */
.compare-wrap {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-elev);
}
.compare {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  min-width: 600px;
}
.compare-scroll { overflow-x: auto; }
.compare th, .compare td {
  padding: 1rem 1.25rem;
  text-align: left;
  border-bottom: 1px solid var(--line);
}
.compare th {
  background: var(--bg-elev-2);
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
  font-weight: 500;
}
.compare td { color: var(--text-mute); }
.compare td:first-child { color: var(--text); font-weight: 500; }
.compare tr:last-child td { border-bottom: none; }
.compare .yes { color: var(--accent); font-weight: 600; }
.compare .no { color: var(--text-dim); }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  position: relative;
  padding: 4rem 1.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--bg-elev) 0%, var(--bg) 100%);
  overflow: hidden;
  text-align: center;
}
@media (min-width: 768px) { .cta-band { padding: 5rem 2rem; } }
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { margin-bottom: 1rem; }
.cta-band p { color: var(--text-mute); max-width: 50ch; margin: 0 auto 2rem; }

/* ============================================================
   PRODUCT PAGE HERO
   ============================================================ */
.p-hero {
  padding: 5rem 0 3rem;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) { .p-hero { padding: 7rem 0 5rem; } }

.p-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .p-hero-grid { grid-template-columns: 1fr 1fr; gap: 4rem; }
}
.p-hero-text h1 { margin-bottom: 1.25rem; }
.p-hero-text .lead { margin-bottom: 2rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--bg-elev);
  border-top: 1px solid var(--line);
  padding: 4rem 0 2rem;
  margin-top: 6rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }

.footer-brand img { height: 40px; margin-bottom: 1rem; }
.footer-brand p {
  color: var(--text-mute);
  font-size: 0.92rem;
  max-width: 32ch;
  margin-bottom: 1.5rem;
}
.footer-contact {
  font-family: var(--mono);
  font-size: 0.8rem;
  color: var(--text-mute);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.footer-contact a:hover { color: var(--accent); }

.footer-col h5 {
  font-family: var(--mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text);
  margin-bottom: 1rem;
}
.footer-col a {
  display: block;
  font-size: 0.9rem;
  color: var(--text-mute);
  padding: 0.3rem 0;
  transition: color var(--t-fast) var(--ease);
}
.footer-col a:hover { color: var(--text); }

.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-family: var(--mono);
  font-size: 0.75rem;
  color: var(--text-dim);
  letter-spacing: 0.05em;
}
@media (min-width: 768px) {
  .footer-bottom { flex-direction: row; justify-content: space-between; align-items: center; }
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 80ms; }
.reveal-delay-2 { transition-delay: 160ms; }
.reveal-delay-3 { transition-delay: 240ms; }
.reveal-delay-4 { transition-delay: 320ms; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .ticker-track { animation: none; }
  .hero-visual .status .dot { animation: none; }
}

/* ============================================================
   ARTICLE PAGE
   ============================================================ */
.article-container { max-width: 760px; margin: 0 auto; }
.article-back { 
  display: inline-flex; 
  align-items: center; 
  gap: 0.4rem; 
  color: var(--text-mute); 
  font-family: var(--mono); 
  font-size: 0.8rem; 
  letter-spacing: 0.05em; 
  margin-bottom: 2rem; 
}
.article-back:hover { color: var(--accent); }
.article-meta {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 1rem;
  font-family: var(--mono);
  font-size: 0.78rem;
  color: var(--text-dim);
  letter-spacing: 0.05em;
}
.article-cat {
  background: var(--accent-glow);
  color: var(--accent);
  padding: 0.3rem 0.7rem;
  border-radius: 3px;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.article-title { margin-bottom: 2rem; font-size: clamp(2rem, 5vw, 3rem); }
.article-img { 
  width: 100%; 
  border-radius: var(--radius-lg); 
  margin: 2rem 0; 
  border: 1px solid var(--line); 
}
.article-content { font-size: 1.05rem; line-height: 1.75; color: var(--text); }
.article-content h2 {
  font-size: 1.6rem;
  margin: 2.5rem 0 1rem;
  padding-top: 0.5rem;
  border-top: 1px solid var(--line);
  padding-top: 1.5rem;
}
.article-content p { margin-bottom: 1.25rem; color: var(--text-mute); }
.article-content p strong { color: var(--text); }
.article-content ul { 
  list-style: none; 
  padding: 0; 
  margin: 1.25rem 0; 
}
.article-content li { 
  padding-left: 1.5rem; 
  position: relative; 
  margin-bottom: 0.6rem; 
  color: var(--text-mute); 
  line-height: 1.55;
}
.article-content li::before { 
  content: '+'; 
  position: absolute; 
  left: 0; 
  color: var(--accent); 
  font-family: var(--mono);
  font-weight: 600;
}

/* ============================================================
   NEWS GRID
   ============================================================ */
.news-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
}
.filter-btn {
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--text-mute);
  background: transparent;
  transition: all var(--t-fast) var(--ease);
}
.filter-btn:hover { color: var(--text); border-color: var(--line-strong); }
.filter-btn.active {
  background: var(--accent);
  color: #0a0b0d;
  border-color: var(--accent);
}

.news-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px) { .news-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .news-grid { grid-template-columns: repeat(3, 1fr); } }

.news-card {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--t-med) var(--ease);
  display: flex;
  flex-direction: column;
  cursor: pointer;
}
.news-card:hover {
  border-color: var(--line-strong);
  transform: translateY(-3px);
}
.news-card-img {
  aspect-ratio: 16/9;
  background: var(--bg-elev-2);
  overflow: hidden;
}
.news-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow) var(--ease);
}
.news-card:hover .news-card-img img { transform: scale(1.05); }
.news-card-body { padding: 1.4rem; flex: 1; display: flex; flex-direction: column; }
.news-card .meta {
  display: flex;
  gap: 0.6rem;
  align-items: center;
  font-family: var(--mono);
  font-size: 0.7rem;
  color: var(--text-dim);
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}
.news-card .cat {
  background: var(--accent-glow);
  color: var(--accent);
  padding: 0.2rem 0.5rem;
  border-radius: 3px;
  text-transform: uppercase;
}
.news-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.6rem;
  line-height: 1.3;
}
.news-card p {
  color: var(--text-mute);
  font-size: 0.88rem;
  line-height: 1.55;
  margin-bottom: 1rem;
  flex: 1;
}
.news-card .read { color: var(--accent); font-size: 0.85rem; font-weight: 500; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1fr 1.3fr; gap: 3rem; } }

.contact-panel {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.contact-panel h4 { 
  margin-bottom: 1.5rem; 
  font-family: var(--mono); 
  font-size: 0.78rem; 
  letter-spacing: 0.12em; 
  text-transform: uppercase; 
  color: var(--text-mute); 
}
.contact-row { margin-bottom: 1.5rem; }
.contact-row .label { 
  font-family: var(--mono); 
  font-size: 0.7rem; 
  color: var(--text-dim); 
  text-transform: uppercase; 
  letter-spacing: 0.1em; 
  margin-bottom: 0.3rem; 
}
.contact-row a, .contact-row p { color: var(--text); font-size: 1rem; }
.contact-row a:hover { color: var(--accent); }

.form { background: var(--bg-elev); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 2rem; }
.form-row { margin-bottom: 1.25rem; }
.form-row label {
  display: block;
  font-family: var(--mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-mute);
  margin-bottom: 0.5rem;
}
.form-row input, .form-row textarea, .form-row select {
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--text);
  font-family: var(--sans);
  font-size: 0.95rem;
  transition: all var(--t-fast) var(--ease);
}
.form-row input:focus, .form-row textarea:focus, .form-row select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}
.form-row textarea { resize: vertical; min-height: 120px; }

/* ============================================================
   HERO MISSION GRID
   ============================================================ */
.hero-mission-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}
@media (min-width: 640px) {
  .hero-mission-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .hero-mission-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.hero-mission-item {
  padding: 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-align: center;
  transition: all var(--t-fast) var(--ease);
}
.hero-mission-item:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--accent);
}
.hero-mission-label {
  font-size: 0.75rem;
  font-family: var(--mono);
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
  font-weight: 600;
}
.hero-mission-title {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.3;
}

/* ============================================================
   MISSION FEATURES GRID
   ============================================================ */
.mission-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 2rem;
}
@media (min-width: 640px) {
  .mission-features {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .mission-features {
    grid-template-columns: repeat(3, 1fr);
  }
}
.mission-item {
  padding: 2rem 1.5rem;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: all var(--t-med) var(--ease);
}
.mission-item:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
}
.mission-label {
  font-size: 0.85rem;
  font-family: var(--mono);
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
  font-weight: 600;
}
.mission-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
}

/* ============================================================
   PROOF STRIP
   ============================================================ */
.proof-strip {
  padding: 2rem 0 !important;
  background: var(--bg-elev);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.proof-items {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px) {
  .proof-items {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .proof-items {
    grid-template-columns: repeat(5, 1fr);
  }
}
.proof-item {
  text-align: center;
}
.proof-label {
  font-size: 0.8rem;
  font-family: var(--mono);
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
  font-weight: 600;
}
.proof-value {
  font-size: 0.95rem;
  color: var(--text);
  font-weight: 500;
  line-height: 1.3;
}

/* ============================================================
   MGN 436 HIGHLIGHT BOX
   ============================================================ */
.mgn-highlight {
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  margin-top: 2rem;
}
.mgn-highlight p {
  margin: 0;
  color: var(--text);
  line-height: 1.6;
}
.mgn-highlight a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
  transition: color var(--t-fast) var(--ease);
}
.mgn-highlight a:hover {
  color: var(--text);
}

/* ============================================================
   CASE STUDY PANEL
   ============================================================ */
.case-study {
  padding: 2rem;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  margin-top: 2rem;
}
.case-study-head {
  margin-bottom: 1rem;
}
.case-study-head h3 {
  margin: 0;
  font-size: 1.25rem;
  color: var(--text);
}
.case-study-body {
  color: var(--text-mute);
  line-height: 1.6;
}
.case-study-body p {
  margin: 0;
}

/* ============================================================
   APPLICATIONS / SECTORS
   ============================================================ */
.sectors {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 640px) { .sectors { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .sectors { grid-template-columns: repeat(3, 1fr); } }

.sector {
  position: relative;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--t-med) var(--ease);
  display: flex;
  flex-direction: column;
}
.sector:hover { border-color: var(--line-strong); transform: translateY(-3px); }
.sector-img { aspect-ratio: 4/3; overflow: hidden; background: var(--bg-elev-2); }
.sector-img img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--t-slow) var(--ease); }
.sector:hover .sector-img img { transform: scale(1.05); }
.sector-body { padding: 1.5rem; }
.sector-body h3 { margin-bottom: 0.5rem; }
.sector-body p { color: var(--text-mute); font-size: 0.92rem; }

/* utility */
.center { text-align: center; }
.mt-1 { margin-top: 0.5rem; } .mt-2 { margin-top: 1rem; } .mt-3 { margin-top: 1.5rem; } .mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; } .mb-2 { margin-bottom: 1rem; } .mb-3 { margin-bottom: 1.5rem; } .mb-4 { margin-bottom: 2rem; }

/* ============================================================
   ACCORDION
   ============================================================ */
.accordion-section {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.accordion-item {
  border-bottom: 1px solid var(--line);
}
.accordion-item:last-child {
  border-bottom: none;
}
.accordion-button {
  width: 100%;
  padding: 1.5rem;
  background: var(--bg-elev);
  border: none;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background var(--t-fast) var(--ease);
}
.accordion-button:hover {
  background: var(--bg-elev-2);
}
.accordion-button::after {
  content: '▼';
  font-size: 0.75rem;
  color: var(--accent);
  transition: transform var(--t-fast) var(--ease);
  margin-left: 1rem;
  flex-shrink: 0;
}
.accordion-button[aria-expanded="true"]::after {
  transform: rotate(180deg);
}
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--t-med) var(--ease);
}
.accordion-content.open {
  max-height: 2000px;
}
.accordion-body {
  padding: 1.5rem;
  color: var(--text-mute);
  line-height: 1.6;
  font-size: 0.95rem;
}

/* ============================================================
   FEATURE BULLETS
   ============================================================ */
.yacht-features {
  margin-top: 2rem;
}
.feature-bullets {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 640px) {
  .feature-bullets {
    grid-template-columns: repeat(2, 1fr);
  }
}
.feature-bullets li {
  padding-left: 1.75rem;
  position: relative;
  color: var(--text-mute);
  line-height: 1.6;
}
.feature-bullets li::before {
  content: '+';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-family: var(--mono);
  font-weight: 600;
}

/* ============================================================
   KEY FEATURES GRID
   ============================================================ */
.key-features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 2rem;
}
@media (min-width: 640px) {
  .key-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .key-features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.feature-item {
  padding: 1rem;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--text);
  font-size: 0.95rem;
  text-align: center;
}

/* ============================================================
   HERO AUDIENCE LINE
   ============================================================ */
.hero-audience {
  font-size: 0.9rem;
  color: var(--text-mute);
  margin-top: 1.5rem;
}

/* ============================================================
   IMPACT GRID (Monitor impacts section)
   ============================================================ */
.impact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .impact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

/* ============================================================
   SECTION GAUGE COMPONENT
   Circular dial with tick marks and orange arc
   ============================================================ */
.section-gauge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  margin-right: 0.75rem;
  position: relative;
  flex-shrink: 0;
}

.section-gauge-svg {
  width: 100%;
  height: 100%;
  display: block;
}

.section-gauge-arc {
  transition: stroke-dashoffset 0.4s ease;
}

/* Responsive sizing */
@media (max-width: 640px) {
  .section-gauge {
    width: 30px;
    height: 30px;
    margin-right: 0.5rem;
  }
}
