/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  --blue:        #1449AE;
  --blue-dark:   #0D3580;
  --blue-mid:    #1E55C4;
  --blue-light:  #E8EFFE;
  --blue-dim:    rgba(20,73,174,0.08);
  --yellow:      #F0A941;
  --yellow-dark: #C8871A;
  --yellow-light:#FDF3E2;
  --cream:       #F9F1E6;
  --cream-dark:  #EFE3CC;
  --white:       #FFFFFF;
  --gray-900:    #0F1218;
  --gray-800:    #1E2229;
  --gray-700:    #353C47;
  --gray-600:    #4D5566;
  --gray-500:    #6B7589;
  --gray-400:    #9AA3B2;
  --gray-300:    #C8CDD6;
  --gray-200:    #E4E7EC;
  --gray-100:    #F4F5F7;
  --gray-50:     #FAFBFC;

  --font-display: 'Rubik', sans-serif;
  --font-body:    'Figtree', sans-serif;

  --radius-sm:  6px;
  --radius-md:  10px;
  --radius-lg:  16px;
  --radius-xl:  24px;
  --radius-2xl: 36px;
  --radius-pill:9999px;

  --shadow-sm: 0 1px 4px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08), 0 1px 4px rgba(0,0,0,0.04);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.10);
  --shadow-blue: 0 8px 32px rgba(20,73,174,0.22);

  --gutter: clamp(1.25rem, 5vw, 2.5rem);
  --max-w:  1200px;

  --ease-spring: cubic-bezier(0.34,1.56,0.64,1);
}

/* ============================================================
   RESET
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--gray-800);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ============================================================
   UTILITIES
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* eyebrow */
.eyebrow {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.6875rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--blue);
  display: block;
  margin-bottom: 0.75rem;
}
.eyebrow-yellow { color: var(--yellow); }
.eyebrow-muted  { color: rgba(255,255,255,0.55); }

/* accent bar */
.accent-bar {
  display: block;
  width: 40px; height: 4px;
  background: var(--yellow);
  border-radius: var(--radius-pill);
  margin: 0.75rem 0 1.25rem;
}
.accent-bar-center { margin: 0.75rem auto 1.25rem; }

/* section rhythm */
.section { padding: clamp(5rem,9vw,8rem) 0; }
.section-sm { padding: clamp(3.5rem,6vw,5rem) 0; }

.section-header {
  max-width: 660px;
  margin: 0 auto clamp(3rem,5vw,4.5rem);
  text-align: center;
}

/* headings */
h1, .h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.5rem,6vw,4rem);
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--gray-900);
}
h2, .h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.875rem,4vw,2.75rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--gray-900);
}
h3, .h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.25rem,2.5vw,1.625rem);
  line-height: 1.25;
  color: var(--gray-900);
}
h4, .h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.3;
  color: var(--gray-900);
}

.text-white, .text-white h1, .text-white h2,
.text-white h3, .text-white h4 { color: var(--white); }

.lead {
  font-size: clamp(1.05rem,2vw,1.2rem);
  line-height: 1.75;
  color: var(--gray-600);
}

/* tags */
.tag {
  display: inline-flex;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.6rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}
.tag-blue   { background: var(--blue-light); color: var(--blue); }
.tag-yellow { background: var(--yellow-light); color: var(--yellow-dark); }
.tag-cream  { background: var(--cream); color: var(--gray-600); }

/* buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.75rem 1.625rem;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.15s, box-shadow 0.2s;
  white-space: nowrap;
  cursor: pointer;
  line-height: 1;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: none; }

.btn-primary {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  box-shadow: var(--shadow-blue);
}
.btn-secondary {
  background: transparent;
  border-color: var(--blue);
  color: var(--blue);
}
.btn-secondary:hover { background: var(--blue-light); }

.btn-ghost {
  background: transparent;
  border-color: rgba(255,255,255,0.35);
  color: var(--white);
}
.btn-ghost:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.65); }

.btn-accent {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--gray-900);
}
.btn-accent:hover { background: var(--yellow-dark); border-color: var(--yellow-dark); }

.btn-lg {
  font-size: 0.75rem;
  padding: 1rem 2rem;
  border-radius: var(--radius-lg);
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

/* arrow suffix */
.arr::after {
  content: '→';
  font-size: 1em;
  transition: transform 0.15s;
}
.btn:hover .arr::after,
.arr:hover::after { transform: translateX(3px); }

/* cards */
.card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 2rem;
  transition: box-shadow 0.25s, transform 0.25s;
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

/* icon mark */
.icon-mark {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-md);
  background: var(--blue-light);
  margin-bottom: 1.25rem;
  flex-shrink: 0;
}
.icon-mark svg { width: 22px; height: 22px; color: var(--blue); }
.icon-mark-yellow { background: var(--yellow-light); }
.icon-mark-yellow svg { color: var(--yellow-dark); }

/* grid helpers */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }

/* fade-in animation */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: none; }
.fade-up:nth-child(2) { transition-delay: 0.08s; }
.fade-up:nth-child(3) { transition-delay: 0.16s; }
.fade-up:nth-child(4) { transition-delay: 0.24s; }
.fade-up:nth-child(5) { transition-delay: 0.32s; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
  transition: box-shadow 0.25s;
}
.nav.scrolled { box-shadow: var(--shadow-sm); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 2rem;
}

/* Logo mark text (replace with <img> for real logo) */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

/* Full logo lockup — SVG contains both mark and wordmark */
.nav-logo-img {
  height: 36px;
  width: auto;
  display: block;
}

.nav-logo-mark { display: none; }
.nav-logo-mark svg { width: 18px; height: 18px; color: var(--white); }
.nav-logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--gray-900);
  letter-spacing: -0.01em;
  display: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}
.nav-link {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.8125rem;
  color: var(--gray-600);
  letter-spacing: 0.02em;
  padding: 0.25rem 0;
  border-bottom: 2px solid transparent;
  transition: color 0.15s, border-color 0.15s;
}
.nav-link:hover, .nav-link.active {
  color: var(--blue);
  border-bottom-color: var(--blue);
}

.nav-actions { display: flex; align-items: center; gap: 0.75rem; flex-shrink: 0; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  background: var(--blue);
  display: flex;
  align-items: center;
  padding: 7rem 0 5rem;
  position: relative;
  overflow: hidden;
}

/* Decorative grid overlay */
.hero::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: 60px 60px;
  pointer-events: none;
}

/* Decorative glow blob */
.hero::after {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 55%;
  height: 90%;
  background: radial-gradient(ellipse at center, rgba(240,169,65,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem,5vw,5rem);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-pill);
  padding: 0.35rem 0.875rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 1.5rem;
}
.hero-eyebrow-dot {
  width: 6px; height: 6px;
  background: var(--yellow);
  border-radius: 50%;
}

.hero-headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.75rem,5.5vw,4.5rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.hero-headline em {
  font-style: normal;
  color: var(--yellow);
}

.hero-sub {
  font-size: clamp(1rem,1.8vw,1.175rem);
  line-height: 1.75;
  color: rgba(255,255,255,0.72);
  max-width: 520px;
  margin-bottom: 2.5rem;
}

/* Hero data visualization panel */
.hero-panel {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  position: relative;
}

.hero-panel-label {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.625rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.hero-panel-label-dot {
  width: 6px; height: 6px;
  background: var(--yellow);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

.hero-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0.875rem;
  margin-bottom: 1.25rem;
}

.hero-metric {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius-md);
  padding: 1rem 0.875rem;
}
.hero-metric-name {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 0.35rem;
}
.hero-metric-val {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--white);
  line-height: 1;
}
.hero-metric-unit {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.45);
  margin-top: 0.2rem;
}
.hero-metric-trend {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  font-size: 0.6rem;
  font-weight: 600;
  color: #4ade80;
  background: rgba(74,222,128,0.12);
  padding: 2px 5px;
  border-radius: 3px;
  margin-top: 0.3rem;
}
.hero-metric-trend.warn { color: var(--yellow); background: rgba(240,169,65,0.15); }

/* Inline sparkline SVG bars */
.sparkline {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  height: 28px;
  margin-top: 0.75rem;
}
.sparkline-bar {
  flex: 1;
  background: rgba(255,255,255,0.15);
  border-radius: 2px 2px 0 0;
  transition: background 0.2s;
}
.sparkline-bar.hi { background: rgba(240,169,65,0.6); }
.sparkline-bar.active { background: rgba(255,255,255,0.55); }

.hero-panel-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.675rem;
  color: rgba(255,255,255,0.4);
  font-weight: 500;
  letter-spacing: 0.04em;
}

/* ============================================================
   CREDENTIAL STRIP
   ============================================================ */
.strip {
  background: var(--gray-900);
  padding: 1.375rem 0;
}
.strip-inner {
  display: flex;
  align-items: center;
  gap: 0;
}
.strip-label {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  white-space: nowrap;
  padding-right: 2rem;
  border-right: 1px solid rgba(255,255,255,0.1);
  margin-right: 2rem;
  flex-shrink: 0;
}
.strip-items {
  display: flex;
  align-items: center;
  gap: 0;
  flex: 1;
  overflow: hidden;
}
.strip-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.7);
  padding: 0 2rem;
  border-right: 1px solid rgba(255,255,255,0.08);
  white-space: nowrap;
}
.strip-item:first-child { padding-left: 0; }
.strip-item:last-child { border-right: none; }
.strip-dot {
  width: 6px; height: 6px;
  background: var(--yellow);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ============================================================
   PROBLEM SECTION
   ============================================================ */
.problem { background: var(--gray-50); }

.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem,6vw,6rem);
  align-items: center;
}

.problem-text h2 { margin-bottom: 1.25rem; }
.problem-text p {
  font-size: 1.025rem;
  line-height: 1.8;
  color: var(--gray-600);
  margin-bottom: 1.125rem;
}
.problem-text p:last-child { margin-bottom: 0; }

.problem-contrast {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.contrast-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.contrast-col {
  padding: 1.75rem;
}
.contrast-col:first-child {
  border-right: 1px solid var(--gray-200);
  background: var(--gray-50);
}
.contrast-col-label {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.contrast-col-label-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
}
.dot-gray { background: var(--gray-300); }
.dot-blue { background: var(--blue); }

.contrast-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 0.75rem;
  font-size: 0.825rem;
  color: var(--gray-600);
  line-height: 1.5;
}
.contrast-item:last-child { margin-bottom: 0; }
.contrast-item-icon {
  width: 16px; height: 16px;
  flex-shrink: 0;
  margin-top: 1px;
}
.contrast-item-icon.x { color: var(--gray-400); }
.contrast-item-icon.check { color: var(--blue); }

.contrast-divider {
  height: 1px;
  background: var(--gray-200);
}

/* ============================================================
   PRODUCT INTRO
   ============================================================ */
.product { background: var(--white); }

.product-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem,6vw,6rem);
  align-items: center;
  margin-bottom: clamp(3.5rem,6vw,5rem);
}

.product-intro-text h2 { margin-bottom: 1.25rem; }
.product-intro-text p {
  font-size: 1.025rem;
  line-height: 1.8;
  color: var(--gray-600);
  margin-bottom: 1.125rem;
}

/* Device mockup */
.device-wrap {
  background: var(--blue);
  border-radius: var(--radius-xl);
  padding: 2rem;
  aspect-ratio: 4/3;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}
.device-wrap::before {
  content: '';
  position: absolute; inset: 0;
  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: 40px 40px;
}
.device-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative; z-index: 1;
}
.device-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.device-status {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #4ade80;
  text-transform: uppercase;
}
.device-status-dot {
  width: 6px; height: 6px;
  background: #4ade80;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.device-spectrum {
  position: relative; z-index: 1;
  margin: 0.5rem 0;
}
.spectrum-svg { width: 100%; height: 70px; }

.device-readings {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  position: relative; z-index: 1;
}
.device-reading {
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  padding: 0.625rem 0.75rem;
}
.device-reading-label {
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 0.25rem;
}
.device-reading-val {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
  line-height: 1;
}
.device-reading-unit {
  font-size: 0.575rem;
  color: rgba(255,255,255,0.4);
  margin-top: 0.15rem;
}

/* 3-col feature cards below product intro */
.product-features { }
.feature-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-top: 3px solid transparent;
  border-radius: 0 0 var(--radius-xl) var(--radius-xl);
  padding: 1.75rem;
  transition: border-top-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.feature-card:hover {
  border-top-color: var(--blue);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.feature-card h4 { margin: 1rem 0 0.6rem; }
.feature-card p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--gray-600);
}

/* ============================================================
   APPLICATIONS
   ============================================================ */
.applications { background: var(--cream); }

.app-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }

.app-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
}
.app-card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.app-card-tag { margin-bottom: 1rem; }
.app-card h4 { margin-bottom: 0.625rem; }
.app-card p {
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--gray-600);
  flex: 1;
  margin-bottom: 1.25rem;
}
.app-card-stat {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--blue);
  line-height: 1.2;
  margin-bottom: 0.25rem;
}
.app-card-stat-label {
  font-size: 0.7rem;
  color: var(--gray-500);
  margin-bottom: 1.25rem;
}
.app-card-link {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  display: flex;
  align-items: center;
  gap: 0.3rem;
  transition: gap 0.15s;
}
.app-card:hover .app-card-link { gap: 0.55rem; }

/* ============================================================
   ROI SECTION
   ============================================================ */
.roi { background: var(--blue); }

.roi-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem,6vw,6rem);
  align-items: start;
}

.roi-text h2 { color: var(--white); margin-bottom: 1.25rem; }
.roi-text h2 em { font-style: normal; color: var(--yellow); }
.roi-text p {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.68);
  margin-bottom: 2rem;
}

.roi-table-wrap {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.roi-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.8375rem;
}
.roi-table th {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.575rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  padding: 0.875rem 1.25rem;
  text-align: left;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.roi-table th:not(:first-child) { text-align: right; }
.roi-table td {
  padding: 0.75rem 1.25rem;
  color: rgba(255,255,255,0.78);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 0.825rem;
}
.roi-table td:not(:first-child) { text-align: right; }
.roi-table tbody tr:last-child td { border-bottom: none; }
.roi-table .row-total {
  background: rgba(255,255,255,0.07);
  border-top: 1px solid rgba(255,255,255,0.12) !important;
}
.roi-table .row-total td {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--yellow);
  border-bottom: none;
  padding: 1rem 1.25rem;
}
.roi-table .row-cost td { color: rgba(255,255,255,0.45); font-size: 0.775rem; }
.roi-table .row-sub td {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--white);
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* ============================================================
   AUDIENCE SECTION
   ============================================================ */
.audience { background: var(--white); }

.audience-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.audience-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 2rem;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}
.audience-card:hover {
  border-color: var(--blue);
  background: var(--blue-light);
  box-shadow: var(--shadow-sm);
}
.audience-card-role {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.75rem;
}
.audience-card h4 { margin-bottom: 0.75rem; }
.audience-card p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--gray-600);
  margin-bottom: 1rem;
}
.audience-card-benefit {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.775rem;
  font-weight: 600;
  color: var(--blue);
  padding: 0.5rem 0.875rem;
  background: rgba(20,73,174,0.07);
  border-radius: var(--radius-pill);
  width: fit-content;
  margin-bottom: 1rem;
}
.audience-card-link {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.625rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  display: flex;
  align-items: center;
  gap: 0.3rem;
  transition: gap 0.15s;
}
.audience-card:hover .audience-card-link { gap: 0.55rem; }

/* ============================================================
   TECHNOLOGY SNIPPET
   ============================================================ */
.technology { background: var(--gray-900); }

.tech-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem,6vw,6rem);
  align-items: center;
}

.tech-text .eyebrow { color: var(--yellow); }
.tech-text h2 { color: var(--white); margin-bottom: 1.25rem; }
.tech-text p {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.62);
  margin-bottom: 2rem;
}

.tech-visual {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius-xl);
  padding: 2rem;
}
.tech-vis-label {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 1.5rem;
}
.spectrum-full-svg { width: 100%; height: 120px; }
.tech-vis-legend {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}
.legend-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.65rem;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
}
.legend-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* ============================================================
   INSIGHTS SECTION
   ============================================================ */
.insights { background: var(--white); }

.insights-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

.insight-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: box-shadow 0.25s, transform 0.25s;
}
.insight-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

.insight-card-top {
  background: var(--blue-light);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 110px;
}
.insight-card-icon {
  width: 48px; height: 48px;
  background: var(--blue);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
}
.insight-card-icon svg { width: 22px; height: 22px; color: var(--white); }

.insight-card-body { padding: 1.5rem; }
.insight-card-body .tag { margin-bottom: 0.875rem; }
.insight-card-body h4 { margin-bottom: 0.625rem; font-size: 1rem; }
.insight-card-body p {
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--gray-600);
  margin-bottom: 1.25rem;
}
.insight-link {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.625rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  display: flex;
  align-items: center;
  gap: 0.3rem;
  transition: gap 0.15s;
}
.insight-card:hover .insight-link { gap: 0.55rem; }

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: var(--cream);
  padding: clamp(4rem,7vw,6.5rem) 0;
}
.cta-box {
  background: var(--blue);
  border-radius: var(--radius-2xl);
  padding: clamp(3rem,5vw,5rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-box::before {
  content: '';
  position: absolute; inset: 0;
  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;
}
.cta-box > * { position: relative; z-index: 1; }
.cta-box h2 {
  color: var(--white);
  font-size: clamp(1.875rem,4vw,2.75rem);
  margin-bottom: 1rem;
}
.cta-box p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.68);
  max-width: 600px;
  margin: 0 auto 2.5rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--gray-900);
  padding: 4rem 0 2rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand {}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.footer-logo-mark {
  width: 32px; height: 32px;
  background: var(--blue);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
}
.footer-logo-mark svg { width: 16px; height: 16px; color: var(--white); }
.footer-logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--white);
}
.footer-tagline {
  font-size: 0.825rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.4);
  max-width: 280px;
  margin-bottom: 1.5rem;
}
.footer-col-title {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 1.25rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.625rem; }
.footer-link {
  font-size: 0.825rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.15s;
}
.footer-link:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-copy {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.28);
}
.footer-legal {
  display: flex;
  gap: 1.5rem;
}
.footer-legal a {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.28);
  transition: color 0.15s;
}
.footer-legal a:hover { color: rgba(255,255,255,0.6); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero:not(.hero-contact) .hero-panel { display: none; }
  .hero { min-height: auto; padding: 8rem 0 5rem; }
  .problem-grid { grid-template-columns: 1fr; }
  .product-intro { grid-template-columns: 1fr; }
  .device-wrap { display: none; }
  .app-grid { grid-template-columns: repeat(2, 1fr); }
  .roi-inner { grid-template-columns: 1fr; }
  .tech-inner { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .app-grid { grid-template-columns: 1fr; }
  .audience-grid { grid-template-columns: 1fr; }
  .insights-grid { grid-template-columns: 1fr; }
  .strip-inner { flex-direction: column; align-items: flex-start; gap: 0.875rem; }
  .strip-items { flex-wrap: wrap; gap: 0.75rem; }
  .strip-item { padding: 0; border: none; }
  .strip-label { border: none; padding: 0; margin: 0; }
  .section-header { text-align: left; }
  .accent-bar-center { margin-left: 0; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .hero-sub { max-width: 100%; }
}


/* ============================================================
   INNER-PAGE EXTENSIONS
   Every rule below is derived directly from the homepage design
   system above. No new design language is introduced.
   ============================================================ */

/* ----------------------------------------------------------
   PAGE HERO
   Same visual as .hero: --blue bg, grid overlay ::before,
   glow blob ::after, eyebrow-yellow, white h1/lead.
   Shorter than homepage hero (no 100vh).
   ---------------------------------------------------------- */
.page-hero {
  background: var(--blue);
  padding: clamp(7rem, 10vw, 9rem) 0 clamp(3.5rem, 5vw, 5rem);
  position: relative;
  overflow: hidden;
}
.page-hero::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: 60px 60px;
  pointer-events: none;
}
.page-hero::after {
  content: '';
  position: absolute;
  top: -30%; right: -5%;
  width: 45%; height: 120%;
  background: radial-gradient(ellipse at center, rgba(240,169,65,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 780px;
}
.page-hero .eyebrow { color: var(--yellow); margin-bottom: 0.75rem; }
.page-hero h1 {
  color: var(--white);
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  margin-bottom: 1.25rem;
}
.page-hero .lead { color: rgba(255,255,255,0.7); max-width: 620px; }

/* Breadcrumb — same type scale as .strip-label */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.6875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.04em;
  margin-bottom: 1.5rem;
}
.breadcrumb a          { color: rgba(255,255,255,0.55); transition: color 0.15s; }
.breadcrumb a:hover    { color: var(--white); }
.breadcrumb-sep        { color: rgba(255,255,255,0.25); }

/* ----------------------------------------------------------
   SECTION BACKGROUND HELPERS
   Mirrors homepage: .problem = gray-50, .applications = cream,
   etc. Inner pages need these via class, not inline style.
   ---------------------------------------------------------- */
.bg-white   { background: var(--white); }
.bg-gray-50 { background: var(--gray-50); }
.bg-cream   { background: var(--cream); }
.bg-blue    { background: var(--blue); }
.bg-dark    { background: var(--gray-900); }

/* ----------------------------------------------------------
   SPLIT SECTION
   Mirrors .product-intro and .tech-inner grid pattern exactly:
   two columns, large gap, align center.
   ---------------------------------------------------------- */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}
.split-section.reverse > *:first-child { order: 2; }
.split-section.reverse > *:last-child  { order: 1; }
.split-text h2               { margin-bottom: 1.25rem; }
.split-text p                { font-size: 1.025rem; line-height: 1.8; color: var(--gray-600); margin-bottom: 1.125rem; }
.split-text p:last-of-type   { margin-bottom: 1.5rem; }

/* ----------------------------------------------------------
   DATA PANEL (inside .tech-visual surface)
   Mirrors .device-reading cells exactly.
   ---------------------------------------------------------- */
.panel-label {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.panel-label-dot {
  width: 6px; height: 6px;
  background: var(--yellow);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
.data-cell {
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  padding: 0.75rem;
  position: relative;
}
.data-cell-label {
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 0.25rem;
}
.data-cell-val {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
  line-height: 1;
}
.data-cell-trend {
  display: inline-flex;
  align-items: center;
  font-size: 0.6rem;
  font-weight: 600;
  color: #4ade80;
  background: rgba(74,222,128,0.12);
  padding: 2px 5px;
  border-radius: 3px;
  margin-top: 0.25rem;
}
.data-cell-trend.warn { color: var(--yellow); background: rgba(240,169,65,0.15); }

/* .data-grid — used inside tech-visual panels */
.data-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.625rem;
}
.data-grid-note {
  font-size: 0.575rem;
  color: rgba(255,255,255,0.25);
  text-align: center;
  margin-top: 1rem;
}

/* ----------------------------------------------------------
   SPEC TABLE
   On white bg; header mirrors .roi-table th scale/tracking.
   ---------------------------------------------------------- */
.spec-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}
.spec-table th {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.625rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-500);
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 2px solid var(--gray-200);
}
.spec-table td {
  padding: 0.875rem 1rem;
  color: var(--gray-700);
  border-bottom: 1px solid var(--gray-100);
  line-height: 1.5;
}
.spec-table tr:last-child td { border-bottom: none; }
.td-label { font-weight: 600; color: var(--gray-800); }
.td-val   { color: var(--blue); font-weight: 600; }

/* Card with table inside — no padding, overflow hidden */
.card-table { padding: 0; overflow: hidden; }
.card-table-header {
  padding: 1.25rem 1.75rem;
  border-bottom: 1px solid var(--gray-200);
}
.card-table-header .eyebrow { margin-bottom: 0; }
.card-table-footer {
  padding: 0.875rem 1.75rem;
  background: var(--gray-50);
  border-top: 1px solid var(--gray-200);
  font-size: 0.75rem;
  color: var(--gray-500);
}

/* ----------------------------------------------------------
   ACCORDION
   Opens like .contrast-col; same border/bg cadence.
   ---------------------------------------------------------- */
.accordion {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.accordion-item { border-bottom: 1px solid var(--gray-200); }
.accordion-item:last-child { border-bottom: none; }

.accordion-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding: 1.25rem 1.75rem;
  background: var(--white);
  cursor: pointer;
  text-align: left;
  transition: background 0.15s;
}
.accordion-trigger:hover { background: var(--gray-50); }

.accordion-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.975rem;
  color: var(--gray-900);
}
.accordion-icon {
  width: 20px; height: 20px;
  border: 1.5px solid var(--gray-300);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform 0.2s, border-color 0.2s;
}
.accordion-icon svg      { width: 10px; height: 10px; color: var(--gray-500); transition: color 0.2s; }
.accordion-item.open .accordion-icon { transform: rotate(45deg); border-color: var(--blue); }
.accordion-item.open .accordion-icon svg { color: var(--blue); }

.accordion-body { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.accordion-item.open .accordion-body { max-height: 800px; }
.accordion-body-inner {
  padding: 0 1.75rem 1.5rem;
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--gray-600);
}
.accordion-body-inner p + p { margin-top: 0.75rem; }

/* Tag inside accordion header — pull right */
.accordion-trigger .tag {
  margin-left: auto;
  margin-right: 0.75rem;
  flex-shrink: 0;
}

/* ----------------------------------------------------------
   INLINE CTA BAR
   Cream bg mirrors outer .cta-section wrapper tone.
   ---------------------------------------------------------- */
.cta-bar {
  background: var(--cream);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-xl);
  padding: 2rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.cta-bar-text h4 { margin-bottom: 0.35rem; }
.cta-bar-text p  { font-size: 0.9rem; color: var(--gray-600); margin: 0; }
.cta-bar-actions { display: flex; gap: 0.75rem; flex-shrink: 0; flex-wrap: wrap; }

/* ----------------------------------------------------------
   STAT STRIP (dark version — used on .technology / .strip bg)
   Mirrors .strip item cadence.
   ---------------------------------------------------------- */
.stat-strip-dark {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.stat-strip-item {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-xl);
  padding: 2rem 1.5rem;
  text-align: center;
}
.stat-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  color: var(--yellow);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.5); line-height: 1.4; }

/* ----------------------------------------------------------
   ROADMAP CARDS (platform page — dark bg, tiered opacity)
   Exact same surface as homepage hero-panel items.
   ---------------------------------------------------------- */
.roadmap-card {
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}
.roadmap-card-now {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
}
.roadmap-card-launch {
  background: rgba(240,169,65,0.12);
  border: 1px solid rgba(240,169,65,0.25);
}
.roadmap-card-future {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}
.roadmap-card h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.875rem;
  margin-bottom: 0.375rem;
}
.roadmap-card-now    h4 { color: var(--white); }
.roadmap-card-launch h4 { color: var(--yellow); }
.roadmap-card-future h4 { color: rgba(255,255,255,0.45); }
.roadmap-card p {
  font-size: 0.85rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.55);
  margin: 0;
}
.roadmap-card-future p { color: rgba(255,255,255,0.35); }
.roadmap-list { display: flex; flex-direction: column; gap: 1rem; }

/* ----------------------------------------------------------
   PROGRESS BAR (about page status panel — inside .tech-visual)
   ---------------------------------------------------------- */
.progress-list { display: flex; flex-direction: column; gap: 0; }
.progress-item {
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.progress-item:last-child { border-bottom: none; }
.progress-item-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}
.progress-item-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--white);
}
.progress-item-pct {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.4);
}
.progress-track {
  height: 5px;
  background: rgba(255,255,255,0.1);
  border-radius: 100px;
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  background: var(--blue-mid);
  border-radius: 100px;
}
.progress-fill-yellow { background: var(--yellow); }
.progress-item-note {
  font-size: 0.725rem;
  color: rgba(255,255,255,0.4);
  margin-top: 0.4rem;
}
.progress-footer {
  padding: 1.25rem 1.5rem;
  background: rgba(240,169,65,0.08);
  border-top: 1px solid rgba(240,169,65,0.15);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--yellow);
}

/* ============================================================
   CONTACT PAGE — DEFINITIVE
   Selector specificity strategy:
   - Left-side text: .hero.hero-contact .* = (0,2,0) beats body cascade
   - Form fields:    .contact-form .contact-input = (0,2,0)
   - !important on color/background/border ONLY — the 3 properties
     where browser UA uses :not() chains at (0,3,1) specificity.
   ============================================================ */

/* ── Hero height ─────────────────────────────────────────── */
.hero.hero-contact {
  min-height: 0;
  padding: 8rem 0 5rem;
  align-items: flex-start;
}

/* ── Left column: light text on dark blue ────────────────── */
.hero.hero-contact .contact-trust {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 2rem;
}
.hero.hero-contact .contact-trust-item {
  display: flex;
  align-items: baseline;
  gap: 0.625rem;
  font-size: 0.875rem;
  line-height: 1.55;
  color: rgba(255,255,255,0.7);
}
.hero.hero-contact .contact-trust-dot {
  width: 5px;
  height: 5px;
  min-width: 5px;
  background: var(--yellow);
  border-radius: 50%;
  margin-top: 0.45em;
  flex-shrink: 0;
}
.hero.hero-contact .contact-commitment {
  margin-top: 1.5rem;
  font-size: 0.8rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.4);
  max-width: 420px;
}

/* ── Form layout ─────────────────────────────────────────── */
.contact-form {
  display: flex;
  flex-direction: column;
}
.contact-form .contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.contact-form .contact-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 0.75rem;
}
.contact-form .contact-field:last-of-type {
  margin-bottom: 0;
}

/* ── Labels ──────────────────────────────────────────────── */
.contact-form .contact-label {
  display: block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  /* !important beats body color cascade on <label> */
  color: rgba(255,255,255,0.55) !important;
  line-height: 1;
  margin-bottom: 0.2rem;
}
.contact-form .contact-label-optional {
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.6rem;
  color: rgba(255,255,255,0.3) !important;
}

/* ── Fields: .contact-input on every input/select/textarea ── */
/* (0,2,0) specificity — higher than UA :not() chains */
.contact-form .contact-input {
  display: block;
  width: 100%;
  box-sizing: border-box;
  padding: 0.75rem 0.875rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  line-height: 1.4;
  border-radius: var(--radius-sm);
  transition: border-color 0.15s, background 0.15s;
  appearance: none;
  -webkit-appearance: none;
  color-scheme: dark;
  /* !important on the 3 properties browsers override */
  color: #ffffff !important;
  background: rgba(255,255,255,0.1) !important;
  border: 1px solid rgba(255,255,255,0.2) !important;
}
.contact-form .contact-input:focus {
  outline: none;
  border-color: rgba(255,255,255,0.5) !important;
  background: rgba(255,255,255,0.15) !important;
}
.contact-form .contact-input::placeholder {
  color: rgba(255,255,255,0.35) !important;
  opacity: 1;
}

/* Select options — dropdown list items */
.contact-form .contact-input option {
  background: #1e2229;
  color: #ffffff;
}

/* Select: custom chevron wrapper */
.contact-form .contact-select-wrap {
  position: relative;
  display: block;
}
.contact-form .contact-select-wrap::after {
  content: '';
  position: absolute;
  right: 0.875rem;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid rgba(255,255,255,0.45);
  pointer-events: none;
}
.contact-form .contact-select-wrap .contact-input {
  padding-right: 2.25rem;
  cursor: pointer;
  /* Ensure select fills wrapper */
  width: 100%;
}

/* Textarea */
.contact-form .contact-input.contact-textarea {
  resize: vertical;
  min-height: 90px;
  line-height: 1.55;
}

/* ── Submit button ────────────────────────────────────────── */
.contact-form .contact-submit {
  width: 100%;
  justify-content: center;
  margin-top: 1rem;
  display: flex;
}

/* ── Footer note ─────────────────────────────────────────── */
.contact-form .contact-footer-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.875rem;
  padding-top: 0.875rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.675rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.4) !important;
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 768px) {
  .contact-form .contact-form-row {
    grid-template-columns: 1fr;
  }
}
/* =========================================
   CONTACT PAGE / MAILCHIMP FORM
   ========================================= */

/* ============================================================
   CONTACT PAGE â€” append this entire block to the end of
   styles.css. Do not place it inside any existing rule.
   ============================================================ */

/* â”€â”€ Hero height modifier â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.hero.hero-contact {
  min-height: 0;
  padding: 8rem 0 5rem;
  align-items: flex-start;
}

/* â”€â”€ Left column: trust list â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.hero.hero-contact .contact-trust {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 2rem;
}
.hero.hero-contact .contact-trust-item {
  display: flex;
  align-items: baseline;
  gap: 0.625rem;
  font-size: 0.875rem;
  line-height: 1.55;
  color: rgba(255,255,255,0.7);
}
/* Force child <span> â€” overrides body { color: var(--gray-800) } */
.hero.hero-contact .contact-trust-item span {
  color: rgba(255,255,255,0.7);
}
.hero.hero-contact .contact-trust-dot {
  width: 5px;
  height: 5px;
  min-width: 5px;
  background: var(--yellow);
  border-radius: 50%;
  margin-top: 0.45em;
  flex-shrink: 0;
}
.hero.hero-contact .contact-commitment {
  margin-top: 1.5rem;
  font-size: 0.8rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.4);
  max-width: 420px;
}

/* â”€â”€ Mailchimp form â€” scoped to .mc-form â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
/* Replaces Mailchimp CDN stylesheet (classic-061523.css).    */
/* All color values use existing site design tokens.          */

.mc-form .mc-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 0.75rem;
}

/* Labels â€” beats body color cascade via !important + webkit  */
.mc-form label {
  display: block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55) !important;
  -webkit-text-fill-color: rgba(255,255,255,0.55) !important;
  line-height: 1;
}
.mc-form .mc-required {
  color: var(--yellow);
  -webkit-text-fill-color: var(--yellow);
  font-weight: 700;
}

/* All field types */
.mc-form input[type="text"],
.mc-form input[type="email"],
.mc-form select {
  display: block;
  width: 100%;
  box-sizing: border-box;
  padding: 0.75rem 0.875rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  line-height: 1.4;
  color: #ffffff !important;
  background: rgba(255,255,255,0.1) !important;
  border: 1px solid rgba(255,255,255,0.2) !important;
  border-radius: var(--radius-sm);
  transition: border-color 0.15s, background 0.15s;
  appearance: none;
  -webkit-appearance: none;
  color-scheme: dark;
}
.mc-form input[type="text"]:focus,
.mc-form input[type="email"]:focus,
.mc-form select:focus {
  outline: none;
  border-color: rgba(255,255,255,0.45) !important;
  background: rgba(255,255,255,0.15) !important;
}
.mc-form input::placeholder {
  color: rgba(255,255,255,0.35) !important;
  opacity: 1;
}
.mc-form select option {
  background: #1e2229;
  color: #ffffff;
}

/* Submit button â€” inherits .btn .btn-accent .btn-lg from site */
.mc-form .mc-submit {
  width: 100%;
  justify-content: center;
  margin-top: 1rem;
  display: flex;
}

/* .hero-panel-footer inside the form */
.mc-form .hero-panel-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.875rem;
  padding-top: 0.875rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.675rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.4) !important;
}

/* Mailchimp error/success response messages */
#mce-error-response,
#mce-success-response {
  padding: 0.625rem 0.875rem;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  margin-bottom: 0.75rem;
}
#mce-error-response {
  background: rgba(220,38,38,0.15);
  border: 1px solid rgba(220,38,38,0.35);
  color: #fca5a5;
}
#mce-success-response {
  background: rgba(74,222,128,0.12);
  border: 1px solid rgba(74,222,128,0.3);
  color: #86efac;
}

/* Nav + footer logo image sizing */
.nav-logo-img {
  height: 36px;
  width: auto;
  display: block;
}
.footer-logo-img {
  height: 28px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero.hero-contact .hero-inner {
    grid-template-columns: 1fr;
  }
  .hero.hero-contact .hero-panel {
    width: 100%;
  }
}
/* =========================================
   TECHNOLOGY PAGE
========================================= */
/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  --blue:        #1449AE;
  --blue-dark:   #0D3580;
  --blue-mid:    #1E55C4;
  --blue-light:  #E8EFFE;
  --blue-dim:    rgba(20,73,174,0.08);
  --yellow:      #F0A941;
  --yellow-dark: #C8871A;
  --yellow-light:#FDF3E2;
  --cream:       #F9F1E6;
  --cream-dark:  #EFE3CC;
  --white:       #FFFFFF;
  --gray-900:    #0F1218;
  --gray-800:    #1E2229;
  --gray-700:    #353C47;
  --gray-600:    #4D5566;
  --gray-500:    #6B7589;
  --gray-400:    #9AA3B2;
  --gray-300:    #C8CDD6;
  --gray-200:    #E4E7EC;
  --gray-100:    #F4F5F7;
  --gray-50:     #FAFBFC;

  --font-display: 'Rubik', sans-serif;
  --font-body:    'Figtree', sans-serif;

  --radius-sm:  6px;
  --radius-md:  10px;
  --radius-lg:  16px;
  --radius-xl:  24px;
  --radius-2xl: 36px;
  --radius-pill:9999px;

  --shadow-sm: 0 1px 4px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08), 0 1px 4px rgba(0,0,0,0.04);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.10);
  --shadow-blue: 0 8px 32px rgba(20,73,174,0.22);

  --gutter: clamp(1.25rem, 5vw, 2.5rem);
  --max-w:  1200px;

  --ease-spring: cubic-bezier(0.34,1.56,0.64,1);
}

/* ============================================================
   RESET
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--gray-800);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ============================================================
   UTILITIES
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* eyebrow */
.eyebrow {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.6875rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--blue);
  display: block;
  margin-bottom: 0.75rem;
}
.eyebrow-yellow { color: var(--yellow); }
.eyebrow-muted  { color: rgba(255,255,255,0.55); }

/* accent bar */
.accent-bar {
  display: block;
  width: 40px; height: 4px;
  background: var(--yellow);
  border-radius: var(--radius-pill);
  margin: 0.75rem 0 1.25rem;
}
.accent-bar-center { margin: 0.75rem auto 1.25rem; }

/* section rhythm */
.section { padding: clamp(5rem,9vw,8rem) 0; }
.section-sm { padding: clamp(3.5rem,6vw,5rem) 0; }

.section-header {
  max-width: 660px;
  margin: 0 auto clamp(3rem,5vw,4.5rem);
  text-align: center;
}

/* headings */
h1, .h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.5rem,6vw,4rem);
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--gray-900);
}
h2, .h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.875rem,4vw,2.75rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--gray-900);
}
h3, .h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.25rem,2.5vw,1.625rem);
  line-height: 1.25;
  color: var(--gray-900);
}
h4, .h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.3;
  color: var(--gray-900);
}

.text-white, .text-white h1, .text-white h2,
.text-white h3, .text-white h4 { color: var(--white); }

.lead {
  font-size: clamp(1.05rem,2vw,1.2rem);
  line-height: 1.75;
  color: var(--gray-600);
}

/* tags */
.tag {
  display: inline-flex;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.6rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}
.tag-blue   { background: var(--blue-light); color: var(--blue); }
.tag-yellow { background: var(--yellow-light); color: var(--yellow-dark); }
.tag-cream  { background: var(--cream); color: var(--gray-600); }

/* buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.75rem 1.625rem;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.15s, box-shadow 0.2s;
  white-space: nowrap;
  cursor: pointer;
  line-height: 1;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: none; }

.btn-primary {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  box-shadow: var(--shadow-blue);
}
.btn-secondary {
  background: transparent;
  border-color: var(--blue);
  color: var(--blue);
}
.btn-secondary:hover { background: var(--blue-light); }

.btn-ghost {
  background: transparent;
  border-color: rgba(255,255,255,0.35);
  color: var(--white);
}
.btn-ghost:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.65); }

.btn-accent {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--gray-900);
}
.btn-accent:hover { background: var(--yellow-dark); border-color: var(--yellow-dark); }

.btn-lg {
  font-size: 0.75rem;
  padding: 1rem 2rem;
  border-radius: var(--radius-lg);
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

/* arrow suffix */
.arr::after {
  content: '→';
  font-size: 1em;
  transition: transform 0.15s;
}
.btn:hover .arr::after,
.arr:hover::after { transform: translateX(3px); }

/* cards */
.card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 2rem;
  transition: box-shadow 0.25s, transform 0.25s;
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

/* icon mark */
.icon-mark {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-md);
  background: var(--blue-light);
  margin-bottom: 1.25rem;
  flex-shrink: 0;
}
.icon-mark svg { width: 22px; height: 22px; color: var(--blue); }
.icon-mark-yellow { background: var(--yellow-light); }
.icon-mark-yellow svg { color: var(--yellow-dark); }

/* grid helpers */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }

/* fade-in animation */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: none; }
.fade-up:nth-child(2) { transition-delay: 0.08s; }
.fade-up:nth-child(3) { transition-delay: 0.16s; }
.fade-up:nth-child(4) { transition-delay: 0.24s; }
.fade-up:nth-child(5) { transition-delay: 0.32s; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
  transition: box-shadow 0.25s;
}
.nav.scrolled { box-shadow: var(--shadow-sm); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 2rem;
}

/* Logo mark text (replace with <img> for real logo) */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

/* Full logo lockup — SVG contains both mark and wordmark */
.nav-logo-img {
  height: 36px;
  width: auto;
  display: block;
}

.nav-logo-mark { display: none; }
.nav-logo-mark svg { width: 18px; height: 18px; color: var(--white); }
.nav-logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--gray-900);
  letter-spacing: -0.01em;
  display: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}
.nav-link {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.8125rem;
  color: var(--gray-600);
  letter-spacing: 0.02em;
  padding: 0.25rem 0;
  border-bottom: 2px solid transparent;
  transition: color 0.15s, border-color 0.15s;
}
.nav-link:hover, .nav-link.active {
  color: var(--blue);
  border-bottom-color: var(--blue);
}

.nav-actions { display: flex; align-items: center; gap: 0.75rem; flex-shrink: 0; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  background: var(--blue);
  display: flex;
  align-items: center;
  padding: 7rem 0 5rem;
  position: relative;
  overflow: hidden;
}

/* Decorative grid overlay */
.hero::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: 60px 60px;
  pointer-events: none;
}

/* Decorative glow blob */
.hero::after {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 55%;
  height: 90%;
  background: radial-gradient(ellipse at center, rgba(240,169,65,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem,5vw,5rem);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-pill);
  padding: 0.35rem 0.875rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 1.5rem;
}
.hero-eyebrow-dot {
  width: 6px; height: 6px;
  background: var(--yellow);
  border-radius: 50%;
}

.hero-headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.75rem,5.5vw,4.5rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.hero-headline em {
  font-style: normal;
  color: var(--yellow);
}

.hero-sub {
  font-size: clamp(1rem,1.8vw,1.175rem);
  line-height: 1.75;
  color: rgba(255,255,255,0.72);
  max-width: 520px;
  margin-bottom: 2.5rem;
}

/* Hero data visualization panel */
.hero-panel {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  position: relative;
}

.hero-panel-label {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.625rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.hero-panel-label-dot {
  width: 6px; height: 6px;
  background: var(--yellow);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

.hero-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0.875rem;
  margin-bottom: 1.25rem;
}

.hero-metric {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius-md);
  padding: 1rem 0.875rem;
}
.hero-metric-name {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 0.35rem;
}
.hero-metric-val {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--white);
  line-height: 1;
}
.hero-metric-unit {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.45);
  margin-top: 0.2rem;
}
.hero-metric-trend {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  font-size: 0.6rem;
  font-weight: 600;
  color: #4ade80;
  background: rgba(74,222,128,0.12);
  padding: 2px 5px;
  border-radius: 3px;
  margin-top: 0.3rem;
}
.hero-metric-trend.warn { color: var(--yellow); background: rgba(240,169,65,0.15); }

/* Inline sparkline SVG bars */
.sparkline {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  height: 28px;
  margin-top: 0.75rem;
}
.sparkline-bar {
  flex: 1;
  background: rgba(255,255,255,0.15);
  border-radius: 2px 2px 0 0;
  transition: background 0.2s;
}
.sparkline-bar.hi { background: rgba(240,169,65,0.6); }
.sparkline-bar.active { background: rgba(255,255,255,0.55); }

.hero-panel-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.675rem;
  color: rgba(255,255,255,0.4);
  font-weight: 500;
  letter-spacing: 0.04em;
}

/* ============================================================
   CREDENTIAL STRIP
   ============================================================ */
.strip {
  background: var(--gray-900);
  padding: 1.375rem 0;
}
.strip-inner {
  display: flex;
  align-items: center;
  gap: 0;
}
.strip-label {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  white-space: nowrap;
  padding-right: 2rem;
  border-right: 1px solid rgba(255,255,255,0.1);
  margin-right: 2rem;
  flex-shrink: 0;
}
.strip-items {
  display: flex;
  align-items: center;
  gap: 0;
  flex: 1;
  overflow: hidden;
}
.strip-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.7);
  padding: 0 2rem;
  border-right: 1px solid rgba(255,255,255,0.08);
  white-space: nowrap;
}
.strip-item:first-child { padding-left: 0; }
.strip-item:last-child { border-right: none; }
.strip-dot {
  width: 6px; height: 6px;
  background: var(--yellow);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ============================================================
   PROBLEM SECTION
   ============================================================ */
.problem { background: var(--gray-50); }

.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem,6vw,6rem);
  align-items: center;
}

.problem-text h2 { margin-bottom: 1.25rem; }
.problem-text p {
  font-size: 1.025rem;
  line-height: 1.8;
  color: var(--gray-600);
  margin-bottom: 1.125rem;
}
.problem-text p:last-child { margin-bottom: 0; }

.problem-contrast {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.contrast-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.contrast-col {
  padding: 1.75rem;
}
.contrast-col:first-child {
  border-right: 1px solid var(--gray-200);
  background: var(--gray-50);
}
.contrast-col-label {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.contrast-col-label-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
}
.dot-gray { background: var(--gray-300); }
.dot-blue { background: var(--blue); }

.contrast-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 0.75rem;
  font-size: 0.825rem;
  color: var(--gray-600);
  line-height: 1.5;
}
.contrast-item:last-child { margin-bottom: 0; }
.contrast-item-icon {
  width: 16px; height: 16px;
  flex-shrink: 0;
  margin-top: 1px;
}
.contrast-item-icon.x { color: var(--gray-400); }
.contrast-item-icon.check { color: var(--blue); }

.contrast-divider {
  height: 1px;
  background: var(--gray-200);
}

/* ============================================================
   PRODUCT INTRO
   ============================================================ */
.product { background: var(--white); }

.product-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem,6vw,6rem);
  align-items: center;
  margin-bottom: clamp(3.5rem,6vw,5rem);
}

.product-intro-text h2 { margin-bottom: 1.25rem; }
.product-intro-text p {
  font-size: 1.025rem;
  line-height: 1.8;
  color: var(--gray-600);
  margin-bottom: 1.125rem;
}

/* Device mockup */
.device-wrap {
  background: var(--blue);
  border-radius: var(--radius-xl);
  padding: 2rem;
  aspect-ratio: 4/3;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}
.device-wrap::before {
  content: '';
  position: absolute; inset: 0;
  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: 40px 40px;
}
.device-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative; z-index: 1;
}
.device-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.device-status {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #4ade80;
  text-transform: uppercase;
}
.device-status-dot {
  width: 6px; height: 6px;
  background: #4ade80;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.device-spectrum {
  position: relative; z-index: 1;
  margin: 0.5rem 0;
}
.spectrum-svg { width: 100%; height: 70px; }

.device-readings {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  position: relative; z-index: 1;
}
.device-reading {
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  padding: 0.625rem 0.75rem;
}
.device-reading-label {
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 0.25rem;
}
.device-reading-val {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
  line-height: 1;
}
.device-reading-unit {
  font-size: 0.575rem;
  color: rgba(255,255,255,0.4);
  margin-top: 0.15rem;
}

/* 3-col feature cards below product intro */
.product-features { }
.feature-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-top: 3px solid transparent;
  border-radius: 0 0 var(--radius-xl) var(--radius-xl);
  padding: 1.75rem;
  transition: border-top-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.feature-card:hover {
  border-top-color: var(--blue);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.feature-card h4 { margin: 1rem 0 0.6rem; }
.feature-card p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--gray-600);
}

/* ============================================================
   APPLICATIONS
   ============================================================ */
.applications { background: var(--cream); }

.app-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }

.app-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
}
.app-card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.app-card-tag { margin-bottom: 1rem; }
.app-card h4 { margin-bottom: 0.625rem; }
.app-card p {
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--gray-600);
  flex: 1;
  margin-bottom: 1.25rem;
}
.app-card-stat {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--blue);
  line-height: 1.2;
  margin-bottom: 0.25rem;
}
.app-card-stat-label {
  font-size: 0.7rem;
  color: var(--gray-500);
  margin-bottom: 1.25rem;
}
.app-card-link {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  display: flex;
  align-items: center;
  gap: 0.3rem;
  transition: gap 0.15s;
}
.app-card:hover .app-card-link { gap: 0.55rem; }

/* ============================================================
   ROI SECTION
   ============================================================ */
.roi { background: var(--blue); }

.roi-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem,6vw,6rem);
  align-items: start;
}

.roi-text h2 { color: var(--white); margin-bottom: 1.25rem; }
.roi-text h2 em { font-style: normal; color: var(--yellow); }
.roi-text p {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.68);
  margin-bottom: 2rem;
}

.roi-table-wrap {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.roi-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.8375rem;
}
.roi-table th {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.575rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  padding: 0.875rem 1.25rem;
  text-align: left;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.roi-table th:not(:first-child) { text-align: right; }
.roi-table td {
  padding: 0.75rem 1.25rem;
  color: rgba(255,255,255,0.78);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 0.825rem;
}
.roi-table td:not(:first-child) { text-align: right; }
.roi-table tbody tr:last-child td { border-bottom: none; }
.roi-table .row-total {
  background: rgba(255,255,255,0.07);
  border-top: 1px solid rgba(255,255,255,0.12) !important;
}
.roi-table .row-total td {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--yellow);
  border-bottom: none;
  padding: 1rem 1.25rem;
}
.roi-table .row-cost td { color: rgba(255,255,255,0.45); font-size: 0.775rem; }
.roi-table .row-sub td {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--white);
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* ============================================================
   AUDIENCE SECTION
   ============================================================ */
.audience { background: var(--white); }

.audience-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.audience-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 2rem;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}
.audience-card:hover {
  border-color: var(--blue);
  background: var(--blue-light);
  box-shadow: var(--shadow-sm);
}
.audience-card-role {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.75rem;
}
.audience-card h4 { margin-bottom: 0.75rem; }
.audience-card p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--gray-600);
  margin-bottom: 1rem;
}
.audience-card-benefit {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.775rem;
  font-weight: 600;
  color: var(--blue);
  padding: 0.5rem 0.875rem;
  background: rgba(20,73,174,0.07);
  border-radius: var(--radius-pill);
  width: fit-content;
  margin-bottom: 1rem;
}
.audience-card-link {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.625rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  display: flex;
  align-items: center;
  gap: 0.3rem;
  transition: gap 0.15s;
}
.audience-card:hover .audience-card-link { gap: 0.55rem; }

/* ============================================================
   TECHNOLOGY SNIPPET
   ============================================================ */
.technology { background: var(--gray-900); }

.tech-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem,6vw,6rem);
  align-items: center;
}

.tech-text .eyebrow { color: var(--yellow); }
.tech-text h2 { color: var(--white); margin-bottom: 1.25rem; }
.tech-text p {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.62);
  margin-bottom: 2rem;
}

.tech-visual {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius-xl);
  padding: 2rem;
}
.tech-vis-label {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 1.5rem;
}
.spectrum-full-svg { width: 100%; height: 120px; }
.tech-vis-legend {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}
.legend-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.65rem;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
}
.legend-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* ============================================================
   INSIGHTS SECTION
   ============================================================ */
.insights { background: var(--white); }

.insights-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

.insight-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: box-shadow 0.25s, transform 0.25s;
}
.insight-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

.insight-card-top {
  background: var(--blue-light);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 110px;
}
.insight-card-icon {
  width: 48px; height: 48px;
  background: var(--blue);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
}
.insight-card-icon svg { width: 22px; height: 22px; color: var(--white); }

.insight-card-body { padding: 1.5rem; }
.insight-card-body .tag { margin-bottom: 0.875rem; }
.insight-card-body h4 { margin-bottom: 0.625rem; font-size: 1rem; }
.insight-card-body p {
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--gray-600);
  margin-bottom: 1.25rem;
}
.insight-link {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.625rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  display: flex;
  align-items: center;
  gap: 0.3rem;
  transition: gap 0.15s;
}
.insight-card:hover .insight-link { gap: 0.55rem; }

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: var(--cream);
  padding: clamp(4rem,7vw,6.5rem) 0;
}
.cta-box {
  background: var(--blue);
  border-radius: var(--radius-2xl);
  padding: clamp(3rem,5vw,5rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-box::before {
  content: '';
  position: absolute; inset: 0;
  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;
}
.cta-box > * { position: relative; z-index: 1; }
.cta-box h2 {
  color: var(--white);
  font-size: clamp(1.875rem,4vw,2.75rem);
  margin-bottom: 1rem;
}
.cta-box p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.68);
  max-width: 600px;
  margin: 0 auto 2.5rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--gray-900);
  padding: 4rem 0 2rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand {}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.footer-logo-mark {
  width: 32px; height: 32px;
  background: var(--blue);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
}
.footer-logo-mark svg { width: 16px; height: 16px; color: var(--white); }
.footer-logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--white);
}
.footer-tagline {
  font-size: 0.825rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.4);
  max-width: 280px;
  margin-bottom: 1.5rem;
}
.footer-col-title {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 1.25rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.625rem; }
.footer-link {
  font-size: 0.825rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.15s;
}
.footer-link:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-copy {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.28);
}
.footer-legal {
  display: flex;
  gap: 1.5rem;
}
.footer-legal a {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.28);
  transition: color 0.15s;
}
.footer-legal a:hover { color: rgba(255,255,255,0.6); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero:not(.hero-contact) .hero-panel { display: none; }
  .hero { min-height: auto; padding: 8rem 0 5rem; }
  .problem-grid { grid-template-columns: 1fr; }
  .product-intro { grid-template-columns: 1fr; }
  .device-wrap { display: none; }
  .app-grid { grid-template-columns: repeat(2, 1fr); }
  .roi-inner { grid-template-columns: 1fr; }
  .tech-inner { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .app-grid { grid-template-columns: 1fr; }
  .audience-grid { grid-template-columns: 1fr; }
  .insights-grid { grid-template-columns: 1fr; }
  .strip-inner { flex-direction: column; align-items: flex-start; gap: 0.875rem; }
  .strip-items { flex-wrap: wrap; gap: 0.75rem; }
  .strip-item { padding: 0; border: none; }
  .strip-label { border: none; padding: 0; margin: 0; }
  .section-header { text-align: left; }
  .accent-bar-center { margin-left: 0; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .hero-sub { max-width: 100%; }
}


/* ============================================================
   INNER-PAGE EXTENSIONS
   Every rule below is derived directly from the homepage design
   system above. No new design language is introduced.
   ============================================================ */

/* ----------------------------------------------------------
   PAGE HERO
   Same visual as .hero: --blue bg, grid overlay ::before,
   glow blob ::after, eyebrow-yellow, white h1/lead.
   Shorter than homepage hero (no 100vh).
   ---------------------------------------------------------- */
.page-hero {
  background: var(--blue);
  padding: clamp(7rem, 10vw, 9rem) 0 clamp(3.5rem, 5vw, 5rem);
  position: relative;
  overflow: hidden;
}
.page-hero::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: 60px 60px;
  pointer-events: none;
}
.page-hero::after {
  content: '';
  position: absolute;
  top: -30%; right: -5%;
  width: 45%; height: 120%;
  background: radial-gradient(ellipse at center, rgba(240,169,65,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 780px;
}
.page-hero .eyebrow { color: var(--yellow); margin-bottom: 0.75rem; }
.page-hero h1 {
  color: var(--white);
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  margin-bottom: 1.25rem;
}
.page-hero .lead { color: rgba(255,255,255,0.7); max-width: 620px; }

/* Breadcrumb — same type scale as .strip-label */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.6875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.04em;
  margin-bottom: 1.5rem;
}
.breadcrumb a          { color: rgba(255,255,255,0.55); transition: color 0.15s; }
.breadcrumb a:hover    { color: var(--white); }
.breadcrumb-sep        { color: rgba(255,255,255,0.25); }

/* ----------------------------------------------------------
   SECTION BACKGROUND HELPERS
   Mirrors homepage: .problem = gray-50, .applications = cream,
   etc. Inner pages need these via class, not inline style.
   ---------------------------------------------------------- */
.bg-white   { background: var(--white); }
.bg-gray-50 { background: var(--gray-50); }
.bg-cream   { background: var(--cream); }
.bg-blue    { background: var(--blue); }
.bg-dark    { background: var(--gray-900); }

/* ----------------------------------------------------------
   SPLIT SECTION
   Mirrors .product-intro and .tech-inner grid pattern exactly:
   two columns, large gap, align center.
   ---------------------------------------------------------- */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}
.split-section.reverse > *:first-child { order: 2; }
.split-section.reverse > *:last-child  { order: 1; }
.split-text h2               { margin-bottom: 1.25rem; }
.split-text p                { font-size: 1.025rem; line-height: 1.8; color: var(--gray-600); margin-bottom: 1.125rem; }
.split-text p:last-of-type   { margin-bottom: 1.5rem; }

/* ----------------------------------------------------------
   DATA PANEL (inside .tech-visual surface)
   Mirrors .device-reading cells exactly.
   ---------------------------------------------------------- */
.panel-label {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.panel-label-dot {
  width: 6px; height: 6px;
  background: var(--yellow);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
.data-cell {
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  padding: 0.75rem;
  position: relative;
}
.data-cell-label {
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 0.25rem;
}
.data-cell-val {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
  line-height: 1;
}
.data-cell-trend {
  display: inline-flex;
  align-items: center;
  font-size: 0.6rem;
  font-weight: 600;
  color: #4ade80;
  background: rgba(74,222,128,0.12);
  padding: 2px 5px;
  border-radius: 3px;
  margin-top: 0.25rem;
}
.data-cell-trend.warn { color: var(--yellow); background: rgba(240,169,65,0.15); }

/* .data-grid — used inside tech-visual panels */
.data-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.625rem;
}
.data-grid-note {
  font-size: 0.575rem;
  color: rgba(255,255,255,0.25);
  text-align: center;
  margin-top: 1rem;
}

/* ----------------------------------------------------------
   SPEC TABLE
   On white bg; header mirrors .roi-table th scale/tracking.
   ---------------------------------------------------------- */
.spec-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}
.spec-table th {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.625rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-500);
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 2px solid var(--gray-200);
}
.spec-table td {
  padding: 0.875rem 1rem;
  color: var(--gray-700);
  border-bottom: 1px solid var(--gray-100);
  line-height: 1.5;
}
.spec-table tr:last-child td { border-bottom: none; }
.td-label { font-weight: 600; color: var(--gray-800); }
.td-val   { color: var(--blue); font-weight: 600; }

/* Card with table inside — no padding, overflow hidden */
.card-table { padding: 0; overflow: hidden; }
.card-table-header {
  padding: 1.25rem 1.75rem;
  border-bottom: 1px solid var(--gray-200);
}
.card-table-header .eyebrow { margin-bottom: 0; }
.card-table-footer {
  padding: 0.875rem 1.75rem;
  background: var(--gray-50);
  border-top: 1px solid var(--gray-200);
  font-size: 0.75rem;
  color: var(--gray-500);
}

/* ----------------------------------------------------------
   ACCORDION
   Opens like .contrast-col; same border/bg cadence.
   ---------------------------------------------------------- */
.accordion {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.accordion-item { border-bottom: 1px solid var(--gray-200); }
.accordion-item:last-child { border-bottom: none; }

.accordion-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding: 1.25rem 1.75rem;
  background: var(--white);
  cursor: pointer;
  text-align: left;
  transition: background 0.15s;
}
.accordion-trigger:hover { background: var(--gray-50); }

.accordion-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.975rem;
  color: var(--gray-900);
}
.accordion-icon {
  width: 20px; height: 20px;
  border: 1.5px solid var(--gray-300);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform 0.2s, border-color 0.2s;
}
.accordion-icon svg      { width: 10px; height: 10px; color: var(--gray-500); transition: color 0.2s; }
.accordion-item.open .accordion-icon { transform: rotate(45deg); border-color: var(--blue); }
.accordion-item.open .accordion-icon svg { color: var(--blue); }

.accordion-body { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.accordion-item.open .accordion-body { max-height: 800px; }
.accordion-body-inner {
  padding: 0 1.75rem 1.5rem;
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--gray-600);
}
.accordion-body-inner p + p { margin-top: 0.75rem; }

/* Tag inside accordion header — pull right */
.accordion-trigger .tag {
  margin-left: auto;
  margin-right: 0.75rem;
  flex-shrink: 0;
}

/* ----------------------------------------------------------
   INLINE CTA BAR
   Cream bg mirrors outer .cta-section wrapper tone.
   ---------------------------------------------------------- */
.cta-bar {
  background: var(--cream);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-xl);
  padding: 2rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.cta-bar-text h4 { margin-bottom: 0.35rem; }
.cta-bar-text p  { font-size: 0.9rem; color: var(--gray-600); margin: 0; }
.cta-bar-actions { display: flex; gap: 0.75rem; flex-shrink: 0; flex-wrap: wrap; }

/* ----------------------------------------------------------
   STAT STRIP (dark version — used on .technology / .strip bg)
   Mirrors .strip item cadence.
   ---------------------------------------------------------- */
.stat-strip-dark {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.stat-strip-item {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-xl);
  padding: 2rem 1.5rem;
  text-align: center;
}
.stat-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  color: var(--yellow);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.5); line-height: 1.4; }

/* ----------------------------------------------------------
   ROADMAP CARDS (platform page — dark bg, tiered opacity)
   Exact same surface as homepage hero-panel items.
   ---------------------------------------------------------- */
.roadmap-card {
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}
.roadmap-card-now {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
}
.roadmap-card-launch {
  background: rgba(240,169,65,0.12);
  border: 1px solid rgba(240,169,65,0.25);
}
.roadmap-card-future {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}
.roadmap-card h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.875rem;
  margin-bottom: 0.375rem;
}
.roadmap-card-now    h4 { color: var(--white); }
.roadmap-card-launch h4 { color: var(--yellow); }
.roadmap-card-future h4 { color: rgba(255,255,255,0.45); }
.roadmap-card p {
  font-size: 0.85rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.55);
  margin: 0;
}
.roadmap-card-future p { color: rgba(255,255,255,0.35); }
.roadmap-list { display: flex; flex-direction: column; gap: 1rem; }

/* ----------------------------------------------------------
   PROGRESS BAR (about page status panel — inside .tech-visual)
   ---------------------------------------------------------- */
.progress-list { display: flex; flex-direction: column; gap: 0; }
.progress-item {
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.progress-item:last-child { border-bottom: none; }
.progress-item-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}
.progress-item-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--white);
}
.progress-item-pct {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.4);
}
.progress-track {
  height: 5px;
  background: rgba(255,255,255,0.1);
  border-radius: 100px;
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  background: var(--blue-mid);
  border-radius: 100px;
}
.progress-fill-yellow { background: var(--yellow); }
.progress-item-note {
  font-size: 0.725rem;
  color: rgba(255,255,255,0.4);
  margin-top: 0.4rem;
}
.progress-footer {
  padding: 1.25rem 1.5rem;
  background: rgba(240,169,65,0.08);
  border-top: 1px solid rgba(240,169,65,0.15);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--yellow);
}

/* ============================================================
   CONTACT PAGE — DEFINITIVE
   Selector specificity strategy:
   - Left-side text: .hero.hero-contact .* = (0,2,0) beats body cascade
   - Form fields:    .contact-form .contact-input = (0,2,0)
   - !important on color/background/border ONLY — the 3 properties
     where browser UA uses :not() chains at (0,3,1) specificity.
   ============================================================ */

/* ── Hero height ─────────────────────────────────────────── */
.hero.hero-contact {
  min-height: 0;
  padding: 8rem 0 5rem;
  align-items: flex-start;
}

/* ── Left column: light text on dark blue ────────────────── */
.hero.hero-contact .contact-trust {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 2rem;
}
.hero.hero-contact .contact-trust-item {
  display: flex;
  align-items: baseline;
  gap: 0.625rem;
  font-size: 0.875rem;
  line-height: 1.55;
  color: rgba(255,255,255,0.7);
}
.hero.hero-contact .contact-trust-item span {
  color: rgba(255,255,255,0.7);
}
.hero.hero-contact .contact-trust-dot {
  width: 5px;
  height: 5px;
  min-width: 5px;
  background: var(--yellow);
  border-radius: 50%;
  margin-top: 0.45em;
  flex-shrink: 0;
}
.hero.hero-contact .contact-commitment {
  margin-top: 1.5rem;
  font-size: 0.8rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.4);
  max-width: 420px;
}

/* ── Form layout ─────────────────────────────────────────── */
.contact-form {
  display: flex;
  flex-direction: column;
}
.contact-form .contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.contact-form .contact-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 0.75rem;
}
.contact-form .contact-field:last-of-type {
  margin-bottom: 0;
}

/* ── Labels ──────────────────────────────────────────────── */
.contact-form .contact-label {
  display: block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  /* !important beats body color cascade on <label> */
  color: rgba(255,255,255,0.55) !important;
  line-height: 1;
  margin-bottom: 0.2rem;
}
.contact-form .contact-label-optional {
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.6rem;
  color: rgba(255,255,255,0.3) !important;
}

/* ── Fields: .contact-input on every input/select/textarea ── */
/* (0,2,0) specificity — higher than UA :not() chains */
.contact-form .contact-input {
  display: block;
  width: 100%;
  box-sizing: border-box;
  padding: 0.75rem 0.875rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  line-height: 1.4;
  border-radius: var(--radius-sm);
  transition: border-color 0.15s, background 0.15s;
  appearance: none;
  -webkit-appearance: none;
  color-scheme: dark;
  /* !important on the 3 properties browsers override */
  color: #ffffff !important;
  background: rgba(255,255,255,0.1) !important;
  border: 1px solid rgba(255,255,255,0.2) !important;
}
.contact-form .contact-input:focus {
  outline: none;
  border-color: rgba(255,255,255,0.5) !important;
  background: rgba(255,255,255,0.15) !important;
}
.contact-form .contact-input::placeholder {
  color: rgba(255,255,255,0.35) !important;
  opacity: 1;
}

/* Select options — dropdown list items */
.contact-form .contact-input option {
  background: #1e2229;
  color: #ffffff;
}

/* Select: custom chevron wrapper */
.contact-form .contact-select-wrap {
  position: relative;
  display: block;
}
.contact-form .contact-select-wrap::after {
  content: '';
  position: absolute;
  right: 0.875rem;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid rgba(255,255,255,0.45);
  pointer-events: none;
}
.contact-form .contact-select-wrap .contact-input {
  padding-right: 2.25rem;
  cursor: pointer;
  /* Ensure select fills wrapper */
  width: 100%;
}

/* Textarea */
.contact-form .contact-input.contact-textarea {
  resize: vertical;
  min-height: 90px;
  line-height: 1.55;
}

/* ── Submit button ────────────────────────────────────────── */
.contact-form .contact-submit {
  width: 100%;
  justify-content: center;
  margin-top: 1rem;
  display: flex;
}

/* ── Footer note ─────────────────────────────────────────── */
.contact-form .contact-footer-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.875rem;
  padding-top: 0.875rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.675rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.4) !important;
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 768px) {
  .contact-form .contact-form-row {
    grid-template-columns: 1fr;
  }
}

/* Footer logo — real SVG asset, filtered white for dark background */
.footer-logo-img {
  height: 28px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}


/* ============================================================
   MAILCHIMP FORM — scoped to .mc-form inside .hero-panel
   Replaces Mailchimp CDN stylesheet (classic-061523.css).
   All color values use existing site tokens.
   ============================================================ */

/* Field wrapper */
.mc-form .mc-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 0.75rem;
}

/* Labels */
.mc-form label {
  display: block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55) !important;
  -webkit-text-fill-color: rgba(255,255,255,0.55) !important;
  line-height: 1;
}
.mc-form .mc-required {
  color: var(--yellow);
  font-weight: 700;
}

/* All field types */
.mc-form input[type="text"],
.mc-form input[type="email"],
.mc-form select {
  display: block;
  width: 100%;
  box-sizing: border-box;
  padding: 0.75rem 0.875rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  line-height: 1.4;
  color: #ffffff !important;
  background: rgba(255,255,255,0.1) !important;
  border: 1px solid rgba(255,255,255,0.2) !important;
  border-radius: var(--radius-sm);
  transition: border-color 0.15s, background 0.15s;
  appearance: none;
  -webkit-appearance: none;
  color-scheme: dark;
}
.mc-form input[type="text"]:focus,
.mc-form input[type="email"]:focus,
.mc-form select:focus {
  outline: none;
  border-color: rgba(255,255,255,0.45) !important;
  background: rgba(255,255,255,0.15) !important;
}
.mc-form input::placeholder {
  color: rgba(255,255,255,0.35) !important;
  opacity: 1;
}
.mc-form select option {
  background: #1e2229;
  color: #ffffff;
}

/* Submit button — reuses existing .btn .btn-accent .btn-lg */
.mc-form .mc-submit {
  width: 100%;
  justify-content: center;
  margin-top: 1rem;
  display: flex;
}

/* Mailchimp error/success messages */
.mc-form #mce-error-response,
.mc-form #mce-success-response {
  padding: 0.625rem 0.875rem;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  margin-bottom: 0.75rem;
  display: none;
}
.mc-form #mce-error-response {
  background: rgba(220,38,38,0.15);
  border: 1px solid rgba(220,38,38,0.35);
  color: #fca5a5;
}
.mc-form #mce-success-response {
  background: rgba(74,222,128,0.12);
  border: 1px solid rgba(74,222,128,0.3);
  color: #86efac;
}


/* ============================================================
   TECHNOLOGY PAGE — hero layout
   Single-column hero (no data panel on right).
   Scoped so it does not affect index.html hero-inner.
   ============================================================ */
.tech-hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 780px;
  position: relative;
  z-index: 1;
}
.tech-hero-text {
  /* flex child of .tech-hero-inner — no explicit rules needed */
}
/* =========================================
   APPLICATIONS PAGE
========================================= */
/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  --blue:        #1449AE;
  --blue-dark:   #0D3580;
  --blue-mid:    #1E55C4;
  --blue-light:  #E8EFFE;
  --blue-dim:    rgba(20,73,174,0.08);
  --yellow:      #F0A941;
  --yellow-dark: #C8871A;
  --yellow-light:#FDF3E2;
  --cream:       #F9F1E6;
  --cream-dark:  #EFE3CC;
  --white:       #FFFFFF;
  --gray-900:    #0F1218;
  --gray-800:    #1E2229;
  --gray-700:    #353C47;
  --gray-600:    #4D5566;
  --gray-500:    #6B7589;
  --gray-400:    #9AA3B2;
  --gray-300:    #C8CDD6;
  --gray-200:    #E4E7EC;
  --gray-100:    #F4F5F7;
  --gray-50:     #FAFBFC;

  --font-display: 'Rubik', sans-serif;
  --font-body:    'Figtree', sans-serif;

  --radius-sm:  6px;
  --radius-md:  10px;
  --radius-lg:  16px;
  --radius-xl:  24px;
  --radius-2xl: 36px;
  --radius-pill:9999px;

  --shadow-sm: 0 1px 4px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08), 0 1px 4px rgba(0,0,0,0.04);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.10);
  --shadow-blue: 0 8px 32px rgba(20,73,174,0.22);

  --gutter: clamp(1.25rem, 5vw, 2.5rem);
  --max-w:  1200px;

  --ease-spring: cubic-bezier(0.34,1.56,0.64,1);
}

/* ============================================================
   RESET
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--gray-800);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ============================================================
   UTILITIES
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* eyebrow */
.eyebrow {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.6875rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--blue);
  display: block;
  margin-bottom: 0.75rem;
}
.eyebrow-yellow { color: var(--yellow); }
.eyebrow-muted  { color: rgba(255,255,255,0.55); }

/* accent bar */
.accent-bar {
  display: block;
  width: 40px; height: 4px;
  background: var(--yellow);
  border-radius: var(--radius-pill);
  margin: 0.75rem 0 1.25rem;
}
.accent-bar-center { margin: 0.75rem auto 1.25rem; }

/* section rhythm */
.section { padding: clamp(5rem,9vw,8rem) 0; }
.section-sm { padding: clamp(3.5rem,6vw,5rem) 0; }

.section-header {
  max-width: 660px;
  margin: 0 auto clamp(3rem,5vw,4.5rem);
  text-align: center;
}

/* headings */
h1, .h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.5rem,6vw,4rem);
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--gray-900);
}
h2, .h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.875rem,4vw,2.75rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--gray-900);
}
h3, .h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.25rem,2.5vw,1.625rem);
  line-height: 1.25;
  color: var(--gray-900);
}
h4, .h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.3;
  color: var(--gray-900);
}

.text-white, .text-white h1, .text-white h2,
.text-white h3, .text-white h4 { color: var(--white); }

.lead {
  font-size: clamp(1.05rem,2vw,1.2rem);
  line-height: 1.75;
  color: var(--gray-600);
}

/* tags */
.tag {
  display: inline-flex;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.6rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}
.tag-blue   { background: var(--blue-light); color: var(--blue); }
.tag-yellow { background: var(--yellow-light); color: var(--yellow-dark); }
.tag-cream  { background: var(--cream); color: var(--gray-600); }

/* buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.75rem 1.625rem;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.15s, box-shadow 0.2s;
  white-space: nowrap;
  cursor: pointer;
  line-height: 1;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: none; }

.btn-primary {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  box-shadow: var(--shadow-blue);
}
.btn-secondary {
  background: transparent;
  border-color: var(--blue);
  color: var(--blue);
}
.btn-secondary:hover { background: var(--blue-light); }

.btn-ghost {
  background: transparent;
  border-color: rgba(255,255,255,0.35);
  color: var(--white);
}
.btn-ghost:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.65); }

.btn-accent {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--gray-900);
}
.btn-accent:hover { background: var(--yellow-dark); border-color: var(--yellow-dark); }

.btn-lg {
  font-size: 0.75rem;
  padding: 1rem 2rem;
  border-radius: var(--radius-lg);
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

/* arrow suffix */
.arr::after {
  content: '→';
  font-size: 1em;
  transition: transform 0.15s;
}
.btn:hover .arr::after,
.arr:hover::after { transform: translateX(3px); }

/* cards */
.card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 2rem;
  transition: box-shadow 0.25s, transform 0.25s;
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

/* icon mark */
.icon-mark {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-md);
  background: var(--blue-light);
  margin-bottom: 1.25rem;
  flex-shrink: 0;
}
.icon-mark svg { width: 22px; height: 22px; color: var(--blue); }
.icon-mark-yellow { background: var(--yellow-light); }
.icon-mark-yellow svg { color: var(--yellow-dark); }

/* grid helpers */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }

/* fade-in animation */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: none; }
.fade-up:nth-child(2) { transition-delay: 0.08s; }
.fade-up:nth-child(3) { transition-delay: 0.16s; }
.fade-up:nth-child(4) { transition-delay: 0.24s; }
.fade-up:nth-child(5) { transition-delay: 0.32s; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
  transition: box-shadow 0.25s;
}
.nav.scrolled { box-shadow: var(--shadow-sm); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 2rem;
}

/* Logo mark text (replace with <img> for real logo) */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

/* Full logo lockup — SVG contains both mark and wordmark */
.nav-logo-img {
  height: 36px;
  width: auto;
  display: block;
}

.nav-logo-mark { display: none; }
.nav-logo-mark svg { width: 18px; height: 18px; color: var(--white); }
.nav-logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--gray-900);
  letter-spacing: -0.01em;
  display: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}
.nav-link {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.8125rem;
  color: var(--gray-600);
  letter-spacing: 0.02em;
  padding: 0.25rem 0;
  border-bottom: 2px solid transparent;
  transition: color 0.15s, border-color 0.15s;
}
.nav-link:hover, .nav-link.active {
  color: var(--blue);
  border-bottom-color: var(--blue);
}

.nav-actions { display: flex; align-items: center; gap: 0.75rem; flex-shrink: 0; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  background: var(--blue);
  display: flex;
  align-items: center;
  padding: 7rem 0 5rem;
  position: relative;
  overflow: hidden;
}

/* Decorative grid overlay */
.hero::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: 60px 60px;
  pointer-events: none;
}

/* Decorative glow blob */
.hero::after {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 55%;
  height: 90%;
  background: radial-gradient(ellipse at center, rgba(240,169,65,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem,5vw,5rem);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-pill);
  padding: 0.35rem 0.875rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 1.5rem;
}
.hero-eyebrow-dot {
  width: 6px; height: 6px;
  background: var(--yellow);
  border-radius: 50%;
}

.hero-headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.75rem,5.5vw,4.5rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.hero-headline em {
  font-style: normal;
  color: var(--yellow);
}

.hero-sub {
  font-size: clamp(1rem,1.8vw,1.175rem);
  line-height: 1.75;
  color: rgba(255,255,255,0.72);
  max-width: 520px;
  margin-bottom: 2.5rem;
}

/* Hero data visualization panel */
.hero-panel {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  position: relative;
}

.hero-panel-label {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.625rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.hero-panel-label-dot {
  width: 6px; height: 6px;
  background: var(--yellow);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

.hero-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0.875rem;
  margin-bottom: 1.25rem;
}

.hero-metric {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius-md);
  padding: 1rem 0.875rem;
}
.hero-metric-name {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 0.35rem;
}
.hero-metric-val {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--white);
  line-height: 1;
}
.hero-metric-unit {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.45);
  margin-top: 0.2rem;
}
.hero-metric-trend {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  font-size: 0.6rem;
  font-weight: 600;
  color: #4ade80;
  background: rgba(74,222,128,0.12);
  padding: 2px 5px;
  border-radius: 3px;
  margin-top: 0.3rem;
}
.hero-metric-trend.warn { color: var(--yellow); background: rgba(240,169,65,0.15); }

/* Inline sparkline SVG bars */
.sparkline {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  height: 28px;
  margin-top: 0.75rem;
}
.sparkline-bar {
  flex: 1;
  background: rgba(255,255,255,0.15);
  border-radius: 2px 2px 0 0;
  transition: background 0.2s;
}
.sparkline-bar.hi { background: rgba(240,169,65,0.6); }
.sparkline-bar.active { background: rgba(255,255,255,0.55); }

.hero-panel-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.675rem;
  color: rgba(255,255,255,0.4);
  font-weight: 500;
  letter-spacing: 0.04em;
}

/* ============================================================
   CREDENTIAL STRIP
   ============================================================ */
.strip {
  background: var(--gray-900);
  padding: 1.375rem 0;
}
.strip-inner {
  display: flex;
  align-items: center;
  gap: 0;
}
.strip-label {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  white-space: nowrap;
  padding-right: 2rem;
  border-right: 1px solid rgba(255,255,255,0.1);
  margin-right: 2rem;
  flex-shrink: 0;
}
.strip-items {
  display: flex;
  align-items: center;
  gap: 0;
  flex: 1;
  overflow: hidden;
}
.strip-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.7);
  padding: 0 2rem;
  border-right: 1px solid rgba(255,255,255,0.08);
  white-space: nowrap;
}
.strip-item:first-child { padding-left: 0; }
.strip-item:last-child { border-right: none; }
.strip-dot {
  width: 6px; height: 6px;
  background: var(--yellow);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ============================================================
   PROBLEM SECTION
   ============================================================ */
.problem { background: var(--gray-50); }

.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem,6vw,6rem);
  align-items: center;
}

.problem-text h2 { margin-bottom: 1.25rem; }
.problem-text p {
  font-size: 1.025rem;
  line-height: 1.8;
  color: var(--gray-600);
  margin-bottom: 1.125rem;
}
.problem-text p:last-child { margin-bottom: 0; }

.problem-contrast {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.contrast-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.contrast-col {
  padding: 1.75rem;
}
.contrast-col:first-child {
  border-right: 1px solid var(--gray-200);
  background: var(--gray-50);
}
.contrast-col-label {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.contrast-col-label-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
}
.dot-gray { background: var(--gray-300); }
.dot-blue { background: var(--blue); }

.contrast-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 0.75rem;
  font-size: 0.825rem;
  color: var(--gray-600);
  line-height: 1.5;
}
.contrast-item:last-child { margin-bottom: 0; }
.contrast-item-icon {
  width: 16px; height: 16px;
  flex-shrink: 0;
  margin-top: 1px;
}
.contrast-item-icon.x { color: var(--gray-400); }
.contrast-item-icon.check { color: var(--blue); }

.contrast-divider {
  height: 1px;
  background: var(--gray-200);
}

/* ============================================================
   PRODUCT INTRO
   ============================================================ */
.product { background: var(--white); }

.product-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem,6vw,6rem);
  align-items: center;
  margin-bottom: clamp(3.5rem,6vw,5rem);
}

.product-intro-text h2 { margin-bottom: 1.25rem; }
.product-intro-text p {
  font-size: 1.025rem;
  line-height: 1.8;
  color: var(--gray-600);
  margin-bottom: 1.125rem;
}

/* Device mockup */
.device-wrap {
  background: var(--blue);
  border-radius: var(--radius-xl);
  padding: 2rem;
  aspect-ratio: 4/3;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}
.device-wrap::before {
  content: '';
  position: absolute; inset: 0;
  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: 40px 40px;
}
.device-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative; z-index: 1;
}
.device-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.device-status {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #4ade80;
  text-transform: uppercase;
}
.device-status-dot {
  width: 6px; height: 6px;
  background: #4ade80;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.device-spectrum {
  position: relative; z-index: 1;
  margin: 0.5rem 0;
}
.spectrum-svg { width: 100%; height: 70px; }

.device-readings {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  position: relative; z-index: 1;
}
.device-reading {
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  padding: 0.625rem 0.75rem;
}
.device-reading-label {
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 0.25rem;
}
.device-reading-val {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
  line-height: 1;
}
.device-reading-unit {
  font-size: 0.575rem;
  color: rgba(255,255,255,0.4);
  margin-top: 0.15rem;
}

/* 3-col feature cards below product intro */
.product-features { }
.feature-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-top: 3px solid transparent;
  border-radius: 0 0 var(--radius-xl) var(--radius-xl);
  padding: 1.75rem;
  transition: border-top-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.feature-card:hover {
  border-top-color: var(--blue);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.feature-card h4 { margin: 1rem 0 0.6rem; }
.feature-card p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--gray-600);
}

/* ============================================================
   APPLICATIONS
   ============================================================ */
.applications { background: var(--cream); }

.app-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }

.app-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
}
.app-card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.app-card-tag { margin-bottom: 1rem; }
.app-card h4 { margin-bottom: 0.625rem; }
.app-card p {
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--gray-600);
  flex: 1;
  margin-bottom: 1.25rem;
}
.app-card-stat {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--blue);
  line-height: 1.2;
  margin-bottom: 0.25rem;
}
.app-card-stat-label {
  font-size: 0.7rem;
  color: var(--gray-500);
  margin-bottom: 1.25rem;
}
.app-card-link {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  display: flex;
  align-items: center;
  gap: 0.3rem;
  transition: gap 0.15s;
}
.app-card:hover .app-card-link { gap: 0.55rem; }

/* ============================================================
   ROI SECTION
   ============================================================ */
.roi { background: var(--blue); }

.roi-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem,6vw,6rem);
  align-items: start;
}

.roi-text h2 { color: var(--white); margin-bottom: 1.25rem; }
.roi-text h2 em { font-style: normal; color: var(--yellow); }
.roi-text p {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.68);
  margin-bottom: 2rem;
}

.roi-table-wrap {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.roi-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.8375rem;
}
.roi-table th {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.575rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  padding: 0.875rem 1.25rem;
  text-align: left;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.roi-table th:not(:first-child) { text-align: right; }
.roi-table td {
  padding: 0.75rem 1.25rem;
  color: rgba(255,255,255,0.78);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 0.825rem;
}
.roi-table td:not(:first-child) { text-align: right; }
.roi-table tbody tr:last-child td { border-bottom: none; }
.roi-table .row-total {
  background: rgba(255,255,255,0.07);
  border-top: 1px solid rgba(255,255,255,0.12) !important;
}
.roi-table .row-total td {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--yellow);
  border-bottom: none;
  padding: 1rem 1.25rem;
}
.roi-table .row-cost td { color: rgba(255,255,255,0.45); font-size: 0.775rem; }
.roi-table .row-sub td {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--white);
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* ============================================================
   AUDIENCE SECTION
   ============================================================ */
.audience { background: var(--white); }

.audience-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.audience-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 2rem;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}
.audience-card:hover {
  border-color: var(--blue);
  background: var(--blue-light);
  box-shadow: var(--shadow-sm);
}
.audience-card-role {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.75rem;
}
.audience-card h4 { margin-bottom: 0.75rem; }
.audience-card p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--gray-600);
  margin-bottom: 1rem;
}
.audience-card-benefit {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.775rem;
  font-weight: 600;
  color: var(--blue);
  padding: 0.5rem 0.875rem;
  background: rgba(20,73,174,0.07);
  border-radius: var(--radius-pill);
  width: fit-content;
  margin-bottom: 1rem;
}
.audience-card-link {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.625rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  display: flex;
  align-items: center;
  gap: 0.3rem;
  transition: gap 0.15s;
}
.audience-card:hover .audience-card-link { gap: 0.55rem; }

/* ============================================================
   TECHNOLOGY SNIPPET
   ============================================================ */
.technology { background: var(--gray-900); }

.tech-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem,6vw,6rem);
  align-items: center;
}

.tech-text .eyebrow { color: var(--yellow); }
.tech-text h2 { color: var(--white); margin-bottom: 1.25rem; }
.tech-text p {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.62);
  margin-bottom: 2rem;
}

.tech-visual {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius-xl);
  padding: 2rem;
}
.tech-vis-label {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 1.5rem;
}
.spectrum-full-svg { width: 100%; height: 120px; }
.tech-vis-legend {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}
.legend-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.65rem;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
}
.legend-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* ============================================================
   INSIGHTS SECTION
   ============================================================ */
.insights { background: var(--white); }

.insights-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

.insight-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: box-shadow 0.25s, transform 0.25s;
}
.insight-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

.insight-card-top {
  background: var(--blue-light);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 110px;
}
.insight-card-icon {
  width: 48px; height: 48px;
  background: var(--blue);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
}
.insight-card-icon svg { width: 22px; height: 22px; color: var(--white); }

.insight-card-body { padding: 1.5rem; }
.insight-card-body .tag { margin-bottom: 0.875rem; }
.insight-card-body h4 { margin-bottom: 0.625rem; font-size: 1rem; }
.insight-card-body p {
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--gray-600);
  margin-bottom: 1.25rem;
}
.insight-link {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.625rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  display: flex;
  align-items: center;
  gap: 0.3rem;
  transition: gap 0.15s;
}
.insight-card:hover .insight-link { gap: 0.55rem; }

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: var(--cream);
  padding: clamp(4rem,7vw,6.5rem) 0;
}
.cta-box {
  background: var(--blue);
  border-radius: var(--radius-2xl);
  padding: clamp(3rem,5vw,5rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-box::before {
  content: '';
  position: absolute; inset: 0;
  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;
}
.cta-box > * { position: relative; z-index: 1; }
.cta-box h2 {
  color: var(--white);
  font-size: clamp(1.875rem,4vw,2.75rem);
  margin-bottom: 1rem;
}
.cta-box p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.68);
  max-width: 600px;
  margin: 0 auto 2.5rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--gray-900);
  padding: 4rem 0 2rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand {}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.footer-logo-mark {
  width: 32px; height: 32px;
  background: var(--blue);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
}
.footer-logo-mark svg { width: 16px; height: 16px; color: var(--white); }
.footer-logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--white);
}
.footer-tagline {
  font-size: 0.825rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.4);
  max-width: 280px;
  margin-bottom: 1.5rem;
}
.footer-col-title {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 1.25rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.625rem; }
.footer-link {
  font-size: 0.825rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.15s;
}
.footer-link:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-copy {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.28);
}
.footer-legal {
  display: flex;
  gap: 1.5rem;
}
.footer-legal a {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.28);
  transition: color 0.15s;
}
.footer-legal a:hover { color: rgba(255,255,255,0.6); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero:not(.hero-contact) .hero-panel { display: none; }
  .hero { min-height: auto; padding: 8rem 0 5rem; }
  .problem-grid { grid-template-columns: 1fr; }
  .product-intro { grid-template-columns: 1fr; }
  .device-wrap { display: none; }
  .app-grid { grid-template-columns: repeat(2, 1fr); }
  .roi-inner { grid-template-columns: 1fr; }
  .tech-inner { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .app-grid { grid-template-columns: 1fr; }
  .audience-grid { grid-template-columns: 1fr; }
  .insights-grid { grid-template-columns: 1fr; }
  .strip-inner { flex-direction: column; align-items: flex-start; gap: 0.875rem; }
  .strip-items { flex-wrap: wrap; gap: 0.75rem; }
  .strip-item { padding: 0; border: none; }
  .strip-label { border: none; padding: 0; margin: 0; }
  .section-header { text-align: left; }
  .accent-bar-center { margin-left: 0; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .hero-sub { max-width: 100%; }
}


/* ============================================================
   INNER-PAGE EXTENSIONS
   Every rule below is derived directly from the homepage design
   system above. No new design language is introduced.
   ============================================================ */

/* ----------------------------------------------------------
   PAGE HERO
   Same visual as .hero: --blue bg, grid overlay ::before,
   glow blob ::after, eyebrow-yellow, white h1/lead.
   Shorter than homepage hero (no 100vh).
   ---------------------------------------------------------- */
.page-hero {
  background: var(--blue);
  padding: clamp(7rem, 10vw, 9rem) 0 clamp(3.5rem, 5vw, 5rem);
  position: relative;
  overflow: hidden;
}
.page-hero::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: 60px 60px;
  pointer-events: none;
}
.page-hero::after {
  content: '';
  position: absolute;
  top: -30%; right: -5%;
  width: 45%; height: 120%;
  background: radial-gradient(ellipse at center, rgba(240,169,65,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 780px;
}
.page-hero .eyebrow { color: var(--yellow); margin-bottom: 0.75rem; }
.page-hero h1 {
  color: var(--white);
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  margin-bottom: 1.25rem;
}
.page-hero .lead { color: rgba(255,255,255,0.7); max-width: 620px; }

/* Breadcrumb — same type scale as .strip-label */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.6875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.04em;
  margin-bottom: 1.5rem;
}
.breadcrumb a          { color: rgba(255,255,255,0.55); transition: color 0.15s; }
.breadcrumb a:hover    { color: var(--white); }
.breadcrumb-sep        { color: rgba(255,255,255,0.25); }

/* ----------------------------------------------------------
   SECTION BACKGROUND HELPERS
   Mirrors homepage: .problem = gray-50, .applications = cream,
   etc. Inner pages need these via class, not inline style.
   ---------------------------------------------------------- */
.bg-white   { background: var(--white); }
.bg-gray-50 { background: var(--gray-50); }
.bg-cream   { background: var(--cream); }
.bg-blue    { background: var(--blue); }
.bg-dark    { background: var(--gray-900); }

/* ----------------------------------------------------------
   SPLIT SECTION
   Mirrors .product-intro and .tech-inner grid pattern exactly:
   two columns, large gap, align center.
   ---------------------------------------------------------- */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}
.split-section.reverse > *:first-child { order: 2; }
.split-section.reverse > *:last-child  { order: 1; }
.split-text h2               { margin-bottom: 1.25rem; }
.split-text p                { font-size: 1.025rem; line-height: 1.8; color: var(--gray-600); margin-bottom: 1.125rem; }
.split-text p:last-of-type   { margin-bottom: 1.5rem; }

/* ----------------------------------------------------------
   DATA PANEL (inside .tech-visual surface)
   Mirrors .device-reading cells exactly.
   ---------------------------------------------------------- */
.panel-label {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.panel-label-dot {
  width: 6px; height: 6px;
  background: var(--yellow);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
.data-cell {
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  padding: 0.75rem;
  position: relative;
}
.data-cell-label {
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 0.25rem;
}
.data-cell-val {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
  line-height: 1;
}
.data-cell-trend {
  display: inline-flex;
  align-items: center;
  font-size: 0.6rem;
  font-weight: 600;
  color: #4ade80;
  background: rgba(74,222,128,0.12);
  padding: 2px 5px;
  border-radius: 3px;
  margin-top: 0.25rem;
}
.data-cell-trend.warn { color: var(--yellow); background: rgba(240,169,65,0.15); }

/* .data-grid — used inside tech-visual panels */
.data-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.625rem;
}
.data-grid-note {
  font-size: 0.575rem;
  color: rgba(255,255,255,0.25);
  text-align: center;
  margin-top: 1rem;
}

/* ----------------------------------------------------------
   SPEC TABLE
   On white bg; header mirrors .roi-table th scale/tracking.
   ---------------------------------------------------------- */
.spec-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}
.spec-table th {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.625rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-500);
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 2px solid var(--gray-200);
}
.spec-table td {
  padding: 0.875rem 1rem;
  color: var(--gray-700);
  border-bottom: 1px solid var(--gray-100);
  line-height: 1.5;
}
.spec-table tr:last-child td { border-bottom: none; }
.td-label { font-weight: 600; color: var(--gray-800); }
.td-val   { color: var(--blue); font-weight: 600; }

/* Card with table inside — no padding, overflow hidden */
.card-table { padding: 0; overflow: hidden; }
.card-table-header {
  padding: 1.25rem 1.75rem;
  border-bottom: 1px solid var(--gray-200);
}
.card-table-header .eyebrow { margin-bottom: 0; }
.card-table-footer {
  padding: 0.875rem 1.75rem;
  background: var(--gray-50);
  border-top: 1px solid var(--gray-200);
  font-size: 0.75rem;
  color: var(--gray-500);
}

/* ----------------------------------------------------------
   ACCORDION
   Opens like .contrast-col; same border/bg cadence.
   ---------------------------------------------------------- */
.accordion {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.accordion-item { border-bottom: 1px solid var(--gray-200); }
.accordion-item:last-child { border-bottom: none; }

.accordion-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding: 1.25rem 1.75rem;
  background: var(--white);
  cursor: pointer;
  text-align: left;
  transition: background 0.15s;
}
.accordion-trigger:hover { background: var(--gray-50); }

.accordion-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.975rem;
  color: var(--gray-900);
}
.accordion-icon {
  width: 20px; height: 20px;
  border: 1.5px solid var(--gray-300);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform 0.2s, border-color 0.2s;
}
.accordion-icon svg      { width: 10px; height: 10px; color: var(--gray-500); transition: color 0.2s; }
.accordion-item.open .accordion-icon { transform: rotate(45deg); border-color: var(--blue); }
.accordion-item.open .accordion-icon svg { color: var(--blue); }

.accordion-body { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.accordion-item.open .accordion-body { max-height: 800px; }
.accordion-body-inner {
  padding: 0 1.75rem 1.5rem;
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--gray-600);
}
.accordion-body-inner p + p { margin-top: 0.75rem; }

/* Tag inside accordion header — pull right */
.accordion-trigger .tag {
  margin-left: auto;
  margin-right: 0.75rem;
  flex-shrink: 0;
}

/* ----------------------------------------------------------
   INLINE CTA BAR
   Cream bg mirrors outer .cta-section wrapper tone.
   ---------------------------------------------------------- */
.cta-bar {
  background: var(--cream);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-xl);
  padding: 2rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.cta-bar-text h4 { margin-bottom: 0.35rem; }
.cta-bar-text p  { font-size: 0.9rem; color: var(--gray-600); margin: 0; }
.cta-bar-actions { display: flex; gap: 0.75rem; flex-shrink: 0; flex-wrap: wrap; }

/* ----------------------------------------------------------
   STAT STRIP (dark version — used on .technology / .strip bg)
   Mirrors .strip item cadence.
   ---------------------------------------------------------- */
.stat-strip-dark {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.stat-strip-item {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-xl);
  padding: 2rem 1.5rem;
  text-align: center;
}
.stat-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  color: var(--yellow);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.5); line-height: 1.4; }

/* ----------------------------------------------------------
   ROADMAP CARDS (platform page — dark bg, tiered opacity)
   Exact same surface as homepage hero-panel items.
   ---------------------------------------------------------- */
.roadmap-card {
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}
.roadmap-card-now {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
}
.roadmap-card-launch {
  background: rgba(240,169,65,0.12);
  border: 1px solid rgba(240,169,65,0.25);
}
.roadmap-card-future {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}
.roadmap-card h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.875rem;
  margin-bottom: 0.375rem;
}
.roadmap-card-now    h4 { color: var(--white); }
.roadmap-card-launch h4 { color: var(--yellow); }
.roadmap-card-future h4 { color: rgba(255,255,255,0.45); }
.roadmap-card p {
  font-size: 0.85rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.55);
  margin: 0;
}
.roadmap-card-future p { color: rgba(255,255,255,0.35); }
.roadmap-list { display: flex; flex-direction: column; gap: 1rem; }

/* ----------------------------------------------------------
   PROGRESS BAR (about page status panel — inside .tech-visual)
   ---------------------------------------------------------- */
.progress-list { display: flex; flex-direction: column; gap: 0; }
.progress-item {
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.progress-item:last-child { border-bottom: none; }
.progress-item-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}
.progress-item-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--white);
}
.progress-item-pct {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.4);
}
.progress-track {
  height: 5px;
  background: rgba(255,255,255,0.1);
  border-radius: 100px;
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  background: var(--blue-mid);
  border-radius: 100px;
}
.progress-fill-yellow { background: var(--yellow); }
.progress-item-note {
  font-size: 0.725rem;
  color: rgba(255,255,255,0.4);
  margin-top: 0.4rem;
}
.progress-footer {
  padding: 1.25rem 1.5rem;
  background: rgba(240,169,65,0.08);
  border-top: 1px solid rgba(240,169,65,0.15);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--yellow);
}

/* ============================================================
   CONTACT PAGE — DEFINITIVE
   Selector specificity strategy:
   - Left-side text: .hero.hero-contact .* = (0,2,0) beats body cascade
   - Form fields:    .contact-form .contact-input = (0,2,0)
   - !important on color/background/border ONLY — the 3 properties
     where browser UA uses :not() chains at (0,3,1) specificity.
   ============================================================ */

/* ── Hero height ─────────────────────────────────────────── */
.hero.hero-contact {
  min-height: 0;
  padding: 8rem 0 5rem;
  align-items: flex-start;
}

/* ── Left column: light text on dark blue ────────────────── */
.hero.hero-contact .contact-trust {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 2rem;
}
.hero.hero-contact .contact-trust-item {
  display: flex;
  align-items: baseline;
  gap: 0.625rem;
  font-size: 0.875rem;
  line-height: 1.55;
  color: rgba(255,255,255,0.7);
}
.hero.hero-contact .contact-trust-item span {
  color: rgba(255,255,255,0.7);
}
.hero.hero-contact .contact-trust-dot {
  width: 5px;
  height: 5px;
  min-width: 5px;
  background: var(--yellow);
  border-radius: 50%;
  margin-top: 0.45em;
  flex-shrink: 0;
}
.hero.hero-contact .contact-commitment {
  margin-top: 1.5rem;
  font-size: 0.8rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.4);
  max-width: 420px;
}

/* ── Form layout ─────────────────────────────────────────── */
.contact-form {
  display: flex;
  flex-direction: column;
}
.contact-form .contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.contact-form .contact-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 0.75rem;
}
.contact-form .contact-field:last-of-type {
  margin-bottom: 0;
}

/* ── Labels ──────────────────────────────────────────────── */
.contact-form .contact-label {
  display: block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  /* !important beats body color cascade on <label> */
  color: rgba(255,255,255,0.55) !important;
  line-height: 1;
  margin-bottom: 0.2rem;
}
.contact-form .contact-label-optional {
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.6rem;
  color: rgba(255,255,255,0.3) !important;
}

/* ── Fields: .contact-input on every input/select/textarea ── */
/* (0,2,0) specificity — higher than UA :not() chains */
.contact-form .contact-input {
  display: block;
  width: 100%;
  box-sizing: border-box;
  padding: 0.75rem 0.875rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  line-height: 1.4;
  border-radius: var(--radius-sm);
  transition: border-color 0.15s, background 0.15s;
  appearance: none;
  -webkit-appearance: none;
  color-scheme: dark;
  /* !important on the 3 properties browsers override */
  color: #ffffff !important;
  background: rgba(255,255,255,0.1) !important;
  border: 1px solid rgba(255,255,255,0.2) !important;
}
.contact-form .contact-input:focus {
  outline: none;
  border-color: rgba(255,255,255,0.5) !important;
  background: rgba(255,255,255,0.15) !important;
}
.contact-form .contact-input::placeholder {
  color: rgba(255,255,255,0.35) !important;
  opacity: 1;
}

/* Select options — dropdown list items */
.contact-form .contact-input option {
  background: #1e2229;
  color: #ffffff;
}

/* Select: custom chevron wrapper */
.contact-form .contact-select-wrap {
  position: relative;
  display: block;
}
.contact-form .contact-select-wrap::after {
  content: '';
  position: absolute;
  right: 0.875rem;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid rgba(255,255,255,0.45);
  pointer-events: none;
}
.contact-form .contact-select-wrap .contact-input {
  padding-right: 2.25rem;
  cursor: pointer;
  /* Ensure select fills wrapper */
  width: 100%;
}

/* Textarea */
.contact-form .contact-input.contact-textarea {
  resize: vertical;
  min-height: 90px;
  line-height: 1.55;
}

/* ── Submit button ────────────────────────────────────────── */
.contact-form .contact-submit {
  width: 100%;
  justify-content: center;
  margin-top: 1rem;
  display: flex;
}

/* ── Footer note ─────────────────────────────────────────── */
.contact-form .contact-footer-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.875rem;
  padding-top: 0.875rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.675rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.4) !important;
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 768px) {
  .contact-form .contact-form-row {
    grid-template-columns: 1fr;
  }
}

/* Footer logo — real SVG asset, filtered white for dark background */
.footer-logo-img {
  height: 28px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}


/* ============================================================
   MAILCHIMP FORM — scoped to .mc-form inside .hero-panel
   Replaces Mailchimp CDN stylesheet (classic-061523.css).
   All color values use existing site tokens.
   ============================================================ */

/* Field wrapper */
.mc-form .mc-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 0.75rem;
}

/* Labels */
.mc-form label {
  display: block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55) !important;
  -webkit-text-fill-color: rgba(255,255,255,0.55) !important;
  line-height: 1;
}
.mc-form .mc-required {
  color: var(--yellow);
  font-weight: 700;
}

/* All field types */
.mc-form input[type="text"],
.mc-form input[type="email"],
.mc-form select {
  display: block;
  width: 100%;
  box-sizing: border-box;
  padding: 0.75rem 0.875rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  line-height: 1.4;
  color: #ffffff !important;
  background: rgba(255,255,255,0.1) !important;
  border: 1px solid rgba(255,255,255,0.2) !important;
  border-radius: var(--radius-sm);
  transition: border-color 0.15s, background 0.15s;
  appearance: none;
  -webkit-appearance: none;
  color-scheme: dark;
}
.mc-form input[type="text"]:focus,
.mc-form input[type="email"]:focus,
.mc-form select:focus {
  outline: none;
  border-color: rgba(255,255,255,0.45) !important;
  background: rgba(255,255,255,0.15) !important;
}
.mc-form input::placeholder {
  color: rgba(255,255,255,0.35) !important;
  opacity: 1;
}
.mc-form select option {
  background: #1e2229;
  color: #ffffff;
}

/* Submit button — reuses existing .btn .btn-accent .btn-lg */
.mc-form .mc-submit {
  width: 100%;
  justify-content: center;
  margin-top: 1rem;
  display: flex;
}

/* Mailchimp error/success messages */
.mc-form #mce-error-response,
.mc-form #mce-success-response {
  padding: 0.625rem 0.875rem;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  margin-bottom: 0.75rem;
  display: none;
}
.mc-form #mce-error-response {
  background: rgba(220,38,38,0.15);
  border: 1px solid rgba(220,38,38,0.35);
  color: #fca5a5;
}
.mc-form #mce-success-response {
  background: rgba(74,222,128,0.12);
  border: 1px solid rgba(74,222,128,0.3);
  color: #86efac;
}


/* ============================================================
   TECHNOLOGY PAGE — hero layout
   Single-column hero (no data panel on right).
   Scoped so it does not affect index.html hero-inner.
   ============================================================ */
.tech-hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 780px;
  position: relative;
  z-index: 1;
}
.tech-hero-text {
  /* flex child of .tech-hero-inner — no explicit rules needed */
}


/* ============================================================
   APPLICATIONS PAGE — scoped additions
   All tokens reference existing CSS custom properties only.
   No root variables redefined.
   ============================================================ */

/* Bullet list — used in herd health and reproduction sections */
.apps-list {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.apps-list li {
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--gray-600);
  padding-left: 1.25rem;
  position: relative;
}
.apps-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: 600;
}

/* Tagline section — typography-driven, no icons */
.apps-tagline .apps-tagline-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.apps-tagline-kicker {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 1.5rem;
}
.apps-tagline-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  line-height: 1.1;
  color: var(--white);
  margin: 0 0 2rem;
  quotes: none;
}
.apps-tagline-body {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.5);
  max-width: 580px;
}

/* Platform flow — numbered cards on a 2×2 grid */
.apps-flow-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 3rem;
}
.apps-flow-card {
  position: relative;
}
.apps-flow-card-accent {
  border-color: rgba(20,73,174,0.2);
  background: var(--blue-light);
}
.apps-flow-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  color: var(--gray-400);
  margin-bottom: 0.75rem;
}
.apps-flow-card-accent .apps-flow-num {
  color: var(--blue);
}
.apps-flow-card h4 {
  margin-bottom: 0.625rem;
}
.apps-flow-card p {
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--gray-500);
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .apps-flow-grid { grid-template-columns: 1fr; }
}
/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  --blue:        #1449AE;
  --blue-dark:   #0D3580;
  --blue-mid:    #1E55C4;
  --blue-light:  #E8EFFE;
  --blue-dim:    rgba(20,73,174,0.08);
  --yellow:      #F0A941;
  --yellow-dark: #C8871A;
  --yellow-light:#FDF3E2;
  --cream:       #F9F1E6;
  --cream-dark:  #EFE3CC;
  --white:       #FFFFFF;
  --gray-900:    #0F1218;
  --gray-800:    #1E2229;
  --gray-700:    #353C47;
  --gray-600:    #4D5566;
  --gray-500:    #6B7589;
  --gray-400:    #9AA3B2;
  --gray-300:    #C8CDD6;
  --gray-200:    #E4E7EC;
  --gray-100:    #F4F5F7;
  --gray-50:     #FAFBFC;

  --font-display: 'Rubik', sans-serif;
  --font-body:    'Figtree', sans-serif;

  --radius-sm:  6px;
  --radius-md:  10px;
  --radius-lg:  16px;
  --radius-xl:  24px;
  --radius-2xl: 36px;
  --radius-pill:9999px;

  --shadow-sm: 0 1px 4px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08), 0 1px 4px rgba(0,0,0,0.04);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.10);
  --shadow-blue: 0 8px 32px rgba(20,73,174,0.22);

  --gutter: clamp(1.25rem, 5vw, 2.5rem);
  --max-w:  1200px;

  --ease-spring: cubic-bezier(0.34,1.56,0.64,1);
}

/* ============================================================
   RESET
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--gray-800);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ============================================================
   UTILITIES
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* eyebrow */
.eyebrow {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.6875rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--blue);
  display: block;
  margin-bottom: 0.75rem;
}
.eyebrow-yellow { color: var(--yellow); }
.eyebrow-muted  { color: rgba(255,255,255,0.55); }

/* accent bar */
.accent-bar {
  display: block;
  width: 40px; height: 4px;
  background: var(--yellow);
  border-radius: var(--radius-pill);
  margin: 0.75rem 0 1.25rem;
}
.accent-bar-center { margin: 0.75rem auto 1.25rem; }

/* section rhythm */
.section { padding: clamp(5rem,9vw,8rem) 0; }
.section-sm { padding: clamp(3.5rem,6vw,5rem) 0; }

.section-header {
  max-width: 660px;
  margin: 0 auto clamp(3rem,5vw,4.5rem);
  text-align: center;
}

/* headings */
h1, .h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.5rem,6vw,4rem);
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--gray-900);
}
h2, .h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.875rem,4vw,2.75rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--gray-900);
}
h3, .h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.25rem,2.5vw,1.625rem);
  line-height: 1.25;
  color: var(--gray-900);
}
h4, .h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.3;
  color: var(--gray-900);
}

.text-white, .text-white h1, .text-white h2,
.text-white h3, .text-white h4 { color: var(--white); }

.lead {
  font-size: clamp(1.05rem,2vw,1.2rem);
  line-height: 1.75;
  color: var(--gray-600);
}

/* tags */
.tag {
  display: inline-flex;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.6rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}
.tag-blue   { background: var(--blue-light); color: var(--blue); }
.tag-yellow { background: var(--yellow-light); color: var(--yellow-dark); }
.tag-cream  { background: var(--cream); color: var(--gray-600); }

/* buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.75rem 1.625rem;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.15s, box-shadow 0.2s;
  white-space: nowrap;
  cursor: pointer;
  line-height: 1;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: none; }

.btn-primary {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  box-shadow: var(--shadow-blue);
}
.btn-secondary {
  background: transparent;
  border-color: var(--blue);
  color: var(--blue);
}
.btn-secondary:hover { background: var(--blue-light); }

.btn-ghost {
  background: transparent;
  border-color: rgba(255,255,255,0.35);
  color: var(--white);
}
.btn-ghost:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.65); }

.btn-accent {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--gray-900);
}
.btn-accent:hover { background: var(--yellow-dark); border-color: var(--yellow-dark); }

.btn-lg {
  font-size: 0.75rem;
  padding: 1rem 2rem;
  border-radius: var(--radius-lg);
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

/* arrow suffix */
.arr::after {
  content: '→';
  font-size: 1em;
  transition: transform 0.15s;
}
.btn:hover .arr::after,
.arr:hover::after { transform: translateX(3px); }

/* cards */
.card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 2rem;
  transition: box-shadow 0.25s, transform 0.25s;
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

/* icon mark */
.icon-mark {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-md);
  background: var(--blue-light);
  margin-bottom: 1.25rem;
  flex-shrink: 0;
}
.icon-mark svg { width: 22px; height: 22px; color: var(--blue); }
.icon-mark-yellow { background: var(--yellow-light); }
.icon-mark-yellow svg { color: var(--yellow-dark); }

/* grid helpers */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }

/* fade-in animation */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: none; }
.fade-up:nth-child(2) { transition-delay: 0.08s; }
.fade-up:nth-child(3) { transition-delay: 0.16s; }
.fade-up:nth-child(4) { transition-delay: 0.24s; }
.fade-up:nth-child(5) { transition-delay: 0.32s; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
  transition: box-shadow 0.25s;
}
.nav.scrolled { box-shadow: var(--shadow-sm); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 2rem;
}

/* Logo mark text (replace with <img> for real logo) */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

/* Full logo lockup — SVG contains both mark and wordmark */
.nav-logo-img {
  height: 36px;
  width: auto;
  display: block;
}

.nav-logo-mark { display: none; }
.nav-logo-mark svg { width: 18px; height: 18px; color: var(--white); }
.nav-logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--gray-900);
  letter-spacing: -0.01em;
  display: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}
.nav-link {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.8125rem;
  color: var(--gray-600);
  letter-spacing: 0.02em;
  padding: 0.25rem 0;
  border-bottom: 2px solid transparent;
  transition: color 0.15s, border-color 0.15s;
}
.nav-link:hover, .nav-link.active {
  color: var(--blue);
  border-bottom-color: var(--blue);
}

.nav-actions { display: flex; align-items: center; gap: 0.75rem; flex-shrink: 0; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  background: var(--blue);
  display: flex;
  align-items: center;
  padding: 7rem 0 5rem;
  position: relative;
  overflow: hidden;
}

/* Decorative grid overlay */
.hero::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: 60px 60px;
  pointer-events: none;
}

/* Decorative glow blob */
.hero::after {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 55%;
  height: 90%;
  background: radial-gradient(ellipse at center, rgba(240,169,65,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem,5vw,5rem);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-pill);
  padding: 0.35rem 0.875rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 1.5rem;
}
.hero-eyebrow-dot {
  width: 6px; height: 6px;
  background: var(--yellow);
  border-radius: 50%;
}

.hero-headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.75rem,5.5vw,4.5rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.hero-headline em {
  font-style: normal;
  color: var(--yellow);
}

.hero-sub {
  font-size: clamp(1rem,1.8vw,1.175rem);
  line-height: 1.75;
  color: rgba(255,255,255,0.72);
  max-width: 520px;
  margin-bottom: 2.5rem;
}

/* Hero data visualization panel */
.hero-panel {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  position: relative;
}

.hero-panel-label {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.625rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.hero-panel-label-dot {
  width: 6px; height: 6px;
  background: var(--yellow);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

.hero-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0.875rem;
  margin-bottom: 1.25rem;
}

.hero-metric {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius-md);
  padding: 1rem 0.875rem;
}
.hero-metric-name {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 0.35rem;
}
.hero-metric-val {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--white);
  line-height: 1;
}
.hero-metric-unit {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.45);
  margin-top: 0.2rem;
}
.hero-metric-trend {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  font-size: 0.6rem;
  font-weight: 600;
  color: #4ade80;
  background: rgba(74,222,128,0.12);
  padding: 2px 5px;
  border-radius: 3px;
  margin-top: 0.3rem;
}
.hero-metric-trend.warn { color: var(--yellow); background: rgba(240,169,65,0.15); }

/* Inline sparkline SVG bars */
.sparkline {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  height: 28px;
  margin-top: 0.75rem;
}
.sparkline-bar {
  flex: 1;
  background: rgba(255,255,255,0.15);
  border-radius: 2px 2px 0 0;
  transition: background 0.2s;
}
.sparkline-bar.hi { background: rgba(240,169,65,0.6); }
.sparkline-bar.active { background: rgba(255,255,255,0.55); }

.hero-panel-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.675rem;
  color: rgba(255,255,255,0.4);
  font-weight: 500;
  letter-spacing: 0.04em;
}

/* ============================================================
   CREDENTIAL STRIP
   ============================================================ */
.strip {
  background: var(--gray-900);
  padding: 1.375rem 0;
}
.strip-inner {
  display: flex;
  align-items: center;
  gap: 0;
}
.strip-label {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  white-space: nowrap;
  padding-right: 2rem;
  border-right: 1px solid rgba(255,255,255,0.1);
  margin-right: 2rem;
  flex-shrink: 0;
}
.strip-items {
  display: flex;
  align-items: center;
  gap: 0;
  flex: 1;
  overflow: hidden;
}
.strip-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.7);
  padding: 0 2rem;
  border-right: 1px solid rgba(255,255,255,0.08);
  white-space: nowrap;
}
.strip-item:first-child { padding-left: 0; }
.strip-item:last-child { border-right: none; }
.strip-dot {
  width: 6px; height: 6px;
  background: var(--yellow);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ============================================================
   PROBLEM SECTION
   ============================================================ */
.problem { background: var(--gray-50); }

.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem,6vw,6rem);
  align-items: center;
}

.problem-text h2 { margin-bottom: 1.25rem; }
.problem-text p {
  font-size: 1.025rem;
  line-height: 1.8;
  color: var(--gray-600);
  margin-bottom: 1.125rem;
}
.problem-text p:last-child { margin-bottom: 0; }

.problem-contrast {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.contrast-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.contrast-col {
  padding: 1.75rem;
}
.contrast-col:first-child {
  border-right: 1px solid var(--gray-200);
  background: var(--gray-50);
}
.contrast-col-label {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.contrast-col-label-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
}
.dot-gray { background: var(--gray-300); }
.dot-blue { background: var(--blue); }

.contrast-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 0.75rem;
  font-size: 0.825rem;
  color: var(--gray-600);
  line-height: 1.5;
}
.contrast-item:last-child { margin-bottom: 0; }
.contrast-item-icon {
  width: 16px; height: 16px;
  flex-shrink: 0;
  margin-top: 1px;
}
.contrast-item-icon.x { color: var(--gray-400); }
.contrast-item-icon.check { color: var(--blue); }

.contrast-divider {
  height: 1px;
  background: var(--gray-200);
}

/* ============================================================
   PRODUCT INTRO
   ============================================================ */
.product { background: var(--white); }

.product-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem,6vw,6rem);
  align-items: center;
  margin-bottom: clamp(3.5rem,6vw,5rem);
}

.product-intro-text h2 { margin-bottom: 1.25rem; }
.product-intro-text p {
  font-size: 1.025rem;
  line-height: 1.8;
  color: var(--gray-600);
  margin-bottom: 1.125rem;
}

/* Device mockup */
.device-wrap {
  background: var(--blue);
  border-radius: var(--radius-xl);
  padding: 2rem;
  aspect-ratio: 4/3;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}
.device-wrap::before {
  content: '';
  position: absolute; inset: 0;
  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: 40px 40px;
}
.device-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative; z-index: 1;
}
.device-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.device-status {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #4ade80;
  text-transform: uppercase;
}
.device-status-dot {
  width: 6px; height: 6px;
  background: #4ade80;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.device-spectrum {
  position: relative; z-index: 1;
  margin: 0.5rem 0;
}
.spectrum-svg { width: 100%; height: 70px; }

.device-readings {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  position: relative; z-index: 1;
}
.device-reading {
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  padding: 0.625rem 0.75rem;
}
.device-reading-label {
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 0.25rem;
}
.device-reading-val {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
  line-height: 1;
}
.device-reading-unit {
  font-size: 0.575rem;
  color: rgba(255,255,255,0.4);
  margin-top: 0.15rem;
}

/* 3-col feature cards below product intro */
.product-features { }
.feature-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-top: 3px solid transparent;
  border-radius: 0 0 var(--radius-xl) var(--radius-xl);
  padding: 1.75rem;
  transition: border-top-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.feature-card:hover {
  border-top-color: var(--blue);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.feature-card h4 { margin: 1rem 0 0.6rem; }
.feature-card p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--gray-600);
}

/* ============================================================
   APPLICATIONS
   ============================================================ */
.applications { background: var(--cream); }

.app-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }

.app-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
}
.app-card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.app-card-tag { margin-bottom: 1rem; }
.app-card h4 { margin-bottom: 0.625rem; }
.app-card p {
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--gray-600);
  flex: 1;
  margin-bottom: 1.25rem;
}
.app-card-stat {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--blue);
  line-height: 1.2;
  margin-bottom: 0.25rem;
}
.app-card-stat-label {
  font-size: 0.7rem;
  color: var(--gray-500);
  margin-bottom: 1.25rem;
}
.app-card-link {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  display: flex;
  align-items: center;
  gap: 0.3rem;
  transition: gap 0.15s;
}
.app-card:hover .app-card-link { gap: 0.55rem; }

/* ============================================================
   ROI SECTION
   ============================================================ */
.roi { background: var(--blue); }

.roi-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem,6vw,6rem);
  align-items: start;
}

.roi-text h2 { color: var(--white); margin-bottom: 1.25rem; }
.roi-text h2 em { font-style: normal; color: var(--yellow); }
.roi-text p {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.68);
  margin-bottom: 2rem;
}

.roi-table-wrap {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.roi-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.8375rem;
}
.roi-table th {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.575rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  padding: 0.875rem 1.25rem;
  text-align: left;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.roi-table th:not(:first-child) { text-align: right; }
.roi-table td {
  padding: 0.75rem 1.25rem;
  color: rgba(255,255,255,0.78);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 0.825rem;
}
.roi-table td:not(:first-child) { text-align: right; }
.roi-table tbody tr:last-child td { border-bottom: none; }
.roi-table .row-total {
  background: rgba(255,255,255,0.07);
  border-top: 1px solid rgba(255,255,255,0.12) !important;
}
.roi-table .row-total td {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--yellow);
  border-bottom: none;
  padding: 1rem 1.25rem;
}
.roi-table .row-cost td { color: rgba(255,255,255,0.45); font-size: 0.775rem; }
.roi-table .row-sub td {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--white);
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* ============================================================
   AUDIENCE SECTION
   ============================================================ */
.audience { background: var(--white); }

.audience-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.audience-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 2rem;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}
.audience-card:hover {
  border-color: var(--blue);
  background: var(--blue-light);
  box-shadow: var(--shadow-sm);
}
.audience-card-role {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.75rem;
}
.audience-card h4 { margin-bottom: 0.75rem; }
.audience-card p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--gray-600);
  margin-bottom: 1rem;
}
.audience-card-benefit {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.775rem;
  font-weight: 600;
  color: var(--blue);
  padding: 0.5rem 0.875rem;
  background: rgba(20,73,174,0.07);
  border-radius: var(--radius-pill);
  width: fit-content;
  margin-bottom: 1rem;
}
.audience-card-link {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.625rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  display: flex;
  align-items: center;
  gap: 0.3rem;
  transition: gap 0.15s;
}
.audience-card:hover .audience-card-link { gap: 0.55rem; }

/* ============================================================
   TECHNOLOGY SNIPPET
   ============================================================ */
.technology { background: var(--gray-900); }

.tech-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem,6vw,6rem);
  align-items: center;
}

.tech-text .eyebrow { color: var(--yellow); }
.tech-text h2 { color: var(--white); margin-bottom: 1.25rem; }
.tech-text p {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.62);
  margin-bottom: 2rem;
}

.tech-visual {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius-xl);
  padding: 2rem;
}
.tech-vis-label {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 1.5rem;
}
.spectrum-full-svg { width: 100%; height: 120px; }
.tech-vis-legend {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}
.legend-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.65rem;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
}
.legend-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* ============================================================
   INSIGHTS SECTION
   ============================================================ */
.insights { background: var(--white); }

.insights-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

.insight-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: box-shadow 0.25s, transform 0.25s;
}
.insight-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

.insight-card-top {
  background: var(--blue-light);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 110px;
}
.insight-card-icon {
  width: 48px; height: 48px;
  background: var(--blue);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
}
.insight-card-icon svg { width: 22px; height: 22px; color: var(--white); }

.insight-card-body { padding: 1.5rem; }
.insight-card-body .tag { margin-bottom: 0.875rem; }
.insight-card-body h4 { margin-bottom: 0.625rem; font-size: 1rem; }
.insight-card-body p {
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--gray-600);
  margin-bottom: 1.25rem;
}
.insight-link {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.625rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  display: flex;
  align-items: center;
  gap: 0.3rem;
  transition: gap 0.15s;
}
.insight-card:hover .insight-link { gap: 0.55rem; }

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: var(--cream);
  padding: clamp(4rem,7vw,6.5rem) 0;
}
.cta-box {
  background: var(--blue);
  border-radius: var(--radius-2xl);
  padding: clamp(3rem,5vw,5rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-box::before {
  content: '';
  position: absolute; inset: 0;
  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;
}
.cta-box > * { position: relative; z-index: 1; }
.cta-box h2 {
  color: var(--white);
  font-size: clamp(1.875rem,4vw,2.75rem);
  margin-bottom: 1rem;
}
.cta-box p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.68);
  max-width: 600px;
  margin: 0 auto 2.5rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--gray-900);
  padding: 4rem 0 2rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand {}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.footer-logo-mark {
  width: 32px; height: 32px;
  background: var(--blue);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
}
.footer-logo-mark svg { width: 16px; height: 16px; color: var(--white); }
.footer-logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--white);
}
.footer-tagline {
  font-size: 0.825rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.4);
  max-width: 280px;
  margin-bottom: 1.5rem;
}
.footer-col-title {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 1.25rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.625rem; }
.footer-link {
  font-size: 0.825rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.15s;
}
.footer-link:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-copy {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.28);
}
.footer-legal {
  display: flex;
  gap: 1.5rem;
}
.footer-legal a {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.28);
  transition: color 0.15s;
}
.footer-legal a:hover { color: rgba(255,255,255,0.6); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-panel { display: none; }
  .hero { min-height: auto; padding: 8rem 0 5rem; }
  .problem-grid { grid-template-columns: 1fr; }
  .product-intro { grid-template-columns: 1fr; }
  .device-wrap { display: none; }
  .app-grid { grid-template-columns: repeat(2, 1fr); }
  .roi-inner { grid-template-columns: 1fr; }
  .tech-inner { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .app-grid { grid-template-columns: 1fr; }
  .audience-grid { grid-template-columns: 1fr; }
  .insights-grid { grid-template-columns: 1fr; }
  .strip-inner { flex-direction: column; align-items: flex-start; gap: 0.875rem; }
  .strip-items { flex-wrap: wrap; gap: 0.75rem; }
  .strip-item { padding: 0; border: none; }
  .strip-label { border: none; padding: 0; margin: 0; }
  .section-header { text-align: left; }
  .accent-bar-center { margin-left: 0; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .hero-sub { max-width: 100%; }
}


/* ============================================================
   INNER-PAGE EXTENSIONS
   Every rule below is derived directly from the homepage design
   system above. No new design language is introduced.
   ============================================================ */

/* ----------------------------------------------------------
   PAGE HERO
   Same visual as .hero: --blue bg, grid overlay ::before,
   glow blob ::after, eyebrow-yellow, white h1/lead.
   Shorter than homepage hero (no 100vh).
   ---------------------------------------------------------- */
.page-hero {
  background: var(--blue);
  padding: clamp(7rem, 10vw, 9rem) 0 clamp(3.5rem, 5vw, 5rem);
  position: relative;
  overflow: hidden;
}
.page-hero::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: 60px 60px;
  pointer-events: none;
}
.page-hero::after {
  content: '';
  position: absolute;
  top: -30%; right: -5%;
  width: 45%; height: 120%;
  background: radial-gradient(ellipse at center, rgba(240,169,65,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 780px;
}
.page-hero .eyebrow { color: var(--yellow); margin-bottom: 0.75rem; }
.page-hero h1 {
  color: var(--white);
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  margin-bottom: 1.25rem;
}
.page-hero .lead { color: rgba(255,255,255,0.7); max-width: 620px; }

/* Breadcrumb — same type scale as .strip-label */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.6875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.04em;
  margin-bottom: 1.5rem;
}
.breadcrumb a          { color: rgba(255,255,255,0.55); transition: color 0.15s; }
.breadcrumb a:hover    { color: var(--white); }
.breadcrumb-sep        { color: rgba(255,255,255,0.25); }

/* ----------------------------------------------------------
   SECTION BACKGROUND HELPERS
   Mirrors homepage: .problem = gray-50, .applications = cream,
   etc. Inner pages need these via class, not inline style.
   ---------------------------------------------------------- */
.bg-white   { background: var(--white); }
.bg-gray-50 { background: var(--gray-50); }
.bg-cream   { background: var(--cream); }
.bg-blue    { background: var(--blue); }
.bg-dark    { background: var(--gray-900); }

/* ----------------------------------------------------------
   SPLIT SECTION
   Mirrors .product-intro and .tech-inner grid pattern exactly:
   two columns, large gap, align center.
   ---------------------------------------------------------- */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}
.split-section.reverse > *:first-child { order: 2; }
.split-section.reverse > *:last-child  { order: 1; }
.split-text h2               { margin-bottom: 1.25rem; }
.split-text p                { font-size: 1.025rem; line-height: 1.8; color: var(--gray-600); margin-bottom: 1.125rem; }
.split-text p:last-of-type   { margin-bottom: 1.5rem; }

/* ----------------------------------------------------------
   DATA PANEL (inside .tech-visual surface)
   Mirrors .device-reading cells exactly.
   ---------------------------------------------------------- */
.panel-label {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.panel-label-dot {
  width: 6px; height: 6px;
  background: var(--yellow);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
.data-cell {
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  padding: 0.75rem;
  position: relative;
}
.data-cell-label {
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 0.25rem;
}
.data-cell-val {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
  line-height: 1;
}
.data-cell-trend {
  display: inline-flex;
  align-items: center;
  font-size: 0.6rem;
  font-weight: 600;
  color: #4ade80;
  background: rgba(74,222,128,0.12);
  padding: 2px 5px;
  border-radius: 3px;
  margin-top: 0.25rem;
}
.data-cell-trend.warn { color: var(--yellow); background: rgba(240,169,65,0.15); }

/* .data-grid — used inside tech-visual panels */
.data-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.625rem;
}
.data-grid-note {
  font-size: 0.575rem;
  color: rgba(255,255,255,0.25);
  text-align: center;
  margin-top: 1rem;
}

/* ----------------------------------------------------------
   SPEC TABLE
   On white bg; header mirrors .roi-table th scale/tracking.
   ---------------------------------------------------------- */
.spec-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}
.spec-table th {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.625rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-500);
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 2px solid var(--gray-200);
}
.spec-table td {
  padding: 0.875rem 1rem;
  color: var(--gray-700);
  border-bottom: 1px solid var(--gray-100);
  line-height: 1.5;
}
.spec-table tr:last-child td { border-bottom: none; }
.td-label { font-weight: 600; color: var(--gray-800); }
.td-val   { color: var(--blue); font-weight: 600; }

/* Card with table inside — no padding, overflow hidden */
.card-table { padding: 0; overflow: hidden; }
.card-table-header {
  padding: 1.25rem 1.75rem;
  border-bottom: 1px solid var(--gray-200);
}
.card-table-header .eyebrow { margin-bottom: 0; }
.card-table-footer {
  padding: 0.875rem 1.75rem;
  background: var(--gray-50);
  border-top: 1px solid var(--gray-200);
  font-size: 0.75rem;
  color: var(--gray-500);
}

/* ----------------------------------------------------------
   ACCORDION
   Opens like .contrast-col; same border/bg cadence.
   ---------------------------------------------------------- */
.accordion {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.accordion-item { border-bottom: 1px solid var(--gray-200); }
.accordion-item:last-child { border-bottom: none; }

.accordion-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding: 1.25rem 1.75rem;
  background: var(--white);
  cursor: pointer;
  text-align: left;
  transition: background 0.15s;
}
.accordion-trigger:hover { background: var(--gray-50); }

.accordion-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.975rem;
  color: var(--gray-900);
}
.accordion-icon {
  width: 20px; height: 20px;
  border: 1.5px solid var(--gray-300);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform 0.2s, border-color 0.2s;
}
.accordion-icon svg      { width: 10px; height: 10px; color: var(--gray-500); transition: color 0.2s; }
.accordion-item.open .accordion-icon { transform: rotate(45deg); border-color: var(--blue); }
.accordion-item.open .accordion-icon svg { color: var(--blue); }

.accordion-body { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.accordion-item.open .accordion-body { max-height: 800px; }
.accordion-body-inner {
  padding: 0 1.75rem 1.5rem;
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--gray-600);
}
.accordion-body-inner p + p { margin-top: 0.75rem; }

/* Tag inside accordion header — pull right */
.accordion-trigger .tag {
  margin-left: auto;
  margin-right: 0.75rem;
  flex-shrink: 0;
}

/* ----------------------------------------------------------
   INLINE CTA BAR
   Cream bg mirrors outer .cta-section wrapper tone.
   ---------------------------------------------------------- */
.cta-bar {
  background: var(--cream);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-xl);
  padding: 2rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.cta-bar-text h4 { margin-bottom: 0.35rem; }
.cta-bar-text p  { font-size: 0.9rem; color: var(--gray-600); margin: 0; }
.cta-bar-actions { display: flex; gap: 0.75rem; flex-shrink: 0; flex-wrap: wrap; }

/* ----------------------------------------------------------
   STAT STRIP (dark version — used on .technology / .strip bg)
   Mirrors .strip item cadence.
   ---------------------------------------------------------- */
.stat-strip-dark {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.stat-strip-item {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-xl);
  padding: 2rem 1.5rem;
  text-align: center;
}
.stat-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  color: var(--yellow);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.5); line-height: 1.4; }

/* ----------------------------------------------------------
   ROADMAP CARDS (platform page — dark bg, tiered opacity)
   Exact same surface as homepage hero-panel items.
   ---------------------------------------------------------- */
.roadmap-card {
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}
.roadmap-card-now {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
}
.roadmap-card-launch {
  background: rgba(240,169,65,0.12);
  border: 1px solid rgba(240,169,65,0.25);
}
.roadmap-card-future {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}
.roadmap-card h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.875rem;
  margin-bottom: 0.375rem;
}
.roadmap-card-now    h4 { color: var(--white); }
.roadmap-card-launch h4 { color: var(--yellow); }
.roadmap-card-future h4 { color: rgba(255,255,255,0.45); }
.roadmap-card p {
  font-size: 0.85rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.55);
  margin: 0;
}
.roadmap-card-future p { color: rgba(255,255,255,0.35); }
.roadmap-list { display: flex; flex-direction: column; gap: 1rem; }

/* ----------------------------------------------------------
   PROGRESS BAR (about page status panel — inside .tech-visual)
   ---------------------------------------------------------- */
.progress-list { display: flex; flex-direction: column; gap: 0; }
.progress-item {
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.progress-item:last-child { border-bottom: none; }
.progress-item-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}
.progress-item-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--white);
}
.progress-item-pct {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.4);
}
.progress-track {
  height: 5px;
  background: rgba(255,255,255,0.1);
  border-radius: 100px;
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  background: var(--blue-mid);
  border-radius: 100px;
}
.progress-fill-yellow { background: var(--yellow); }
.progress-item-note {
  font-size: 0.725rem;
  color: rgba(255,255,255,0.4);
  margin-top: 0.4rem;
}
.progress-footer {
  padding: 1.25rem 1.5rem;
  background: rgba(240,169,65,0.08);
  border-top: 1px solid rgba(240,169,65,0.15);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--yellow);
}

/* ============================================================
   CONTACT PAGE — DEFINITIVE
   Selector specificity strategy:
   - Left-side text: .hero.hero-contact .* = (0,2,0) beats body cascade
   - Form fields:    .contact-form .contact-input = (0,2,0)
   - !important on color/background/border ONLY — the 3 properties
     where browser UA uses :not() chains at (0,3,1) specificity.
   ============================================================ */

/* ── Hero height ─────────────────────────────────────────── */
.hero.hero-contact {
  min-height: 0;
  padding: 8rem 0 5rem;
  align-items: flex-start;
}

/* ── Left column: light text on dark blue ────────────────── */
.hero.hero-contact .contact-trust {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 2rem;
}
.hero.hero-contact .contact-trust-item {
  display: flex;
  align-items: baseline;
  gap: 0.625rem;
  font-size: 0.875rem;
  line-height: 1.55;
  color: rgba(255,255,255,0.7);
}
.hero.hero-contact .contact-trust-item span {
  color: rgba(255,255,255,0.7);
}
.hero.hero-contact .contact-trust-dot {
  width: 5px;
  height: 5px;
  min-width: 5px;
  background: var(--yellow);
  border-radius: 50%;
  margin-top: 0.45em;
  flex-shrink: 0;
}
.hero.hero-contact .contact-commitment {
  margin-top: 1.5rem;
  font-size: 0.8rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.4);
  max-width: 420px;
}

/* ── Form layout ─────────────────────────────────────────── */
.contact-form {
  display: flex;
  flex-direction: column;
}
.contact-form .contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.contact-form .contact-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 0.75rem;
}
.contact-form .contact-field:last-of-type {
  margin-bottom: 0;
}

/* ── Labels ──────────────────────────────────────────────── */
.contact-form .contact-label {
  display: block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  /* !important beats body color cascade on <label> */
  color: rgba(255,255,255,0.55) !important;
  line-height: 1;
  margin-bottom: 0.2rem;
}
.contact-form .contact-label-optional {
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.6rem;
  color: rgba(255,255,255,0.3) !important;
}

/* ── Fields: .contact-input on every input/select/textarea ── */
/* (0,2,0) specificity — higher than UA :not() chains */
.contact-form .contact-input {
  display: block;
  width: 100%;
  box-sizing: border-box;
  padding: 0.75rem 0.875rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  line-height: 1.4;
  border-radius: var(--radius-sm);
  transition: border-color 0.15s, background 0.15s;
  appearance: none;
  -webkit-appearance: none;
  color-scheme: dark;
  /* !important on the 3 properties browsers override */
  color: #ffffff !important;
  background: rgba(255,255,255,0.1) !important;
  border: 1px solid rgba(255,255,255,0.2) !important;
}
.contact-form .contact-input:focus {
  outline: none;
  border-color: rgba(255,255,255,0.5) !important;
  background: rgba(255,255,255,0.15) !important;
}
.contact-form .contact-input::placeholder {
  color: rgba(255,255,255,0.35) !important;
  opacity: 1;
}

/* Select options — dropdown list items */
.contact-form .contact-input option {
  background: #1e2229;
  color: #ffffff;
}

/* Select: custom chevron wrapper */
.contact-form .contact-select-wrap {
  position: relative;
  display: block;
}
.contact-form .contact-select-wrap::after {
  content: '';
  position: absolute;
  right: 0.875rem;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid rgba(255,255,255,0.45);
  pointer-events: none;
}
.contact-form .contact-select-wrap .contact-input {
  padding-right: 2.25rem;
  cursor: pointer;
  /* Ensure select fills wrapper */
  width: 100%;
}

/* Textarea */
.contact-form .contact-input.contact-textarea {
  resize: vertical;
  min-height: 90px;
  line-height: 1.55;
}

/* ── Submit button ────────────────────────────────────────── */
.contact-form .contact-submit {
  width: 100%;
  justify-content: center;
  margin-top: 1rem;
  display: flex;
}

/* ── Footer note ─────────────────────────────────────────── */
.contact-form .contact-footer-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.875rem;
  padding-top: 0.875rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.675rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.4) !important;
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 768px) {
  .contact-form .contact-form-row {
    grid-template-columns: 1fr;
  }
}

/* Footer logo — real SVG asset, filtered white for dark background */
.footer-logo-img {
  height: 28px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}


/* ============================================================
   MAILCHIMP FORM — scoped to .mc-form inside .hero-panel
   Replaces Mailchimp CDN stylesheet (classic-061523.css).
   All color values use existing site tokens.
   ============================================================ */

/* Field wrapper */
.mc-form .mc-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 0.75rem;
}

/* Labels */
.mc-form label {
  display: block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55) !important;
  -webkit-text-fill-color: rgba(255,255,255,0.55) !important;
  line-height: 1;
}
.mc-form .mc-required {
  color: var(--yellow);
  font-weight: 700;
}

/* All field types */
.mc-form input[type="text"],
.mc-form input[type="email"],
.mc-form select {
  display: block;
  width: 100%;
  box-sizing: border-box;
  padding: 0.75rem 0.875rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  line-height: 1.4;
  color: #ffffff !important;
  background: rgba(255,255,255,0.1) !important;
  border: 1px solid rgba(255,255,255,0.2) !important;
  border-radius: var(--radius-sm);
  transition: border-color 0.15s, background 0.15s;
  appearance: none;
  -webkit-appearance: none;
  color-scheme: dark;
}
.mc-form input[type="text"]:focus,
.mc-form input[type="email"]:focus,
.mc-form select:focus {
  outline: none;
  border-color: rgba(255,255,255,0.45) !important;
  background: rgba(255,255,255,0.15) !important;
}
.mc-form input::placeholder {
  color: rgba(255,255,255,0.35) !important;
  opacity: 1;
}
.mc-form select option {
  background: #1e2229;
  color: #ffffff;
}

/* Submit button — reuses existing .btn .btn-accent .btn-lg */
.mc-form .mc-submit {
  width: 100%;
  justify-content: center;
  margin-top: 1rem;
  display: flex;
}

/* Mailchimp error/success messages */
.mc-form #mce-error-response,
.mc-form #mce-success-response {
  padding: 0.625rem 0.875rem;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  margin-bottom: 0.75rem;
  display: none;
}
.mc-form #mce-error-response {
  background: rgba(220,38,38,0.15);
  border: 1px solid rgba(220,38,38,0.35);
  color: #fca5a5;
}
.mc-form #mce-success-response {
  background: rgba(74,222,128,0.12);
  border: 1px solid rgba(74,222,128,0.3);
  color: #86efac;
}


/* ============================================================
   TECHNOLOGY PAGE — hero layout
   Single-column hero (no data panel on right).
   Scoped so it does not affect index.html hero-inner.
   ============================================================ */
.tech-hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 780px;
  position: relative;
  z-index: 1;
}
.tech-hero-text {
  /* flex child of .tech-hero-inner — no explicit rules needed */
}


/* ============================================================
   APPLICATIONS PAGE — scoped additions
   All tokens reference existing CSS custom properties only.
   No root variables redefined.
   ============================================================ */

/* Bullet list — used in herd health and reproduction sections */
.apps-list {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.apps-list li {
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--gray-600);
  padding-left: 1.25rem;
  position: relative;
}
.apps-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: 600;
}

/* Tagline section — typography-driven, no icons */
.apps-tagline .apps-tagline-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.apps-tagline-kicker {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 1.5rem;
}
.apps-tagline-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  line-height: 1.1;
  color: var(--white);
  margin: 0 0 2rem;
  quotes: none;
}
.apps-tagline-body {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.5);
  max-width: 580px;
}

/* Platform flow — numbered cards on a 2×2 grid */
.apps-flow-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 3rem;
}
.apps-flow-card {
  position: relative;
}
.apps-flow-card-accent {
  border-color: rgba(20,73,174,0.2);
  background: var(--blue-light);
}
.apps-flow-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  color: var(--gray-400);
  margin-bottom: 0.75rem;
}
.apps-flow-card-accent .apps-flow-num {
  color: var(--blue);
}
.apps-flow-card h4 {
  margin-bottom: 0.625rem;
}
.apps-flow-card p {
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--gray-500);
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .apps-flow-grid { grid-template-columns: 1fr; }
}


/* ============================================================
   PLATFORM PAGE — scoped additions
   All values use existing CSS custom properties.
   No root variables redefined. No global selectors.
   ============================================================ */

/* Trend chart summary row — below the SCC SVG visual */
.plat-trend-row {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1rem;
}
.plat-trend-stat {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.plat-trend-val {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
  line-height: 1;
}
.plat-trend-label {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}

/* Roles grid — 2x2 on desktop, same as audience-grid but 4-col cap */
.plat-roles-grid {
  grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 768px) {
  .plat-trend-row { gap: 1rem; }
  .plat-roles-grid { grid-template-columns: 1fr; }
}
/* Longitudinal Visibility Section */

.product-intro-text {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.product-intro-text .apps-list {
  margin-top: 1rem;
  padding-left: 1.2rem;
}

.product-intro-text .apps-list li {
  color: var(--gray-700);
  margin-bottom: 0.9rem;
  line-height: 1.6;
}

.accent-bar-center {
  margin-left: auto;
  margin-right: auto;
}
/* CONTACT FORM VISIBILITY FIX */
.hero.hero-contact .hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 520px);
  gap: 4rem;
  align-items: center;
}

.hero.hero-contact .hero-panel {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  position: relative !important;
  z-index: 2;
}

.hero.hero-contact .mc-form {
  display: block !important;
}
.app-visual-minimal {
  display: flex;
  align-items: center;
  justify-content: center;
}

.app-data-card {
  padding: 2rem;
  border: 1px solid rgba(20, 73, 174, 0.15);
  border-radius: 1.25rem;
  background: rgba(20, 73, 174, 0.04);
  max-width: 420px;
}

.app-data-card h4 {
  margin: 0.75rem 0;
}
/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  --blue:        #1449AE;
  --blue-dark:   #0D3580;
  --blue-mid:    #1E55C4;
  --blue-light:  #E8EFFE;
  --blue-dim:    rgba(20,73,174,0.08);
  --yellow:      #F0A941;
  --yellow-dark: #C8871A;
  --yellow-light:#FDF3E2;
  --cream:       #F9F1E6;
  --cream-dark:  #EFE3CC;
  --white:       #FFFFFF;
  --gray-900:    #0F1218;
  --gray-800:    #1E2229;
  --gray-700:    #353C47;
  --gray-600:    #4D5566;
  --gray-500:    #6B7589;
  --gray-400:    #9AA3B2;
  --gray-300:    #C8CDD6;
  --gray-200:    #E4E7EC;
  --gray-100:    #F4F5F7;
  --gray-50:     #FAFBFC;

  --font-display: 'Rubik', sans-serif;
  --font-body:    'Figtree', sans-serif;

  --radius-sm:  6px;
  --radius-md:  10px;
  --radius-lg:  16px;
  --radius-xl:  24px;
  --radius-2xl: 36px;
  --radius-pill:9999px;

  --shadow-sm: 0 1px 4px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08), 0 1px 4px rgba(0,0,0,0.04);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.10);
  --shadow-blue: 0 8px 32px rgba(20,73,174,0.22);

  --gutter: clamp(1.25rem, 5vw, 2.5rem);
  --max-w:  1200px;

  --ease-spring: cubic-bezier(0.34,1.56,0.64,1);
}

/* ============================================================
   RESET
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--gray-800);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ============================================================
   UTILITIES
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* eyebrow */
.eyebrow {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.6875rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--blue);
  display: block;
  margin-bottom: 0.75rem;
}
.eyebrow-yellow { color: var(--yellow); }
.eyebrow-muted  { color: rgba(255,255,255,0.55); }

/* accent bar */
.accent-bar {
  display: block;
  width: 40px; height: 4px;
  background: var(--yellow);
  border-radius: var(--radius-pill);
  margin: 0.75rem 0 1.25rem;
}
.accent-bar-center { margin: 0.75rem auto 1.25rem; }

/* section rhythm */
.section { padding: clamp(5rem,9vw,8rem) 0; }
.section-sm { padding: clamp(3.5rem,6vw,5rem) 0; }

.section-header {
  max-width: 660px;
  margin: 0 auto clamp(3rem,5vw,4.5rem);
  text-align: center;
}

/* headings */
h1, .h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.5rem,6vw,4rem);
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--gray-900);
}
h2, .h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.875rem,4vw,2.75rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--gray-900);
}
h3, .h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.25rem,2.5vw,1.625rem);
  line-height: 1.25;
  color: var(--gray-900);
}
h4, .h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.3;
  color: var(--gray-900);
}

.text-white, .text-white h1, .text-white h2,
.text-white h3, .text-white h4 { color: var(--white); }

.lead {
  font-size: clamp(1.05rem,2vw,1.2rem);
  line-height: 1.75;
  color: var(--gray-600);
}

/* tags */
.tag {
  display: inline-flex;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.6rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}
.tag-blue   { background: var(--blue-light); color: var(--blue); }
.tag-yellow { background: var(--yellow-light); color: var(--yellow-dark); }
.tag-cream  { background: var(--cream); color: var(--gray-600); }

/* buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.75rem 1.625rem;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.15s, box-shadow 0.2s;
  white-space: nowrap;
  cursor: pointer;
  line-height: 1;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: none; }

.btn-primary {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  box-shadow: var(--shadow-blue);
}
.btn-secondary {
  background: transparent;
  border-color: var(--blue);
  color: var(--blue);
}
.btn-secondary:hover { background: var(--blue-light); }

.btn-ghost {
  background: transparent;
  border-color: rgba(255,255,255,0.35);
  color: var(--white);
}
.btn-ghost:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.65); }

.btn-accent {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--gray-900);
}
.btn-accent:hover { background: var(--yellow-dark); border-color: var(--yellow-dark); }

.btn-lg {
  font-size: 0.75rem;
  padding: 1rem 2rem;
  border-radius: var(--radius-lg);
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

/* arrow suffix */
.arr::after {
  content: 'â†’';
  font-size: 1em;
  transition: transform 0.15s;
}
.btn:hover .arr::after,
.arr:hover::after { transform: translateX(3px); }

/* cards */
.card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 2rem;
  transition: box-shadow 0.25s, transform 0.25s;
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

/* icon mark */
.icon-mark {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-md);
  background: var(--blue-light);
  margin-bottom: 1.25rem;
  flex-shrink: 0;
}
.icon-mark svg { width: 22px; height: 22px; color: var(--blue); }
.icon-mark-yellow { background: var(--yellow-light); }
.icon-mark-yellow svg { color: var(--yellow-dark); }

/* grid helpers */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }

/* fade-in animation */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: none; }
.fade-up:nth-child(2) { transition-delay: 0.08s; }
.fade-up:nth-child(3) { transition-delay: 0.16s; }
.fade-up:nth-child(4) { transition-delay: 0.24s; }
.fade-up:nth-child(5) { transition-delay: 0.32s; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
  transition: box-shadow 0.25s;
}
.nav.scrolled { box-shadow: var(--shadow-sm); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 2rem;
}

/* Logo mark text (replace with <img> for real logo) */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

/* Full logo lockup â€” SVG contains both mark and wordmark */
.nav-logo-img {
  height: 36px;
  width: auto;
  display: block;
}

.nav-logo-mark { display: none; }
.nav-logo-mark svg { width: 18px; height: 18px; color: var(--white); }
.nav-logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--gray-900);
  letter-spacing: -0.01em;
  display: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}
.nav-link {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.8125rem;
  color: var(--gray-600);
  letter-spacing: 0.02em;
  padding: 0.25rem 0;
  border-bottom: 2px solid transparent;
  transition: color 0.15s, border-color 0.15s;
}
.nav-link:hover, .nav-link.active {
  color: var(--blue);
  border-bottom-color: var(--blue);
}

.nav-actions { display: flex; align-items: center; gap: 0.75rem; flex-shrink: 0; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  background: var(--blue);
  display: flex;
  align-items: center;
  padding: 7rem 0 5rem;
  position: relative;
  overflow: hidden;
}

/* Decorative grid overlay */
.hero::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: 60px 60px;
  pointer-events: none;
}

/* Decorative glow blob */
.hero::after {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 55%;
  height: 90%;
  background: radial-gradient(ellipse at center, rgba(240,169,65,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem,5vw,5rem);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-pill);
  padding: 0.35rem 0.875rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 1.5rem;
}
.hero-eyebrow-dot {
  width: 6px; height: 6px;
  background: var(--yellow);
  border-radius: 50%;
}

.hero-headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.75rem,5.5vw,4.5rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.hero-headline em {
  font-style: normal;
  color: var(--yellow);
}

.hero-sub {
  font-size: clamp(1rem,1.8vw,1.175rem);
  line-height: 1.75;
  color: rgba(255,255,255,0.72);
  max-width: 520px;
  margin-bottom: 2.5rem;
}

/* Hero data visualization panel */
.hero-panel {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  position: relative;
}

.hero-panel-label {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.625rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.hero-panel-label-dot {
  width: 6px; height: 6px;
  background: var(--yellow);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

.hero-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0.875rem;
  margin-bottom: 1.25rem;
}

.hero-metric {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius-md);
  padding: 1rem 0.875rem;
}
.hero-metric-name {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 0.35rem;
}
.hero-metric-val {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--white);
  line-height: 1;
}
.hero-metric-unit {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.45);
  margin-top: 0.2rem;
}
.hero-metric-trend {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  font-size: 0.6rem;
  font-weight: 600;
  color: #4ade80;
  background: rgba(74,222,128,0.12);
  padding: 2px 5px;
  border-radius: 3px;
  margin-top: 0.3rem;
}
.hero-metric-trend.warn { color: var(--yellow); background: rgba(240,169,65,0.15); }

/* Inline sparkline SVG bars */
.sparkline {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  height: 28px;
  margin-top: 0.75rem;
}
.sparkline-bar {
  flex: 1;
  background: rgba(255,255,255,0.15);
  border-radius: 2px 2px 0 0;
  transition: background 0.2s;
}
.sparkline-bar.hi { background: rgba(240,169,65,0.6); }
.sparkline-bar.active { background: rgba(255,255,255,0.55); }

.hero-panel-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.675rem;
  color: rgba(255,255,255,0.4);
  font-weight: 500;
  letter-spacing: 0.04em;
}

/* ============================================================
   CREDENTIAL STRIP
   ============================================================ */
.strip {
  background: var(--gray-900);
  padding: 1.375rem 0;
}
.strip-inner {
  display: flex;
  align-items: center;
  gap: 0;
}
.strip-label {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  white-space: nowrap;
  padding-right: 2rem;
  border-right: 1px solid rgba(255,255,255,0.1);
  margin-right: 2rem;
  flex-shrink: 0;
}
.strip-items {
  display: flex;
  align-items: center;
  gap: 0;
  flex: 1;
  overflow: hidden;
}
.strip-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.7);
  padding: 0 2rem;
  border-right: 1px solid rgba(255,255,255,0.08);
  white-space: nowrap;
}
.strip-item:first-child { padding-left: 0; }
.strip-item:last-child { border-right: none; }
.strip-dot {
  width: 6px; height: 6px;
  background: var(--yellow);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ============================================================
   PROBLEM SECTION
   ============================================================ */
.problem { background: var(--gray-50); }

.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem,6vw,6rem);
  align-items: center;
}

.problem-text h2 { margin-bottom: 1.25rem; }
.problem-text p {
  font-size: 1.025rem;
  line-height: 1.8;
  color: var(--gray-600);
  margin-bottom: 1.125rem;
}
.problem-text p:last-child { margin-bottom: 0; }

.problem-contrast {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.contrast-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.contrast-col {
  padding: 1.75rem;
}
.contrast-col:first-child {
  border-right: 1px solid var(--gray-200);
  background: var(--gray-50);
}
.contrast-col-label {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.contrast-col-label-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
}
.dot-gray { background: var(--gray-300); }
.dot-blue { background: var(--blue); }

.contrast-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 0.75rem;
  font-size: 0.825rem;
  color: var(--gray-600);
  line-height: 1.5;
}
.contrast-item:last-child { margin-bottom: 0; }
.contrast-item-icon {
  width: 16px; height: 16px;
  flex-shrink: 0;
  margin-top: 1px;
}
.contrast-item-icon.x { color: var(--gray-400); }
.contrast-item-icon.check { color: var(--blue); }

.contrast-divider {
  height: 1px;
  background: var(--gray-200);
}

/* ============================================================
   PRODUCT INTRO
   ============================================================ */
.product { background: var(--white); }

.product-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem,6vw,6rem);
  align-items: center;
  margin-bottom: clamp(3.5rem,6vw,5rem);
}

.product-intro-text h2 { margin-bottom: 1.25rem; }
.product-intro-text p {
  font-size: 1.025rem;
  line-height: 1.8;
  color: var(--gray-600);
  margin-bottom: 1.125rem;
}

/* Device mockup */
.device-wrap {
  background: var(--blue);
  border-radius: var(--radius-xl);
  padding: 2rem;
  aspect-ratio: 4/3;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}
.device-wrap::before {
  content: '';
  position: absolute; inset: 0;
  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: 40px 40px;
}
.device-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative; z-index: 1;
}
.device-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.device-status {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #4ade80;
  text-transform: uppercase;
}
.device-status-dot {
  width: 6px; height: 6px;
  background: #4ade80;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.device-spectrum {
  position: relative; z-index: 1;
  margin: 0.5rem 0;
}
.spectrum-svg { width: 100%; height: 70px; }

.device-readings {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  position: relative; z-index: 1;
}
.device-reading {
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  padding: 0.625rem 0.75rem;
}
.device-reading-label {
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 0.25rem;
}
.device-reading-val {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
  line-height: 1;
}
.device-reading-unit {
  font-size: 0.575rem;
  color: rgba(255,255,255,0.4);
  margin-top: 0.15rem;
}

/* 3-col feature cards below product intro */
.product-features { }
.feature-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-top: 3px solid transparent;
  border-radius: 0 0 var(--radius-xl) var(--radius-xl);
  padding: 1.75rem;
  transition: border-top-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.feature-card:hover {
  border-top-color: var(--blue);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.feature-card h4 { margin: 1rem 0 0.6rem; }
.feature-card p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--gray-600);
}

/* ============================================================
   APPLICATIONS
   ============================================================ */
.applications { background: var(--cream); }

.app-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }

.app-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
}
.app-card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.app-card-tag { margin-bottom: 1rem; }
.app-card h4 { margin-bottom: 0.625rem; }
.app-card p {
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--gray-600);
  flex: 1;
  margin-bottom: 1.25rem;
}
.app-card-stat {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--blue);
  line-height: 1.2;
  margin-bottom: 0.25rem;
}
.app-card-stat-label {
  font-size: 0.7rem;
  color: var(--gray-500);
  margin-bottom: 1.25rem;
}
.app-card-link {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  display: flex;
  align-items: center;
  gap: 0.3rem;
  transition: gap 0.15s;
}
.app-card:hover .app-card-link { gap: 0.55rem; }

/* ============================================================
   ROI SECTION
   ============================================================ */
.roi { background: var(--blue); }

.roi-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem,6vw,6rem);
  align-items: start;
}

.roi-text h2 { color: var(--white); margin-bottom: 1.25rem; }
.roi-text h2 em { font-style: normal; color: var(--yellow); }
.roi-text p {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.68);
  margin-bottom: 2rem;
}

.roi-table-wrap {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.roi-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.8375rem;
}
.roi-table th {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.575rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  padding: 0.875rem 1.25rem;
  text-align: left;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.roi-table th:not(:first-child) { text-align: right; }
.roi-table td {
  padding: 0.75rem 1.25rem;
  color: rgba(255,255,255,0.78);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 0.825rem;
}
.roi-table td:not(:first-child) { text-align: right; }
.roi-table tbody tr:last-child td { border-bottom: none; }
.roi-table .row-total {
  background: rgba(255,255,255,0.07);
  border-top: 1px solid rgba(255,255,255,0.12) !important;
}
.roi-table .row-total td {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--yellow);
  border-bottom: none;
  padding: 1rem 1.25rem;
}
.roi-table .row-cost td { color: rgba(255,255,255,0.45); font-size: 0.775rem; }
.roi-table .row-sub td {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--white);
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* ============================================================
   AUDIENCE SECTION
   ============================================================ */
.audience { background: var(--white); }

.audience-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.audience-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 2rem;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}
.audience-card:hover {
  border-color: var(--blue);
  background: var(--blue-light);
  box-shadow: var(--shadow-sm);
}
.audience-card-role {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.75rem;
}
.audience-card h4 { margin-bottom: 0.75rem; }
.audience-card p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--gray-600);
  margin-bottom: 1rem;
}
.audience-card-benefit {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.775rem;
  font-weight: 600;
  color: var(--blue);
  padding: 0.5rem 0.875rem;
  background: rgba(20,73,174,0.07);
  border-radius: var(--radius-pill);
  width: fit-content;
  margin-bottom: 1rem;
}
.audience-card-link {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.625rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  display: flex;
  align-items: center;
  gap: 0.3rem;
  transition: gap 0.15s;
}
.audience-card:hover .audience-card-link { gap: 0.55rem; }

/* ============================================================
   TECHNOLOGY SNIPPET
   ============================================================ */
.technology { background: var(--gray-900); }

.tech-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem,6vw,6rem);
  align-items: center;
}

.tech-text .eyebrow { color: var(--yellow); }
.tech-text h2 { color: var(--white); margin-bottom: 1.25rem; }
.tech-text p {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.62);
  margin-bottom: 2rem;
}

.tech-visual {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius-xl);
  padding: 2rem;
}
.tech-vis-label {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 1.5rem;
}
.spectrum-full-svg { width: 100%; height: 120px; }
.tech-vis-legend {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}
.legend-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.65rem;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
}
.legend-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* ============================================================
   INSIGHTS SECTION
   ============================================================ */
.insights { background: var(--white); }

.insights-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

.insight-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: box-shadow 0.25s, transform 0.25s;
}
.insight-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

.insight-card-top {
  background: var(--blue-light);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 110px;
}
.insight-card-icon {
  width: 48px; height: 48px;
  background: var(--blue);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
}
.insight-card-icon svg { width: 22px; height: 22px; color: var(--white); }

.insight-card-body { padding: 1.5rem; }
.insight-card-body .tag { margin-bottom: 0.875rem; }
.insight-card-body h4 { margin-bottom: 0.625rem; font-size: 1rem; }
.insight-card-body p {
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--gray-600);
  margin-bottom: 1.25rem;
}
.insight-link {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.625rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  display: flex;
  align-items: center;
  gap: 0.3rem;
  transition: gap 0.15s;
}
.insight-card:hover .insight-link { gap: 0.55rem; }

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: var(--cream);
  padding: clamp(4rem,7vw,6.5rem) 0;
}
.cta-box {
  background: var(--blue);
  border-radius: var(--radius-2xl);
  padding: clamp(3rem,5vw,5rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-box::before {
  content: '';
  position: absolute; inset: 0;
  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;
}
.cta-box > * { position: relative; z-index: 1; }
.cta-box h2 {
  color: var(--white);
  font-size: clamp(1.875rem,4vw,2.75rem);
  margin-bottom: 1rem;
}
.cta-box p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.68);
  max-width: 600px;
  margin: 0 auto 2.5rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--gray-900);
  padding: 4rem 0 2rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand {}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.footer-logo-mark {
  width: 32px; height: 32px;
  background: var(--blue);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
}
.footer-logo-mark svg { width: 16px; height: 16px; color: var(--white); }
.footer-logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--white);
}
.footer-tagline {
  font-size: 0.825rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.4);
  max-width: 280px;
  margin-bottom: 1.5rem;
}
.footer-col-title {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 1.25rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.625rem; }
.footer-link {
  font-size: 0.825rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.15s;
}
.footer-link:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-copy {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.28);
}
.footer-legal {
  display: flex;
  gap: 1.5rem;
}
.footer-legal a {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.28);
  transition: color 0.15s;
}
.footer-legal a:hover { color: rgba(255,255,255,0.6); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  /* Hide decorative data panel on non-contact pages only */
  .hero:not(.hero-contact) .hero-panel { display: none; }
  .hero { min-height: auto; padding: 8rem 0 5rem; }
  .problem-grid { grid-template-columns: 1fr; }
  .product-intro { grid-template-columns: 1fr; }
  .device-wrap { display: none; }
  .app-grid { grid-template-columns: repeat(2, 1fr); }
  .roi-inner { grid-template-columns: 1fr; }
  .tech-inner { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .app-grid { grid-template-columns: 1fr; }
  .audience-grid { grid-template-columns: 1fr; }
  .insights-grid { grid-template-columns: 1fr; }
  .strip-inner { flex-direction: column; align-items: flex-start; gap: 0.875rem; }
  .strip-items { flex-wrap: wrap; gap: 0.75rem; }
  .strip-item { padding: 0; border: none; }
  .strip-label { border: none; padding: 0; margin: 0; }
  .section-header { text-align: left; }
  .accent-bar-center { margin-left: 0; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .hero-sub { max-width: 100%; }
}


/* ============================================================
   INNER-PAGE EXTENSIONS
   Every rule below is derived directly from the homepage design
   system above. No new design language is introduced.
   ============================================================ */

/* ----------------------------------------------------------
   PAGE HERO
   Same visual as .hero: --blue bg, grid overlay ::before,
   glow blob ::after, eyebrow-yellow, white h1/lead.
   Shorter than homepage hero (no 100vh).
   ---------------------------------------------------------- */
.page-hero {
  background: var(--blue);
  padding: clamp(7rem, 10vw, 9rem) 0 clamp(3.5rem, 5vw, 5rem);
  position: relative;
  overflow: hidden;
}
.page-hero::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: 60px 60px;
  pointer-events: none;
}
.page-hero::after {
  content: '';
  position: absolute;
  top: -30%; right: -5%;
  width: 45%; height: 120%;
  background: radial-gradient(ellipse at center, rgba(240,169,65,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 780px;
}
.page-hero .eyebrow { color: var(--yellow); margin-bottom: 0.75rem; }
.page-hero h1 {
  color: var(--white);
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  margin-bottom: 1.25rem;
}
.page-hero .lead { color: rgba(255,255,255,0.7); max-width: 620px; }

/* Breadcrumb â€” same type scale as .strip-label */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.6875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.04em;
  margin-bottom: 1.5rem;
}
.breadcrumb a          { color: rgba(255,255,255,0.55); transition: color 0.15s; }
.breadcrumb a:hover    { color: var(--white); }
.breadcrumb-sep        { color: rgba(255,255,255,0.25); }

/* ----------------------------------------------------------
   SECTION BACKGROUND HELPERS
   Mirrors homepage: .problem = gray-50, .applications = cream,
   etc. Inner pages need these via class, not inline style.
   ---------------------------------------------------------- */
.bg-white   { background: var(--white); }
.bg-gray-50 { background: var(--gray-50); }
.bg-cream   { background: var(--cream); }
.bg-blue    { background: var(--blue); }
.bg-dark    { background: var(--gray-900); }

/* ----------------------------------------------------------
   SPLIT SECTION
   Mirrors .product-intro and .tech-inner grid pattern exactly:
   two columns, large gap, align center.
   ---------------------------------------------------------- */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}
.split-section.reverse > *:first-child { order: 2; }
.split-section.reverse > *:last-child  { order: 1; }
.split-text h2               { margin-bottom: 1.25rem; }
.split-text p                { font-size: 1.025rem; line-height: 1.8; color: var(--gray-600); margin-bottom: 1.125rem; }
.split-text p:last-of-type   { margin-bottom: 1.5rem; }

/* ----------------------------------------------------------
   DATA PANEL (inside .tech-visual surface)
   Mirrors .device-reading cells exactly.
   ---------------------------------------------------------- */
.panel-label {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.panel-label-dot {
  width: 6px; height: 6px;
  background: var(--yellow);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
.data-cell {
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  padding: 0.75rem;
  position: relative;
}
.data-cell-label {
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 0.25rem;
}
.data-cell-val {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
  line-height: 1;
}
.data-cell-trend {
  display: inline-flex;
  align-items: center;
  font-size: 0.6rem;
  font-weight: 600;
  color: #4ade80;
  background: rgba(74,222,128,0.12);
  padding: 2px 5px;
  border-radius: 3px;
  margin-top: 0.25rem;
}
.data-cell-trend.warn { color: var(--yellow); background: rgba(240,169,65,0.15); }

/* .data-grid â€” used inside tech-visual panels */
.data-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.625rem;
}
.data-grid-note {
  font-size: 0.575rem;
  color: rgba(255,255,255,0.25);
  text-align: center;
  margin-top: 1rem;
}

/* ----------------------------------------------------------
   SPEC TABLE
   On white bg; header mirrors .roi-table th scale/tracking.
   ---------------------------------------------------------- */
.spec-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}
.spec-table th {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.625rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-500);
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 2px solid var(--gray-200);
}
.spec-table td {
  padding: 0.875rem 1rem;
  color: var(--gray-700);
  border-bottom: 1px solid var(--gray-100);
  line-height: 1.5;
}
.spec-table tr:last-child td { border-bottom: none; }
.td-label { font-weight: 600; color: var(--gray-800); }
.td-val   { color: var(--blue); font-weight: 600; }

/* Card with table inside â€” no padding, overflow hidden */
.card-table { padding: 0; overflow: hidden; }
.card-table-header {
  padding: 1.25rem 1.75rem;
  border-bottom: 1px solid var(--gray-200);
}
.card-table-header .eyebrow { margin-bottom: 0; }
.card-table-footer {
  padding: 0.875rem 1.75rem;
  background: var(--gray-50);
  border-top: 1px solid var(--gray-200);
  font-size: 0.75rem;
  color: var(--gray-500);
}

/* ----------------------------------------------------------
   ACCORDION
   Opens like .contrast-col; same border/bg cadence.
   ---------------------------------------------------------- */
.accordion {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.accordion-item { border-bottom: 1px solid var(--gray-200); }
.accordion-item:last-child { border-bottom: none; }

.accordion-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding: 1.25rem 1.75rem;
  background: var(--white);
  cursor: pointer;
  text-align: left;
  transition: background 0.15s;
}
.accordion-trigger:hover { background: var(--gray-50); }

.accordion-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.975rem;
  color: var(--gray-900);
}
.accordion-icon {
  width: 20px; height: 20px;
  border: 1.5px solid var(--gray-300);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform 0.2s, border-color 0.2s;
}
.accordion-icon svg      { width: 10px; height: 10px; color: var(--gray-500); transition: color 0.2s; }
.accordion-item.open .accordion-icon { transform: rotate(45deg); border-color: var(--blue); }
.accordion-item.open .accordion-icon svg { color: var(--blue); }

.accordion-body { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.accordion-item.open .accordion-body { max-height: 800px; }
.accordion-body-inner {
  padding: 0 1.75rem 1.5rem;
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--gray-600);
}
.accordion-body-inner p + p { margin-top: 0.75rem; }

/* Tag inside accordion header â€” pull right */
.accordion-trigger .tag {
  margin-left: auto;
  margin-right: 0.75rem;
  flex-shrink: 0;
}

/* ----------------------------------------------------------
   INLINE CTA BAR
   Cream bg mirrors outer .cta-section wrapper tone.
   ---------------------------------------------------------- */
.cta-bar {
  background: var(--cream);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-xl);
  padding: 2rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.cta-bar-text h4 { margin-bottom: 0.35rem; }
.cta-bar-text p  { font-size: 0.9rem; color: var(--gray-600); margin: 0; }
.cta-bar-actions { display: flex; gap: 0.75rem; flex-shrink: 0; flex-wrap: wrap; }

/* ----------------------------------------------------------
   STAT STRIP (dark version â€” used on .technology / .strip bg)
   Mirrors .strip item cadence.
   ---------------------------------------------------------- */
.stat-strip-dark {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.stat-strip-item {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-xl);
  padding: 2rem 1.5rem;
  text-align: center;
}
.stat-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  color: var(--yellow);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.5); line-height: 1.4; }

/* ----------------------------------------------------------
   ROADMAP CARDS (platform page â€” dark bg, tiered opacity)
   Exact same surface as homepage hero-panel items.
   ---------------------------------------------------------- */
.roadmap-card {
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}
.roadmap-card-now {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
}
.roadmap-card-launch {
  background: rgba(240,169,65,0.12);
  border: 1px solid rgba(240,169,65,0.25);
}
.roadmap-card-future {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}
.roadmap-card h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.875rem;
  margin-bottom: 0.375rem;
}
.roadmap-card-now    h4 { color: var(--white); }
.roadmap-card-launch h4 { color: var(--yellow); }
.roadmap-card-future h4 { color: rgba(255,255,255,0.45); }
.roadmap-card p {
  font-size: 0.85rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.55);
  margin: 0;
}
.roadmap-card-future p { color: rgba(255,255,255,0.35); }
.roadmap-list { display: flex; flex-direction: column; gap: 1rem; }

/* ----------------------------------------------------------
   PROGRESS BAR (about page status panel â€” inside .tech-visual)
   ---------------------------------------------------------- */
.progress-list { display: flex; flex-direction: column; gap: 0; }
.progress-item {
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.progress-item:last-child { border-bottom: none; }
.progress-item-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}
.progress-item-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--white);
}
.progress-item-pct {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.4);
}
.progress-track {
  height: 5px;
  background: rgba(255,255,255,0.1);
  border-radius: 100px;
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  background: var(--blue-mid);
  border-radius: 100px;
}
.progress-fill-yellow { background: var(--yellow); }
.progress-item-note {
  font-size: 0.725rem;
  color: rgba(255,255,255,0.4);
  margin-top: 0.4rem;
}
.progress-footer {
  padding: 1.25rem 1.5rem;
  background: rgba(240,169,65,0.08);
  border-top: 1px solid rgba(240,169,65,0.15);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--yellow);
}

/* ============================================================
   CONTACT PAGE â€” DEFINITIVE
   Selector specificity strategy:
   - Left-side text: .hero.hero-contact .* = (0,2,0) beats body cascade
   - Form fields:    .contact-form .contact-input = (0,2,0)
   - !important on color/background/border ONLY â€” the 3 properties
     where browser UA uses :not() chains at (0,3,1) specificity.
   ============================================================ */

/* â”€â”€ Hero height â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.hero.hero-contact {
  min-height: 0;
  padding: 8rem 0 5rem;
  align-items: flex-start;
}

/* â”€â”€ Left column: light text on dark blue â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.hero.hero-contact .contact-trust {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 2rem;
}
.hero.hero-contact .contact-trust-item {
  display: flex;
  align-items: baseline;
  gap: 0.625rem;
  font-size: 0.875rem;
  line-height: 1.55;
  color: rgba(255,255,255,0.7);
}
.hero.hero-contact .contact-trust-item span {
  color: rgba(255,255,255,0.7);
}
.hero.hero-contact .contact-trust-dot {
  width: 5px;
  height: 5px;
  min-width: 5px;
  background: var(--yellow);
  border-radius: 50%;
  margin-top: 0.45em;
  flex-shrink: 0;
}
.hero.hero-contact .contact-commitment {
  margin-top: 1.5rem;
  font-size: 0.8rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.4);
  max-width: 420px;
}

/* â”€â”€ Form layout â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.contact-form {
  display: flex;
  flex-direction: column;
}
.contact-form .contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.contact-form .contact-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 0.75rem;
}
.contact-form .contact-field:last-of-type {
  margin-bottom: 0;
}

/* â”€â”€ Labels â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.contact-form .contact-label {
  display: block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  /* !important beats body color cascade on <label> */
  color: rgba(255,255,255,0.55) !important;
  line-height: 1;
  margin-bottom: 0.2rem;
}
.contact-form .contact-label-optional {
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.6rem;
  color: rgba(255,255,255,0.3) !important;
}

/* â”€â”€ Fields: .contact-input on every input/select/textarea â”€â”€ */
/* (0,2,0) specificity â€” higher than UA :not() chains */
.contact-form .contact-input {
  display: block;
  width: 100%;
  box-sizing: border-box;
  padding: 0.75rem 0.875rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  line-height: 1.4;
  border-radius: var(--radius-sm);
  transition: border-color 0.15s, background 0.15s;
  appearance: none;
  -webkit-appearance: none;
  color-scheme: dark;
  /* !important on the 3 properties browsers override */
  color: #ffffff !important;
  background: rgba(255,255,255,0.1) !important;
  border: 1px solid rgba(255,255,255,0.2) !important;
}
.contact-form .contact-input:focus {
  outline: none;
  border-color: rgba(255,255,255,0.5) !important;
  background: rgba(255,255,255,0.15) !important;
}
.contact-form .contact-input::placeholder {
  color: rgba(255,255,255,0.35) !important;
  opacity: 1;
}

/* Select options â€” dropdown list items */
.contact-form .contact-input option {
  background: #1e2229;
  color: #ffffff;
}

/* Select: custom chevron wrapper */
.contact-form .contact-select-wrap {
  position: relative;
  display: block;
}
.contact-form .contact-select-wrap::after {
  content: '';
  position: absolute;
  right: 0.875rem;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid rgba(255,255,255,0.45);
  pointer-events: none;
}
.contact-form .contact-select-wrap .contact-input {
  padding-right: 2.25rem;
  cursor: pointer;
  /* Ensure select fills wrapper */
  width: 100%;
}

/* Textarea */
.contact-form .contact-input.contact-textarea {
  resize: vertical;
  min-height: 90px;
  line-height: 1.55;
}

/* â”€â”€ Submit button â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.contact-form .contact-submit {
  width: 100%;
  justify-content: center;
  margin-top: 1rem;
  display: flex;
}

/* â”€â”€ Footer note â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.contact-form .contact-footer-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.875rem;
  padding-top: 0.875rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.675rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.4) !important;
}

/* â”€â”€ Responsive â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@media (max-width: 768px) {
  .contact-form .contact-form-row {
    grid-template-columns: 1fr;
  }
}

/* Footer logo â€” real SVG asset, filtered white for dark background */
.footer-logo-img {
  height: 28px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}


/* ============================================================
   MAILCHIMP FORM â€” scoped to .mc-form inside .hero-panel
   Replaces Mailchimp CDN stylesheet (classic-061523.css).
   All color values use existing site tokens.
   ============================================================ */

/* Field wrapper */
.mc-form .mc-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 0.75rem;
}

/* Labels */
.mc-form label {
  display: block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55) !important;
  -webkit-text-fill-color: rgba(255,255,255,0.55) !important;
  line-height: 1;
}
.mc-form .mc-required {
  color: var(--yellow);
  font-weight: 700;
}

/* All field types */
.mc-form input[type="text"],
.mc-form input[type="email"],
.mc-form select {
  display: block;
  width: 100%;
  box-sizing: border-box;
  padding: 0.75rem 0.875rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  line-height: 1.4;
  color: #ffffff !important;
  background: rgba(255,255,255,0.1) !important;
  border: 1px solid rgba(255,255,255,0.2) !important;
  border-radius: var(--radius-sm);
  transition: border-color 0.15s, background 0.15s;
  appearance: none;
  -webkit-appearance: none;
  color-scheme: dark;
}
.mc-form input[type="text"]:focus,
.mc-form input[type="email"]:focus,
.mc-form select:focus {
  outline: none;
  border-color: rgba(255,255,255,0.45) !important;
  background: rgba(255,255,255,0.15) !important;
}
.mc-form input::placeholder {
  color: rgba(255,255,255,0.35) !important;
  opacity: 1;
}
.mc-form select option {
  background: #1e2229;
  color: #ffffff;
}

/* Submit button â€” reuses existing .btn .btn-accent .btn-lg */
.mc-form .mc-submit {
  width: 100%;
  justify-content: center;
  margin-top: 1rem;
  display: flex;
}

/* Mailchimp error/success messages */
.mc-form #mce-error-response,
.mc-form #mce-success-response {
  padding: 0.625rem 0.875rem;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  margin-bottom: 0.75rem;
  display: none;
}
.mc-form #mce-error-response {
  background: rgba(220,38,38,0.15);
  border: 1px solid rgba(220,38,38,0.35);
  color: #fca5a5;
}
.mc-form #mce-success-response {
  background: rgba(74,222,128,0.12);
  border: 1px solid rgba(74,222,128,0.3);
  color: #86efac;
}


/* ============================================================
   TECHNOLOGY PAGE â€” hero layout
   Single-column hero (no data panel on right).
   Scoped so it does not affect index.html hero-inner.
   ============================================================ */
.tech-hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 780px;
  position: relative;
  z-index: 1;
}
.tech-hero-text {
  /* flex child of .tech-hero-inner â€” no explicit rules needed */
}


/* ============================================================
   APPLICATIONS PAGE â€” scoped additions
   All tokens reference existing CSS custom properties only.
   No root variables redefined.
   ============================================================ */

/* Bullet list â€” used in herd health and reproduction sections */
.apps-list {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.apps-list li {
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--gray-600);
  padding-left: 1.25rem;
  position: relative;
}
.apps-list li::before {
  content: 'â€”';
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: 600;
}

/* Tagline section â€” typography-driven, no icons */
.apps-tagline .apps-tagline-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.apps-tagline-kicker {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 1.5rem;
}
.apps-tagline-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  line-height: 1.1;
  color: var(--white);
  margin: 0 0 2rem;
  quotes: none;
}
.apps-tagline-body {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.5);
  max-width: 580px;
}

/* Platform flow â€” numbered cards on a 2Ã—2 grid */
.apps-flow-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 3rem;
}
.apps-flow-card {
  position: relative;
}
.apps-flow-card-accent {
  border-color: rgba(20,73,174,0.2);
  background: var(--blue-light);
}
.apps-flow-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  color: var(--gray-400);
  margin-bottom: 0.75rem;
}
.apps-flow-card-accent .apps-flow-num {
  color: var(--blue);
}
.apps-flow-card h4 {
  margin-bottom: 0.625rem;
}
.apps-flow-card p {
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--gray-500);
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .apps-flow-grid { grid-template-columns: 1fr; }
}


/* ============================================================
   PLATFORM PAGE â€” scoped additions
   All values use existing CSS custom properties.
   No root variables redefined. No global selectors.
   ============================================================ */

/* Trend chart summary row â€” below the SCC SVG visual */
.plat-trend-row {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1rem;
}
.plat-trend-stat {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.plat-trend-val {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
  line-height: 1;
}
.plat-trend-label {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}

/* Roles grid â€” 2x2 on desktop, same as audience-grid but 4-col cap */
.plat-roles-grid {
  grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 768px) {
  .plat-trend-row { gap: 1rem; }
  .plat-roles-grid { grid-template-columns: 1fr; }
}


/* ============================================================
   ABOUT PAGE â€” scoped additions (v2)
   All values use existing CSS custom properties only.
   No root variables redefined. No global selectors modified.
   ============================================================ */

/* â”€â”€ Capability grid â€” 2x2 under "Why We Exist" â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   Light section (.section.product, white bg).
   Bordered cards â€” restrained, scientific, breathable.        */

.about-capability-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--gray-200);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-top: clamp(2.5rem, 4vw, 3.5rem);
}
.about-capability-card {
  background: var(--white);
  padding: 1.75rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}
.about-capability-name {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-500);
}
.about-capability-value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--blue);
  line-height: 1.2;
  margin-bottom: 0.25rem;
}
.about-capability-desc {
  font-size: 0.85rem;
  line-height: 1.65;
  color: var(--gray-600);
  margin: 0;
}
.about-capability-note {
  font-size: 0.8rem;
  line-height: 1.65;
  color: var(--gray-500);
  text-align: center;
  max-width: 620px;
  margin: 1.5rem auto 0;
}

/* â”€â”€ Roadmap stage list â€” improved contrast â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   Lives inside .tech-visual (dark glass surface, --gray-900).
   Previous version was too dim. These values are still
   restrained but legible at normal reading distance.          */

.about-stage-list {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;      /* increased from 1.25rem */
}
.about-stage-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;         /* increased from 0.875rem */
}

/* Active indicator â€” yellow dot, current stage */
.about-stage-indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--yellow);
  flex-shrink: 0;
  margin-top: 0.35rem;
  box-shadow: 0 0 0 3px rgba(240,169,65,0.2);
}
/* Next stage â€” visible but clearly not current */
.about-stage-indicator-muted {
  background: rgba(255,255,255,0.35);
  box-shadow: none;
}
/* Future stage â€” outline only */
.about-stage-indicator-future {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.2);
  box-shadow: none;
}

.about-stage-content { flex: 1; }

/* Stage title â€” active stage: full white */
.about-stage-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.875rem;   /* up from 0.825rem */
  color: var(--white);
  margin-bottom: 0.375rem;  /* up from 0.25rem */
  line-height: 1.2;
}
/* Non-active stages â€” clear but subordinate */
.about-stage-item:not(.about-stage-active) .about-stage-title {
  color: rgba(255,255,255,0.82);
}
.about-stage-future .about-stage-title {
  color: rgba(255,255,255,0.55);
}

/* Stage description â€” active stage: readable */
.about-stage-desc {
  font-size: 0.8rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.72);
}
.about-stage-active .about-stage-desc {
  color: rgba(255,255,255,0.88);
}

/* â”€â”€ Responsive â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@media (max-width: 768px) {
  .about-capability-grid { grid-template-columns: 1fr; }
}
/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  --blue:        #1449AE;
  --blue-dark:   #0D3580;
  --blue-mid:    #1E55C4;
  --blue-light:  #E8EFFE;
  --blue-dim:    rgba(20,73,174,0.08);
  --yellow:      #F0A941;
  --yellow-dark: #C8871A;
  --yellow-light:#FDF3E2;
  --cream:       #F9F1E6;
  --cream-dark:  #EFE3CC;
  --white:       #FFFFFF;
  --gray-900:    #0F1218;
  --gray-800:    #1E2229;
  --gray-700:    #353C47;
  --gray-600:    #4D5566;
  --gray-500:    #6B7589;
  --gray-400:    #9AA3B2;
  --gray-300:    #C8CDD6;
  --gray-200:    #E4E7EC;
  --gray-100:    #F4F5F7;
  --gray-50:     #FAFBFC;

  --font-display: 'Rubik', sans-serif;
  --font-body:    'Figtree', sans-serif;

  --radius-sm:  6px;
  --radius-md:  10px;
  --radius-lg:  16px;
  --radius-xl:  24px;
  --radius-2xl: 36px;
  --radius-pill:9999px;

  --shadow-sm: 0 1px 4px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08), 0 1px 4px rgba(0,0,0,0.04);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.10);
  --shadow-blue: 0 8px 32px rgba(20,73,174,0.22);

  --gutter: clamp(1.25rem, 5vw, 2.5rem);
  --max-w:  1200px;

  --ease-spring: cubic-bezier(0.34,1.56,0.64,1);
}

/* ============================================================
   RESET
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--gray-800);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ============================================================
   UTILITIES
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* eyebrow */
.eyebrow {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.6875rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--blue);
  display: block;
  margin-bottom: 0.75rem;
}
.eyebrow-yellow { color: var(--yellow); }
.eyebrow-muted  { color: rgba(255,255,255,0.55); }

/* accent bar */
.accent-bar {
  display: block;
  width: 40px; height: 4px;
  background: var(--yellow);
  border-radius: var(--radius-pill);
  margin: 0.75rem 0 1.25rem;
}
.accent-bar-center { margin: 0.75rem auto 1.25rem; }

/* section rhythm */
.section { padding: clamp(5rem,9vw,8rem) 0; }
.section-sm { padding: clamp(3.5rem,6vw,5rem) 0; }

.section-header {
  max-width: 660px;
  margin: 0 auto clamp(3rem,5vw,4.5rem);
  text-align: center;
}

/* headings */
h1, .h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.5rem,6vw,4rem);
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--gray-900);
}
h2, .h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.875rem,4vw,2.75rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--gray-900);
}
h3, .h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.25rem,2.5vw,1.625rem);
  line-height: 1.25;
  color: var(--gray-900);
}
h4, .h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.3;
  color: var(--gray-900);
}

.text-white, .text-white h1, .text-white h2,
.text-white h3, .text-white h4 { color: var(--white); }

.lead {
  font-size: clamp(1.05rem,2vw,1.2rem);
  line-height: 1.75;
  color: var(--gray-600);
}

/* tags */
.tag {
  display: inline-flex;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.6rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}
.tag-blue   { background: var(--blue-light); color: var(--blue); }
.tag-yellow { background: var(--yellow-light); color: var(--yellow-dark); }
.tag-cream  { background: var(--cream); color: var(--gray-600); }

/* buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.75rem 1.625rem;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.15s, box-shadow 0.2s;
  white-space: nowrap;
  cursor: pointer;
  line-height: 1;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: none; }

.btn-primary {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  box-shadow: var(--shadow-blue);
}
.btn-secondary {
  background: transparent;
  border-color: var(--blue);
  color: var(--blue);
}
.btn-secondary:hover { background: var(--blue-light); }

.btn-ghost {
  background: transparent;
  border-color: rgba(255,255,255,0.35);
  color: var(--white);
}
.btn-ghost:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.65); }

.btn-accent {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--gray-900);
}
.btn-accent:hover { background: var(--yellow-dark); border-color: var(--yellow-dark); }

.btn-lg {
  font-size: 0.75rem;
  padding: 1rem 2rem;
  border-radius: var(--radius-lg);
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

/* arrow suffix */
.arr::after {
  content: '→';
  font-size: 1em;
  transition: transform 0.15s;
}
.btn:hover .arr::after,
.arr:hover::after { transform: translateX(3px); }

/* cards */
.card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 2rem;
  transition: box-shadow 0.25s, transform 0.25s;
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

/* icon mark */
.icon-mark {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-md);
  background: var(--blue-light);
  margin-bottom: 1.25rem;
  flex-shrink: 0;
}
.icon-mark svg { width: 22px; height: 22px; color: var(--blue); }
.icon-mark-yellow { background: var(--yellow-light); }
.icon-mark-yellow svg { color: var(--yellow-dark); }

/* grid helpers */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }

/* fade-in animation */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: none; }
.fade-up:nth-child(2) { transition-delay: 0.08s; }
.fade-up:nth-child(3) { transition-delay: 0.16s; }
.fade-up:nth-child(4) { transition-delay: 0.24s; }
.fade-up:nth-child(5) { transition-delay: 0.32s; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
  transition: box-shadow 0.25s;
}
.nav.scrolled { box-shadow: var(--shadow-sm); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 2rem;
}

/* Logo mark text (replace with <img> for real logo) */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

/* Full logo lockup — SVG contains both mark and wordmark */
.nav-logo-img {
  height: 36px;
  width: auto;
  display: block;
}

.nav-logo-mark { display: none; }
.nav-logo-mark svg { width: 18px; height: 18px; color: var(--white); }
.nav-logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--gray-900);
  letter-spacing: -0.01em;
  display: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}
.nav-link {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.8125rem;
  color: var(--gray-600);
  letter-spacing: 0.02em;
  padding: 0.25rem 0;
  border-bottom: 2px solid transparent;
  transition: color 0.15s, border-color 0.15s;
}
.nav-link:hover, .nav-link.active {
  color: var(--blue);
  border-bottom-color: var(--blue);
}

.nav-actions { display: flex; align-items: center; gap: 0.75rem; flex-shrink: 0; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  background: var(--blue);
  display: flex;
  align-items: center;
  padding: 7rem 0 5rem;
  position: relative;
  overflow: hidden;
}

/* Decorative grid overlay */
.hero::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: 60px 60px;
  pointer-events: none;
}

/* Decorative glow blob */
.hero::after {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 55%;
  height: 90%;
  background: radial-gradient(ellipse at center, rgba(240,169,65,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem,5vw,5rem);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-pill);
  padding: 0.35rem 0.875rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 1.5rem;
}
.hero-eyebrow-dot {
  width: 6px; height: 6px;
  background: var(--yellow);
  border-radius: 50%;
}

.hero-headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.75rem,5.5vw,4.5rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.hero-headline em {
  font-style: normal;
  color: var(--yellow);
}

.hero-sub {
  font-size: clamp(1rem,1.8vw,1.175rem);
  line-height: 1.75;
  color: rgba(255,255,255,0.72);
  max-width: 520px;
  margin-bottom: 2.5rem;
}

/* Hero data visualization panel */
.hero-panel {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  position: relative;
}

.hero-panel-label {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.625rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.hero-panel-label-dot {
  width: 6px; height: 6px;
  background: var(--yellow);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

.hero-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0.875rem;
  margin-bottom: 1.25rem;
}

.hero-metric {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius-md);
  padding: 1rem 0.875rem;
}
.hero-metric-name {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 0.35rem;
}
.hero-metric-val {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--white);
  line-height: 1;
}
.hero-metric-unit {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.45);
  margin-top: 0.2rem;
}
.hero-metric-trend {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  font-size: 0.6rem;
  font-weight: 600;
  color: #4ade80;
  background: rgba(74,222,128,0.12);
  padding: 2px 5px;
  border-radius: 3px;
  margin-top: 0.3rem;
}
.hero-metric-trend.warn { color: var(--yellow); background: rgba(240,169,65,0.15); }

/* Inline sparkline SVG bars */
.sparkline {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  height: 28px;
  margin-top: 0.75rem;
}
.sparkline-bar {
  flex: 1;
  background: rgba(255,255,255,0.15);
  border-radius: 2px 2px 0 0;
  transition: background 0.2s;
}
.sparkline-bar.hi { background: rgba(240,169,65,0.6); }
.sparkline-bar.active { background: rgba(255,255,255,0.55); }

.hero-panel-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.675rem;
  color: rgba(255,255,255,0.4);
  font-weight: 500;
  letter-spacing: 0.04em;
}

/* ============================================================
   CREDENTIAL STRIP
   ============================================================ */
.strip {
  background: var(--gray-900);
  padding: 1.375rem 0;
}
.strip-inner {
  display: flex;
  align-items: center;
  gap: 0;
}
.strip-label {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  white-space: nowrap;
  padding-right: 2rem;
  border-right: 1px solid rgba(255,255,255,0.1);
  margin-right: 2rem;
  flex-shrink: 0;
}
.strip-items {
  display: flex;
  align-items: center;
  gap: 0;
  flex: 1;
  overflow: hidden;
}
.strip-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.7);
  padding: 0 2rem;
  border-right: 1px solid rgba(255,255,255,0.08);
  white-space: nowrap;
}
.strip-item:first-child { padding-left: 0; }
.strip-item:last-child { border-right: none; }
.strip-dot {
  width: 6px; height: 6px;
  background: var(--yellow);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ============================================================
   PROBLEM SECTION
   ============================================================ */
.problem { background: var(--gray-50); }

.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem,6vw,6rem);
  align-items: center;
}

.problem-text h2 { margin-bottom: 1.25rem; }
.problem-text p {
  font-size: 1.025rem;
  line-height: 1.8;
  color: var(--gray-600);
  margin-bottom: 1.125rem;
}
.problem-text p:last-child { margin-bottom: 0; }

.problem-contrast {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.contrast-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.contrast-col {
  padding: 1.75rem;
}
.contrast-col:first-child {
  border-right: 1px solid var(--gray-200);
  background: var(--gray-50);
}
.contrast-col-label {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.contrast-col-label-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
}
.dot-gray { background: var(--gray-300); }
.dot-blue { background: var(--blue); }

.contrast-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 0.75rem;
  font-size: 0.825rem;
  color: var(--gray-600);
  line-height: 1.5;
}
.contrast-item:last-child { margin-bottom: 0; }
.contrast-item-icon {
  width: 16px; height: 16px;
  flex-shrink: 0;
  margin-top: 1px;
}
.contrast-item-icon.x { color: var(--gray-400); }
.contrast-item-icon.check { color: var(--blue); }

.contrast-divider {
  height: 1px;
  background: var(--gray-200);
}

/* ============================================================
   PRODUCT INTRO
   ============================================================ */
.product { background: var(--white); }

.product-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem,6vw,6rem);
  align-items: center;
  margin-bottom: clamp(3.5rem,6vw,5rem);
}

.product-intro-text h2 { margin-bottom: 1.25rem; }
.product-intro-text p {
  font-size: 1.025rem;
  line-height: 1.8;
  color: var(--gray-600);
  margin-bottom: 1.125rem;
}

/* Device mockup */
.device-wrap {
  background: var(--blue);
  border-radius: var(--radius-xl);
  padding: 2rem;
  aspect-ratio: 4/3;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}
.device-wrap::before {
  content: '';
  position: absolute; inset: 0;
  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: 40px 40px;
}
.device-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative; z-index: 1;
}
.device-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.device-status {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #4ade80;
  text-transform: uppercase;
}
.device-status-dot {
  width: 6px; height: 6px;
  background: #4ade80;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.device-spectrum {
  position: relative; z-index: 1;
  margin: 0.5rem 0;
}
.spectrum-svg { width: 100%; height: 70px; }

.device-readings {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  position: relative; z-index: 1;
}
.device-reading {
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  padding: 0.625rem 0.75rem;
}
.device-reading-label {
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 0.25rem;
}
.device-reading-val {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
  line-height: 1;
}
.device-reading-unit {
  font-size: 0.575rem;
  color: rgba(255,255,255,0.4);
  margin-top: 0.15rem;
}

/* 3-col feature cards below product intro */
.product-features { }
.feature-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-top: 3px solid transparent;
  border-radius: 0 0 var(--radius-xl) var(--radius-xl);
  padding: 1.75rem;
  transition: border-top-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.feature-card:hover {
  border-top-color: var(--blue);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.feature-card h4 { margin: 1rem 0 0.6rem; }
.feature-card p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--gray-600);
}

/* ============================================================
   APPLICATIONS
   ============================================================ */
.applications { background: var(--cream); }

.app-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }

.app-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
}
.app-card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.app-card-tag { margin-bottom: 1rem; }
.app-card h4 { margin-bottom: 0.625rem; }
.app-card p {
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--gray-600);
  flex: 1;
  margin-bottom: 1.25rem;
}
.app-card-stat {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--blue);
  line-height: 1.2;
  margin-bottom: 0.25rem;
}
.app-card-stat-label {
  font-size: 0.7rem;
  color: var(--gray-500);
  margin-bottom: 1.25rem;
}
.app-card-link {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  display: flex;
  align-items: center;
  gap: 0.3rem;
  transition: gap 0.15s;
}
.app-card:hover .app-card-link { gap: 0.55rem; }

/* ============================================================
   ROI SECTION
   ============================================================ */
.roi { background: var(--blue); }

.roi-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem,6vw,6rem);
  align-items: start;
}

.roi-text h2 { color: var(--white); margin-bottom: 1.25rem; }
.roi-text h2 em { font-style: normal; color: var(--yellow); }
.roi-text p {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.68);
  margin-bottom: 2rem;
}

.roi-table-wrap {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.roi-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.8375rem;
}
.roi-table th {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.575rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  padding: 0.875rem 1.25rem;
  text-align: left;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.roi-table th:not(:first-child) { text-align: right; }
.roi-table td {
  padding: 0.75rem 1.25rem;
  color: rgba(255,255,255,0.78);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 0.825rem;
}
.roi-table td:not(:first-child) { text-align: right; }
.roi-table tbody tr:last-child td { border-bottom: none; }
.roi-table .row-total {
  background: rgba(255,255,255,0.07);
  border-top: 1px solid rgba(255,255,255,0.12) !important;
}
.roi-table .row-total td {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--yellow);
  border-bottom: none;
  padding: 1rem 1.25rem;
}
.roi-table .row-cost td { color: rgba(255,255,255,0.45); font-size: 0.775rem; }
.roi-table .row-sub td {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--white);
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* ============================================================
   AUDIENCE SECTION
   ============================================================ */
.audience { background: var(--white); }

.audience-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.audience-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 2rem;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}
.audience-card:hover {
  border-color: var(--blue);
  background: var(--blue-light);
  box-shadow: var(--shadow-sm);
}
.audience-card-role {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.75rem;
}
.audience-card h4 { margin-bottom: 0.75rem; }
.audience-card p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--gray-600);
  margin-bottom: 1rem;
}
.audience-card-benefit {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.775rem;
  font-weight: 600;
  color: var(--blue);
  padding: 0.5rem 0.875rem;
  background: rgba(20,73,174,0.07);
  border-radius: var(--radius-pill);
  width: fit-content;
  margin-bottom: 1rem;
}
.audience-card-link {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.625rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  display: flex;
  align-items: center;
  gap: 0.3rem;
  transition: gap 0.15s;
}
.audience-card:hover .audience-card-link { gap: 0.55rem; }

/* ============================================================
   TECHNOLOGY SNIPPET
   ============================================================ */
.technology { background: var(--gray-900); }

.tech-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem,6vw,6rem);
  align-items: center;
}

.tech-text .eyebrow { color: var(--yellow); }
.tech-text h2 { color: var(--white); margin-bottom: 1.25rem; }
.tech-text p {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.62);
  margin-bottom: 2rem;
}

.tech-visual {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius-xl);
  padding: 2rem;
}
.tech-vis-label {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 1.5rem;
}
.spectrum-full-svg { width: 100%; height: 120px; }
.tech-vis-legend {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}
.legend-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.65rem;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
}
.legend-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* ============================================================
   INSIGHTS SECTION
   ============================================================ */
.insights { background: var(--white); }

.insights-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

.insight-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: box-shadow 0.25s, transform 0.25s;
}
.insight-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

.insight-card-top {
  background: var(--blue-light);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 110px;
}
.insight-card-icon {
  width: 48px; height: 48px;
  background: var(--blue);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
}
.insight-card-icon svg { width: 22px; height: 22px; color: var(--white); }

.insight-card-body { padding: 1.5rem; }
.insight-card-body .tag { margin-bottom: 0.875rem; }
.insight-card-body h4 { margin-bottom: 0.625rem; font-size: 1rem; }
.insight-card-body p {
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--gray-600);
  margin-bottom: 1.25rem;
}
.insight-link {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.625rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  display: flex;
  align-items: center;
  gap: 0.3rem;
  transition: gap 0.15s;
}
.insight-card:hover .insight-link { gap: 0.55rem; }

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: var(--cream);
  padding: clamp(4rem,7vw,6.5rem) 0;
}
.cta-box {
  background: var(--blue);
  border-radius: var(--radius-2xl);
  padding: clamp(3rem,5vw,5rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-box::before {
  content: '';
  position: absolute; inset: 0;
  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;
}
.cta-box > * { position: relative; z-index: 1; }
.cta-box h2 {
  color: var(--white);
  font-size: clamp(1.875rem,4vw,2.75rem);
  margin-bottom: 1rem;
}
.cta-box p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.68);
  max-width: 600px;
  margin: 0 auto 2.5rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--gray-900);
  padding: 4rem 0 2rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand {}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.footer-logo-mark {
  width: 32px; height: 32px;
  background: var(--blue);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
}
.footer-logo-mark svg { width: 16px; height: 16px; color: var(--white); }
.footer-logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--white);
}
.footer-tagline {
  font-size: 0.825rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.4);
  max-width: 280px;
  margin-bottom: 1.5rem;
}
.footer-col-title {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 1.25rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.625rem; }
.footer-link {
  font-size: 0.825rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.15s;
}
.footer-link:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-copy {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.28);
}
.footer-legal {
  display: flex;
  gap: 1.5rem;
}
.footer-legal a {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.28);
  transition: color 0.15s;
}
.footer-legal a:hover { color: rgba(255,255,255,0.6); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  /* Hide decorative data panel on non-contact pages only */
  .hero:not(.hero-contact) .hero-panel { display: none; }
  .hero { min-height: auto; padding: 8rem 0 5rem; }
  .problem-grid { grid-template-columns: 1fr; }
  .product-intro { grid-template-columns: 1fr; }
  .device-wrap { display: none; }
  .app-grid { grid-template-columns: repeat(2, 1fr); }
  .roi-inner { grid-template-columns: 1fr; }
  .tech-inner { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .app-grid { grid-template-columns: 1fr; }
  .audience-grid { grid-template-columns: 1fr; }
  .insights-grid { grid-template-columns: 1fr; }
  .strip-inner { flex-direction: column; align-items: flex-start; gap: 0.875rem; }
  .strip-items { flex-wrap: wrap; gap: 0.75rem; }
  .strip-item { padding: 0; border: none; }
  .strip-label { border: none; padding: 0; margin: 0; }
  .section-header { text-align: left; }
  .accent-bar-center { margin-left: 0; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .hero-sub { max-width: 100%; }
}


/* ============================================================
   INNER-PAGE EXTENSIONS
   Every rule below is derived directly from the homepage design
   system above. No new design language is introduced.
   ============================================================ */

/* ----------------------------------------------------------
   PAGE HERO
   Same visual as .hero: --blue bg, grid overlay ::before,
   glow blob ::after, eyebrow-yellow, white h1/lead.
   Shorter than homepage hero (no 100vh).
   ---------------------------------------------------------- */
.page-hero {
  background: var(--blue);
  padding: clamp(7rem, 10vw, 9rem) 0 clamp(3.5rem, 5vw, 5rem);
  position: relative;
  overflow: hidden;
}
.page-hero::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: 60px 60px;
  pointer-events: none;
}
.page-hero::after {
  content: '';
  position: absolute;
  top: -30%; right: -5%;
  width: 45%; height: 120%;
  background: radial-gradient(ellipse at center, rgba(240,169,65,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 780px;
}
.page-hero .eyebrow { color: var(--yellow); margin-bottom: 0.75rem; }
.page-hero h1 {
  color: var(--white);
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  margin-bottom: 1.25rem;
}
.page-hero .lead { color: rgba(255,255,255,0.7); max-width: 620px; }

/* Breadcrumb — same type scale as .strip-label */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.6875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.04em;
  margin-bottom: 1.5rem;
}
.breadcrumb a          { color: rgba(255,255,255,0.55); transition: color 0.15s; }
.breadcrumb a:hover    { color: var(--white); }
.breadcrumb-sep        { color: rgba(255,255,255,0.25); }

/* ----------------------------------------------------------
   SECTION BACKGROUND HELPERS
   Mirrors homepage: .problem = gray-50, .applications = cream,
   etc. Inner pages need these via class, not inline style.
   ---------------------------------------------------------- */
.bg-white   { background: var(--white); }
.bg-gray-50 { background: var(--gray-50); }
.bg-cream   { background: var(--cream); }
.bg-blue    { background: var(--blue); }
.bg-dark    { background: var(--gray-900); }

/* ----------------------------------------------------------
   SPLIT SECTION
   Mirrors .product-intro and .tech-inner grid pattern exactly:
   two columns, large gap, align center.
   ---------------------------------------------------------- */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}
.split-section.reverse > *:first-child { order: 2; }
.split-section.reverse > *:last-child  { order: 1; }
.split-text h2               { margin-bottom: 1.25rem; }
.split-text p                { font-size: 1.025rem; line-height: 1.8; color: var(--gray-600); margin-bottom: 1.125rem; }
.split-text p:last-of-type   { margin-bottom: 1.5rem; }

/* ----------------------------------------------------------
   DATA PANEL (inside .tech-visual surface)
   Mirrors .device-reading cells exactly.
   ---------------------------------------------------------- */
.panel-label {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.panel-label-dot {
  width: 6px; height: 6px;
  background: var(--yellow);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
.data-cell {
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  padding: 0.75rem;
  position: relative;
}
.data-cell-label {
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 0.25rem;
}
.data-cell-val {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
  line-height: 1;
}
.data-cell-trend {
  display: inline-flex;
  align-items: center;
  font-size: 0.6rem;
  font-weight: 600;
  color: #4ade80;
  background: rgba(74,222,128,0.12);
  padding: 2px 5px;
  border-radius: 3px;
  margin-top: 0.25rem;
}
.data-cell-trend.warn { color: var(--yellow); background: rgba(240,169,65,0.15); }

/* .data-grid — used inside tech-visual panels */
.data-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.625rem;
}
.data-grid-note {
  font-size: 0.575rem;
  color: rgba(255,255,255,0.25);
  text-align: center;
  margin-top: 1rem;
}

/* ----------------------------------------------------------
   SPEC TABLE
   On white bg; header mirrors .roi-table th scale/tracking.
   ---------------------------------------------------------- */
.spec-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}
.spec-table th {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.625rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-500);
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 2px solid var(--gray-200);
}
.spec-table td {
  padding: 0.875rem 1rem;
  color: var(--gray-700);
  border-bottom: 1px solid var(--gray-100);
  line-height: 1.5;
}
.spec-table tr:last-child td { border-bottom: none; }
.td-label { font-weight: 600; color: var(--gray-800); }
.td-val   { color: var(--blue); font-weight: 600; }

/* Card with table inside — no padding, overflow hidden */
.card-table { padding: 0; overflow: hidden; }
.card-table-header {
  padding: 1.25rem 1.75rem;
  border-bottom: 1px solid var(--gray-200);
}
.card-table-header .eyebrow { margin-bottom: 0; }
.card-table-footer {
  padding: 0.875rem 1.75rem;
  background: var(--gray-50);
  border-top: 1px solid var(--gray-200);
  font-size: 0.75rem;
  color: var(--gray-500);
}

/* ----------------------------------------------------------
   ACCORDION
   Opens like .contrast-col; same border/bg cadence.
   ---------------------------------------------------------- */
.accordion {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.accordion-item { border-bottom: 1px solid var(--gray-200); }
.accordion-item:last-child { border-bottom: none; }

.accordion-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding: 1.25rem 1.75rem;
  background: var(--white);
  cursor: pointer;
  text-align: left;
  transition: background 0.15s;
}
.accordion-trigger:hover { background: var(--gray-50); }

.accordion-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.975rem;
  color: var(--gray-900);
}
.accordion-icon {
  width: 20px; height: 20px;
  border: 1.5px solid var(--gray-300);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform 0.2s, border-color 0.2s;
}
.accordion-icon svg      { width: 10px; height: 10px; color: var(--gray-500); transition: color 0.2s; }
.accordion-item.open .accordion-icon { transform: rotate(45deg); border-color: var(--blue); }
.accordion-item.open .accordion-icon svg { color: var(--blue); }

.accordion-body { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.accordion-item.open .accordion-body { max-height: 800px; }
.accordion-body-inner {
  padding: 0 1.75rem 1.5rem;
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--gray-600);
}
.accordion-body-inner p + p { margin-top: 0.75rem; }

/* Tag inside accordion header — pull right */
.accordion-trigger .tag {
  margin-left: auto;
  margin-right: 0.75rem;
  flex-shrink: 0;
}

/* ----------------------------------------------------------
   INLINE CTA BAR
   Cream bg mirrors outer .cta-section wrapper tone.
   ---------------------------------------------------------- */
.cta-bar {
  background: var(--cream);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-xl);
  padding: 2rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.cta-bar-text h4 { margin-bottom: 0.35rem; }
.cta-bar-text p  { font-size: 0.9rem; color: var(--gray-600); margin: 0; }
.cta-bar-actions { display: flex; gap: 0.75rem; flex-shrink: 0; flex-wrap: wrap; }

/* ----------------------------------------------------------
   STAT STRIP (dark version — used on .technology / .strip bg)
   Mirrors .strip item cadence.
   ---------------------------------------------------------- */
.stat-strip-dark {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.stat-strip-item {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-xl);
  padding: 2rem 1.5rem;
  text-align: center;
}
.stat-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  color: var(--yellow);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.5); line-height: 1.4; }

/* ----------------------------------------------------------
   ROADMAP CARDS (platform page — dark bg, tiered opacity)
   Exact same surface as homepage hero-panel items.
   ---------------------------------------------------------- */
.roadmap-card {
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}
.roadmap-card-now {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
}
.roadmap-card-launch {
  background: rgba(240,169,65,0.12);
  border: 1px solid rgba(240,169,65,0.25);
}
.roadmap-card-future {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}
.roadmap-card h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.875rem;
  margin-bottom: 0.375rem;
}
.roadmap-card-now    h4 { color: var(--white); }
.roadmap-card-launch h4 { color: var(--yellow); }
.roadmap-card-future h4 { color: rgba(255,255,255,0.45); }
.roadmap-card p {
  font-size: 0.85rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.55);
  margin: 0;
}
.roadmap-card-future p { color: rgba(255,255,255,0.35); }
.roadmap-list { display: flex; flex-direction: column; gap: 1rem; }

/* ----------------------------------------------------------
   PROGRESS BAR (about page status panel — inside .tech-visual)
   ---------------------------------------------------------- */
.progress-list { display: flex; flex-direction: column; gap: 0; }
.progress-item {
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.progress-item:last-child { border-bottom: none; }
.progress-item-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}
.progress-item-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--white);
}
.progress-item-pct {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.4);
}
.progress-track {
  height: 5px;
  background: rgba(255,255,255,0.1);
  border-radius: 100px;
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  background: var(--blue-mid);
  border-radius: 100px;
}
.progress-fill-yellow { background: var(--yellow); }
.progress-item-note {
  font-size: 0.725rem;
  color: rgba(255,255,255,0.4);
  margin-top: 0.4rem;
}
.progress-footer {
  padding: 1.25rem 1.5rem;
  background: rgba(240,169,65,0.08);
  border-top: 1px solid rgba(240,169,65,0.15);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--yellow);
}

/* ============================================================
   CONTACT PAGE — DEFINITIVE
   Selector specificity strategy:
   - Left-side text: .hero.hero-contact .* = (0,2,0) beats body cascade
   - Form fields:    .contact-form .contact-input = (0,2,0)
   - !important on color/background/border ONLY — the 3 properties
     where browser UA uses :not() chains at (0,3,1) specificity.
   ============================================================ */

/* ── Hero height ─────────────────────────────────────────── */
.hero.hero-contact {
  min-height: 0;
  padding: 8rem 0 5rem;
  align-items: flex-start;
}

/* ── Left column: light text on dark blue ────────────────── */
.hero.hero-contact .contact-trust {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 2rem;
}
.hero.hero-contact .contact-trust-item {
  display: flex;
  align-items: baseline;
  gap: 0.625rem;
  font-size: 0.875rem;
  line-height: 1.55;
  color: rgba(255,255,255,0.7);
}
.hero.hero-contact .contact-trust-item span {
  color: rgba(255,255,255,0.7);
}
.hero.hero-contact .contact-trust-dot {
  width: 5px;
  height: 5px;
  min-width: 5px;
  background: var(--yellow);
  border-radius: 50%;
  margin-top: 0.45em;
  flex-shrink: 0;
}
.hero.hero-contact .contact-commitment {
  margin-top: 1.5rem;
  font-size: 0.8rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.4);
  max-width: 420px;
}

/* ── Form layout ─────────────────────────────────────────── */
.contact-form {
  display: flex;
  flex-direction: column;
}
.contact-form .contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.contact-form .contact-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 0.75rem;
}
.contact-form .contact-field:last-of-type {
  margin-bottom: 0;
}

/* ── Labels ──────────────────────────────────────────────── */
.contact-form .contact-label {
  display: block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  /* !important beats body color cascade on <label> */
  color: rgba(255,255,255,0.55) !important;
  line-height: 1;
  margin-bottom: 0.2rem;
}
.contact-form .contact-label-optional {
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.6rem;
  color: rgba(255,255,255,0.3) !important;
}

/* ── Fields: .contact-input on every input/select/textarea ── */
/* (0,2,0) specificity — higher than UA :not() chains */
.contact-form .contact-input {
  display: block;
  width: 100%;
  box-sizing: border-box;
  padding: 0.75rem 0.875rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  line-height: 1.4;
  border-radius: var(--radius-sm);
  transition: border-color 0.15s, background 0.15s;
  appearance: none;
  -webkit-appearance: none;
  color-scheme: dark;
  /* !important on the 3 properties browsers override */
  color: #ffffff !important;
  background: rgba(255,255,255,0.1) !important;
  border: 1px solid rgba(255,255,255,0.2) !important;
}
.contact-form .contact-input:focus {
  outline: none;
  border-color: rgba(255,255,255,0.5) !important;
  background: rgba(255,255,255,0.15) !important;
}
.contact-form .contact-input::placeholder {
  color: rgba(255,255,255,0.35) !important;
  opacity: 1;
}

/* Select options — dropdown list items */
.contact-form .contact-input option {
  background: #1e2229;
  color: #ffffff;
}

/* Select: custom chevron wrapper */
.contact-form .contact-select-wrap {
  position: relative;
  display: block;
}
.contact-form .contact-select-wrap::after {
  content: '';
  position: absolute;
  right: 0.875rem;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid rgba(255,255,255,0.45);
  pointer-events: none;
}
.contact-form .contact-select-wrap .contact-input {
  padding-right: 2.25rem;
  cursor: pointer;
  /* Ensure select fills wrapper */
  width: 100%;
}

/* Textarea */
.contact-form .contact-input.contact-textarea {
  resize: vertical;
  min-height: 90px;
  line-height: 1.55;
}

/* ── Submit button ────────────────────────────────────────── */
.contact-form .contact-submit {
  width: 100%;
  justify-content: center;
  margin-top: 1rem;
  display: flex;
}

/* ── Footer note ─────────────────────────────────────────── */
.contact-form .contact-footer-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.875rem;
  padding-top: 0.875rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.675rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.4) !important;
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 768px) {
  .contact-form .contact-form-row {
    grid-template-columns: 1fr;
  }
}

/* Footer logo — real SVG asset, filtered white for dark background */
.footer-logo-img {
  height: 28px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}


/* ============================================================
   MAILCHIMP FORM — scoped to .mc-form inside .hero-panel
   Replaces Mailchimp CDN stylesheet (classic-061523.css).
   All color values use existing site tokens.
   ============================================================ */

/* Field wrapper */
.mc-form .mc-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 0.75rem;
}

/* Labels */
.mc-form label {
  display: block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55) !important;
  -webkit-text-fill-color: rgba(255,255,255,0.55) !important;
  line-height: 1;
}
.mc-form .mc-required {
  color: var(--yellow);
  font-weight: 700;
}

/* All field types */
.mc-form input[type="text"],
.mc-form input[type="email"],
.mc-form select {
  display: block;
  width: 100%;
  box-sizing: border-box;
  padding: 0.75rem 0.875rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  line-height: 1.4;
  color: #ffffff !important;
  background: rgba(255,255,255,0.1) !important;
  border: 1px solid rgba(255,255,255,0.2) !important;
  border-radius: var(--radius-sm);
  transition: border-color 0.15s, background 0.15s;
  appearance: none;
  -webkit-appearance: none;
  color-scheme: dark;
}
.mc-form input[type="text"]:focus,
.mc-form input[type="email"]:focus,
.mc-form select:focus {
  outline: none;
  border-color: rgba(255,255,255,0.45) !important;
  background: rgba(255,255,255,0.15) !important;
}
.mc-form input::placeholder {
  color: rgba(255,255,255,0.35) !important;
  opacity: 1;
}
.mc-form select option {
  background: #1e2229;
  color: #ffffff;
}

/* Submit button — reuses existing .btn .btn-accent .btn-lg */
.mc-form .mc-submit {
  width: 100%;
  justify-content: center;
  margin-top: 1rem;
  display: flex;
}

/* Mailchimp error/success messages */
.mc-form #mce-error-response,
.mc-form #mce-success-response {
  padding: 0.625rem 0.875rem;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  margin-bottom: 0.75rem;
  display: none;
}
.mc-form #mce-error-response {
  background: rgba(220,38,38,0.15);
  border: 1px solid rgba(220,38,38,0.35);
  color: #fca5a5;
}
.mc-form #mce-success-response {
  background: rgba(74,222,128,0.12);
  border: 1px solid rgba(74,222,128,0.3);
  color: #86efac;
}


/* ============================================================
   TECHNOLOGY PAGE — hero layout
   Single-column hero (no data panel on right).
   Scoped so it does not affect index.html hero-inner.
   ============================================================ */
.tech-hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 780px;
  position: relative;
  z-index: 1;
}
.tech-hero-text {
  /* flex child of .tech-hero-inner — no explicit rules needed */
}


/* ============================================================
   APPLICATIONS PAGE — scoped additions
   All tokens reference existing CSS custom properties only.
   No root variables redefined.
   ============================================================ */

/* Bullet list — used in herd health and reproduction sections */
.apps-list {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.apps-list li {
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--gray-600);
  padding-left: 1.25rem;
  position: relative;
}
.apps-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: 600;
}

/* Tagline section — typography-driven, no icons */
.apps-tagline .apps-tagline-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.apps-tagline-kicker {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 1.5rem;
}
.apps-tagline-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  line-height: 1.1;
  color: var(--white);
  margin: 0 0 2rem;
  quotes: none;
}
.apps-tagline-body {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.5);
  max-width: 580px;
}

/* Platform flow — numbered cards on a 2×2 grid */
.apps-flow-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 3rem;
}
.apps-flow-card {
  position: relative;
}
.apps-flow-card-accent {
  border-color: rgba(20,73,174,0.2);
  background: var(--blue-light);
}
.apps-flow-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  color: var(--gray-400);
  margin-bottom: 0.75rem;
}
.apps-flow-card-accent .apps-flow-num {
  color: var(--blue);
}
.apps-flow-card h4 {
  margin-bottom: 0.625rem;
}
.apps-flow-card p {
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--gray-500);
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .apps-flow-grid { grid-template-columns: 1fr; }
}


/* ============================================================
   PLATFORM PAGE — scoped additions
   All values use existing CSS custom properties.
   No root variables redefined. No global selectors.
   ============================================================ */

/* Trend chart summary row — below the SCC SVG visual */
.plat-trend-row {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1rem;
}
.plat-trend-stat {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.plat-trend-val {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
  line-height: 1;
}
.plat-trend-label {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}

/* Roles grid — 2x2 on desktop, same as audience-grid but 4-col cap */
.plat-roles-grid {
  grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 768px) {
  .plat-trend-row { gap: 1rem; }
  .plat-roles-grid { grid-template-columns: 1fr; }
}


/* ============================================================
   ABOUT PAGE — scoped additions (v2)
   All values use existing CSS custom properties only.
   No root variables redefined. No global selectors modified.
   ============================================================ */

/* ── Capability grid — 2x2 under "Why We Exist" ────────────
   Light section (.section.product, white bg).
   Bordered cards — restrained, scientific, breathable.        */

.about-capability-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--gray-200);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-top: clamp(2.5rem, 4vw, 3.5rem);
}
.about-capability-card {
  background: var(--white);
  padding: 1.75rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}
.about-capability-name {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-500);
}
.about-capability-value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--blue);
  line-height: 1.2;
  margin-bottom: 0.25rem;
}
.about-capability-desc {
  font-size: 0.85rem;
  line-height: 1.65;
  color: var(--gray-600);
  margin: 0;
}
.about-capability-note {
  font-size: 0.8rem;
  line-height: 1.65;
  color: var(--gray-500);
  text-align: center;
  max-width: 620px;
  margin: 1.5rem auto 0;
}

/* ── Roadmap stage list — improved contrast ─────────────────
   Lives inside .tech-visual (dark glass surface, --gray-900).
   Previous version was too dim. These values are still
   restrained but legible at normal reading distance.          */

.about-stage-list {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;      /* increased from 1.25rem */
}
.about-stage-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;         /* increased from 0.875rem */
}

/* Active indicator — yellow dot, current stage */
.about-stage-indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--yellow);
  flex-shrink: 0;
  margin-top: 0.35rem;
  box-shadow: 0 0 0 3px rgba(240,169,65,0.2);
}
/* Next stage — visible but clearly not current */
.about-stage-indicator-muted {
  background: rgba(255,255,255,0.35);
  box-shadow: none;
}
/* Future stage — outline only */
.about-stage-indicator-future {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.2);
  box-shadow: none;
}

.about-stage-content { flex: 1; }

/* Stage title — active stage: full white */
.about-stage-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.875rem;   /* up from 0.825rem */
  color: var(--white);
  margin-bottom: 0.375rem;  /* up from 0.25rem */
  line-height: 1.2;
}
/* Non-active stages — clear but subordinate */
.about-stage-item:not(.about-stage-active) .about-stage-title {
  color: rgba(255,255,255,0.82);
}
.about-stage-future .about-stage-title {
  color: rgba(255,255,255,0.55);
}

/* Stage description — active stage: readable */
.about-stage-desc {
  font-size: 0.8rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.72);
}
.about-stage-active .about-stage-desc {
  color: rgba(255,255,255,0.88);
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 768px) {
  .about-capability-grid { grid-template-columns: 1fr; }
}


/* ============================================================
   INSIGHTS PAGE — scoped additions
   All values use existing CSS custom properties only.
   No root variables redefined. No global selectors modified.

   Two components:
   .insights-featured  — editorial featured block (.section.product)
   .insights-principle — numbered principle list (.tech-visual)
   ============================================================ */

/* ── Featured insight panel ──────────────────────────────── */
.insights-featured {
  max-width: 820px;
  margin: 0 auto;
  padding: clamp(2.5rem, 5vw, 4rem) clamp(2rem, 5vw, 3.5rem);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  border-left: 4px solid var(--blue);
}
.insights-featured-eyebrow {
  margin-bottom: 1rem;
}
.insights-featured h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}
.insights-featured-body p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--gray-600);
  margin-bottom: 1rem;
}
.insights-featured-body p:last-child {
  margin-bottom: 0;
}

/* ── Insights grid — 4-col on this page ─────────────────── */
/* Override the 3-col default from index.html for this page  */
.insights-grid.insights-grid-4 {
  grid-template-columns: repeat(2, 1fr);
}

/* ── Numbered principle list ─────────────────────────────── */
/* Lives inside .tech-visual (dark glass surface)             */
.insights-principle-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.insights-principle-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.insights-principle-row:last-child {
  border-bottom: none;
}
.insights-principle-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: var(--yellow);
  flex-shrink: 0;
  width: 1.75rem;
  margin-top: 0.15rem;
}
.insights-principle-text {
  flex: 1;
}
.insights-principle-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.825rem;
  color: var(--white);
  margin-bottom: 0.25rem;
  line-height: 1.2;
}
.insights-principle-desc {
  font-size: 0.8rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.72);
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 768px) {
  .insights-grid.insights-grid-4 { grid-template-columns: 1fr; }
  .insights-featured { padding: 2rem 1.5rem; border-left-width: 3px; }
}
