/* ==========================================================================
   PREMIUM EMBEDDED TOKENS (60-30-10 VALUE ARCHITECTURES)
   ========================================================================== */
:root {
  /* Canvas Dominants (60%) */
  --bg-light: #FCFCFD;
  --bg-pure-white: #FFFFFF;
  --bg-dark-hero: #0B0C10; /* Specialized Homepage Dark Zone Backdrop */
  --bg-subtle-gray: #F1F3F6;
  
  /* Text & Structural Hierarchy (30%) */
  --text-dark-primary: #1B2430;   /* Deep slate ink — headings */
  --text-dark-secondary: #455565; /* Brand slate — body + structure */
  --text-muted-metadata: #8A93A0; /* Meta labels */
  --text-light-primary: #F4F5F7;  /* High Contrast White for Dark Hero */
  --text-light-secondary: #B0B5C1;
  --border-muted-light: rgba(69, 85, 101, 0.12);
  --border-muted-dark: rgba(255, 255, 255, 0.08);

  /* Precise Surgical Accents (5%-10% MAX Weights) */
  --accent-purple: #E94E1B; /* repointed: brand orange drives all primary action */       
  --accent-lavender-tint: rgba(233, 78, 27, 0.05); /* Muted backdrops */
  --accent-lavender-hover: rgba(233, 78, 27, 0.12);
  
  /* Brand primary — Orange (action / ~10%) */
  --orange: #E94E1B;
  --orange-strong: #C83E10;
  --orange-tint: rgba(233, 78, 27, 0.08);
  --orange-tint-soft: rgba(233, 78, 27, 0.05);
  --orange-glow: rgba(233, 78, 27, 0.22);

  /* Pure accent — Violet (AI / intelligence, <=6% of real estate) */
  --violet: #9D00FF;
  --violet-tint: rgba(157, 0, 255, 0.09);
  --violet-tint-soft: rgba(157, 0, 255, 0.05);

  /* Depth + neutral surfaces */
  --navy: #2D2F6C;
  --bg-wash: #F8F8F8;
  --bg-tint: #EEF1F4;
  --grid-line: rgba(69, 85, 101, 0.05);

  /* Controls */
  --transition-smooth: all 0.55s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.22s ease;
}

/* ==========================================================================
   GLOBAL STRUCTURE & TYPOGRAPHY CORE TREATMENT
   ========================================================================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  background-color: var(--bg-light);
  font-family: 'Hanken Grotesk', sans-serif;
  color: var(--text-dark-secondary);
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 60px;
}

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

/* ==========================================================================
   FLOATING PILL NAVIGATION SHELL
   ========================================================================== */
.nav-shell {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 24px 0;
  transition: var(--transition-smooth);
}

.nav {
  max-width: 1320px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--border-muted-light);
  border-radius: 100px;
  padding: 14px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: var(--transition-smooth);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.01);
}

body.on-hero .nav-shell .nav {
  background: rgba(255, 255, 255, 0);
  border-color: transparent;
  box-shadow: none;
}

.logo {
  font-family: 'Satoshi', sans-serif;
  font-weight: 900;
  font-size: 22px;
  letter-spacing: -0.03em;
  color: var(--text-dark-primary);
  text-decoration: none;
  display: flex;
  align-items: center;
}
body.on-hero .logo { color: var(--text-dark-primary); }

.logo-dot {
  width: 5px;
  height: 5px;
  background: var(--violet);
  border-radius: 50%;
  margin-left: 3px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-item { position: relative; }

.nav-link, .nav-link-btn {
  position: relative;
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 500;
  font-size: 15px;
  color: var(--text-dark-primary);
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 0;
  transition: var(--transition-fast);
}
/* animated underline — visible hover affordance, no orange */
.nav-link::after, .nav-link-btn::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 100%;
  background: var(--text-dark-primary);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}
body.on-hero .nav-link, body.on-hero .nav-link-btn { color: var(--text-dark-primary); }
.nav-link:hover, .nav-link-btn:hover { color: var(--text-dark-primary); }
.nav-link:hover::after, .nav-link-btn:hover::after { transform: scaleX(1); }
/* current page */
.nav-link.is-active { font-weight: 700; color: var(--text-dark-primary); }
.nav-link.is-active::after { transform: scaleX(1); background: var(--text-dark-primary); }

.caret {
  width: 10px;
  height: 10px;
  transition: var(--transition-smooth);
}

/* NAVIGATION DROPDOWN BLOCKS */
.dropdown-menu {
  position: absolute;
  top: 150%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  width: 280px;
  background: var(--bg-pure-white);
  border: 1px solid var(--border-muted-light);
  border-radius: 16px;
  padding: 12px;
  opacity: 0;
  visibility: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.06);
  transition: var(--transition-smooth);
}

.nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-item:hover .caret { transform: rotate(180deg); }

.dropdown-item {
  display: flex;
  flex-direction: column;
  padding: 12px 16px;
  text-decoration: none;
  border-radius: 10px;
  transition: var(--transition-fast);
}
.dropdown-item:hover { background: var(--accent-lavender-tint); }

.item-meta {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 9px;
  font-weight: 600;
  color: var(--text-muted-metadata);
  letter-spacing: 0.05em;
  margin-bottom: 2px;
}

.item-title {
  font-family: 'Satoshi', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--text-dark-primary);
}

/* ACTION CONTROLS SYSTEM */
.btn {
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 600;
  font-size: 14px;
  padding: 12px 24px;
  border-radius: 50px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-smooth);
}
.btn-large { padding: 16px 36px; font-size: 15px; }
.btn-full { width: 100%; padding: 16px; }

.btn-primary {
  background: var(--orange);
  color: #FFFFFF;
  border: 1px solid var(--orange);
}
body.on-hero .btn-primary {
  background: var(--orange);
  color: #FFFFFF;
  border-color: var(--orange);
}
.btn-primary:hover {
  background: var(--orange-strong);
  border-color: var(--orange-strong);
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 14px 28px -8px var(--orange-glow);
}

.btn-secondary {
  background: transparent;
  color: var(--text-dark-primary);
  border: 1px solid rgba(30, 34, 41, 0.15);
}
body.on-hero .btn-secondary {
  color: var(--text-dark-primary);
  border-color: var(--border-muted-light);
}
.btn-secondary:hover {
  background: rgba(30, 34, 41, 0.03);
  border-color: var(--text-dark-primary);
  transform: translateY(-2px);
}
body.on-hero .btn-secondary:hover {
  background: var(--bg-wash);
  border-color: var(--text-dark-primary);
}

/* ==========================================================================
   HOMEPAGE THEMED HERO INTERFACES (DARK ENTERPRISE FRAME)
   ========================================================================== */
.hero-zone {
  background-color: var(--bg-light);
  min-height: 92vh;
  position: relative;
  display: flex;
  align-items: center;
  padding-top: 168px;
  padding-bottom: 84px;
  overflow: hidden;
}
.hero-zone::before {
  content: '';
  position: absolute;
  top: -12%;
  right: -8%;
  width: 720px;
  height: 720px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--orange-tint) 0%, rgba(233, 78, 27, 0) 62%);
  pointer-events: none;
  z-index: 1;
}
.hero-zone::after {
  content: '';
  position: absolute;
  bottom: -18%;
  left: -10%;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--violet-tint) 0%, rgba(157, 0, 255, 0) 60%);
  pointer-events: none;
  z-index: 1;
}

.hero-bg-media {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.wireframe-grid-canvas {
  width: 100%;
  height: 100%;
  background-image: radial-gradient(var(--grid-line) 1.4px, transparent 1.4px);
  background-size: 30px 30px;
  background-position: center center;
  -webkit-mask-image: radial-gradient(ellipse 82% 72% at 52% 38%, #000 0%, transparent 80%);
  mask-image: radial-gradient(ellipse 82% 72% at 52% 38%, #000 0%, transparent 80%);
  opacity: 0.9;
}

.gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: rgba(0, 0, 0, 0.35);
}

/* Hard cut between dark hero and light section — no gradient fade. */

.hero-inner {
  position: relative;
  z-index: 3;
  max-width: 1280px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: center;
  gap: 64px;
  text-align: left;
}

.hero-copy {
  max-width: 560px;
}

.hero-asset {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  padding: 10px;
  background: var(--bg-pure-white);
  box-shadow: 0 2px 4px rgba(69, 85, 101, 0.04),
              0 34px 64px -28px rgba(69, 85, 101, 0.32),
              0 14px 30px -22px rgba(69, 85, 101, 0.22);
  border: 1px solid var(--border-muted-light);
}
.hero-asset::after {
  content: '';
  position: absolute;
  inset: 10px;
  border-radius: 12px;
  box-shadow: inset 0 0 0 1px rgba(69, 85, 101, 0.06);
  pointer-events: none;
}

.hero-asset-img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 440px;
  object-fit: cover;
  object-position: center;
  border-radius: 12px;
  filter: saturate(1.05) contrast(1.02);
}

.hero-asset-tag {
  position: absolute;
  left: 16px;
  bottom: 16px;
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(10, 10, 14, 0.55);
  backdrop-filter: blur(6px);
  padding: 6px 10px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.tagline-badge {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: var(--accent-purple);
  letter-spacing: 0.15em;
  margin-bottom: 24px;
}

.hero-title {
  font-family: 'Satoshi', sans-serif;
  font-weight: 900;
  font-size: 4.2rem;
  line-height: 1.1;
  color: var(--text-dark-primary);
  letter-spacing: -0.03em;
  margin-bottom: 32px;
}

@media (max-width: 960px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-copy { max-width: 640px; }
  .hero-asset-img { min-height: 320px; }
}

@media (max-width: 768px) { .hero-title { font-size: 2.6rem; } }

.accent-dot { color: var(--violet); }

.hero-lead {
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.55;
  color: var(--text-dark-secondary);
  max-width: 48ch;
  margin: 0 0 40px 0;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
}

.hero-proof {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 36px;
}
.hero-proof-point {
  font-size: 0.85rem;
  color: var(--text-muted-metadata);
  white-space: nowrap;
}
.hero-proof-tick {
  color: var(--accent-purple);
  margin-right: 6px;
}

/* ==========================================================================
   MICROSOFT TECHNOLOGY TRUST STRIP (slim raised dark band under hero)
   ========================================================================== */
.trust-strip {
  background: linear-gradient(to bottom, #f2f2f2 0%, #ffffff 40%);
  border-top: none;
  border-bottom: none;
  padding: 48px 0 30px;
}

.trust-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 3vw, 48px);
  flex-wrap: wrap;
}

.trust-strip-label {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light-secondary);
  white-space: nowrap;
  flex-shrink: 0;
}

.trust-chips {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-left: 0;
}

.trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 16px;
  border: 1px solid var(--border-muted-light);
  border-radius: 100px;
  background: var(--bg-wash);
  transition: var(--transition-fast);
}
.trust-chip:hover {
  border-color: rgba(233, 78, 27, 0.4);
  background: rgba(233, 78, 27, 0.06);
}

.trust-chip-glyph {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dark-secondary);
  transition: var(--transition-fast);
}
.trust-chip-glyph svg { width: 16px; height: 16px; display: block; }
.trust-chip:hover .trust-chip-glyph { color: var(--accent-purple); }

.trust-chip-text {
  font-family: 'Satoshi', sans-serif;
  font-weight: 500;
  font-size: 13.5px;
  letter-spacing: -0.01em;
  color: var(--text-dark-primary);
  white-space: nowrap;
}

@media (max-width: 920px) {
  .trust-chips { margin-left: 0; }
}
@media (max-width: 560px) {
  .trust-strip-label { white-space: normal; }
}

/* ==========================================================================
   STANDALONE STATS BAND (full-width light band, typographic anchors)
   ========================================================================== */
.stats-band {
  background: var(--bg-subtle-gray);
  padding: clamp(54px, 6vw, 84px) 0;
}

.stats-band-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-cell {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  padding: 8px clamp(16px, 2vw, 32px);
}
/* thin vertical dividers between stats */
.stat-cell + .stat-cell::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 68px;
  background: var(--border-muted-light);
}

.stat-figure {
  display: flex;
  align-items: baseline;
  justify-content: center;
}
.stat-count {
  font-family: 'Satoshi', sans-serif;
  font-weight: 900;
  font-size: clamp(3rem, 4.6vw, 4.4rem);
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--text-dark-primary);
}
.stat-suffix {
  font-family: 'Satoshi', sans-serif;
  font-weight: 700;
  font-size: clamp(1.5rem, 2.2vw, 2.1rem);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--orange);
  margin-left: 3px;
}

.stat-label {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  color: var(--text-muted-metadata);
  max-width: 16ch;
}

@media (max-width: 720px) {
  .stats-band-inner { grid-template-columns: repeat(2, 1fr); row-gap: 44px; }
  /* keep only the centre divider on the 2-column layout */
  .stat-cell + .stat-cell::before { display: none; }
  .stat-cell:nth-child(2)::before,
  .stat-cell:nth-child(4)::before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 68px;
    background: var(--border-muted-light);
  }
}
@media (max-width: 460px) {
  .stats-band-inner { grid-template-columns: 1fr; row-gap: 36px; }
  .stat-cell:nth-child(2)::before,
  .stat-cell:nth-child(4)::before { display: none; }
}

/* ==========================================================================
   ASYMMETRIC GRID CONFIGURATIONS (LIGHT ENVIRONMENT)
   ========================================================================== */
.section-wrapper {
  padding: 140px 0;
  position: relative;
  background: var(--bg-light);
}
.bg-subtle { background: var(--bg-subtle-gray); }
.border-top { border-top: 1px solid var(--border-muted-light); }

.asymmetric-split {
  display: grid;
  grid-template-columns: 40% 60%;
  gap: 80px;
}

@media (max-width: 992px) {
  .asymmetric-split { grid-template-columns: 1fr; gap: 48px; }
}

.split-sticky-left {
  position: sticky;
  top: 140px;
  height: fit-content;
}
@media (max-width: 992px) { .split-sticky-left { position: static; } }

.section-counter {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted-metadata);
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  display: block;
}
.text-lavender { color: var(--accent-purple) !important; }

.section-heading {
  font-family: 'Satoshi', sans-serif;
  font-weight: 900;
  font-size: 2.8rem;
  line-height: 1.15;
  color: var(--text-dark-primary);
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.section-desc {
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-dark-secondary);
}

/* ==========================================================================
   ARCHITECTURAL FOUNDATION OVERVIEW
   ========================================================================== */
.overview-canvas { padding: clamp(48px, 5vw, 72px) 0 clamp(80px, 10vw, 140px); background: var(--bg-light); }

.eyebrow {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--accent-purple);
  display: block;
}

.foundation-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
  margin-bottom: clamp(64px, 7vw, 100px);
}
.foundation-header-copy { max-width: 32rem; }
.foundation-heading { margin: 18px 0 0; max-width: 16ch; }
.foundation-lead {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-dark-secondary);
  max-width: 46ch;
  margin: 22px 0 0;
}

.foundation-meta {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.4vw, 34px);
  margin-top: clamp(32px, 3.5vw, 44px);
  padding-top: 28px;
  border-top: 1px solid var(--border-muted-light);
}
.foundation-meta-item { display: flex; flex-direction: column; gap: 4px; }
.foundation-meta-num {
  font-family: 'Satoshi', sans-serif;
  font-weight: 900;
  font-size: 34px;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--text-dark-primary);
}
.foundation-meta-label {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-muted-metadata);
}
.foundation-meta-divider { width: 1px; height: 38px; background: var(--border-muted-light); }

/* ---- Editorial dashboard figure (right column) ---- */
.foundation-figure {
  margin: 0;
  position: relative;
  background: var(--bg-pure-white);
  border: 1px solid var(--border-muted-light);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 40px 80px -36px rgba(30, 34, 41, 0.30),
              0 12px 28px -18px rgba(30, 34, 41, 0.18);
  transition: transform 0.6s cubic-bezier(0.16,1,0.3,1), box-shadow 0.6s ease;
}
.foundation-figure:hover {
  transform: translateY(-6px);
  box-shadow: 0 56px 110px -40px rgba(233, 78, 27, 0.22),
              0 16px 32px -18px rgba(30, 34, 41, 0.18);
}
.foundation-figure-chrome {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 22px;
  border-bottom: 1px solid var(--border-muted-light);
  background: var(--bg-light);
}
.foundation-figure-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--border-muted-light); }
.foundation-figure-dot:nth-child(1) { background: rgba(233, 78, 27, 0.55); }
.foundation-figure-chrome-label {
  margin-left: 10px;
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--text-muted-metadata);
}
.foundation-figure-canvas {
  position: relative;
  padding: 46px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  background:
    repeating-linear-gradient(135deg, rgba(30,34,41,0.018) 0 1px, transparent 1px 13px),
    var(--bg-pure-white);
}
.foundation-figure-canvas .wireframe-tag { top: 18px; left: 28px; }

.fig-topline { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.fig-kpi {
  background: var(--bg-light);
  border: 1px solid var(--border-muted-light);
  border-radius: 14px;
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.fig-kpi-label {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--text-muted-metadata);
}
.fig-kpi-value {
  font-family: 'Satoshi', sans-serif;
  font-weight: 900;
  font-size: 30px;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--text-dark-primary);
}
.fig-kpi-value small { font-size: 16px; font-weight: 700; color: var(--text-muted-metadata); margin-left: 2px; }
.fig-kpi-spark { display: flex; align-items: flex-end; gap: 4px; height: 22px; }
.fig-kpi-spark span { flex: 1; border-radius: 2px; background: var(--accent-lavender-hover); }
.fig-kpi-spark span:nth-child(1) { height: 40%; }
.fig-kpi-spark span:nth-child(2) { height: 65%; }
.fig-kpi-spark span:nth-child(3) { height: 50%; }
.fig-kpi-spark span:nth-child(4) { height: 85%; }
.fig-kpi-spark span:nth-child(5) { height: 70%; }
.fig-kpi-spark span:nth-child(6) { height: 100%; background: var(--accent-purple); }

.fig-chart {
  background: var(--bg-light);
  border: 1px solid var(--border-muted-light);
  border-radius: 14px;
  padding: 18px 20px 20px;
}
.fig-chart-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; }
.fig-chart-title {
  font-family: 'Satoshi', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--text-dark-primary);
}
.fig-chart .mock-bars { height: 72px; }
.foundation-figure:hover .fig-chart .bar { background: var(--accent-purple); opacity: 0.32; }
.foundation-figure:hover .fig-chart .bar:nth-child(3),
.foundation-figure:hover .fig-chart .bar:nth-child(5) { opacity: 0.8; }

.fig-rows { display: flex; flex-direction: column; gap: 10px; }
.fig-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  background: var(--bg-light);
  border: 1px solid var(--border-muted-light);
  border-radius: 10px;
}
.fig-row-id {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text-dark-primary);
  flex-shrink: 0;
}
.fig-row .mock-line { flex: 1; margin-bottom: 0; background: var(--border-muted-light); }
.fig-row .badge { flex-shrink: 0; }

@media (max-width: 920px) {
  .foundation-header { grid-template-columns: 1fr; align-items: start; gap: 44px; }
  .foundation-header-copy { max-width: none; }
}
@media (max-width: 480px) {
  .foundation-meta { flex-wrap: wrap; gap: 20px; }
  .foundation-meta-divider { display: none; }
  .fig-topline { grid-template-columns: 1fr; }
}

.foundation-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2vw, 28px);
}
@media (max-width: 1080px) { .foundation-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; } }
@media (max-width: 560px)  { .foundation-grid { grid-template-columns: 1fr; } }

.foundation-pillar {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 324px;
  padding: 32px 26px 32px;
  border-radius: 16px;
  border: 1px solid transparent;
  background: transparent;
  transition: background 0.45s cubic-bezier(0.16,1,0.3,1),
              border-color 0.45s ease,
              transform 0.45s cubic-bezier(0.16,1,0.3,1),
              box-shadow 0.45s ease;
}
/* architectural hairline rule + sliding accent tab */
.foundation-pillar::before {
  content: '';
  position: absolute;
  top: 0; left: 26px; right: 26px;
  height: 1px;
  background: var(--border-muted-light);
}
.foundation-pillar::after {
  content: '';
  position: absolute;
  top: -0.5px; left: 26px;
  height: 2px; width: 34px;
  background: var(--text-dark-primary);
  transition: width 0.55s cubic-bezier(0.16,1,0.3,1), background 0.45s ease;
}
.foundation-pillar:hover {
  background: var(--bg-pure-white);
  border-color: var(--border-muted-light);
  transform: translateY(-4px);
  box-shadow: 0 26px 54px -30px rgba(30, 34, 41, 0.30);
}
.foundation-pillar:hover::after { width: calc(100% - 52px); background: var(--accent-purple); }

.foundation-index {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--text-muted-metadata);
  display: block;
  margin-bottom: 18px;
  transition: color 0.4s ease;
}
.foundation-pillar:hover .foundation-index { color: var(--accent-purple); }

.foundation-title {
  font-family: 'Satoshi', sans-serif;
  font-weight: 700;
  font-size: 21px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--text-dark-primary);
  margin: 0 0 12px;
}
.foundation-text {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 14.5px;
  line-height: 1.62;
  color: var(--text-dark-secondary);
  margin: 0;
}

.foundation-stat {
  display: flex;
  align-items: baseline;
  gap: 5px;
  margin-top: 40px;
  padding-top: 22px;
  border-top: 1px solid var(--border-muted-light);
}
.foundation-stat-num, .foundation-stat-sign {
  font-family: 'Satoshi', sans-serif;
  font-weight: 900;
  font-size: 46px;
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--text-dark-primary);
}
.foundation-stat-sign { color: var(--accent-purple); }
.foundation-stat-unit {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted-metadata);
}

/* ==========================================================================
   BENTO PANELS SYSTEM (THE REDESIGNED VALUE METRIC GRID)
   ========================================================================== */
.value-stats-bento {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 600px) { .value-stats-bento { grid-template-columns: 1fr; } }

.metric-card {
  background: var(--bg-pure-white);
  border: 1px solid var(--border-muted-light);
  border-radius: 20px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 260px;
  transition: var(--transition-smooth);
}

.metric-card:hover {
  transform: translateY(-6px);
  border-color: rgba(233, 78, 27, 0.22);
  box-shadow: 0 30px 60px rgba(157,0,255, 0.02);
}

.metric-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.metric-meta {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 10px;
  font-weight: 600;
  color: var(--text-muted-metadata);
  letter-spacing: 0.05em;
}

.metric-pulse-dot {
  width: 6px;
  height: 6px;
  background: var(--violet);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--violet);
}

.metric-number {
  font-family: 'Satoshi', sans-serif;
  font-weight: 900;
  font-size: 4.5rem;
  line-height: 1;
  color: var(--text-dark-primary);
  letter-spacing: -0.04em;
  margin-bottom: 16px;
}

.num-sign {
  font-family: 'Hanken Grotesk', sans-serif;
  color: var(--accent-purple);
  font-weight: 400;
}

.metric-label {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-dark-secondary);
}

/* ==========================================================================
   PILLARS GEOMETRIC BENTO-BOX LAYOUTS
   ========================================================================== */
.section-header-centered {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 80px auto;
}

.section-heading-center {
  font-family: 'Satoshi', sans-serif;
  font-weight: 900;
  font-size: 3rem;
  color: var(--text-dark-primary);
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.section-lead-center { font-size: 17px; line-height: 1.6; }

.pillars-bento-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
@media (max-width: 992px) { .pillars-bento-grid { grid-template-columns: 1fr; } }

.pillar-bento-card {
  background: var(--bg-pure-white);
  border: 1px solid var(--border-muted-light);
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-decoration: none;
  color: inherit;
  min-height: 540px;
  transition: var(--transition-smooth);
}

.pillar-bento-card:hover {
  transform: translateY(-8px);
  border-color: rgba(233, 78, 27, 0.2);
  box-shadow: 0 40px 80px rgba(0,0,0,0.02);
}

.card-inner-content { padding: 48px; }

.card-meta {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 10px;
  font-weight: 600;
  color: var(--text-muted-metadata);
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.card-title {
  font-family: 'Satoshi', sans-serif;
  font-weight: 900;
  font-size: 2rem;
  color: var(--text-dark-primary);
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.card-subtitle-meta {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--text-muted-metadata);
}

.card-description { font-size: 15px; line-height: 1.65; color: var(--text-dark-secondary); }

/* HIGH-FIDELITY BACKEND INTERACTION COMPONENT MOCKUPS */
.card-media-placeholder {
  height: 220px;
  background: var(--bg-subtle-gray);
  border-top: 1px solid var(--border-muted-light);
  position: relative;
  padding: 40px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  transition: var(--transition-smooth);
}
.pillar-bento-card:hover .card-media-placeholder { background: var(--accent-lavender-tint); }

.wireframe-tag {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 10px;
  font-weight: 600;
  color: var(--accent-purple);
  position: absolute;
  top: 24px;
  left: 40px;
}

.mock-ui-box {
  width: 100%;
  background: var(--bg-pure-white);
  border: 1px solid var(--border-muted-light);
  border-radius: 12px;
  padding: 20px;
  transform: translateY(15px);
  transition: var(--transition-smooth);
}
.pillar-bento-card:hover .mock-ui-box { transform: translateY(0); border-color: rgba(233, 78, 27, 0.15); }

/* Mock Content Subcomponents */
.mock-line { height: 6px; background: var(--bg-subtle-gray); border-radius: 4px; margin-bottom: 10px; }
.mock-line.length-70 { width: 70%; }
.mock-line.length-40 { width: 40%; }
.mock-line.length-90 { width: 90%; }

.mock-bars { display: flex; align-items: flex-end; gap: 12px; height: 60px; padding-top: 10px; }
.bar { flex: 1; background: var(--bg-subtle-gray); border-radius: 4px; transition: var(--transition-smooth); }
.pillar-bento-card:hover .bar { background: var(--accent-purple); opacity: 0.3; }
.bar.h-30 { height: 30%; }
.bar.h-60 { height: 60%; }
.bar.h-90 { height: 90%; }
.bar.h-50 { height: 50%; }

.mock-status-row { display: flex; gap: 12px; }
.badge {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 11px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 6px;
}
.badge-success { background: #E6F4EA; color: #137333; }
.badge-purple { background: var(--violet-tint-soft); color: var(--violet); }

.mock-grid-table { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.cell { height: 24px; background: var(--bg-subtle-gray); border-radius: 4px; }

/* ==========================================================================
   PILLAR TABBED INTERFACE (tab bar + single swappable detail card)
   ========================================================================== */
.pillars-tab-system { margin-top: 8px; }

.pillar-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: stretch;
  gap: 0;
  width: 100%;
  max-width: 100%;
  margin: 0;
  background: #F5F5F7;
  border: 1px solid var(--border-muted-light);
  border-bottom: none;
  border-radius: 16px 16px 0 0;
  padding: 0;
  overflow: hidden;
}
.pillars-tab-system { text-align: center; }

.pillar-tab {
  appearance: none;
  background: transparent;
  border: none;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 15px;
  text-align: left;
  cursor: pointer;
  color: rgba(15, 15, 26, 0.62);
  border-radius: 0;
  transition: var(--transition-fast);
}
.pillar-tab + .pillar-tab { border-left: 1px solid var(--border-muted-light); }
.pillar-tab:hover { background: #EAEBEF; color: var(--text-dark-primary); }

.pillar-tab.is-active {
  color: #ffffff;
  background: var(--text-dark-secondary);
  /* thin brand bar at the seam ties the active tab into the card below */
  box-shadow: inset 0 -3px 0 0 var(--accent-purple);
  border-left-color: transparent;
}
.pillar-tab.is-active + .pillar-tab { border-left-color: transparent; }

.tab-index {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: rgba(27, 36, 48, 0.55);
  transition: var(--transition-fast);
}
.pillar-tab.is-active .tab-index { color: #ffffff; }

.tab-icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(27, 36, 48, 0.24);
  border-radius: 10px;
  color: rgba(27, 36, 48, 0.8);
  background: var(--bg-pure-white);
  transition: var(--transition-fast);
}
.tab-icon svg { width: 20px; height: 20px; }
.pillar-tab:hover .tab-icon { color: var(--text-dark-secondary); }
.pillar-tab.is-active .tab-icon {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.08);
}
.pillar-tab.is-active .tab-sub { color: rgba(255, 255, 255, 0.6); }

.tab-text { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.tab-title {
  font-family: 'Satoshi', sans-serif;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.01em;
  color: inherit;
  line-height: 1.1;
}
.tab-sub {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(15, 15, 26, 0.45);
  white-space: nowrap;
}

/* Detail stage — flush against the tab bar so they read as one module */
.pillar-detail-stage { margin-top: 0; }

.pillar-detail-card {
  display: none;
  grid-template-columns: 1.1fr 0.9fr;
  min-height: 380px;
}
.pillar-detail-card.is-active {
  display: grid;
  animation: pillarPanelIn 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
/* Neutralize the bento link-card hover lift for the static detail card */
.pillar-detail-card:hover {
  transform: none;
  border-color: var(--border-muted-light);
  box-shadow: 0 30px 70px rgba(0,0,0,0.03);
}

@keyframes pillarPanelIn {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* square the top so it meets the tab bar seamlessly, keep the rounded base */
.pillar-detail-card { border-radius: 0 0 24px 24px; }

.pillar-detail-card .card-inner-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.pillar-detail-card .card-title { font-size: 2.4rem; margin-bottom: 0; }

.card-subtitle-line {
  display: block;
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.005em;
  color: var(--text-dark-secondary);
  margin-top: 8px;
  margin-bottom: 22px;
}

.pillar-detail-link {
  margin-top: 28px;
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--accent-purple);
  text-decoration: none;
  transition: var(--transition-fast);
}
.pillar-detail-link:hover { opacity: 0.7; }

/* Right-column media: reflow the bottom strip into a full-height panel,
   shown permanently in its "revealed" state */
.pillar-detail-card .card-media-placeholder {
  height: auto;
  border-top: none;
  border-left: 1px solid var(--border-muted-light);
  background: var(--accent-lavender-tint);
}
.pillar-detail-card .mock-ui-box {
  transform: translateY(0);
  border-color: rgba(233, 78, 27, 0.15);
}
.pillar-detail-card .bar { background: var(--accent-purple); opacity: 0.3; }

@media (max-width: 992px) {
  .pillar-tabs { grid-template-columns: repeat(2, 1fr); }
  .pillar-detail-card.is-active { display: flex; flex-direction: column; }
  .pillar-detail-card .card-media-placeholder {
    height: 220px;
    border-left: none;
    border-top: 1px solid var(--border-muted-light);
  }
}

@media (max-width: 560px) {
  .pillar-tabs { grid-template-columns: 1fr; gap: 6px; border: none; background: transparent; border-radius: 0; padding: 0; overflow: visible; }
  .pillar-tab { border: 1px solid var(--border-muted-light); border-radius: 12px; margin-bottom: 0; box-shadow: none; }
  .pillar-tab + .pillar-tab { border-left: 1px solid var(--border-muted-light); }
  .pillar-tab.is-active { border-color: var(--text-dark-secondary); background: var(--text-dark-secondary); box-shadow: none; }
  .pillar-detail-stage { margin-top: 12px; }
  .pillar-detail-card { border-radius: 24px; }
}

/* ==========================================================================
   VERTICAL SECTIONS & CAPABILITIES CARDS
   ========================================================================== */
.feature-bento-vertical { display: flex; flex-direction: column; gap: 24px; }

.feature-line-card {
  background: var(--bg-pure-white);
  border: 1px solid var(--border-muted-light);
  border-radius: 16px;
  padding: 36px;
  display: flex;
  gap: 32px;
  transition: var(--transition-smooth);
}
.feature-line-card:hover { border-color: rgba(233, 78, 27, 0.2); transform: translateX(6px); }

.feature-index {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--accent-purple);
}

.feature-title {
  font-family: 'Satoshi', sans-serif;
  font-weight: 700;
  font-size: 19px;
  color: var(--text-dark-primary);
  margin-bottom: 12px;
}
.feature-text { font-size: 15px; line-height: 1.6; }

/* ==========================================================================
   4-COLUMN MATRIX SYSTEM 
   ========================================================================== */
.differentiation-matrix {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 1200px) { .differentiation-matrix { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .differentiation-matrix { grid-template-columns: 1fr; } }

.diff-card {
  background: var(--bg-pure-white);
  border: 1px solid var(--border-muted-light);
  border-radius: 20px;
  padding: 36px;
  transition: var(--transition-smooth);
}
.diff-card:hover { border-color: rgba(233, 78, 27, 0.18); box-shadow: 0 30px 60px rgba(0,0,0,0.015); }

.diff-card-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; }

.diff-tag {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 9px;
  font-weight: 600;
  color: var(--text-muted-metadata);
  background: var(--bg-subtle-gray);
  padding: 4px 10px;
  border-radius: 4px;
}

.diff-icon-dot { width: 6px; height: 6px; background: var(--accent-purple); border-radius: 50%; }

/* Platform Advantage — 4 cards top row, 3 centered bottom row */
.advantage-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}
.advantage-grid > .diff-card:nth-child(-n+4) { grid-column: span 3; }
.advantage-grid > .diff-card:nth-child(n+5) { grid-column: span 4; }
@media (max-width: 1200px) {
  .advantage-grid { grid-template-columns: repeat(6, 1fr); }
  .advantage-grid > .diff-card:nth-child(-n+4),
  .advantage-grid > .diff-card:nth-child(n+5) { grid-column: span 3; }
}
@media (max-width: 600px) {
  .advantage-grid { grid-template-columns: 1fr; }
  .advantage-grid > .diff-card:nth-child(-n+4),
  .advantage-grid > .diff-card:nth-child(n+5) { grid-column: span 1; }
}
.advantage-cta { display: flex; justify-content: center; margin-top: 48px; }

/* AI at the Core — 3x2 diff-card grid */
.ai-core-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 992px) { .ai-core-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .ai-core-grid { grid-template-columns: 1fr; } }

.diff-card-icon {
  width: 42px; height: 42px;
  border-radius: 11px;
  background: var(--violet-tint);
  color: var(--violet);
  display: grid; place-items: center;
}
.diff-card-icon svg { width: 21px; height: 21px; }

.ai-core-cta {
  text-align: center;
  margin-top: 64px;
}
.ai-core-cta-link {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--accent-purple);
  text-decoration: none;
  transition: var(--transition-fast);
}
.ai-core-cta-link:hover { opacity: 0.7; }

/* Client Outcomes — stacked testimonial cards */
.testimonial-stack {
  display: flex;
  flex-direction: column;
  gap: 28px;
  max-width: 1040px;
  margin: 0 auto;
}

.testimonial-card {
  display: grid;
  grid-template-columns: 300px 1px 1fr;
  gap: 48px;
  align-items: center;
  background: var(--bg-pure-white);
  border: 1px solid var(--border-muted-light);
  border-radius: 24px;
  padding: 48px 56px;
  box-shadow: 0 24px 60px rgba(30, 34, 41, 0.04);
}
@media (max-width: 860px) {
  .testimonial-card {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 36px;
  }
  .testimonial-divider { display: none; }
}

.testimonial-stat-figure {
  font-family: 'Satoshi', sans-serif;
  font-weight: 900;
  font-size: 4.2rem;
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--orange);
}
.testimonial-stat-label {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--text-muted-metadata);
  margin-top: 16px;
  display: block;
}

.testimonial-divider {
  width: 1px;
  align-self: stretch;
  background: var(--border-muted-light);
}

.testimonial-mark {
  font-family: 'Satoshi', sans-serif;
  font-weight: 900;
  font-size: 3.6rem;
  line-height: 0.5;
  color: rgba(233, 78, 27, 0.22);
  display: block;
  margin-bottom: 12px;
}
.testimonial-quote {
  font-size: 19px;
  line-height: 1.55;
  color: var(--text-dark-primary);
  font-weight: 500;
  margin-bottom: 28px;
  text-wrap: pretty;
}
.testimonial-attrib {
  display: flex;
  align-items: center;
  gap: 16px;
}
.testimonial-avatar {
  width: 48px; height: 48px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--accent-lavender-tint);
  color: var(--accent-purple);
  display: grid; place-items: center;
  font-family: 'Satoshi', sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.02em;
}
.testimonial-name {
  font-family: 'Satoshi', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--text-dark-primary);
  display: block;
}
.testimonial-role {
  font-size: 13px;
  color: var(--text-muted-metadata);
  display: block;
  margin-top: 2px;
}

.diff-title { font-family: 'Satoshi', sans-serif; font-weight: 700; font-size: 18px; color: var(--text-dark-primary); margin-bottom: 16px; }
.diff-text { font-size: 14px; line-height: 1.6; }

/* ==========================================================================
   PRICING TEASER MODULES
   ========================================================================== */
.bg-contrast-dark-teaser { background: var(--bg-tint); padding: 100px 0; overflow: hidden; }

/* ==========================================================================
   PAGE-END CTA BANNER (compact dark closer)
   ========================================================================== */
.cta-banner {
  background: var(--bg-wash);
  border-top: 1px solid var(--border-muted-light);
  padding: 88px 0;
  text-align: center;
}
.cta-banner-inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cta-banner-heading {
  font-family: 'Satoshi', sans-serif;
  font-weight: 900;
  font-size: clamp(2.1rem, 4.5vw, 3.1rem);
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: var(--text-dark-primary);
  text-wrap: balance;
}
.cta-banner-sub {
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-dark-secondary);
  max-width: 560px;
  margin: 20px 0 36px;
  text-wrap: pretty;
}
.cta-banner-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta-banner .btn-primary {
  background: var(--orange);
  color: #FFFFFF;
  border-color: var(--orange);
}
.cta-banner .btn-primary:hover { background: var(--orange-strong); border-color: var(--orange-strong); color: #FFFFFF; }
.cta-banner .btn-secondary { color: var(--text-dark-primary); border-color: var(--border-muted-light); }
.cta-banner .btn-secondary:hover { background: var(--bg-pure-white); border-color: var(--text-dark-primary); }
@media (max-width: 600px) { .cta-banner { padding: 64px 0; } .cta-banner-actions { width: 100%; flex-direction: column; } .cta-banner-actions .btn { width: 100%; } }


.pricing-teaser-centered {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.pricing-teaser-centered .section-counter { margin-bottom: 22px; }

.teaser-heading-centered {
  font-family: 'Satoshi', sans-serif;
  font-weight: 900;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  line-height: 1.04;
  color: var(--text-dark-primary);
  letter-spacing: -0.025em;
  margin-bottom: 22px;
  text-wrap: balance;
}
.teaser-lead-centered {
  font-size: 17px;
  line-height: 1.65;
  color: var(--text-dark-secondary);
  max-width: 600px;
  margin: 0 auto 40px;
  text-wrap: pretty;
}

.teaser-proof-row {
  display: flex;
  justify-content: center;
  gap: 14px 32px;
  margin-bottom: 44px;
  width: max-content;
  max-width: 92vw;
}
.teaser-proof-point { flex-shrink: 0; }
.teaser-proof-point {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 13px;
  letter-spacing: 0.01em;
  color: var(--text-light-primary);
}
.teaser-proof-point .proof-check {
  display: grid;
  place-items: center;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--accent-lavender-hover);
  color: var(--accent-purple);
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}
@media (max-width: 900px) {
  .teaser-proof-row { flex-direction: column; align-items: center; gap: 14px; width: auto; }
}

.bg-contrast-dark-teaser .btn-primary {
  background: var(--orange);
  color: #FFFFFF;
  border-color: var(--orange);
}
.bg-contrast-dark-teaser .btn-primary:hover {
  background: var(--orange-strong);
  border-color: var(--orange-strong);
  color: var(--text-light-primary);
}

.included-split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 992px) {
  .included-split-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ==========================================================================
   MERGED CLOSING BANNER (pricing + demo CTA)
   ========================================================================== */
.closing-banner {
  background: var(--bg-wash);
  border-top: 1px solid var(--border-muted-light);
  padding: clamp(72px, 8vw, 112px) 0;
  position: relative;
  overflow: hidden;
}
.closing-banner::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 920px;
  height: 520px;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse at center, var(--orange-tint-soft) 0%, rgba(233, 78, 27, 0) 68%);
  pointer-events: none;
}
.closing-banner > .container { position: relative; z-index: 1; }
.closing-banner-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0 72px;
  align-items: center;
}
.closing-col { min-width: 0; }
.closing-divider {
  width: 1px;
  align-self: stretch;
  background: var(--border-muted-light);
}
.closing-col .section-counter { margin-bottom: 20px; }
.closing-heading {
  font-family: 'Satoshi', sans-serif;
  font-weight: 900;
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  line-height: 1.06;
  letter-spacing: -0.025em;
  color: var(--text-dark-primary);
  text-wrap: balance;
  margin-bottom: 20px;
}
.closing-sub {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark-secondary);
  max-width: 460px;
  margin-bottom: 32px;
  text-wrap: pretty;
}
.closing-proof-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}
.closing-text-link {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--orange);
  text-decoration: none;
  border-bottom: 1px solid var(--orange);
  padding-bottom: 3px;
  transition: var(--transition-fast);
}
.closing-text-link:hover { color: var(--orange-strong); }
.closing-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.closing-banner .btn-primary {
  background: var(--orange);
  color: #FFFFFF;
  border-color: var(--orange);
}
.closing-banner .btn-primary:hover { background: var(--orange-strong); border-color: var(--orange-strong); color: #FFFFFF; }
.closing-banner .btn-secondary { color: var(--text-dark-primary); border-color: var(--border-muted-light); }
.closing-banner .btn-secondary:hover { background: var(--bg-pure-white); border-color: var(--text-dark-primary); }

@media (max-width: 900px) {
  .closing-banner-grid { grid-template-columns: 1fr; gap: 48px; }
  .closing-divider { width: auto; height: 1px; }
  .closing-sub { max-width: 540px; }
}
@media (max-width: 600px) {
  .closing-actions { flex-direction: column; }
  .closing-actions .btn { width: 100%; }
}

.mock-calculator-ui {
  background: var(--bg-pure-white);
  border: 1px solid var(--border-muted-light);
  border-radius: 20px;
  padding: 36px;
  box-shadow: 0 24px 60px -30px rgba(69, 85, 101, 0.25);
}

.calc-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid var(--border-muted-light);
  font-size: 14px;
  color: var(--text-dark-secondary);
}
.mono-value { font-family: 'Hanken Grotesk', sans-serif; color: var(--text-dark-primary); font-size: 12px; }
.calc-status-bar { margin-top: 24px; text-align: center; font-family: 'Hanken Grotesk', sans-serif; font-size: 10px; color: var(--accent-purple); letter-spacing: 0.1em; }

/* ==========================================================================
   PRODUCTION DATA HOUSING & FORM FIELDS
   ========================================================================== */
.contact-channels { margin-top: 48px; display: flex; flex-direction: column; gap: 24px; }
.channel-label { font-size: 13px; color: var(--text-muted-metadata); display: block; margin-bottom: 4px; }
.channel-link { font-family: 'Satoshi', sans-serif; font-weight: 700; font-size: 22px; color: var(--text-dark-primary); text-decoration: none; transition: var(--transition-fast); }
.channel-link:hover { color: var(--accent-purple); }

.form-containment-box { background: var(--bg-pure-white); border: 1px solid var(--border-muted-light); border-radius: 24px; padding: 48px; }
@media (max-width: 600px) { .form-containment-box { padding: 30px; } }

.form-grid-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
@media (max-width: 600px) { .form-grid-row { grid-template-columns: 1fr; gap: 0; } }

.form-group { margin-bottom: 24px; display: flex; flex-direction: column; }
.premium-label { font-family: 'Hanken Grotesk', sans-serif; font-size: 14px; font-weight: 600; color: var(--text-dark-primary); margin-bottom: 10px; }

.premium-input, .premium-textarea {
  background: var(--bg-subtle-gray);
  border: 1px solid transparent;
  border-radius: 10px;
  padding: 14px 18px;
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 15px;
  color: var(--text-dark-primary);
  transition: var(--transition-fast);
  width: 100%;
}
.premium-input:focus, .premium-textarea:focus {
  outline: none;
  background: var(--bg-pure-white);
  border-color: var(--accent-purple);
  box-shadow: 0 0 0 4px var(--accent-lavender-tint);
}

.form-success-panel { text-align: center; padding: 40px 20px; }
.success-icon-spark { width: 48px; height: 48px; background: var(--accent-lavender-tint); border-radius: 50%; margin: 0 auto 24px auto; position: relative; }
.success-icon-spark::after { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 10px; height: 10px; background: var(--accent-purple); border-radius: 50%; }
.success-headline { font-family: 'Satoshi', sans-serif; font-weight: 700; font-size: 22px; color: var(--text-dark-primary); margin-bottom: 12px; }
.success-body { font-size: 15px; line-height: 1.5; }

/* ==========================================================================
   COMPACT SYSTEM FOOTER
   ========================================================================== */
.global-footer { background: var(--bg-pure-white); border-top: 1px solid var(--border-muted-light); padding: 100px 0 40px 0; }
.footer-upper-grid { display: grid; grid-template-columns: 40% repeat(2, 30%); gap: 40px; margin-bottom: 80px; }
@media (max-width: 768px) { .footer-upper-grid { grid-template-columns: 1fr; gap: 48px; } }

.footer-logo { font-family: 'Satoshi', sans-serif; font-weight: 900; font-size: 24px; color: var(--text-dark-primary); margin-bottom: 24px; display: block; }
.footer-brand-desc { font-size: 14px; line-height: 1.6; max-width: 380px; }
.footer-column-title { font-family: 'Hanken Grotesk', sans-serif; font-size: 10px; font-weight: 600; color: var(--text-muted-metadata); letter-spacing: 0.1em; margin-bottom: 24px; display: block; }

.footer-link-item { font-size: 14px; color: var(--text-dark-secondary); text-decoration: none; display: block; margin-bottom: 14px; transition: var(--transition-fast); }
.footer-link-item:hover { color: var(--accent-purple); padding-left: 4px; }

.footer-lower-bar { border-top: 1px solid var(--border-muted-light); padding-top: 32px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px; }
.footer-legal-links { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.legal-link, .copyright-tag { font-size: 13px; color: var(--text-muted-metadata); text-decoration: none; }
.legal-link:hover { color: var(--text-dark-primary); }

.footer-social-tray { display: flex; align-items: center; }
.social-icon-wrapper { font-family: 'Hanken Grotesk', sans-serif; font-size: 11px; font-weight: 600; color: var(--text-dark-primary); text-decoration: none; display: inline-flex; align-items: center; gap: 8px; border: 1px solid var(--border-muted-light); padding: 8px 16px; border-radius: 4px; transition: var(--transition-fast); }
.social-icon-wrapper:hover { background: var(--text-dark-primary); color: var(--bg-pure-white); }
.social-svg { width: 14px; height: 14px; fill: currentColor; }

/* ==========================================================================
   HARDWARE HARD ACCELERATED MOTION PHYSICS
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.in { opacity: 1; transform: translateY(0); }

.reveal.d1 { transition-delay: 0.1s; }
.reveal.d2 { transition-delay: 0.2s; }
.reveal.d3 { transition-delay: 0.3s; }

/* MOBILE CONTROLLER RESPONSIVENESS OVERRIDES */
.nav-burger { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 6px; }
.nav-burger span { width: 22px; height: 2px; background: var(--text-dark-primary); transition: var(--transition-fast); }
body.on-hero .nav-burger span { background: var(--text-light-primary); }

@media (max-width: 992px) {
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }
}

/* ==========================================================================
   CONNECTED FLEET OPPORTUNITY
   ========================================================================== */
.connected-fleet {
  background: var(--bg-pure-white);
  padding: clamp(72px, 9vw, 130px) 0;
}
.cf-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
}
@media (max-width: 992px) { .cf-grid { grid-template-columns: 1fr; gap: 56px; } }

.cf-left .eyebrow { margin-bottom: 16px; }
.cf-heading {
  font-family: 'Satoshi', sans-serif;
  font-weight: 900;
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--text-dark-primary);
  margin-bottom: 24px;
}
.cf-lead {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-dark-secondary);
  margin-bottom: 34px;
  max-width: 42ch;
}
.cf-bullets { display: flex; flex-direction: column; gap: 16px; }
.cf-bullet { display: flex; gap: 13px; align-items: flex-start; }
.cf-check {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--accent-lavender-tint);
  color: var(--accent-purple);
  display: grid; place-items: center;
  font-size: 12px; font-weight: 700;
  margin-top: 1px;
}
.cf-bullet-text { font-size: 15px; line-height: 1.55; color: var(--text-dark-secondary); }
.cf-bullet-text strong { color: var(--text-dark-primary); font-weight: 700; }

.cf-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 600px) { .cf-cards { grid-template-columns: 1fr; } }

.cf-card {
  background: var(--bg-pure-white);
  border: 1px solid var(--border-muted-light);
  border-radius: 20px;
  padding: 28px;
  transition: var(--transition-smooth);
}
.cf-card:hover { border-color: rgba(233, 78, 27, 0.18); box-shadow: 0 30px 60px rgba(0,0,0,0.015); }
.cf-card:nth-child(2), .cf-card:nth-child(4) { transform: translateY(28px); }
@media (max-width: 600px) {
  .cf-card:nth-child(2), .cf-card:nth-child(4) { transform: none; }
}

.cf-card-icon {
  width: 42px; height: 42px;
  border-radius: 11px;
  background: var(--accent-lavender-tint);
  color: var(--accent-purple);
  display: grid; place-items: center;
  margin-bottom: 20px;
}
.cf-card-icon svg { width: 21px; height: 21px; }
.cf-card-title {
  font-family: 'Satoshi', sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: var(--text-dark-primary);
  margin-bottom: 10px;
}
.cf-card-text { font-size: 13.5px; line-height: 1.6; color: var(--text-dark-secondary); }

/* ==========================================================================
   EDITORIAL DIVIDER — contained cinematic banner between sections
   ========================================================================== */
.editorial-divider {
  padding: 48px 0;
  background: var(--bg-pure-white);
}
.editorial-divider-img {
  display: block;
  width: 100%;
  aspect-ratio: 21 / 9;
  object-fit: cover;
  object-position: center;
  border-radius: 20px;
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.10);
}

/* ==========================================================================
   PREMIUM LIGHT — EXCLUSION RULES + FINISHING
   Hide raw bracket / double-slash technical labels for a clean enterprise feel.
   ========================================================================== */
.tagline-badge,
.hero-asset-tag,
.trust-strip-label,
.item-meta,
.card-meta,
.wireframe-tag,
.eyebrow,
.footer-column-title { display: none !important; }

/* Dropdown items collapse to one clean line once the meta label is hidden */
.dropdown-item { padding: 11px 16px; }

/* Card media canvases no longer reserve space for the hidden corner tag */
.card-media-placeholder { padding-top: 28px; }

body { background: var(--bg-light); }

::selection { background: var(--orange-tint); color: var(--text-dark-primary); }

/* Refined, on-brand focus ring */
a:focus-visible,
button:focus-visible,
.premium-input:focus-visible,
.premium-textarea:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
}

/* ==========================================================================
   2026 REFRESH — SHARED COMPONENT OVERRIDES (nav · closing banner · footer)
   Applied site-wide via styles.css so every page stays consistent.
   ========================================================================== */

/* ---- Brand dot → orange everywhere (nav + footer logos) ---- */
.logo-dot { background: var(--orange); }

/* ---- Remove the decorative purple stop after hero headlines (all pages) ---- */
.accent-dot { display: none; }

/* ---- NAV ACTIVE STATE ----------------------------------------------------
   Active page = a 2px #E8450A underline the width of the link's text, sitting
   just below the baseline. Font weight is unchanged (no bold), no pill, no
   text-colour shift. Rendered with ::after so layout/spacing never shifts. */
.nav-link:hover,
.nav-link-btn:hover { color: var(--text-dark-primary); }

.nav-link.active,
.nav-item.is-active .nav-link-btn { position: relative; }
.nav-link.active::after,
.nav-item.is-active .nav-link-btn::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 100%;
  height: 2px;
  border-radius: 0;
  background: #E8450A;
  transform: scaleX(1);
  transform-origin: left center;
}

/* ==========================================================================
   CLOSING BANNER — dark charcoal full-stop
   ========================================================================== */
.closing-banner {
  background: #0F0F12;
  border-top: 1px solid #0F0F12;
  padding: clamp(96px, 9vw, 132px) 0;
}
.closing-banner::before { display: none; }
.closing-banner-grid { align-items: stretch; }
.closing-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-block: 6px;
}
.closing-divider { background: rgba(255, 255, 255, 0.12); }
.closing-heading { color: #FFFFFF; }
.closing-sub { color: rgba(255, 255, 255, 0.62); }

.closing-text-link {
  color: #FFFFFF;
  border-bottom: none;
  padding-bottom: 2px;
}
.closing-text-link:hover { color: #FFFFFF; text-decoration: underline; text-underline-offset: 4px; }

.closing-banner .btn-secondary {
  color: #FFFFFF;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.55);
}
.closing-banner .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: #FFFFFF;
  color: #FFFFFF;
}

/* ==========================================================================
   GLOBAL FOOTER — dark charcoal endcap, continuous with closing banner
   ========================================================================== */
.global-footer {
  background: #0F0F12;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 84px 0 36px;
}
.footer-upper-grid {
  grid-template-columns: 2fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 56px;
}
.footer-logo { color: #FFFFFF; }
.footer-brand-desc { color: #9090A0; }

/* Re-show the bracket column headers in muted white */
.footer-column-title {
  display: block !important;
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 18px;
}
.footer-link-item { color: #9090A0; }
.footer-link-item:hover { color: #FFFFFF; padding-left: 0; }

.footer-lower-bar { border-top: 1px solid rgba(255, 255, 255, 0.08); }
.legal-link,
.copyright-tag { color: #9090A0; }
.legal-link:hover { color: #FFFFFF; }

/* LinkedIn → icon only, circular */
.social-icon-wrapper {
  gap: 0;
  width: 40px;
  height: 40px;
  padding: 0;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  color: #9090A0;
}
.social-icon-wrapper:hover {
  background: #FFFFFF;
  color: #0F0F12;
  border-color: #FFFFFF;
}
.social-svg { width: 17px; height: 17px; }

/* ==========================================================================
   PAGE-END CTA BANNER — dark charcoal, continuous with the footer
   ========================================================================== */
.cta-banner {
  background: #0F0F12;
  border-top: 1px solid #0F0F12;
  padding: clamp(72px, 8vw, 104px) 0;
}
.cta-banner-heading { color: #FFFFFF; }
.cta-banner-sub { color: rgba(255, 255, 255, 0.66); }
.cta-banner .btn-secondary {
  color: #FFFFFF;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.5);
}
.cta-banner .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: #FFFFFF;
  color: #FFFFFF;
}

/* ==========================================================================
   2026 CHANGE BATCH — nav SMYL link · footer hovers + disclosure · footer logo
   · pillar page context indicator + sticky sub-nav
   ========================================================================== */

/* ---- Footer link + legal hover → orange ---- */
.footer-link-item:hover { color: var(--orange); }
.legal-link:hover { color: var(--orange); }

/* ---- Footer logo: render the brand dot as a real circle ---- */
.footer-logo {
  display: inline-flex;
  align-items: center;
}
.footer-logo .logo-dot {
  background: var(--orange);
  width: 5px;
  height: 5px;
  margin-left: 4px;
}

/* ---- Footer SMYL disclosure line ---- */
.footer-smyl-line {
  flex-basis: 100%;
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 12.5px;
  color: #6E6E7C;
  margin-top: 12px;
}
.footer-smyl-line a {
  color: #9090A0;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: var(--transition-fast);
}
.footer-smyl-line a:hover { color: var(--orange); }

/* ---- Nav SMYL secondary link (muted, sits with the main nav links) ---- */
.nav-smyl {
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 500;
  font-size: 15px;
  color: rgba(0, 0, 0, 0.35);
  text-decoration: none;
  padding: 6px 0;
  transition: color 0.2s ease;
}
body.on-hero .nav-smyl { color: rgba(0, 0, 0, 0.35); }
.nav-smyl:hover {
  color: var(--text-dark-primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ---- Home: secondary text CTA hover → orange ---- */
.closing-col-pricing .closing-text-link:hover { color: var(--orange); }

/* ---- Pillars dropdown: current-pillar context label ---- */
.nav-pillar-context {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--text-muted-metadata);
  margin-left: 6px;
  white-space: nowrap;
}

/* ---- Sticky pillar sub-navigation (compact context bar under the pill) ---- */
.pillar-subnav {
  position: fixed;
  top: 84px;
  left: 0;
  width: 100%;
  z-index: 990;
  height: 40px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-muted-light);
  display: flex;
  align-items: center;
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.pillar-subnav.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.pillar-subnav-inner {
  max-width: 1320px;
  width: 100%;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.pillar-subnav-label {
  font-family: 'IBM Plex Mono', ui-monospace, 'SF Mono', Menlo, monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--text-dark-primary);
}
.pillar-subnav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}
.pillar-subnav-link {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--text-muted-metadata);
  text-decoration: none;
  transition: color 0.2s ease;
}
.pillar-subnav-link:hover { color: var(--text-dark-primary); }
.pillar-subnav-link.is-active { color: var(--orange); font-weight: 600; }
@media (max-width: 640px) {
  .pillar-subnav-label { display: none; }
  .pillar-subnav-links { gap: 16px; width: 100%; justify-content: space-between; }
  .pillar-subnav-link { font-size: 12px; }
}

/* ==========================================================================
   FAVICON + WORDMARK — OGRE brand lockup (site-wide)
   Orange rounded-square "O" mark + Satoshi wordmark. Mirrors the lockup
   used inside the hero product mockups. Mark is orange on every background;
   the wordmark goes dark on light nav, white on the dark footer.
   ========================================================================== */

/* --- Nav lockup (light backgrounds) --- */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: none;
  padding: 0;
  line-height: 1;
  letter-spacing: normal;
  text-indent: 0;
  text-decoration: none;
}
.logo-mark {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 6px;
  background: none;
  color: #FFFFFF;
  font-family: 'Satoshi', sans-serif;
  font-weight: 900;
  font-size: 18px;
  line-height: 1;
  letter-spacing: 0;
  flex-shrink: 0;
}
.logo-mark svg { width: 100%; height: 100%; display: block; }
.logo-word {
  font-family: 'Satoshi', sans-serif;
  font-weight: 900;
  font-size: 22px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--text-dark-primary);
}
body.on-hero .logo,
body.on-hero .logo .logo-word { color: var(--text-dark-primary); border-color: transparent; }
/* --- SVG logo lockup (matches landing page) --- */
.logo-lockup { gap: 0; border: none; padding: 0; }
.logo-lockup .logo-svg { height: 48px; width: auto; display: block; }
/* the old decorative brand dot is no longer part of the mark */
.logo .logo-dot,
.footer-logo .logo-dot { display: none; }

/* --- Footer lockup (dark background) → white SVG mark --- */
.footer-logo {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  width: max-content;
  border: none;
  background: none;
  padding: 0;
  line-height: 1;
  letter-spacing: normal;
  text-indent: 0;
}
.footer-logo .logo-svg { height: 48px; width: auto; display: block; }
.footer-logo .logo-mark {
  display: none;
}
.footer-logo .logo-word {
  font-family: 'Satoshi', sans-serif;
  font-weight: 900;
  color: #FFFFFF;
  font-size: 24px;
  letter-spacing: 0.1em;
}
