/* ID Core Marketing Site — Brand tokens (orange + black) */
:root {
  --bg: #000000;
  --bg-alt: #0a0a0a;
  --panel: #111111;
  --panel-elevated: #1a1a1a;
  --border: #2a2a2a;
  --border-subtle: #1f1f1f;
  --text: #f5f5f5;
  --text-muted: #a3a3a3;
  --text-dim: #737373;
  --primary: #f26522;
  --primary-hover: #dd5617;
  --primary-glow: rgba(242, 101, 34, 0.28);
  --accent: #f26522;
  --accent-hover: #dd5617;
  --success: #22c55e;
  --danger: #ef4444;
  --gradient-brand: linear-gradient(135deg, #f26522 0%, #dd5617 100%);
  --gradient-hero: radial-gradient(ellipse 80% 60% at 50% -10%, rgba(242, 101, 34, 0.14), transparent 60%),
    radial-gradient(ellipse 45% 35% at 85% 15%, rgba(242, 101, 34, 0.08), transparent 50%);
  --shadow-lg: 0 24px 64px rgba(0, 0, 0, 0.55);
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.4);
  --radius: 14px;
  --radius-sm: 10px;
  --header-h: 84px;
  --font: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  --container: 1180px;
  --transition: 0.2s ease;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 9999;
  padding: 10px 16px;
  background: var(--primary);
  color: #fff;
  border-radius: 8px;
  font-weight: 600;
}

.skip-link:focus {
  top: 16px;
}

.container {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}


.section-header {
  margin-bottom: 40px;
}

.section {
  padding: 96px 0;
  position: relative;
}

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

.eyebrow {
  display: inline-block;
  margin: 0 0 12px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
}

.eyebrow-danger {
  color: var(--danger);
}

h1, h2, h3 {
  margin: 0 0 16px;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
}

h3 {
  font-size: 1.15rem;
  font-weight: 600;
}

p {
  margin: 0 0 16px;
}

.section-intro {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(11, 11, 11, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), background var(--transition);
}

.site-header.scrolled {
  border-bottom-color: var(--border-subtle);
  background: rgba(0, 0, 0, 0.96);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 100%;
}

.brand {
  flex-shrink: 0;
  line-height: 0;
}

.brand-logo {
  height: 48px;
  width: auto;
  display: block;
}

@media (min-width: 768px) {
  .brand-logo {
    height: 58px;
  }
}

.site-nav {
  display: flex;
  gap: 28px;
  margin-left: auto;
}

.site-nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition);
}

.site-nav a:hover {
  color: var(--primary);
}

.header-cta {
  display: flex;
  gap: 10px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 0 0 0 var(--primary-glow);
}

.btn-primary:hover {
  background: var(--primary-hover);
  box-shadow: 0 4px 24px var(--primary-glow);
}

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

.btn-secondary:hover {
  border-color: var(--text-dim);
  background: rgba(255, 255, 255, 0.04);
}

.btn-ghost {
  background: transparent;
  color: var(--text-muted);
  padding: 8px 14px;
}

.btn-ghost:hover {
  color: var(--text);
}

.btn-lg {
  padding: 14px 28px;
  font-size: 1rem;
}

/* Hero */
.hero {
  padding-top: calc(var(--header-h) + 64px);
  padding-bottom: 96px;
  overflow: hidden;
}

.hero .container {
  width: min(100% - 32px, 1320px);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.38fr);
  gap: 36px;
  align-items: center;
  position: relative;
}

.hero-visual {
  width: 100%;
}

.hero-visual .product-shot img {
  width: 100%;
}

.hero-copy .lead {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.hero-copy .sublead {
  color: var(--text-dim);
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 36px;
}

.hero-integrations {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-integrations-label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-dim);
}

.integration-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}

.integration-logos img {
  height: 28px;
  width: auto;
  opacity: 0.9;
  transition: opacity var(--transition);
}

.integration-logos img:hover {
  opacity: 1;
}

.product-shot {
  margin: 0;
  width: 100%;
}

.product-shot img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
}

/* Cards */
.card-grid {
  display: grid;
  gap: 20px;
  margin-top: 0;
}

.four-col { grid-template-columns: repeat(4, 1fr); }
.three-col { grid-template-columns: repeat(3, 1fr); }

.card {
  background: var(--panel);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color var(--transition), transform var(--transition);
}

.card:hover {
  border-color: var(--border);
  transform: translateY(-2px);
}

.problem-card .card-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  font-weight: 700;
  margin-bottom: 16px;
  background: rgba(239, 68, 68, 0.12);
  color: var(--danger);
}

.problem-card h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.problem-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
}

.problem-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: 32px;
  align-items: center;
}

.problem-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.problem-cards .problem-card {
  padding: 20px;
}

.problem-split .story-visual-wrap {
  margin-top: 0;
}

.problem-split .story-caption {
  text-align: left;
}

.shift-split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 32px;
  align-items: center;
}

.shift-split .story-visual-wrap {
  margin-top: 0;
}

.shift-split .compare-grid {
  grid-template-columns: 1fr;
}

.section-action {
  margin-top: 32px;
  text-align: center;
}

/* Story / concept visuals (homepage) */
.story-visual-wrap {
  margin-top: 40px;
}

.story-visual-wrap + .compare-grid,
.section-header + .story-visual-wrap {
  margin-top: 0;
}

.section-header + .story-visual-wrap {
  margin-bottom: 40px;
}

.story-caption {
  margin: 12px 0 0;
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-dim);
}

.story-visual {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  background: var(--panel);
}

.story-visual img {
  display: block;
  width: 100%;
  height: auto;
}

/* Compare */
.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 0;
}

.compare-card {
  padding: 36px;
  border-radius: var(--radius);
  border: 1px solid var(--border-subtle);
}

.compare-card.old {
  background: rgba(239, 68, 68, 0.06);
  border-color: rgba(239, 68, 68, 0.2);
}

.compare-card.new {
  background: rgba(242, 101, 34, 0.08);
  border-color: rgba(242, 101, 34, 0.28);
}

.compare-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
  color: var(--text-dim);
}

.compare-card.new .compare-label {
  color: var(--primary);
}

/* Platform */
.platform-intro {
  display: grid;
  gap: 40px;
}

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

.pillar {
  padding: 24px;
  background: var(--panel);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
}

.pillar h3 {
  color: var(--text);
  margin-bottom: 8px;
}

.pillar p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
}

/* Product Tour */
.tour-shell {
  margin-top: 0;
  background: var(--panel);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  overflow: hidden;
}

.tour-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  padding: 12px 12px 0;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border-subtle);
}

.tour-tab {
  padding: 10px 18px;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  background: transparent;
  border: none;
  border-radius: 8px 8px 0 0;
  cursor: pointer;
  transition: color var(--transition), background var(--transition);
}

.tour-tab:hover {
  color: var(--text);
}

.tour-tab.active {
  color: var(--text);
  background: var(--panel);
}

.tour-panel {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 32px;
  padding: 32px;
  align-items: start;
}

.tour-panel[hidden] {
  display: none;
}

.tour-panel-copy h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
}

.tour-panel-copy p {
  color: var(--text-muted);
}

.feature-list {
  margin: 16px 0 0;
  padding-left: 20px;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.feature-list li {
  margin-bottom: 6px;
}

.feature-list li::marker {
  color: var(--primary);
}

/* Lifecycle */
.lifecycle-steps {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 0;
  max-width: 900px;
}

.lifecycle-step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 24px;
  padding: 32px;
  background: var(--panel);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
}

.step-number {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  opacity: 0.6;
  line-height: 1;
}

.step-content p {
  color: var(--text-muted);
}

.source-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.badge {
  display: inline-block;
  padding: 6px 12px;
  font-size: 0.8rem;
  font-weight: 500;
  border-radius: 999px;
  border: 1px solid var(--border);
}

.badge-success {
  background: rgba(34, 197, 94, 0.1);
  border-color: rgba(34, 197, 94, 0.3);
  color: #86efac;
}

.badge-progress {
  background: rgba(234, 179, 8, 0.1);
  border-color: rgba(234, 179, 8, 0.3);
  color: #fde047;
}

.policy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 20px;
}

.policy-item {
  padding: 14px;
  background: var(--bg-alt);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-subtle);
}

.policy-item strong {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 4px;
}

.policy-item span {
  font-size: 0.85rem;
  color: var(--text-dim);
}

.drift-flow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 20px;
}

.drift-step {
  display: flex;
  gap: 12px;
  padding: 16px;
  background: var(--bg-alt);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-subtle);
}

.drift-step span {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  background: var(--primary);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  border-radius: 50%;
}

.drift-step p {
  font-size: 0.85rem;
  color: var(--text-dim);
  margin: 0;
}

.lifecycle-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.lifecycle-pills span {
  padding: 6px 14px;
  font-size: 0.85rem;
  font-weight: 500;
  background: rgba(242, 101, 34, 0.12);
  border: 1px solid rgba(242, 101, 34, 0.28);
  border-radius: 999px;
  color: #fdba74;
}

.capability-card h3 {
  color: var(--primary);
  font-size: 1rem;
}

.capability-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
}

.span-2 {
  grid-column: span 2;
}

/* Differentiator */
.differentiator {
  max-width: 800px;
}

.differentiator blockquote {
  margin: 24px 0 0;
  padding: 32px;
  font-size: 1.25rem;
  line-height: 1.5;
  color: var(--text-muted);
  background: var(--panel);
  border-left: 4px solid var(--primary);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.differentiator em {
  color: var(--text);
  font-style: normal;
  font-weight: 600;
}

/* Outcomes */
.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 0;
}

.outcome {
  display: flex;
  gap: 16px;
  padding: 24px;
  background: var(--panel);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
}

.outcome-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  background: rgba(34, 197, 94, 0.15);
  color: var(--success);
  border-radius: 50%;
  font-weight: 700;
  font-size: 0.9rem;
}

.outcome h3 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.outcome p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
}

/* CTA */
.cta-section {
  background: linear-gradient(180deg, var(--bg-alt) 0%, #050505 100%);
}

.cta-inner {
  max-width: 760px;
}

.cta-inner p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

.cta-sub {
  font-size: 0.95rem !important;
  color: var(--text-dim) !important;
}

.cta-inner .hero-actions {
  margin-top: 32px;
  margin-bottom: 0;
}

/* Footer */
.site-footer {
  padding: 48px 0;
  border-top: 1px solid var(--border-subtle);
  background: var(--bg);
}

.footer-inner {
  display: grid;
  gap: 24px;
}

.footer-brand img {
  height: 40px;
  width: auto;
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--text-dim);
  margin: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-links a {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--text-dim);
  margin: 0;
}

/* Reveal animations — visible by default; JS enhances when available */
.reveal {
  opacity: 1;
  transform: none;
}

html.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

html.js .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal[data-delay='1'] { transition-delay: 0.1s; }
.reveal[data-delay='2'] { transition-delay: 0.2s; }
.reveal[data-delay='3'] { transition-delay: 0.3s; }
.reveal[data-delay='4'] { transition-delay: 0.4s; }
.reveal[data-delay='5'] { transition-delay: 0.5s; }
.reveal[data-delay='6'] { transition-delay: 0.6s; }

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

  .hero-visual {
    order: -1;
  }

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

  .tour-panel {
    grid-template-columns: 1fr;
  }

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

  .problem-split {
    grid-template-columns: 1fr;
  }

  .shift-split {
    grid-template-columns: 1fr;
  }

  .span-2 {
    grid-column: span 1;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 64px 0;
  }

  .site-nav,
  .header-cta .btn-ghost {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .site-header.nav-open .site-nav {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    padding: 20px 24px 24px;
    background: var(--bg-alt);
    border-bottom: 1px solid var(--border-subtle);
    gap: 16px;
  }

  .site-header.nav-open .header-cta {
    position: absolute;
    top: calc(var(--header-h) + 200px);
    left: 24px;
    right: 24px;
  }

  .site-header.nav-open .header-cta .btn {
    flex: 1;
  }

  .three-col,
  .four-col {
    grid-template-columns: 1fr;
  }

  .problem-cards {
    grid-template-columns: 1fr;
  }

  .policy-grid,
  .drift-flow,
  .outcomes-grid {
    grid-template-columns: 1fr;
  }

  .lifecycle-step {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .tour-tabs {
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
  }

  .tour-tab {
    flex-shrink: 0;
  }
}

.site-nav a[aria-current="page"] {
  color: var(--primary);
}

/* Inner page hero */
.page-hero {
  padding-top: calc(var(--header-h) + 48px);
  padding-bottom: 32px;
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  max-width: 720px;
}

.section-tight {
  padding-top: 0;
}

/* Bento feature grid (homepage) */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.bento-card {
  display: block;
  padding: 24px;
  background: var(--panel);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  transition: border-color var(--transition), transform var(--transition);
}

.bento-card:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
}

.bento-wide {
  grid-column: span 2;
}

.bento-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  margin-bottom: 8px;
}

.bento-card h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.bento-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
}

.text-link {
  display: inline-block;
  margin-top: 8px;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.95rem;
}

.text-link:hover {
  color: var(--primary-hover);
}

/* Feature row with stat cards */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.feature-row-stats {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.stat-card {
  padding: 20px;
  background: var(--panel);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
}

.stat-card strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 4px;
  color: var(--text);
}

.stat-card span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Full-width CTA band */
.cta-band {
  padding: 64px 0;
  background: var(--panel);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.cta-band-inner h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 8px;
}

.cta-band-inner p {
  color: var(--text-muted);
  margin: 0;
  max-width: 520px;
}

/* Lifecycle pipeline */
.lifecycle-pipeline {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 8px;
}

.pipeline-step {
  flex: 1;
  min-width: 100px;
  padding: 16px 12px;
  text-align: center;
  background: var(--panel);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
}

.pipeline-step span {
  display: block;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 4px;
}

/* Compact lifecycle cards */
.lifecycle-compact {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.lifecycle-card {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  padding: 24px;
  background: var(--panel);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
}

.lifecycle-card-num {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary);
  opacity: 0.7;
}

.lifecycle-card h3 {
  font-size: 1rem;
  margin-bottom: 6px;
}

.lifecycle-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
}

.outcomes-grid.compact .outcome {
  padding: 20px;
}

.outcomes-grid.compact h3 {
  font-size: 0.95rem;
}

/* Contact page */
.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
  align-items: start;
}

.contact-card {
  padding: 32px;
  background: var(--panel);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
}

.contact-card h2 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.contact-card p {
  color: var(--text-muted);
}

.contact-card .btn {
  margin-top: 8px;
}

.contact-aside {
  padding: 24px;
  background: var(--bg-alt);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
}

.contact-aside h3 {
  font-size: 1rem;
  margin-bottom: 16px;
}

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

.aside-list li {
  padding: 12px 0;
  border-bottom: 1px solid var(--border-subtle);
  font-size: 0.9rem;
  color: var(--text-muted);
}

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

.aside-list strong {
  display: block;
  color: var(--text);
  margin-bottom: 2px;
}

.integration-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 32px;
  background: var(--panel);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
}

.integration-strip img {
  height: 32px;
  width: auto;
  opacity: 0.9;
}

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

  .bento-wide {
    grid-column: span 2;
  }

  .feature-row {
    grid-template-columns: 1fr;
  }

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

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

  .cta-band-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

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

  .bento-wide {
    grid-column: span 1;
  }

  .pipeline-step {
    min-width: 80px;
    font-size: 0.75rem;
  }
}

/* Interactive lifecycle visual */
.lifecycle-visual {
  background: var(--panel);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  overflow: hidden;
}

.lifecycle-nav-track {
  position: relative;
  padding: 16px 20px 10px;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border-subtle);
}

.lifecycle-nav-track .lifecycle-progress {
  top: 42px;
}

.lifecycle-progress {
  position: absolute;
  top: 42px;
  left: 48px;
  right: 48px;
  height: 3px;
  background: var(--border-subtle);
  border-radius: 999px;
  z-index: 0;
  pointer-events: none;
}

.lifecycle-progress-fill {
  height: 100%;
  width: 14.28%;
  background: var(--primary);
  border-radius: 999px;
  transition: width 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.lifecycle-nav {
  display: flex;
  justify-content: space-between;
  gap: 4px;
  position: relative;
  z-index: 2;
}

.lifecycle-nav-node {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 8px 4px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: transform var(--transition);
  position: relative;
  z-index: 2;
}

.lifecycle-nav-node:hover {
  transform: translateY(-2px);
}

.lifecycle-nav-num {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 0.8rem;
  font-weight: 800;
  background: var(--bg-alt);
  border: 2px solid var(--border);
  color: var(--text-dim);
  transition: background var(--transition), border-color var(--transition), color var(--transition), box-shadow var(--transition);
  position: relative;
  z-index: 3;
}

.lifecycle-nav-node.completed .lifecycle-nav-num {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--bg-alt);
}

.lifecycle-nav-node.active .lifecycle-nav-num {
  border-color: var(--primary);
  background: var(--primary);
  color: #fff;
  box-shadow: 0 0 0 4px var(--primary-glow);
}

.lifecycle-nav-label {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-dim);
  text-align: center;
  line-height: 1.2;
  max-width: 72px;
}

.lifecycle-nav-node.active .lifecycle-nav-label {
  color: var(--primary);
}

.lifecycle-nav-node.completed .lifecycle-nav-label {
  color: var(--text-muted);
}

.page-hero-compact {
  padding-top: calc(var(--header-h) + 32px);
  padding-bottom: 16px;
}

.page-hero-compact h1 {
  max-width: none;
}

@media (min-width: 900px) {
  .page-hero-compact h1 {
    white-space: nowrap;
    font-size: clamp(1.85rem, 3vw, 2.75rem);
  }
}

.section-intro-single {
  max-width: none;
}

@media (min-width: 900px) {
  .section-intro-single {
    white-space: nowrap;
  }
}

.lifecycle-body {
  display: grid;
  grid-template-columns: minmax(0, 1.75fr) minmax(220px, 0.72fr);
  align-items: stretch;
}

.lifecycle-art {
  position: relative;
  background: #0a0a0a;
  border-right: 1px solid var(--border-subtle);
  border-bottom: none;
  min-height: 600px;
}

.lifecycle-art-panel {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lifecycle-art-panel.active {
  opacity: 1;
  visibility: visible;
}

.lifecycle-art-panel object {
  width: 100%;
  height: auto;
  max-height: calc(100% - 8px);
  aspect-ratio: 560 / 360;
  pointer-events: none;
}

.lifecycle-art-panel .product-shot {
  margin: 0;
  width: 100%;
  max-height: calc(100% - 8px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.lifecycle-art-panel .product-shot img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: calc(100% - 8px);
  height: auto;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
}

.lifecycle-art-panel .product-shot--concept {
  background: #fff;
  border-radius: var(--radius);
  padding: 20px;
  width: 100%;
  max-width: 520px;
  margin-inline: auto;
}

.lifecycle-art-panel .product-shot--concept img {
  width: 100%;
  max-width: 100%;
  border: none;
  box-shadow: none;
  border-radius: 0;
}

.lifecycle-detail {
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  min-height: 600px;
  overflow-y: auto;
}

.lifecycle-detail-header {
  margin-bottom: 12px;
  flex-shrink: 0;
}

.lifecycle-counter {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--primary);
}

.lifecycle-detail-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
  min-height: 0;
}

.lifecycle-detail-copy h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .lifecycle-detail-copy h3 {
    white-space: nowrap;
  }
}

.lifecycle-detail-copy p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.55;
  margin: 0;
}

.lifecycle-detail-copy p + p {
  margin-top: 0.85rem;
}

.lifecycle-extras {
  margin-top: 0;
}

.lifecycle-extras:empty {
  display: none;
}

.lifecycle-detail .policy-grid {
  grid-template-columns: 1fr;
  gap: 8px;
}

.lifecycle-detail .policy-item {
  padding: 10px 12px;
}

.lifecycle-detail .source-badges {
  margin-top: 0;
}

.lifecycle-detail .lifecycle-pills {
  margin-top: 0;
}

/* Wider container for lifecycle diagram */
.container-wide {
  width: min(100% - 40px, 1280px);
}

.lifecycle-section {
  padding-bottom: 48px;
}

@media (max-width: 1024px) {
  .lifecycle-body {
    grid-template-columns: 1fr;
  }

  .lifecycle-art {
    border-right: none;
    border-bottom: 1px solid var(--border-subtle);
    min-height: 480px;
  }

  .lifecycle-detail {
    min-height: 0;
    overflow-y: visible;
  }

  .lifecycle-detail-copy h3 {
    white-space: normal;
  }

  .lifecycle-nav-label {
    display: none;
  }

  .lifecycle-progress {
    left: 32px;
    right: 32px;
    top: 44px;
  }
}

@media (max-width: 768px) {
  .lifecycle-nav-num {
    width: 32px;
    height: 32px;
    font-size: 0.7rem;
  }

  .lifecycle-nav-track {
    padding: 16px 12px 12px;
  }

  .lifecycle-progress {
    left: 24px;
    right: 24px;
    top: 36px;
  }

  .lifecycle-detail {
    padding: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .btn:hover,
  .card:hover {
    transform: none;
  }
}
