html { scroll-behavior: smooth; }

:root {
    /* Same brand system as the Claude page */
    --brand-green: #11D281;
    --brand-green-dark: #0BB870;
    --brand-green-deep: #089E5F;
    /* Microsoft accent for Copilot Studio references */
    --ms-blue: #0078D4;
    --ms-blue-light: #4CB4FF;
    --ms-purple: #6264A7;
    /* Alert/pain accents */
    --accent-red: #FF5A5A;
    --accent-amber: #FFB020;

    --ink: #0E0E0E;
    --ink-soft: #2A2A2A;
    --ink-mid: #4A4A55;
    --muted: #6A6A78;
    --muted-soft: #9A9AA8;
    --line: #E6E6EE;
    --line-soft: #F0F0F5;

    --hero-grad: linear-gradient(135deg, #E8F0FF 0%, #EFE8FF 60%, #FBE8F2 100%);
    --section-soft: #F8F6FF;
    --dark-bg: #0A0B14;

    --radius: 14px;
    --radius-lg: 20px;
    --shadow-card: 0 8px 24px rgba(14, 14, 14, 0.05);
    --shadow-soft: 0 4px 16px rgba(14, 14, 14, 0.04);
    --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  }
  * { box-sizing: border-box; }
  html, body { margin: 0; padding: 0; }
  body {
    font-family: var(--font);
    color: var(--ink);
    background: white;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
  }
  img { max-width: 100%; display: block; }
  a { color: inherit; text-decoration: none; }

  .container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
  .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #DCFAEC;
    color: var(--brand-green-deep);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 6px 12px;
    border-radius: 999px;
  }
  .eyebrow.dark { background: rgba(17, 210, 129, 0.15); color: var(--brand-green); }
  .eyebrow.ms { background: #E8F1FF; color: var(--ms-blue); }
  .eyebrow.red { background: #FFEDED; color: #C73838; }
  .eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
  .btn {
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1.5px solid transparent;
    font-weight: 600;
    font-size: 15px;
    padding: 13px 24px;
    border-radius: 8px;
    font-family: var(--font);
    transition: transform 0.15s ease;
  }
  .btn-green { background: var(--brand-green); color: var(--ink); border-color: var(--brand-green); }
  .btn-green:hover { background: var(--brand-green-dark); border-color: var(--brand-green-dark); transform: translateY(-1px); }
  .btn-outline { background: white; border-color: var(--ink); color: var(--ink); }
  .btn-outline:hover { background: var(--ink); color: white; }
  .btn-lg { padding: 15px 30px; font-size: 16px; }

  /* ============================================================
     NAV — same lockup as other pages
     ============================================================ */
  .nav { background: white; padding: 18px 0; border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 50; }
  .nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
  .logo { display: inline-flex; align-items: center; gap: 10px; font-weight: 700; font-size: 22px; color: var(--ink); }
  .nav-links { display: flex; gap: 32px; align-items: center; }
  .nav-links a { font-size: 15px; color: var(--ink-soft); font-weight: 500; display: inline-flex; align-items: center; gap: 6px; }
  .caret { width: 8px; height: 8px; border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor; transform: rotate(45deg); margin-top: -3px; }
  .nav-cta { display: flex; gap: 10px; }

  /* ============================================================
     HERO — names the build-vs-buy question, sets the honest tone
     ============================================================ */
  .hero {
    background: var(--hero-grad);
    padding: 130px 0 80px;
    position: relative;
    overflow: hidden;
  }
  .hero::before {
    content: "";
    position: absolute;
    top: -100px; right: -100px;
    width: 420px; height: 420px;
    background: radial-gradient(circle, rgba(0, 120, 212, 0.15), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
  }
  .hero::after {
    content: "";
    position: absolute;
    bottom: -100px; left: -100px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(17, 210, 129, 0.15), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
  }
  .hero-inner { position: relative; z-index: 1; text-align: center; max-width: 900px; margin: 0 auto; }
  .scenario-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    border: 1px solid var(--line);
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    color: var(--ink-soft);
    margin-bottom: 24px;
    box-shadow: var(--shadow-soft);
  }
  .scenario-tag .pulse {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--brand-green);
    box-shadow: 0 0 0 4px rgba(17, 210, 129, 0.15);
  }
  .hero h1 {
    font-size: 62px;
    line-height: 1.03;
    letter-spacing: -0.025em;
    margin: 0 0 20px;
    font-weight: 600;
    color: var(--ink);
  }
  .hero h1 .ms { color: var(--ms-blue); }
  .hero h1 .green { color: var(--brand-green-deep); }
  .hero .lede {
    font-size: 20px;
    line-height: 1.5;
    color: var(--ink-soft);
    margin: 0 auto 28px;
    max-width: 720px;
  }
  .hero .punchline {
    display: inline-block;
    background: white;
    border: 1px solid var(--line);
    padding: 16px 24px;
    border-radius: 12px;
    font-size: 16px;
    color: var(--ink);
    font-weight: 500;
    margin-bottom: 28px;
    box-shadow: var(--shadow-soft);
  }
  .hero .punchline b { color: var(--brand-green-deep); font-weight: 700; }
  .hero .punchline .ms { color: var(--ms-blue); font-weight: 700; }
  .hero-cta { display: inline-flex; gap: 12px; flex-wrap: wrap; justify-content: center; }

  /* ============================================================
     BEAT SECTIONS
     ============================================================ */
  .beat { padding: 90px 0; }
  .beat.white { background: white; }
  .beat.soft { background: var(--section-soft); }
  .beat.dark { background: var(--dark-bg); color: white; }

  .beat-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: center;
  }
  .beat-grid.reversed { grid-template-columns: 1.1fr 1fr; }
  .beat-grid.reversed .beat-text { order: 2; }

  .beat-num {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--muted);
    margin-bottom: 16px;
  }
  .beat-num .n {
    width: 26px; height: 26px;
    border-radius: 50%;
    background: var(--ink);
    color: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
  }
  .beat.dark .beat-num { color: rgba(255,255,255,0.6); }
  .beat.dark .beat-num .n { background: var(--brand-green); color: var(--ink); }

  .beat h2 {
    font-size: 40px;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin: 6px 0 16px;
    font-weight: 600;
  }
  .beat.dark h2 { color: white; }
  .beat h2 .ms { color: var(--ms-blue); }
  .beat.dark h2 .ms { color: var(--ms-blue-light); }
  .beat h2 .green { color: var(--brand-green-deep); }
  .beat.dark h2 .green { color: var(--brand-green); }
  .beat h2 .red { color: var(--accent-red); }
  .beat p.lead {
    font-size: 17px;
    line-height: 1.6;
    color: var(--ink-mid);
    margin: 0 0 20px;
    max-width: 520px;
  }
  .beat.dark p.lead { color: rgba(255,255,255,0.75); }
  .beat ul.beat-list {
    list-style: none;
    padding: 0;
    margin: 20px 0 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .beat ul.beat-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 15px;
    line-height: 1.5;
    color: var(--ink-soft);
  }
  .beat.dark ul.beat-list li { color: rgba(255,255,255,0.85); }
  .beat ul.beat-list li svg { flex-shrink: 0; margin-top: 3px; }
  .beat ul.beat-list.good li svg { color: var(--brand-green-deep); }
  .beat ul.beat-list.bad li svg { color: var(--accent-red); }
  .beat.dark ul.beat-list.good li svg { color: var(--brand-green); }

  .beat-visual {
    background: white;
    border-radius: var(--radius-lg);
    padding: 32px;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-card);
  }
  .beat.dark .beat-visual {
    background: rgba(255,255,255,0.03);
    border-color: rgba(255,255,255,0.08);
    box-shadow: none;
  }
  .visual-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--muted);
    font-weight: 700;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .beat.dark .visual-label { color: rgba(255,255,255,0.5); }
  .visual-label .dot { width: 6px; height: 6px; border-radius: 50%; background: currentColor; }

  /* ============================================================
     BEAT 1 VISUAL — demo vs actual scope
     Left: a single Copilot Studio chatbot mock. Right: exploded
     view of what legal ops actually needs to work as a function.
     ============================================================ */
  .scope-split {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 16px;
    align-items: stretch;
  }
  .scope-panel {
    background: #FAFAFD;
    border-radius: 14px;
    padding: 18px;
    border: 1px solid var(--line-soft);
  }
  .scope-panel.demo { border-color: rgba(0, 120, 212, 0.35); background: rgba(0, 120, 212, 0.04); }
  .scope-panel.actual { border-color: rgba(17, 210, 129, 0.4); background: rgba(17, 210, 129, 0.03); }
  .scope-panel .p-tag {
    font-size: 10.5px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 700;
    margin-bottom: 12px;
    display: inline-block;
    padding: 3px 10px;
    border-radius: 999px;
  }
  .scope-panel.demo .p-tag { background: rgba(0, 120, 212, 0.15); color: var(--ms-blue); }
  .scope-panel.actual .p-tag { background: rgba(17, 210, 129, 0.15); color: var(--brand-green-deep); }
  .scope-panel .p-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--ink);
    margin: 0 0 4px;
  }
  .scope-panel .p-sub {
    font-size: 11.5px;
    color: var(--muted);
    margin: 0 0 14px;
    line-height: 1.35;
  }
  .scope-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    background: white;
    border-radius: 8px;
    margin-bottom: 5px;
    font-size: 12px;
    color: var(--ink-soft);
    font-weight: 500;
    border: 1px solid var(--line-soft);
  }
  .scope-item .icon {
    width: 18px; height: 18px;
    border-radius: 5px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .scope-panel.demo .scope-item .icon { background: rgba(0, 120, 212, 0.15); color: var(--ms-blue); }
  .scope-panel.actual .scope-item .icon { background: rgba(17, 210, 129, 0.15); color: var(--brand-green-deep); }
  .scope-panel .count-note {
    margin-top: 12px;
    font-size: 11px;
    color: var(--muted);
    font-style: italic;
    text-align: center;
  }
  .scope-mid {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--muted);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
  }

  /* ============================================================
     BEAT 2 VISUAL — ownership flow (dark)
     Two flows showing "day-in-the-life of legal wanting to
     change how their function works"
     ============================================================ */
  .ownership-flows {
    display: flex;
    flex-direction: column;
    gap: 22px;
  }
  .flow {
    background: rgba(255,255,255,0.04);
    border-radius: 14px;
    padding: 20px;
    border: 1px solid rgba(255,255,255,0.08);
  }
  .flow.build { border-color: rgba(0, 120, 212, 0.35); }
  .flow.buy { border-color: rgba(17, 210, 129, 0.4); background: rgba(17, 210, 129, 0.05); }
  .flow-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
  }
  .flow-tag {
    font-size: 10.5px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 999px;
  }
  .flow.build .flow-tag { background: rgba(0, 120, 212, 0.15); color: var(--ms-blue-light); }
  .flow.buy .flow-tag { background: rgba(17, 210, 129, 0.15); color: var(--brand-green); }
  .flow-time {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    font-style: italic;
  }
  .flow-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
    align-items: stretch;
  }
  .flow-step {
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
    padding: 10px 12px;
    font-size: 11.5px;
    color: rgba(255,255,255,0.9);
    line-height: 1.35;
    position: relative;
  }
  .flow.build .flow-step { opacity: 0.85; }
  .flow.buy .flow-step { background: rgba(17, 210, 129, 0.1); }
  .flow-step .step-num {
    display: block;
    font-size: 9.5px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.4);
    margin-bottom: 4px;
    font-weight: 700;
  }
  .flow-step b { display: block; color: white; margin-bottom: 2px; font-size: 12px; }
  .flow-caption {
    margin-top: 12px;
    font-size: 12px;
    color: rgba(255,255,255,0.55);
    font-style: italic;
    text-align: center;
  }
  .flow.buy .flow-caption { color: var(--brand-green); font-weight: 600; }

  /* ============================================================
     BEAT 3 — product comparison (feature side-by-side)
     ============================================================ */
  .prod-compare {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .prod-card {
    background: white;
    border-radius: 14px;
    padding: 24px;
    border: 1px solid var(--line);
  }
  .prod-card.ms { border-top: 4px solid var(--ms-blue); }
  .prod-card.cbx { border-top: 4px solid var(--brand-green); }
  .prod-card .prod-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 4px;
  }
  .prod-card .prod-name { font-size: 17px; font-weight: 700; letter-spacing: -0.005em; }
  .prod-card .prod-role {
    font-size: 10.5px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
    color: var(--muted);
    background: var(--line-soft);
    padding: 3px 8px;
    border-radius: 999px;
  }
  .prod-card .prod-lede {
    font-size: 13px;
    color: var(--muted);
    margin: 4px 0 16px;
    line-height: 1.4;
  }
  .prod-card .prod-section {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid var(--line-soft);
  }
  .prod-card .prod-section-label {
    font-size: 10.5px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 700;
    color: var(--muted);
    margin-bottom: 10px;
  }
  .prod-card ul {
    list-style: none;
    padding: 0; margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .prod-card ul li {
    font-size: 13px;
    color: var(--ink-soft);
    display: flex;
    gap: 8px;
    align-items: flex-start;
    line-height: 1.45;
  }
  .prod-card ul li svg { flex-shrink: 0; margin-top: 2px; }
  .prod-card.ms ul li svg { color: var(--ms-blue); }
  .prod-card.cbx ul li svg { color: var(--brand-green-deep); }

  /* ============================================================
     VERDICT — decision framework, same pattern as Claude page
     ============================================================ */
  .verdict-section {
    background: var(--hero-grad);
    padding: 90px 0;
    position: relative;
    overflow: hidden;
  }
  .verdict-section::before {
    content: "";
    position: absolute;
    top: -100px; left: -100px;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(17, 210, 129, 0.2), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
  }
  .verdict-heading { text-align: center; max-width: 640px; margin: 0 auto 48px; position: relative; z-index: 1; }
  .verdict-heading h2 {
    font-size: 42px;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin: 14px 0 12px;
    font-weight: 600;
  }
  .verdict-heading p { font-size: 17px; color: var(--ink-mid); margin: 0; }
  .verdict-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    position: relative;
    z-index: 1;
  }
  .verdict-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 32px;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-card);
  }
  .verdict-card.ms { border-top: 4px solid var(--ms-blue); }
  .verdict-card.cbx { border-top: 4px solid var(--brand-green); }
  .verdict-card .v-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--line-soft);
  }
  .verdict-card .v-name { font-size: 18px; font-weight: 700; letter-spacing: -0.005em; }
  .verdict-card .v-role {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
    color: var(--muted);
    margin-left: auto;
    background: var(--line-soft);
    padding: 4px 10px;
    border-radius: 999px;
  }
  .verdict-card .v-when {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--muted);
    font-weight: 700;
    margin: 0 0 10px;
  }
  .verdict-card ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
  .verdict-card ul li {
    font-size: 14.5px;
    color: var(--ink-soft);
    display: flex;
    gap: 10px;
    align-items: flex-start;
    line-height: 1.5;
  }
  .verdict-card ul li svg { flex-shrink: 0; margin-top: 3px; }
  .verdict-card.ms ul li svg { color: var(--ms-blue); }
  .verdict-card.cbx ul li svg { color: var(--brand-green-deep); }

  .together-banner {
    max-width: 1000px;
    margin: 32px auto 0;
    background: var(--dark-bg);
    color: white;
    border-radius: var(--radius-lg);
    padding: 28px 32px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 24px;
    align-items: center;
    position: relative;
    z-index: 1;
  }
  .together-banner .tb-icon {
    width: 44px; height: 44px;
    background: rgba(17, 210, 129, 0.15);
    color: var(--brand-green);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .together-banner h3 { margin: 0; font-size: 17px; font-weight: 600; letter-spacing: -0.005em; }
  .together-banner p { margin: 4px 0 0; color: rgba(255,255,255,0.7); font-size: 14px; line-height: 1.5; }

  /* ============================================================
     PROOF — Hitachi quote featured (this quote is written for
     the exact objection this page addresses)
     ============================================================ */
  .proof { background: white; padding: 90px 0; }
  .proof-heading { text-align: center; max-width: 720px; margin: 0 auto 40px; }
  .proof-heading h2 {
    font-size: 36px;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin: 14px 0 0;
    font-weight: 600;
  }
  .featured-quote {
    background: var(--section-soft);
    border-radius: var(--radius-lg);
    padding: 44px 48px;
    border: 1px solid var(--line);
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 32px;
    align-items: center;
    max-width: 940px;
    margin: 0 auto 40px;
    position: relative;
  }
  .featured-quote::before {
    content: '"';
    position: absolute;
    top: -12px;
    left: 32px;
    font-size: 96px;
    color: var(--brand-green);
    opacity: 0.3;
    font-family: Georgia, serif;
    line-height: 1;
    font-weight: 700;
  }
  .featured-quote .avatar {
    width: 80px; height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #EFE8FF, #E8F0FF);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ink);
    font-size: 26px;
    font-weight: 700;
    flex-shrink: 0;
  }
  .featured-quote blockquote {
    font-size: 20px;
    line-height: 1.45;
    color: var(--ink);
    margin: 0 0 16px;
    font-weight: 500;
    letter-spacing: -0.005em;
  }
  .featured-quote blockquote .hi {
    background: linear-gradient(180deg, transparent 55%, rgba(17,210,129,0.25) 55%);
    padding: 0 3px;
  }
  .featured-quote .cite { font-size: 14px; color: var(--muted); }
  .featured-quote .cite b { color: var(--ink); font-weight: 600; }

  .metric-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    max-width: 940px;
    margin: 0 auto;
  }
  .metric-card {
    background: white;
    border-radius: var(--radius);
    padding: 24px 20px;
    text-align: center;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
  }
  .metric-card .num {
    font-size: 34px;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--brand-green-deep);
    line-height: 1;
    margin-bottom: 8px;
  }
  .metric-card .label { font-size: 13px; color: var(--ink-mid); line-height: 1.4; }

  .source-note {
    max-width: 820px;
    margin: 22px auto 0;
    text-align: center;
    font-size: 12px;
    color: var(--muted);
    line-height: 1.55;
  }

  /* ============================================================
     FINAL CTA
     ============================================================ */
  .final-cta {
    background: var(--dark-bg);
    padding: 90px 0;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
  }
  .final-cta::before {
    content: "";
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 800px; height: 800px;
    background: radial-gradient(circle, rgba(17, 210, 129, 0.08), transparent 60%);
    pointer-events: none;
  }
  .final-cta-inner { position: relative; z-index: 1; }
  .final-cta h2 {
    font-size: 42px;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin: 14px 0 18px;
    font-weight: 600;
    color: white;
  }
  .final-cta p {
    font-size: 18px;
    color: rgba(255,255,255,0.75);
    max-width: 580px;
    margin: 0 auto 28px;
    line-height: 1.55;
  }
  .final-cta .cta-row { display: inline-flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
  .final-cta .btn-outline { background: transparent; border-color: rgba(255,255,255,0.3); color: white; }
  .final-cta .btn-outline:hover { background: rgba(255,255,255,0.08); border-color: white; }

  .footer {
    background: var(--ink);
    color: rgba(255,255,255,0.7);
    padding: 32px 0;
    font-size: 13px;
    text-align: center;
  }
  .footer .logo { color: white; justify-content: center; margin-bottom: 10px; }

  /* ============================================================
     RESPONSIVE
     ============================================================ */
  @media (max-width: 980px) {
    .container { padding: 0 24px; }
    .nav-links { display: none; }
    .hero { padding: 130px 0; }
    .hero h1 { font-size: 40px; }
    .hero .lede { font-size: 17px; }
    .beat, .verdict-section, .proof, .final-cta { padding: 60px 0; }
    .beat-grid, .beat-grid.reversed { grid-template-columns: 1fr; gap: 36px; }
    .beat-grid.reversed .beat-text { order: 0; }
    .beat h2, .verdict-heading h2 { font-size: 30px; }
    .scope-split { grid-template-columns: 1fr; }
    .scope-mid { flex-direction: row; padding: 8px 0; }
    .prod-compare { grid-template-columns: 1fr; }
    .verdict-grid { grid-template-columns: 1fr; }
    .together-banner { grid-template-columns: 1fr; text-align: center; }
    .featured-quote { grid-template-columns: 1fr; padding: 28px; text-align: center; }
    .featured-quote .avatar { margin: 0 auto; }
    .metric-grid { grid-template-columns: repeat(2, 1fr); }
    .final-cta h2 { font-size: 30px; }
    .flow-steps { grid-template-columns: 1fr 1fr; }
  }
