/* ==========================================================================
   Grism Technologies — Design System
   ========================================================================== */

:root {
  /* Brand palette */
  --navy-950: #060f1f;
  --navy-900: #0a1a30;
  --navy-800: #0f2540;
  --navy-700: #17355a;
  --navy-600: #204874;

  /* Secondary accent: pink/magenta (from the Grism logo). Kept the
     --teal-* variable names so every existing reference below stays
     pink-themed without needing to touch each usage individually. */
  --teal-600: #c4116a;
  --teal-500: #ec1a6f;
  --teal-400: #f24fa0;
  --teal-100: #fce7f1;

  /* Former gold tier, unified to the single bright accent pink (gold retired) */
  --gold-600: #f24fa0;
  --gold-500: #f24fa0;
  --gold-400: #f24fa0;
  --gold-100: #fce7f1;

  /* Brand mark accent + chart-safe categorical set (navy / pink-dark / pink only) */
  --pink-600: #c4116a;
  --pink-500: #ec1a6f;
  --pink-400: #f24fa0;
  --pink-100: #fce7f1;
  --chart-blue: #2f6fed;
  --chart-teal: #ec1a6f;
  --chart-gold: #c4116a;

  --ink-900: #101826;
  --ink-700: #33404f;
  --ink-500: #5b6b7d;
  --ink-300: #93a2b3;

  --bg: #ffffff;
  --bg-alt: #f6f8fb;
  --bg-navy-mist: #eef2f7;
  --border: #e3e8f0;
  --border-dark: #24334c;

  /* Card accent tints (navy / gold / pink pairings only) */
  --tint-lavender: #eaf4fb;
  --tint-mint: #fdecef;
  --tint-cream: #fdf6e3;
  --tint-blush: #fdecef;
  --tint-sky: #eaf4fb;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;

  --shadow-sm: 0 1px 2px rgba(10, 26, 48, 0.06), 0 1px 1px rgba(10, 26, 48, 0.04);
  --shadow-md: 0 8px 24px rgba(10, 26, 48, 0.08);
  --shadow-lg: 0 20px 48px rgba(10, 26, 48, 0.14);

  --container: 1180px;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body, h1, h2, h3, h4, p, figure, blockquote, dl, dd, ul, ol { margin: 0; }
ul[class], ol[class] { padding: 0; list-style: none; }
img, picture, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
input, textarea, select { font: inherit; }

body {
  font-family: var(--font-sans);
  color: var(--ink-700);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
  overflow-x: hidden;
}

h1, h2, h3, h4 { color: var(--navy-900); font-weight: 700; letter-spacing: -0.01em; line-height: 1.15; }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}

section { position: relative; }

/* ---- Utility type styles ---- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-500);
}
.eyebrow.on-dark { color: var(--gold-400); }

.section-head { max-width: 860px; margin-bottom: 48px; }
.section-head h2 { font-size: clamp(1.6rem, 2.4vw, 2.3rem); margin-block: 14px 14px; }
.section-head p { color: var(--ink-500); font-size: 1.05rem; }
.section-head.center { margin-inline: auto; text-align: center; }

.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  background: var(--tint-mint);
  color: var(--teal-600);
  border: 1px solid rgba(13, 143, 138, 0.18);
}
.pill.gold { background: var(--gold-100); color: var(--gold-600); border-color: rgba(242,79,160,0.3); }
.pill.navy { background: var(--bg-navy-mist); color: var(--navy-700); border-color: var(--border); }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 26px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color .15s ease, border-color .15s ease;
  white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; flex-shrink: 0; transition: transform .2s ease; }
.btn:hover svg { transform: translateX(3px); }
.btn-primary {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-600));
  color: #fff;
  box-shadow: 0 8px 20px rgba(242, 79, 160, 0.28);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(242, 79, 160, 0.38); }
.btn-outline {
  background: transparent;
  border-color: rgba(255,255,255,0.35);
  color: #fff;
}
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: #fff; }
.btn-outline-navy {
  background: transparent;
  border-color: var(--border-dark);
  color: var(--navy-900);
  border-color: var(--navy-700);
}
.btn-outline-navy:hover { background: var(--navy-900); color: #fff; }
.btn-block { width: 100%; }
.btn-sm { padding: 9px 18px; font-size: 0.85rem; }

/* ==========================================================================
   Header / Nav
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: linear-gradient(180deg, rgba(11, 23, 44, 0.94), rgba(6, 15, 31, 0.94));
  box-shadow: 0 14px 34px -18px rgba(0,0,0,0.55);
}
/* backdrop-filter lives on a pseudo-element rather than .site-header itself —
   filter/backdrop-filter on an ancestor creates a new containing block for
   position:fixed descendants, which broke the fixed-position mobile nav panel. */
.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}
.brand {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 5px;
  color: #fff;
}
.brand .logo-icon { height: 52px; width: auto; display: block; }
.brand .logo-text-group { display: flex; flex-direction: column; align-items: center; justify-content: center; line-height: 1; }
.brand .logo-word { font-family: 'Orbitron', var(--font-sans); font-size: 1.5rem; font-weight: 900; letter-spacing: -0.03em; color: #fff; }
.brand .logo-tagline { font-size: 0.56rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--gold-400); margin-top: 4px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 999px;
  padding: 5px;
}
.nav-links a {
  position: relative;
  color: rgba(255,255,255,0.85);
  font-size: 0.92rem;
  font-weight: 700;
  padding: 9px 18px;
  border-radius: 999px;
  transition: color 0.15s ease, background 0.15s ease;
}
.nav-links a:hover { color: #fff; background: rgba(255,255,255,0.08); }
.nav-links a.active { color: var(--navy-950); background: var(--gold-500); }
@media (max-width: 900px) {
  .nav-links { background: none; border: none; border-radius: 0; padding: 0; }
  .nav-links a.active { color: #fff; background: rgba(236,26,111,0.14); }
}
.nav-right { display: flex; align-items: center; gap: 18px; }
.nav-cta-mobile { display: none; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.nav-toggle svg { width: 22px; height: 22px; }

@media (max-width: 900px) {
  .nav-links { position: fixed; top: 84px; left: 0; right: 0; bottom: 0; background: var(--navy-950); flex-direction: column; align-items: stretch; padding: 12px; gap: 4px; transform: translateX(100%); transition: transform .25s ease; overflow-y: auto; }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { padding: 16px 18px; font-size: 1.05rem; border-bottom: 1px solid rgba(255,255,255,0.06); border-radius: 0; }
  .nav-right .btn-primary { display: none; }
  .nav-links.open .nav-cta-mobile { display: flex; margin-top: 12px; }
  .nav-toggle { display: inline-flex; }
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  background: radial-gradient(1200px 600px at 85% -10%, #123554 0%, transparent 55%),
              linear-gradient(160deg, var(--navy-950) 0%, var(--navy-900) 45%, var(--navy-800) 100%);
  color: #fff;
  padding: 96px 0 80px;
  overflow: hidden;
}
.hero-network {
  position: absolute;
  inset: 0;
  opacity: 0.5;
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero h1 {
  color: #fff;
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  margin-block: 20px 22px;
}
.hero h1 .accent { color: var(--gold-400); }
.hero-tagline {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--pink-400);
  margin-bottom: 16px;
}
.hero p.lead {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.75);
  max-width: 560px;
  margin-bottom: 34px;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 380px;
}

/* Orbital hero infographic */
.hero-orbit { position: relative; width: 100%; max-width: 380px; aspect-ratio: 1; margin-inline: auto; }
.hero-orbit svg.orbit-bg { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; }
.hero-orbit .ring-rotate { animation: orbit-spin 50s linear infinite; transform-origin: 160px 160px; }
@keyframes orbit-spin { to { transform: rotate(360deg); } }
.hero-orbit .flow-line { stroke-dasharray: 5 7; animation: orbit-flow 2.4s linear infinite; }
@keyframes orbit-flow { to { stroke-dashoffset: -24; } }
.orbit-center {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 78px; height: 78px; border-radius: 50%;
  background: #ffffff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 50px rgba(236, 26, 111, 0.35), 0 0 0 1px rgba(255,255,255,0.12);
}
.orbit-center svg, .orbit-center img { width: 34px; height: 34px; }
.orbit-node {
  position: absolute; display: flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.07); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.16); padding: 9px 16px; border-radius: 999px;
  color: #fff; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.02em; white-space: nowrap;
  box-shadow: 0 8px 20px rgba(6,15,31,0.35);
}
.orbit-node .dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.orbit-node.n-ai { top: 8%; left: 50%; transform: translateX(-50%); }
.orbit-node.n-compliance { bottom: 16%; right: 0%; }
.orbit-node.n-security { bottom: 16%; left: 0%; }
@media (max-width: 520px) {
  .orbit-node { font-size: 0.7rem; padding: 7px 12px; }
}

.stat-strip {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.stat-strip .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  transform: translateY(-46px);
  margin-bottom: -46px;
}
.stat-card {
  background: #fff;
  border: 1px solid var(--border);
  padding: 26px 22px;
  text-align: center;
  box-shadow: var(--shadow-md);
}
.stat-card:first-child { border-radius: var(--radius-md) 0 0 var(--radius-md); }
.stat-card:last-child { border-radius: 0 var(--radius-md) var(--radius-md) 0; }
.stat-card + .stat-card { border-left: none; }
.stat-card .num { font-size: clamp(1.6rem, 2.6vw, 2.2rem); font-weight: 800; color: var(--navy-900); }
.stat-card .label { font-size: 0.85rem; color: var(--ink-500); margin-top: 6px; }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { min-height: 240px; order: -1; }
  .stat-strip .container { grid-template-columns: repeat(2, 1fr); transform: none; margin-bottom: 0; gap: 12px; padding-block: 28px; }
  .stat-card, .stat-card:first-child, .stat-card:last-child { border-radius: var(--radius-md); border: 1px solid var(--border); }
}

/* ==========================================================================
   Generic sections
   ========================================================================== */
.section { padding: 96px 0; }
.section.tight { padding: 64px 0; }
.section.alt { background: var(--bg-alt); }
.section.navy {
  background: linear-gradient(160deg, var(--navy-950), var(--navy-800));
  color: rgba(255,255,255,0.85);
}
.section.navy h2, .section.navy h3 { color: #fff; }
.section.navy .section-head p { color: rgba(255,255,255,0.6); }

/* Pillars (3 services) */
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pillar-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 34px 30px;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.pillar-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.pillar-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
}
.pillar-icon svg { width: 28px; height: 28px; }
.pillar-card.cyber .pillar-icon { background: var(--tint-sky); color: var(--navy-700); }
.pillar-card.ai .pillar-icon { background: var(--tint-mint); color: var(--teal-600); }
.pillar-card.compliance .pillar-icon { background: var(--tint-cream); color: var(--gold-600); }
.pillar-card h3 { font-size: 1.35rem; margin-bottom: 12px; }
.pillar-card p { color: var(--ink-500); flex-grow: 1; margin-bottom: 20px; }
.pillar-card .tag-row { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; }
.tag { font-size: 0.76rem; font-weight: 600; padding: 5px 10px; border-radius: 999px; background: var(--bg-alt); color: var(--ink-500); border: 1px solid var(--border); }
.pillar-card .go-link { display: inline-flex; align-items: center; gap: 6px; font-weight: 700; font-size: 0.92rem; color: var(--navy-900); }
.pillar-card .go-link svg { width: 15px; height: 15px; transition: transform .2s ease; }
.pillar-card:hover .go-link svg { transform: translateX(4px); }

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

/* Track cards (Executive / Practitioner / Technical) — reused across pages */
.track-list { display: flex; flex-direction: column; gap: 20px; }
.track-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fff;
}
.track-head {
  display: flex; align-items: center; gap: 14px;
  padding: 22px 28px;
  border-bottom: 1px solid var(--border);
}
.track-head .t-icon { width: 42px; height: 42px; border-radius: 11px; display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.track-head .t-icon svg { width: 22px; height: 22px; }
.track-head h3 { font-size: 1.15rem; margin-bottom: 2px; }
.track-head p { font-size: 0.9rem; color: var(--ink-500); margin: 0; }
.track-card.executive .t-icon { background: var(--tint-lavender); color: var(--navy-700); }
.track-card.practitioner .t-icon { background: var(--tint-cream); color: var(--gold-600); }
.track-card.technical .t-icon { background: var(--tint-mint); color: var(--teal-600); }
.track-card.industry .t-icon { background: var(--tint-sky); color: var(--navy-700); }
.track-card.advanced .t-icon { background: var(--tint-blush); color: var(--pink-600); }

/* Insight / stat callout cards (colored, brochure-style) */
.insight-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.insight-card { padding: 26px 28px; border-radius: var(--radius-md); }
.insight-card .num { font-size: 2rem; font-weight: 800; color: var(--navy-900); line-height:1; }
.insight-card p { color: var(--ink-700); font-size: 0.94rem; margin-top: 10px; }
.insight-card .src { font-size: 0.78rem; color: var(--ink-500); font-style: italic; margin-top: 10px; display: block; }
.insight-card.c1 { background: var(--tint-cream); }
.insight-card.c2 { background: var(--tint-sky); }
.insight-card.c3 { background: var(--tint-mint); }
.insight-card.c4 { background: var(--tint-lavender); }
@media (max-width: 700px) { .insight-grid { grid-template-columns: 1fr; } }


.course-grid { display: flex; flex-wrap: wrap; gap: 1px; background: var(--border); }
.course-item { background: #fff; padding: 22px 24px; flex: 1 1 260px; }
.course-item h4 { font-size: 1rem; margin-bottom: 8px; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.course-item p { font-size: 0.88rem; color: var(--ink-500); }
.flag { font-size: 0.62rem; font-weight: 800; letter-spacing: 0.06em; background: var(--gold-500); color: var(--navy-950); padding: 3px 8px; border-radius: 999px; }

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

/* Feature list (icon + text rows) */
.feature-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.feature-card {
  padding: 26px;
  border-radius: var(--radius-md);
  border-top: 3px solid var(--teal-500);
  background: var(--bg-alt);
}
.feature-card .f-icon { width: 42px; height: 42px; border-radius: 11px; background: #fff; box-shadow: var(--shadow-sm); display:flex; align-items:center; justify-content:center; margin-bottom: 16px; color: var(--navy-800); }
.feature-card .f-icon svg { width: 22px; height: 22px; }
.feature-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.feature-card p { color: var(--ink-500); font-size: 0.94rem; }
.feature-card:nth-child(6n+1) { border-color: var(--navy-600); }
.feature-card:nth-child(6n+2) { border-color: var(--gold-500); }
.feature-card:nth-child(6n+3) { border-color: var(--pink-500); }
.feature-card:nth-child(6n+4) { border-color: var(--navy-600); }
.feature-card:nth-child(6n+5) { border-color: var(--gold-500); }
.feature-card:nth-child(6n+6) { border-color: var(--pink-500); }

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

/* Framework / logo chips (compliance regulators, credentials) */
.chip-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.chip-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: center;
  background: #fff;
}
.chip-card .abbr { font-size: 1.25rem; font-weight: 800; color: var(--navy-900); }
.chip-card .full { font-size: 0.8rem; color: var(--ink-500); margin-top: 4px; }
@media (max-width: 760px) { .chip-grid { grid-template-columns: repeat(2, 1fr); } }

/* Credential table */
.cred-table { width: 100%; border-collapse: collapse; border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; }
.cred-table th, .cred-table td { text-align: left; padding: 18px 20px; border-bottom: 1px solid var(--border); vertical-align: top; }
.cred-table th { background: var(--navy-900); color: #fff; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.06em; }
.cred-table tr:last-child td { border-bottom: none; }
.cred-table td.cred-name { font-weight: 700; color: var(--navy-900); white-space: nowrap; }
.cred-table td .badge { display:inline-block; font-size: 0.72rem; font-weight: 700; padding: 3px 9px; border-radius: 6px; margin-bottom: 6px; }
.badge.adopt { background: var(--tint-lavender); color: var(--navy-700); }
.badge.defend { background: var(--tint-mint); color: var(--teal-600); }
.badge.govern { background: var(--gold-100); color: var(--gold-600); }
.cred-table-wrap { overflow-x: auto; border-radius: var(--radius-md); }
.cred-table-wrap .cred-table { min-width: 640px; }

/* Timeline / process steps */
.step-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; counter-reset: step; }
.step-card { position: relative; padding: 30px 22px 22px; border: 1px solid var(--border); border-radius: var(--radius-md); background: #fff; }
.step-card::before {
  counter-increment: step;
  content: counter(step);
  position: absolute; top: -16px; left: 22px;
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--navy-900); color: #fff;
  font-weight: 800; font-size: 0.9rem;
  display: flex; align-items: center; justify-content: center;
}
.step-card h4 { font-size: 1rem; margin: 10px 0 8px; }
.step-card p { font-size: 0.88rem; color: var(--ink-500); }
@media (max-width: 900px) { .step-row { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .step-row { grid-template-columns: 1fr; } }

/* Engagement model cards */
.engage-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.engage-card { border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 30px; background: #fff; display:flex; flex-direction:column; }
.engage-card.featured { background: linear-gradient(160deg, var(--navy-950), var(--navy-800)); color: rgba(255,255,255,0.85); border-color: transparent; }
.engage-card.featured h3, .engage-card.featured .engage-tagline { color: #fff; }
.engage-card h3 { font-size: 1.2rem; margin-bottom: 4px; }
.engage-tagline { font-size: 0.88rem; color: var(--ink-500); font-style: italic; margin-bottom: 18px; }
.engage-card ul { display: flex; flex-direction: column; gap: 10px; margin-top: auto; padding-top: 6px; }
.engage-card li { display: flex; gap: 10px; font-size: 0.92rem; align-items: flex-start; }
.engage-card li svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; color: var(--teal-500); }
.engage-card.featured li svg { color: var(--gold-400); }
@media (max-width: 980px) { .engage-grid { grid-template-columns: 1fr; } }

/* CTA banner */
.cta-banner {
  background: linear-gradient(135deg, var(--navy-950) 0%, var(--navy-800) 60%, var(--teal-600) 130%);
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  text-align: center;
  color: #fff;
}
.cta-banner h2 { color: #fff; font-size: clamp(1.5rem, 2.6vw, 2rem); margin-bottom: 14px; }
.cta-banner p { color: rgba(255,255,255,0.7); max-width: 560px; margin-inline: auto; margin-bottom: 26px; }
.cta-banner .hero-ctas { justify-content: center; }

/* Two column media/text */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split.reverse .split-media { order: 2; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; gap: 32px; } .split.reverse .split-media { order: 0; } }

.check-list { display: flex; flex-direction: column; gap: 14px; margin-top: 22px; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 0.98rem; color: var(--ink-700); }
.check-list li svg { width: 20px; height: 20px; color: var(--teal-600); flex-shrink: 0; margin-top: 2px; }

.media-card {
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, var(--navy-900), var(--navy-700));
  padding: 40px;
  color: #fff;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

/* Logic bar (colored top border) */
.top-bar { height: 4px; background: linear-gradient(90deg, var(--navy-700), var(--teal-500), var(--gold-500)); }

/* Breadcrumb / page hero (secondary pages) */
.page-hero {
  background: linear-gradient(160deg, var(--navy-950) 0%, var(--navy-900) 55%, var(--navy-800) 100%);
  color: #fff;
  padding: 72px 0 64px;
}
.page-hero .eyebrow { margin-bottom: 16px; }
.page-hero h1 { color: #fff; font-size: clamp(2rem, 3.6vw, 2.9rem); margin-bottom: 16px; }
.page-hero p.lead { color: rgba(255,255,255,0.72); max-width: 620px; font-size: 1.08rem; }
.page-hero .hero-ctas { margin-top: 28px; }

/* Quote / testimonial-ish callout */
.callout {
  border-left: 4px solid var(--gold-500);
  background: var(--tint-cream);
  padding: 24px 28px;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}
.callout p { font-size: 1rem; color: var(--ink-700); }
.callout p strong { color: var(--navy-900); }

/* ==========================================================================
   Forms
   ========================================================================== */
.form-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow-md); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-size: 0.86rem; font-weight: 600; color: var(--navy-800); }
.form-field input, .form-field select, .form-field textarea {
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 9px;
  background: var(--bg-alt);
  color: var(--ink-900);
  transition: border-color .15s ease, background .15s ease;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none; border-color: var(--teal-500); background: #fff;
}
.form-field textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: 0.82rem; color: var(--ink-300); margin-top: 14px; }
.form-success { display: none; padding: 18px 20px; border-radius: var(--radius-md); background: var(--tint-mint); color: var(--teal-600); font-weight: 600; margin-bottom: 20px; }
.form-success.show { display: block; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } .form-card { padding: 26px; } }

/* Contact info cards */
.contact-info-grid { display: grid; grid-template-columns: repeat(2,1fr); max-width: 560px; gap: 20px; margin-bottom: 20px; }
.contact-info-card { background: var(--bg-alt); border-radius: var(--radius-md); padding: 24px; }
.contact-info-card .ci-icon { width: 38px; height: 38px; border-radius: 10px; background: #fff; box-shadow: var(--shadow-sm); display:flex; align-items:center; justify-content:center; margin-bottom: 14px; color: var(--teal-600);}
.contact-info-card .ci-icon svg { width: 20px; height: 20px; }
.contact-info-card h4 { font-size: 0.95rem; margin-bottom: 6px; }
.contact-info-card p, .contact-info-card a { font-size: 0.9rem; color: var(--ink-500); }
@media (max-width: 760px) { .contact-info-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--navy-950); color: rgba(255,255,255,0.6); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.3fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-brand p { margin-top: 16px; font-size: 0.92rem; max-width: 320px; color: rgba(255,255,255,0.5); }
.footer-tagline { margin-top: 10px !important; font-size: 0.8rem !important; font-weight: 700; letter-spacing: 0.06em; color: var(--pink-400) !important; max-width: none !important; }
.footer-col h5 { color: #fff; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 18px; }
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a { font-size: 0.92rem; color: rgba(255,255,255,0.55); transition: color .15s ease; }
.footer-col a:hover { color: #fff; }
.footer-col .contact-line { display: flex; gap: 10px; font-size: 0.9rem; align-items: flex-start; }
.footer-col .contact-line svg { width: 17px; height: 17px; flex-shrink: 0; margin-top: 3px; color: var(--teal-400); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding: 22px 0; font-size: 0.82rem; flex-wrap: wrap; gap: 12px; }
.footer-bottom .legal-links { display: flex; gap: 20px; }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social a { width: 36px; height: 36px; border-radius: 9px; background: rgba(255,255,255,0.06); display:flex; align-items:center; justify-content:center; }
.footer-social a:hover { background: rgba(255,255,255,0.14); }
.footer-social svg { width: 16px; height: 16px; }

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Misc / animation
   ========================================================================== */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

.badge-strip { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }

@media (max-width: 700px) {
  .section { padding: 64px 0; }
  .split { gap: 28px; }
}

/* ==========================================================================
   Charts & infographics
   ========================================================================== */

/* Percentage bar chart (single axis, categorical fixed order) */
.bar-chart { display: flex; flex-direction: column; gap: 18px; }
.bar-row { display: grid; grid-template-columns: 200px 1fr 64px; align-items: center; gap: 16px; }
.bar-row .bar-label { font-size: 0.92rem; font-weight: 600; color: var(--navy-800); }
.bar-row .bar-track { height: 14px; border-radius: 999px; background: var(--bg-alt); overflow: hidden; }
.bar-row .bar-fill { height: 100%; border-radius: 999px; animation: bar-grow 1.1s ease-out; }
.bar-row .bar-value { font-size: 0.95rem; font-weight: 800; color: var(--navy-900); text-align: right; }
@keyframes bar-grow { from { width: 0 !important; } }
@media (max-width: 640px) {
  .bar-row { grid-template-columns: 1fr; gap: 6px; }
  .bar-row .bar-value { text-align: left; }
}

/* Donut / radial headline chart */
.donut-wrap { display: flex; align-items: center; gap: 24px; }
.donut-chart { width: 132px; height: 132px; flex-shrink: 0; }
.donut-chart .track { fill: none; stroke: var(--bg-alt); stroke-width: 14; }
.donut-chart .fill { fill: none; stroke-width: 14; stroke-linecap: round; transform: rotate(-90deg); transform-origin: 50% 50%; }
.donut-chart text { font-family: var(--font-sans); font-weight: 800; fill: var(--navy-900); }
.donut-caption h4 { font-size: 1.05rem; margin-bottom: 6px; }
.donut-caption p { font-size: 0.92rem; color: var(--ink-500); }
.donut-caption .src { font-size: 0.78rem; color: var(--ink-300); font-style: italic; display: block; margin-top: 6px; }

/* Executive -> Practitioner -> Technical flow infographic */
.flow-diagram { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; align-items: stretch; gap: 0; }
.flow-step { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-md); padding: 24px 20px; text-align: center; }
.flow-step .flow-icon { width: 48px; height: 48px; border-radius: 12px; margin: 0 auto 14px; display: flex; align-items: center; justify-content: center; }
.flow-step .flow-icon svg { width: 24px; height: 24px; }
.flow-step:nth-child(1) .flow-icon { background: var(--tint-lavender); color: var(--navy-700); }
.flow-step:nth-child(3) .flow-icon { background: var(--tint-cream); color: var(--gold-600); }
.flow-step:nth-child(5) .flow-icon { background: var(--tint-mint); color: var(--teal-600); }
.flow-step h4 { font-size: 1rem; margin-bottom: 6px; }
.flow-step p { font-size: 0.86rem; color: var(--ink-500); }
.flow-arrow { display: flex; align-items: center; justify-content: center; padding-inline: 10px; color: var(--ink-300); }
.flow-arrow svg { width: 22px; height: 22px; }
@media (max-width: 860px) {
  .flow-diagram { grid-template-columns: 1fr; gap: 14px; }
  .flow-arrow { transform: rotate(90deg); padding-block: 2px; }
}

/* Adopt / Defend / Govern lifecycle infographic */
.lifecycle-ring { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; position: relative; }
.lifecycle-stage { position: relative; background: #fff; border-radius: var(--radius-lg); padding: 28px 24px; border-top: 4px solid; }
.lifecycle-stage .stage-num { position: absolute; top: -16px; right: 20px; width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 0.85rem; color: #fff; }
.lifecycle-stage.adopt { border-color: var(--chart-blue); }
.lifecycle-stage.adopt .stage-num { background: var(--chart-blue); }
.lifecycle-stage.defend { border-color: var(--chart-teal); }
.lifecycle-stage.defend .stage-num { background: var(--chart-teal); }
.lifecycle-stage.govern { border-color: var(--chart-gold); }
.lifecycle-stage.govern .stage-num { background: var(--chart-gold); }
.lifecycle-stage h4 { font-size: 1.1rem; margin-bottom: 6px; }
.lifecycle-stage .stage-tag { font-size: 0.76rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-300); }
.lifecycle-stage p { font-size: 0.9rem; color: var(--ink-500); margin-top: 10px; }
@media (max-width: 860px) { .lifecycle-ring { grid-template-columns: 1fr; } }

::selection { background: var(--gold-400); color: var(--navy-950); }

/* ==========================================================================
   Insights / Articles
   ========================================================================== */
.insight-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 28px; }
.insight-teaser { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-md); padding: 28px; display: flex; flex-direction: column; box-shadow: var(--shadow-sm); }
.insight-teaser .tag-row { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 14px; }
.insight-teaser h3 { font-size: 1.2rem; margin-bottom: 10px; }
.insight-teaser p { color: var(--ink-500); font-size: 0.96rem; flex-grow: 1; }
.insight-teaser .go-link { margin-top: 18px; display: inline-flex; align-items: center; gap: 6px; font-weight: 700; font-size: 0.92rem; color: var(--navy-900); }
.insight-teaser .go-link svg { width: 16px; height: 16px; }

.article-meta { display: flex; gap: 14px; flex-wrap: wrap; font-size: 0.85rem; color: rgba(255,255,255,0.6); margin-bottom: 16px; }
.article-body { max-width: 760px; }
.article-body h2 { font-size: clamp(1.3rem, 2vw, 1.7rem); margin-top: 44px; margin-bottom: 16px; }
.article-body h2:first-child { margin-top: 0; }
.article-body h3 { font-size: 1.15rem; margin-top: 30px; margin-bottom: 12px; }
.article-body p { color: var(--ink-700); font-size: 1.03rem; margin-bottom: 18px; }
.article-body ul { padding-left: 22px; list-style: disc; margin-bottom: 18px; }
.article-body li { color: var(--ink-700); font-size: 1.03rem; margin-bottom: 8px; }
.article-body .callout { margin: 32px 0; }
.article-body a { color: var(--pink-600); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }
.article-foot { margin-top: 48px; padding-top: 28px; border-top: 1px solid var(--border); }

/* ==========================================================================
   Trusted-by wordmark strip
   ========================================================================== */
.trusted-strip { padding: 44px 0; border-bottom: 1px solid var(--border); }
.trusted-strip .trusted-label { text-align: center; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold-500); margin-bottom: 24px; }
.trusted-marquee {
  overflow: hidden;
  width: 100%;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.trusted-track {
  display: flex;
  align-items: center;
  gap: 56px;
  width: max-content;
  animation: trusted-scroll 26s linear infinite;
}
.trusted-track:hover { animation-play-state: paused; }
.trusted-mark { font-size: 1.35rem; font-weight: 800; color: var(--ink-700); letter-spacing: 0.01em; white-space: nowrap; }
@keyframes trusted-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (max-width: 700px) { .trusted-track { gap: 36px; } .trusted-mark { font-size: 1.1rem; } }
@media (prefers-reduced-motion: reduce) { .trusted-track { animation: none; } }
