/* ====================================================
 * BIMAssess Theme Stylesheet
 * Merged from: index, individual, business, catalogue, pricing
 * ==================================================== */
/* ── DESIGN TOKENS ──────────────────────────── */
  :root {
    --bg:        #FAFAF7;
    --bg-warm:   #F2F1EC;
    --bg-card:   #FFFFFF;
    --ink:       #0A0A0A;
    --ink-2:     #2A2A2A;
    --muted:     #6B6B6B;
    --muted-2:   #9A9A95;
    --line:      rgba(10,10,10,0.08);
    --line-2:    rgba(10,10,10,0.14);
    --accent:    #0139B7;
    --accent-d:  #0139B7;
    --accent-l:  #ECEFFE;
    --radius:    10px;
    --radius-lg: 16px;
    --maxw:      1240px;
    --pad-x:     2rem;
  }

* { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    font-family: 'Space Grotesk', -apple-system, sans-serif;
    font-weight: 400;
    background: var(--bg);
    color: var(--ink);
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
  }

.mono { font-family: 'Space Mono', ui-monospace, monospace; }

.container {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 var(--pad-x);
  }

/* ── NAV ─────────────────────────────────────── */
  nav.site-nav {
    position: sticky; top: 0; z-index: 100;
    background: rgba(250,250,247,0.85);
    backdrop-filter: saturate(180%) blur(14px);
    -webkit-backdrop-filter: saturate(180%) blur(14px);
    border-bottom: 1px solid var(--line);
  }
  .nav-inner {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 var(--pad-x);
    height: 64px;
    display: flex; align-items: center; justify-content: space-between;
  }
  .nav-logo {
    font-weight: 600; font-size: 17px; letter-spacing: -0.01em;
    color: var(--ink); text-decoration: none;
    display: flex; align-items: center; gap: 8px;
  }
  .nav-logo::before {
    content: ''; width: 18px; height: 18px;
    background: var(--ink);
    border-radius: 4px;
    mask: radial-gradient(circle at 30% 30%, transparent 0 4px, #000 5px);
    -webkit-mask: radial-gradient(circle at 30% 30%, transparent 0 4px, #000 5px);
  }
  .nav-links {
    display: flex; align-items: center; gap: 28px;
    list-style: none;
  }
  .nav-links a {
    font-size: 14px; color: var(--muted); text-decoration: none;
    transition: color .15s;
  }
  .nav-links a:hover { color: var(--ink); }
  .nav-cta-group { display: flex; align-items: center; gap: 14px; }
  .nav-cta-group a.login {
    font-size: 14px; color: var(--muted); text-decoration: none;
  }
  .nav-cta-group a.login:hover { color: var(--ink); }

/* ── BUTTONS ─────────────────────────────────── */
  .btn {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 10px 18px;
    font-family: inherit; font-size: 14px; font-weight: 500;
    border-radius: 8px; border: none;
    text-decoration: none; cursor: pointer;
    transition: all .15s ease;
  }
  .btn-primary {
    background: var(--ink); color: var(--bg);
  }
  .btn-primary:hover { background: var(--ink-2); transform: translateY(-1px); }
  .btn-ghost {
    background: transparent; color: var(--ink);
    border: 1px solid var(--line-2);
  }
  .btn-ghost:hover { background: var(--bg-warm); }
  .btn-link {
    background: none; color: var(--ink);
    padding: 0; font-size: 14px; font-weight: 500;
  }
  .btn-link:hover { color: var(--accent); }

/* ── HERO ────────────────────────────────────── */
  .hero {
    padding: 5rem 0 3rem;
    border-bottom: 1px solid var(--line);
  }
  .hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 4rem;
    align-items: center;
  }
  .eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: 'Space Mono', monospace;
    font-size: 11px; font-weight: 500;
    text-transform: uppercase; letter-spacing: 0.08em;
    color: var(--muted);
    margin-bottom: 1.4rem;
  }
  .eyebrow::before {
    content: ''; width: 6px; height: 6px;
    background: var(--accent); border-radius: 50%;
  }
  .hero h1 {
    font-size: clamp(40px, 5.5vw, 68px);
    font-weight: 500;
    line-height: 1.02;
    letter-spacing: -0.035em;
    color: var(--ink);
    margin-bottom: 1.6rem;
  }
  .hero h1 .accent { color: var(--accent); font-weight: 500; }
  .hero p.lede {
    font-size: 17px;
    line-height: 1.55;
    color: var(--muted);
    max-width: 480px;
    margin-bottom: 2rem;
  }
  .hero p.lede strong { color: var(--ink); font-weight: 500; }
  .hero-actions {
    display: flex; gap: 12px; flex-wrap: wrap;
    align-items: center;
  }
  .hero-trust {
    margin-top: 2.5rem;
    display: flex; align-items: center; gap: 14px;
    font-size: 13px; color: var(--muted-2);
    font-family: 'Space Mono', monospace;
  }
  .hero-trust::before {
    content: ''; width: 24px; height: 1px; background: var(--line-2);
  }

/* ── HERO PRODUCT MOCKUP ─────────────────────── */
  .hero-mockup {
    position: relative;
    height: 480px;
  }
  .mockup-card {
    position: absolute;
    background: var(--bg-card);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: 0 1px 0 rgba(0,0,0,0.02), 0 24px 48px -16px rgba(10,10,10,0.12);
  }
  .mockup-main {
    inset: 20px 40px 20px 0;
    padding: 24px;
    display: flex; flex-direction: column; gap: 18px;
  }
  .mockup-header {
    display: flex; align-items: center; justify-content: space-between;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--line);
  }
  .mockup-title-block .label {
    font-family: 'Space Mono', monospace;
    font-size: 10px; color: var(--muted-2);
    text-transform: uppercase; letter-spacing: 0.1em;
    margin-bottom: 4px;
  }
  .mockup-title-block .title {
    font-size: 17px; font-weight: 500; letter-spacing: -0.01em;
  }
  .mockup-status {
    font-family: 'Space Mono', monospace;
    font-size: 11px; padding: 4px 8px;
    background: var(--accent-l); color: var(--accent);
    border-radius: 4px;
  }
  .skill-row {
    display: grid;
    grid-template-columns: 110px 1fr 50px;
    gap: 14px; align-items: center;
  }
  .skill-name {
    font-size: 13px; font-weight: 500; color: var(--ink-2);
  }
  .skill-bar {
    height: 6px; background: var(--bg-warm);
    border-radius: 100px; overflow: hidden;
  }
  .skill-fill {
    height: 100%; background: var(--ink);
    border-radius: 100px;
    transition: width 1.2s cubic-bezier(.2,.8,.2,1);
  }
  .skill-fill.acc { background: var(--accent); }
  .skill-score {
    font-family: 'Space Mono', monospace;
    font-size: 12px; color: var(--muted);
    text-align: right;
  }
  .mockup-footer {
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid var(--line);
    display: flex; align-items: center; justify-content: space-between;
    font-family: 'Space Mono', monospace;
    font-size: 11px; color: var(--muted);
  }
  .mockup-footer .dot {
    display: inline-block; width: 6px; height: 6px;
    background: var(--accent); border-radius: 50%;
    margin-right: 6px;
    animation: pulse 1.8s ease-in-out infinite;
  }
  @keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
  }

/* Floating overlay card */
  .mockup-overlay {
    bottom: 30px; right: 0;
    width: 240px; padding: 14px;
    background: var(--ink); color: var(--bg);
    border: none;
    box-shadow: 0 24px 48px -8px rgba(10,10,10,0.25);
  }
  .mockup-overlay .ov-label {
    font-family: 'Space Mono', monospace;
    font-size: 10px; opacity: 0.5;
    text-transform: uppercase; letter-spacing: 0.1em;
    margin-bottom: 8px;
  }
  .mockup-overlay .ov-title {
    font-size: 14px; font-weight: 500;
    margin-bottom: 10px;
    line-height: 1.3;
  }
  .mockup-overlay .ov-meta {
    display: flex; gap: 12px;
    font-family: 'Space Mono', monospace;
    font-size: 11px; opacity: 0.6;
  }

/* Top right credential badge */
  .mockup-badge {
    top: 0; right: 60px;
    width: 130px; padding: 14px;
    text-align: center;
  }
  .mockup-badge .badge-icon {
    width: 32px; height: 32px;
    margin: 0 auto 8px;
    border: 1.5px solid var(--accent);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--accent);
  }
  .mockup-badge .badge-label {
    font-family: 'Space Mono', monospace;
    font-size: 9px; color: var(--muted);
    text-transform: uppercase; letter-spacing: 0.1em;
    margin-bottom: 2px;
  }
  .mockup-badge .badge-value {
    font-size: 13px; font-weight: 500;
  }

/* ── MARQUEE STRIP ───────────────────────────── */
  .marquee {
    border-bottom: 1px solid var(--line);
    padding: 1.4rem 0;
    overflow: hidden;
    position: relative;
  }
  .marquee::before, .marquee::after {
    content: ''; position: absolute; top: 0; bottom: 0;
    width: 120px; z-index: 2; pointer-events: none;
  }
  .marquee::before { left: 0; background: linear-gradient(90deg, var(--bg), transparent); }
  .marquee::after  { right: 0; background: linear-gradient(-90deg, var(--bg), transparent); }
  .marquee-track {
    display: flex; gap: 3rem;
    animation: scroll 50s linear infinite;
    white-space: nowrap;
    width: max-content;
  }
  .marquee-item {
    font-family: 'Space Mono', monospace;
    font-size: 13px; color: var(--muted);
    display: flex; align-items: center; gap: 3rem;
  }
  .marquee-item::after {
    content: '·'; color: var(--muted-2);
  }
  .marquee-item:last-child::after { content: ''; }
  @keyframes scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
  }

/* ── SECTION HEADER PATTERN ─────────────────── */
  .section { padding: 6rem 0; }
  .section-warm { background: var(--bg-warm); }
  .section-head {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
    align-items: end;
  }
  .section-head .lhs .label {
    font-family: 'Space Mono', monospace;
    font-size: 11px; text-transform: uppercase;
    letter-spacing: 0.1em; color: var(--muted);
    margin-bottom: 1rem;
    display: flex; align-items: center; gap: 8px;
  }
  .section-head .lhs .label::before {
    content: ''; width: 14px; height: 1px; background: var(--muted);
  }
  .section-head h2 {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: -0.025em;
  }
  .section-head h2 .accent { color: var(--accent); }
  .section-head .rhs {
    font-size: 16px;
    color: var(--muted);
    line-height: 1.6;
    max-width: 460px;
    padding-bottom: 0.5rem;
  }

/* ── WHO IT'S FOR ─────────────────────────────── */
  .who-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
  }
  .who-card {
    background: var(--bg-card);
    padding: 2.5rem 2rem;
    display: flex; flex-direction: column;
    transition: background .2s;
  }
  .who-card:hover { background: #FCFCFA; }
  .who-tag {
    font-family: 'Space Mono', monospace;
    font-size: 11px; text-transform: uppercase;
    letter-spacing: 0.08em; color: var(--muted-2);
    margin-bottom: 2rem;
  }
  .who-icon {
    width: 36px; height: 36px;
    margin-bottom: 1.5rem;
    color: var(--ink);
  }
  .who-card h3 {
    font-size: 22px; font-weight: 500;
    letter-spacing: -0.015em;
    margin-bottom: 0.8rem;
  }
  .who-card p {
    font-size: 15px; color: var(--muted);
    line-height: 1.55;
    margin-bottom: 1.5rem;
  }
  .who-card .closer {
    color: var(--ink-2); font-weight: 500;
    margin-bottom: 2rem;
  }
  .who-card .who-link {
    margin-top: auto;
    font-size: 14px; font-weight: 500;
    color: var(--ink); text-decoration: none;
    display: inline-flex; align-items: center; gap: 6px;
    transition: gap .2s;
  }
  .who-card .who-link:hover { gap: 10px; color: var(--accent); }

/* ── WHY BIMASSESS ────────────────────────────── */
  .why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
  .why-card {
    background: var(--bg-card);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 2rem;
    display: flex; flex-direction: column;
  }
  .why-visual {
    height: 160px;
    margin: -2rem -2rem 1.5rem -2rem;
    border-bottom: 1px solid var(--line);
    background: linear-gradient(180deg, #F7F7F2 0%, var(--bg-card) 100%);
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  }
  .why-card h3 {
    font-size: 19px; font-weight: 500;
    letter-spacing: -0.01em;
    margin-bottom: 0.6rem;
  }
  .why-card p {
    font-size: 14px; color: var(--muted);
    line-height: 1.55;
  }

/* Why visual 1: practitioner check */
  .vis-practitioner {
    display: flex; align-items: center; justify-content: center;
    height: 100%;
  }
  .vis-practitioner .check-stack {
    display: flex; flex-direction: column; gap: 6px;
  }
  .vis-practitioner .check-row {
    display: flex; align-items: center; gap: 10px;
    background: var(--bg-card);
    border: 1px solid var(--line);
    padding: 6px 12px;
    border-radius: 6px;
    font-family: 'Space Mono', monospace;
    font-size: 11px;
    color: var(--ink-2);
    box-shadow: 0 1px 2px rgba(0,0,0,0.02);
  }
  .vis-practitioner .check-row svg {
    width: 12px; height: 12px; color: var(--accent);
  }
  .vis-practitioner .check-row.muted {
    opacity: 0.5; color: var(--muted);
  }

/* Why visual 2: standards alignment */
  .vis-standards {
    display: flex; align-items: center; justify-content: center;
    height: 100%; gap: 8px;
  }
  .vis-standards .std-card {
    width: 80px; height: 100px;
    background: var(--bg-card);
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 10px;
    font-family: 'Space Mono', monospace;
    font-size: 9px;
    color: var(--muted);
    display: flex; flex-direction: column; justify-content: space-between;
    box-shadow: 0 2px 4px rgba(0,0,0,0.03);
  }
  .vis-standards .std-card.acc {
    background: var(--ink); color: var(--bg);
    border-color: var(--ink);
    transform: translateY(-8px);
  }
  .vis-standards .std-card .lbl { opacity: 0.5; }
  .vis-standards .std-card .val { font-size: 13px; color: inherit; opacity: 1; font-weight: 500; }

/* Why visual 3: verifiable cert */
  .vis-cert {
    display: flex; align-items: center; justify-content: center;
    height: 100%;
    position: relative;
  }
  .vis-cert .cert-card {
    width: 220px;
    background: var(--bg-card);
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 14px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
  }
  .vis-cert .cert-head {
    display: flex; justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--line);
    padding-bottom: 8px;
    margin-bottom: 8px;
    font-family: 'Space Mono', monospace;
    font-size: 9px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
  }
  .vis-cert .cert-name {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 4px;
  }
  .vis-cert .cert-score {
    font-family: 'Space Mono', monospace;
    font-size: 11px;
    color: var(--accent);
  }
  .vis-cert .cert-stamp {
    position: absolute;
    top: 18px; right: 30px;
    width: 40px; height: 40px;
    border: 1.5px solid var(--accent);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--accent);
    background: var(--bg-card);
    transform: rotate(-12deg);
  }

/* ── EXAM CATALOGUE PILLS ─────────────────────── */
  .exam-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
  }
  .exam-pill {
    background: var(--bg-card);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 18px;
    transition: all .2s ease;
    cursor: pointer;
  }
  .exam-pill:hover {
    transform: translateY(-2px);
    border-color: var(--line-2);
    box-shadow: 0 8px 16px -8px rgba(0,0,0,0.08);
  }
  .exam-pill .ep-track {
    font-family: 'Space Mono', monospace;
    font-size: 10px; text-transform: uppercase;
    letter-spacing: 0.08em; color: var(--muted-2);
    margin-bottom: 12px;
  }
  .exam-pill .ep-name {
    font-size: 16px; font-weight: 500;
    letter-spacing: -0.01em;
    margin-bottom: 14px;
  }
  .exam-pill .ep-meta {
    display: flex; justify-content: space-between;
    align-items: center;
    font-family: 'Space Mono', monospace;
    font-size: 11px;
    color: var(--muted);
    padding-top: 12px;
    border-top: 1px solid var(--line);
  }
  .exam-pill .ep-price {
    color: var(--ink); font-weight: 500;
  }
  .exam-pill-acc {
    background: var(--ink); color: var(--bg);
    border-color: var(--ink);
  }
  .exam-pill-acc .ep-track,
  .exam-pill-acc .ep-meta { color: rgba(255,255,255,0.5); }
  .exam-pill-acc .ep-meta { border-top-color: rgba(255,255,255,0.1); }
  .exam-pill-acc .ep-price { color: #fff; }

/* ── HOW IT WORKS STEPS ───────────────────────── */
  .steps-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 1.5rem;
    align-items: start;
  }
  .step {
    background: var(--bg-card);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 2rem;
  }
  .step-num {
    font-size: 13px;
    color: var(--muted-2);
    margin-bottom: 1.5rem;
  }
  .step h3 {
    font-size: 19px; font-weight: 500;
    letter-spacing: -0.01em;
    margin-bottom: 0.6rem;
  }
  .step p {
    font-size: 14px; color: var(--muted);
    line-height: 1.55;
  }
  .step-arrow {
    color: var(--muted-2);
    padding-top: 3rem;
  }

/* ── PRICING ──────────────────────────────────── */
  .price-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
  .price-card {
    background: var(--bg-card);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 2rem;
    display: flex; flex-direction: column;
  }
  .price-card.featured {
    background: var(--ink);
    color: var(--bg);
    border-color: var(--ink);
  }
  .price-tag {
    font-family: 'Space Mono', monospace;
    font-size: 11px; text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--muted-2);
    margin-bottom: 0.6rem;
  }
  .price-card.featured .price-tag { color: rgba(255,255,255,0.5); }
  .price-card h3 {
    font-size: 22px; font-weight: 500;
    letter-spacing: -0.015em;
    margin-bottom: 0.4rem;
  }
  .price-card .price-sub {
    font-size: 14px; color: var(--muted);
    margin-bottom: 1.5rem;
  }
  .price-card.featured .price-sub { color: rgba(255,255,255,0.6); }
  .price-amount {
    display: flex; align-items: baseline; gap: 6px;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--line);
  }
  .price-card.featured .price-amount { border-bottom-color: rgba(255,255,255,0.1); }
  .price-amount .num {
    font-size: 38px; font-weight: 500;
    letter-spacing: -0.02em;
  }
  .price-amount .per {
    font-size: 14px; color: var(--muted);
  }
  .price-card.featured .price-amount .per { color: rgba(255,255,255,0.6); }
  .price-features {
    list-style: none;
    margin-bottom: 1.5rem;
    flex: 1;
  }
  .price-features li {
    font-size: 14px;
    padding: 8px 0;
    display: flex; align-items: flex-start; gap: 10px;
    color: var(--ink-2);
  }
  .price-card.featured .price-features li { color: rgba(255,255,255,0.85); }
  .price-features li svg {
    flex-shrink: 0; margin-top: 4px;
    color: var(--accent);
  }
  .price-card.featured .price-features li svg { color: #fff; }
  .price-card .btn {
    width: 100%; justify-content: center;
  }
  .price-card.featured .btn-primary {
    background: var(--bg); color: var(--ink);
  }
  .price-card.featured .btn-primary:hover { background: #fff; }

/* Toggle */
  .price-toggle {
    display: inline-flex;
    background: var(--bg-card);
    border: 1px solid var(--line);
    border-radius: 100px;
    padding: 4px;
    margin-bottom: 3rem;
  }
  .price-toggle button {
    background: none; border: none;
    padding: 8px 18px;
    font-family: inherit; font-size: 13px; font-weight: 500;
    border-radius: 100px;
    cursor: pointer;
    color: var(--muted);
    transition: all .15s;
  }
  .price-toggle button.active {
    background: var(--ink); color: var(--bg);
  }
  .price-toggle .save-badge {
    font-family: 'Space Mono', monospace;
    font-size: 10px;
    color: var(--accent);
    margin-left: 4px;
  }

/* ── TESTIMONIALS ─────────────────────────────── */
  .testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
  .testimonial {
    background: var(--bg-card);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 2rem;
  }
  .testimonial-quote {
    font-size: 17px;
    line-height: 1.5;
    letter-spacing: -0.01em;
    margin-bottom: 2rem;
    color: var(--ink-2);
  }
  .testimonial-attr {
    display: flex; align-items: center; gap: 12px;
    padding-top: 1.5rem;
    border-top: 1px solid var(--line);
  }
  .testimonial-avatar {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: var(--bg-warm);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Space Mono', monospace;
    font-size: 13px;
    color: var(--ink);
    font-weight: 500;
  }
  .testimonial-meta {
    font-size: 13px;
  }
  .testimonial-meta .name { font-weight: 500; }
  .testimonial-meta .role { color: var(--muted); font-size: 12px; }

/* ── FAQ ──────────────────────────────────────── */
  .faq-wrap {
    max-width: 760px;
    margin: 0 auto;
  }
  details.faq-item {
    border-bottom: 1px solid var(--line);
    padding: 1.4rem 0;
  }
  details.faq-item summary {
    font-size: 17px;
    font-weight: 500;
    letter-spacing: -0.01em;
    cursor: pointer;
    list-style: none;
    display: flex; justify-content: space-between;
    align-items: center;
  }
  details.faq-item summary::-webkit-details-marker { display: none; }
  details.faq-item summary::after {
    content: '+';
    font-size: 20px;
    color: var(--muted);
    font-weight: 300;
    transition: transform .2s;
  }
  details.faq-item[open] summary::after {
    transform: rotate(45deg);
  }
  details.faq-item p {
    margin-top: 0.8rem;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.6;
    max-width: 620px;
  }

/* ── FINAL CTA ────────────────────────────────── */
  .final-cta {
    background: var(--ink);
    color: var(--bg);
    padding: 6rem 0;
    text-align: center;
  }
  .final-cta h2 {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 500;
    letter-spacing: -0.03em;
    line-height: 1.05;
    margin-bottom: 1.2rem;
  }
  .final-cta p {
    font-size: 17px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 2rem;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }
  .final-cta .btn-primary {
    background: var(--bg); color: var(--ink);
  }
  .final-cta .btn-primary:hover { background: #fff; }
  .final-cta .btn-ghost {
    background: transparent;
    color: var(--bg);
    border-color: rgba(255,255,255,0.2);
  }
  .final-cta .btn-ghost:hover {
    background: rgba(255,255,255,0.05);
  }

/* ── FOOTER ───────────────────────────────────── */
  footer.site-footer {
    background: var(--bg);
    border-top: 1px solid var(--line);
    padding: 4rem 0 2rem;
  }
  .footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--line);
  }
  .footer-brand {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: -0.01em;
    margin-bottom: 0.8rem;
  }
  .footer-tag {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.55;
    max-width: 320px;
  }
  .footer-col h5 {
    font-family: 'Space Mono', monospace;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--muted-2);
    margin-bottom: 1rem;
    font-weight: 500;
  }
  .footer-col ul {
    list-style: none;
    display: flex; flex-direction: column;
    gap: 10px;
  }
  .footer-col a {
    font-size: 14px;
    color: var(--ink-2);
    text-decoration: none;
    transition: color .15s;
  }
  .footer-col a:hover { color: var(--accent); }
  .footer-bottom {
    padding-top: 2rem;
    display: flex; justify-content: space-between;
    align-items: center;
    font-family: 'Space Mono', monospace;
    font-size: 12px;
    color: var(--muted-2);
  }
  .footer-bottom-links {
    display: flex; gap: 1.5rem;
  }
  .footer-bottom-links a {
    color: var(--muted-2);
    text-decoration: none;
  }
  .footer-bottom-links a:hover { color: var(--ink); }

/* ── ANIMATIONS: SCROLL REVEALS ────────────── */
  .reveal {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity .7s cubic-bezier(.2,.8,.2,1), transform .7s cubic-bezier(.2,.8,.2,1);
    will-change: opacity, transform;
  }
  .reveal.in-view { opacity: 1; transform: translateY(0); }

.reveal-stagger > * {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity .65s cubic-bezier(.2,.8,.2,1), transform .65s cubic-bezier(.2,.8,.2,1);
  }
  .reveal-stagger.in-view > * { opacity: 1; transform: translateY(0); }
  .reveal-stagger.in-view > *:nth-child(1) { transition-delay:    0ms; }
  .reveal-stagger.in-view > *:nth-child(2) { transition-delay:   90ms; }
  .reveal-stagger.in-view > *:nth-child(3) { transition-delay:  180ms; }
  .reveal-stagger.in-view > *:nth-child(4) { transition-delay:  270ms; }
  .reveal-stagger.in-view > *:nth-child(5) { transition-delay:  360ms; }

/* ── HERO: WORD-BY-WORD REVEAL ─────────────── */
  .hero h1 .word {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
    animation: wordIn .7s cubic-bezier(.2,.8,.2,1) forwards;
  }
  .hero h1 .word:nth-child(1) { animation-delay: 0.10s; }
  .hero h1 .word:nth-child(2) { animation-delay: 0.18s; }
  .hero h1 .word:nth-child(3) { animation-delay: 0.26s; }
  .hero h1 .word:nth-child(4) { animation-delay: 0.34s; }
  .hero h1 .word:nth-child(5) { animation-delay: 0.42s; }
  @keyframes wordIn {
    to { opacity: 1; transform: translateY(0); }
  }
  .hero-mockup {
    opacity: 0;
    transform: translateY(24px);
    animation: heroMockupIn .9s cubic-bezier(.2,.8,.2,1) forwards;
    animation-delay: 0.55s;
  }
  @keyframes heroMockupIn {
    to { opacity: 1; transform: translateY(0); }
  }
  .hero-eyebrow-anim, .hero p.lede, .hero-actions, .hero-trust {
    opacity: 0;
    transform: translateY(14px);
    animation: fadeUp .6s cubic-bezier(.2,.8,.2,1) forwards;
  }
  .hero-eyebrow-anim { animation-delay: 0.05s; }
  .hero p.lede { animation-delay: 0.55s; }
  .hero-actions { animation-delay: 0.7s; }
  .hero-trust { animation-delay: 0.85s; }
  @keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
  }

/* ── ANIMATED SKILL BARS ───────────────────── */
  .skill-fill {
    width: 0 !important;
    transition: width 1.2s cubic-bezier(.2,.8,.2,1);
  }
  .hero-mockup.bars-animate .skill-fill {
    width: var(--w) !important;
  }

/* ── MAGNETIC BUTTONS ──────────────────────── */
  .btn-magnetic {
    transition: transform .25s cubic-bezier(.2,.8,.2,1), background .15s ease;
    will-change: transform;
  }

/* ── STAT STRIP ────────────────────────────── */
  .stats {
    border-bottom: 1px solid var(--line);
    padding: 3.5rem 0;
  }
  .stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
  .stat {
    display: flex; flex-direction: column; gap: 8px;
    border-left: 1px solid var(--line);
    padding-left: 1.4rem;
  }
  .stat:first-child { border-left: none; padding-left: 0; }
  .stat .num {
    font-size: clamp(32px, 3.6vw, 44px);
    font-weight: 500;
    letter-spacing: -0.02em;
    line-height: 1;
    color: var(--ink);
    font-variant-numeric: tabular-nums;
  }
  .stat .num .suffix {
    color: var(--accent);
    font-weight: 500;
  }
  .stat .label {
    font-family: 'Space Mono', monospace;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--muted);
  }

/* ── COMPARISON BLOCK ───────────────────────── */
  .compare-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
  }
  .compare-col {
    background: var(--bg-card);
    padding: 2.5rem 2rem;
    display: flex; flex-direction: column;
  }
  .compare-col.featured {
    background: var(--ink);
    color: var(--bg);
  }
  .compare-col .col-tag {
    font-family: 'Space Mono', monospace;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--muted-2);
    margin-bottom: 1.5rem;
  }
  .compare-col.featured .col-tag { color: rgba(255,255,255,0.5); }
  .compare-col h3 {
    font-size: 22px; font-weight: 500;
    letter-spacing: -0.015em;
    margin-bottom: 2rem;
  }
  .compare-list {
    list-style: none;
    display: flex; flex-direction: column;
    gap: 14px;
  }
  .compare-list li {
    display: flex; align-items: flex-start; gap: 10px;
    font-size: 14px;
    color: var(--ink-2);
    line-height: 1.5;
  }
  .compare-col.featured .compare-list li { color: rgba(255,255,255,0.85); }
  .compare-list .icon {
    flex-shrink: 0;
    width: 16px; height: 16px;
    margin-top: 2px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
  }
  .compare-list .icon.no {
    background: var(--bg-warm);
    color: var(--muted-2);
  }
  .compare-list .icon.yes {
    background: var(--accent);
    color: #fff;
  }
  .compare-col.featured .compare-list .icon.yes {
    background: #fff;
    color: var(--ink);
  }

/* ── SCROLLYTELLING SKILL JOURNEY ──────────── */
  .scrolly {
    padding: 6rem 0;
    background: var(--ink);
    color: var(--bg);
    position: relative;
  }
  .scrolly-grid {
    display: grid;
    grid-template-columns: 0.95fr 1fr;
    gap: 5rem;
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 var(--pad-x);
  }
  .scrolly-sticky {
    position: sticky;
    top: 100px;
    height: fit-content;
    align-self: start;
  }
  .scrolly-label {
    font-family: 'Space Mono', monospace;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.4);
    margin-bottom: 1.5rem;
    display: flex; align-items: center; gap: 8px;
  }
  .scrolly-label::before {
    content: ''; width: 14px; height: 1px; background: rgba(255,255,255,0.3);
  }
  .scrolly-headline {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 500;
    letter-spacing: -0.025em;
    line-height: 1.05;
    margin-bottom: 2.5rem;
  }
  .scrolly-headline .accent { color: #0139B7; }

.journey-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-lg);
    padding: 2rem;
    backdrop-filter: blur(12px);
  }
  .journey-stage {
    font-family: 'Space Mono', monospace;
    font-size: 11px;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.4rem;
  }
  .journey-current {
    font-size: 28px;
    font-weight: 500;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    transition: opacity .3s;
  }
  .journey-current .level {
    color: #0139B7;
  }

.journey-bars {
    display: flex; flex-direction: column;
    gap: 14px;
  }
  .journey-bar-row {
    display: grid;
    grid-template-columns: 100px 1fr 40px;
    gap: 14px; align-items: center;
    transition: opacity .3s;
  }
  .journey-bar-row.dim { opacity: 0.35; }
  .journey-bar-name {
    font-size: 13px;
    color: rgba(255,255,255,0.85);
    font-weight: 500;
  }
  .journey-bar {
    height: 6px;
    background: rgba(255,255,255,0.08);
    border-radius: 100px;
    overflow: hidden;
  }
  .journey-bar-fill {
    height: 100%;
    background: #0139B7;
    border-radius: 100px;
    width: 0;
    transition: width 0.7s cubic-bezier(.2,.8,.2,1);
  }
  .journey-bar-fill.complete {
    background: rgba(255,255,255,0.85);
  }
  .journey-bar-score {
    font-family: 'Space Mono', monospace;
    font-size: 11px;
    color: rgba(255,255,255,0.5);
    text-align: right;
  }

.scrolly-steps {
    display: flex; flex-direction: column;
  }
  .scrolly-step {
    min-height: 70vh;
    display: flex; flex-direction: column;
    justify-content: center;
    padding: 2rem 0;
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  .scrolly-step:first-child { border-top: none; }
  .scrolly-step .step-num {
    font-family: 'Space Mono', monospace;
    font-size: 11px;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
  }
  .scrolly-step h4 {
    font-size: clamp(28px, 3vw, 36px);
    font-weight: 500;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: 1rem;
  }
  .scrolly-step p {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255,255,255,0.6);
    max-width: 420px;
  }

/* ── FINAL CTA SPOTLIGHT ───────────────────── */
  .final-cta {
    position: relative;
    overflow: hidden;
  }
  .final-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(
      circle 600px at var(--mx, 50%) var(--my, 50%),
      rgba(156, 176, 255, 0.10),
      transparent 60%
    );
    pointer-events: none;
    transition: opacity .3s;
    opacity: 0;
  }
  .final-cta:hover::before { opacity: 1; }
  .final-cta > .container { position: relative; z-index: 1; }

/* ── POLISH: NOISE TEXTURE ─────────────────── */
  body::before {
    content: '';
    position: fixed; inset: 0;
    pointer-events: none;
    z-index: 200;
    background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
    opacity: 0.025;
    mix-blend-mode: multiply;
  }

/* ── POLISH: SECTION GUTTER LABELS ─────────── */
  .section-anchor {
    position: absolute;
    left: -3.5rem;
    top: 0;
    font-family: 'Space Mono', monospace;
    font-size: 10px;
    color: var(--muted-2);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    white-space: nowrap;
  }
  .section { position: relative; }
  @media (max-width: 1100px) {
    .section-anchor { display: none; }
  }

/* ── POLISH: FOOTER LINK UNDERLINE ─────────── */
  .footer-col a {
    background-image: linear-gradient(currentColor, currentColor);
    background-position: 0 100%;
    background-size: 0% 1px;
    background-repeat: no-repeat;
    transition: background-size .35s cubic-bezier(.2,.8,.2,1), color .15s;
    padding-bottom: 2px;
  }
  .footer-col a:hover {
    background-size: 100% 1px;
  }

/* ── POLISH: EXAM PILL LIFT ────────────────── */
  .exam-pill {
    transition: transform .25s cubic-bezier(.2,.8,.2,1),
                border-color .25s ease,
                box-shadow .25s ease;
  }
  .exam-pill:hover {
    transform: translateY(-4px);
    border-color: var(--accent);
    box-shadow: 0 12px 24px -10px rgba(31,63,229,0.18);
  }
  .exam-pill-acc:hover {
    border-color: var(--accent);
  }

/* ── POLISH: STICKY NAV COMPRESS ───────────── */
  nav.site-nav {
    transition: backdrop-filter .3s, box-shadow .3s;
  }
  nav.site-nav.scrolled .nav-inner {
    height: 56px;
  }
  nav.site-nav.scrolled {
    box-shadow: 0 1px 0 var(--line);
  }
  .nav-inner {
    transition: height .3s cubic-bezier(.2,.8,.2,1);
  }

/* ── DARK SECTION ─────────────────────────── */
  .section-dark {
    background: var(--ink);
    color: var(--bg);
  }
  .section-dark .section-head .lhs .label {
    color: rgba(255,255,255,0.5);
  }
  .section-dark .section-head .lhs .label::before {
    background: rgba(255,255,255,0.3);
  }
  .section-dark .section-head h2 {
    color: var(--bg);
  }
  .section-dark .section-head h2 .accent {
    color: #0139B7;
  }
  .section-dark .section-head .rhs {
    color: rgba(255,255,255,0.6);
  }
  .section-dark .section-anchor {
    color: rgba(255,255,255,0.3);
  }

/* ── AUDIENCE CARDS (2-up) ────────────────── */
  .audience-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  .audience-card {
    background: var(--ink);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding:3rem 2rem;
    color: var(--bg);
    text-decoration: none;
    display: flex; flex-direction: column;
    transition: background .25s ease, border-color .25s ease, transform .25s cubic-bezier(.2,.8,.2,1);
    position: relative;
    overflow: hidden;
  }

.audience-card:nth-child(1) { 
    background: rgba(255,255,255,0.04);
    border-color: var(--ink);
    color: var(--accent);
  }

.audience-card:nth-child(1) .audience-tag {
    color: var(--accent);
  }

.audience-card:nth-child(1) > p{
    color: var(--ink-2);
  }

.audience-card:nth-child(1) > .audience-meta > span {
    color: var(--muted);
  }

.audience-card:nth-child(1) .audience-cta {
    color: var(--ink-2);
  }

.audience-card:hover {
    transform: translateY(-3px);
  }
  .audience-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 70% 0%, rgba(156,176,255,0.08), transparent 60%);
    pointer-events: none;
    opacity: 0;
    transition: opacity .3s;
  }
  .audience-card:hover::after { opacity: 1; }
  .audience-tag {
    font-family: 'Space Mono', monospace;
    font-size: 2.5rem; text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent-l);
    margin-bottom: 1.6rem;
  }
  .audience-card h3 {
    font-size: clamp(28px, 3vw, 36px);
    font-weight: 500;
    letter-spacing: -0.025em;
    line-height: 1.1;
    margin-bottom: 1.2rem;
  }
  .audience-card p {
    font-size: 15px;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
    margin-bottom: 2rem;
  }
  .audience-meta {
    font-family: 'Space Mono', monospace;
    font-size: 11px;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.08);
    margin-bottom: 1.5rem;
  }
  .audience-cta {
    margin-top: auto;
    font-size: 14px;
    font-weight: 500;
    color: var(--bg);
    display: inline-flex; align-items: center; gap: 8px;
    transition: gap .25s;
  }
  .audience-card:hover .audience-cta { gap: 12px; }
  .audience-card:hover .audience-cta .arrow { color: #0139B7; }

/* ── MID-PAGE CTA (black) ─────────────────── */
  .mid-cta {
    background: var(--ink);
    color: var(--bg);
    padding: 6rem 0;
  }
  .mid-cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
  }
  .mid-cta-headline {
    font-size: clamp(32px, 3.8vw, 48px);
    font-weight: 500;
    letter-spacing: -0.03em;
    line-height: 1.08;
  }
  .mid-cta-headline .accent { color: #0139B7; }
  .mid-cta-body p {
    font-size: 17px;
    color: rgba(255,255,255,0.65);
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 480px;
  }
  .mid-cta-actions {
    display: flex; gap: 12px; flex-wrap: wrap;
  }
  .mid-cta .btn-primary {
    background: var(--bg); color: var(--ink);
  }
  .mid-cta .btn-primary:hover { background: #fff; }
  .btn-ghost-light {
    background: transparent;
    color: var(--bg);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 10px 18px;
    font-family: inherit; font-size: 14px; font-weight: 500;
    border-radius: 8px;
    text-decoration: none;
    display: inline-flex; align-items: center; gap: 6px;
    transition: all .15s;
  }
  .btn-ghost-light:hover {
    background: rgba(255,255,255,0.05);
    border-color: rgba(255,255,255,0.35);
  }

/* ── TAB TOGGLE ───────────────────────────── */
  .tab-toggle {
    display: inline-flex;
    background: var(--bg-card);
    border: 1px solid var(--line);
    border-radius: 100px;
    padding: 4px;
  }
  .tab-btn {
    background: none; border: none;
    padding: 8px 18px;
    font-family: inherit; font-size: 13px; font-weight: 500;
    border-radius: 100px;
    cursor: pointer;
    color: var(--muted);
    transition: all .15s;
  }
  .tab-btn.active {
    background: var(--ink); color: var(--bg);
  }

/* ── CREDENTIAL STAGE (cert + badge) ──────── */
  .credential-stage {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 3rem;
    align-items: center;
  }
  .cred-cert {
    background: var(--bg-card);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: 0 12px 32px -12px rgba(10,10,10,0.12);
    position: relative;
  }
  .cred-cert-head {
    display: flex; justify-content: space-between;
    align-items: center;
    padding-bottom: 1.4rem;
    border-bottom: 1px solid var(--line);
    margin-bottom: 1.6rem;
  }
  .cred-cert-brand {
    font-weight: 600;
    font-size: 15px;
    letter-spacing: -0.01em;
  }
  .cred-cert-verify {
    font-family: 'Space Mono', monospace;
    font-size: 11px;
    padding: 4px 10px;
    background: var(--accent-l);
    color: var(--accent);
    border-radius: 4px;
    letter-spacing: 0.04em;
  }
  .cred-cert-label {
    font-family: 'Space Mono', monospace;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--muted-2);
    margin-bottom: 4px;
  }
  .cred-cert-name {
    font-size: 28px;
    font-weight: 500;
    letter-spacing: -0.02em;
    margin-bottom: 1.6rem;
  }
  .cred-cert-meta {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    padding-bottom: 1.6rem;
    border-bottom: 1px solid var(--line);
  }
  .cred-cert-val {
    font-size: 14px;
    font-weight: 500;
    color: var(--ink);
  }
  .cred-score {
    color: var(--accent);
    font-family: 'Space Mono', monospace;
  }
  .cred-cert-footer {
    display: flex; justify-content: space-between;
    align-items: center;
    margin-top: 1.4rem;
    font-family: 'Space Mono', monospace;
    font-size: 11px;
  }
  .cred-cert-footer .cred-cert-label { margin-bottom: 0; }
  .cred-cert-aligned {
    display: inline-flex; align-items: center; gap: 6px;
    color: var(--accent);
  }

/* Badge */
  .cred-badge {
    display: flex; flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  .cred-badge-ring {
    width: 180px; height: 180px;
    border-radius: 50%;
    background: var(--ink);
    border: 6px solid var(--bg-card);
    box-shadow: 0 0 0 1px var(--line), 0 16px 32px -8px rgba(10,10,10,0.18);
    display: flex; align-items: center; justify-content: center;
    position: relative;
  }
  .cred-badge-ring::before {
    content: '';
    position: absolute; inset: 8px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50%;
  }
  .cred-badge-inner {
    text-align: center;
    color: var(--bg);
  }
  .cred-badge-label {
    font-family: 'Space Mono', monospace;
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(255,255,255,0.5);
    margin-bottom: 4px;
  }
  .cred-badge-score {
    font-size: 44px;
    font-weight: 500;
    letter-spacing: -0.03em;
    line-height: 1;
    color: #0139B7;
  }
  .cred-badge-tier {
    font-size: 12px;
    color: rgba(255,255,255,0.7);
    margin-top: 4px;
    letter-spacing: 0.02em;
  }
  .cred-badge-caption {
    font-family: 'Space Mono', monospace;
    font-size: 11px;
    color: var(--muted);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    line-height: 1.6;
  }

/* ── RESPONSIVE BASE ─────────────────────────── */
  @media (max-width: 880px) {
    .hero-grid { grid-template-columns: 1fr; gap: 3rem; }
    .hero-mockup { height: 380px; }
    .nav-links { display: none; }
    .section-head { grid-template-columns: 1fr; gap: 1.5rem; }
    .who-grid, .why-grid, .price-grid, .testimonial-grid,
    .stats-grid, .compare-grid, .scrolly-grid,
    .audience-grid, .mid-cta-grid, .credential-stage { grid-template-columns: 1fr; }
    .cred-cert-meta { grid-template-columns: 1fr 1fr; }
    .exam-grid { grid-template-columns: repeat(2, 1fr); }
    .steps-grid { grid-template-columns: 1fr; }
    .step-arrow { display: none; }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .footer-brand-wrap { grid-column: 1 / -1; }
    .section, .mid-cta { padding: 4rem 0; }
    .scrolly-sticky { position: static; }
    .scrolly-step { min-height: auto; }
    .stat { border-left: none; padding-left: 0; padding-top: 1rem; border-top: 1px solid var(--line); }
    .stat:first-child { border-top: none; padding-top: 0; }
    .cred-cert-footer { flex-direction: column; gap: 1rem; align-items: flex-start; }
    :root { --pad-x: 1.25rem; }
  }

.mono { font-family: 'Space Mono', ui-monospace, monospace; }
  .container { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad-x); }

/* ── NAV ─────────────────────────────────────── */
  nav.site-nav {
    position: sticky; top: 0; z-index: 100;
    background: rgba(250,250,247,0.85);
    backdrop-filter: saturate(180%) blur(14px);
    -webkit-backdrop-filter: saturate(180%) blur(14px);
    border-bottom: 1px solid var(--line);
    transition: backdrop-filter .3s, box-shadow .3s;
  }
  nav.site-nav.scrolled { box-shadow: 0 1px 0 var(--line); }
  .nav-inner {
    max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad-x);
    height: 64px;
    display: flex; align-items: center; justify-content: space-between;
    transition: height .3s cubic-bezier(.2,.8,.2,1);
  }
  nav.site-nav.scrolled .nav-inner { height: 56px; }
  .nav-logo {
    font-weight: 600; font-size: 17px; letter-spacing: -0.01em;
    color: var(--ink); text-decoration: none;
    display: flex; align-items: center; gap: 8px;
  }
  .nav-logo::before {
    content: ''; width: 18px; height: 18px;
    background: var(--ink); border-radius: 4px;
    mask: radial-gradient(circle at 30% 30%, transparent 0 4px, #000 5px);
    -webkit-mask: radial-gradient(circle at 30% 30%, transparent 0 4px, #000 5px);
  }
  .nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
  .nav-links a { font-size: 14px; color: var(--muted); text-decoration: none; transition: color .15s; }
  .nav-links a:hover { color: var(--ink); }
  .nav-links a.active { color: var(--ink); }
  .nav-cta-group { display: flex; align-items: center; gap: 14px; }
  .nav-cta-group a.login { font-size: 14px; color: var(--muted); text-decoration: none; }
  .nav-cta-group a.login:hover { color: var(--ink); }

/* ── BUTTONS ─────────────────────────────────── */
  .btn {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 10px 18px;
    font-family: inherit; font-size: 14px; font-weight: 500;
    border-radius: 8px; border: none;
    text-decoration: none; cursor: pointer;
    transition: all .15s ease;
  }
  .btn-primary { background: var(--ink); color: var(--bg); }
  .btn-primary:hover { background: var(--ink-2); transform: translateY(-1px); }
  .btn-ghost { background: transparent; color: var(--ink); border: 1px solid var(--line-2); }
  .btn-ghost:hover { background: var(--bg-warm); }
  .btn-sm { padding: 8px 14px; font-size: 13px; }

/* ── PAGE HEADER ─────────────────────────────── */
  .page-hero {
    background: var(--bg-card);
    border-bottom: 1px solid var(--line);
    padding: 5rem 0 4rem;
    position: relative; overflow: hidden;
  }
  .page-hero-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 4rem; align-items: end;
  }
  .eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: 'Space Mono', monospace;
    font-size: 11px; font-weight: 500;
    text-transform: uppercase; letter-spacing: 0.08em;
    color: var(--muted); margin-bottom: 1.4rem;
  }
  .eyebrow::before {
    content: ''; width: 6px; height: 6px;
    background: var(--accent); border-radius: 50%;
  }
  .eyebrow.green::before { background: var(--accent); }
  .page-hero h1 {
    font-size: clamp(38px, 5vw, 60px);
    font-weight: 500; line-height: 1.04;
    letter-spacing: -0.03em;
  }
  .page-hero h1 .accent { color: var(--accent); }
  .page-hero-rhs p {
    font-size: 16px; color: var(--muted); line-height: 1.65;
    margin-bottom: 1.8rem; max-width: 480px;
  }

/* ── TOGGLE (Indiv / Business) ─────────────── */
  .view-toggle {
    display: inline-flex;
    background: var(--bg-warm);
    border: 1px solid var(--line-2);
    border-radius: 100px; padding: 4px;
  }
  .view-btn {
    background: none; border: none;
    padding: 8px 20px;
    font-family: inherit; font-size: 13px; font-weight: 500;
    border-radius: 100px; cursor: pointer;
    color: var(--muted); transition: all .15s;
  }
  .view-btn.active { background: var(--ink); color: var(--bg); }

/* ── STICKY FILTER BAR ───────────────────────── */
  .filter-strip {
    position: sticky; top: 64px; z-index: 89;
    background: rgba(250,250,247,0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
    transition: top .3s;
  }
  .filter-strip.nav-compressed { top: 56px; }
  .filter-strip-inner {
    max-width: var(--maxw); margin: 0 auto;
    padding: 0 var(--pad-x);
    display: flex; gap: 0; overflow-x: auto;
  }
  .filter-btn {
    padding: 0.9rem 1.2rem;
    border: none; border-bottom: 2px solid transparent;
    background: none; font-family: inherit; font-size: 13px;
    font-weight: 400; color: var(--muted); cursor: pointer;
    transition: all .15s; white-space: nowrap;
  }
  .filter-btn:hover { color: var(--ink); }
  .filter-btn.active { color: var(--ink); border-bottom-color: var(--accent); font-weight: 500; }

/* ── MAIN CONTENT AREA ───────────────────────── */
  main { max-width: var(--maxw); margin: 0 auto; padding: 4rem var(--pad-x) 6rem; }

/* ── SECTION BLOCK ───────────────────────────── */
  .cat-section { margin-bottom: 5rem; }

.cat-section-head {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 2rem; align-items: start;
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--line);
  }
  .section-num {
    font-family: 'Space Mono', monospace;
    font-size: 52px; font-weight: 700;
    color: var(--line-2); line-height: 1;
    margin-top: -4px; user-select: none;
  }
  .section-text-block {}
  .section-badge {
    display: inline-block;
    font-family: 'Space Mono', monospace;
    font-size: 10px; font-weight: 500;
    letter-spacing: 0.12em; text-transform: uppercase;
    padding: 3px 10px; border-radius: 4px; margin-bottom: 8px;
  }
  .badge-arch { background: var(--accent-l); color: var(--accent); }
  .badge-focus { background: var(--bg-warm); color: var(--muted); border: 1px solid var(--line-2); }
  .badge-ent { background: var(--bg-warm); color: var(--muted); border: 1px solid var(--line-2); }
  .badge-special { background: var(--bg-warm); color: var(--muted); border: 1px solid var(--line-2); }
  .section-text-block h2 {
    font-size: clamp(22px, 2.6vw, 30px); font-weight: 500;
    letter-spacing: -0.015em; color: var(--ink); line-height: 1.2;
  }
  .section-text-block p { font-size: 14px; color: var(--muted); margin-top: 4px; line-height: 1.6; }
  .section-count {
    font-family: 'Space Mono', monospace;
    font-size: 11px; color: var(--muted); white-space: nowrap; padding-top: 4px;
  }

/* ── CARD GRIDS ──────────────────────────────── */
  .cards-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); gap: 12px; }
  .cards-grid-2col { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 12px; }

/* ── EXAM CARD ───────────────────────────────── */
  .exam-card {
    background: var(--bg-card);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 1.6rem;
    display: flex; flex-direction: column; gap: 12px;
    transition: border-color .2s, box-shadow .2s, transform .2s cubic-bezier(.2,.8,.2,1);
  }
  .exam-card:hover {
    border-color: var(--accent);
    box-shadow: 0 12px 28px -8px rgba(1,57,183,0.15);
    transform: translateY(-3px);
  }
  .card-top {
    display: flex; align-items: flex-start;
    justify-content: space-between; gap: 8px;
  }
  .level-pill {
    font-family: 'Space Mono', monospace;
    font-size: 10px; font-weight: 500; letter-spacing: 0.08em;
    text-transform: uppercase; padding: 3px 8px; border-radius: 4px;
  }
  .pill-novice     { background: var(--bg-warm); color: var(--ink-2); }
  .pill-foundation { background: var(--accent-l); color: var(--accent); }
  .pill-intermediate { background: #F5EEE6; color: #7A4E28; }
  .pill-advanced   { background: #F5E8E8; color: #7A2828; }
  .pill-professional { background: #EDE8F5; color: #4A2E8A; }
  .pill-specialist { background: var(--bg-warm); color: var(--muted); }
  .pill-enterprise { background: var(--bg-warm); color: var(--muted); }
  .pill-special    { background: var(--bg-warm); color: var(--muted); }
  .card-code {
    font-family: 'Space Mono', monospace;
    font-size: 10px; color: var(--muted-2); letter-spacing: 0.04em;
  }
  .card-title {
    font-size: 20px; font-weight: 500;
    letter-spacing: -0.01em; color: var(--ink); line-height: 1.2;
  }
  .card-price-large {
    font-size: 32px; font-weight: 500; color: var(--ink); line-height: 1;
  }
  .card-price-unit {
    font-family: 'Space Mono', monospace;
    font-size: 11px; color: var(--muted); margin-top: 2px;
  }
  .card-desc { font-size: 13px; color: var(--muted); line-height: 1.6; flex: 1; }
  .card-divider { border: none; border-top: 1px solid var(--line); }
  .card-topics {
    font-family: 'Space Mono', monospace;
    font-size: 11px; color: var(--muted-2);
  }
  .card-btn {
    display: block; width: 100%; text-align: center;
    background: var(--bg-warm); color: var(--ink);
    border: 1px solid var(--line-2);
    font-family: inherit; font-size: 13px; font-weight: 500;
    padding: 10px; border-radius: 8px; cursor: pointer;
    transition: all .15s; text-decoration: none;
  }
  .card-btn:hover { background: var(--ink); color: var(--bg); border-color: var(--ink); transform: translateY(-1px); }
  .card-btn.primary { background: var(--ink); color: var(--bg); border-color: var(--ink); }
  .card-btn.primary:hover { background: var(--ink-2); }

/* ── DISCIPLINE GROUP ────────────────────────── */
  .discipline-group { margin-bottom: 2.5rem; }
  .discipline-label {
    font-family: 'Space Mono', monospace;
    font-size: 11px; font-weight: 500; letter-spacing: 0.12em;
    text-transform: uppercase; color: var(--muted);
    margin-bottom: 1rem;
    display: flex; align-items: center; gap: 10px;
  }
  .discipline-label::after { content: ''; flex: 1; height: 1px; background: var(--line); }

/* ── PACK BANNER ─────────────────────────────── */
  .pack-banner {
    margin-top: 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 1.6rem 2rem;
    display: flex; align-items: center; justify-content: space-between;
    gap: 2rem; flex-wrap: wrap;
    transition: border-color .2s, box-shadow .2s, transform .2s cubic-bezier(.2,.8,.2,1);
  }
  .pack-banner:hover {
    border-color: var(--line-2);
    box-shadow: 0 8px 24px -8px rgba(10,10,10,0.08);
    transform: translateY(-2px);
  }
  .pack-banner.accent { border-color: rgba(1,57,183,0.25); background: #FAFBFF; }
  .pack-banner.sage-accent { border-color: var(--line-2); background: var(--bg-warm); }
  .pack-eyebrow {
    font-family: 'Space Mono', monospace;
    font-size: 10px; font-weight: 500; letter-spacing: 0.14em;
    text-transform: uppercase; color: var(--muted); margin-bottom: 4px;
  }
  .pack-left h3 {
    font-size: 20px; font-weight: 500;
    letter-spacing: -0.01em; color: var(--ink); margin-bottom: 4px;
  }
  .pack-left p { font-size: 13px; color: var(--muted); }
  .pack-right { display: flex; align-items: center; gap: 1.5rem; }
  .pack-price { font-size: 34px; font-weight: 500; color: var(--ink); line-height: 1; }
  .pack-save {
    font-family: 'Space Mono', monospace;
    font-size: 11px; color: var(--muted); margin-top: 3px;
  }
  .pack-btn {
    background: var(--ink); color: var(--bg); border: none;
    font-family: inherit; font-size: 13px; font-weight: 500;
    padding: 10px 22px; border-radius: 8px; cursor: pointer;
    white-space: nowrap; transition: background .15s, transform .15s;
  }
  .pack-btn:hover { background: var(--ink-2); transform: translateY(-1px); }

/* ── ENTERPRISE INTRO ────────────────────────── */
  .ent-intro {
    background: var(--bg-card);
    border: 1px solid var(--line);
    border-left: 3px solid var(--accent);
    border-radius: 0 var(--radius) var(--radius) 0;
    padding: 1.2rem 1.5rem;
    font-size: 14px; color: var(--ink-2); line-height: 1.7;
    margin-bottom: 2rem;
  }
  .ent-intro strong { color: var(--ink); font-weight: 500; }

/* ── ENT GROUP LABEL ─────────────────────────── */
  .ent-group { margin-bottom: 3rem; }
  .ent-group-label {
    font-family: 'Space Mono', monospace;
    font-size: 11px; font-weight: 500; letter-spacing: 0.12em;
    text-transform: uppercase; color: var(--accent);
    margin-bottom: 1rem;
    display: flex; align-items: center; gap: 10px;
  }
  .ent-group-label::after { content: ''; flex: 1; height: 1px; background: var(--line); }
  .ent-group-label.sage { color: var(--muted); }

/* ── ACP CARD ────────────────────────────────── */
  .acp-card {
    background: var(--bg-card);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 3rem;
    display: grid; grid-template-columns: 1fr 240px;
    gap: 4rem; align-items: center;
  }
  .acp-eyebrow {
    font-family: 'Space Mono', monospace;
    font-size: 10px; font-weight: 500; letter-spacing: 0.14em;
    text-transform: uppercase; color: var(--muted);
    margin-bottom: 1rem;
    display: flex; align-items: center; gap: 10px;
  }
  .acp-eyebrow::before { content: ''; width: 20px; height: 1px; background: var(--muted-2); }
  .acp-card h3 {
    font-size: clamp(28px, 3vw, 38px); font-weight: 500;
    letter-spacing: -0.02em; color: var(--ink); line-height: 1.1;
    margin-bottom: 1rem;
  }
  .acp-card h3 .em { color: var(--ink-2); }
  .acp-card > .acp-left > p {
    font-size: 14px; color: var(--muted); line-height: 1.7;
    margin-bottom: 1.5rem; max-width: 500px;
  }
  .acp-features { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 2rem; }
  .acp-feat {
    font-family: 'Space Mono', monospace;
    font-size: 11px; color: var(--ink-2);
    background: var(--bg-warm); padding: 5px 12px;
    border-radius: 4px; border: 1px solid var(--line);
  }
  .acp-right {
    text-align: center; padding: 2rem;
    background: var(--bg-warm);
    border-radius: var(--radius-lg);
    border: 1px solid var(--line);
  }
  .acp-right-label {
    font-family: 'Space Mono', monospace;
    font-size: 11px; letter-spacing: 0.08em;
    text-transform: uppercase; color: var(--muted); margin-bottom: 8px;
  }
  .acp-price { font-size: 54px; font-weight: 500; color: var(--ink); line-height: 1; margin-bottom: 4px; }
  .acp-price-note { font-size: 12px; color: var(--muted); margin-bottom: 1.5rem; line-height: 1.5; }
  .acp-btn {
    display: block; width: 100%;
    background: var(--ink); color: var(--bg); border: none;
    font-family: inherit; font-size: 13px; font-weight: 500;
    padding: 12px; border-radius: 8px; cursor: pointer;
    transition: background .15s, transform .15s; margin-bottom: .75rem;
  }
  .acp-btn:hover { background: var(--ink-2); transform: translateY(-1px); }
  .acp-btn-note {
    font-family: 'Space Mono', monospace;
    font-size: 11px; color: var(--muted);
  }

/* ── REVEAL ANIMATIONS ───────────────────────── */
  .reveal {
    opacity: 0; transform: translateY(14px);
    transition: opacity .7s cubic-bezier(.2,.8,.2,1), transform .7s cubic-bezier(.2,.8,.2,1);
    will-change: opacity, transform;
  }
  .reveal.in-view { opacity: 1; transform: translateY(0); }
  .reveal-stagger > * {
    opacity: 0; transform: translateY(14px);
    transition: opacity .65s cubic-bezier(.2,.8,.2,1), transform .65s cubic-bezier(.2,.8,.2,1);
  }
  .reveal-stagger.in-view > * { opacity: 1; transform: translateY(0); }
  .reveal-stagger.in-view > *:nth-child(1) { transition-delay:    0ms; }
  .reveal-stagger.in-view > *:nth-child(2) { transition-delay:   80ms; }
  .reveal-stagger.in-view > *:nth-child(3) { transition-delay:  160ms; }
  .reveal-stagger.in-view > *:nth-child(4) { transition-delay:  240ms; }
  .reveal-stagger.in-view > *:nth-child(5) { transition-delay:  320ms; }
  .reveal-stagger.in-view > *:nth-child(6) { transition-delay:  400ms; }
  .reveal-stagger.in-view > *:nth-child(7) { transition-delay:  480ms; }
  .reveal-stagger.in-view > *:nth-child(8) { transition-delay:  560ms; }

/* ── FINAL CTA ────────────────────────────────── */
  .final-cta {
    background: var(--ink); color: var(--bg);
    padding: 6rem 0; text-align: center;
    position: relative; overflow: hidden;
  }
  .final-cta::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(circle 600px at var(--mx, 50%) var(--my, 50%), rgba(156,176,255,0.10), transparent 60%);
    pointer-events: none; opacity: 0; transition: opacity .3s;
  }
  .final-cta:hover::before { opacity: 1; }
  .final-cta > .container { position: relative; z-index: 1; }
  .final-cta h2 {
    font-size: clamp(32px, 4.5vw, 52px); font-weight: 500;
    letter-spacing: -0.03em; line-height: 1.06; margin-bottom: 1.2rem;
  }
  .final-cta h2 .accent { color: #0139B7; }
  .final-cta p { font-size: 16px; color: rgba(255,255,255,0.6); margin-bottom: 2rem; }
  .final-cta .btn-primary { background: var(--bg); color: var(--ink); }
  .final-cta .btn-primary:hover { background: #fff; }
  .final-cta .btn-ghost { background: transparent; color: var(--bg); border-color: rgba(255,255,255,0.2); }
  .final-cta .btn-ghost:hover { background: rgba(255,255,255,0.05); }
  .cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ───────────────────────────────────── */
  footer.site-footer {
    background: var(--bg); border-top: 1px solid var(--line);
    padding: 4rem 0 2rem;
  }
  .footer-top {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid var(--line);
  }
  .footer-brand { font-size: 18px; font-weight: 600; letter-spacing: -0.01em; margin-bottom: .8rem; }
  .footer-tag { font-size: 14px; color: var(--muted); line-height: 1.55; max-width: 320px; }
  .footer-col h5 {
    font-family: 'Space Mono', monospace;
    font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em;
    color: var(--muted-2); margin-bottom: 1rem; font-weight: 500;
  }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
  .footer-col a {
    font-size: 14px; color: var(--ink-2); text-decoration: none; transition: color .15s;
    background-image: linear-gradient(currentColor, currentColor);
    background-position: 0 100%; background-size: 0% 1px; background-repeat: no-repeat;
    transition: background-size .35s cubic-bezier(.2,.8,.2,1), color .15s; padding-bottom: 2px;
  }
  .footer-col a:hover { color: var(--accent); background-size: 100% 1px; }
  .footer-bottom {
    padding-top: 2rem; display: flex; justify-content: space-between; align-items: center;
    font-family: 'Space Mono', monospace; font-size: 12px; color: var(--muted-2);
  }
  .footer-bottom-links { display: flex; gap: 1.5rem; }
  .footer-bottom-links a { color: var(--muted-2); text-decoration: none; }
  .footer-bottom-links a:hover { color: var(--ink); }

/* ── NOISE TEXTURE ───────────────────────────── */
  body::before {
    content: ''; position: fixed; inset: 0;
    pointer-events: none; z-index: 200;
    background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
    opacity: 0.025; mix-blend-mode: multiply;
  }

/* ── PAGE HERO ANIMATIONS ────────────────────── */
  .page-hero::after {
    content: ''; position: absolute; top: -120px; right: -60px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(1,57,183,0.04) 0%, transparent 65%);
    pointer-events: none;
  }
  .page-hero h1 .word {
    display: inline-block;
    opacity: 0; transform: translateY(18px);
    animation: pageWordIn .65s cubic-bezier(.2,.8,.2,1) forwards;
  }
  .page-hero h1 .word:nth-child(1) { animation-delay: 0.08s; }
  .page-hero h1 .word:nth-child(2) { animation-delay: 0.16s; }
  .page-hero h1 .word:nth-child(3) { animation-delay: 0.24s; }
  .page-hero h1 .word:nth-child(4) { animation-delay: 0.32s; }
  @keyframes pageWordIn { to { opacity: 1; transform: translateY(0); } }
  .hero-anim-eyebrow {
    opacity: 0; transform: translateY(10px);
    animation: heroFadeUp .5s cubic-bezier(.2,.8,.2,1) forwards;
    animation-delay: 0.03s;
  }
  .hero-anim-rhs {
    opacity: 0; transform: translateY(16px);
    animation: heroFadeUp .6s cubic-bezier(.2,.8,.2,1) forwards;
    animation-delay: 0.38s;
  }
  @keyframes heroFadeUp { to { opacity: 1; transform: translateY(0); } }

/* ── RESPONSIVE ──────────────────────────────── */
  @media (max-width: 880px) {
    .nav-links { display: none; }
    .page-hero-grid { grid-template-columns: 1fr; gap: 2rem; }
    .cat-section-head { grid-template-columns: 1fr; gap: .5rem; }
    .section-num { display: none; }
    .acp-card { grid-template-columns: 1fr; gap: 2rem; }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .footer-brand-wrap { grid-column: 1 / -1; }
    :root { --pad-x: 1.25rem; }
  }

* { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    font-family: 'Space Grotesk', -apple-system, sans-serif;
    font-weight: 400; background: var(--bg); color: var(--ink);
    line-height: 1.55; -webkit-font-smoothing: antialiased;
  }
  .mono { font-family: 'Space Mono', ui-monospace, monospace; }
  .container { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad-x); }

/* ── NAV ─────────────────────────────────────── */
  nav.site-nav {
    position: sticky; top: 0; z-index: 100;
    background: rgba(250,250,247,0.85);
    backdrop-filter: saturate(180%) blur(14px);
    -webkit-backdrop-filter: saturate(180%) blur(14px);
    border-bottom: 1px solid var(--line);
    transition: backdrop-filter .3s, box-shadow .3s;
  }
  nav.site-nav.scrolled { box-shadow: 0 1px 0 var(--line); }
  .nav-inner {
    max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad-x);
    height: 64px; display: flex; align-items: center; justify-content: space-between;
    transition: height .3s cubic-bezier(.2,.8,.2,1);
  }
  nav.site-nav.scrolled .nav-inner { height: 56px; }
  .nav-logo {
    font-weight: 600; font-size: 17px; letter-spacing: -0.01em;
    color: var(--ink); text-decoration: none;
    display: flex; align-items: center; gap: 8px;
  }
  .nav-logo::before {
    content: ''; width: 18px; height: 18px; background: var(--ink); border-radius: 4px;
    mask: radial-gradient(circle at 30% 30%, transparent 0 4px, #000 5px);
    -webkit-mask: radial-gradient(circle at 30% 30%, transparent 0 4px, #000 5px);
  }
  .nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
  .nav-links a { font-size: 14px; color: var(--muted); text-decoration: none; transition: color .15s; }
  .nav-links a:hover { color: var(--ink); }
  .nav-links a.active { color: var(--ink); }
  .nav-cta-group { display: flex; align-items: center; gap: 14px; }
  .nav-cta-group a.login { font-size: 14px; color: var(--muted); text-decoration: none; }
  .nav-cta-group a.login:hover { color: var(--ink); }

/* ── BUTTONS ─────────────────────────────────── */
  .btn {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 10px 18px; font-family: inherit; font-size: 14px; font-weight: 500;
    border-radius: 8px; border: none; text-decoration: none; cursor: pointer;
    transition: all .15s ease;
  }
  .btn-primary { background: var(--ink); color: var(--bg); }
  .btn-primary:hover { background: var(--ink-2); transform: translateY(-1px); }
  .btn-ghost { background: transparent; color: var(--ink); border: 1px solid var(--line-2); }
  .btn-ghost:hover { background: var(--bg-warm); }

/* ── PAGE HEADER ─────────────────────────────── */
  .page-hero {
    background: var(--bg-card); border-bottom: 1px solid var(--line);
    padding: 5rem 0 4rem; position: relative; overflow: hidden;
  }
  .page-hero::after {
    content: ''; position: absolute; top: -120px; right: -60px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(1,57,183,0.04) 0%, transparent 65%);
    pointer-events: none;
  }
  .page-hero-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 4rem; align-items: end;
  }
  .eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: 'Space Mono', monospace;
    font-size: 11px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.08em;
    color: var(--muted); margin-bottom: 1.4rem;
  }
  .eyebrow::before { content: ''; width: 6px; height: 6px; background: var(--accent); border-radius: 50%; }
  .page-hero h1 {
    font-size: clamp(38px, 5vw, 60px); font-weight: 500;
    line-height: 1.04; letter-spacing: -0.03em;
  }
  .page-hero h1 .accent { color: var(--accent); }
  .page-hero h1 .em { font-style: italic; color: var(--muted); font-weight: 300; }
  .page-hero-rhs p {
    font-size: 16px; color: var(--muted); line-height: 1.65;
    margin-bottom: 1.8rem; max-width: 480px;
  }

/* ── VIEW TOGGLE ─────────────────────────────── */
  .view-toggle {
    display: inline-flex;
    background: var(--bg-warm); border: 1px solid var(--line-2);
    border-radius: 100px; padding: 4px;
  }
  .view-btn {
    background: none; border: none; padding: 8px 20px;
    font-family: inherit; font-size: 13px; font-weight: 500;
    border-radius: 100px; cursor: pointer; color: var(--muted); transition: all .15s;
  }
  .view-btn.active { background: var(--ink); color: var(--bg); }

/* ── SECTION WRAP ────────────────────────────── */
  .section-wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad-x); }

/* ── SECTION DIVIDER ─────────────────────────── */
  .section-divider {
    display: flex; align-items: center; gap: 1.5rem;
    padding: 3.5rem 0 2.5rem;
  }
  .section-divider-label {
    font-family: 'Space Mono', monospace;
    font-size: 11px; font-weight: 500; letter-spacing: 0.14em;
    text-transform: uppercase; color: var(--muted); white-space: nowrap;
  }
  .section-divider-line { flex: 1; height: 1px; background: var(--line-2); }
  .section-divider-desc {
    font-family: 'Space Mono', monospace;
    font-size: 11px; color: var(--muted-2); white-space: nowrap;
  }

/* ── INDIVIDUAL PRICING GRID ─────────────────── */
  .individual-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 14px; margin-bottom: 1rem;
  }

/* ── PRICE CARD ──────────────────────────────── */
  .price-card {
    background: var(--bg-card); border: 1px solid var(--line);
    border-radius: var(--radius-lg); padding: 2rem 1.8rem;
    display: flex; flex-direction: column; gap: 14px;
    transition: border-color .2s, box-shadow .2s, transform .2s cubic-bezier(.2,.8,.2,1);
  }
  .price-card:hover { border-color: var(--line-2); box-shadow: 0 8px 24px -8px rgba(10,10,10,0.1); transform: translateY(-2px); }
  .price-card.accent { border-color: rgba(1,57,183,0.25); background: #FAFBFF; }
  .price-card.sage-acc { border-color: var(--line-2); background: var(--bg-warm); }
  .price-card.clay-acc { border-color: var(--line-2); background: var(--bg-warm); }

.pc-eyebrow {
    font-family: 'Space Mono', monospace;
    font-size: 10px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase;
  }
  .pc-eyebrow.slate { color: var(--accent); }
  .pc-eyebrow.sand  { color: var(--muted); }
  .pc-eyebrow.sage  { color: var(--muted); }
  .pc-eyebrow.clay  { color: var(--muted); }

.pc-name { font-size: 22px; font-weight: 500; color: var(--ink); line-height: 1.2; letter-spacing: -0.01em; }

.pc-price-row { display: flex; align-items: baseline; gap: 6px; }
  .pc-price { font-size: 50px; font-weight: 500; color: var(--ink); line-height: 1; }
  .pc-price-unit {
    font-family: 'Space Mono', monospace;
    font-size: 13px; color: var(--muted);
  }

.pc-divider { border: none; border-top: 1px solid var(--line); }

.pc-desc { font-size: 13px; color: var(--muted); line-height: 1.65; flex: 1; }

.pc-includes { list-style: none; display: flex; flex-direction: column; gap: 8px; }
  .pc-includes li {
    font-size: 13px; color: var(--ink-2); padding-left: 18px;
    position: relative; line-height: 1.45;
  }
  .pc-includes li::before { content: '–'; position: absolute; left: 0; color: var(--muted-2); }

.pc-btn {
    display: block; width: 100%; text-align: center;
    background: var(--bg-warm); color: var(--ink); border: 1px solid var(--line-2);
    font-family: inherit; font-size: 13px; font-weight: 500;
    padding: 11px; border-radius: 8px; cursor: pointer;
    transition: all .15s; letter-spacing: 0.01em; text-decoration: none;
  }
  .pc-btn:hover { background: var(--ink); color: var(--bg); border-color: var(--ink); transform: translateY(-1px); }
  .pc-btn.dark { background: var(--ink); color: var(--bg); border-color: var(--ink); }
  .pc-btn.dark:hover { background: var(--ink-2); }

.pc-note {
    font-family: 'Space Mono', monospace;
    font-size: 11px; color: var(--muted); text-align: center;
  }

/* ── ACP SPECIAL ─────────────────────────────── */
  .acp-wide {
    display: grid; grid-template-columns: 1fr auto; gap: 3rem; align-items: center;
  }
  .acp-wide .pc-name { font-size: 26px; margin-bottom: 10px; }
  .acp-wide-right { text-align: center; min-width: 160px; }

/* ── SAVINGS AT A GLANCE ─────────────────────── */
  .savings-row {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 14px; margin-top: 14px; margin-bottom: 1rem;
  }
  .saving-card {
    background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--radius-lg);
    padding: 1.4rem 1.8rem;
    display: flex; align-items: center; justify-content: space-between; gap: 2rem;
    transition: border-color .2s, box-shadow .2s, transform .2s cubic-bezier(.2,.8,.2,1);
  }
  .saving-card:hover {
    border-color: var(--line-2);
    box-shadow: 0 6px 16px -6px rgba(10,10,10,0.08);
    transform: translateY(-1px);
  }
  .saving-eyebrow {
    font-family: 'Space Mono', monospace;
    font-size: 10px; font-weight: 500; letter-spacing: 0.12em;
    text-transform: uppercase; color: var(--muted); margin-bottom: 4px;
  }
  .saving-name { font-size: 18px; font-weight: 500; color: var(--ink); margin-bottom: 3px; letter-spacing: -0.01em; }
  .saving-desc { font-size: 12px; color: var(--muted); }
  .saving-right { text-align: right; flex-shrink: 0; }
  .saving-price { font-size: 34px; font-weight: 500; color: var(--ink); line-height: 1; }
  .saving-badge {
    font-family: 'Space Mono', monospace;
    font-size: 11px; color: var(--muted); margin-top: 3px;
  }

/* ── ENTERPRISE INTRO ────────────────────────── */
  .ent-intro {
    background: var(--bg-card); border: 1px solid var(--line);
    border-left: 3px solid var(--muted-2); border-radius: 0 var(--radius) var(--radius) 0;
    padding: 1.2rem 1.5rem; font-size: 14px; color: var(--ink-2); line-height: 1.7;
    margin-bottom: 2rem;
  }
  .ent-intro strong { color: var(--ink); font-weight: 500; }

/* ── ENTERPRISE PLAN GRID ────────────────────── */
  .ent-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 14px; margin-bottom: 1rem;
  }

.ent-card {
    background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--radius-lg);
    padding: 2rem 1.8rem; display: flex; flex-direction: column; gap: 16px;
    transition: border-color .2s, box-shadow .2s, transform .2s cubic-bezier(.2,.8,.2,1);
  }
  .ent-card:hover { border-color: var(--line-2); box-shadow: 0 8px 24px -8px rgba(10,10,10,0.1); transform: translateY(-2px); }
  .ent-card.featured:hover { border-color: rgba(1,57,183,0.4); box-shadow: 0 0 0 1px rgba(1,57,183,0.1), 0 16px 32px -8px rgba(1,57,183,0.12); transform: translateY(-2px); }
  .ent-card.dark:hover { border-color: var(--ink); transform: translateY(-2px); box-shadow: 0 16px 32px -8px rgba(0,0,0,0.3); }
  .ent-card.featured { border: 1.5px solid rgba(1,57,183,0.3); background: #FAFBFF; }
  .ent-card.dark { background: var(--ink); border-color: var(--ink); }

.ent-tier {
    font-family: 'Space Mono', monospace;
    font-size: 10px; font-weight: 500; letter-spacing: 0.12em;
    text-transform: uppercase; color: var(--muted-2);
  }
  .ent-card.dark .ent-tier { color: rgba(255,255,255,0.4); }
  .ent-card.featured .ent-tier { color: var(--accent); }

.ent-name { font-size: 24px; font-weight: 500; color: var(--ink); letter-spacing: -0.01em; }
  .ent-card.dark .ent-name { color: var(--bg); }

.ent-price-row { display: flex; align-items: baseline; gap: 5px; }
  .ent-price { font-size: 50px; font-weight: 500; color: var(--ink); line-height: 1; }
  .ent-card.dark .ent-price { color: var(--bg); }
  .ent-period {
    font-family: 'Space Mono', monospace;
    font-size: 13px; color: var(--muted);
  }
  .ent-card.dark .ent-period { color: rgba(255,255,255,0.45); }

.ent-divider { border: none; border-top: 1px solid var(--line); }
  .ent-card.dark .ent-divider { border-color: rgba(255,255,255,0.1); }

.ent-allowance {
    background: var(--bg-warm); border-radius: var(--radius);
    padding: 14px; text-align: center;
  }
  .ent-card.dark .ent-allowance { background: rgba(255,255,255,0.06); }
  .ent-card.featured .ent-allowance { background: var(--accent-l); }

.ent-allow-num {
    font-size: 40px; font-weight: 500; color: var(--ink);
    line-height: 1; display: block;
  }
  .ent-card.dark .ent-allow-num { color: var(--bg); }
  .ent-card.featured .ent-allow-num { color: var(--accent); }
  .ent-allow-label {
    font-family: 'Space Mono', monospace;
    font-size: 11px; color: var(--muted); display: block; margin-top: 2px;
  }
  .ent-card.dark .ent-allow-label { color: rgba(255,255,255,0.4); }

.ent-features { list-style: none; display: flex; flex-direction: column; gap: 8px; flex: 1; }
  .ent-features li {
    font-size: 13px; color: var(--ink-2); padding-left: 18px;
    position: relative; line-height: 1.45;
  }
  .ent-card.dark .ent-features li { color: rgba(255,255,255,0.65); }
  .ent-features li::before { content: '–'; position: absolute; left: 0; color: var(--muted-2); }
  .ent-card.dark .ent-features li::before { color: rgba(255,255,255,0.2); }

.ent-btn {
    display: block; width: 100%; text-align: center;
    background: var(--bg-warm); color: var(--ink); border: 1px solid var(--line-2);
    font-family: inherit; font-size: 13px; font-weight: 500;
    padding: 11px; border-radius: 8px; cursor: pointer; transition: all .15s;
    text-decoration: none;
  }
  .ent-btn:hover { background: var(--ink); color: var(--bg); border-color: var(--ink); transform: translateY(-1px); }
  .ent-card.featured .ent-btn { background: var(--ink); color: var(--bg); border-color: var(--ink); }
  .ent-card.featured .ent-btn:hover { background: var(--ink-2); }
  .ent-card.dark .ent-btn { background: rgba(255,255,255,0.1); color: var(--bg); border-color: rgba(255,255,255,0.15); }
  .ent-card.dark .ent-btn:hover { background: rgba(255,255,255,0.18); }

/* ── COMPARISON TABLE ────────────────────────── */
  .compare-table {
    width: 100%; border-collapse: collapse; margin-bottom: 1rem;
    font-size: 13px; background: var(--bg-card);
    border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden;
  }
  .compare-table th {
    text-align: left; padding: 14px 16px;
    font-weight: 500; font-size: 12px; color: var(--muted);
    background: var(--bg-warm); border-bottom: 1px solid var(--line);
  }
  .compare-table th:first-child {
    font-family: 'Space Mono', monospace;
    font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase;
  }
  .compare-table td {
    padding: 13px 16px; border-bottom: 1px solid var(--line);
    color: var(--ink-2); vertical-align: middle;
  }
  .compare-table tr:last-child td { border-bottom: none; }
  .compare-table tr:hover td { background: rgba(0,0,0,0.015); }
  .compare-table td:first-child { color: var(--ink); font-weight: 400; }
  .col-featured { background: #FAFBFF !important; }
  .check { color: var(--ink); font-size: 14px; font-weight: 600; }
  .dash { color: var(--line-2); font-size: 16px; }

/* ── FAQ ─────────────────────────────────────── */
  .faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 4rem; }
  .faq-grid .faq-item {
    background: var(--bg-card); border: 1px solid var(--line);
    border-radius: var(--radius-lg); padding: 1.4rem 1.6rem;
    transition: border-color .2s, box-shadow .2s;
  }
  .faq-grid .faq-item:hover {
    border-color: var(--line-2);
    box-shadow: 0 4px 12px -4px rgba(10,10,10,0.06);
  }
  .faq-q { font-size: 14px; font-weight: 500; color: var(--ink); margin-bottom: 8px; line-height: 1.4; }
  .faq-a { font-size: 13px; color: var(--muted); line-height: 1.65; }

/* ── CTA BAND ────────────────────────────────── */
  .cta-band {
    background: var(--ink); margin-bottom: 4rem;
    border-radius: var(--radius-lg); padding: 3rem;
    display: flex; align-items: center; justify-content: space-between;
    gap: 2rem; flex-wrap: wrap;
    position: relative; overflow: hidden;
  }
  .cta-band::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(circle 400px at var(--mx, 50%) var(--my, 50%), rgba(156,176,255,0.12), transparent 60%);
    pointer-events: none; opacity: 0; transition: opacity .3s;
  }
  .cta-band:hover::before { opacity: 1; }
  .cta-band > * { position: relative; z-index: 1; }
  .cta-left h2 {
    font-size: clamp(26px, 3vw, 34px); font-weight: 500;
    color: var(--bg); letter-spacing: -0.02em; margin-bottom: 6px;
  }
  .cta-left h2 .em { font-style: italic; font-weight: 300; color: rgba(255,255,255,0.7); }
  .cta-left p { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.6; max-width: 440px; }
  .cta-btns { display: flex; gap: 10px; flex-wrap: wrap; }
  .cta-btn-primary {
    background: var(--bg); color: var(--ink); border: none;
    font-family: inherit; font-size: 13px; font-weight: 500;
    padding: 11px 24px; border-radius: 8px; cursor: pointer; transition: background .15s;
    white-space: nowrap;
  }
  .cta-btn-primary:hover { background: #fff; }
  .cta-btn-secondary {
    background: transparent; color: rgba(255,255,255,0.7);
    border: 1px solid rgba(255,255,255,0.2);
    font-family: inherit; font-size: 13px; font-weight: 400;
    padding: 11px 24px; border-radius: 8px; cursor: pointer;
    transition: all .15s; white-space: nowrap;
  }
  .cta-btn-secondary:hover { color: var(--bg); border-color: rgba(255,255,255,0.4); }

/* ── REVEAL ANIMATIONS ───────────────────────── */
  .reveal {
    opacity: 0; transform: translateY(14px);
    transition: opacity .7s cubic-bezier(.2,.8,.2,1), transform .7s cubic-bezier(.2,.8,.2,1);
    will-change: opacity, transform;
  }
  .reveal.in-view { opacity: 1; transform: translateY(0); }
  .reveal-stagger > * {
    opacity: 0; transform: translateY(14px);
    transition: opacity .65s cubic-bezier(.2,.8,.2,1), transform .65s cubic-bezier(.2,.8,.2,1);
  }
  .reveal-stagger.in-view > * { opacity: 1; transform: translateY(0); }
  .reveal-stagger.in-view > *:nth-child(1) { transition-delay:    0ms; }
  .reveal-stagger.in-view > *:nth-child(2) { transition-delay:   90ms; }
  .reveal-stagger.in-view > *:nth-child(3) { transition-delay:  180ms; }
  .reveal-stagger.in-view > *:nth-child(4) { transition-delay:  270ms; }
  .reveal-stagger.in-view > *:nth-child(5) { transition-delay:  360ms; }

/* ── FOOTER ───────────────────────────────────── */
  footer.site-footer {
    background: var(--bg); border-top: 1px solid var(--line);
    padding: 4rem 0 2rem;
  }
  .footer-top {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid var(--line);
  }
  .footer-brand { font-size: 18px; font-weight: 600; letter-spacing: -0.01em; margin-bottom: .8rem; }
  .footer-tag { font-size: 14px; color: var(--muted); line-height: 1.55; max-width: 320px; }
  .footer-col h5 {
    font-family: 'Space Mono', monospace;
    font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em;
    color: var(--muted-2); margin-bottom: 1rem; font-weight: 500;
  }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
  .footer-col a {
    font-size: 14px; color: var(--ink-2); text-decoration: none;
    background-image: linear-gradient(currentColor, currentColor);
    background-position: 0 100%; background-size: 0% 1px; background-repeat: no-repeat;
    transition: background-size .35s cubic-bezier(.2,.8,.2,1), color .15s; padding-bottom: 2px;
  }
  .footer-col a:hover { color: var(--accent); background-size: 100% 1px; }
  .footer-bottom {
    padding-top: 2rem; display: flex; justify-content: space-between; align-items: center;
    font-family: 'Space Mono', monospace; font-size: 12px; color: var(--muted-2);
  }
  .footer-bottom-links { display: flex; gap: 1.5rem; }
  .footer-bottom-links a { color: var(--muted-2); text-decoration: none; }
  .footer-bottom-links a:hover { color: var(--ink); }

/* ── PAGE HERO ANIMATIONS ────────────────────── */
  .page-hero h1 .word {
    display: inline-block;
    opacity: 0; transform: translateY(18px);
    animation: pageWordIn .65s cubic-bezier(.2,.8,.2,1) forwards;
  }
  .page-hero h1 .word:nth-child(1) { animation-delay: 0.08s; }
  .page-hero h1 .word:nth-child(2) { animation-delay: 0.16s; }
  .page-hero h1 .word:nth-child(3) { animation-delay: 0.24s; }
  .page-hero h1 .word:nth-child(4) { animation-delay: 0.32s; }
  @keyframes pageWordIn { to { opacity: 1; transform: translateY(0); } }
  .hero-anim-eyebrow {
    opacity: 0; transform: translateY(10px);
    animation: heroFadeUp .5s cubic-bezier(.2,.8,.2,1) forwards;
    animation-delay: 0.03s;
  }
  .hero-anim-rhs {
    opacity: 0; transform: translateY(16px);
    animation: heroFadeUp .6s cubic-bezier(.2,.8,.2,1) forwards;
    animation-delay: 0.38s;
  }
  @keyframes heroFadeUp { to { opacity: 1; transform: translateY(0); } }

/* ── RESPONSIVE ──────────────────────────────── */
  @media (max-width: 900px) {
    .nav-links { display: none; }
    .page-hero-grid { grid-template-columns: 1fr; gap: 2rem; }
    .individual-grid { grid-template-columns: 1fr; }
    .ent-grid { grid-template-columns: 1fr; }
    .savings-row { grid-template-columns: 1fr; }
    .faq-grid { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .footer-brand-wrap { grid-column: 1 / -1; }
    .acp-wide { grid-template-columns: 1fr; gap: 2rem; }
    :root { --pad-x: 1.25rem; }
  }

