/* ============================================================
   Evisent — Wireframe v2 Shared Design System
   Brand colors, typography, layout, components
   ============================================================ */

/* ===== Tokens ===== */
:root {
  --navy: #0B0A1A;
  --navy-2: #161433;
  --navy-3: #1F1D40;
  --yellow: #FFDA1A;
  --yellow-soft: #FFF7C2;
  --paper: #F7F7F4;
  --paper-2: #EFEFEA;
  --cream: #FBFAF6;
  --line: #DCDCD2;
  --line-2: #C4C4B8;
  --ink: #0B0A1A;
  --ink-2: #4A4A55;
  --ink-3: #7A7A85;
  --ink-4: #ACACB5;
  --teal: #1B9D6F;
  --warm: #C7522A;
  --shadow-sm: 0 1px 2px rgba(11,10,26,0.04), 0 1px 3px rgba(11,10,26,0.06);
  --shadow-md: 0 4px 12px rgba(11,10,26,0.06), 0 2px 4px rgba(11,10,26,0.04);
  --shadow-lg: 0 16px 40px rgba(11,10,26,0.10), 0 4px 12px rgba(11,10,26,0.04);
  --container: 1180px;
  --container-narrow: 880px;
}

/* ===== Reset / Base ===== */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'DM Sans', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }

/* ===== Wireframe indicator ===== */
.wf-badge {
  position: fixed; top: 14px; right: 14px; z-index: 200;
  background: var(--ink); color: var(--yellow);
  font-family: 'JetBrains Mono', monospace; font-size: 10px;
  padding: 6px 10px; border-radius: 4px; letter-spacing: 0.06em;
  text-transform: uppercase; box-shadow: var(--shadow-md);
}

/* ===== Layout primitives ===== */
.container { max-width: var(--container); margin: 0 auto; padding: 0 32px; }
.container-narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 32px; }
section { padding: 96px 0; }
section.tight { padding: 64px 0; }
section.compact { padding: 48px 0; }

/* ===== Typography ===== */
h1, h2, h3, h4 { font-family: 'DM Sans', sans-serif; letter-spacing: -0.02em; margin: 0; font-weight: 700; }
h1 { font-size: 64px; line-height: 1.02; letter-spacing: -0.03em; }
h2 { font-size: 44px; line-height: 1.08; }
h3 { font-size: 26px; line-height: 1.2; }
h4 { font-size: 18px; line-height: 1.3; }

.serif { font-family: 'Instrument Serif', serif; font-style: italic; font-weight: 400; letter-spacing: -0.01em; }
.eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-3); margin-bottom: 16px;
}
.eyebrow.on-dark { color: var(--yellow); }
.lede { font-size: 19px; line-height: 1.5; color: var(--ink-2); max-width: 720px; }
.lede.on-dark { color: #C9C8E0; }
.muted { color: var(--ink-3); }
.tiny { font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 0.06em; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 26px; border-radius: 999px; font-weight: 600; font-size: 15px;
  border: none; transition: all 0.18s ease;
  text-decoration: none;
}
.btn .arrow { transition: transform 0.2s ease; display: inline-block; }
.btn:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn:hover .arrow { transform: translateX(3px); }
.btn-primary { background: var(--yellow); color: var(--ink); }
.btn-dark { background: var(--ink); color: white; }
.btn-dark:hover { background: var(--navy-2); }
.btn-ghost-dark { background: transparent; color: white; border: 1px solid rgba(255,255,255,0.3); }
.btn-ghost-light { background: white; color: var(--ink); border: 1px solid var(--line); }
.btn-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--ink); font-weight: 600; font-size: 14px;
}
.btn-link::after { content: "→"; transition: transform 0.2s ease; }
.btn-link:hover::after { transform: translateX(3px); }

/* ===== Nav ===== */
nav.top {
  position: sticky; top: 0; z-index: 100;
  background: rgba(247,247,244,0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
nav.top .nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 32px; max-width: var(--container); margin: 0 auto;
}
.logo {
  font-weight: 800; font-size: 22px; letter-spacing: -0.02em;
  font-family: 'DM Sans', sans-serif;
  display: inline-flex; align-items: center;
}
.logo .dot { color: var(--yellow); }
.logo img { height: 38px; width: auto; display: block; margin-left: -6px; margin-top: -4px; }
footer.main-footer .footer-logo img { height: 44px; margin-left: -6px; }
nav.top ul {
  display: flex; gap: 28px; list-style: none; margin: 0; padding: 0;
  font-size: 14px; font-weight: 500;
}
nav.top ul li a {
  color: var(--ink-2); transition: color 0.15s ease;
  position: relative; padding: 4px 0;
}
nav.top ul li a:hover { color: var(--ink); }
nav.top ul li.active a { color: var(--ink); font-weight: 700; }
nav.top ul li.active a::after {
  content: ""; position: absolute; bottom: -2px; left: 0; right: 0;
  height: 2px; background: var(--yellow); border-radius: 2px;
}
.nav-cta {
  background: var(--ink); color: white; padding: 10px 18px;
  border-radius: 999px; font-size: 14px; font-weight: 600;
  text-decoration: none;
}
.nav-cta-quiz {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--yellow); color: var(--ink);
  padding: 10px 18px; border-radius: 999px;
  font-size: 14px; font-weight: 600; text-decoration: none;
  margin-right: 10px; transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.nav-cta-quiz:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); }
.nav-cta-quiz .dot {
  display: inline-block; width: 7px; height: 7px;
  border-radius: 50%; background: var(--warm);
  animation: pulse 2s infinite;
}
.nav-ctas { display: flex; align-items: center; }

/* ===== Quiz CTA band (homepage) ===== */
.quiz-band {
  background: var(--navy); color: white;
  padding: 80px 0; position: relative; overflow: hidden;
  border-top: 1px solid var(--navy-2);
}
.quiz-band::before {
  content: ""; position: absolute; right: -150px; top: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,218,26,0.10) 0%, transparent 60%);
  pointer-events: none;
}
.quiz-band .container { position: relative; z-index: 2; }
.quiz-band-grid {
  display: grid; grid-template-columns: 1.3fr 1fr; gap: 64px; align-items: center;
}
.quiz-band h2 { color: white; font-size: 38px; margin-bottom: 16px; }
.quiz-band .lede { color: #C9C8E0; margin-bottom: 32px; }
.quiz-band-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
  margin-top: 24px;
}
.quiz-band-stat {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px; padding: 18px;
}
.quiz-band-stat .big {
  color: var(--yellow); font-size: 28px; font-weight: 700; line-height: 1; margin-bottom: 6px;
  font-family: 'JetBrains Mono', monospace; letter-spacing: -0.02em;
}
.quiz-band-stat .label {
  color: #B0AFC8; font-size: 12px; line-height: 1.4;
}
.quiz-visual {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px; padding: 28px;
  position: relative;
}
.quiz-visual-step {
  display: flex; gap: 14px; padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  align-items: center;
}
.quiz-visual-step:last-child { border-bottom: none; }
.quiz-visual-num {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--yellow); color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700; flex-shrink: 0;
  font-family: 'JetBrains Mono', monospace;
}
.quiz-visual-num.muted { background: rgba(255,255,255,0.1); color: #B0AFC8; }
.quiz-visual-text { color: #E5E4ED; font-size: 14px; }
.quiz-visual-text.muted { color: #7A7A85; }

@media (max-width: 720px) {
  .nav-cta-quiz { display: none; }
  .quiz-band-grid { grid-template-columns: 1fr; }
  .quiz-band-stats { grid-template-columns: 1fr; }
  .quiz-band h2 { font-size: 28px; }
}

.mobile-toggle {
  display: none; background: none; border: none; color: var(--ink);
  font-size: 24px; padding: 4px;
}

/* ===== Banner above hero ===== */
.banner-top {
  background: var(--ink); color: white;
  padding: 14px 32px; text-align: center;
  font-size: 14px; font-weight: 500;
  position: relative; overflow: hidden;
}
.banner-top strong { color: var(--yellow); font-weight: 700; }
.banner-top .pulse {
  display: inline-block; width: 8px; height: 8px;
  background: var(--yellow); border-radius: 50%; margin-right: 10px;
  animation: pulse 2s infinite;
  vertical-align: middle;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.85); }
}

/* ===== Hero (dark) ===== */
.hero-dark {
  background: var(--navy); color: white;
  padding: 120px 0 96px;
  position: relative; overflow: hidden;
}
.hero-dark::before {
  content: ""; position: absolute; right: -200px; top: -200px;
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(255,218,26,0.10) 0%, transparent 60%);
  pointer-events: none;
}
.hero-dark::after {
  content: ""; position: absolute; left: -300px; bottom: -300px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(27,157,111,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.hero-dark .container { position: relative; z-index: 2; }
.hero-dark h1 { color: white; max-width: 980px; }
.hero-dark h1 .accent { color: var(--yellow); }
.hero-dark .hero-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 64px; align-items: center; }
.hero-dark .hero-grid h1 { font-size: 56px; }
.hero-image-card {
  border-radius: 24px; overflow: hidden; position: relative;
  aspect-ratio: 4/3; box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,0.08);
}
.hero-image-card img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-image-card::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(11,10,26,0.2), rgba(255,218,26,0.05));
}

/* ===== Hero (light) ===== */
.hero-light {
  background: var(--cream); color: var(--ink);
  padding: 88px 0 72px;
  position: relative; overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.hero-light h1 { max-width: 920px; margin-bottom: 24px; }
.hero-light .hero-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 56px; align-items: center; }

.breadcrumb {
  display: flex; gap: 10px; align-items: center;
  font-size: 13px; color: var(--ink-3); margin-bottom: 32px;
  font-family: 'JetBrains Mono', monospace; letter-spacing: 0.04em;
}
.breadcrumb a { color: var(--ink-3); }
.breadcrumb a:hover { color: var(--ink); }
.breadcrumb .sep { color: var(--ink-4); }

.hero-ctas { display: flex; gap: 16px; margin-top: 36px; flex-wrap: wrap; }

/* ===== Regulatory clock ===== */
.reg-clock {
  margin-top: 72px; padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 28px;
}
.clock-item .date {
  font-family: 'JetBrains Mono', monospace; color: var(--yellow);
  font-size: 13px; letter-spacing: 0.06em; margin-bottom: 8px;
  display: flex; align-items: center; gap: 8px;
}
.clock-item .dot {
  display: inline-block; width: 8px; height: 8px;
  border-radius: 50%; background: var(--yellow);
}
.clock-item h4 { color: white; margin: 0 0 6px; font-size: 16px; font-weight: 600; }
.clock-item p { margin: 0; color: #B0AFC8; font-size: 14px; line-height: 1.5; }

/* ===== Stat bar (yellow) ===== */
.stat-bar {
  background: var(--yellow); color: var(--ink);
  padding: 64px 0; position: relative;
}
.stat-bar .inner {
  display: grid; grid-template-columns: 240px 1fr; gap: 64px;
  align-items: center; max-width: var(--container); margin: 0 auto; padding: 0 32px;
}
.stat-bar .big {
  font-size: 132px; font-weight: 800; line-height: 0.85; letter-spacing: -0.05em;
}
.stat-bar .copy { font-size: 22px; line-height: 1.35; font-weight: 500; }
.stat-bar .copy strong { font-weight: 700; }
.stat-bar .source {
  margin-top: 16px; font-family: 'JetBrains Mono', monospace; font-size: 11px;
  color: var(--navy); opacity: 0.5; letter-spacing: 0.05em;
}

/* ===== Four pillars ===== */
.pillars {
  display: grid; grid-template-columns: 1fr 1fr 1fr 1fr; gap: 20px;
  margin-top: 56px;
}
.pillar {
  background: white; border: 1px solid var(--line); border-radius: 16px;
  padding: 32px 26px; position: relative; transition: all 0.2s ease;
  display: flex; flex-direction: column;
}
.pillar:hover { transform: translateY(-4px); border-color: var(--ink-3); box-shadow: var(--shadow-md); }
.pillar .num {
  font-family: 'JetBrains Mono', monospace; font-size: 11px;
  color: var(--ink-3); letter-spacing: 0.1em; margin-bottom: 18px;
}
.pillar h3 { font-size: 22px; margin-bottom: 12px; }
.pillar p { color: var(--ink-2); margin: 0 0 24px; font-size: 14px; flex-grow: 1; }
.pillar .link { color: var(--ink); font-weight: 600; font-size: 13px;
  display: inline-flex; align-items: center; gap: 6px; }
.pillar .link::after { content: "→"; transition: transform 0.2s ease; }
.pillar:hover .link::after { transform: translateX(3px); }

.pillar.featured-dark {
  background: var(--ink); color: white; border-color: var(--ink);
}
.pillar.featured-dark .num { color: var(--yellow); }
.pillar.featured-dark h3 { color: white; }
.pillar.featured-dark p { color: #B0AFC8; }
.pillar.featured-dark .link { color: var(--yellow); }

.pillar.featured-yellow {
  background: var(--yellow); border-color: var(--yellow);
}
.pillar.featured-yellow .num { color: var(--ink); opacity: 0.6; }

.pillar-icon {
  width: 40px; height: 40px; margin-bottom: 20px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 10px; background: var(--paper-2);
}
.pillar.featured-dark .pillar-icon { background: rgba(255,255,255,0.08); }
.pillar.featured-yellow .pillar-icon { background: rgba(11,10,26,0.1); }
.pillar-icon svg { width: 22px; height: 22px; stroke: var(--ink); stroke-width: 1.8; fill: none; }
.pillar.featured-dark .pillar-icon svg { stroke: var(--yellow); }

/* ===== Quote block ===== */
.quote-section { background: var(--paper-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.quote-block {
  font-family: 'Instrument Serif', serif; font-size: 44px;
  line-height: 1.1; color: var(--ink); font-weight: 400;
  border-left: 3px solid var(--yellow); padding-left: 28px;
  max-width: 900px; margin: 0 auto;
  letter-spacing: -0.01em;
}
.quote-block .em { font-style: italic; }
.quote-attr {
  margin-top: 28px;
  font-family: 'JetBrains Mono', monospace; font-size: 11px;
  color: var(--ink-3); letter-spacing: 0.1em; text-transform: uppercase;
  padding-left: 28px;
}

/* ===== Callout ===== */
.callout {
  background: white; border: 1px solid var(--line); border-radius: 16px;
  border-top: 4px solid var(--yellow);
  padding: 28px 32px; box-shadow: var(--shadow-sm);
  margin: 24px 0;
}
.callout .label {
  font-family: 'JetBrains Mono', monospace; font-size: 11px;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-3);
  margin-bottom: 10px;
}
.callout .body { font-size: 16px; line-height: 1.5; }
.callout.callout-dark {
  background: var(--ink); color: white; border-color: var(--ink);
  border-top-color: var(--yellow);
}
.callout.callout-dark .label { color: var(--yellow); }

/* ===== Cards grid ===== */
.card-grid { display: grid; gap: 24px; }
.card-grid.cols-2 { grid-template-columns: 1fr 1fr; }
.card-grid.cols-3 { grid-template-columns: 1fr 1fr 1fr; }
.card-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: white; border: 1px solid var(--line); border-radius: 16px;
  padding: 32px; transition: all 0.2s ease;
}
.card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.card.card-dark { background: var(--ink); color: white; border-color: var(--ink); }
.card.card-soft { background: var(--paper-2); border-color: var(--line); }

/* ===== SKU cards ===== */
.skus-section { background: var(--ink); color: white; }
.sku-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px; margin-top: 56px; }
.sku {
  background: var(--navy-2); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px; padding: 32px 28px; position: relative;
  display: flex; flex-direction: column;
  transition: all 0.2s ease;
}
.sku:hover { transform: translateY(-4px); border-color: rgba(255,218,26,0.4); }
.sku-tag {
  position: absolute; top: -10px; left: 28px;
  background: var(--yellow); color: var(--ink);
  font-family: 'JetBrains Mono', monospace; font-size: 10px;
  padding: 5px 12px; border-radius: 4px; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase;
}
.sku h3 { color: white; font-size: 22px; margin: 12px 0; }
.sku .what { color: #B0AFC8; font-size: 14px; line-height: 1.55; margin-bottom: 24px; flex-grow: 1; }
.sku .price-line {
  padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.1);
  font-family: 'JetBrains Mono', monospace; font-size: 13px;
}
.sku .price { color: var(--yellow); font-weight: 600; font-size: 17px; display: block; margin-bottom: 4px; }
.sku .price-unit { color: var(--ink-3); }
.sku .link {
  margin-top: 16px; display: inline-flex; align-items: center; gap: 8px;
  color: var(--yellow); font-weight: 600; font-size: 14px;
}
.sku .link::after { content: "→"; transition: transform 0.2s ease; }
.sku:hover .link::after { transform: translateX(3px); }

/* ===== Audience paths ===== */
.paths { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 56px; }
.path {
  border: 1px solid var(--line); border-radius: 16px; padding: 36px 32px;
  background: white; transition: all 0.2s ease;
  display: block; text-decoration: none; color: inherit;
}
.path:hover { transform: translateY(-3px); border-color: var(--ink); box-shadow: var(--shadow-md); }
.path .tag {
  display: inline-block; font-family: 'JetBrains Mono', monospace;
  font-size: 10px; letter-spacing: 0.1em; padding: 5px 12px;
  background: var(--paper-2); border-radius: 4px; margin-bottom: 16px;
  text-transform: uppercase; font-weight: 600;
}
.path h3 { font-size: 24px; margin-bottom: 12px; }
.path p { color: var(--ink-2); margin: 0 0 24px; font-size: 15px; }
.path .next {
  color: var(--ink); font-weight: 600; font-size: 14px;
  display: inline-flex; align-items: center; gap: 8px;
}
.path .next::after { content: "→"; transition: transform 0.2s ease; }
.path:hover .next::after { transform: translateX(3px); }

/* ===== Industries strip ===== */
.industries-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; margin-top: 48px; }
.industry {
  background: white; border: 1px solid var(--line); border-radius: 12px;
  padding: 24px 16px; text-align: center; transition: all 0.2s ease;
  text-decoration: none; color: inherit;
}
.industry:hover { border-color: var(--ink); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.industry .ico {
  width: 36px; height: 36px; margin: 0 auto 14px;
  background: var(--paper-2); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.industry .ico svg { width: 20px; height: 20px; stroke: var(--ink); stroke-width: 1.6; fill: none; }
.industry h4 { margin: 0 0 4px; font-size: 14px; font-weight: 600; }
.industry .reg {
  margin: 0; font-size: 10px; color: var(--ink-3);
  font-family: 'JetBrains Mono', monospace; letter-spacing: 0.04em;
}

/* ===== Trust section ===== */
.trust { background: white; }
.trust-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 64px; align-items: center; }
.reviews-card {
  background: var(--paper-2); border-radius: 16px; padding: 32px;
  border: 1px solid var(--line);
}
.stars { color: var(--yellow); font-size: 22px; letter-spacing: 4px; margin-bottom: 12px; }
.review-headline {
  font-size: 32px; font-weight: 700; letter-spacing: -0.02em; line-height: 1.15;
}
.review-headline .num { color: var(--yellow); }
.review-quote {
  margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--line);
  font-style: italic; color: var(--ink-2); font-size: 15px;
}
.review-attr { margin-top: 8px; font-size: 12px; color: var(--ink-3); }
.framework-list { list-style: none; padding: 0; margin: 28px 0 0; }
.framework-list li {
  display: flex; gap: 14px; padding: 12px 0; align-items: flex-start;
  border-bottom: 1px solid var(--line); font-size: 14px;
}
.framework-list li:last-child { border-bottom: none; }
.framework-list .label {
  flex-shrink: 0; background: var(--paper-2); padding: 5px 10px;
  border-radius: 4px; font-family: 'JetBrains Mono', monospace;
  font-size: 10px; letter-spacing: 0.06em; font-weight: 600;
  white-space: nowrap;
  text-transform: uppercase;
  min-width: 140px; text-align: center;
}
.framework-list .label.pending { background: var(--yellow-soft); }
.framework-list .desc { color: var(--ink-2); }

/* ===== Process steps ===== */
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 48px; position: relative; }
.process-step {
  background: white; border: 1px solid var(--line); border-radius: 14px;
  padding: 28px 24px; position: relative;
}
.process-step .step-num {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--yellow); color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 14px;
  margin-bottom: 16px;
}
.process-step h4 { font-size: 17px; margin-bottom: 8px; }
.process-step p { font-size: 14px; color: var(--ink-2); margin: 0; line-height: 1.5; }

/* ===== Deliverables list ===== */
.deliverables { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.deliverable {
  background: white; border: 1px solid var(--line); border-radius: 14px;
  padding: 24px 24px; display: flex; gap: 18px; align-items: flex-start;
  transition: all 0.2s ease;
}
.deliverable:hover { border-color: var(--ink-3); }
.deliverable .check {
  flex-shrink: 0; width: 32px; height: 32px; border-radius: 50%;
  background: var(--ink); color: var(--yellow);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700; margin-top: 2px;
}
.deliverable h4 { font-size: 16px; margin-bottom: 6px; }
.deliverable p { font-size: 14px; color: var(--ink-2); margin: 0; line-height: 1.5; }

/* ===== Timeline (sprint) ===== */
.timeline {
  margin-top: 56px;
  background: white; border: 1px solid var(--line); border-radius: 16px;
  overflow: hidden;
}
.timeline-row {
  display: grid; grid-template-columns: 80px 1fr 80px;
  padding: 18px 28px; border-bottom: 1px solid var(--line);
  align-items: center; gap: 24px;
  transition: background 0.15s ease;
}
.timeline-row:hover { background: var(--paper-2); }
.timeline-row:last-child { border-bottom: none; }
.timeline-row.week-header {
  background: var(--ink); color: white; padding: 14px 28px;
  font-family: 'JetBrains Mono', monospace; font-size: 11px;
  letter-spacing: 0.1em; text-transform: uppercase;
}
.timeline-row.week-header:hover { background: var(--ink); }
.timeline .day {
  font-family: 'JetBrains Mono', monospace; font-size: 13px;
  font-weight: 600; color: var(--ink); letter-spacing: 0.04em;
}
.timeline .activity { font-size: 14px; color: var(--ink-2); }
.timeline .activity strong { color: var(--ink); font-weight: 600; }
.timeline .hours {
  font-family: 'JetBrains Mono', monospace; font-size: 12px;
  color: var(--ink-3); text-align: right;
}

/* ===== Sample report preview ===== */
.sample-doc {
  background: white; border: 1px solid var(--line); border-radius: 12px;
  padding: 32px; box-shadow: var(--shadow-md);
  position: relative;
}
.sample-doc::before {
  content: "SAMPLE"; position: absolute; top: 20px; right: 20px;
  background: var(--yellow-soft); color: var(--ink);
  font-family: 'JetBrains Mono', monospace; font-size: 10px;
  padding: 4px 8px; border-radius: 4px; font-weight: 600; letter-spacing: 0.08em;
}
.sample-doc h5 {
  font-size: 11px; color: var(--ink-3); letter-spacing: 0.1em;
  text-transform: uppercase; margin: 0 0 6px;
  font-family: 'JetBrains Mono', monospace;
}
.sample-doc .doc-title { font-size: 18px; font-weight: 700; margin-bottom: 24px; }
.sample-doc .doc-section { margin-bottom: 20px; padding-bottom: 16px; border-bottom: 1px solid var(--paper-2); }
.sample-doc .doc-section:last-child { border-bottom: none; margin-bottom: 0; }
.sample-doc .doc-section-label {
  font-size: 11px; color: var(--ink-3); letter-spacing: 0.08em;
  text-transform: uppercase; margin-bottom: 6px; font-family: 'JetBrains Mono', monospace;
}
.sample-doc .doc-line {
  height: 8px; background: var(--paper-2); border-radius: 4px;
  margin-bottom: 6px;
}
.sample-doc .doc-line.w-90 { width: 90%; }
.sample-doc .doc-line.w-75 { width: 75%; }
.sample-doc .doc-line.w-60 { width: 60%; }
.sample-doc .doc-line.w-40 { width: 40%; }
.sample-doc .traffic {
  display: inline-block; width: 10px; height: 10px;
  border-radius: 50%; margin-right: 6px; vertical-align: middle;
}
.sample-doc .traffic.green { background: var(--teal); }
.sample-doc .traffic.amber { background: #E5A23A; }

/* ===== FAQ ===== */
.faq { max-width: 760px; margin: 56px auto 0; }
.faq-item {
  background: white; border: 1px solid var(--line); border-radius: 12px;
  margin-bottom: 12px; overflow: hidden;
}
.faq-question {
  width: 100%; background: none; border: none; padding: 20px 24px;
  text-align: left; font-size: 17px; font-weight: 600; color: var(--ink);
  display: flex; justify-content: space-between; align-items: center;
  font-family: inherit;
}
.faq-question::after { content: "+"; font-size: 22px; color: var(--ink-3); transition: transform 0.2s ease; }
.faq-item.open .faq-question::after { transform: rotate(45deg); color: var(--yellow); }
.faq-answer {
  padding: 0 24px;
  max-height: 0; overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  font-size: 15px; color: var(--ink-2); line-height: 1.6;
}
.faq-item.open .faq-answer { padding: 0 24px 20px; max-height: 500px; }

/* ===== CTA strip ===== */
.cta-strip {
  background: var(--yellow); color: var(--ink);
  text-align: center; padding: 80px 0;
}
.cta-strip h2 { font-size: 44px; max-width: 820px; margin: 0 auto 24px; }
.cta-strip .lede { color: var(--ink-2); margin: 0 auto 36px; }
.cta-strip .btn-row { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 36px; }

/* ===== Bundle details grid ===== */
.bundle-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: start; margin-top: 40px; }
.bundle-list { list-style: none; padding: 0; margin: 28px 0; }
.bundle-list li {
  padding: 16px 0; border-bottom: 1px solid var(--line);
  display: flex; gap: 14px; align-items: flex-start; font-size: 15px;
}
.bundle-list li:last-child { border-bottom: none; }
.bundle-list li .check {
  flex-shrink: 0; width: 22px; height: 22px; border-radius: 50%;
  background: var(--ink); color: var(--yellow);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700; margin-top: 2px;
}
.bundle-list li strong { color: var(--ink); font-weight: 600; }
.bundle-list li .desc { color: var(--ink-2); margin-top: 2px; font-size: 14px; }

/* ===== Pricing card ===== */
.price-card {
  background: var(--ink); color: white; border-radius: 16px;
  padding: 36px 32px; position: relative; overflow: hidden;
  border: 1px solid var(--navy-2);
}
.price-card::before {
  content: ""; position: absolute; top: 0; right: 0;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(255,218,26,0.1) 0%, transparent 70%);
}
.price-card .tier {
  font-family: 'JetBrains Mono', monospace; font-size: 11px;
  color: var(--yellow); letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 16px;
}
.price-card .price-big {
  font-size: 48px; font-weight: 700; color: white; line-height: 1; margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.price-card .price-unit { color: #B0AFC8; font-size: 14px; margin-bottom: 28px; }
.price-card .features { list-style: none; padding: 0; margin: 28px 0 32px; }
.price-card .features li {
  padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 14px; color: #C9C8E0;
}
.price-card .features li:last-child { border-bottom: none; }
.price-card .features li::before { content: "✓ "; color: var(--yellow); margin-right: 8px; }

/* ===== Footer ===== */
footer.main-footer {
  background: var(--ink); color: #B0AFC8; padding: 72px 0 40px;
  font-size: 14px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 56px;
}
footer.main-footer h5 {
  color: white; font-size: 11px; letter-spacing: 0.12em;
  text-transform: uppercase; margin: 0 0 18px;
  font-family: 'JetBrains Mono', monospace; font-weight: 500;
}
footer.main-footer ul { list-style: none; padding: 0; margin: 0; }
footer.main-footer ul li { padding: 6px 0; }
footer.main-footer ul li a:hover { color: white; }
footer.main-footer .footer-logo { color: white; }
.footer-bottom {
  padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; justify-content: space-between; font-size: 12px;
  color: var(--ink-3);
  font-family: 'JetBrains Mono', monospace; letter-spacing: 0.04em;
}

/* ===== Page intros (for non-homepage pages) ===== */
.intro-block { padding: 88px 0 56px; background: var(--cream); border-bottom: 1px solid var(--line); }
.intro-block h1 { margin-bottom: 24px; }

/* ===== Two-column content sections ===== */
.two-col { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 64px; align-items: start; }
.two-col-equal { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }

/* ===== Pillar 4 / how-we-work specific ===== */
.principle-block {
  background: white; border: 1px solid var(--line); border-radius: 16px;
  padding: 36px 40px; margin-bottom: 24px; position: relative;
  overflow: hidden;
}
.principle-block .num-big {
  position: absolute; top: 20px; right: 32px;
  font-size: 96px; font-weight: 800; color: var(--paper-2);
  letter-spacing: -0.05em; line-height: 1;
  font-family: 'DM Sans', sans-serif;
  pointer-events: none;
  user-select: none;
}
.principle-block h3 { font-size: 28px; margin-bottom: 16px; position: relative; }
.principle-block p { font-size: 16px; color: var(--ink-2); line-height: 1.6; max-width: 720px; margin: 0; }
.principle-block ul { list-style: none; padding: 0; margin: 20px 0 0; max-width: 720px; }
.principle-block ul li {
  padding: 10px 0 10px 24px; position: relative; font-size: 15px; color: var(--ink-2);
}
.principle-block ul li::before {
  content: ""; position: absolute; left: 0; top: 18px;
  width: 12px; height: 2px; background: var(--yellow);
}

/* ===== Hero image variants ===== */
.hero-img-block {
  background: var(--navy-2); border-radius: 20px; overflow: hidden;
  aspect-ratio: 4/5; position: relative;
}
.hero-img-block img { width: 100%; height: 100%; object-fit: cover; }
.hero-img-block .overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(11,10,26,0.4));
}
.hero-img-block .badge {
  position: absolute; bottom: 24px; left: 24px;
  background: rgba(11,10,26,0.85); color: white;
  padding: 8px 14px; border-radius: 8px;
  font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 0.08em;
  backdrop-filter: blur(8px);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  h1 { font-size: 48px; }
  .hero-dark .hero-grid h1 { font-size: 44px; }
  h2 { font-size: 36px; }
  section { padding: 72px 0; }
  .pillars { grid-template-columns: 1fr 1fr; }
  .sku-grid, .card-grid.cols-3, .industries-grid { grid-template-columns: 1fr 1fr; }
  .paths, .bundle-grid, .trust-grid, .two-col, .two-col-equal, .hero-dark .hero-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .industries-grid { grid-template-columns: repeat(3, 1fr); }
  .process-steps { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 1024px) {
  .cs-stats-grid { grid-template-columns: 1fr 1fr !important; }
}

/* ===== Tertiary case-study mini button (hero CTA row) ===== */
.btn-cs-mini {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  background: transparent;
  border: 1px solid rgba(255, 218, 26, 0.35);
  color: var(--yellow);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
  white-space: nowrap;
}
.btn-cs-mini:hover {
  background: rgba(255, 218, 26, 0.08);
  border-color: var(--yellow);
  transform: translateY(-1px);
}
.cs-mini-badge {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.12em;
  padding: 3px 7px;
  background: rgba(255, 218, 26, 0.15);
  border-radius: 3px;
  font-weight: 700;
  text-transform: uppercase;
}
.cs-mini-text strong { font-weight: 800; color: white; }
.cs-mini-arrow { transition: transform 0.2s ease; font-weight: 700; }
.btn-cs-mini:hover .cs-mini-arrow { transform: translateX(3px); }

@media (max-width: 720px) {
  .btn-cs-mini { font-size: 12px; padding: 8px 14px; gap: 8px; }
  .cs-mini-badge { display: none; }
}

/* ===== Hero case-study pill (legacy — kept for reuse) ===== */
.cs-hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--yellow);
  color: var(--ink);
  padding: 10px 18px 10px 14px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 28px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 20px rgba(255, 218, 26, 0.18);
  max-width: 100%;
}
.cs-hero-pill:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(255, 218, 26, 0.32);
}
.cs-hero-pill .pill-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--warm);
  animation: pulse 2s infinite;
  flex-shrink: 0;
}
.cs-hero-pill .pill-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--ink);
  padding: 3px 8px;
  background: rgba(11, 10, 26, 0.1);
  border-radius: 4px;
  white-space: nowrap;
}
.cs-hero-pill .pill-text {
  color: var(--ink);
  font-weight: 600;
}
.cs-hero-pill .pill-text strong { font-weight: 800; }
.cs-hero-pill .pill-arrow {
  transition: transform 0.2s ease;
  font-weight: 700;
}
.cs-hero-pill:hover .pill-arrow { transform: translateX(3px); }

@media (max-width: 720px) {
  .cs-hero-pill {
    font-size: 12px;
    padding: 8px 14px 8px 12px;
    gap: 8px;
  }
  .cs-hero-pill .pill-tag { display: none; }
}
@media (max-width: 720px) {
  h1 { font-size: 36px !important; }
  .hero-dark .hero-grid h1 { font-size: 32px; }
  h2 { font-size: 28px !important; }
  section { padding: 56px 0; }
  .container, .container-narrow { padding: 0 20px; }
  nav.top ul { display: none; }
  .mobile-toggle { display: block; }
  .pillars, .sku-grid, .card-grid.cols-3, .card-grid.cols-2, .card-grid.cols-4 { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: 1fr 1fr; }
  .reg-clock { grid-template-columns: 1fr; gap: 20px; }
  .stat-bar .inner { grid-template-columns: 1fr; gap: 16px; }
  .stat-bar .big { font-size: 88px; }
  .timeline-row { grid-template-columns: 60px 1fr; }
  .timeline .hours { display: none; }
  .deliverables { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .quote-block { font-size: 28px; padding-left: 20px; }
  .price-card .price-big { font-size: 36px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; }
  .principle-block .num-big { font-size: 64px; right: 20px; }
}
