/*
Theme Name: DeviceNIQ Chargers
Theme URI: https://chargers.deviceniq.com/
Author: DeviceNIQ
Description: Marketing theme for DeviceNIQ Chargers — the charging operating system at chargers.deviceniq.com
Version: 0.8.68
Text Domain: deviceniq-chargers
*/

:root {
  --color-bg: #f8fafc;
  --color-surface: #ffffff;
  --color-text: #0f172a;
  --color-muted: #64748b;
  --color-navy: #1e293b;
  --color-primary: #059669;
  --color-primary-hover: #047857;
  --color-border: #e2e8f0;
  --font: "Manrope", system-ui, sans-serif;
  --font-display: "Sora", "Manrope", system-ui, sans-serif;
  --radius: 12px;
  --shadow: 0 1px 3px rgb(15 23 42 / 6%);
  --max: 1280px;
  --shell-pad: 1.25rem;
  --content-inset: clamp(1.25rem, 4vw, 2.5rem);
  --header-h: 3.25rem;
  --hero-next-peek: 20dvh;
  --home-next-peek: var(--hero-next-peek);
  --viewport-band-min: calc(100dvh - var(--header-h) - var(--staging-banner-h));
  --viewport-band-pad: clamp(1.15rem, 2.6vh, 1.85rem);

  /* OCPP / lifecycle — aligned with deviceniq-chargers theme.css (015) */
  --status-charging: #059669;
  --status-idle: #94a3b8;
  --status-offline: #64748b;
  --status-faulted: #dc2626;
  --status-warn: #d97706;
  --status-charging-glow: rgb(59 130 246 / 45%);
  --status-fault-glow: rgb(220 38 38 / 40%);
}

/* Full page spread — viewport width with edge gutters (matches corporate site) */
.marketing-site :is(
  .site-header__inner,
  .site-footer--compact .site-footer__inner,
  .hero__inner,
  .home-intro__inner,
  .home-solutions__inner,
  .home-platform__inner,
  .home-product__inner,
  .home-cta__inner,
  .home-trust__inner,
  .home-proof__inner,
  .section__inner,
  .page-viewport__inner,
  .mobile-hub-page .mobile-hub--scroll,
  .home-fold__inner,
  .home-noc__inner
) {
  box-sizing: border-box;
  width: 100%;
  max-width: none;
  margin-inline: 0;
  padding-inline: var(--content-inset);
  text-align: left;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
  text-align: left;
}

a {
  color: var(--color-primary);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.site-header {
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: 0;
  z-index: 10;
}

.site-header__inner {
  padding: 0.75rem 0;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem 1.5rem;
}

.site-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex: 0 0 auto;
  color: var(--color-text);
  font-weight: 600;
  text-decoration: none;
}

.site-brand__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 6px;
  background: var(--color-navy);
  color: #fff;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.site-nav {
  display: flex;
  gap: 0.55rem 0.9rem;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
  flex: 1 1 auto;
  min-width: 0;
  /* Never hide nav labels behind the CTA cluster */
  overflow: visible;
}

.site-nav__link {
  color: var(--color-muted);
  font-weight: 500;
  font-size: 0.875rem;
  white-space: nowrap;
  text-decoration: none;
  flex: 0 0 auto;
}

.site-nav__link:hover {
  color: var(--color-text);
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  justify-content: flex-end;
  flex-wrap: nowrap;
  flex: 0 1 auto;
  flex-shrink: 1;
  min-width: 0;
  justify-self: end;
  margin-left: 0;
  padding-left: 0.75rem;
  border-left: 1px solid var(--color-border);
  background: var(--color-surface);
  position: relative;
  z-index: 2;
}

/* Progressive disclosure so primary nav (esp. Contact) always fits */
@media (max-width: 1360px) and (min-width: 769px) {
  .site-header__actions .sign-in-actions a:first-child {
    display: none; /* Onboarding sign in — still in footer / hero */
  }

  .site-nav__link[data-nav-priority="low"] {
    display: none;
  }
}

@media (max-width: 1280px) and (min-width: 769px) {
  .site-header__actions > a.btn--ghost[href*="support"] {
    display: none; /* keep Onboarding / Console / NOC / Simulator visible */
  }

  .site-nav__link[href*="/about/"] {
    display: none;
  }

  .site-header__actions > .btn--ghost {
    display: none; /* Support — still in footer */
  }
}

@media (max-width: 1180px) and (min-width: 769px) {
  .site-nav__link[href*="docs.chargers"] {
    display: none;
  }

  .site-brand__text {
    font-size: 0.9rem;
  }
}

@media (max-width: 1200px) and (min-width: 769px) {
  .site-header__inner {
    gap: 0.55rem 0.75rem;
  }

  .site-nav {
    gap: 0.4rem 0.6rem;
  }

  .site-nav__link {
    font-size: 0.8125rem;
  }

  .site-header__actions {
    padding-left: 0.6rem;
    gap: 0.35rem;
  }

  .site-header__actions .btn {
    font-size: 0.8125rem;
    padding: 0.45rem 0.65rem;
  }
}

@media (max-width: 1050px) and (min-width: 769px) {
  .site-nav__link {
    font-size: 0.75rem;
  }

  .site-nav {
    gap: 0.3rem 0.45rem;
  }

  .site-header__cta {
    padding-left: 0.55rem;
    padding-right: 0.55rem;
  }
}

.sign-in-actions {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding-left: 0.5rem;
  margin-left: 0.15rem;
  border-left: 1px solid var(--color-border);
}

.site-header__actions .btn {
  font-size: 0.8125rem;
  padding: 0.45rem 0.75rem;
  white-space: nowrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9375rem;
  border: 1px solid transparent;
  text-decoration: none;
  cursor: pointer;
}

.btn--primary {
  background: var(--color-primary);
  color: #fff;
}

.btn--primary:hover {
  background: var(--color-primary-hover);
  text-decoration: none;
}

.btn--ghost {
  background: transparent;
  border-color: var(--color-border);
  color: var(--color-text);
}

.btn--ghost:hover {
  background: var(--color-bg);
  text-decoration: none;
}

.btn--lg {
  padding: 0.75rem 1.25rem;
}

.hero {
  background: linear-gradient(180deg, #ecfdf5 0%, var(--color-bg) 100%);
  padding: 4rem var(--shell-pad) 5rem;
}

.hero__content {
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
  text-align: left;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-primary);
  margin: 0 0 0.75rem;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.15;
  margin: 0 0 1rem;
}

.hero__lead {
  font-size: 1.125rem;
  color: var(--color-muted);
  margin: 0 0 2rem;
}

.hero__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

.hero__actions-primary {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.hero__actions .sign-in-actions {
  border-left: none;
  padding-left: 0;
  margin-left: 0;
}

@media (min-width: 960px) {
  .hero__actions {
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem 1.25rem;
  }

  .hero__actions .sign-in-actions {
    border-left: 1px solid var(--color-border);
    padding-left: 1.25rem;
    margin-left: 0.25rem;
  }
}

.section {
  padding: 5rem 0;
}

/* Full-viewport scroll bands — top-aligned, content stretches (no empty center gaps) */
.section--page-band,
.home-platform--page-band,
.security-trust,
.security-pillars,
.security-controls,
.section--about-team,
.home-fold,
.home-solutions,
.home-proof,
.home-cta--personas {
  min-height: var(--viewport-band-min);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  box-sizing: border-box;
  padding-block: var(--viewport-band-pad);
}

.section--page-band > .section__inner,
.section--about-team > .section__inner,
.security-trust > .section__inner,
.home-platform--page-band > .home-platform__inner,
.home-fold__inner,
.home-solutions__inner,
.home-proof__inner,
.home-cta--personas > .home-cta__inner {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  gap: clamp(0.85rem, 2vh, 1.35rem);
  min-height: 0;
  width: 100%;
}

.section__header {
  margin-bottom: 0;
  flex: 0 0 auto;
}

.section__header--spaced {
  margin-top: 4rem;
}

.section__header p {
  margin: 0.5rem 0 0;
  color: var(--color-muted);
  max-width: 42rem;
}

.section__lead {
  font-size: 1.0625rem;
  color: var(--color-muted);
  max-width: 42rem;
  margin: 0;
  line-height: 1.7;
}

.section__lead--on-dark {
  color: rgb(255 255 255 / 78%);
}

.section__points {
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.65rem;
}

.section__points li {
  position: relative;
  padding-left: 1.15rem;
  color: var(--color-text);
  line-height: 1.6;
}

.section__points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: var(--color-primary);
}

.section__points a {
  color: var(--color-primary);
  font-weight: 600;
  text-decoration: none;
}

.section__points a:hover {
  text-decoration: underline;
}

/* Scroll sections below cinematic heroes — never clip like viewport canvases */
.section .page-viewport__body {
  display: block;
  flex: none;
  min-height: 0;
  overflow: visible;
}

.section .contact-column {
  max-width: none;
  margin: 0;
}

.section__note {
  margin-top: 1.5rem;
  font-size: 0.9375rem;
  color: var(--color-muted);
}

.section--alt {
  background: var(--color-surface);
}

.section__inner {
  text-align: left;
}

.section__inner--narrow {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.section h2 {
  text-align: left;
  margin: 0 0 2rem;
  font-size: 1.75rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}

.feature-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: var(--shadow);
}

.feature-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.0625rem;
}

.feature-card p {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.9375rem;
}

.contact-links {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.site-footer {
  border-top: 1px solid var(--color-border);
  background: var(--color-surface);
}

.site-footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  text-align: center;
  padding: 1.75rem 0;
}

.site-footer__meta {
  display: flex;
  align-items: center;
  gap: 0.75rem 1.25rem;
  flex-wrap: wrap;
  min-width: 0;
}

.site-footer__trust-badge {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-muted);
  white-space: nowrap;
}

.site-footer__copy {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.875rem;
}

.site-footer__nav {
  display: flex;
  gap: 0.35rem 1.1rem;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 0.875rem;
}

.site-footer__nav a {
  color: var(--color-muted);
  text-decoration: none;
}

.site-footer__nav a:hover {
  color: var(--color-navy);
  text-decoration: none;
}

.page-article {
  padding: 2rem 0 4rem;
}

.entry-content {
  color: var(--color-muted);
}

.hero--premium {
  position: relative;
  overflow: hidden;
  padding: 5.5rem var(--shell-pad) 6rem;
  background: linear-gradient(180deg, #f1f5f9 0%, var(--color-bg) 100%);
}

.hero__glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 25% 20%, rgb(30 41 59 / 4%), transparent 45%);
  pointer-events: none;
}

.hero__content {
  position: relative;
}

.hero__stats {
  list-style: none;
  margin: 2.5rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.hero__stats li {
  display: flex;
  flex-direction: column;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  min-width: 0;
  box-shadow: var(--shadow);
  text-align: left;
}

.hero__stats strong {
  display: block;
  font-size: 1.125rem;
  color: var(--color-primary);
}

.hero__stats span {
  display: block;
  font-size: 0.75rem;
  color: var(--color-muted);
  margin-top: 0.25rem;
}

.section__header {
  text-align: left;
  max-width: none;
  margin: 0 0 2.5rem;
}

.section__header p {
  color: var(--color-muted);
  margin: 0.5rem 0 0;
}

.journey {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.journey__step {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.25rem;
  align-items: start;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow);
}

.journey__index {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-primary);
  opacity: 0.85;
}

.journey__phase {
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--color-primary);
  margin: 0 0 0.25rem;
}

.journey__body h3 {
  margin: 0 0 0.35rem;
}

.journey__body p {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.9375rem;
}

.journey__link {
  display: inline-block;
  margin-top: 0.5rem;
  font-weight: 600;
  font-size: 0.875rem;
}

.badge {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.25rem 0.5rem;
  border-radius: 999px;
  white-space: nowrap;
}

.badge--live {
  background: #d1fae5;
  color: #065f46;
}

.badge--roadmap {
  background: #e0e7ff;
  color: #3730a3;
}

.roadmap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}

.roadmap-panel {
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 1px solid var(--color-border);
}

.roadmap-panel--live {
  background: linear-gradient(145deg, #ecfdf5, var(--color-surface));
}

.roadmap-panel--next {
  background: linear-gradient(145deg, #eef2ff, var(--color-surface));
}

.roadmap-panel h3 {
  margin: 0 0 1rem;
  font-size: 1.125rem;
}

.roadmap-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

.roadmap-list li {
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgb(0 0 0 / 6%);
}

.roadmap-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.roadmap-list__title {
  display: block;
  font-weight: 600;
  font-size: 0.9375rem;
}

.roadmap-list__desc {
  display: block;
  color: var(--color-muted);
  font-size: 0.8125rem;
  margin-top: 0.15rem;
}

.roadmap-list__meta,
.roadmap-list__id {
  display: inline-block;
  margin-top: 0.35rem;
  font-size: 0.6875rem;
  background: rgb(0 0 0 / 5%);
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
}

.diff-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.diff-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1.25rem;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.diff-card:hover {
  box-shadow: 0 4px 16px rgb(15 23 42 / 8%);
  transform: translateY(-1px);
}

.diff-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  color: var(--color-navy);
}

.diff-card p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--color-muted);
}

.enterprise-callout {
  text-align: left;
}

.section--enterprise {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: #f1f5f9;
}

.enterprise-callout h2 {
  color: #fff;
  margin-bottom: 1rem;
  text-align: left;
}

.enterprise-callout .eyebrow {
  color: #94a3b8;
}

.enterprise-list {
  text-align: left;
  max-width: 720px;
  margin: 0 0 1.5rem;
  padding-left: 1.25rem;
  color: #cbd5e1;
  font-size: 0.9375rem;
}

.enterprise-list code {
  background: rgb(0 0 0 / 20%);
  padding: 0.1rem 0.35rem;
  border-radius: 4px;
}

.section--enterprise .btn--primary {
  background: var(--color-primary);
  color: #fff;
}

.section--enterprise .btn--primary:hover {
  background: var(--color-primary-hover);
}

/* Trust bar — compliance badges near CTAs */
.trust-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: flex-start;
  margin: 1.25rem 0 0;
}

.hero .trust-bar {
  justify-content: flex-start;
}

.trust-bar__item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.1rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 0.4rem 0.65rem;
  min-width: 120px;
  cursor: default;
}

.trust-bar__label {
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--color-text);
}

.trust-bar__status {
  font-size: 0.625rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-primary);
}

.section--enterprise .trust-bar__item {
  background: rgb(0 0 0 / 15%);
  border-color: rgb(255 255 255 / 15%);
}

.section--enterprise .trust-bar__label {
  color: #ecfdf5;
}

.section--enterprise .trust-bar__status {
  color: #a7f3d0;
}

.contact-block .trust-bar {
  margin: 1.5rem 0;
}

.impl-cta {
  text-align: left;
  margin-top: 2rem;
}

.impl-cta .trust-bar {
  margin-top: 1rem;
}

.preview-cta {
  display: flex;
  gap: 0.75rem;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.contact-block {
  text-align: left;
}

.contact-block .trust-bar {
  justify-content: flex-start;
}

/* Console preview mock */
.section--preview {
  background: var(--color-surface);
}

.console-preview {
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 16px 48px rgb(0 0 0 / 10%);
  background: #111827;
}

.console-preview__chrome {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.6rem 1rem;
  background: #1f2937;
  border-bottom: 1px solid #374151;
}

.console-preview__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4b5563;
}

.console-preview__url {
  margin-left: 0.5rem;
  font-size: 0.75rem;
  color: #9ca3af;
  font-family: ui-monospace, monospace;
}

.console-preview__body {
  display: grid;
  grid-template-columns: 140px 1fr;
  min-height: 280px;
}

.console-preview__nav {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1rem 0.75rem;
  background: #0f172a;
  border-right: 1px solid #374151;
}

.console-preview__nav-item {
  font-size: 0.75rem;
  color: #9ca3af;
  padding: 0.35rem 0.5rem;
  border-radius: 6px;
}

.console-preview__nav-item--active {
  background: rgb(5 150 105 / 25%);
  color: #6ee7b7;
  font-weight: 600;
}

.console-preview__main {
  padding: 1rem 1.25rem;
}

.console-preview__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.console-preview__card {
  background: #1f2937;
  border-radius: 8px;
  padding: 0.75rem;
  font-size: 0.75rem;
  color: #9ca3af;
}

.console-preview__card strong {
  display: block;
  font-size: 1.25rem;
  color: #f9fafb;
  margin-bottom: 0.15rem;
}

.console-preview__table {
  font-size: 0.75rem;
}

.console-preview__row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 0.8fr 0.8fr;
  gap: 0.5rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid #374151;
  color: #d1d5db;
}

.console-preview__row--head {
  color: #6b7280;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.625rem;
  letter-spacing: 0.04em;
}

.pill {
  display: inline-block;
  padding: 0.1rem 0.4rem;
  border-radius: 999px;
  font-size: 0.625rem;
  font-weight: 600;
}

.pill--ok {
  background: rgb(5 150 105 / 30%);
  color: #6ee7b7;
}

.pill--warn {
  background: rgb(245 158 11 / 25%);
  color: #fcd34d;
}

/* Persona proof */
.segment-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: flex-start;
  margin-bottom: 2rem;
}

.segment-bar__item {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-muted);
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
}

.persona-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.persona-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: var(--shadow);
}

.persona-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 6px;
  background: var(--color-navy);
  color: #fff;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.persona-card__role {
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--color-primary);
  margin: 0.5rem 0 0.25rem;
}

.persona-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
}

.persona-card p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--color-muted);
}

.persona-card__proof {
  display: block;
  margin-top: 0.75rem;
  font-size: 0.6875rem;
  background: var(--color-bg);
  padding: 0.35rem 0.5rem;
  border-radius: 4px;
  color: var(--color-muted);
}

.quote-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
}

.quote-card {
  margin: 0;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
}

.quote-card p {
  margin: 0 0 1rem;
  font-size: 0.9375rem;
  font-style: italic;
  color: var(--color-text);
}

.quote-card footer {
  font-size: 0.8125rem;
  color: var(--color-muted);
}

.quote-card footer strong {
  display: block;
  color: var(--color-text);
  font-style: normal;
}

/* Implementation grid */
.impl-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

.impl-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-left: 3px solid var(--color-primary);
  border-radius: var(--radius);
  padding: 1.25rem;
}

.impl-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
}

.impl-card p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--color-muted);
}

.section__note {
  margin: 0.75rem 0 0;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-primary);
}

/* Migration playbook — honest cutover steps */
.migration-playbook {
  margin-top: 2rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, #ecfdf5 0%, var(--color-surface) 100%);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
}

.migration-playbook__title {
  margin: 0 0 0.35rem;
  font-size: 1.125rem;
}

.migration-playbook__lead {
  margin: 0 0 1.25rem;
  font-size: 0.875rem;
  color: var(--color-muted);
}

.migration-playbook__steps {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.migration-playbook__step {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-left: 3px solid var(--color-primary);
  border-radius: var(--radius);
  font-size: 0.875rem;
  color: var(--color-muted);
}

.migration-playbook__step strong {
  color: var(--color-text);
  font-size: 0.9375rem;
}

/* OCPP compatibility callout */
.compat-callout {
  margin-top: 2rem;
  padding: 1.5rem 1.75rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.compat-callout__eyebrow {
  margin: 0 0 0.35rem;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-primary);
}

.compat-callout h3 {
  margin: 0 0 0.5rem;
  font-size: 1.125rem;
}

.compat-callout p {
  margin: 0 0 1rem;
  font-size: 0.9375rem;
  color: var(--color-muted);
  max-width: 640px;
}

.compat-callout .btn {
  margin-top: 0.25rem;
}

.roadmap-list__desc--commit {
  font-weight: 600;
  color: #3730a3;
}

/* Journey splash — commissioning → operations auto-cycle */
.journey-splash {
  padding: 4rem var(--shell-pad);
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.journey-splash__inner {
  max-width: var(--max);
  margin: 0 auto;
}

.journey-splash__intro {
  margin-bottom: 2rem;
}

.journey-splash__intro h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  line-height: 1.2;
}

.journey-splash__lead {
  margin: 0;
  color: var(--color-muted);
  font-size: 1.0625rem;
  max-width: 640px;
}

.journey-splash__frame {
  background: linear-gradient(145deg, #ecfdf5 0%, var(--color-bg) 50%, #f0fdf4 100%);
  border: 1px solid var(--color-border);
  border-radius: calc(var(--radius) + 4px);
  padding: 1.5rem;
  box-shadow: 0 20px 60px rgb(5 150 105 / 8%), var(--shadow);
}

.journey-splash__timeline {
  margin-bottom: 1.25rem;
}

.journey-splash__progress {
  height: 3px;
  background: var(--color-border);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 1rem;
}

.journey-splash__progress-fill {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--color-primary), #34d399);
  border-radius: inherit;
  animation: splash-progress 12s ease-in-out infinite;
}

.journey-splash__steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.journey-splash__step {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.15rem;
  opacity: 0.45;
  transition: opacity 0.3s ease;
}

.journey-splash__step--1 {
  animation: splash-step-1 12s ease-in-out infinite;
}

.journey-splash__step--2 {
  animation: splash-step-2 12s ease-in-out infinite;
}

.journey-splash__step--3 {
  animation: splash-step-3 12s ease-in-out infinite;
}

.journey-splash__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-border);
  margin-bottom: 0.25rem;
}

.journey-splash__step--1 .journey-splash__dot,
.journey-splash__step--2 .journey-splash__dot,
.journey-splash__step--3 .journey-splash__dot {
  animation: splash-dot 12s ease-in-out infinite;
}

.journey-splash__step--2 .journey-splash__dot {
  animation-name: splash-dot-2;
}

.journey-splash__step--3 .journey-splash__dot {
  animation-name: splash-dot-3;
}

.journey-splash__label {
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--color-text);
}

.journey-splash__sublabel {
  font-size: 0.6875rem;
  color: var(--color-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.journey-splash__stage {
  position: relative;
  min-height: 320px;
  border-radius: var(--radius);
  overflow: hidden;
}

.journey-splash__panel--has-shot {
  display: flex;
  flex-direction: column;
}

.journey-splash__shot-wrap {
  flex: 1 1 auto;
  min-height: 200px;
  width: 100%;
  position: relative;
  overflow: hidden;
  background: #fff;
  aspect-ratio: 16 / 9;
}

.journey-splash__shot {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top left;
  display: block;
}

.journey-splash__shot-wrap--console-cycle .journey-splash__shot--cycle {
  opacity: 0;
  animation: console-shot-cycle 15s ease-in-out infinite;
}

.journey-splash__panel--has-shot .journey-splash__shot-wrap:not(.journey-splash__shot-wrap--console-cycle) .journey-splash__shot {
  opacity: 1;
}

.journey-splash__shot--cycle-1 { animation-delay: 0s; }
.journey-splash__shot--cycle-2 { animation-delay: 3s; }
.journey-splash__shot--cycle-3 { animation-delay: 6s; }
.journey-splash__shot--cycle-4 { animation-delay: 9s; }
.journey-splash__shot--cycle-5 { animation-delay: 12s; }

@keyframes console-shot-cycle {
  0%, 16% { opacity: 1; }
  20%, 100% { opacity: 0; }
}

.journey-splash__panel {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: 0 8px 32px rgb(0 0 0 / 12%);
  opacity: 0;
  transform: translateY(12px) scale(0.98);
  pointer-events: none;
}

.journey-splash__panel--1 {
  animation: splash-panel-1 12s ease-in-out infinite;
}

.journey-splash__panel--2 {
  animation: splash-panel-2 12s ease-in-out infinite;
}

.journey-splash__panel--3 {
  animation: splash-panel-3 12s ease-in-out infinite;
}

.splash-panel__head {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1rem;
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
}

.splash-panel__head--dark {
  background: #1f2937;
  border-bottom-color: #374151;
}

.splash-panel__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4b5563;
}

.splash-panel__badge {
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
}

.splash-panel__badge--vpn {
  background: #dbeafe;
  color: #1e40af;
}

.splash-panel__badge--live {
  background: #d1fae5;
  color: #065f46;
}

.splash-panel__host {
  margin-left: auto;
  font-size: 0.6875rem;
  color: var(--color-muted);
  font-family: ui-monospace, monospace;
}

.splash-panel__head--dark .splash-panel__host {
  color: #9ca3af;
}

.splash-panel__body {
  flex: 1;
  padding: 1.25rem 1.5rem;
}

.splash-panel__body--light {
  background: var(--color-surface);
}

.splash-panel__body--mid {
  background: linear-gradient(180deg, #f0fdf4, var(--color-surface));
}

.splash-panel__body--dark {
  background: #111827;
  padding: 0;
}

.splash-panel__title {
  margin: 0 0 1rem;
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--color-text);
}

.splash-checklist {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
  display: grid;
  gap: 0.6rem;
}

.splash-checklist__item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.875rem;
  color: var(--color-muted);
  padding: 0.5rem 0.75rem;
  background: var(--color-bg);
  border-radius: 8px;
  border: 1px solid var(--color-border);
}

.splash-checklist__item--done {
  color: var(--color-text);
  border-color: #a7f3d0;
  background: #ecfdf5;
}

.splash-checklist__item--active {
  color: var(--color-text);
  border-color: var(--color-primary);
  box-shadow: 0 0 0 2px rgb(5 150 105 / 15%);
  animation: splash-pulse-border 2s ease-in-out infinite;
}

.splash-checklist__icon {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-primary);
}

.splash-panel__stat-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.splash-stat {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 0.6rem 0.85rem;
  min-width: 120px;
}

.splash-stat strong {
  display: block;
  font-size: 1.125rem;
  color: var(--color-primary);
}

.splash-stat span {
  font-size: 0.6875rem;
  color: var(--color-muted);
}

.splash-handoff {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}

.splash-handoff__node {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 0.85rem 1.25rem;
  text-align: center;
  min-width: 120px;
}

.splash-handoff__node--target {
  border-color: var(--color-primary);
  background: #ecfdf5;
  box-shadow: 0 4px 16px rgb(5 150 105 / 15%);
}

.splash-handoff__label {
  display: block;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-muted);
  margin-bottom: 0.25rem;
}

.splash-handoff__value {
  display: block;
  font-weight: 700;
  font-size: 1rem;
  color: var(--color-text);
}

.splash-handoff__arrow {
  position: relative;
  font-size: 1.5rem;
  color: var(--color-primary);
  font-weight: 700;
}

.splash-handoff__pulse {
  position: absolute;
  inset: -8px -16px;
  background: rgb(5 150 105 / 20%);
  border-radius: 999px;
  animation: splash-pulse 1.5s ease-in-out infinite;
}

.splash-ocpp-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.5rem;
}

.splash-ocpp-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8125rem;
  color: var(--color-muted);
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--color-border);
}

.splash-ocpp-list li:last-child {
  border-bottom: none;
}

.splash-console {
  display: grid;
  grid-template-columns: 110px 1fr;
  min-height: 260px;
}

.splash-console__nav {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.85rem 0.6rem;
  background: #0f172a;
  border-right: 1px solid #374151;
}

.splash-console__nav-item {
  font-size: 0.6875rem;
  color: #9ca3af;
  padding: 0.35rem 0.5rem;
  border-radius: 6px;
}

.splash-console__nav-item--active {
  background: rgb(5 150 105 / 25%);
  color: #6ee7b7;
  font-weight: 600;
}

.splash-console__main {
  padding: 1rem;
}

.splash-console__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
  margin-bottom: 1rem;
}

.splash-console__card {
  background: #1f2937;
  border-radius: 8px;
  padding: 0.6rem;
  font-size: 0.6875rem;
  color: #9ca3af;
}

.splash-console__card strong {
  display: block;
  font-size: 1.125rem;
  color: #f9fafb;
}

.splash-console__row {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 0.5rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid #374151;
  font-size: 0.75rem;
  color: #d1d5db;
}

/* Living operations preview (022 M-1) */
.splash-console--living .splash-console__card {
  position: relative;
  overflow: hidden;
}

.splash-console--living .splash-console__card--live::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgb(255 255 255 / 4%) 50%, transparent 60%);
  background-size: 200% 100%;
  animation: dashboard-shimmer 4s ease-in-out infinite;
  pointer-events: none;
}

.splash-console__card-label {
  display: block;
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.15rem;
}

.splash-console__metric {
  font-variant-numeric: tabular-nums;
}

.splash-console__unit {
  font-size: 0.75rem;
  font-weight: 600;
  opacity: 0.75;
}

.splash-console__card-delta {
  display: block;
  font-size: 0.625rem;
  margin-top: 0.2rem;
  color: #6b7280;
}

.splash-console__card-delta--up {
  color: #6ee7b7;
}

.splash-console__card-delta--predict {
  color: #93c5fd;
}

.splash-console__chart {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.35rem 0.5rem;
  background: #111827;
  border-radius: 8px;
  border: 1px solid #374151;
}

.splash-console__sparkline {
  flex: 1 1 100%;
  width: 100%;
  height: 48px;
}

.splash-console__sparkline-actual {
  fill: none;
  stroke: #34d399;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.splash-console__sparkline-predict {
  fill: none;
  stroke: #60a5fa;
  stroke-width: 2;
  stroke-dasharray: 4 3;
  opacity: 0.6;
  stroke-linecap: round;
}

.splash-console__chart-legend {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.5625rem;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.splash-console__legend-actual,
.splash-console__legend-predict {
  width: 12px;
  height: 2px;
  border-radius: 1px;
}

.splash-console__legend-actual {
  background: #34d399;
}

.splash-console__legend-predict {
  background: repeating-linear-gradient(90deg, #60a5fa 0 3px, transparent 3px 6px);
  opacity: 0.6;
}

.splash-console__fleet {
  list-style: none;
  margin: 0;
  padding: 0;
}

.splash-console__fleet-row {
  display: grid;
  grid-template-columns: 28px 1.4fr 0.7fr 0.7fr;
  gap: 0.4rem;
  align-items: center;
  padding: 0.45rem 0;
  border-bottom: 1px solid #374151;
  font-size: 0.6875rem;
  color: #d1d5db;
}

.splash-console__fleet-row:last-child {
  border-bottom: none;
}

.splash-console__fleet-name {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.splash-console__fleet-kw {
  color: #9ca3af;
  font-variant-numeric: tabular-nums;
}

.splash-console__fleet-forecast {
  text-align: right;
  color: #6b7280;
}

.splash-console__fleet-forecast--up {
  color: #6ee7b7;
}

.splash-console__fleet-forecast--warn {
  color: #fbbf24;
}

.charger-state {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
}

.charger-state__icon {
  width: 22px;
  height: 22px;
}

.charger-state__icon rect {
  fill: #374151;
  stroke: #4b5563;
  stroke-width: 1;
}

.charger-state__bolt {
  fill: #fbbf24;
}

.charger-state__ring {
  stroke-width: 1.5;
  opacity: 0;
}

.charger-state--idle .charger-state__icon {
  animation: charger-breathe 3.5s ease-in-out infinite;
}

.charger-state--idle .charger-state__ring {
  stroke: var(--status-idle);
  opacity: 0.35;
  animation: charger-breathe 3.5s ease-in-out infinite;
}

.charger-state--charging .charger-state__icon rect {
  fill: #1e3a5f;
  stroke: #3b82f6;
}

.charger-state--charging .charger-state__ring {
  stroke: #3b82f6;
  opacity: 0.7;
  animation: charger-energy-ring 1.8s ease-in-out infinite;
}

.charger-state--charging .charger-state__bolt {
  animation: charger-bolt-pulse 1.2s ease-in-out infinite;
}

.charger-state--fault .charger-state__icon rect {
  stroke: var(--status-faulted);
}

.charger-state--fault .charger-state__ring {
  stroke: var(--status-warn);
  opacity: 0.85;
  animation: charger-fault-ring 1.4s ease-in-out infinite;
}

.charger-state__badge {
  position: absolute;
  top: -2px;
  right: -3px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--status-faulted);
  color: #fff;
  font-size: 0.5rem;
  font-weight: 800;
  line-height: 10px;
  text-align: center;
}

@keyframes charger-breathe {
  0%, 100% { opacity: 0.55; }
  50% { opacity: 1; }
}

@keyframes charger-energy-ring {
  0%, 100% { stroke-opacity: 0.4; transform: scale(1); transform-origin: center; }
  50% { stroke-opacity: 1; }
}

@keyframes charger-bolt-pulse {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 1; }
}

@keyframes charger-fault-ring {
  0%, 100% { box-shadow: none; opacity: 0.5; }
  50% { opacity: 1; }
}

.journey-splash--dashboard .splash-console--living .splash-console__sparkline-actual {
  stroke-dasharray: 320;
  stroke-dashoffset: 320;
  animation: splash-sparkline-draw 3s ease-in-out infinite;
}

@keyframes splash-sparkline-draw {
  0%, 15% { stroke-dashoffset: 320; }
  45%, 85% { stroke-dashoffset: 0; }
  100% { stroke-dashoffset: 320; }
}

.journey-splash__cta {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 2rem;
}

.journey-splash__cta .sign-in-actions {
  border-left: none;
  padding-left: 0;
  margin-left: 0;
}

.journey-splash .trust-bar {
  margin-top: 1.25rem;
}

@keyframes splash-progress {
  0% { width: 0%; }
  5% { width: 33%; }
  33% { width: 33%; }
  38% { width: 66%; }
  66% { width: 66%; }
  71% { width: 100%; }
  95% { width: 100%; }
  100% { width: 0%; }
}

@keyframes splash-step-1 {
  0%, 5%, 28% { opacity: 1; }
  33%, 100% { opacity: 0.45; }
}

@keyframes splash-step-2 {
  0%, 28% { opacity: 0.45; }
  33%, 38%, 61% { opacity: 1; }
  66%, 100% { opacity: 0.45; }
}

@keyframes splash-step-3 {
  0%, 61% { opacity: 0.45; }
  66%, 71%, 95% { opacity: 1; }
  100% { opacity: 0.45; }
}

@keyframes splash-dot {
  0%, 5%, 28% { background: var(--color-primary); box-shadow: 0 0 0 3px rgb(5 150 105 / 25%); }
  33%, 100% { background: var(--color-border); box-shadow: none; }
}

@keyframes splash-dot-2 {
  0%, 28% { background: var(--color-border); box-shadow: none; }
  33%, 38%, 61% { background: var(--color-primary); box-shadow: 0 0 0 3px rgb(5 150 105 / 25%); }
  66%, 100% { background: var(--color-border); box-shadow: none; }
}

@keyframes splash-dot-3 {
  0%, 61% { background: var(--color-border); box-shadow: none; }
  66%, 71%, 95% { background: var(--color-primary); box-shadow: 0 0 0 3px rgb(5 150 105 / 25%); }
  100% { background: var(--color-border); box-shadow: none; }
}

@keyframes splash-panel-1 {
  0%, 5% { opacity: 0; transform: translateY(12px) scale(0.98); }
  8%, 28% { opacity: 1; transform: translateY(0) scale(1); }
  33%, 100% { opacity: 0; transform: translateY(-8px) scale(0.98); }
}

@keyframes splash-panel-2 {
  0%, 28% { opacity: 0; transform: translateY(12px) scale(0.98); }
  33%, 38% { opacity: 0; transform: translateY(12px) scale(0.98); }
  41%, 61% { opacity: 1; transform: translateY(0) scale(1); }
  66%, 100% { opacity: 0; transform: translateY(-8px) scale(0.98); }
}

@keyframes splash-panel-3 {
  0%, 61% { opacity: 0; transform: translateY(12px) scale(0.98); }
  66%, 71% { opacity: 0; transform: translateY(12px) scale(0.98); }
  74%, 95% { opacity: 1; transform: translateY(0) scale(1); }
  100% { opacity: 0; transform: translateY(-8px) scale(0.98); }
}

@keyframes splash-pulse {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.05); }
}

@keyframes splash-pulse-border {
  0%, 100% { box-shadow: 0 0 0 2px rgb(5 150 105 / 15%); }
  50% { box-shadow: 0 0 0 4px rgb(5 150 105 / 25%); }
}

@media (prefers-reduced-motion: reduce) {
  .journey-splash__progress-fill,
  .journey-splash__step,
  .journey-splash__step .journey-splash__dot,
  .journey-splash__panel,
  .splash-checklist__item--active,
  .splash-handoff__pulse {
    animation: none;
  }

  .journey-splash__step--1,
  .journey-splash__step--1 .journey-splash__dot {
    opacity: 1;
  }

  .journey-splash__step--1 .journey-splash__dot {
    background: var(--color-primary);
  }

  .journey-splash__progress-fill {
    width: 33%;
  }

  .journey-splash__panel--1 {
    opacity: 1;
    transform: none;
    position: relative;
  }

  .journey-splash__panel--2 {
    display: none;
  }

  .journey-splash__panel--3 {
    display: none;
  }

  /* Home dashboard (ops-only): always show living Operations panel */
  .journey-splash--ops-only .journey-splash__panel--3 {
    display: flex;
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }

  .journey-splash--ops-only .journey-splash__step--1,
  .journey-splash--ops-only .journey-splash__step--2 {
    opacity: 0.45;
  }

  .journey-splash--ops-only .journey-splash__step--1 .journey-splash__dot,
  .journey-splash--ops-only .journey-splash__step--2 .journey-splash__dot {
    opacity: 1;
    background: var(--color-border);
  }

  .journey-splash--ops-only .journey-splash__step--3,
  .journey-splash--ops-only .journey-splash__step--3 .journey-splash__dot {
    opacity: 1;
  }

  .journey-splash--ops-only .journey-splash__step--3 .journey-splash__dot {
    background: var(--color-primary);
  }

  .journey-splash--ops-only .journey-splash__progress-fill {
    width: 100%;
  }

  .journey-splash__stage {
    min-height: auto;
  }
}

@media (max-width: 768px) {
  .site-header__inner {
    grid-template-columns: 1fr auto;
    gap: 0.75rem;
  }

  .site-nav {
    grid-column: 1 / -1;
    flex: 1 1 100%;
    flex-wrap: wrap;
  }

  .site-header__actions {
    margin-left: 0;
    justify-self: end;
  }

  .site-footer--compact .site-footer__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-footer--compact .site-footer__nav {
    margin-left: 0;
    justify-content: flex-start;
  }
}

@media (max-width: 720px) {
  .hero__stats {
    grid-template-columns: 1fr;
  }

  .site-nav {
    justify-content: flex-start;
  }

  .site-header__actions {
    justify-content: flex-end;
  }

  .site-header__actions .btn--ghost:first-child {
    display: none;
  }

  .sign-in-actions .btn {
    font-size: 0.75rem;
    padding: 0.4rem 0.55rem;
  }

  .journey__step {
    grid-template-columns: 1fr;
  }

  .badge {
    justify-self: start;
  }

  .console-preview__body {
    grid-template-columns: 1fr;
  }

  .console-preview__nav {
    flex-direction: row;
    flex-wrap: wrap;
    border-right: none;
    border-bottom: 1px solid #374151;
  }

  .console-preview__cards {
    grid-template-columns: 1fr;
  }

  .console-preview__row {
    grid-template-columns: 1fr 1fr;
    font-size: 0.6875rem;
  }

  .journey-splash__steps {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .journey-splash__step {
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
  }

  .journey-splash__dot {
    margin-bottom: 0;
  }

  .journey-splash__stage {
    min-height: 380px;
  }

  .splash-console {
    grid-template-columns: 1fr;
  }

  .splash-console__nav {
    flex-direction: row;
    flex-wrap: wrap;
    border-right: none;
    border-bottom: 1px solid #374151;
  }

  .splash-console__cards {
    grid-template-columns: 1fr;
  }

  .splash-console__row {
    grid-template-columns: 1fr 1fr;
    font-size: 0.6875rem;
  }

  .splash-handoff {
    flex-direction: column;
  }

  .splash-handoff__arrow {
    transform: rotate(90deg);
  }
}

/* Who this is for */
.who-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  margin-bottom: 1rem;
}

.who-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: var(--shadow);
}

.who-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  color: var(--color-navy);
}

.who-card p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--color-muted);
}

/* Technical architecture stack */
.arch-stack {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 720px;
}

.arch-stack__layer {
  display: grid;
  grid-template-columns: 7rem 1fr;
  gap: 1rem;
  align-items: baseline;
  padding: 1rem 1.25rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
}

.arch-stack__label {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-navy);
}

.arch-stack__items {
  margin: 0;
  font-size: 0.875rem;
  color: var(--color-muted);
  line-height: 1.5;
}

.contact-meta {
  margin-top: 1.25rem;
  font-size: 0.875rem;
  color: var(--color-muted);
}

.contact-meta a {
  color: var(--color-muted);
}

.contact-meta a:hover {
  color: var(--color-primary);
}

/* ── Multi-page marketing (v0.5) ── */

/* Readable line length; shell stays aligned with header */
.hero--gateway .hero__lead {
  max-width: 42rem;
}

.page-hero {
  padding: 4rem var(--shell-pad) 3rem;
  background: linear-gradient(180deg, #f1f5f9 0%, var(--color-bg) 100%);
  border-bottom: 1px solid var(--color-border);
}

.page-hero--compact {
  padding-bottom: 2rem;
}

.page-hero__inner {
  max-width: var(--max);
  margin: 0 auto;
  text-align: left;
}

.page-hero h1 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  line-height: 1.2;
  color: var(--color-navy);
}

.page-hero__lead {
  margin: 0;
  max-width: 40rem;
  font-size: 1.0625rem;
  color: var(--color-muted);
  line-height: 1.65;
}

.page-hero__actions {
  margin-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.challenge-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1rem;
  align-items: stretch;
}

.challenge-grid__arrow {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  color: var(--color-primary);
  font-weight: 600;
  padding: 0 0.25rem;
}

.challenge-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.challenge-card--from {
  border-style: dashed;
}

.challenge-card__label {
  margin: 0 0 0.5rem;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-muted);
}

.challenge-card h2,
.challenge-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.125rem;
  color: var(--color-navy);
}

.challenge-card p {
  margin: 0 0 1rem;
  font-size: 0.9375rem;
  color: var(--color-muted);
}

.challenge-card--to p:last-of-type {
  margin-bottom: 1rem;
}

.hub-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
}

.hub-card {
  display: flex;
  flex-direction: column;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  color: inherit;
  text-decoration: none;
  transition: box-shadow 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.hub-card:hover {
  text-decoration: none;
  border-color: var(--color-primary);
  box-shadow: 0 4px 20px rgb(15 23 42 / 8%);
  transform: translateY(-2px);
}

.hub-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 6px;
  background: var(--color-navy);
  color: #fff;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 0.75rem;
}

.hub-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.0625rem;
  color: var(--color-navy);
}

.hub-card p {
  margin: 0 0 1rem;
  flex: 1;
  font-size: 0.875rem;
  color: var(--color-muted);
}

.hub-card__cta {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-primary);
}

.explore-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.explore-grid--3 {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.explore-card {
  display: block;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1.25rem;
  color: inherit;
  text-decoration: none;
  transition: border-color 0.2s ease;
}

.explore-card:hover {
  text-decoration: none;
  border-color: var(--color-primary);
}

.explore-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 6px;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  font-size: 0.5625rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 0.5rem;
}

.explore-card h3 {
  margin: 0 0 0.35rem;
  font-size: 0.9375rem;
  color: var(--color-navy);
}

.explore-card p {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--color-muted);
}

.section--cta {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
}

.section-cta {
  text-align: left;
}

.section-cta h2 {
  margin: 0 0 0.5rem;
  font-size: 1.5rem;
}

.section-cta p {
  margin: 0;
  color: var(--color-muted);
  max-width: 36rem;
}

.section-cta .contact-links {
  margin-top: 1.25rem;
}

.audience-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
  align-items: start;
}

.audience-shot {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow);
}

.audience-shot img {
  display: block;
  width: 100%;
  height: auto;
}

.audience-outcomes h2 {
  margin: 0 0 1rem;
  font-size: 1.25rem;
}

.outcome-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.outcome-list li {
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--color-border);
}

.outcome-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.outcome-list strong {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--color-navy);
}

.outcome-list span {
  font-size: 0.875rem;
  color: var(--color-muted);
}

.enterprise-callout--light .enterprise-list {
  color: var(--color-text);
  max-width: none;
}

.enterprise-list--light {
  color: var(--color-text);
}

.enterprise-list--light li {
  margin-bottom: 0.5rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form__row label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-navy);
}

.contact-form__row input,
.contact-form__row select,
.contact-form__row textarea {
  width: 100%;
  font: inherit;
  padding: 0.6rem 0.75rem;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background: var(--color-surface);
  color: var(--color-text);
}

.contact-form__row textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form__note {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--color-muted);
}

.contact-aside h2 {
  margin: 0 0 1rem;
  font-size: 1.125rem;
}

.contact-aside__list {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: flex-start;
}

@media (max-width: 900px) {
  .challenge-grid {
    grid-template-columns: 1fr;
  }

  .challenge-grid__arrow {
    justify-content: center;
    transform: rotate(90deg);
    padding: 0.25rem 0;
  }

  .audience-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .home-splash-grid {
    grid-template-columns: 1fr;
  }

  body.has-viewport-page:has(.page-viewport--about),
  body.has-viewport-page:has(.page-viewport--tight) {
    height: auto;
    max-height: none;
    overflow: visible;
  }

  .has-viewport-page .site-main:has(.page-viewport--about),
  .has-viewport-page .site-main:has(.page-viewport--tight) {
    overflow: visible;
  }

  .page-viewport--about,
  .page-viewport--tight {
    min-height: auto;
    max-height: none;
    overflow: visible;
  }

  .roadmap-grid--viewport {
    grid-template-columns: 1fr;
  }

  .migration-playbook__steps--viewport {
    grid-template-columns: 1fr;
  }

  .page-viewport--about .team-row {
    grid-template-columns: 1fr;
  }
}

/* ── Viewport pages (v0.6) — one screen, tight footer ── */

:root {
  --footer-compact-h: 2.75rem;
  --staging-banner-h: 0px;
  --viewport-pad-y: 0.5rem;
  --viewport-pad-bottom: 0.25rem;
  --viewport-gap: 0.75rem;
}

body.dniq-staging {
  --staging-banner-h: 1.35rem;
}

body.admin-bar {
  --header-h: calc(3.25rem + 32px);
}

body.admin-bar.has-viewport-page {
  --header-h: calc(3.25rem + 32px);
}

body.has-viewport-page .dniq-staging-banner ~ .site-header {
  top: var(--staging-banner-h);
}

body.dniq-staging.has-viewport-page {
  padding-top: var(--staging-banner-h);
}

.has-viewport-page {
  display: flex;
  flex-direction: column;
  min-height: 100dvh;
  overflow-x: hidden;
}

.has-viewport-page .site-main {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.page-viewport {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 0;
  max-height: none;
  overflow: hidden;
  padding: var(--viewport-pad-y) var(--shell-pad) var(--viewport-pad-bottom);
}

.page-viewport__inner {
  width: 100%;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: var(--viewport-gap);
  min-height: 0;
  overflow: hidden;
}

.viewport-header {
  flex: 0 0 auto;
  padding-top: 0.15rem;
  overflow: visible;
}

.viewport-header h1 {
  margin: 0 0 0.35rem;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  line-height: 1.2;
  color: var(--color-navy);
}

.viewport-header__lead {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--color-muted);
  max-width: 40rem;
}

.viewport-links {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  align-items: center;
  font-size: 0.875rem;
}

/* Home — zero-scroll dashboard canvas (explicit body class; no :has()-only) */
html:has(body.dniq-home-canvas) {
  height: 100%;
  overflow: hidden;
}

body.dniq-home-canvas {
  display: flex;
  flex-direction: column;
  height: 100dvh;
  max-height: 100dvh;
  min-height: 100dvh;
  overflow: hidden;
}

body.dniq-home-canvas.dniq-staging {
  padding-top: var(--staging-banner-h);
  box-sizing: border-box;
}

body.dniq-home-canvas .site-header {
  flex: 0 0 auto;
  flex-shrink: 0;
  position: relative;
  top: auto;
}

body.dniq-home-canvas.dniq-staging .dniq-staging-banner ~ .site-header {
  top: auto;
}

body.dniq-home-canvas .site-main {
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

body.dniq-home-canvas .site-footer--compact {
  flex: 0 0 auto;
  flex-shrink: 0;
  margin-top: 0;
}

/* Legacy :has() selectors kept for cache/CDN edge cases */
body.has-viewport-page:has(.page-viewport--home),
body.dniq-home-canvas {
  overflow: hidden;
  height: 100dvh;
  max-height: 100dvh;
}

body.has-viewport-page:has(.page-viewport--home) .site-footer--compact,
body.dniq-home-canvas .site-footer--compact {
  margin-top: 0;
  flex-shrink: 0;
}

.has-viewport-page .site-main:has(.page-viewport--home),
body.dniq-home-canvas .site-main {
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.page-viewport--home {
  position: relative;
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.35rem var(--shell-pad);
  overflow: hidden;
  isolation: isolate;
}

.page-viewport--home-atmosphere .home-atmosphere {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.page-viewport--home-atmosphere .home-atmosphere img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  transform: scale(1.04);
  filter: saturate(0.9);
}

.page-viewport--home-atmosphere .home-atmosphere::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgb(248 250 252 / 94%) 0%, rgb(248 250 252 / 88%) 38%, rgb(248 250 252 / 72%) 62%, rgb(248 250 252 / 55%) 100%),
    linear-gradient(180deg, rgb(248 250 252 / 40%) 0%, transparent 35%, rgb(248 250 252 / 55%) 100%);
}

.home-splash-grid {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
  height: 100%;
  max-height: 100%;
  flex: 1 1 auto;
  display: grid;
  grid-template-columns: minmax(240px, 0.92fr) minmax(300px, 1.38fr);
  gap: 0.75rem 1.25rem;
  align-items: center;
  min-height: 0;
}

.chargers-media-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 0 0 1.25rem;
}

.chargers-media-strip__panel {
  margin: 0;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid var(--color-border);
  background: #0b1220;
  aspect-ratio: 16 / 9;
}

.chargers-media-strip__panel img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 720px) {
  .chargers-media-strip {
    grid-template-columns: 1fr;
  }
}

.home-splash-copy h1 {
  margin: 0 0 0.45rem;
  font-size: clamp(1.35rem, 2.5vw, 2rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--color-navy);
}

.home-splash-copy .eyebrow {
  margin-bottom: 0.4rem;
}

.hero__lead--minimal {
  margin: 0 0 0.85rem;
  font-size: 0.9375rem;
  line-height: 1.45;
  color: var(--color-muted);
  max-width: 28rem;
}

.hero__actions--home {
  gap: 0.65rem;
}

.hero__actions--home .hero__actions-primary {
  gap: 0.5rem;
}

.btn--secondary-cta {
  font-weight: 500;
  color: var(--color-muted);
  border-color: var(--color-border);
}

.home-splash-signin {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--color-muted);
}

.home-splash-signin a {
  color: var(--color-muted);
  font-weight: 500;
  text-decoration: none;
}

.home-splash-signin a:hover {
  color: var(--color-text);
  text-decoration: underline;
}

.home-splash-signin__sep {
  margin: 0 0.35rem;
  opacity: 0.5;
}

.home-splash-visual {
  min-height: 0;
  min-width: 0;
  display: flex;
  align-items: center;
  height: 100%;
}

.home-hero-shot {
  width: 100%;
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow:
    0 16px 48px rgb(5 150 105 / 10%),
    0 8px 32px rgb(0 0 0 / 12%);
  background: var(--color-surface);
  opacity: 0;
  animation: home-fade-up 0.65s ease 0.12s forwards;
}

.home-hero-shot__chrome {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.85rem;
  background: linear-gradient(145deg, #f0fdf4 0%, var(--color-bg) 55%, #ecfdf5 100%);
  border-bottom: 1px solid var(--color-border);
}

.home-hero-shot__badge {
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
  background: #dbeafe;
  color: #1e40af;
}

.home-hero-shot__host {
  margin-left: auto;
  font-size: 0.6875rem;
  color: var(--color-muted);
  font-family: ui-monospace, monospace;
}

.home-hero-shot__frame {
  background: #fff;
  line-height: 0;
}

.home-hero-shot__img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: top center;
}

/* Progressive reveal on load */
@keyframes home-fade-up {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.home-splash-copy--reveal {
  animation: home-fade-up 0.55s ease forwards;
}

.home-splash-visual--reveal {
  opacity: 0;
  animation: home-fade-up 0.65s ease 0.12s forwards;
}

.journey-splash--boot .journey-splash__frame {
  opacity: 0;
  animation: home-fade-up 0.6s ease 0.2s forwards;
}

.journey-splash--embedded {
  padding: 0;
  border: none;
  background: transparent;
  width: 100%;
  height: 100%;
}

.journey-splash--embedded .journey-splash__inner {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.journey-splash--dashboard .journey-splash__frame {
  position: relative;
  padding: 0.65rem;
  background: linear-gradient(145deg, #f0fdf4 0%, var(--color-bg) 45%, #ecfdf5 100%);
  box-shadow: 0 16px 48px rgb(5 150 105 / 10%), var(--shadow);
  overflow: hidden;
}

.journey-splash--dashboard .journey-splash__frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, transparent 35%, rgb(5 150 105 / 9%) 50%, transparent 65%);
  background-size: 200% 100%;
  animation: dashboard-shimmer 6s ease-in-out infinite;
  pointer-events: none;
}

@keyframes dashboard-shimmer {
  0%, 100% { background-position: 100% 0; }
  50% { background-position: 0 0; }
}

.journey-splash--embedded .journey-splash__stage {
  min-height: 0;
  max-height: min(48vh, 380px);
}

.journey-splash--embedded.journey-splash--carousel .journey-splash__stage {
  min-height: min(44vh, 380px);
  max-height: min(44vh, 380px);
}

.journey-splash--carousel .journey-splash__progress-fill,
.journey-splash--carousel .journey-splash__step,
.journey-splash--carousel .journey-splash__step .journey-splash__dot,
.journey-splash--carousel .journey-splash__panel--1,
.journey-splash--carousel .journey-splash__panel--2,
.journey-splash--carousel .journey-splash__panel--3 {
  animation-duration: 18s;
}

.journey-splash--carousel.journey-splash--dashboard .journey-splash__panel--3 {
  animation: splash-panel-3-carousel 18s ease-in-out infinite, splash-pulse-border 2.2s ease-in-out infinite;
}

@keyframes splash-panel-3-carousel {
  0%, 58% { opacity: 0; transform: translateY(12px) scale(0.98); }
  62%, 66% { opacity: 0; transform: translateY(12px) scale(0.98); }
  69%, 94% { opacity: 1; transform: translateY(0) scale(1); }
  100% { opacity: 0; transform: translateY(-8px) scale(0.98); }
}

@keyframes splash-panel-1-carousel {
  0%, 5% { opacity: 0; transform: translateY(12px) scale(0.98); }
  8%, 28% { opacity: 1; transform: translateY(0) scale(1); }
  33%, 100% { opacity: 0; transform: translateY(-8px) scale(0.98); }
}

@keyframes splash-panel-2-carousel {
  0%, 28% { opacity: 0; transform: translateY(12px) scale(0.98); }
  33%, 38% { opacity: 0; transform: translateY(12px) scale(0.98); }
  41%, 58% { opacity: 1; transform: translateY(0) scale(1); }
  62%, 100% { opacity: 0; transform: translateY(-8px) scale(0.98); }
}

.journey-splash--carousel .journey-splash__panel--1 {
  animation-name: splash-panel-1-carousel;
}

.journey-splash--carousel .journey-splash__panel--2 {
  animation-name: splash-panel-2-carousel;
}

.journey-splash__pill {
  display: inline-block;
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.1rem 0.35rem;
  border-radius: 999px;
  margin-right: 0.25rem;
  vertical-align: middle;
}

.journey-splash__pill--vpn {
  background: #dbeafe;
  color: #1e40af;
}

.journey-splash__pill--ocpp {
  background: #fef3c7;
  color: #92400e;
}

.journey-splash__pill--live {
  background: #d1fae5;
  color: #065f46;
}

.journey-splash__dot--live {
  box-shadow: 0 0 0 0 rgb(5 150 105 / 45%);
  animation: splash-dot-3 12s ease-in-out infinite, splash-live-ring 2.2s ease-in-out infinite;
}

@keyframes splash-live-ring {
  0%, 100% { box-shadow: 0 0 0 0 rgb(5 150 105 / 35%); }
  50% { box-shadow: 0 0 0 5px rgb(5 150 105 / 0%); }
}

.journey-splash--dashboard .journey-splash__panel--3 {
  animation: splash-panel-3 12s ease-in-out infinite, splash-pulse-border 2.2s ease-in-out infinite;
}

/* Home dashboard: always show living Operations panel (not 12s carousel) */
.journey-splash--ops-only .journey-splash__progress-fill {
  width: 100%;
  animation: none;
}

.journey-splash--ops-only .journey-splash__step--1,
.journey-splash--ops-only .journey-splash__step--2 {
  opacity: 0.45;
}

.journey-splash--ops-only .journey-splash__step--1 .journey-splash__dot,
.journey-splash--ops-only .journey-splash__step--2 .journey-splash__dot {
  animation: none;
  background: var(--color-border);
}

.journey-splash--ops-only .journey-splash__step--3 {
  opacity: 1;
}

.journey-splash--ops-only .journey-splash__step--3 .journey-splash__dot {
  animation: none;
  background: var(--color-primary);
}

.journey-splash--ops-only .journey-splash__panel--3 {
  opacity: 1 !important;
  transform: none !important;
  pointer-events: auto;
  display: flex;
  animation: splash-pulse-border 2.2s ease-in-out infinite;
}

.journey-splash--ops-only .journey-splash__stage {
  min-height: min(42vh, 340px);
}

.journey-splash--ops-only .splash-console--living .splash-console__sparkline-actual {
  animation: splash-sparkline-draw 3s ease-in-out infinite;
}

/* Home hero: static onboarding screenshot (real product UI, polished stats/names) */
.journey-splash--static-panel-1 .journey-splash__progress-fill {
  width: 33%;
  animation: none;
}

.journey-splash--static-panel-1 .journey-splash__step--1 {
  opacity: 1;
}

.journey-splash--static-panel-1 .journey-splash__step--2,
.journey-splash--static-panel-1 .journey-splash__step--3 {
  opacity: 0.45;
}

.journey-splash--static-panel-1 .journey-splash__step--1 .journey-splash__dot {
  animation: none;
  background: var(--color-primary);
}

.journey-splash--static-panel-1 .journey-splash__step--2 .journey-splash__dot,
.journey-splash--static-panel-1 .journey-splash__step--3 .journey-splash__dot {
  animation: none;
  background: var(--color-border);
}

.journey-splash--static-panel-1 .journey-splash__panel--1 {
  opacity: 1 !important;
  transform: none !important;
  pointer-events: auto;
  display: flex;
  animation: splash-pulse-border 2.2s ease-in-out infinite;
}

.journey-splash--static-panel-1 .journey-splash__panel--2,
.journey-splash--static-panel-1 .journey-splash__panel--3 {
  display: none;
}

.journey-splash--static-panel-1 .journey-splash__stage {
  min-height: min(42vh, 340px);
}

body.dniq-home-canvas .journey-splash--dashboard .journey-splash__dot--live {
  animation: splash-dot-3 12s ease-in-out infinite, splash-live-ring 1.6s ease-in-out infinite;
}

.site-footer__trust-badge {
  flex: 1 1 auto;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-muted);
  text-align: center;
}

.site-footer--compact .site-footer__inner:has(.site-footer__trust-badge) {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 0.5rem 1rem;
}

.site-footer--compact .site-footer__inner:has(.site-footer__trust-badge) .site-footer__copy {
  justify-self: start;
}

.site-footer--compact .site-footer__inner:has(.site-footer__trust-badge) .site-footer__nav {
  justify-self: end;
}

@media (prefers-reduced-motion: reduce) {
  .home-splash-copy--reveal,
  .home-splash-visual--reveal,
  .journey-splash--boot .journey-splash__frame,
  .journey-splash--dashboard .journey-splash__frame::before {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .journey-splash__dot--live {
    animation: none;
    background: var(--color-primary);
  }

  .charger-state--idle .charger-state__icon,
  .charger-state--idle .charger-state__ring,
  .charger-state--charging .charger-state__ring,
  .charger-state--charging .charger-state__bolt,
  .charger-state--fault .charger-state__ring,
  .splash-console--living .splash-console__card--live::after,
  .journey-splash--dashboard .splash-console--living .splash-console__sparkline-actual {
    animation: none;
  }

  .journey-splash--ops-only .journey-splash__panel--3 {
    animation: none;
  }

  .journey-splash--static-panel-1 .journey-splash__panel--1 {
    animation: none;
  }
}

@media (max-width: 900px) {
  .home-splash-grid {
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }

  .site-footer--compact .site-footer__inner:has(.site-footer__trust-badge) {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .site-footer--compact .site-footer__inner:has(.site-footer__trust-badge) .site-footer__copy,
  .site-footer--compact .site-footer__inner:has(.site-footer__trust-badge) .site-footer__nav {
    justify-self: center;
  }
}

.journey-splash--embedded .journey-splash__intro,
.journey-splash--embedded .journey-splash__cta,
.journey-splash--embedded .trust-bar {
  display: none;
}

/* Solutions viewport */
.hub-grid--viewport {
  flex: 0 1 auto;
  min-height: 0;
}

.explore-grid--viewport {
  flex: 0 0 auto;
}

.hub-grid--viewport .hub-card p {
  font-size: 0.8125rem;
}

.hub-grid--viewport .hub-card {
  padding: 1rem;
}

.explore-grid--viewport .explore-card {
  padding: 0.75rem 1rem;
}

/* Platform viewport */
.challenge-grid--compact {
  gap: 0.75rem;
}

.challenge-grid--compact .challenge-card {
  padding: 1rem;
}

.challenge-grid--compact h2 {
  font-size: 0.9375rem;
  margin: 0 0 0.25rem;
}

.challenge-grid--compact p {
  margin: 0;
  font-size: 0.8125rem;
}

.journey-strip {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
  flex: 0 0 auto;
}

.journey-strip__item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 0.65rem 0.75rem;
  font-size: 0.75rem;
  min-width: 0;
}

.journey-strip__index {
  font-weight: 700;
  color: var(--color-primary);
  font-size: 0.6875rem;
}

.journey-strip__item strong {
  display: block;
  font-size: 0.8125rem;
  color: var(--color-navy);
}

.journey-strip__item span:not(.badge) {
  color: var(--color-muted);
}

.journey-strip__item .badge {
  align-self: flex-start;
  font-size: 0.625rem;
}

.arch-stack--compact {
  gap: 0.4rem;
  max-width: none;
}

.arch-stack--compact .arch-stack__layer {
  padding: 0.5rem 0.75rem;
  grid-template-columns: 5.5rem 1fr;
}

.diff-grid--compact {
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
}

.diff-grid--compact .diff-card {
  padding: 0.75rem;
}

.diff-grid--compact .diff-card h3 {
  font-size: 0.8125rem;
}

.diff-grid--compact .diff-card p {
  font-size: 0.75rem;
}

.site-footer--compact {
  border-top: 1px solid var(--color-border);
  flex-shrink: 0;
  margin-top: auto;
}

.site-footer--compact .site-footer__inner {
  padding: 0.75rem 0;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1.5rem;
  text-align: left;
}

.site-footer--compact .site-footer__copy {
  font-size: 0.8125rem;
}

.site-footer--compact .site-footer__nav {
  font-size: 0.8125rem;
  gap: 0.35rem 1rem;
  flex-wrap: wrap;
  margin-left: auto;
  justify-content: flex-end;
}

/* Tight viewport shell — same header/footer rhythm as About (not home, not about) */
body.has-viewport-page:has(.page-viewport--tight) {
  overflow: hidden;
  height: 100dvh;
  max-height: 100dvh;
}

body.has-viewport-page:has(.page-viewport--tight) .site-footer--compact {
  margin-top: 0;
}

.has-viewport-page .site-main:has(.page-viewport--tight) {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-height: 0;
}

.page-viewport--tight {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 0.5rem var(--shell-pad) 0.25rem;
  overflow: hidden;
  min-height: 0;
}

.page-viewport--tight .page-viewport__inner {
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0.85rem;
  overflow: hidden;
}

.viewport-header--compact h1 {
  font-size: clamp(1.2rem, 2.2vw, 1.55rem);
}

.viewport-header--compact .viewport-header__lead {
  font-size: 0.875rem;
  line-height: 1.45;
}

/* Viewport body — flex-grow middle (About team-row pattern) */
.page-viewport__body {
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  gap: 0.65rem;
  overflow: hidden;
}

.viewport-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 0.85rem;
  align-items: stretch;
  min-height: 0;
  flex: 1 1 auto;
}

.viewport-split__content {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  gap: 0.55rem;
  min-height: 0;
  min-width: 0;
}

.viewport-split__visual {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 0;
  min-width: 0;
}

.viewport-shot {
  margin: 0;
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  align-items: center;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  box-shadow: var(--shadow);
}

.viewport-shot img {
  display: block;
  width: 100%;
  height: auto;
  max-height: min(56vh, 520px);
  object-fit: contain;
  object-position: top center;
  background: #f8fafc;
}

.viewport-split--platform .viewport-shot img {
  max-height: min(58vh, 540px);
}

.viewport-console-mini {
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.viewport-console-mini__label {
  margin: 0;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-muted);
}

.viewport-console-mini__frame {
  flex: 1 1 auto;
  min-height: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid #374151;
}

.viewport-console-mini .splash-console {
  font-size: 0.6875rem;
}

.viewport-console-mini .splash-console__nav-item {
  font-size: 0.5625rem;
  padding: 0.25rem 0.35rem;
}

.viewport-console-mini .splash-console__cards {
  gap: 0.35rem;
}

.viewport-console-mini .splash-console__card {
  padding: 0.35rem 0.45rem;
}

.viewport-console-mini .splash-console__sparkline {
  height: 36px;
}

.viewport-console-mini .splash-console__fleet-row {
  padding: 0.25rem 0;
  font-size: 0.625rem;
}

.viewport-console-mini--living .splash-console__sparkline-actual {
  animation: splash-sparkline-draw 3s ease-in-out infinite;
}

.security-pillar-grid,
.ocpp-pillar-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem;
  flex: 1 1 auto;
  min-height: 0;
  align-content: space-evenly;
}

.security-pillar-card,
.ocpp-pillar-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 0.65rem 0.75rem;
  min-width: 0;
}

.security-pillar-card h2,
.ocpp-pillar-card h2 {
  margin: 0 0 0.25rem;
  font-size: 0.8125rem;
  color: var(--color-navy);
}

.security-pillar-card p,
.ocpp-pillar-card p {
  margin: 0;
  font-size: 0.75rem;
  line-height: 1.4;
  color: var(--color-muted);
}

.migration-timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.migration-timeline::before {
  content: "";
  position: absolute;
  top: 0.45rem;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-primary) 35%, var(--color-border) 35%, var(--color-border) 100%);
  animation: migration-progress 8s ease-in-out infinite;
}

@keyframes migration-progress {
  0%, 100% { background-size: 35% 100%; background-position: 0 0; }
  50% { background-size: 85% 100%; background-position: 0 0; }
}

.migration-timeline__node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

.migration-timeline__dot {
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 50%;
  background: var(--color-border);
  border: 2px solid var(--color-surface);
}

.migration-timeline__node--active .migration-timeline__dot {
  background: var(--color-primary);
  box-shadow: 0 0 0 3px rgb(5 150 105 / 20%);
}

.migration-timeline__label {
  font-size: 0.625rem;
  font-weight: 600;
  color: var(--color-muted);
  line-height: 1.2;
  max-width: 6rem;
}

.ocpp-charger-strip__title {
  margin: 0 0 0.35rem;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-muted);
}

.ocpp-charger-strip__list {
  list-style: none;
  margin: 0 0 0.5rem;
  padding: 0;
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.ocpp-charger-strip__list li {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.6875rem;
  color: var(--color-muted);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 999px;
  padding: 0.25rem 0.55rem 0.25rem 0.35rem;
}

.persona-proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.5rem;
  flex: 0 1 auto;
}

.persona-proof-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 0.85rem 0.95rem;
  min-width: 0;
}

.persona-proof-card__icon {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--color-primary);
  margin-bottom: 0.35rem;
}

.persona-proof-card h3 {
  margin: 0 0 0.35rem;
  font-size: 0.9375rem;
  line-height: 1.35;
  color: var(--color-navy);
}

.persona-proof-card p {
  margin: 0 0 0.35rem;
  font-size: 0.8125rem;
  line-height: 1.45;
  color: var(--color-muted);
}

.persona-proof-card__proof {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-primary);
  line-height: 1.35;
}

.page-viewport__body--solutions {
  gap: 0.5rem;
}

.page-viewport__body--solutions .hub-grid--viewport {
  flex: 1 1 auto;
  min-height: 0;
  align-content: space-evenly;
}

.page-viewport__body--platform .journey-strip {
  flex: 0 0 auto;
}

.page-viewport__body--contact {
  flex: 1 1 auto;
  min-height: 0;
}

.contact-column {
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  gap: 0.85rem;
  max-width: 40rem;
  margin: 0 auto;
  width: 100%;
}

.viewport-header--contact {
  margin-bottom: 0;
  flex-shrink: 0;
}

/* Contact form band — one exact scroll page after the hero */
.section--contact.section--page-band {
  min-height: var(--viewport-band-min);
  height: var(--viewport-band-min);
  max-height: var(--viewport-band-min);
  overflow: hidden;
  box-sizing: border-box;
}

.section--contact > .section__inner {
  flex: 1 1 auto;
  height: 100%;
  min-height: 0;
  justify-content: center;
  gap: 0;
}

.contact-stack--viewport {
  flex: 1 1 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(15rem, 22rem);
  gap: clamp(1.5rem, 3.5vw, 2.75rem);
  align-items: stretch;
  width: 100%;
  max-width: 68rem;
  height: 100%;
  max-height: 100%;
  min-height: 0;
  margin: 0;
  text-align: left;
}

.section--contact .contact-form {
  min-width: 0;
  max-width: 40rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0.75rem;
}

.contact-form__intro {
  margin: 0;
  flex: 0 0 auto;
}

.contact-form__intro .eyebrow {
  margin-bottom: 0.35rem;
}

.contact-form__intro h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  color: var(--color-navy);
  letter-spacing: -0.02em;
}

.section--contact .contact-form__row {
  flex: 0 0 auto;
}

.section--contact .contact-form__row:has(textarea) {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.section--contact .contact-form__row textarea {
  flex: 1 1 auto;
  min-height: 5.5rem;
  height: 100%;
}

.contact-form__actions {
  display: flex;
  justify-content: flex-start;
  flex: 0 0 auto;
}

.section--contact .contact-form__note {
  flex: 0 0 auto;
}

.contact-connect {
  border-top: none;
  border-left: 1px solid var(--color-border);
  padding: 0 0 0 clamp(1rem, 2.2vw, 1.75rem);
  margin: 0;
  min-width: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0.75rem;
  text-align: left;
}

.contact-connect h2 {
  margin: 0;
  flex: 0 0 auto;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  color: var(--color-navy);
  letter-spacing: -0.02em;
}

.contact-connect__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
  flex: 1 1 auto;
  align-content: stretch;
  min-height: 0;
}

.contact-connect__list li {
  display: flex;
  min-height: 0;
}

.contact-connect__list .btn {
  width: 100%;
  height: 100%;
  min-height: 2.75rem;
  justify-content: flex-start;
}

@media (max-width: 900px) {
  .section--contact.section--page-band {
    height: auto;
    max-height: none;
    overflow: visible;
    min-height: var(--viewport-band-min);
  }

  .section--contact > .section__inner {
    height: auto;
    justify-content: flex-start;
  }

  .contact-stack--viewport {
    grid-template-columns: 1fr;
    height: auto;
    max-height: none;
    max-width: none;
  }

  .section--contact .contact-form {
    height: auto;
    max-width: none;
    justify-content: flex-start;
  }

  .section--contact .contact-form__row:has(textarea) {
    flex: 0 0 auto;
  }

  .section--contact .contact-form__row textarea {
    height: auto;
    min-height: 5.5rem;
  }

  .contact-connect {
    height: auto;
    border-left: none;
    border-top: 1px solid var(--color-border);
    padding: 1rem 0 0;
    justify-content: flex-start;
  }

  .contact-connect__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-content: start;
  }

  .contact-connect__list .btn {
    height: auto;
  }
}

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

.page-viewport--security .viewport-shot img {
  max-height: min(46vh, 360px);
  object-position: left top;
}

.contact-aside .viewport-console-mini {
  margin-top: 0.65rem;
  max-height: 220px;
}

.page-viewport__body--integration .arch-stack--compact {
  flex: 0 0 auto;
}

.page-viewport__body--integration .viewport-split--integration {
  flex: 1 1 auto;
}

.page-viewport__body--roadmap .roadmap-grid--viewport {
  flex: 1 1 auto;
  align-content: stretch;
}

body.has-viewport-page:has(.page-viewport--about) {
  overflow: hidden;
  height: 100dvh;
  max-height: 100dvh;
}

body.has-viewport-page:has(.page-viewport--about) .site-footer--compact {
  margin-top: 0;
}

.has-viewport-page .site-main:has(.page-viewport--about) {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-height: 0;
}

.page-viewport--about {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 0.5rem var(--shell-pad) 0.25rem;
  overflow: hidden;
  min-height: 0;
}

.page-viewport--about .page-viewport__inner {
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0.85rem;
  max-width: 52rem;
  overflow: hidden;
}

.page-viewport--about .viewport-header {
  margin-bottom: 0;
  flex-shrink: 0;
}

.page-viewport--about .viewport-header .eyebrow {
  margin-bottom: 0.35rem;
}

.page-viewport--about .viewport-header h1 {
  margin-bottom: 0.5rem;
  font-size: clamp(1.25rem, 2.2vw, 1.65rem);
  line-height: 1.2;
  max-width: 36rem;
}

.page-viewport--about .viewport-header__lead {
  font-size: 0.875rem;
  line-height: 1.45;
  max-width: 38rem;
}

.page-viewport--about .team-row {
  flex: 1 1 auto;
  margin: 0;
  gap: 0.85rem;
  align-content: space-evenly;
  min-height: 0;
}

.page-viewport--about .viewport-links {
  flex: 0 0 auto;
  margin-top: 0;
  padding-top: 0.15rem;
}

.page-viewport--about .team-card--horizontal {
  padding: 0.75rem 0.85rem;
  gap: 0.75rem;
}

.page-viewport--about .team-card__photo img {
  width: 4.5rem;
  height: 4.5rem;
}

.page-viewport--about .team-card__name {
  font-size: 0.9375rem;
}

.page-viewport--about .team-card__role {
  font-size: 0.75rem;
  margin-bottom: 0.25rem;
}

.page-viewport--about .team-card__bio {
  font-size: 0.75rem;
  line-height: 1.4;
  margin-bottom: 0.25rem;
}

.page-viewport--about .team-card__link {
  font-size: 0.75rem;
}

/* Roadmap viewport */
.roadmap-grid--viewport {
  flex: 1 1 auto;
  min-height: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}

.roadmap-grid--viewport .roadmap-panel {
  padding: 0.85rem 1rem;
  min-height: 0;
  overflow: hidden;
}

.roadmap-grid--viewport .roadmap-panel h2 {
  margin: 0 0 0.5rem;
  font-size: 0.9375rem;
}

.roadmap-list--compact {
  gap: 0.45rem;
}

.roadmap-list--compact li {
  padding-bottom: 0.45rem;
  font-size: 0.75rem;
}

.roadmap-list--compact .roadmap-list__title {
  font-size: 0.8125rem;
}

.roadmap-list--compact .roadmap-list__desc,
.roadmap-list--compact .roadmap-list__meta,
.roadmap-list--compact .roadmap-list__id {
  font-size: 0.6875rem;
}

/* Migration viewport */
.migration-playbook__steps--viewport {
  flex: 1 1 auto;
  min-height: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
  margin: 0;
}

.migration-playbook__steps--viewport .migration-playbook__step {
  padding: 0.65rem 0.75rem;
  font-size: 0.75rem;
  gap: 0.25rem;
}

.migration-playbook__steps--viewport .migration-playbook__step strong {
  font-size: 0.8125rem;
}

/* Audience viewport */
.audience-outcomes--viewport {
  flex: 1 1 auto;
  min-height: 0;
}

.audience-outcomes--viewport .audience-outcomes__title {
  margin: 0 0 0.5rem;
  font-size: 0.9375rem;
}

.outcome-list--viewport {
  margin: 0;
  gap: 0.45rem;
}

.outcome-list--viewport li {
  padding-bottom: 0.45rem;
}

.outcome-list--viewport strong {
  font-size: 0.8125rem;
}

.outcome-list--viewport span {
  font-size: 0.75rem;
  line-height: 1.4;
}

.team-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  flex: 0 1 auto;
  min-height: 0;
  align-items: stretch;
}

.team-card--horizontal {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 0.85rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 0.85rem;
  min-width: 0;
}

.team-card__photo {
  flex: 0 0 auto;
}

.team-card__photo img {
  display: block;
  width: 5.5rem;
  height: 5.5rem;
  object-fit: cover;
  object-position: center top;
  border-radius: 10px;
  border: 1px solid var(--color-border);
  background: var(--color-bg);
}

.team-card__body {
  flex: 1 1 auto;
  min-width: 0;
}

.team-card__name {
  margin: 0 0 0.1rem;
  font-size: 0.9375rem;
  color: var(--color-navy);
}

.team-card__role {
  margin: 0 0 0.35rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-primary);
}

.team-card__bio {
  margin: 0 0 0.35rem;
  font-size: 0.75rem;
  color: var(--color-muted);
  line-height: 1.45;
}

.team-card__link {
  font-size: 0.75rem;
  font-weight: 500;
}

/* Security — viewport with pillar grid + console preview */
.page-viewport--security .security-trust-bar .trust-bar {
  margin: 0;
  gap: 0.35rem;
}

.page-viewport--security .security-trust-bar .trust-bar__item {
  min-width: 100px;
  padding: 0.3rem 0.5rem;
}

.page-viewport--security .viewport-links--cta {
  margin: 0.15rem 0 0;
}

@media (max-width: 900px) {
  .viewport-split {
    grid-template-columns: 1fr;
  }

  .viewport-shot img {
    max-height: 220px;
  }

  .security-pillar-grid,
  .ocpp-pillar-grid {
    grid-template-columns: 1fr;
  }

  .persona-proof-strip {
    grid-template-columns: 1fr;
  }

  .migration-timeline {
    display: none;
  }

  .contact-aside .viewport-console-mini {
    max-height: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .migration-timeline::before,
  .viewport-console-mini--living .splash-console__sparkline-actual {
    animation: none;
  }
}

.viewport-header .eyebrow {
  margin-bottom: 0.5rem;
}

/* legacy team-grid (unused) */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  flex: 1 1 auto;
  min-height: 0;
}

.team-card {
  display: flex;
  gap: 0.85rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1rem;
  min-width: 0;
}

.team-card__avatar {
  flex: 0 0 auto;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: var(--color-navy);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

/* Contact — viewport */
.contact-layout--viewport {
  gap: 1.25rem;
  align-items: stretch;
}

.contact-form--compact {
  gap: 0.65rem;
}

.contact-form__row--half {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
}

.contact-form--compact .contact-form__row textarea {
  min-height: 72px;
}

.contact-form--compact .contact-form__row label {
  margin-bottom: 0.25rem;
  font-size: 0.8125rem;
}

.contact-form--compact .contact-form__row input,
.contact-form--compact .contact-form__row select,
.contact-form--compact .contact-form__row textarea {
  padding: 0.5rem 0.65rem;
  font-size: 0.875rem;
}

.contact-aside--compact h2 {
  margin: 0 0 0.65rem;
  font-size: 1rem;
}

.contact-aside--compact .contact-aside__list {
  margin-bottom: 0.75rem;
  gap: 0.4rem;
}

@media (max-width: 900px) {
  .team-grid {
    grid-template-columns: 1fr;
  }

  .contact-form__row--half {
    grid-template-columns: 1fr;
  }

  .roadmap-grid--viewport {
    grid-template-columns: 1fr;
  }

  .migration-playbook__steps--viewport {
    grid-template-columns: 1fr;
  }

  .journey-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .diff-grid--compact {
    grid-template-columns: 1fr;
  }
}

/* Mobile app showcase — iOS + Android simulator captures */
.mobile-showcase {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 0.75rem;
}

.mobile-showcase__intro {
  max-width: 42rem;
}

.mobile-showcase__intro h2 {
  margin: 0.35rem 0 0.5rem;
  font-size: clamp(1.25rem, 2.2vw, 1.65rem);
  color: var(--color-navy);
}

.mobile-showcase__lead {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.mobile-showcase__devices {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: clamp(0.75rem, 3vw, 2rem);
  flex-wrap: wrap;
}

.mobile-showcase__device {
  position: relative;
  margin: 0;
  flex: 0 1 auto;
}

.mobile-showcase__device img {
  display: block;
  width: auto;
  height: min(52vh, 520px);
  max-width: min(38vw, 280px);
  border-radius: 28px;
  box-shadow:
    0 24px 48px rgba(15, 23, 42, 0.14),
    0 0 0 1px rgba(15, 23, 42, 0.06);
  background: #fff;
}

.mobile-showcase__device--ios img {
  border-radius: 36px;
}

.mobile-showcase__badge {
  position: absolute;
  top: 0.65rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-navy);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
}

.mobile-showcase--compact {
  margin-top: 0;
}

.mobile-showcase--compact .mobile-showcase__devices {
  gap: 1rem;
}

.mobile-showcase--compact .mobile-showcase__device img {
  height: min(40vh, 420px);
  max-width: min(34vw, 240px);
}

/* Mobile hub — no-scroll viewport with tab panes */
body.has-viewport-page:has(.page-viewport--mobile-hub) {
  overflow: hidden;
  height: 100dvh;
  max-height: 100dvh;
}

body.has-viewport-page:has(.page-viewport--mobile-hub) .site-footer--compact {
  margin-top: 0;
}

.has-viewport-page .site-main:has(.page-viewport--mobile-hub) {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-height: 0;
}

.page-viewport--mobile-hub {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  padding: 0.45rem var(--shell-pad) 0.2rem;
  overflow: hidden;
  min-height: 0;
}

.page-viewport--mobile-hub .page-viewport__inner.mobile-hub {
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  overflow: hidden;
  max-width: 76rem;
}

.mobile-hub__tabs {
  flex: 0 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  padding: 0.15rem 0 0.35rem;
}

.mobile-hub__pane-intro {
  flex: 0 0 auto;
  min-height: 5.75rem;
  margin: 0 0 0.55rem;
}

.mobile-hub__pane-intro .eyebrow {
  margin: 0 0 0.2rem;
}

.mobile-hub__pane-title {
  margin: 0 0 0.3rem;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  line-height: 1.2;
  color: var(--color-navy);
  max-width: 40rem;
}

.mobile-hub__pane-lead {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.45;
  color: var(--color-muted);
  max-width: 42rem;
}

.mobile-hub__pane-body {
  flex: 1 1 auto;
  min-height: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.mobile-hub__tab {
  appearance: none;
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  color: var(--color-muted);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.mobile-hub__tab:hover {
  border-color: var(--color-primary);
  color: var(--color-navy);
}

.mobile-hub__tab.is-active {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
}

.mobile-hub__panels {
  flex: 1 1 auto;
  min-height: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.mobile-hub__pane {
  display: none;
  flex: 1 1 auto;
  min-height: 0;
  overflow: hidden;
}

.mobile-hub__pane.is-active {
  display: flex !important;
  flex-direction: column;
}

.mobile-hub__summary-grid {
  flex: 1 1 auto;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.75rem;
  align-items: stretch;
  min-height: 0;
}

.mobile-hub__summary-card {
  appearance: none;
  border: 1px solid var(--color-border);
  border-radius: 14px;
  background: var(--color-surface);
  padding: 1rem 1rem 0.9rem;
  text-align: left;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  min-height: 0;
  transition: border-color 0.15s, box-shadow 0.15s, transform 0.15s;
}

.mobile-hub__summary-card:hover {
  border-color: var(--color-primary);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
  transform: translateY(-1px);
}

.mobile-hub__summary-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 10px;
  background: rgba(11, 61, 145, 0.08);
  color: var(--color-primary);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.mobile-hub__summary-status {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-accent);
}

.mobile-hub__summary-card--preview .mobile-hub__summary-status {
  color: #b45309;
}

.mobile-hub__summary-title {
  font-size: 1rem;
  color: var(--color-navy);
}

.mobile-hub__summary-body {
  font-size: 0.82rem;
  line-height: 1.45;
  color: var(--color-muted);
}

.mobile-hub__summary-features {
  margin: 0.15rem 0 0;
  padding: 0 0 0 1rem;
  list-style: disc;
  flex: 1 1 auto;
  min-height: 0;
  overflow: hidden;
}

.mobile-hub__summary-features li {
  font-size: 0.74rem;
  line-height: 1.4;
  color: var(--color-muted);
  margin-bottom: 0.2rem;
}

.mobile-hub__summary-features li:last-child {
  margin-bottom: 0;
}

.mobile-hub__summary-cta {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-top: 0.15rem;
}

.mobile-hub__detail {
  flex: 1 1 auto;
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(0.75rem, 2vw, 1.5rem);
  align-items: center;
}

.mobile-hub__detail-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  overflow: hidden;
}

.mobile-hub__detail-copy h2,
.mobile-hub__detail-lead {
  display: none;
}

.mobile-hub__features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}

.mobile-hub__features li {
  display: grid;
  gap: 0.1rem;
}

.mobile-hub__features strong {
  font-size: 0.82rem;
  color: var(--color-navy);
}

.mobile-hub__features span {
  font-size: 0.78rem;
  line-height: 1.4;
  color: var(--color-muted);
}

.mobile-hub__platforms {
  list-style: none;
  margin: 0;
  padding: 0.45rem 0 0;
  border-top: 1px solid var(--color-border);
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1rem;
}

.mobile-hub__platforms li {
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
  font-size: 0.75rem;
}

.mobile-hub__platforms strong {
  color: var(--color-navy);
}

.mobile-hub__platforms span {
  color: var(--color-muted);
}

.mobile-hub__detail-visual {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.mobile-hub__preview-note {
  margin: 0.35rem 0 0;
  font-size: 0.72rem;
  color: #b45309;
  text-align: center;
}

.mobile-hub__preview-note--live {
  color: var(--color-accent);
}

.mobile-hub__footer {
  flex: 0 0 auto;
  margin: 0;
  padding-top: 0.15rem;
}

.viewport-links--mobile {
  margin: 0;
  justify-content: flex-start;
}

.mobile-showcase--hub {
  width: 100%;
  margin: 0;
}

.mobile-showcase--hub .mobile-showcase__devices {
  justify-content: center;
  align-items: flex-end;
  gap: clamp(0.5rem, 1.5vw, 0.85rem);
  flex-wrap: nowrap;
}

.mobile-showcase--hub .mobile-showcase__device--ios img,
.mobile-showcase--hub .mobile-showcase__device--android img {
  height: min(58vh, 520px);
  max-width: min(17vw, 190px);
  border-radius: 24px;
}

.mobile-showcase--hub .mobile-showcase__device--ios img {
  border-radius: 28px;
}

.mobile-showcase--simulator.mobile-showcase--hub .mobile-showcase__device img {
  object-fit: cover;
  object-position: top center;
}

/* Platform NOC web shot — light frame, no heavy black chrome */
.mobile-showcase__device--web {
  position: relative;
  width: 100%;
  max-width: none;
  flex: none;
  margin: 0;
  padding: 0;
  border-radius: 12px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  box-shadow: 0 12px 28px rgb(15 23 42 / 10%);
  overflow: hidden;
}

.mobile-showcase__device--web::before {
  display: none;
}

.mobile-showcase__device--web .mobile-showcase__badge {
  position: absolute;
  top: 0.65rem;
  left: 0.65rem;
  transform: none;
  z-index: 1;
}

.mobile-showcase__device--web img {
  display: block;
  width: 100%;
  height: auto;
  max-width: none;
  max-height: min(52vh, 480px);
  object-fit: cover;
  object-position: top left;
  border-radius: 0;
  border: 0;
  background: #f8fafc;
  box-shadow: none;
}

/* Web + phones side-by-side (not stacked / centered web-above) */
.mobile-showcase--with-web .mobile-showcase__devices {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) auto auto;
  align-items: end;
  justify-items: stretch;
  gap: 0.75rem 0.85rem;
  width: 100%;
}

.mobile-showcase--with-web .mobile-showcase__device--web {
  grid-column: 1;
  grid-row: 1;
  width: 100%;
  max-width: none;
  justify-self: stretch;
  align-self: stretch;
}

.mobile-showcase--hub.mobile-showcase--with-web .mobile-showcase__devices {
  flex-wrap: unset;
}

.mobile-showcase--hub.mobile-showcase--with-web .mobile-showcase__device--web img {
  max-height: min(52vh, 480px);
  height: auto;
  object-fit: cover;
  object-position: top left;
}

.mobile-showcase--hub.mobile-showcase--with-web .mobile-showcase__device--ios img,
.mobile-showcase--hub.mobile-showcase--with-web .mobile-showcase__device--android img {
  height: min(42vh, 400px);
  max-width: min(18vw, 150px);
}

.home-noc__visual .mobile-showcase--with-web .mobile-showcase__device--web {
  max-width: 100%;
}

.home-noc__visual .mobile-showcase--with-web .mobile-showcase__device--web img {
  max-height: min(50vh, 460px);
  background: #f8fafc;
}

@media (max-width: 900px) {
  .mobile-hub__summary-grid {
    grid-template-columns: 1fr;
    overflow: auto;
  }

  .mobile-hub__detail {
    grid-template-columns: 1fr;
    overflow: auto;
  }

  .mobile-hub__detail-visual {
    order: -1;
  }

  .mobile-showcase--hub .mobile-showcase__device--ios img,
  .mobile-showcase--hub .mobile-showcase__device--android img {
    height: min(38vh, 360px);
    max-width: min(38vw, 170px);
  }

  .mobile-showcase--hub.mobile-showcase--with-web .mobile-showcase__device--web img {
    max-height: min(36vh, 320px);
  }

  .mobile-showcase--hub.mobile-showcase--with-web .mobile-showcase__device--ios img,
  .mobile-showcase--hub.mobile-showcase--with-web .mobile-showcase__device--android img {
    height: min(30vh, 280px);
    max-width: min(30vw, 150px);
  }
}

@media (max-width: 720px) {
  .mobile-showcase--hub .mobile-showcase__devices {
    flex-wrap: wrap;
  }

  .mobile-showcase--hub .mobile-showcase__device--ios img,
  .mobile-showcase--hub .mobile-showcase__device--android img {
    height: min(34vh, 320px);
    max-width: 42vw;
  }

  .mobile-showcase--with-web .mobile-showcase__devices {
    grid-template-columns: 1fr 1fr;
  }

  .mobile-showcase--with-web .mobile-showcase__device--web {
    grid-column: 1 / -1;
  }
}

/* ===== Cinematic marketing (v0.8.2 — scrollable, product-first) ===== */
/*
 * iOS Safari / Simulator: overflow:auto on body creates a nested scrollport
 * that often ignores touch / trackpad scroll. Keep the document as the
 * scroller (html) and leave body overflow visible.
 */
html:has(body.dniq-home-scroll),
html:has(body.dniq-mobile-scroll),
html:has(body.dniq-page-scroll) {
  height: auto;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-y: auto;
}

body.dniq-home-scroll {
  overflow: visible;
  height: auto;
  max-height: none;
  min-height: 100dvh;
  position: static;
}

body.dniq-home-scroll .site-main {
  display: block;
  overflow: visible;
  flex: none;
  min-height: 0;
}

body.dniq-page-scroll {
  overflow: visible;
  height: auto;
  max-height: none;
  min-height: 100dvh;
  position: static;
}

body.dniq-page-scroll .site-main {
  display: block;
  overflow: visible;
  flex: none;
  min-height: 0;
}

h1, h2, .cinematic-hero h1,
.home-platform__copy h2,
.home-solutions__header h2,
.home-cta h2,
.home-product__copy h2 {
  font-family: var(--font-display);
  letter-spacing: -0.02em;
}

.site-header__cta {
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.cinematic-hero {
  position: relative;
  min-height: min(72vh, 620px);
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: #0b1220;
}

/* Split hero — copy left panel, imagery right (home + inner pages) */
.cinematic-hero--split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.12fr);
  align-items: stretch;
  min-height: min(62vh, 520px);
  max-height: none;
  background: #0b1220;
}

/* Home: ~80% hero + intentional trust-strip peek */
.cinematic-hero--split.cinematic-hero--home {
  min-height: calc(100dvh - var(--header-h) - var(--hero-next-peek) - var(--staging-banner-h));
  height: calc(100dvh - var(--header-h) - var(--hero-next-peek) - var(--staging-banner-h));
}

/* Inner pages: full first screen — next section starts only after scroll */
.cinematic-hero--split.cinematic-hero--page {
  min-height: calc(100dvh - var(--header-h) - var(--staging-banner-h));
  height: calc(100dvh - var(--header-h) - var(--staging-banner-h));
}

.cinematic-hero--split.cinematic-hero--home .cinematic-hero__content {
  padding: clamp(1.25rem, 3.5vh, 2.25rem) var(--content-inset);
  gap: 0;
  justify-content: center;
  min-height: 0;
}

.cinematic-hero--split.cinematic-hero--home .cinematic-hero__deck {
  gap: 0.85rem;
  max-width: 34rem;
}

.cinematic-hero--split.cinematic-hero--home h1 {
  font-size: clamp(1.75rem, 3.8vw, 2.65rem);
  max-width: 16ch;
}

.cinematic-hero--split.cinematic-hero--home .cinematic-hero__lead {
  font-size: clamp(0.95rem, 1.6vw, 1.05rem);
}

.cinematic-hero--split.cinematic-hero--home .cinematic-hero__fallback,
.cinematic-hero--split.cinematic-hero--home .cinematic-hero__video {
  object-fit: cover;
  object-position: 35% 50%;
}

.cinematic-hero--split .cinematic-hero__content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
  width: auto;
  max-width: none;
  margin: 0;
  padding: clamp(1.5rem, 4vh, 2.75rem) var(--content-inset);
  background: #0b1220;
  min-height: 0;
}

.cinematic-hero__deck {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  max-width: 36rem;
}

.cinematic-hero__headline {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.cinematic-hero__headline .cinematic-hero__eyebrow {
  margin: 0;
}

.cinematic-hero__headline h1 {
  margin: 0;
}

.cinematic-hero--split .cinematic-hero__lead {
  margin: 0;
  max-width: none;
  font-size: clamp(1rem, 1.75vw, 1.1rem);
  line-height: 1.6;
  color: rgb(203 213 225 / 92%);
}

.cinematic-hero--split .cinematic-hero__actions {
  margin: 0;
  padding-top: 0.15rem;
}

.cinematic-hero--split .cinematic-hero__media {
  position: relative;
  inset: auto;
  align-self: stretch;
  min-height: 100%;
  height: 100%;
  overflow: hidden;
  background: #0b1220;
}

.cinematic-hero--split .cinematic-hero__video,
.cinematic-hero--split .cinematic-hero__fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cinematic-hero--split .cinematic-hero__fallback {
  object-position: center center;
  animation: none;
  transform: none;
}

.cinematic-hero--split .cinematic-hero__veil--edge {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(90deg, rgb(11 18 32 / 35%) 0%, transparent 8%);
}

.cinematic-hero--split h1 {
  max-width: 14ch;
  font-size: clamp(2rem, 4.5vw, 3.1rem);
  line-height: 1.06;
}

/* Full-bleed video hero — edge-to-edge media, light veil for type */
.cinematic-hero--video .cinematic-hero__media {
  left: 0;
}

.cinematic-hero--video .cinematic-hero__veil {
  background:
    linear-gradient(90deg, rgb(8 15 28 / 68%) 0%, rgb(8 15 28 / 42%) 36%, rgb(8 15 28 / 18%) 58%, rgb(8 15 28 / 28%) 100%),
    linear-gradient(180deg, rgb(8 15 28 / 32%) 0%, transparent 48%, rgb(8 15 28 / 38%) 100%);
}

.cinematic-hero--video .cinematic-hero__video,
.cinematic-hero--video .cinematic-hero__fallback {
  object-position: 50% 45%;
}

.cinematic-hero--page:not(.cinematic-hero--split) {
  min-height: min(42vh, 360px);
}

.cinematic-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.cinematic-hero__video,
.cinematic-hero__fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Default keeps chargers on the right in frame */
  object-position: 80% 48%;
  transform: none;
}

.cinematic-hero__video {
  opacity: 0;
  transition: opacity 0.45s ease;
  z-index: 1;
}

.cinematic-hero__video.is-ready {
  opacity: 1;
}

.cinematic-hero__fallback {
  z-index: 0;
  transition: opacity 0.45s ease;
}

.cinematic-hero__fallback.is-hidden {
  opacity: 0;
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  .cinematic-hero__video {
    display: none;
  }

  .cinematic-hero__fallback.is-hidden {
    opacity: 1;
    pointer-events: auto;
  }
}

.cinematic-hero__veil {
  position: absolute;
  inset: 0;
  z-index: 2;
  /* Heavy left veil for type; right stays clearer so chargers remain readable */
  background:
    linear-gradient(90deg, rgb(8 15 28 / 90%) 0%, rgb(8 15 28 / 72%) 34%, rgb(8 15 28 / 28%) 62%, rgb(8 15 28 / 35%) 100%),
    linear-gradient(180deg, rgb(8 15 28 / 40%) 0%, transparent 42%, rgb(8 15 28 / 45%) 100%);
}

.cinematic-hero__content {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 5.5rem var(--content-inset) 4.5rem;
}

.cinematic-hero:not(.cinematic-hero--split) .cinematic-hero__content {
  max-width: var(--max);
  margin: 0 auto;
}

.cinematic-hero__eyebrow {
  margin: 0 0 1rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  font-weight: 700;
  color: #6ee7b7;
}

.cinematic-hero h1 {
  font-size: clamp(2.2rem, 5.5vw, 3.5rem);
  line-height: 1.08;
  margin: 0 0 1.1rem;
  max-width: 16ch;
  color: #fff;
  font-weight: 700;
}

.cinematic-hero--page h1 {
  max-width: 20ch;
}

.cinematic-hero__lead {
  margin: 0 0 1.75rem;
  max-width: 38rem;
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  line-height: 1.65;
  color: rgb(226 232 240 / 90%);
}

.cinematic-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

a.btn--hero-cta {
  background: var(--color-primary);
  color: #fff !important;
  border-color: transparent;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-size: 0.875rem;
}

a.btn--hero-cta:hover {
  background: var(--color-primary-hover);
}

a.btn--hero-ghost,
a.btn--cta-ghost {
  background: rgb(255 255 255 / 8%);
  border-color: rgb(255 255 255 / 35%);
  color: #fff !important;
}

a.btn--hero-ghost:hover,
a.btn--cta-ghost:hover {
  background: rgb(255 255 255 / 16%);
  color: #fff !important;
}

.home-intro {
  background: #0b1220;
  color: rgb(226 232 240 / 88%);
  border-bottom: 1px solid rgb(255 255 255 / 8%);
}

/* Unified product fold — intro + journey + platform copy in one band */
.home-fold {
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
}

.home-fold__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 1.25rem 1.75rem;
  align-items: center;
  flex: 1 1 auto;
  min-height: 0;
}

.home-fold__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.75rem;
  min-height: 0;
}

.home-fold__copy h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  line-height: 1.2;
  color: var(--color-navy);
  letter-spacing: -0.02em;
}

.home-fold__copy .section__lead {
  margin: 0;
  font-size: 0.98rem;
}

.home-fold .home-platform__points {
  margin: 0;
}

.home-fold .home-platform__points li {
  color: var(--color-text);
  font-size: 0.9375rem;
}

.home-fold .home-platform__actions {
  margin: 0;
}

.persona-proof-strip--home {
  margin-top: 0;
  gap: 0.55rem;
}

.home-fold__visual {
  min-width: 0;
  background: #0b1220;
  border-radius: 14px;
  padding: 0.55rem;
  border: 1px solid rgb(15 23 42 / 12%);
  box-shadow: 0 16px 40px rgb(15 23 42 / 10%);
}

.home-fold__visual .journey-splash--embedded {
  border-radius: 10px;
  overflow: hidden;
  height: auto;
}

.home-fold .journey-splash--embedded .journey-splash__inner {
  height: auto;
  justify-content: flex-start;
}

/* Stage must keep explicit height — panels are absolutely positioned */
.home-fold .journey-splash--embedded .journey-splash__stage,
.home-fold .journey-splash--embedded.journey-splash--carousel .journey-splash__stage {
  flex: none;
  min-height: min(42vh, 340px);
  max-height: min(48vh, 380px);
  height: min(42vh, 340px);
}

.home-fold .journey-splash__label {
  font-size: 0.8125rem;
}

.home-fold .journey-splash__sublabel {
  font-size: 0.75rem;
}

.home-fold .splash-panel__host {
  font-size: 0.75rem;
}

.home-fold .splash-panel__badge {
  font-size: 0.6875rem;
}

.cinematic-hero__signin {
  margin: 0.85rem 0 0;
  font-size: 0.9375rem;
  color: rgb(226 232 240 / 88%);
}

.cinematic-hero__signin a {
  color: #6ee7b7;
  font-weight: 600;
}

.cinematic-hero__signin a:hover {
  color: #a7f3d0;
}

.home-intro__inner {
  padding: 1.5rem 0;
}

.home-intro p {
  margin: 0;
  max-width: 48rem;
  font-size: 1.05rem;
  line-height: 1.7;
}

.home-intro__signin {
  margin-top: 0.85rem !important;
  font-size: 0.95rem !important;
}

.home-intro__signin a {
  color: #6ee7b7;
  font-weight: 600;
}

.home-platform {
  padding: 5rem 0;
  background: #0b1220;
  color: #e2e8f0;
}

.home-platform.home-platform--page-band {
  padding-block: var(--viewport-band-pad);
}

.home-platform__inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem;
  align-items: center;
}

.home-platform__inner--stack {
  grid-template-columns: 1fr;
  gap: clamp(0.85rem, 2vh, 1.35rem);
  align-content: stretch;
  align-items: stretch; /* page-band is flex column — don't inherit grid's center */
  height: 100%;
}

.home-platform .eyebrow {
  color: #6ee7b7;
}

.home-platform__copy h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  color: #fff;
}

.home-platform .section__lead {
  color: rgb(226 232 240 / 82%);
  max-width: 36rem;
}

.home-platform__points {
  margin: 1.5rem 0 1.75rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.65rem;
}

.home-platform__points li {
  position: relative;
  padding-left: 1.15rem;
  color: rgb(226 232 240 / 90%);
}

.home-platform__points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: var(--color-primary);
}

.home-platform__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.home-platform__figure {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 12%);
  box-shadow: 0 24px 60px rgb(0 0 0 / 35%);
}

.home-platform__figure img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 11;
  object-fit: cover;
}

.home-solutions {
  background: var(--color-bg);
}

.home-solutions__header {
  margin-bottom: 0;
  max-width: none;
  flex: 0 0 auto;
}

.home-solutions__header h2 {
  margin: 0.25rem 0 0.5rem;
}

.home-solutions__proof {
  margin-top: auto;
  padding-top: 1.25rem;
  border-top: 1px solid var(--color-border);
  flex: 0 0 auto;
}

.home-solutions__proof-header {
  margin-bottom: 0.85rem;
}

.home-solutions__proof-header h3 {
  margin: 0.25rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  color: var(--color-navy);
  letter-spacing: -0.02em;
}

.home-solutions__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  flex: 1 1 auto;
  min-height: 0;
  align-content: stretch;
}

.home-solution-panel {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  border-radius: 14px;
  text-decoration: none !important;
  color: inherit;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  min-height: 0;
  height: 100%;
}

.home-solution-panel:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgb(15 23 42 / 10%);
  text-decoration: none !important;
}

.home-solution-panel__media {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #0b1220;
  flex: 1 1 auto;
  min-height: 8rem;
}

.home-solution-panel__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.home-solution-panel:hover .home-solution-panel__media img {
  transform: scale(1.04);
}

.home-solution-panel__body {
  padding: 1.25rem 1.35rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  flex: 1;
}

.home-solution-panel__body h3 {
  margin: 0;
  font-size: 1.15rem;
  color: var(--color-navy);
}

.home-solution-panel__body p {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  flex: 1;
}

.home-solution-panel__cta {
  color: var(--color-primary);
  font-weight: 700;
  font-size: 0.875rem;
}

.home-product {
  padding: 4.5rem 0;
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
}

.home-product--lead {
  border-top: none;
  background: #f1f5f9;
}

.home-product__inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 2rem;
  align-items: center;
}

.home-product__copy h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  color: var(--color-navy);
}

.home-product__visual {
  min-width: 0;
  /* Give journey/console room — avoid photo competition */
  background: #0b1220;
  border-radius: 16px;
  padding: 0.75rem;
  border: 1px solid rgb(15 23 42 / 12%);
  box-shadow: 0 18px 48px rgb(15 23 42 / 12%);
}

.home-product__visual .journey-splash--embedded {
  margin: 0;
}

.home-platform__figure--product {
  border-color: rgb(255 255 255 / 10%);
  background: #020617;
}

.home-platform__figure--product img {
  object-fit: contain;
  object-position: top center;
  background: #020617;
  aspect-ratio: 16 / 10;
}

.home-solution-panel__media {
  aspect-ratio: 16 / 9;
}

.home-solution-panel__media--ui {
  background: #0b1220;
}

.home-solution-panel__media--ui img {
  object-fit: cover;
  object-position: top center;
}

.home-cta {
  padding: 4.5rem 0;
  background: #0b1220;
  color: #fff;
  text-align: left;
}

.home-cta--personas {
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgb(5 150 105 / 28%), transparent 55%),
    #0b1220;
}

.home-cta--solid {
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgb(5 150 105 / 28%), transparent 55%),
    #0b1220;
}

.home-cta__inner {
  max-width: none;
  margin: 0;
  width: 100%;
}

.home-cta h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  color: #fff;
}

.home-cta p {
  margin: 0 0 1.5rem;
  color: rgb(226 232 240 / 90%);
  line-height: 1.65;
}

.home-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: flex-start;
}

.home-trust {
  padding: 1rem 0;
  background: var(--color-navy);
  color: #fff;
  border-bottom: 1px solid rgb(255 255 255 / 8%);
  /* Fits the intentional first-viewport peek under the home hero */
  min-height: var(--home-next-peek);
  display: flex;
  align-items: center;
}

.home-trust__inner {
  display: grid;
  gap: 0.75rem;
  width: 100%;
}

.home-trust__kicker {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgb(148 163 184 / 90%);
}

.home-trust__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.home-trust__item {
  position: relative;
  display: grid;
  gap: 0.15rem;
  padding: 0.7rem 0.9rem;
  border: 1px solid rgb(255 255 255 / 10%);
  border-radius: 10px;
  background: rgb(255 255 255 / 4%);
}

.home-trust__label {
  font-weight: 700;
  font-size: 0.95rem;
}

.home-trust__status {
  font-size: 0.8rem;
  font-weight: 700;
  color: #6ee7b7;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.home-trust__detail {
  /* Keep for screen readers / title tooltips; strip stays compact in the peek */
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.home-proof {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.home-proof__header {
  margin-bottom: 0;
  max-width: none;
  flex: 0 0 auto;
}

.home-proof__header h2 {
  margin: 0.25rem 0 0.5rem;
  color: var(--color-navy);
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.8vw, 2.05rem);
  letter-spacing: -0.02em;
}

.home-proof__header .section__lead {
  margin: 0;
  max-width: 42rem;
}

.home-proof__metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border: 1px solid var(--color-border);
  border-radius: 14px;
  background: var(--color-bg);
  overflow: hidden;
  flex: 1 1 auto;
  min-height: 0;
}

.home-proof__metric {
  display: grid;
  gap: 0.35rem;
  align-content: start;
  padding: 1.15rem 1.25rem 1.3rem;
  border-right: 1px solid var(--color-border);
}

.home-proof__metric:last-child {
  border-right: none;
}

.home-proof__metric-value {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.4vw, 1.9rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--color-primary);
}

.home-proof__metric-label {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--color-navy);
}

.home-proof__metric-detail {
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--color-muted);
}

.home-proof__voices {
  display: grid;
  gap: 1.25rem;
  flex: 0 0 auto;
  margin-top: auto;
}

.home-proof__quotes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.15rem 1.75rem;
}

.home-proof__quote {
  margin: 0;
  padding: 0;
  border: none;
  background: transparent;
}

.home-proof__quote p {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.02rem, 1.5vw, 1.12rem);
  font-style: normal;
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: -0.01em;
  color: var(--color-navy);
}

.home-proof__quote footer {
  display: grid;
  gap: 0.15rem;
  font-size: 0.875rem;
  color: var(--color-muted);
}

.home-proof__quote footer strong {
  color: var(--color-text);
  font-style: normal;
}

.home-proof__footer {
  display: grid;
  gap: 0.45rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-border);
}

.home-proof__pipeline {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-navy);
}

.home-proof__segments {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--color-muted);
}

.home-proof__segments span {
  margin: 0 0.15rem;
  color: var(--color-border);
}

.home-proof__live {
  margin: 0.35rem 0 0;
  font-size: 0.92rem;
  color: var(--color-muted);
}

.home-proof__live a {
  font-weight: 600;
}

.home-cta--personas .home-cta__intro p:last-child {
  margin: 0;
  max-width: 42rem;
}

.home-cta__personas {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 0;
  flex: 1 1 auto;
  align-content: stretch;
  min-height: 0;
}

.home-cta__persona {
  display: grid;
  gap: 0.5rem;
  align-content: start;
  padding: 1.25rem;
  border: 1px solid rgb(255 255 255 / 14%);
  border-radius: 12px;
  background: rgb(8 15 28 / 45%);
  height: 100%;
}

.home-cta__persona-eyebrow {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgb(148 163 184 / 95%);
}

.home-cta__persona h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: #fff;
}

.home-cta__persona p {
  margin: 0 0 0.5rem;
  font-size: 0.92rem;
  color: rgb(226 232 240 / 88%);
  line-height: 1.55;
}

.journey-strip--modern {
  margin: 0;
}

.journey-strip--filled {
  flex: 1 1 auto;
  align-content: stretch;
  min-height: 0;
}

.journey-strip--filled .journey-strip__item {
  height: 100%;
  padding: 0.9rem 1rem;
  gap: 0.4rem;
}

.sim-proof .section__header {
  margin-bottom: 0;
}

.sim-proof__caps {
  flex: 1 1 auto;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.65rem;
  min-height: 0;
  align-content: stretch;
}

.sim-proof__caps .diff-card {
  height: 100%;
  padding: 0.85rem 0.95rem;
}

.sim-proof__caps .diff-card h3 {
  font-size: 0.9rem;
}

.sim-proof__caps .diff-card p {
  font-size: 0.8rem;
  line-height: 1.45;
}

.sim-proof__flow {
  flex: 0 0 auto;
  display: grid;
  gap: 0.5rem;
  padding-top: 0.35rem;
  border-top: 1px solid var(--color-border);
}

.sim-proof__flow-kicker {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-muted);
}

.sim-proof__flow-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--color-navy);
  letter-spacing: -0.02em;
}

.sim-proof__flow .journey-strip {
  flex: none;
}

@media (max-width: 1100px) {
  .sim-proof__caps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.sim-desktop__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.15fr);
  gap: clamp(1.25rem, 3vw, 2.25rem);
  align-items: center;
}

.sim-desktop__copy .section__header {
  margin-bottom: 0.85rem;
}

.sim-desktop__copy .section__points {
  margin: 0;
}

.sim-desktop__visual .viewport-shot {
  margin: 0;
}

.sim-desktop__visual .viewport-shot img {
  width: 100%;
  height: auto;
  max-height: min(58vh, 520px);
  object-fit: cover;
  object-position: top left;
  border-radius: 12px;
  border: 1px solid var(--color-border);
  box-shadow: 0 12px 28px rgb(15 23 42 / 10%);
  background: #f8fafc;
}

@media (max-width: 900px) {
  .sim-desktop__inner {
    grid-template-columns: 1fr;
  }

  .sim-desktop__visual .viewport-shot img {
    max-height: min(48vh, 360px);
  }
}

.journey-strip__body {
  margin: 0.35rem 0 0;
  font-size: 0.8rem;
  line-height: 1.45;
  color: var(--color-muted);
}

.home-platform--page-band {
  padding-block: var(--viewport-band-pad);
}

.home-platform--page-band .home-platform__copy {
  flex: 0 0 auto;
  width: 100%;
  align-self: stretch;
  text-align: left;
}

.platform-arch {
  margin-top: 1.25rem;
  padding: 1rem 0 0;
  border-top: 1px solid var(--color-border);
}

/* Charging OS diagram — home fold right panel (GIF), aligned with home-fold */
.home-fold--os .home-fold__visual--os {
  background: #0b1220;
  padding: 0.45rem;
}

.charging-os-diagram {
  margin: 0;
}

.charging-os-diagram--fold .charging-os-diagram__frame {
  overflow: hidden;
  border-radius: 10px;
  background: #0b1220;
  border: 0;
  box-shadow: none;
}

.charging-os-diagram__media {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  background: #0b1220;
  border-radius: 10px;
}

.platform-arch__kicker {
  margin: 0 0 0.65rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-muted);
}

.platform-arch__list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.platform-arch__list li {
  display: grid;
  gap: 0.25rem;
  padding: 0.75rem 0.85rem;
  border: 1px solid var(--color-border);
  border-radius: 10px;
  background: var(--color-surface);
}

.platform-arch__list strong {
  font-size: 0.85rem;
  color: var(--color-navy);
}

.platform-arch__list span {
  font-size: 0.78rem;
  line-height: 1.45;
  color: var(--color-muted);
}

/* Keep readable on dark product bands if reused */
.home-platform--page-band .platform-arch {
  border-top-color: rgb(255 255 255 / 12%);
}

.home-platform--page-band .platform-arch__kicker {
  color: rgb(148 163 184 / 95%);
}

.home-platform--page-band .platform-arch__list li {
  border-color: rgb(255 255 255 / 12%);
  background: rgb(255 255 255 / 4%);
}

.home-platform--page-band .platform-arch__list strong {
  color: #fff;
}

.home-platform--page-band .platform-arch__list span {
  color: rgb(226 232 240 / 78%);
}

@media (max-width: 960px) {
  .platform-arch__list {
    grid-template-columns: 1fr 1fr;
  }
}

.section__header h2 {
  margin: 0.25rem 0 0;
  color: var(--color-navy);
}

@media (max-width: 1100px) {
  .home-proof__metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-proof__metric:nth-child(2n) {
    border-right: none;
  }

  .home-proof__metric:nth-child(-n + 2) {
    border-bottom: 1px solid var(--color-border);
  }
}

@media (max-width: 960px) {
  .home-solutions__grid,
  .home-platform__inner,
  .home-product__inner,
  .home-fold__grid {
    grid-template-columns: 1fr;
  }

  .home-fold__visual {
    order: -1;
  }

  .persona-proof-strip--home {
    grid-template-columns: 1fr;
  }

  .home-trust__grid,
  .home-proof__metrics,
  .home-proof__quotes,
  .home-cta__personas {
    grid-template-columns: 1fr;
  }

  .home-proof__metric {
    border-right: none;
    border-bottom: 1px solid var(--color-border);
  }

  .home-proof__metric:last-child {
    border-bottom: none;
  }

  .home-proof__metric:nth-child(-n + 2) {
    border-bottom: 1px solid var(--color-border);
  }

  .cinematic-hero--split.cinematic-hero--home,
  .cinematic-hero--split.cinematic-hero--page,
  .cinematic-hero--split {
    grid-template-columns: 1fr;
    min-height: auto;
    height: auto;
    max-height: none;
  }

  .cinematic-hero--split .cinematic-hero__media {
    order: -1;
    min-height: min(42vh, 360px);
  }

  .cinematic-hero--split .cinematic-hero__content {
    padding-top: 1.5rem;
    padding-bottom: 2rem;
  }

  .home-trust {
    min-height: 0;
  }

  .home-fold,
  .home-solutions,
  .home-proof,
  .home-cta--personas,
  .section--page-band,
  .home-platform--page-band,
  .security-trust,
  .security-pillars,
  .security-controls,
  .section--about-team {
    min-height: 0;
    display: block;
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .cinematic-hero {
    min-height: min(64vh, 520px);
  }

  .cinematic-hero--page {
    min-height: min(38vh, 320px);
  }

  .cinematic-hero:not(.cinematic-hero--video) .cinematic-hero__fallback,
  .cinematic-hero:not(.cinematic-hero--video) .cinematic-hero__video {
    /* Keep chargers in frame on narrow still heroes */
    object-position: 88% 50%;
  }

  .cinematic-hero--video .cinematic-hero__veil {
    background:
      linear-gradient(180deg, rgb(8 15 28 / 72%) 0%, rgb(8 15 28 / 40%) 42%, rgb(8 15 28 / 58%) 100%);
  }

  .site-header__cta {
    display: none;
  }

  .home-product__visual {
    padding: 0.5rem;
  }
}

/* Mobile apps page — scrollable with visible phone screenshots */
body.dniq-mobile-scroll {
  overflow: visible;
  height: auto;
  max-height: none;
  position: static;
}

body.dniq-mobile-scroll .site-main {
  display: block;
  overflow: visible;
}

.mobile-hub-page {
  padding: 2.5rem 0 4rem;
  background: var(--color-bg);
}

.mobile-hub--scroll {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.mobile-hub--scroll .mobile-hub__panels,
.mobile-hub--scroll .mobile-hub__pane,
.mobile-hub--scroll .mobile-hub__pane-body {
  overflow: visible;
  min-height: 0;
  flex: none;
  height: auto;
}

.mobile-hub--scroll .mobile-hub__pane {
  display: none;
}

.mobile-hub--scroll .mobile-hub__pane.is-active {
  display: block;
}

.mobile-hub--scroll .mobile-hub__pane-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  max-width: 28rem;
}

.mobile-hub--scroll .mobile-hub__pane-lead {
  font-size: 1rem;
  max-width: 40rem;
}

.mobile-hub__phone-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1.25rem;
  margin: 0 0 1.75rem;
  align-items: end;
}

.mobile-hub__phone-card {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  transition: transform 0.2s ease;
}

.mobile-hub__phone-card:hover {
  transform: translateY(-4px);
}

.mobile-hub__phone-card img {
  display: block;
  width: min(100%, 180px);
  height: auto;
  border-radius: 22px;
  box-shadow: 0 18px 40px rgb(15 23 42 / 18%);
  border: 1px solid var(--color-border);
  background: #0b1220;
}

.mobile-hub__phone-label {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--color-navy);
}

.mobile-hub--scroll .mobile-hub__summary-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  overflow: visible;
}

.mobile-hub--scroll .mobile-hub__detail {
  overflow: visible;
  min-height: 0;
}

.mobile-hub--scroll .mobile-showcase--hub .mobile-showcase__device--ios img,
.mobile-hub--scroll .mobile-showcase--hub .mobile-showcase__device--android img {
  height: min(52vh, 520px);
  max-width: min(42vw, 240px);
}

.mobile-hub--scroll .mobile-showcase--hub.mobile-showcase--with-web .mobile-showcase__device--web img {
  max-height: min(36vh, 380px);
}

.mobile-hub--scroll .mobile-showcase--hub.mobile-showcase--with-web .mobile-showcase__device--ios img,
.mobile-hub--scroll .mobile-showcase--hub.mobile-showcase--with-web .mobile-showcase__device--android img {
  height: min(28vh, 280px);
  max-width: min(24vw, 150px);
}

@media (max-width: 900px) {
  .mobile-hub__phone-row,
  .mobile-hub--scroll .mobile-hub__summary-grid {
    grid-template-columns: 1fr;
  }

  .mobile-hub__phone-card img {
    width: min(100%, 260px);
  }

  .cinematic-hero--split.cinematic-hero--home,
  .cinematic-hero--split.cinematic-hero--page,
  .cinematic-hero--split {
    grid-template-columns: 1fr;
    min-height: auto;
    height: auto;
    max-height: none;
  }

  .cinematic-hero--split .cinematic-hero__media {
    order: -1;
    min-height: min(42vh, 360px);
  }

  .cinematic-hero--split .cinematic-hero__content {
    padding-top: 1.5rem;
    padding-bottom: 2rem;
  }

  .cinematic-hero--split .cinematic-hero__fallback {
    object-position: center 35%;
  }
}

@media (max-width: 640px) {
  .cinematic-hero__content {
    padding-top: 4rem;
    padding-bottom: 3.5rem;
  }

  .cinematic-hero h1 {
    max-width: 14ch;
  }
}

/* ——— Security (scrollable cinematic page) ——— */
.security-trust {
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
}

.security-badge-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.security-badge-card {
  padding: 1.25rem 1.35rem;
  border: 1px solid var(--color-border);
  border-radius: 14px;
  background: var(--color-bg);
}

.security-badge-card h3 {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
  color: var(--color-navy);
}

.security-badge-card__status {
  margin: 0 0 0.65rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--color-primary);
}

.security-badge-card p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--color-muted);
}

.security-pillars .security-pillar-grid--scroll {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  width: 100%;
}

.security-pillar-card--modern {
  padding: 1.35rem 1.45rem;
  border-radius: 14px;
  border: 1px solid rgb(255 255 255 / 12%);
  background: rgb(15 23 42 / 55%);
}

.security-pillar-card--modern h3 {
  margin: 0 0 0.55rem;
  font-size: 1.1rem;
  color: #f8fafc;
}

.security-pillar-card--modern p {
  margin: 0;
  color: rgb(226 232 240 / 82%);
  font-size: 0.95rem;
  line-height: 1.6;
}

.security-controls {
  background: var(--color-bg);
}

/* Keep split grid — do not inherit page-band flex-column on this inner */
.security-controls > .section__inner.security-controls__inner {
  flex: 1 1 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(1.25rem, 3vw, 2.5rem);
  align-items: center;
  width: 100%;
  min-height: 0;
}

.security-controls__copy {
  min-width: 0;
  text-align: left;
  align-self: center;
}

.security-controls__copy h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.65rem, 2.8vw, 2.1rem);
  color: var(--color-navy);
}

.security-controls__copy .section__lead {
  text-align: left;
}

.security-controls .home-platform__figure {
  margin: 0;
  min-width: 0;
  align-self: stretch;
  border: 1px solid var(--color-border);
  box-shadow: 0 16px 40px rgb(15 23 42 / 12%);
  display: flex;
}

.security-controls .home-platform__figure img {
  width: 100%;
  height: 100%;
  min-height: min(42vh, 320px);
  aspect-ratio: auto;
  object-fit: cover;
}

.security-control-list {
  list-style: none;
  margin: 1.5rem 0 1.75rem;
  padding: 0;
  display: grid;
  gap: 0.9rem;
}

.security-control-list li {
  display: grid;
  gap: 0.2rem;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  border: 1px solid var(--color-border);
  background: var(--color-surface);
}

.security-control-list strong {
  color: var(--color-navy);
  font-size: 0.95rem;
}

.security-control-list span {
  color: var(--color-muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.security-pillars > .home-platform__inner {
  flex: 1 1 auto;
  width: 100%;
  align-items: stretch;
}

.security-pillars .home-platform__copy {
  width: 100%;
  text-align: left;
}

@media (max-width: 960px) {
  .security-badge-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .security-controls > .section__inner.security-controls__inner {
    grid-template-columns: 1fr;
  }

  .security-controls .home-platform__figure img {
    min-height: 220px;
  }

  .security-pillars .security-pillar-grid--scroll {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .security-badge-grid {
    grid-template-columns: 1fr;
  }
}

/* Platform NOC marketing band — left-aligned like other page sections */
.home-noc {
  padding-block: clamp(2rem, 4vh, 3rem);
  padding-inline: 0;
  background:
    radial-gradient(ellipse 80% 60% at 90% 20%, rgb(14 165 233 / 10%), transparent 55%),
    linear-gradient(180deg, #f8fafc 0%, #eef2ff 100%);
  border-top: 1px solid var(--color-border);
}

.home-noc--page-band {
  background:
    radial-gradient(ellipse 70% 50% at 10% 80%, rgb(16 185 129 / 8%), transparent 50%),
    var(--color-bg);
}

.home-noc__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
  justify-items: stretch;
  text-align: left;
}

.home-noc__copy {
  text-align: left;
  justify-self: start;
  width: 100%;
  max-width: 40rem;
}

.home-noc__copy .eyebrow {
  margin-bottom: 0.5rem;
}

.home-noc__copy h2 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  line-height: 1.2;
  color: var(--color-navy);
}

/* Points reuse home-platform list styles (dark-band colors) — override for light NOC band */
.home-noc .home-platform__points li {
  color: var(--color-text);
}

.home-noc .section__lead {
  color: var(--color-muted);
}

.home-noc__visual {
  min-width: 0;
  justify-self: stretch;
}

.home-noc__visual .viewport-shot {
  margin: 0;
  width: 100%;
}

.home-noc__visual .viewport-shot img {
  width: 100%;
  height: auto;
  max-height: min(52vh, 480px);
  object-fit: contain;
  object-position: top center;
  border-radius: 12px;
  border: 1px solid var(--color-border);
  box-shadow: 0 18px 44px rgb(15 23 42 / 14%);
  background: #f8fafc;
}

/* Platform + Platform NOC pages — copy left, web overview right */
.platform-noc-band.home-noc--page-band {
  padding-block: clamp(2.25rem, 4.5vh, 3.25rem);
}

.platform-noc-band .home-noc__inner {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(1.5rem, 4vw, 2.75rem);
  align-items: center;
}

.platform-noc-band .home-noc__copy {
  text-align: left;
  justify-self: start;
  width: 100%;
  max-width: 36rem;
}

.platform-noc-band .home-noc__copy .section__lead,
.platform-noc-band .home-noc__copy .home-platform__points {
  max-width: none;
}

.platform-noc-band .home-noc__copy .home-platform__points {
  margin: 1.15rem 0 1.35rem;
}

.platform-noc-band .home-noc__visual {
  min-width: 0;
  justify-self: stretch;
  width: 100%;
}

.platform-noc-band .home-noc__visual .viewport-shot img {
  max-height: min(58vh, 560px);
  object-fit: cover;
  object-position: top left;
}

.home-noc__visual .mobile-showcase {
  margin: 0;
}

.home-noc__visual .mobile-showcase__devices {
  justify-content: start;
}

@media (max-width: 960px) {
  .platform-noc-band .home-noc__inner,
  .home-noc__inner {
    grid-template-columns: 1fr;
  }

  .platform-noc-band .home-noc__copy {
    max-width: none;
  }

  .platform-noc-band .home-noc__visual .viewport-shot img {
    max-height: min(48vh, 420px);
  }

  .platform-noc-band .home-noc__visual {
    order: 0;
  }
}

@media (max-width: 960px) {
  .home-noc__inner {
    grid-template-columns: 1fr;
  }

  .home-noc__visual {
    order: -1;
  }

  .mobile-hub__summary-grid,
  .mobile-hub--scroll .mobile-hub__summary-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mobile-hub__phone-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .mobile-hub__summary-grid,
  .mobile-hub--scroll .mobile-hub__summary-grid,
  .mobile-hub__phone-row {
    grid-template-columns: 1fr;
  }
}
