  :root {
    /* OneSolve brand tokens — synced with onesolve-main-redesign-2026.webflow/index.html */
    --navy: #1e1c3a;
    --navy-mid: #2d2a52;
    --red: #b93a3f;
    --red-light: #e87a7d;
    --red-pale: #fdf0f0;
    --cream: #f8f6f0;
    --cream-mid: #ede9df;

    --text: #1a1a2e;
    --text-mid: #4a4a6a;
    --text-light: #666680;

    --border: rgba(30, 28, 58, 0.1);
    --border-mid: rgba(30, 28, 58, 0.18);
    --white: #ffffff;

    --green: #2d7a5f;
    --green-pale: #edf6f2;
    --blue: #2a5caa;
    --blue-pale: #eef3fc;
    --amber: #9a6115;
    --amber-pale: #fef9ee;

    --radius-btn: 6px;
    --radius-card: 14px;
    --radius-panel: 16px;
    --container: 1100px;
    --section-pad-y: 96px;
    --section-pad-x: 48px;

    /* Aliases — keep prototype rules working without rewriting every selector */
    --navy-deep: var(--navy-mid);
    --cream-deep: var(--cream-mid);
    --text-muted: var(--text-mid);
    --text-soft: var(--text-light);

    /* Prototype-only — Webflow has no equivalent, keep as-is */
    --shadow-sm: 0 1px 2px rgba(20, 18, 42, 0.06);
    --shadow-md: 0 4px 16px rgba(20, 18, 42, 0.08);
    --shadow-lg: 0 12px 40px rgba(20, 18, 42, 0.12);
  }
  * { box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body {
    margin: 0;
    background: var(--cream);
    color: var(--text);
    font-family: "DM Sans", -apple-system, system-ui, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }

  .container { max-width: 1180px; margin: 0 auto; padding: 0 32px; }

  /* Award banner + Nav — matches sitewide pattern */
  .award-banner {
    background: linear-gradient(90deg, var(--navy) 0%, var(--navy-mid) 100%);
    padding: 10px 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
  }
  .award-text {
    font-size: 12px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.3px;
  }
  .award-text strong { color: #fff; }
  .award-div {
    width: 1px;
    height: 14px;
    background: rgba(255, 255, 255, 0.2);
  }
  nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.93);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: 0 48px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .nav-logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    line-height: 0;
  }
  .nav-logo img {
    height: 32px;
    width: auto;
    display: block;
  }
  .nav-links {
    display: flex;
    gap: 28px;
    align-items: center;
  }
  .nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-mid);
    text-decoration: none;
    transition: color 0.2s;
  }
  .nav-links a:hover,
  .nav-links a.active { color: var(--navy); }
  .nav-cta {
    background: var(--navy);
    color: #fff !important;
    padding: 9px 20px;
    border-radius: 6px;
    font-size: 13px !important;
    font-weight: 600 !important;
    transition: background 0.2s !important;
  }
  .nav-cta:hover { background: var(--navy-mid) !important; }
  .nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 28px;
    height: 20px;
    padding: 0;
    position: relative;
    flex-direction: column;
    justify-content: space-between;
  }
  .nav-toggle span {
    display: block;
    height: 2px;
    background: var(--navy);
    width: 100%;
    border-radius: 1px;
    transition: transform 0.25s ease, opacity 0.2s ease;
  }
  .nav-toggle[aria-expanded='true'] span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
  .nav-toggle[aria-expanded='true'] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded='true'] span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }
  @media (max-width: 900px) {
    nav { padding: 0 20px; position: relative; }
    .award-banner { padding: 8px 16px; gap: 8px; }
    .award-text { font-size: 11px; text-align: center; }
    .award-banner .award-div,
    .award-banner .award-div ~ .award-text { display: none; }
    .nav-toggle { display: flex; }
    .nav-links {
      flex-direction: column;
      gap: 0;
      align-items: stretch;
      position: absolute;
      top: 64px;
      left: 0;
      right: 0;
      background: var(--white);
      box-shadow: 0 12px 24px rgba(30, 28, 58, 0.12);
      border-bottom: 1px solid var(--border);
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease;
    }
    .nav-links.open { max-height: calc(100vh - 64px); overflow-y: auto; }
    .nav-links a { padding: 16px 20px; border-top: 1px solid var(--border); font-size: 15px; }
    .nav-links a.nav-cta { margin: 12px 20px; padding: 12px 20px; text-align: center; border-top: 0; }
  }
  /* ===== NAV DROPDOWN ===== */
  @media (min-width: 901px) {
    .nav-item { position: relative; }
    .nav-item::after { content: ''; display: block; position: absolute; top: 100%; left: -80px; right: -80px; height: 24px; }
    .nav-item > a { display: inline-flex; align-items: center; gap: 4px; }
    .nav-caret { font-size: 9px; line-height: 1; display: inline-block; transition: transform 0.2s; opacity: 0.6; }
    .nav-item:hover .nav-caret { transform: rotate(180deg); }
    .nav-dropdown {
      position: absolute;
      top: calc(100% + 16px);
      left: 50%;
      transform: translateX(-50%) translateY(-6px);
      background: var(--white);
      border: 1px solid var(--border-mid);
      border-radius: 12px;
      box-shadow: 0 8px 32px rgba(30,28,58,0.12);
      min-width: 188px;
      padding: 6px;
      display: none;
      z-index: 200;
    }
    .nav-item:hover .nav-dropdown,
    .nav-item:focus-within .nav-dropdown,
    .nav-item.open .nav-dropdown { display: block; transform: translateX(-50%) translateY(0); }
    .nav-dropdown a {
      display: block;
      padding: 9px 14px;
      border-radius: 8px;
      font-size: 13px;
      color: var(--text-mid);
      white-space: nowrap;
    }
    .nav-dropdown a:hover { color: var(--navy); background: var(--cream); }
  }
  @media (max-width: 900px) {
    .nav-item { flex-direction: column; align-items: stretch; }
    .nav-dropdown {
      position: static; transform: none; opacity: 1; pointer-events: auto;
      box-shadow: none; border: none; border-radius: 0; padding: 0;
      background: rgba(30,28,58,0.04); display: block; min-width: auto;
    }
    .nav-caret { display: none; }
    .nav-dropdown a {
      display: block;
      padding: 12px 20px 12px 36px;
      border-top: 1px solid var(--border);
      font-size: 14px;
      border-radius: 0;
      white-space: normal;
      color: var(--text-mid);
    }
    .nav-dropdown a:hover { background: rgba(30,28,58,0.05); color: var(--navy); }
  }

  /* Hero */
  section.hero {
    position: relative;
    padding: 68px 0 56px;
    overflow: hidden;
    border-bottom: 1px solid var(--border);
  }
  .hero::before {
    content: "";
    position: absolute;
    top: -150px; right: -200px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, var(--red-pale) 0%, transparent 60%);
    opacity: 0.6;
    pointer-events: none;
  }
  .hero-inner { position: relative; max-width: 920px; }
  .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: "JetBrains Mono", monospace;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--red);
    margin: 0 0 22px;
    padding: 6px 12px;
    background: var(--red-pale);
    border-radius: 4px;
  }
  .eyebrow::before {
    content: "";
    width: 6px; height: 6px;
    background: var(--red);
    border-radius: 50%;
  }
  .hero h1 {
    font-family: "DM Serif Display", serif;
    font-weight: 400;
    font-size: clamp(40px, 5.6vw, 72px);
    line-height: 1.02;
    letter-spacing: -2px;
    margin: 0 0 24px;
    color: var(--navy);
  }
  .hero h1 em {
    font-style: italic;
    color: var(--red);
  }
  .hero-sub {
    font-size: 19px;
    line-height: 1.55;
    color: var(--text-mid);
    max-width: 680px;
    margin: 0 0 28px;
  }
  .icp-signal {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: "JetBrains Mono", monospace;
    font-size: 12px;
    color: var(--text-soft);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 8px 14px;
    border: 1px dashed var(--border);
    border-radius: 4px;
    margin: 0 0 36px;
  }
  .icp-signal strong { color: var(--navy); font-weight: 500; }

  .cta-row { display: flex; gap: 14px; flex-wrap: wrap; margin: 0 0 44px; }
  .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 22px;
    font-size: 15px;
    font-weight: 500;
    border-radius: 4px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.2s;
  }
  .btn-primary {
    background: var(--navy);
    color: var(--cream);
  }
  .btn-primary:hover { background: var(--red); }
  .btn-secondary {
    background: transparent;
    color: var(--navy);
    border: 1px solid var(--navy);
  }
  .btn-secondary:hover { background: var(--navy); color: var(--cream); }
  .btn .arrow { transition: transform 0.2s; }
  .btn:hover .arrow { transform: translateX(4px); }

  .pedigree {
    padding-top: 32px;
    border-top: 1px solid var(--border);
  }
  .pedigree-label {
    font-family: "JetBrains Mono", monospace;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-soft);
    margin: 0 0 14px;
  }
  .pedigree-row {
    display: flex; gap: 36px; flex-wrap: wrap; align-items: center;
    font-family: "DM Serif Display", serif;
    font-size: 22px;
    color: var(--navy);
    letter-spacing: -0.4px;
  }
  .pedigree-row span { color: var(--border); font-weight: 300; }

  /* Generic section */
  section {
    padding: 88px 0;
    border-bottom: 1px solid var(--border);
  }
  section.alt { background: var(--cream-deep); }
  section.dark { background: var(--navy); color: rgba(255,255,255,0.92); border-bottom-color: var(--navy-deep); }

  .section-eyebrow {
    font-family: "JetBrains Mono", monospace;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--red);
    margin: 0 0 14px;
  }
  .dark .section-eyebrow { color: var(--red-light); }
  .section-title {
    font-family: "DM Serif Display", serif;
    font-weight: 400;
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.08;
    letter-spacing: -1.2px;
    margin: 0 0 20px;
    color: var(--navy);
    max-width: 800px;
  }
  .dark .section-title { color: white; }
  .section-sub {
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-mid);
    max-width: 720px;
    margin: 0 0 48px;
  }
  .dark .section-sub { color: rgba(255,255,255,0.75); }

  /* Stalled-genie cards */
  .pattern-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .pattern {
    background: white;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 32px 28px;
    transition: all 0.25s;
    position: relative;
  }
  .pattern:hover {
    border-color: var(--red);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
  }
  .pattern-tag {
    display: inline-block;
    font-family: "JetBrains Mono", monospace;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--red);
    background: var(--red-pale);
    padding: 4px 10px;
    border-radius: 3px;
    margin: 0 0 18px;
  }
  .pattern h3 {
    font-family: "DM Serif Display", serif;
    font-weight: 400;
    font-size: 26px;
    line-height: 1.15;
    margin: 0 0 14px;
    color: var(--navy);
    letter-spacing: -0.5px;
  }
  .pattern p {
    margin: 0 0 16px;
    color: var(--text-mid);
    font-size: 15px;
    line-height: 1.55;
  }
  .pattern .said {
    font-family: "DM Sans", sans-serif;
    font-size: 13px;
    color: var(--text-soft);
    font-style: italic;
    padding-top: 14px;
    border-top: 1px dashed var(--border);
  }
  .pattern .said strong { color: var(--navy); font-style: normal; }

  .pattern-close {
    margin-top: 40px;
    padding: 24px 28px;
    background: var(--navy);
    color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
  }
  .pattern-close p {
    margin: 0;
    font-size: 17px;
    font-weight: 500;
  }
  .pattern-close .btn-primary {
    background: var(--red);
    color: white;
  }

  /* Outcomes strip */
  .outcomes {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
  }
  .outcome {
    padding: 0 8px;
  }
  .outcome-num {
    font-family: "DM Serif Display", serif;
    font-size: clamp(40px, 4.5vw, 58px);
    line-height: 1;
    color: var(--navy);
    letter-spacing: -1.5px;
    margin: 0 0 8px;
  }
  .outcome-num em { font-style: normal; color: var(--red); }
  .dark .outcome-num { color: white; }
  .dark .outcome-num em { color: var(--red-light); }
  .outcome-label {
    font-size: 14px;
    color: var(--text-mid);
    line-height: 1.4;
    margin: 0 0 6px;
  }
  .dark .outcome-label { color: rgba(255,255,255,0.85); }
  .outcome-source {
    font-family: "JetBrains Mono", monospace;
    font-size: 10px;
    color: var(--text-soft);
    text-transform: uppercase;
    letter-spacing: 0.08em;
  }
  .dark .outcome-source { color: rgba(255,255,255,0.5); }

  /* Tiers */
  .tier-frame {
    margin-bottom: 32px;
    padding: 14px 20px;
    background: var(--cream);
    border-left: 3px solid var(--red);
    font-size: 14px;
    color: var(--text-mid);
    font-style: italic;
  }
  .tier-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .tier {
    background: white;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  }
  .tier:not(.featured):hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--border-mid);
  }
  .tier.featured {
    background: var(--navy);
    color: white;
    border-color: var(--navy);
    position: relative;
  }
  .tier.featured::before {
    content: "MOST COMMON";
    position: absolute;
    top: -10px; left: 50%;
    transform: translateX(-50%);
    background: var(--red);
    color: white;
    font-family: "JetBrains Mono", monospace;
    font-size: 10px;
    letter-spacing: 0.12em;
    padding: 4px 12px;
    border-radius: 3px;
  }
  .tier-name {
    font-family: "JetBrains Mono", monospace;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--red);
    margin: 0 0 12px;
  }
  .tier.featured .tier-name { color: var(--red-light); }
  .tier h3 {
    font-family: "DM Serif Display", serif;
    font-weight: 400;
    font-size: 30px;
    line-height: 1.1;
    margin: 0 0 8px;
    letter-spacing: -0.6px;
    color: inherit;
  }
  .tier-time {
    font-size: 14px;
    color: var(--text-soft);
    margin: 0 0 22px;
  }
  .tier.featured .tier-time { color: rgba(255,255,255,0.6); }
  .tier ul {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    flex-grow: 1;
  }
  .tier li {
    font-size: 14px;
    line-height: 1.5;
    padding: 10px 0 10px 24px;
    border-bottom: 1px solid var(--border);
    position: relative;
    color: var(--text-mid);
  }
  .tier.featured li {
    border-bottom-color: rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.85);
  }
  .tier li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--red);
    font-weight: 500;
  }
  .tier.featured li::before { color: var(--red-light); }
  .tier-cta {
    font-family: "JetBrains Mono", monospace;
    font-size: 12px;
    color: var(--red);
    text-decoration: none;
    border-bottom: 1px dashed var(--red);
    padding-bottom: 2px;
    align-self: flex-start;
  }
  .tier.featured .tier-cta { color: var(--red-light); border-bottom-color: var(--red-light); }

  /* What we don't do */
  .dont-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px 36px;
    margin-top: 12px;
  }
  .dont-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .dont-x {
    font-family: "DM Serif Display", serif;
    font-size: 28px;
    color: var(--red);
    line-height: 0.8;
    flex-shrink: 0;
    margin-top: 4px;
  }
  .dont-text {
    font-size: 17px;
    color: white;
    font-weight: 500;
    line-height: 1.4;
  }
  .dont-text small {
    display: block;
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    font-weight: 400;
    margin-top: 4px;
    font-style: italic;
  }

  /* Layers */
  .layers {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 8px;
  }
  .layer {
    background: white;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 24px 22px;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  }
  .layer:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--border-mid);
  }
  .layer-num {
    font-family: "JetBrains Mono", monospace;
    font-size: 11px;
    color: var(--text-soft);
    letter-spacing: 0.12em;
    margin: 0 0 12px;
  }
  .layer-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 8px;
    vertical-align: middle;
  }
  .layer-dot.l1 { background: var(--green); }
  .layer-dot.l2 { background: var(--blue); }
  .layer-dot.l3 { background: var(--amber); }
  .layer-dot.l4 { background: var(--red); }
  .layer h3 {
    font-family: "DM Sans", sans-serif;
    font-size: 17px;
    font-weight: 600;
    margin: 0 0 10px;
    color: var(--navy);
  }
  .layer p {
    margin: 0;
    color: var(--text-mid);
    font-size: 14px;
    line-height: 1.5;
  }

  /* Team */
  .team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .person {
    background: white;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 32px;
    display: flex;
    gap: 22px;
    align-items: flex-start;
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  }
  .person:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--border-mid);
  }
  .person-avatar {
    width: 64px; height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--navy), var(--red));
    color: white;
    font-family: "DM Serif Display", serif;
    font-size: 24px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    letter-spacing: -0.5px;
  }
  .person h3 {
    font-family: "DM Serif Display", serif;
    font-weight: 400;
    font-size: 22px;
    margin: 0 0 2px;
    color: var(--navy);
    letter-spacing: -0.4px;
  }
  .person .role {
    font-family: "JetBrains Mono", monospace;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--red);
    margin: 0 0 12px;
  }
  .person p {
    margin: 0 0 10px;
    font-size: 14px;
    color: var(--text-mid);
    line-height: 1.55;
  }
  .person .past {
    font-family: "JetBrains Mono", monospace;
    font-size: 11px;
    color: var(--text-soft);
    letter-spacing: 0.06em;
  }

  /* Proof */
  .quote-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 20px;
  }
  .quote {
    background: white;
    border-radius: 8px;
    padding: 32px 28px;
    border: 1px solid var(--border);
    display: flex; flex-direction: column;
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  }
  .quote:not(.featured):hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--border-mid);
  }
  .quote.featured {
    background: var(--navy);
    color: white;
    border-color: var(--navy);
  }
  .quote-mark {
    font-family: "DM Serif Display", serif;
    font-size: 56px;
    line-height: 0.6;
    color: var(--red);
    opacity: 0.5;
    margin: 0 0 12px;
  }
  .quote.featured .quote-mark { color: var(--red-light); opacity: 0.7; }
  .quote-text {
    font-family: "DM Sans", sans-serif;
    font-size: 17px;
    line-height: 1.5;
    color: var(--navy);
    flex-grow: 1;
    margin: 0 0 22px;
  }
  .quote.featured .quote-text { color: white; font-size: 19px; }
  .quote-role {
    font-family: "JetBrains Mono", monospace;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-soft);
    line-height: 1.5;
  }
  .quote.featured .quote-role { color: rgba(255,255,255,0.6); }
  .quote-role strong { color: var(--navy); font-weight: 500; }
  .quote.featured .quote-role strong { color: white; }

  .proof-cta {
    margin: 36px 0 0;
    text-align: center;
    font-family: "JetBrains Mono", monospace;
    font-size: 13px;
  }
  .proof-cta a {
    color: var(--red);
    text-decoration: none;
    border-bottom: 1px dashed var(--red);
    padding-bottom: 2px;
    letter-spacing: 0.04em;
  }
  .proof-cta a:hover { color: var(--navy); border-bottom-color: var(--navy); }
  .proof-rating {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--text-soft);
    font-family: "JetBrains Mono", monospace;
    font-size: 12px;
    letter-spacing: 0.06em;
    margin-left: 12px;
  }
  .proof-rating .stars { color: #b8860b; letter-spacing: 0.04em; }

  /* Reviews slider */
  .quote-slider { position: relative; }
  .quote-slider .quote-grid {
    display: flex !important;
    grid-template-columns: none !important;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--border) transparent;
    padding: 4px 4px 14px;
    -webkit-overflow-scrolling: touch;
  }
  .quote-slider .quote {
    scroll-snap-align: start;
    flex: 0 0 calc((100% - 40px) / 3);
    min-width: 300px;
  }
  .quote-slider .quote-grid::-webkit-scrollbar { height: 6px; }
  .quote-slider .quote-grid::-webkit-scrollbar-track { background: transparent; }
  .quote-slider .quote-grid::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }
  .slider-nav {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-top: 24px;
  }
  .slider-nav button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: white;
    color: var(--navy);
    font-size: 22px;
    line-height: 1;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
  }
  .slider-nav button:hover {
    background: var(--navy);
    color: white;
    border-color: var(--navy);
  }
  @media (max-width: 960px) {
    .quote-slider .quote { flex: 0 0 85%; }
  }

  /* CTA section */
  section.final {
    background: var(--navy);
    color: white;
    text-align: center;
    padding: 96px 0;
  }
  section.final h2 {
    font-family: "DM Serif Display", serif;
    font-weight: 400;
    font-size: clamp(36px, 5vw, 64px);
    line-height: 1.05;
    letter-spacing: -1.5px;
    color: white;
    margin: 0 0 18px;
  }
  section.final h2 em { color: var(--red-light); font-style: italic; }
  section.final p {
    font-size: 18px;
    color: rgba(255,255,255,0.75);
    margin: 0 auto 36px;
    max-width: 640px;
  }
  .final-cta-row {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
  }
  section.final .btn-primary { background: var(--red); }
  section.final .btn-primary:hover { background: white; color: var(--navy); }
  section.final .btn-secondary { color: white; border-color: rgba(255,255,255,0.3); }
  section.final .btn-secondary:hover { background: white; color: var(--navy); border-color: white; }
  .reply-sla {
    margin-top: 28px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: "JetBrains Mono", monospace;
    font-size: 12px;
    color: rgba(255,255,255,0.55);
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }
  .pulse {
    width: 8px; height: 8px; border-radius: 50%;
    background: #6fcf97;
    box-shadow: 0 0 0 0 rgba(111, 207, 151, 0.7);
    animation: pulse 2s infinite;
  }
  @keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(111, 207, 151, 0.7); }
    70% { box-shadow: 0 0 0 12px rgba(111, 207, 151, 0); }
    100% { box-shadow: 0 0 0 0 rgba(111, 207, 151, 0); }
  }

  /* Footer */
  footer {
    background: var(--navy-deep);
    color: rgba(255,255,255,0.55);
    padding: 40px 0 28px;
    font-size: 13px;
  }
  footer .container { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 18px; }
  footer .links { display: flex; gap: 22px; flex-wrap: wrap; }
  footer a { color: rgba(255,255,255,0.65); text-decoration: none; }
  footer a:hover { color: white; }

  /* Trusted-by strip — auto-scrolling marquee */
  .trust-strip {
    padding: 40px 0 36px;
    background: var(--cream);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
  }
  .trust-label {
    font-family: "JetBrains Mono", monospace;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--text-soft);
    margin: 0 0 20px;
    text-align: center;
  }
  .trust-row-wrap {
    width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  }
  .trust-row {
    display: flex;
    width: max-content;
    gap: 64px;
    align-items: center;
    animation: trust-scroll 55s linear infinite;
  }
  .trust-row:hover { animation-play-state: paused; }
  .trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    cursor: default;
  }
  .trust-logo {
    height: 36px;
    width: auto;
    max-width: 130px;
    object-fit: contain;
    opacity: 0.8;
    mix-blend-mode: multiply;
    transition: opacity 0.25s;
    display: block;
  }
  .trust-item:hover .trust-logo {
    opacity: 1;
  }
  .trust-name {
    font-family: "JetBrains Mono", monospace;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-light);
    white-space: nowrap;
    transition: color 0.25s;
  }
  .trust-item:hover .trust-name {
    color: var(--navy);
  }
  @keyframes trust-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }
  @media (prefers-reduced-motion: reduce) {
    .trust-row { animation: none; }
  }

  /* Solutions grid */
  .solutions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .solution {
    background: white;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 32px 28px;
    transition: all 0.25s;
    display: flex;
    flex-direction: column;
  }
  .solution:hover {
    border-color: var(--red);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
  }
  .solution-tag {
    display: inline-block;
    font-family: "JetBrains Mono", monospace;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--red);
    background: var(--red-pale);
    padding: 4px 10px;
    border-radius: 3px;
    margin: 0 0 18px;
    align-self: flex-start;
  }
  .solution h3 {
    font-family: "DM Serif Display", serif;
    font-weight: 400;
    font-size: 26px;
    line-height: 1.15;
    margin: 0 0 14px;
    color: var(--navy);
    letter-spacing: -0.5px;
  }
  .solution p {
    margin: 0 0 18px;
    color: var(--text-mid);
    font-size: 15px;
    line-height: 1.55;
    flex-grow: 1;
  }
  .solution-metric {
    font-family: "JetBrains Mono", monospace;
    font-size: 12px;
    color: var(--navy);
    background: var(--cream-deep);
    padding: 10px 12px;
    border-radius: 4px;
    margin: 0 0 16px;
    border-left: 2px solid var(--red);
    line-height: 1.4;
  }
  .solution-cta {
    font-family: "JetBrains Mono", monospace;
    font-size: 12px;
    color: var(--red);
    text-decoration: none;
    border-bottom: 1px dashed var(--red);
    padding-bottom: 2px;
    align-self: flex-start;
    letter-spacing: 0.04em;
  }

  /* Layer case study tiles — auto-aligned at bottom of card via flex */
  .layer-case {
    margin-top: auto;
    padding: 12px 14px;
    background: var(--cream);
    border: 1px solid var(--border);
    border-left: 3px solid var(--red);
    border-radius: 4px;
  }
  .layer p { margin-bottom: 14px; }
  .layer-case-tag {
    font-family: "JetBrains Mono", monospace;
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--red);
    margin: 0 0 4px;
  }
  .layer-case-headline {
    font-size: 12px;
    font-weight: 600;
    color: var(--navy);
    line-height: 1.35;
    margin: 0 0 6px;
  }
  .layer-case-link {
    font-family: "JetBrains Mono", monospace;
    font-size: 10px;
    color: var(--red);
    text-decoration: none;
    border-bottom: 1px dashed var(--red);
    padding-bottom: 1px;
    letter-spacing: 0.04em;
  }

  /* Responsive */
  @media (max-width: 960px) {
    .pattern-grid, .tier-grid, .quote-grid, .layers, .solutions-grid { grid-template-columns: 1fr; }
    .outcomes { grid-template-columns: repeat(2, 1fr); gap: 28px; }
    .team-grid { grid-template-columns: 1fr; }
    .dont-grid { grid-template-columns: 1fr; }
    section { padding: 64px 0; }
    section.hero { padding: 52px 0 42px; }
    section.final { padding: 72px 0; }
    .container { padding: 0 22px; }
  }

  @media (max-width: 480px) {
    .container { padding: 0 16px; }
    section.hero { padding: 44px 0 36px; }
    .outcomes { grid-template-columns: 1fr; }
    .hero-sub { font-size: 17px; }
    .section-sub { font-size: 16px; }
    .cta-row { flex-direction: column; align-items: flex-start; }
  }

  @media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
    }
    .pulse { animation: none; }
    html { scroll-behavior: auto; }
  }


  /* Skip-to-content link (a11y) — added in production hardening */
  .skip-link {
    position: absolute;
    left: 8px;
    top: -48px;
    z-index: 200;
    background: var(--navy);
    color: #fff;
    padding: 10px 16px;
    border-radius: var(--radius-btn);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: top 0.2s ease;
  }
  .skip-link:focus { top: 8px; }

/* Footer LinkedIn (social) icon */
.footer-li{display:inline-flex;align-items:center;line-height:0}
.footer-li svg{width:18px;height:18px;fill:currentColor;display:block}

/* Cookie consent banner (injected by main.js) */
.cookie-bar{position:fixed;left:16px;right:16px;bottom:16px;z-index:200;max-width:680px;margin:0 auto;background:var(--navy);color:rgba(255,255,255,.9);border-radius:12px;box-shadow:var(--shadow-lg);padding:18px 20px;display:flex;align-items:center;gap:18px;flex-wrap:wrap;justify-content:space-between}
.cookie-text{font-size:13.5px;line-height:1.55;margin:0;flex:1 1 300px;color:rgba(255,255,255,.8)}
.cookie-text a{color:var(--red-light);text-decoration:underline}
.cookie-text a:hover{color:#fff}
.cookie-actions{display:flex;gap:10px;flex-shrink:0}
.cookie-btn{font-family:inherit;font-size:13px;font-weight:500;border-radius:6px;padding:9px 18px;cursor:pointer;border:1px solid transparent;transition:all .2s}
.cookie-accept{background:var(--red);color:#fff}
.cookie-accept:hover{background:var(--red-light)}
.cookie-decline{background:transparent;color:rgba(255,255,255,.7);border-color:rgba(255,255,255,.28)}
.cookie-decline:hover{color:#fff;border-color:rgba(255,255,255,.55)}
@media(max-width:560px){.cookie-bar{left:8px;right:8px;bottom:8px;padding:10px 12px;gap:10px}.cookie-text{font-size:12px;line-height:1.45;flex:1 1 160px}.cookie-btn{padding:7px 12px;font-size:12px}.cookie-actions{gap:8px}}

/* ── A11y (review R-E6/E9): visible keyboard focus + 44px touch targets ── */
.btn:focus-visible, .nav-cta:focus-visible, .nav-links a:focus-visible, .tier-cta:focus-visible {
  outline: 2px solid var(--navy);
  outline-offset: 3px;
}
.nav-toggle { width: 44px; height: 44px; padding: 12px 8px; }
.nav-toggle:focus-visible { outline: 2px solid var(--navy); outline-offset: 2px; }
.slider-nav button { width: 44px; height: 44px; }
.slider-nav button:focus-visible { outline: 2px solid var(--navy); outline-offset: 2px; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

@media (max-width: 600px) { .award-extra { display: none; } }

/* ── Footer (review R-D9): brand + nav + credential columns ── */
footer .footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr;
  gap: 44px;
  align-items: start;
  padding-bottom: 26px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.footer-name { font-family: "DM Serif Display", serif; font-size: 20px; color: #fff; margin: 0 0 10px; }
.footer-desc { margin: 0 0 14px; line-height: 1.6; max-width: 330px; }
.footer-contact { margin: 0; }
.footer-sep { margin: 0 8px; }
footer .footer-nav { display: flex; flex-direction: column; gap: 9px; }
.footer-cred-line { margin: 0 0 8px; line-height: 1.5; }
.footer-cred-line strong { color: rgba(255, 255, 255, 0.85); font-weight: 600; }
.footer-cred .footer-li { display: inline-block; margin-top: 8px; }
footer .footer-legal { display: block; padding-top: 18px; }
@media (max-width: 760px) {
  footer .footer-grid { grid-template-columns: 1fr; gap: 28px; }
}
/* footer nav is a plain link column — undo the global sticky-nav chrome */
footer nav.footer-nav {
  position: static;
  z-index: auto;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: none;
  padding: 0;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
