﻿/* ClearGRC - Design System v2.0
   Brand: Precise, Trustworthy, Substantive, Practical, Deliberate, Composed
   North Star: Inspire confidence through clarity, not excitement through spectacle. */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

/* -- Design Tokens -- */
:root {
  /* Brand navy - AnaData indigo navy */
  --navy:       #221d52;
  --navy-2:     #2e2866;
  --navy-3:     #3a3478;
  --white:      #ffffff;
  --slate-50:   #f8fafc;
  --slate-100:  #f1f5f9;
  --slate-200:  #e2e8f0;
  --slate-300:  #cbd5e1;
  --slate-400:  #94a3b8;
  --slate-500:  #64748b;
  --slate-600:  #475569;
  --slate-700:  #334155;
  /* Brand tri-color - from logo arc & GRC letters: G=amber, R=red, C=green */
  --green:      #3aaa35;
  --green-d:    #2e8c2a;
  --amber:      #f5b400;
  --amber-d:    #d49d00;
  --red-brand:  #d62027;
  --red-brand-d:#b81c22;
  /* Gradient shorthand */
  --tri-gradient: linear-gradient(90deg, #d62027 0%, #f5b400 45%, #3aaa35 100%);
  --text-primary:   #221d52;
  --text-secondary: #475569;
  --text-muted:     #94a3b8;
  --border:         #e2e8f0;
  --navy-50:    #f0f1f8;
  --shadow-sm:  0 1px 3px rgba(34,29,82,0.06);
  --shadow-md:  0 2px 10px rgba(34,29,82,0.09);
  --shadow-lg:  0 6px 24px rgba(34,29,82,0.11);
  --section-gap: 88px;
  --wrap-max:    1200px;
  --wrap-pad:    clamp(20px, 5vw, 48px);
  --radius-sm:  6px;
  --radius-md:  10px;
  --ease:       cubic-bezier(0.4, 0, 0.2, 1);
  --dur:        220ms;
}

/* -- Reset -- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-primary);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* -- Layout -- */
.wrap {
  width: 100%;
  max-width: var(--wrap-max);
  margin-inline: auto;
  padding-inline: var(--wrap-pad);
}

/* -- Typography -- */
.display {
  font-size: clamp(26px, 3.2vw, 42px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.032em;
  color: var(--text-primary);
}
.display-lg {
  font-size: clamp(36px, 4.5vw, 58px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.045em;
}
h3 {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: var(--text-primary);
}
.label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
}
/* Label on dark backgrounds */
.section-dark .label,
.hero .label,
.page-hero .label,
.cta-section .label { color: var(--green); }
.lead {
  font-size: clamp(16px, 1.8vw, 19px);
  line-height: 1.65;
  color: var(--text-secondary);
}

/* -- Tri-color Arc Bar (brand motif: red -> amber -> green) -- */
.tri-bar {
  height: 3px;
  background: var(--tri-gradient);
  width: 100%;
}
.hero-badge-arc {
  display: block;
  width: 48px;
  height: 3px;
  background: var(--tri-gradient);
  border-radius: 2px;
  margin: 10px auto 0;
}

/* -- Scroll Progress -- */
#scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  background: var(--green);
  width: 0;
  z-index: 9999;
  transition: width 80ms linear;
}

/* -- Navigation -- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--dur) var(--ease);
}
.nav.scrolled { box-shadow: 0 2px 16px rgba(34,29,82,0.08); }

.nav-inner {
  display: flex;
  align-items: center;
  height: 64px;
  gap: 0;
}

.nav-brand {
  display: flex;
  align-items: center;
  margin-right: auto;
  flex-shrink: 0;
}
.nav-logo-img { height: 32px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-right: 20px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  transition: color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--text-primary);
  background: var(--slate-100);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 8px 18px;
  background: linear-gradient(135deg, #3aaa35 0%, #45c040 100%);
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  box-shadow: 0 2px 10px rgba(58,170,53,0.3);
  transition: box-shadow var(--dur) var(--ease), transform var(--dur) var(--ease);
  flex-shrink: 0;
}
.nav-cta:hover { box-shadow: 0 4px 16px rgba(58,170,53,0.45); transform: translateY(-1px); }

.mob-tog {
  display: none;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  transition: background var(--dur) var(--ease);
  margin-left: 12px;
}
.mob-tog:hover { background: var(--slate-100); }
.mob-tog svg { width: 20px; height: 20px; }

/* -- Buttons -- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: linear-gradient(135deg, #3aaa35 0%, #45c040 100%);
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 16px rgba(58,170,53,0.35);
  transition: box-shadow var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.btn-primary:hover {
  box-shadow: 0 4px 20px rgba(58,170,53,0.45);
}

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  background: transparent;
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  border: 1.5px solid rgba(255,255,255,0.25);
  transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.btn-outline-white:hover {
  border-color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.06);
}

.btn-navy {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  background: var(--navy);
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: background var(--dur) var(--ease);
}
.btn-navy:hover { background: var(--navy-2); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  background: transparent;
  color: var(--text-primary);
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border);
  transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.btn-outline:hover { border-color: var(--slate-400); background: var(--slate-50); }

/* -- Sections -- */
.section { padding-block: var(--section-gap); }
.section-white { background: var(--white); }
.section-slate {
  background: var(--navy-50);
}
.section-dark {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.section-dark > * { position: relative; z-index: 1; }

.section-header {
  text-align: center;
  max-width: 620px;
  margin-inline: auto;
  margin-bottom: 56px;
}
.section-header .label { display: block; margin-bottom: 12px; }
.section-header .display { margin-bottom: 16px; }
.section-header .lead { font-size: 17px; }

/* -- Social Proof Strip -- */
.section-strip {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.section-strip::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--tri-gradient);
  opacity: 0.5;
}
.section-strip .strip-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.strip-marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}
.strip-track {
  display: flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
  width: max-content;
}
.strip-track:hover { animation-play-state: paused; }
.strip-item {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  padding: 0 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}
.strip-item::after {
  content: '';
  width: 4px; height: 4px;
  background: var(--tri-gradient);
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* -- Hero -- */
.hero {
  background: #09081f;
  padding-top: calc(64px + 36px);
  padding-bottom: 80px;
  overflow: hidden;
  position: relative;
}
/* Green blob — left, behind headline */
.hero::before {
  content: '';
  position: absolute;
  top: -60px;
  left: -80px;
  width: 600px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(58,170,53,0.2) 0%, transparent 65%);
  filter: blur(80px);
  pointer-events: none;
  animation: blobDrift 16s ease-in-out infinite;
}
/* Purple blob — right side, behind screenshot */
.hero::after {
  content: '';
  position: absolute;
  top: 30%;
  right: -60px;
  width: 480px;
  height: 420px;
  background: radial-gradient(ellipse, rgba(80,50,220,0.18) 0%, transparent 65%);
  filter: blur(70px);
  pointer-events: none;
  animation: blobDrift 20s ease-in-out infinite reverse;
}
@keyframes blobDrift {
  0%, 100% { transform: translate(0, 0); }
  33%       { transform: translate(30px, -20px); }
  66%       { transform: translate(-15px, 25px); }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 14px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-badge-dot {
  width: 6px; height: 6px;
  background: var(--green);
  border-radius: 50%;
}

.hero h1 {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.045em;
  color: var(--white);
  margin-bottom: 28px;
}
.hero-accent {
  background: linear-gradient(135deg, #3aaa35 0%, #7dd87a 50%, #3aaa35 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: clamp(16px, 1.8vw, 18px);
  line-height: 1.7;
  color: rgba(255,255,255,0.65);
  margin-bottom: 36px;
  max-width: 460px;
}

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

.hero-screenshot {
  position: relative;
}
.hero-screenshot::before {
  content: '';
  position: absolute;
  inset: -40px;
  background: radial-gradient(ellipse 80% 70% at 50% 50%, rgba(58,170,53,0.18) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}
.hero-screenshot > * { position: relative; z-index: 1; }
.screenshot-frame {
  border-radius: 14px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.08),
    0 8px 32px rgba(0,0,0,0.3),
    0 32px 80px rgba(0,0,0,0.5),
    0 0 80px rgba(58,170,53,0.1);
  transform: perspective(1100px) rotateY(-10deg) rotateX(3deg);
  transform-origin: center center;
  transition: transform 600ms var(--ease);
}
.hero-screenshot:hover .screenshot-frame {
  transform: perspective(1100px) rotateY(-4deg) rotateX(1deg);
}
.screenshot-frame img,
.screenshot-frame svg { width: 100%; height: auto; display: block; }

/* -- Problem Section -- */
.problem-inner {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}
.problem-inner .display-lg { margin-bottom: 28px; }
.problem-inner .lead { margin-bottom: 16px; }

.section-dark .display-lg { color: var(--white); }
.section-dark .lead { color: rgba(255,255,255,0.65); }
.section-dark .display { color: var(--white); }

.tool-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 44px;
}
.tool-chip {
  padding: 7px 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.4);
  text-decoration: line-through;
  text-decoration-color: rgba(214,32,39,0.6);
  text-decoration-thickness: 1.5px;
}

.fw-chip {
  display: inline-block;
  padding: 3px 10px;
  background: var(--slate-100);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-secondary);
}
.chip-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.chip-row { display: flex; flex-wrap: wrap; gap: 6px; }
.card-chips { margin-top: auto; padding-top: 16px; }

/* -- Platform Two-Col -- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.two-col.wide { grid-template-columns: 1fr 1.3fr; }
.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }

.two-col-text .label { display: block; margin-bottom: 14px; }
.two-col-text .display { margin-bottom: 18px; }
.two-col-text .lead { margin-bottom: 28px; }

/* -- Workflow blocks -- */
.workflow-block {
  padding-top: 64px;
  border-top: 1px solid var(--border);
  margin-top: 64px;
}
.workflow-block:first-of-type { margin-top: 0; }
.workflow-scope-note {
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  font-size: 14px;
  color: var(--text-secondary);
  text-align: center;
}
.two-col-text h2 {
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin-bottom: 14px;
  color: var(--navy);
}
.two-col-text p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 0;
}
.workflow-cta { margin-top: 28px; }
.btn-primary-sm {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--navy-2);
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 6px;
  border: none;
  transition: background 0.18s, transform 0.18s;
}
.btn-primary-sm:hover { background: var(--navy); transform: translateY(-1px); }

.module-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.module-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  transition: all var(--dur) var(--ease);
}
.module-item:hover {
  border-color: var(--navy);
  color: var(--navy);
  background: var(--navy-50);
  box-shadow: var(--shadow-sm);
}
.module-dot {
  width: 6px; height: 6px;
  background: var(--navy-2);
  border-radius: 50%;
  flex-shrink: 0;
}

/* -- Outcome Cards -- */
.outcome-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.outcome-card {
  padding: 28px 22px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  transition: box-shadow var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.outcome-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--tri-gradient);
}
.outcome-card:hover { box-shadow: var(--shadow-md); border-color: var(--slate-300); }
.outcome-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, rgba(34,29,82,0.06) 0%, rgba(34,29,82,0.1) 100%);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.outcome-icon svg { width: 20px; height: 20px; stroke: var(--navy); stroke-width: 1.75; fill: none; }
.outcome-card h3 { font-size: 15px; margin-bottom: 10px; }
.outcome-card p { font-size: 13px; color: var(--text-secondary); line-height: 1.65; }

/* -- AI Capabilities -- */
.ai-caps { display: flex; flex-direction: column; gap: 10px; margin-top: 28px; }
.ai-cap {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  transition: all var(--dur) var(--ease);
}
.ai-cap:hover {
  background: var(--slate-50);
  border-color: var(--border);
}
.ai-cap-dot {
  width: 20px; height: 20px;
  background: linear-gradient(135deg, rgba(34,29,82,0.08) 0%, rgba(34,29,82,0.12) 100%);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 1px;
  display: flex; align-items: center; justify-content: center;
}
.ai-cap-dot::after {
  content: '';
  width: 6px; height: 6px;
  background: var(--navy-2);
  border-radius: 50%;
}
.ai-cap-text { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }
.ai-cap-text strong { color: var(--text-primary); font-weight: 600; }

/* -- Framework Grid -- */
.framework-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 14px;
}
.fw-badge {
  padding: 18px 12px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all var(--dur) var(--ease);
}
.fw-badge::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--tri-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 300ms var(--ease);
}
.fw-badge:hover {
  border-color: var(--slate-300);
  box-shadow: var(--shadow-sm);
}
.fw-badge:hover::after { transform: scaleX(1); }
.fw-name { font-size: 13px; font-weight: 700; color: var(--text-primary); margin-bottom: 2px; }
.fw-sub { font-size: 11px; color: var(--text-muted); }
.fw-count {
  text-align: center;
  margin-top: 36px;
  font-size: 15px;
  color: var(--text-secondary);
}
.fw-count strong { color: var(--text-primary); font-weight: 700; }
.fw-callout {
  text-align: center;
  margin: 0 auto 40px;
  max-width: 540px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 18px 28px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  line-height: 1.6;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}
.fw-callout::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--tri-gradient);
}

/* -- Audience Cards -- */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.audience-card {
  padding: 28px 22px;
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 3px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.audience-card:hover { box-shadow: var(--shadow-md); border-color: var(--slate-300); }
.audience-card:nth-child(1) { border-left-color: var(--red-brand); }
.audience-card:nth-child(2) { border-left-color: var(--navy-2); }
.audience-card:nth-child(3) { border-left-color: var(--amber); }
.audience-card:nth-child(4) { border-left-color: var(--red-brand); }
.audience-card:nth-child(5) { border-left-color: var(--navy-2); }
.audience-card:nth-child(6) { border-left-color: var(--amber); }
.audience-role {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.audience-card:nth-child(1) .audience-role { background: rgba(214,32,39,0.08); border: 1px solid rgba(214,32,39,0.2); color: var(--red-brand); }
.audience-card:nth-child(2) .audience-role { background: rgba(34,29,82,0.07); border: 1px solid rgba(34,29,82,0.15); color: var(--navy); }
.audience-card:nth-child(3) .audience-role { background: rgba(245,180,0,0.1); border: 1px solid rgba(245,180,0,0.25); color: #9a7200; }
.audience-card:nth-child(4) .audience-role { background: rgba(214,32,39,0.08); border: 1px solid rgba(214,32,39,0.2); color: var(--red-brand); }
.audience-card:nth-child(5) .audience-role { background: rgba(34,29,82,0.07); border: 1px solid rgba(34,29,82,0.15); color: var(--navy); }
.audience-card:nth-child(6) .audience-role { background: rgba(245,180,0,0.1); border: 1px solid rgba(245,180,0,0.25); color: #9a7200; }
.audience-card h3 { font-size: 16px; margin-bottom: 10px; }
.audience-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.65; }

/* -- Comparison -- */
.comparison-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.comp-col { border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--border); }
.comp-header {
  padding: 16px 22px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.comp-col.trad { border-color: #fca5a5; }
.comp-col.cgrc { border-color: rgba(34,29,82,0.2); }
.comp-col.trad .comp-header { background: #fef2f2; color: #b91c1c; }
.comp-col.cgrc .comp-header {
  background: var(--tri-gradient);
  color: var(--white);
  letter-spacing: 0.05em;
}
.comp-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  font-size: 14px;
  border-top: 1px solid var(--border);
}
.comp-col.trad .comp-item { background: #fff8f8; color: var(--text-secondary); border-top-color: #fecaca; }
.comp-col.cgrc .comp-item { background: var(--navy-50); color: var(--text-primary); font-weight: 500; border-top-color: var(--border); }
.comp-icon { width: 16px; height: 16px; flex-shrink: 0; }
.comp-col.trad .comp-icon { color: #f87171; }
.comp-col.cgrc .comp-icon { color: var(--green); }

/* -- CTA Section -- */
.cta-section {
  background: #13102e;
  padding-block: 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 70% at 50% 120%, rgba(58,170,53,0.1) 0%, transparent 60%),
    radial-gradient(ellipse 35% 45% at 8% 0%, rgba(245,180,0,0.05) 0%, transparent 50%);
  pointer-events: none;
}
.cta-section .display { color: var(--white); margin-bottom: 18px; position: relative; font-size: clamp(28px, 3.2vw, 42px); }
.cta-section .lead {
  color: rgba(255,255,255,0.65);
  max-width: 500px;
  margin-inline: auto;
  margin-bottom: 36px;
  position: relative;
}
.cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; position: relative; }

/* -- Footer -- */
.foot {
  background: #13102e;
  position: relative;
  padding-block: 40px 24px;
}
.cta-section::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: rgba(255,255,255,0.07);
}
.foot-logo-img {
  height: 24px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
  margin-bottom: 10px;
}
.foot-tagline {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 32px;
  align-items: start;
  margin-bottom: 32px;
}
.foot-brand { max-width: 280px; }
.foot-desc {
  font-size: 12px;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
  margin-bottom: 14px;
}
.foot-cta {
  font-size: 12px;
  font-weight: 600;
  color: var(--green);
  transition: color var(--dur) var(--ease);
}
.foot-cta:hover { color: #5dd85a; }
.foot-col h4 {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 12px;
}
.foot-col ul { display: flex; flex-direction: column; gap: 8px; }
.foot-col a {
  font-size: 13px;
  color: rgba(255,255,255,0.72);
  transition: color var(--dur) var(--ease);
}
.foot-col a:hover { color: rgba(255,255,255,1); }
.foot-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.foot-copy { font-size: 11px; color: rgba(255,255,255,0.55); }
.foot-legal { display: flex; gap: 16px; }
.foot-legal a {
  font-size: 11px;
  color: rgba(255,255,255,0.55);
  transition: color var(--dur) var(--ease);
}
.foot-legal a:hover { color: rgba(255,255,255,0.9); }

/* -- Page Hero (inner pages) -- */
.page-hero {
  background: #09081f;
  padding-top: calc(64px + 52px);
  padding-bottom: 52px;
  position: relative;
  overflow: hidden;
}
/* Green blob — upper right */
.page-hero::before {
  content: '';
  position: absolute;
  top: -80px;
  right: 5%;
  width: 560px;
  height: 460px;
  background: radial-gradient(ellipse, rgba(58,170,53,0.22) 0%, transparent 68%);
  filter: blur(72px);
  pointer-events: none;
}
/* Accent blob — lower left */
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: 20%;
  width: 380px;
  height: 320px;
  background: radial-gradient(ellipse, rgba(99,60,255,0.14) 0%, transparent 68%);
  filter: blur(64px);
  pointer-events: none;
}
.page-hero-inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
  max-width: 100%;
  position: relative;
  z-index: 1;
}
.page-hero-text { min-width: 0; }
.page-hero-graphic {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.9;
}
.page-hero-graphic img { max-width: 100%; height: auto; display: block; }
.page-hero .label { color: var(--green); display: block; margin-bottom: 14px; }
.page-hero h1 {
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.04em;
  color: var(--white);
  margin-bottom: 18px;
  text-shadow: 0 2px 40px rgba(58,170,53,0.15);
}
.page-hero .lead { color: rgba(255,255,255,0.65); margin-bottom: 32px; }
.page-hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
@media (max-width: 900px) {
  .page-hero-inner { grid-template-columns: 1fr; gap: 32px; }
  .page-hero-graphic { display: none; }
}

/* -- Cards (generic feature/info cards) -- */
.card-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.card-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }

.card {
  padding: 32px 28px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.card:hover { box-shadow: var(--shadow-md); border-color: var(--slate-300); }
.card-icon {
  width: 40px; height: 40px;
  background: var(--slate-100);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.card-icon svg { width: 20px; height: 20px; stroke: var(--navy-2); stroke-width: 1.75; fill: none; }
.card h3 { font-size: 16px; margin-bottom: 12px; }
.card p { font-size: 14px; color: var(--text-secondary); line-height: 1.7; }
.card ul { margin-top: 16px; display: flex; flex-direction: column; gap: 9px; }
.card li { font-size: 13.5px; color: var(--text-secondary); padding-left: 16px; position: relative; line-height: 1.55; }
.card li::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 5px; height: 5px;
  background: var(--navy-2);
  border-radius: 50%;
}

/* -- Card Bullet List (used outside .card, e.g. two-col sections) -- */
.card-bullet {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}
.card-bullet li {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.65;
  padding-left: 20px;
  position: relative;
}
.card-bullet li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
}

/* -- Spec Grid -- */
.spec-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.spec-item {
  padding: 24px 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  text-align: center;
}
.spec-num { font-size: 28px; font-weight: 800; letter-spacing: -0.03em; color: var(--green); margin-bottom: 6px; }
.spec-label { font-size: 13px; color: var(--text-secondary); }

/* -- Cert Badges -- */
.cert-grid { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; margin-top: 8px; }
.cert-badge {
  display: flex; flex-direction: column; align-items: center;
  padding: 24px 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  min-width: 120px;
  box-shadow: var(--shadow-sm);
}
.cert-badge-icon { font-size: 28px; margin-bottom: 10px; }
.cert-badge-name { font-size: 14px; font-weight: 700; color: var(--text-primary); }
.cert-badge-sub { font-size: 12px; color: var(--text-muted); margin-top: 2px; }

/* -- Info Panel -- */
.info-panel {
  background: var(--slate-50);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.info-block { padding: 20px 24px; border-bottom: 1px solid var(--border); }
.info-block:last-child { border-bottom: none; }
.info-block-title {
  font-size: 12px; font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.07em;
  margin-bottom: 14px;
}
.info-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
}
.info-row:last-child { border-bottom: none; }
.info-label-sm { color: var(--text-muted); }
.info-value { color: var(--text-primary); font-weight: 500; text-align: right; }

/* -- Forms -- */
.form-field { display: flex; flex-direction: column; margin-bottom: 18px; }
.form-label { font-size: 13px; font-weight: 600; color: var(--text-primary); margin-bottom: 6px; }
.form-input {
  width: 100%;
  padding: 10px 14px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 15px;
  color: var(--text-primary);
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  appearance: none;
}
.form-input:focus { outline: none; border-color: var(--navy); box-shadow: 0 0 0 3px rgba(34,29,82,0.08); }
.form-input.error { border-color: #ef4444; }
.form-submit {
  width: 100%;
  padding: 13px 24px;
  background: var(--navy);
  color: var(--white);
  font-size: 15px; font-weight: 600;
  border-radius: var(--radius-sm);
  border: none; cursor: pointer;
  transition: background var(--dur) var(--ease);
}
.form-submit:hover:not(:disabled) { background: var(--navy-2); }
.form-submit:disabled { opacity: 0.6; cursor: not-allowed; }
.form-success { display: none; }
.form-success.is-visible { display: block; }
.form-success-icon { font-size: 24px; color: var(--green); margin-bottom: 8px; }

/* -- Legal -- */
.legal-body {
  padding-top: calc(64px + 64px);
  padding-bottom: 96px;
  background: var(--white);
}
.legal-body h1 {
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 6px;
}
.legal-meta {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}
.legal-section { margin-bottom: 40px; padding-bottom: 40px; border-bottom: 1px solid var(--border); }
.legal-section:last-child { border-bottom: none; margin-bottom: 0; }
.legal-section h2 { font-size: 18px; font-weight: 700; margin-bottom: 14px; }
.legal-section p { font-size: 15px; color: var(--text-secondary); line-height: 1.75; margin-bottom: 14px; }
.legal-section p:last-child { margin-bottom: 0; }
.legal-section ul { list-style: disc; padding-left: 20px; display: flex; flex-direction: column; gap: 8px; }
.legal-section li { font-size: 15px; color: var(--text-secondary); line-height: 1.65; }

/* -- Hero Chain Visual -- */
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 80px;
  align-items: center;
}
/* -- Hero Once: One Action → Many Outcomes -- */
@keyframes onceChipIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-once {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 340px;
  flex-shrink: 0;
}

.hero-once-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  border-left: 3px solid var(--green);
  border-radius: 10px;
  padding: 18px 20px;
}

.hero-once-card-top {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--green);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 7px;
}
.hero-once-card-top::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
}

.hero-once-card-title {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}

.hero-once-card-meta {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}

.hero-once-connector {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 10px 0;
}

.hero-once-conn-line {
  width: 1px;
  height: 14px;
  background: rgba(255,255,255,0.16);
}

.hero-once-conn-label {
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: rgba(255,255,255,0.35);
}

.hero-once-chips {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.hero-once-chip {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 11px 14px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  opacity: 0;
  animation: onceChipIn 0.32s ease both;
}

.chip-check {
  font-size: 10px;
  color: var(--green);
  font-weight: 700;
}

.chip-name {
  font-size: 12.5px;
  font-weight: 600;
  color: rgba(255,255,255,0.82);
  letter-spacing: -0.01em;
}

.chip-ref {
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  font-family: ui-monospace, 'SFMono-Regular', monospace;
}

.hero-once-c1 { animation-delay: 0.55s; }
.hero-once-c2 { animation-delay: 0.72s; }
.hero-once-c3 { animation-delay: 0.89s; }
.hero-once-c4 { animation-delay: 1.06s; }
/* Outcome chips fire after a deliberate pause — reinforces propagation */
.hero-once-c5 { animation-delay: 1.40s; }
.hero-once-c6 { animation-delay: 1.58s; }

.hero-once-group { display: flex; flex-direction: column; gap: 6px; }
.hero-once-group-label {
  font-size: 9.5px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.28);
  padding-left: 1px;
}
.hero-once-sep {
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin: 6px 0;
}
.hero-once-chip--outcome {
  border-color: rgba(58,170,53,0.22);
  background: rgba(58,170,53,0.07);
}

/* -- Hero Graph: Relationship diagram (home page) -- */
.hero-graph {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
@keyframes hgIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hg-node,
.hg-lines {
  opacity: 0;
  animation: hgIn 0.4s ease both;
}
/* Nodes cascade top-to-bottom */
.hg-n1 { animation-delay: 0.35s; }
.hg-l1 { animation-delay: 0.55s; }
.hg-n2 { animation-delay: 0.72s; }
.hg-n3 { animation-delay: 0.72s; }
.hg-l2 { animation-delay: 0.90s; }
.hg-n4 { animation-delay: 1.05s; }
.hg-l3 { animation-delay: 1.22s; }
.hg-n5 { animation-delay: 1.38s; }
.hg-n6 { animation-delay: 1.38s; }
.hg-l4 { animation-delay: 1.55s; }
.hg-n7 { animation-delay: 1.70s; }

/* -- Hero Rel: One Activity → Multiple Outcomes (platform page) -- */
.hero-rel {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.1);
  position: relative;
  z-index: 1;
}
.hr-source {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  border-left: 3px solid var(--green);
  border-radius: 10px;
  padding: 14px 22px;
  text-align: center;
}
.hr-src-eyebrow {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--green);
  margin-bottom: 6px;
}
.hr-src-name {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.01em;
}
.hr-down {
  width: 1px;
  height: 22px;
  background: rgba(255,255,255,0.18);
}
.hr-outcomes {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 600px;
}
.hr-out-item {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.72);
  padding: 9px 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 7px;
  letter-spacing: 0.01em;
}

/* -- Problem List (Why Traditional GRC) -- */
.prob-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 600px;
  margin: 40px auto 0;
}
.prob-item {
  padding: 18px 24px;
  border-left: 2px solid var(--slate-200);
  color: var(--text-secondary);
  font-size: 1.0625rem;
  line-height: 1.55;
  position: relative;
}
.prob-item + .prob-item {
  margin-top: 2px;
}
.prob-resolution {
  max-width: 600px;
  margin: 28px auto 0;
  text-align: center;
  font-size: 1rem;
  color: var(--navy);
  font-weight: 500;
  line-height: 1.6;
}

/* -- Evidence Resolution -- */
.evidence-resolution {
  max-width: 560px;
  margin: 28px auto 0;
  text-align: center;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* -- Closing Philosophical Statement -- */
.closing-phil {
  max-width: 660px;
  margin: 0 auto;
  text-align: center;
  padding: 24px 0;
}
.closing-statement {
  font-size: clamp(1.2rem, 2.4vw, 1.6rem);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.5;
  letter-spacing: -0.025em;
}

/* -- Prose Section -- */
.prose-section { max-width: 860px; margin: 0 auto; }
.prose-section > .label { display: block; margin-bottom: 16px; }
.prose-section > .display { margin-bottom: 36px; }
.prose-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.prose-col p { font-size: 15px; color: var(--text-secondary); line-height: 1.75; margin-bottom: 16px; }
.prose-col p:last-child { margin-bottom: 0; }

/* -- Lifecycle Diagram -- */
.lc-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.lc-text > .label { display: block; margin-bottom: 14px; }
.lc-text h2 { font-size: clamp(22px, 2.4vw, 32px); font-weight: 700; letter-spacing: -0.025em; line-height: 1.2; color: var(--navy); margin-bottom: 16px; }
.lc-text p { font-size: 15px; color: var(--text-secondary); line-height: 1.7; margin-bottom: 14px; }
.lc-supporting { margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--border); }
.lc-sup-label { font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-secondary); margin-bottom: 12px; }
.lc-sup-badges { display: flex; flex-wrap: wrap; gap: 8px; }
.lc-sup-badge { font-size: 12px; font-weight: 600; color: var(--navy-2); background: white; border: 1px solid var(--border); border-radius: 4px; padding: 4px 10px; }

.lc-chain {
  position: relative;
  padding-left: 44px;
}
/* Static rail */
.lc-chain::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--slate-200);
}
.lc-node {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
  margin-bottom: 8px;
}
.lc-node-authority { background: var(--navy); border-color: var(--navy); }
.lc-node-authority .lc-node-text { color: white; }

/* Evidence node — visual hub of the model */
.lc-node-evidence {
  background: linear-gradient(135deg, rgba(58,170,53,0.07) 0%, rgba(58,170,53,0.02) 100%);
  border: 1px solid rgba(58,170,53,0.28);
  border-left: 3px solid var(--green);
  flex-direction: column;
  align-items: flex-start;
  padding: 18px 20px;
  gap: 0;
}
.lc-node-evidence .lc-dot {
  top: 20px;
  transform: none;
}
.lc-node-evidence .lc-node-text {
  color: var(--navy);
  font-size: 15px;
  font-weight: 700;
}
.lc-ev-shared {
  font-size: 12px;
  color: var(--text-secondary);
  margin-top: 5px;
  margin-bottom: 12px;
  line-height: 1.4;
}
.lc-ev-connections { display: flex; flex-wrap: wrap; gap: 5px; }
.lc-ev-tag {
  font-size: 10.5px;
  font-weight: 600;
  color: var(--navy-2);
  background: white;
  border: 1px solid rgba(58,170,53,0.4);
  border-radius: 4px;
  padding: 3px 9px;
}

.lc-node-final { background: var(--slate-50); }
.lc-dot {
  position: absolute;
  left: -52px;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--navy);
  border: 2px solid var(--slate-50);
  box-shadow: 0 0 0 1.5px var(--navy);
  flex-shrink: 0;
  z-index: 2;
}
.lc-dot-accent {
  background: var(--green);
  width: 12px;
  height: 12px;
  left: -53px;
  box-shadow: 0 0 0 3px rgba(58,170,53,0.18), 0 0 0 1.5px var(--green);
}
.lc-dot-final { background: var(--slate-400); box-shadow: 0 0 0 1.5px var(--slate-400); }
.lc-node-text { font-size: 14px; font-weight: 600; color: var(--navy); line-height: 1.3; }
.lc-step-label { font-size: 11px; color: var(--slate-500); padding: 8px 0; margin-left: 2px; }

/* -- Lifecycle Animation -- */
@keyframes lcNodeIn {
  from { opacity: 0; transform: translateX(12px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* Sequential dot pulse — navy nodes */
@keyframes dotSeqNavy {
  0%, 100% { box-shadow: 0 0 0 1.5px var(--navy); }
  6%        { box-shadow: 0 0 0 8px rgba(30,45,107,0.18), 0 0 0 1.5px var(--navy); }
  14%       { box-shadow: 0 0 0 1.5px var(--navy); }
}
/* Sequential dot pulse — evidence (green) */
@keyframes dotSeqGreen {
  0%, 100% { box-shadow: 0 0 0 3px rgba(58,170,53,0.18), 0 0 0 1.5px var(--green); }
  6%        { box-shadow: 0 0 0 10px rgba(58,170,53,0.14), 0 0 0 1.5px var(--green); }
  14%       { box-shadow: 0 0 0 3px rgba(58,170,53,0.18), 0 0 0 1.5px var(--green); }
}
/* Sequential dot pulse — final (slate) */
@keyframes dotSeqSlate {
  0%, 100% { box-shadow: 0 0 0 1.5px var(--slate-400); }
  6%        { box-shadow: 0 0 0 8px rgba(100,116,139,0.18), 0 0 0 1.5px var(--slate-400); }
  14%       { box-shadow: 0 0 0 1.5px var(--slate-400); }
}

/* Nodes start hidden; animate in when wrapper becomes visible */
.lc-chain .lc-node { opacity: 0; }
.lc-diagram-wrap.is-visible .lc-node {
  animation: lcNodeIn 0.38s cubic-bezier(0.22, 1, 0.36, 1) both;
}
/* Entrance stagger */
.lc-diagram-wrap.is-visible .lc-chain > .lc-node:nth-child(1) { animation-delay: 0.00s; }
.lc-diagram-wrap.is-visible .lc-chain > .lc-node:nth-child(2) { animation-delay: 0.07s; }
.lc-diagram-wrap.is-visible .lc-chain > .lc-node:nth-child(3) { animation-delay: 0.14s; }
.lc-diagram-wrap.is-visible .lc-chain > .lc-node:nth-child(4) { animation-delay: 0.21s; }
.lc-diagram-wrap.is-visible .lc-chain > .lc-node:nth-child(5) { animation-delay: 0.28s; }
.lc-diagram-wrap.is-visible .lc-chain > .lc-node:nth-child(6) { animation-delay: 0.35s; }
.lc-diagram-wrap.is-visible .lc-chain > .lc-node:nth-child(7) { animation-delay: 0.42s; }
.lc-diagram-wrap.is-visible .lc-chain > .lc-node:nth-child(8) { animation-delay: 0.49s; }

/* Sequential dot pulse — 4s cycle, 0.5s between each dot, starts 1s after reveal */
.lc-diagram-wrap.is-visible .lc-chain > .lc-node:nth-child(1) .lc-dot { animation: dotSeqNavy  4s 1.0s ease-in-out infinite; }
.lc-diagram-wrap.is-visible .lc-chain > .lc-node:nth-child(2) .lc-dot { animation: dotSeqNavy  4s 1.5s ease-in-out infinite; }
.lc-diagram-wrap.is-visible .lc-chain > .lc-node:nth-child(3) .lc-dot { animation: dotSeqNavy  4s 2.0s ease-in-out infinite; }
.lc-diagram-wrap.is-visible .lc-chain > .lc-node:nth-child(4) .lc-dot { animation: dotSeqGreen 4s 2.5s ease-in-out infinite; }
.lc-diagram-wrap.is-visible .lc-chain > .lc-node:nth-child(5) .lc-dot { animation: dotSeqNavy  4s 3.0s ease-in-out infinite; }
.lc-diagram-wrap.is-visible .lc-chain > .lc-node:nth-child(6) .lc-dot { animation: dotSeqNavy  4s 3.5s ease-in-out infinite; }
.lc-diagram-wrap.is-visible .lc-chain > .lc-node:nth-child(7) .lc-dot { animation: dotSeqNavy  4s 4.0s ease-in-out infinite; }
.lc-diagram-wrap.is-visible .lc-chain > .lc-node:nth-child(8) .lc-dot { animation: dotSeqSlate 4s 4.5s ease-in-out infinite; }

/* -- Reuse Diagram -- */
.reuse-diagram { display: flex; flex-direction: column; align-items: center; max-width: 480px; margin: 0 auto 40px; }
.reuse-src-badge { background: var(--navy-2); color: white; padding: 22px 48px; border-radius: 10px; text-align: center; }
.reuse-src-label { font-size: 10px; text-transform: uppercase; letter-spacing: 0.1em; opacity: 0.6; margin-bottom: 6px; }
.reuse-src-name { font-size: 17px; font-weight: 700; }
.reuse-arrow-down { margin: 6px 0; }
.reuse-targets { display: grid; grid-template-columns: 1fr 1fr 1fr 1fr; gap: 10px; width: 100%; }
.reuse-fw { background: white; border: 1px solid var(--border); border-radius: 7px; padding: 14px 10px; font-size: 13px; font-weight: 700; color: var(--navy); text-align: center; box-shadow: 0 1px 3px rgba(0,0,0,0.05); }
.reuse-outcome { margin-top: 16px; font-size: 14px; font-weight: 600; color: var(--navy); text-align: center; }
.reuse-footnote { font-size: 14px; color: var(--text-secondary); text-align: center; max-width: 560px; margin: 0 auto; line-height: 1.65; }

/* -- Evidence Hub -- */
.evidence-hub { background: white; border: 1px solid var(--border); border-radius: 12px; padding: 32px; box-shadow: var(--shadow-md); }
.ev-center { background: var(--navy-2); color: white; font-size: 15px; font-weight: 700; text-align: center; padding: 16px 24px; border-radius: 8px; margin-bottom: 0; }
.ev-connector-row { display: flex; justify-content: space-around; padding: 0 40px; }
.ev-line { width: 1px; height: 16px; background: var(--border); }
.ev-spokes { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 8px; }
.ev-spoke { background: var(--slate-50); border: 1px solid var(--border); border-radius: 6px; padding: 10px 8px; font-size: 12px; font-weight: 600; color: var(--navy); text-align: center; }

/* -- AI Flow -- */
.ai-flow { background: var(--slate-50); border: 1px solid var(--border); border-radius: 12px; padding: 24px; }
.ai-flow-step { display: flex; gap: 14px; align-items: flex-start; padding: 14px 0; }
.ai-flow-step + .ai-flow-step { border-top: 1px solid var(--border); }
.ai-flow-step-ai { background: rgba(58,170,53,0.05); border-radius: 8px; margin: 0 -4px; padding: 12px 4px; border-top: none !important; }
.ai-flow-step-ai + .ai-flow-step { border-top: none; }
.ai-step-marker { width: 30px; height: 30px; border-radius: 6px; background: var(--navy); color: white; font-size: 11px; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ai-marker { background: var(--green); font-size: 9px; letter-spacing: 0.04em; }
.ai-marker-accept { background: #16a34a; font-size: 14px; }
.ai-step-body { flex: 1; min-width: 0; }
.ai-step-title { font-size: 13px; font-weight: 600; color: var(--navy); margin-bottom: 3px; }
.ai-step-desc { font-size: 12px; color: var(--text-secondary); line-height: 1.5; }
.ai-step-tags { display: flex; gap: 6px; margin-bottom: 5px; flex-wrap: wrap; }
.ai-tag-relevant { background: rgba(22,163,74,0.1); color: #166534; font-size: 10px; font-weight: 700; padding: 2px 7px; border-radius: 4px; letter-spacing: 0.05em; text-transform: uppercase; }
.ai-tag-conf { background: var(--slate-200); color: var(--text-secondary); font-size: 10px; font-weight: 600; padding: 2px 7px; border-radius: 4px; }
.ai-flow-connector { width: 1px; height: 10px; background: var(--border); margin-left: 14px; }
.ai-flow-step-accepted .ai-step-title { color: #16a34a; }

/* -- Impact Grid -- */
.impact-grid { display: flex; flex-direction: column; gap: 8px; max-width: 700px; margin: 0 auto; }
.impact-item { display: grid; grid-template-columns: 200px 32px 1fr; align-items: center; gap: 8px; background: white; border: 1px solid var(--border); border-radius: 8px; padding: 14px 18px; }
.impact-from { font-size: 14px; font-weight: 600; color: var(--navy); }
.impact-arrow { font-size: 16px; color: var(--slate-300); text-align: center; }
.impact-to { font-size: 14px; color: var(--text-secondary); }

/* -- Platform Capabilities -- */
.cap-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.cap-card { background: var(--slate-50); border: 1px solid var(--border); border-radius: 10px; padding: 22px; }
.cap-card-header { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.cap-card-icon { width: 34px; height: 34px; background: var(--navy); border-radius: 7px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.cap-card-icon svg { width: 16px; height: 16px; stroke: white; }
.cap-card h3 { font-size: 15px; font-weight: 700; color: var(--navy); margin: 0; }
.cap-card > p { font-size: 13px; color: var(--text-secondary); line-height: 1.6; margin-bottom: 14px; }
.cap-card ul { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.cap-card li { font-size: 12px; color: var(--text-secondary); padding-left: 12px; position: relative; line-height: 1.4; }
.cap-card li::before { content: ''; position: absolute; left: 0; top: 6px; width: 4px; height: 4px; background: var(--navy-2); border-radius: 50%; }

/* -- Closing Narrative -- */
.closing-narrative { max-width: 660px; margin: 0 auto; text-align: center; }
.closing-narrative .display { margin-bottom: 24px; }
.closing-narrative p { font-size: 15px; color: var(--text-secondary); line-height: 1.75; margin-bottom: 14px; }
.closing-pillars { display: flex; flex-direction: column; gap: 10px; margin-top: 40px; text-align: left; }
.closing-pillar { font-size: 14px; font-weight: 600; color: var(--navy); padding: 13px 20px 13px 16px; background: var(--slate-50); border: 1px solid var(--border); border-radius: 7px; position: relative; padding-left: 20px; }
.closing-pillar::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: var(--green); border-radius: 7px 0 0 7px; }

/* ============================================================
   About Page
   ============================================================ */

/* Before/After Compare Visual */
.abt-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.abt-compare-col {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px 18px;
  background: var(--slate-50);
}
.abt-compare-before { opacity: 0.7; }
.abt-compare-after { background: white; border-color: rgba(58,170,53,0.3); }
.abt-compare-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.abt-compare-nodes { display: flex; flex-direction: column; gap: 4px; }
.abt-node {
  background: white;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 9px 12px;
  font-size: 12px;
  font-weight: 600;
  color: var(--navy);
  text-align: center;
}
.abt-node-muted { color: var(--text-muted); border-style: dashed; }
.abt-node-top { background: var(--navy); color: white; border-color: var(--navy); }
.abt-node-accent { background: rgba(58,170,53,0.09); border-color: rgba(58,170,53,0.28); color: var(--green-d); }
.abt-node-final { background: var(--navy-50); }
.abt-conn-line { width: 1px; height: 10px; background: rgba(58,170,53,0.4); margin: 0 auto; }
.abt-compare-note { font-size: 11px; color: var(--text-muted); margin-top: 12px; text-align: center; line-height: 1.4; }
.abt-compare-note-green { color: var(--green-d); }

/* Philosophy Pillars */
.abt-pillars {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.abt-pillar {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  background: white;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 20px 24px;
}
.abt-pillar-num {
  font-size: 13px;
  font-weight: 800;
  color: var(--green);
  letter-spacing: -0.01em;
  flex-shrink: 0;
  padding-top: 1px;
  min-width: 24px;
}
.abt-pillar-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
  line-height: 1.35;
}
.abt-pillar-desc { font-size: 13px; color: var(--text-secondary); line-height: 1.65; }

/* AI Principles Panel */
.abt-ai-panel {
  background: var(--slate-50);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 4px 0;
  overflow: hidden;
}
.abt-ai-principle {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
}
.abt-ai-principle:last-child { border-bottom: none; }
.abt-ai-icon {
  width: 36px;
  height: 36px;
  background: var(--navy);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.abt-ai-icon svg { width: 16px; height: 16px; stroke: white; }
.abt-ai-title { font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.abt-ai-desc { font-size: 13px; color: var(--text-secondary); line-height: 1.6; }

/* Long-Term Vision */
.abt-vision {
  max-width: 640px;
  margin: 0 auto;
}
.abt-vision .label { display: block; margin-bottom: 14px; }
.abt-vision h2 { margin-bottom: 24px; }
.abt-vision p { font-size: 15px; color: var(--text-secondary); line-height: 1.75; margin-bottom: 16px; }
.abt-vision p:last-child { margin-bottom: 0; }

/* About — Team Section */
.abt-team {
  max-width: 580px;
  margin: 0 auto;
  text-align: center;
}
.abt-team .label { display: block; margin-bottom: 14px; }
.abt-team h2 { margin-bottom: 24px; }
.abt-team p { font-size: 15px; color: var(--text-secondary); line-height: 1.75; margin-bottom: 16px; }
.abt-team p:last-child { margin-bottom: 0; }

/* ============================================================
   Solutions Page — By Role/Persona
   ============================================================ */

/* Persona section two-col */
.sol-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.sol-section-reverse { direction: rtl; }
.sol-section-reverse > * { direction: ltr; }

.sol-role-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--navy-50);
  border: 1px solid var(--slate-200);
  border-radius: 4px;
  padding: 4px 10px;
  margin-bottom: 16px;
}

.sol-text h2 { margin-bottom: 18px; }
.sol-text > p { font-size: 15px; color: var(--text-secondary); line-height: 1.75; margin-bottom: 20px; }

.sol-challenges { margin-top: 4px; }
.sol-challenge-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
}

/* How ClearGRC helps panel */
.sol-how-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.sol-features { display: flex; flex-direction: column; gap: 0; border: 1px solid var(--border); border-radius: 10px; overflow: hidden; background: white; }
.sol-feature {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 18px;
  border-bottom: 1px solid var(--border);
}
.sol-feature:last-child { border-bottom: none; }
.sol-feature-icon {
  width: 32px;
  height: 32px;
  background: var(--navy-50);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.sol-feature-icon svg { width: 15px; height: 15px; stroke: var(--navy-2); }
.sol-feature-title { font-size: 13px; font-weight: 700; color: var(--navy); margin-bottom: 3px; line-height: 1.3; }
.sol-feature-desc { font-size: 12px; color: var(--text-secondary); line-height: 1.55; }

.sol-outcome {
  margin-top: 14px;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  padding: 14px 18px;
  background: var(--navy-50);
  border: 1px solid var(--slate-200);
  border-left: 3px solid var(--green);
  border-radius: 0 7px 7px 0;
  line-height: 1.45;
}

/* Platform Cross-Team Grid */
.sol-platform-grid {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 700px;
  margin: 0 auto;
}
.sol-platform-item {
  display: grid;
  grid-template-columns: 160px 28px 1fr;
  align-items: center;
  gap: 8px;
  background: var(--slate-50);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 14px 18px;
}
.sol-platform-from { font-size: 13px; font-weight: 700; color: var(--navy); }
.sol-platform-arr { font-size: 16px; color: var(--slate-300); text-align: center; }
.sol-platform-to { font-size: 13px; color: var(--text-secondary); }

/* ============================================================
   Platform Page — How It Works
   ============================================================ */

/* Hero chain strip */
.plc-hero-chain {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.1);
  position: relative;
  z-index: 1;
}
.plc-hc-node {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.65);
  font-size: 12px;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 6px;
  letter-spacing: 0.01em;
}
.plc-hc-top { background: rgba(255,255,255,0.14); border-color: rgba(255,255,255,0.22); color: white; }
.plc-hc-accent { background: rgba(58,170,53,0.18); border-color: rgba(58,170,53,0.35); color: #86efac; }
.plc-hc-final { background: rgba(58,170,53,0.12); border-color: rgba(58,170,53,0.26); color: #bbf7d0; }
.plc-hc-arr { font-size: 14px; color: rgba(255,255,255,0.2); flex-shrink: 0; }

/* Modern Governance two-col */
.plc-gov-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.plc-gov-text .label { display: block; margin-bottom: 14px; }
.plc-gov-text h2 { margin-bottom: 20px; }
.plc-gov-text p { font-size: 15px; color: var(--text-secondary); line-height: 1.75; margin-bottom: 14px; }

.plc-gov-chain {
  display: flex;
  flex-direction: column;
  border-left: 2px solid var(--slate-200);
  padding-left: 24px;
  margin-top: 4px;
}
.plc-fc-item {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
  padding: 11px 0;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.plc-fc-item::before {
  content: '';
  position: absolute;
  left: -29px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: white;
  border: 2px solid var(--slate-300);
  border-radius: 50%;
}
.plc-fc-item strong { color: var(--navy); font-weight: 600; }
.plc-fc-final {
  border-bottom: none;
  color: var(--navy);
}
.plc-fc-final::before { background: var(--green); border-color: var(--green); }

/* Lifecycle Flow Diagram */
.plc-lifecycle-flow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px 24px;
  box-shadow: var(--shadow-md);
  justify-content: center;
}
.plc-lf-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--slate-50);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 14px 14px;
  text-align: center;
  min-width: 96px;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.35;
  flex-shrink: 0;
}
.plc-lf-num {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 5px;
}
.plc-lf-sub {
  font-size: 10px;
  font-weight: 400;
  color: rgba(255,255,255,0.55);
  margin-top: 4px;
  line-height: 1.3;
}
.plc-lf-authority {
  background: var(--navy);
  border-color: var(--navy);
  color: white;
}
.plc-lf-authority .plc-lf-num { color: rgba(255,255,255,0.45); }
.plc-lf-evidence {
  background: rgba(58,170,53,0.09);
  border-color: rgba(58,170,53,0.28);
  color: var(--green-d);
}
.plc-lf-evidence .plc-lf-num { color: rgba(46,140,42,0.55); }
.plc-lf-risk { background: var(--navy-50); border-color: var(--navy-2); }
.plc-lf-final { background: var(--navy-50); border-color: var(--slate-300); }
.plc-lf-arr { font-size: 16px; color: var(--slate-300); flex-shrink: 0; }

/* Supporting entities strip */
.plc-sup {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 24px;
}
.plc-sup-label { font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); }
.plc-sup-badges { display: flex; flex-wrap: wrap; gap: 8px; }
.plc-sup-badge { font-size: 12px; font-weight: 600; color: var(--text-secondary); background: white; border: 1px solid var(--border); border-radius: 4px; padding: 4px 10px; }

/* Two-col layout (platform interior sections) */
.plc-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.plc-col-text .label { display: block; margin-bottom: 14px; }
.plc-col-text h2 { margin-bottom: 20px; }
.plc-col-text p { font-size: 15px; color: var(--text-secondary); line-height: 1.75; margin-bottom: 14px; }
.plc-col-text p:last-child { margin-bottom: 0; }

/* Authority visual card */
.plc-authority-card {
  background: var(--slate-50);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
}
.plc-auth-header { font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 8px; }
.plc-auth-example {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  background: white;
  border: 1px solid var(--border);
  border-radius: 7px;
  padding: 12px 14px;
  line-height: 1.55;
  margin-bottom: 14px;
}
.plc-auth-arrow { text-align: center; font-size: 22px; color: var(--slate-300); margin-bottom: 12px; }
.plc-auth-outputs { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 16px; }
.plc-auth-out {
  background: white;
  border: 1px solid var(--border);
  border-left: 3px solid var(--green);
  border-radius: 6px;
  padding: 10px 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  text-align: center;
}
.plc-auth-note { font-size: 12px; color: var(--text-muted); line-height: 1.55; text-align: center; }

/* Evidence Hub diagram */
.plc-evidence-hub {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}
.plc-ev-center {
  display: inline-block;
  background: var(--navy-2);
  color: white;
  font-size: 15px;
  font-weight: 700;
  padding: 16px 48px;
  border-radius: 10px;
  letter-spacing: -0.01em;
}
.plc-ev-connector {
  width: 2px;
  height: 20px;
  background: var(--slate-200);
  margin: 0 auto;
}
.plc-ev-spokes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  border-top: 2px solid var(--slate-200);
  padding-top: 16px;
}
.plc-ev-spokes--5 {
  grid-template-columns: repeat(3, 1fr);
}
.plc-ev-spoke {
  background: white;
  border: 1px solid var(--border);
  border-radius: 7px;
  padding: 12px 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--navy);
  text-align: center;
}

/* Reuse three-column grid */
.plc-reuse-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 860px;
  margin: 0 auto;
}
.plc-reuse-item {
  background: white;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 24px 20px;
  box-shadow: var(--shadow-sm);
}
.plc-reuse-action {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.35;
}
.plc-reuse-result {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* -- Responsive additions -- */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-once { display: none; }
  .hero-graph { display: none; }
  .hero-rel { display: none; }
  .prose-cols { grid-template-columns: 1fr; gap: 0; }
  .lc-layout { grid-template-columns: 1fr; gap: 48px; }
  .cap-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .reuse-targets { grid-template-columns: 1fr 1fr; }
  .impact-item { grid-template-columns: 1fr 24px 1fr; }
  /* Platform page */
  .plc-gov-layout { grid-template-columns: 1fr; gap: 48px; }
  .plc-two-col { grid-template-columns: 1fr; gap: 48px; }
  .plc-ev-spokes { grid-template-columns: repeat(2, 1fr); }
  .plc-reuse-grid { grid-template-columns: 1fr; }
  .plc-lf-arr { display: none; }
  /* About page */
  .abt-compare { grid-template-columns: 1fr; }
  /* Solutions page */
  .sol-section { grid-template-columns: 1fr; gap: 40px; }
  .sol-section-reverse { direction: ltr; }
  .sol-platform-item { grid-template-columns: 1fr 20px 1fr; }
}
@media (max-width: 600px) {
  .cap-grid { grid-template-columns: 1fr; }
  .impact-item { grid-template-columns: 1fr; gap: 4px; }
  .impact-arrow { display: none; }
  .reuse-targets { grid-template-columns: 1fr 1fr; }
  /* Platform page */
  .plc-hero-chain { display: none; }
  .plc-lf-node { min-width: 80px; font-size: 12px; }
  .plc-auth-outputs { grid-template-columns: 1fr 1fr; }
}

/* -- Scroll Reveal -- */
[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
}
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

/* Stagger delays */
[data-delay="1"] { transition-delay: 0.1s; }
[data-delay="2"] { transition-delay: 0.2s; }
[data-delay="3"] { transition-delay: 0.3s; }
[data-delay="4"] { transition-delay: 0.4s; }
[data-delay="5"] { transition-delay: 0.5s; }

/* -- Responsive -- */
@media (max-width: 768px) {
  :root { --section-gap: 64px; }
  .mob-tog { display: flex; }

  .nav-links {
    display: none;
    position: fixed;
    top: 64px; left: 0; right: 0;
    background: rgba(255,255,255,0.98);
    border-bottom: 1px solid var(--border);
    padding: 12px 16px;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    box-shadow: 0 8px 24px rgba(34,29,82,0.08);
    z-index: 99;
  }
  .nav-links.nav-open { display: flex; }
  .nav-links a { padding: 10px 12px; font-size: 15px; color: var(--text-primary); }
  .nav-cta { display: none; }

  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-screenshot { order: -1; }
  .hero-sub { max-width: 100%; }
  .screenshot-frame { transform: none; }

  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .two-col.wide { grid-template-columns: 1fr; }
  .two-col.reverse { direction: ltr; }

  .outcome-grid { grid-template-columns: 1fr 1fr; }
  .audience-grid { grid-template-columns: 1fr 1fr; }
  .comparison-grid { grid-template-columns: 1fr; }
  .card-grid-3 { grid-template-columns: 1fr; }
  .card-grid-2 { grid-template-columns: 1fr; }
  .spec-grid { grid-template-columns: 1fr 1fr; }
  .module-list { grid-template-columns: 1fr; }

  .foot-top { flex-direction: column; align-items: flex-start; gap: 12px; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .foot-brand { grid-column: 1 / -1; }
  .foot-bottom { flex-direction: column; gap: 12px; text-align: center; }
}

@media (max-width: 500px) {
  .outcome-grid { grid-template-columns: 1fr; }
  .audience-grid { grid-template-columns: 1fr; }
  .spec-grid { grid-template-columns: 1fr 1fr; }
  .foot-grid { grid-template-columns: 1fr; }
  .foot-top { padding-bottom: 32px; margin-bottom: 32px; }
  .framework-grid { grid-template-columns: repeat(auto-fill, minmax(100px, 1fr)); }
}

