:root {
      --paper: #f2efe8;
      --paper-light: #faf8f3;
      --ink: #101311;
      --ink-2: #191d1a;
      --text: #141815;
      --sub: #59615b;
      --muted: #878e88;
      --line: rgba(16, 19, 17, .15);
      --line-dark: rgba(255, 255, 255, .14);
      --orange: #ff6038;
      --orange-dark: #dd3d16;
      --orange-wash: #ffe1d6;
      --lime: #c8f56a;
      --green: #35cf73;
      --red: #ff6f61;
      --display: "Familjen Grotesk", "Avenir Next", sans-serif;
      --body: "IBM Plex Sans", sans-serif;
      --mono: "IBM Plex Mono", monospace;
      --max: 1220px;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      overflow-x: hidden;
      color: var(--text);
      background:
        linear-gradient(rgba(16, 19, 17, .035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(16, 19, 17, .035) 1px, transparent 1px),
        var(--paper);
      background-size: 32px 32px;
      font-family: var(--body);
      -webkit-font-smoothing: antialiased;
    }
    a { color: inherit; text-decoration: none; }
    button { color: inherit; font: inherit; }
    .container { width: min(var(--max), calc(100vw - 48px)); margin: 0 auto; }

    :focus-visible { outline: 3px solid var(--lime); outline-offset: 4px; }

    .topline { border-bottom: 1px solid rgba(255,255,255,.08); background: var(--ink); color: #fff; }
    .topline-inner {
      min-height: 34px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      font: 500 10px/1 var(--mono);
      letter-spacing: .1em;
      text-transform: uppercase;
    }
    .status { display: inline-flex; align-items: center; gap: 9px; }
    .status::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 0 4px rgba(200,245,106,.12); animation: pulse 2.2s ease-in-out infinite; }
    .topline-center { color: rgba(255,255,255,.5); }

    .nav { position: sticky; top: 0; z-index: 40; border-bottom: 1px solid var(--line); background: rgba(242,239,232,.92); backdrop-filter: blur(18px); }
    .nav-inner { position: relative; min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
    .brand { display: inline-flex; align-items: center; gap: 11px; flex: 0 0 auto; font: 700 22px/1 var(--display); }
    .brand-mark { position: relative; width: 34px; height: 34px; }
    .brand-mark i { position: absolute; left: 14px; top: 1px; width: 6px; height: 15px; border-radius: 5px; background: var(--orange); transform-origin: 3px 16px; }
    .brand-mark i:nth-child(2) { transform: rotate(120deg); }
    .brand-mark i:nth-child(3) { transform: rotate(240deg); }
    .brand-mark::after { content: ""; position: absolute; inset: 13px; border-radius: 50%; background: var(--orange); }
    .nav-links { display: flex; align-items: center; gap: clamp(10px,1.25vw,20px); color: #3c433e; font-size: clamp(11px,.9vw,13px); font-weight: 600; white-space: nowrap; }
    .nav-links > a:not(.nav-cta) { position: relative; }
    .nav-links > a:not(.nav-cta)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -8px; height: 2px; background: var(--orange); transition: right .2s ease; }
    .nav-links > a:hover::after { right: 0; }
    .menu { display: none; width: 42px; height: 42px; place-items: center; padding: 0; border: 1px solid var(--line); border-radius: 3px; background: rgba(250,248,243,.84); cursor: pointer; }
    .menu svg { width: 21px; height: 21px; }

    .button, .nav-cta {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      min-height: 49px;
      padding: 0 20px;
      border: 1px solid var(--ink);
      border-radius: 3px;
      background: var(--ink);
      color: #fff;
      font-size: 13px;
      font-weight: 600;
      box-shadow: 5px 5px 0 var(--orange);
      transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
    }
    .nav-cta { min-height: 41px; padding: 0 clamp(11px,1.1vw,15px); box-shadow: 3px 3px 0 var(--orange); }
    .button:hover, .nav-cta:hover { transform: translate(2px, 2px); box-shadow: 2px 2px 0 var(--orange); }
    .button.secondary { border-color: var(--line); background: transparent; color: var(--ink); box-shadow: none; }
    .button.secondary:hover { border-color: var(--ink); transform: none; }

    .hero { position: relative; padding: 76px 0 48px; }
    .hero::before { content: "AI / 02"; position: absolute; top: 48px; left: max(20px, calc((100vw - var(--max)) / 2 - 76px)); color: rgba(16,19,17,.25); font: 500 10px/1 var(--mono); letter-spacing: .14em; writing-mode: vertical-rl; }
    .hero-grid { display: grid; grid-template-columns: minmax(0,.9fr) minmax(540px,1.1fr); gap: 62px; align-items: center; }
    .eyebrow { display: inline-flex; align-items: center; gap: 10px; margin: 0 0 24px; font: 600 11px/1 var(--mono); letter-spacing: .1em; text-transform: uppercase; }
    .eyebrow::before { content: ""; width: 34px; height: 2px; background: var(--orange); }
    .hero h1 { margin: 0; max-width: 680px; font: 600 clamp(64px,7vw,101px)/.86 var(--display); letter-spacing: -.068em; }
    .hero h1 span { display: block; color: var(--orange); }
    .hero-lede { max-width: 570px; margin: 27px 0 0; color: #3f4741; font-size: 18px; line-height: 1.58; }
    .hero-lede strong { color: var(--ink); font-weight: 600; }
    .hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
    .risk-note { margin: 15px 0 0; color: var(--muted); font: 500 10px/1.45 var(--mono); }

    .app-hero { position: relative; min-width: 0; padding: 0 16px 20px 0; }
    .app-hero::after { content: ""; position: absolute; z-index: -1; inset: 17px 0 0 17px; border: 1px solid var(--orange); background: var(--orange-wash); }
    .app-browser { overflow: hidden; border: 1px solid var(--ink); background: #fff; box-shadow: 0 20px 55px rgba(16,19,17,.16); }
    .app-browser-head { min-height: 43px; padding: 0 13px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 12px; border-bottom: 1px solid var(--line); background: #f7f7f5; color: var(--sub); font: 500 9px/1 var(--mono); letter-spacing: .04em; }
    .window-dots { display: flex; gap: 6px; }
    .window-dots i { width: 7px; height: 7px; border: 1px solid #a8ada9; border-radius: 50%; }
    .window-dots i:first-child { background: var(--orange); border-color: var(--orange); }
    .browser-address { min-width: 0; padding: 8px 12px; overflow: hidden; border: 1px solid #d9dcd9; border-radius: 3px; background: #fff; color: #6d746f; text-align: center; text-overflow: ellipsis; white-space: nowrap; }
    .app-live { display: flex; align-items: center; gap: 6px; color: var(--green); font-weight: 600; text-transform: uppercase; }
    .app-live i { width: 6px; height: 6px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 3px rgba(20,125,80,.1); }
    .app-browser img { display: block; width: 100%; height: auto; }
    .app-hero-note { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin: 11px 0 0 1px; color: var(--muted); font: 500 9px/1.4 var(--mono); letter-spacing: .045em; text-transform: uppercase; }
    .app-hero-note strong { color: var(--ink); font-weight: 600; }

    .proof-rail { margin-top: 64px; border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); background: rgba(250,248,243,.6); }
    .proof-grid { display: grid; grid-template-columns: 1.25fr .8fr 1fr 1.15fr; }
    .proof-item { min-width: 0; padding: 21px 24px; border-right: 1px solid var(--line); }
    .proof-item:first-child { padding-left: 0; }
    .proof-item:last-child { border-right: 0; padding-right: 0; }
    .proof-item small { display: block; color: var(--sub); font: 500 9px/1 var(--mono); letter-spacing: .07em; text-transform: uppercase; }
    .proof-item strong { display: block; margin-top: 8px; font: 600 23px/1 var(--display); letter-spacing: -.02em; }
    .proof-item span { display: block; margin-top: 6px; color: var(--muted); font-size: 11px; }
    .proof-live strong { color: var(--green); }

    .pipeline { padding: 112px 0; background: var(--ink); color: white; }
    .section-head { display: grid; grid-template-columns: 1fr .7fr; align-items: end; gap: 80px; }
    .section-kicker { margin: 0 0 17px; color: var(--orange); font: 600 10px/1 var(--mono); letter-spacing: .12em; text-transform: uppercase; }
    .section-head h2, .product-copy h2, .record-copy h2, .final-panel h2 { margin: 0; font: 600 clamp(46px,5.5vw,74px)/.94 var(--display); letter-spacing: -.056em; }
    .section-head > p { margin: 0; color: rgba(255,255,255,.55); font-size: 16px; line-height: 1.65; }
    .pipeline-map { position: relative; display: grid; grid-template-columns: 1.35fr 52px 1fr 52px .9fr 52px 1fr; align-items: stretch; margin-top: 58px; }
    .pipeline-stage { min-height: 246px; padding: 22px; border: 1px solid var(--line-dark); background: rgba(255,255,255,.025); }
    .pipeline-stage.inputs { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; padding: 0; background: rgba(255,255,255,.12); }
    .input-cell { min-height: 122px; padding: 18px; background: var(--ink); }
    .input-cell small, .stage-label { color: var(--orange); font: 500 9px/1 var(--mono); letter-spacing: .08em; text-transform: uppercase; }
    .input-cell strong { display: block; margin-top: 12px; font: 600 17px/1.1 var(--display); }
    .input-cell span { display: block; margin-top: 7px; color: rgba(255,255,255,.43); font-size: 10px; line-height: 1.4; }
    .pipeline-stage:not(.inputs) { display: flex; flex-direction: column; justify-content: space-between; }
    .pipeline-stage h3 { margin: 20px 0 0; font: 600 26px/1 var(--display); letter-spacing: -.03em; }
    .pipeline-stage p { margin: 9px 0 0; color: rgba(255,255,255,.48); font-size: 12px; line-height: 1.5; }
    .stage-readout { padding-top: 18px; border-top: 1px solid var(--line-dark); color: var(--lime); font: 600 12px/1 var(--mono); }
    .pipeline-arrow { position: relative; display: grid; place-items: center; color: var(--orange); font: 500 24px/1 var(--mono); }
    .pipeline-arrow::before { content: ""; position: absolute; left: 0; right: 0; height: 1px; background: var(--orange); }
    .pipeline-arrow span { position: relative; z-index: 1; padding-left: 4px; background: var(--ink); }

    .product { padding: 118px 0 128px; }
    .product-intro { display: grid; grid-template-columns: .78fr 1.22fr; gap: 95px; align-items: start; }
    .product-copy p { max-width: 480px; margin: 24px 0 0; color: var(--sub); font-size: 17px; line-height: 1.68; }
    .product-copy .button { margin-top: 28px; }
    .product-benefits { margin: 12px 0 0; border-top: 1px solid var(--ink); }
    .benefit { display: grid; grid-template-columns: 42px 1fr; gap: 17px; padding: 20px 0; border-bottom: 1px solid var(--line); }
    .benefit > span { width: 34px; height: 34px; display: grid; place-items: center; border: 1px solid var(--ink); font: 500 10px/1 var(--mono); }
    .benefit h3 { margin: 0; font: 600 20px/1.1 var(--display); }
    .benefit p { margin: 7px 0 0; color: var(--sub); font-size: 12px; line-height: 1.5; }

    .product-stage { position: relative; margin-top: 68px; padding: 20px 82px 70px 0; }
    .desktop-app { position: relative; overflow: hidden; border: 1px solid var(--ink); background: #f8f8f5; box-shadow: 15px 15px 0 var(--orange-wash), 15px 15px 0 1px var(--orange); }
    .desktop-app img { display: block; width: 100%; height: auto; }
    .desktop-app-note { position: absolute; z-index: 2; left: 18px; bottom: 17px; padding: 9px 12px; border: 1px solid rgba(16,19,17,.18); background: rgba(255,255,255,.94); color: var(--ink); font: 600 8px/1 var(--mono); letter-spacing: .06em; text-transform: uppercase; box-shadow: 4px 4px 0 rgba(255,94,58,.18); }

    .phone { position: absolute; z-index: 4; right: 0; bottom: 0; width: 252px; padding: 8px; border: 2px solid #343a36; border-radius: 40px; background: #070807; box-shadow: 0 25px 45px rgba(16,19,17,.25); }
    .phone img { display: block; width: 100%; height: auto; border-radius: 31px; }

    .record { padding: 112px 0; background: var(--paper-light); border-top: 1px solid var(--line); }
    .record-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 100px; align-items: center; }
    .record-copy p { max-width: 500px; margin: 24px 0 0; color: var(--sub); font-size: 17px; line-height: 1.68; }
    .record-copy .button { margin-top: 28px; }
    .record-board { border: 1px solid var(--ink); background: white; box-shadow: 13px 13px 0 var(--ink); }
    .record-head { min-height: 48px; padding: 0 17px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--ink); font: 500 9px/1 var(--mono); text-transform: uppercase; letter-spacing: .07em; }
    .record-head span:last-child { color: var(--green); }
    .record-main { display: grid; grid-template-columns: 1.1fr .9fr; }
    .record-primary { padding: 28px; border-right: 1px solid var(--line); }
    .record-primary small, .record-stat small { color: var(--muted); font: 500 9px/1 var(--mono); text-transform: uppercase; letter-spacing: .07em; }
    .record-primary strong { display: block; margin-top: 10px; font: 600 58px/.9 var(--display); letter-spacing: -.05em; }
    .record-primary span { display: block; margin-top: 9px; color: var(--sub); font-size: 12px; }
    .record-stats { display: grid; grid-template-rows: 1fr 1fr; }
    .record-stat { padding: 22px; }
    .record-stat + .record-stat { border-top: 1px solid var(--line); }
    .record-stat strong { display: block; margin-top: 9px; font: 600 24px/1 var(--display); }
    .record-update { padding: 14px 18px; border-top: 1px solid var(--line); color: var(--muted); font: 500 9px/1 var(--mono); }

    .final-cta { padding: 112px 0; }
    .final-panel { position: relative; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 55px; padding: 58px; overflow: hidden; border: 1px solid var(--ink); background: var(--orange); }
    .final-panel::after { content: "AI"; position: absolute; right: 165px; bottom: -74px; color: rgba(16,19,17,.07); font: 600 220px/1 var(--display); letter-spacing: -.1em; }
    .final-panel h2 { position: relative; z-index: 1; max-width: 760px; }
    .final-panel .button { position: relative; z-index: 1; box-shadow: 5px 5px 0 white; }

    footer { padding: 42px 0 50px; border-top: 1px solid var(--line); }
    .footer-grid { display: grid; grid-template-columns: 1fr auto; gap: 45px; }
    .footer-copy { max-width: 560px; margin: 16px 0 0; color: var(--sub); font-size: 12px; line-height: 1.6; }
    .footer-links { display: flex; flex-wrap: wrap; gap: 24px; color: var(--sub); font-size: 12px; font-weight: 600; }
    .legal { margin: 32px 0 0; padding-top: 22px; border-top: 1px solid var(--line); color: var(--muted); font-size: 10px; line-height: 1.6; }

    .enter { opacity: 0; transform: translateY(18px); animation: enter .7s cubic-bezier(.2,.7,.2,1) forwards; }
    .delay-1 { animation-delay: .08s; }
    .delay-2 { animation-delay: .16s; }
    .delay-3 { animation-delay: .24s; }
    .scroll-reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s ease; }
    .scroll-reveal.visible { opacity: 1; transform: none; }
    @keyframes enter { to { opacity: 1; transform: none; } }
    @keyframes pulse { 0%,100% { opacity: .65; } 50% { opacity: 1; box-shadow: 0 0 0 7px rgba(200,245,106,.05); } }

    @media (max-width: 1080px) {
      .hero-grid { grid-template-columns: 1fr; gap: 55px; }
      .hero-copy { max-width: 760px; }
      .app-hero { width: min(900px,100%); }
      .proof-grid { grid-template-columns: repeat(2,1fr); }
      .proof-item:nth-child(2) { border-right: 0; }
      .proof-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
      .proof-item:nth-child(3) { padding-left: 0; }
      .pipeline-map { grid-template-columns: 1fr; gap: 0; }
      .pipeline-arrow { min-height: 48px; transform: rotate(90deg); }
      .pipeline-map .pipeline-stage, .pipeline-map .pipeline-arrow { grid-column: 1; }
      .product-intro { gap: 55px; }
    }

    @media (max-width: 860px) {
      .menu { display: grid; }
      .nav-links { position: absolute; top: calc(100% + 10px); left: 0; right: 0; display: none; padding: 10px; flex-direction: column; align-items: stretch; gap: 0; border: 1px solid var(--ink); border-radius: 3px; background: rgba(250,248,243,.98); box-shadow: 9px 9px 0 var(--orange-wash), 9px 9px 0 1px var(--orange); font-size: 13px; white-space: normal; }
      .nav-links.is-open { display: flex; }
      .nav-links > a { min-height: 44px; display: flex; align-items: center; padding: 0 12px; border-bottom: 1px solid rgba(16,19,17,.08); }
      .nav-links > a:not(.nav-cta)::after { display: none; }
      .nav-links > a:not(.nav-cta):hover { background: rgba(255,96,56,.08); }
      .nav-links .nav-cta { margin-top: 9px; border-bottom: 0; }
    }

    @media (max-width: 820px) {
      .container { width: min(var(--max), calc(100vw - 32px)); }
      .topline { display: none; }
      .nav { top: 0; }
      .nav-inner { min-height: 66px; }
      .hero { padding: 58px 0 42px; }
      .hero::before { display: none; }
      .hero-grid { grid-template-columns: minmax(0,1fr); gap: 45px; }
      .hero h1 { font-size: clamp(57px,16vw,82px); }
      .hero-lede { font-size: 16px; }
      .proof-rail { margin-top: 50px; }
      .section-head, .product-intro, .record-grid, .final-panel { grid-template-columns: 1fr; }
      .section-head { gap: 25px; }
      .pipeline, .product, .record, .final-cta { padding: 80px 0; }
      .product-stage { padding: 0; }
      .phone { position: relative; right: auto; bottom: auto; width: min(270px,85%); margin: -65px 22px 0 auto; }
      .record-grid { gap: 50px; }
      .final-panel { padding: 44px 28px; }
      .footer-grid { grid-template-columns: 1fr; gap: 28px; }
    }

    @media (max-width: 570px) {
      .hero-actions .button { width: 100%; }
      .app-hero { padding: 0 8px 11px 0; }
      .app-hero::after { inset: 9px 0 0 9px; }
      .app-browser-head { min-height: 37px; grid-template-columns: auto 1fr; gap: 9px; padding: 0 10px; }
      .app-live { display: none; }
      .browser-address { padding: 6px 8px; text-align: left; }
      .app-hero-note { align-items: flex-start; flex-direction: column; gap: 3px; }
      .proof-grid { grid-template-columns: 1fr; }
      .proof-item { padding: 18px 0; border-right: 0; border-bottom: 1px solid var(--line); }
      .proof-item:nth-child(2) { border-bottom: 1px solid var(--line); }
      .proof-item:last-child { border-bottom: 0; }
      .pipeline-stage.inputs { grid-template-columns: 1fr 1fr; }
      .product-benefits { margin-top: 25px; }
      .product-stage { margin-top: 45px; }
      .desktop-app-note { left: 10px; bottom: 9px; padding: 7px 9px; font-size: 7px; }
      .phone { margin-top: -35px; }
      .record-main { grid-template-columns: 1fr; }
      .record-primary { border-right: 0; border-bottom: 1px solid var(--line); }
      .final-panel { padding: 38px 22px; }
      .final-panel::after { right: -25px; }
      .footer-links { gap: 16px; }
    }

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

/* Keep the largest above-the-fold content immediately paintable. */
.hero .enter {
  opacity: 1;
  transform: none;
  animation: none;
}

.record-update {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.record-source-links { display: inline-flex; flex-wrap: wrap; gap: 12px; }
.record-source-links a { color: var(--orange-dark); font-weight: 600; text-decoration: none; }
.record-source-links a:hover { text-decoration: underline; }

.record-copy .record-method-link { margin-top: 18px; font-size: 14px; }
.record-method-link a { color: var(--orange-dark); font-weight: 600; text-decoration: none; }
.record-method-link a:hover { text-decoration: underline; }

[data-forward-roi],
[data-forward-priced-settled],
[data-forward-net-units] { font-family: var(--mono); font-variant-numeric: tabular-nums; }
[data-roi-tone="positive"] { color: var(--green); }
[data-roi-tone="negative"] { color: #b4382d; }
[data-roi-tone="neutral"] { color: var(--ink); }

.home-faq {
  padding: 112px 0;
  border-top: 1px solid var(--line);
  background: var(--paper-light);
}

.home-faq__grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 95px;
  align-items: start;
}

.home-faq__intro h2 {
  max-width: 620px;
  margin: 0;
  font: 600 clamp(44px, 5vw, 68px)/0.96 var(--display);
  letter-spacing: -0.056em;
}

.home-faq__intro > p:last-child {
  max-width: 480px;
  margin: 24px 0 0;
  color: var(--sub);
  font-size: 16px;
  line-height: 1.68;
}

.home-faq__list { border-top: 1px solid var(--ink); }

.home-faq__item {
  border-bottom: 1px solid var(--line);
}

.home-faq__item summary {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--ink);
  font: 600 21px/1.25 var(--display);
  cursor: pointer;
  list-style: none;
}

.home-faq__item summary::-webkit-details-marker { display: none; }
.home-faq__item summary span { color: var(--orange); font: 500 25px/1 var(--mono); transition: transform 180ms ease; }
.home-faq__item[open] summary span { transform: rotate(45deg); }
.home-faq__item p { max-width: 720px; margin: -3px 48px 23px 0; color: var(--sub); font-size: 14px; line-height: 1.7; }

@media (max-width: 820px) {
  .home-faq { padding: 80px 0; }
  .home-faq__grid { grid-template-columns: 1fr; gap: 44px; }
  .record-update { align-items: flex-start; flex-direction: column; gap: 8px; }
}

/* Mobile polish: readable evidence, compact rhythm, and connectors that stay out of the copy. */
body.pp-home .pp-brand { min-height: 44px; }

body.pp-home .pp-site-nav__menu {
  width: 44px;
  height: 44px;
}

body.pp-home .pp-site-nav__links > .pp-site-nav__cta { min-height: 44px; }

body.pp-home .pp-site-nav__menu svg line {
  transform-box: fill-box;
  transform-origin: center;
  transition: transform 180ms ease, opacity 180ms ease;
}

body.pp-home .pp-site-nav__menu[aria-expanded="true"] svg line:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}

body.pp-home .pp-site-nav__menu[aria-expanded="true"] svg line:nth-child(2) {
  opacity: 0;
}

body.pp-home .pp-site-nav__menu[aria-expanded="true"] svg line:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}

body.pp-home .hero-actions .button:focus-visible {
  outline: 3px solid var(--ink);
  outline-offset: 4px;
}

@media (max-width: 1080px) {
  .pipeline-map { margin-top: 48px; }

  .pipeline-arrow {
    min-height: 48px;
    transform: none;
  }

  .pipeline-arrow::before {
    inset: 0 auto 0 50%;
    width: 1px;
    height: auto;
  }

  .pipeline-arrow span {
    padding: 4px 0;
    transform: rotate(90deg);
  }

  .input-cell span {
    color: rgba(255, 255, 255, 0.68);
    font-size: 14px;
    line-height: 1.5;
  }

  .pipeline-stage p {
    color: rgba(255, 255, 255, 0.68);
    font-size: 15px;
    line-height: 1.55;
  }
}

@media (max-width: 820px) {
  .pipeline,
  .product,
  .record,
  .home-faq,
  .final-cta {
    padding: 64px 0;
  }

  .pipeline-map { margin-top: 40px; }
  .product-intro { gap: 40px; }
  .record-grid { gap: 36px; }
  .home-faq__grid { gap: 32px; }

  .risk-note {
    font-size: 12px;
    line-height: 1.5;
  }

  .app-hero-note {
    font-size: 11px;
    line-height: 1.5;
  }

  .proof-item small {
    font-size: 11px;
    line-height: 1.35;
  }

  .proof-item span {
    font-size: 13px;
    line-height: 1.45;
  }

  .benefit p {
    font-size: 15px;
    line-height: 1.55;
  }

  .record-head,
  .record-primary small,
  .record-stat small {
    font-size: 11px;
    line-height: 1.35;
  }

  .record-primary span {
    font-size: 14px;
    line-height: 1.5;
  }

  .record-update {
    font-size: 12px;
    line-height: 1.5;
  }

  .record-source-links {
    width: 100%;
    gap: 8px;
  }

  .record-source-links a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    padding: 0 4px;
    font-size: 13px;
  }

  .home-faq__item p {
    font-size: 16px;
    line-height: 1.65;
  }
}

@media (max-width: 340px) {
  .hero { padding: 42px 0 36px; }
  .hero h1 { font-size: 50px; line-height: 0.88; }
  .eyebrow { margin-bottom: 18px; }
  .hero-lede { margin-top: 20px; line-height: 1.5; }
  .hero-actions { margin-top: 22px; gap: 10px; }
  .risk-note { margin-top: 12px; }
}

@media (max-width: 570px) {
  body.pp-home .pp-site-footer__grid { gap: 30px; }

  body.pp-home .pp-site-footer__copy { font-size: 15px; }

  body.pp-home .pp-site-footer__column {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 16px;
  }

  body.pp-home .pp-site-footer__column h2 {
    grid-column: 1 / -1;
    margin-bottom: 6px;
    font-size: 11px;
  }

  body.pp-home .pp-site-footer__column a {
    width: 100%;
    min-height: 44px;
    margin: 0;
    display: flex;
    align-items: center;
    font-size: 14px;
  }

  body.pp-home .pp-site-footer__legal {
    font-size: 12px;
    line-height: 1.65;
  }
}
