
  /* ---------- Theme tokens (defaults: polished white) ---------- */
  :root {
    --bg: #ffffff;
    --bg-alt: #f5f5f7;
    --bg-deep: #ffffff;
    --ink: #1d1d1f;
    --ink-muted: #6e6e73;
    --ink-faint: #a1a1a6;
    --line: rgba(0, 0, 0, 0.08);
    --line-strong: rgba(0, 0, 0, 0.18);

    --accent: #7fa2b0;          /* Patent corporate · sampled from logo Y mark */
    --accent-soft: #c8dae1;     /* Patent light · same hue, lifted */
    --accent-glow: rgba(127, 162, 176, 0.20);

    --bronze: #b08458;
    --gold: #b08458;

    --headline-weight: 200;     /* ultralight default */
    --headline-tracking: -0.025em;

    --max: 1280px;

    --font-sans: "Helvetica Neue", "Inter", Helvetica, Arial, sans-serif;
    --font-text: "Helvetica Neue", "Inter", Helvetica, Arial, sans-serif;
  }

  /* Silver editorial */
  html[data-theme="silver"] {
    --bg: #f5f5f7;
    --bg-alt: #ffffff;
    --bg-deep: #ebebef;
    --line: rgba(0, 0, 0, 0.09);
  }

  /* Dark anthracite */
  html[data-theme="dark"] {
    --bg: #0a0a0c;
    --bg-alt: #131316;
    --bg-deep: #050507;
    --ink: #f5f5f7;
    --ink-muted: #a1a1a6;
    --ink-faint: #6e6e73;
    --line: rgba(255, 255, 255, 0.10);
    --line-strong: rgba(255, 255, 255, 0.22);
    --accent: #9fbcc7;
    --accent-soft: #c8dae1;
    --accent-glow: rgba(159, 188, 199, 0.22);
  }

  /* Accent presets — Patent brand slate-blue is canonical */
  html[data-accent="patent"]    { --accent: #7fa2b0; --accent-soft: #c8dae1; --accent-glow: rgba(127,162,176,.20); }
  html[data-accent="light"]     { --accent: #9fbcc7; --accent-soft: #d8e5ea; --accent-glow: rgba(159,188,199,.20); }
  html[data-accent="deep"]      { --accent: #4d7785; --accent-soft: #7fa2b0; --accent-glow: rgba(77,119,133,.18); }
  html[data-accent="ink"]       { --accent: #1d1d1f; --accent-soft: #6e6e73; --accent-glow: rgba(0,0,0,.10); }
  html[data-theme="dark"][data-accent="patent"] { --accent: #a8c3cd; --accent-soft: #c8dae1; --accent-glow: rgba(168,195,205,.22); }
  html[data-theme="dark"][data-accent="deep"]   { --accent: #7fa2b0; --accent-soft: #9fbcc7; --accent-glow: rgba(127,162,176,.22); }
  html[data-theme="dark"][data-accent="ink"]    { --accent: #f5f5f7; --accent-soft: #d1d1d6; --accent-glow: rgba(255,255,255,.10); }

  * { box-sizing: border-box; }
  em { font-style: normal; }
  html, body { margin: 0; padding: 0; }
  body {
    background: var(--bg);
    color: var(--ink);
    font-family: var(--font-text);
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: geometricPrecision;
    overflow-x: hidden;
    max-width: 100vw;
  }
  img, svg { display: block; max-width: 100%; }
  a { color: inherit; text-decoration: none; }

  /* ---------- Header ---------- */
  .site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    background: color-mix(in srgb, var(--bg) 60%, transparent);
    backdrop-filter: saturate(180%) blur(22px);
    -webkit-backdrop-filter: saturate(180%) blur(22px);
    border-bottom: 1px solid transparent;
    transition: border-color .3s ease, background .3s ease;
  }
  .site-header.is-scrolled {
    border-bottom-color: var(--line);
    background: color-mix(in srgb, var(--bg) 82%, transparent);
  }
  .brand {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .brand img {
    height: 26px;
    width: auto;
    display: block;
  }
  html[data-theme="dark"] .brand img {
    filter: invert(1) hue-rotate(180deg);
  }
  .header-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-text);
    font-size: 13px;
    letter-spacing: 0.08em;
    padding: 9px 18px;
    border-radius: 0;
    background: var(--ink);
    color: var(--bg);
    transition: transform .25s ease, opacity .25s ease;
  }
  html[data-theme="dark"] .header-cta { background: var(--ink); color: #0a0a0c; }
  .header-cta:hover { transform: translateY(-1px); background: #7fa2b0; color: #ffffff; border-color: #7fa2b0; }
  .header-cta .arrow { font-size: 14px; line-height: 1; }

  /* ---------- Hero text blocks (3 sentences) ---------- */
  .hero-text-blocks {
    margin: 80px auto 0;
    width: 1240px;
    max-width: 100%;
    text-align: left;
  }
  .hero-text-blocks p {
    font-family: var(--font-sans);
    font-weight: 300;
    font-size: clamp(28px, 4.2vw, 60px);
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--ink);
    margin: 0 0 0.45em 0;
  }
  .hero-text-blocks p:last-child { margin-bottom: 0; }
  .hero-text-blocks em {
    font-style: normal;
    color: #7fa2b0;
  }

  /* ---------- Bars scaler wrapper ---------- */
  .bars-scaler-wrap {
    width: 100%;
    overflow: hidden;
    max-width: 100vw;
  }
  .bars-scaler-wrap .hero-bars {
    width: 100% !important;
    zoom: 1 !important;
  }
  /* Responsive bar heights via clamp (proportional to viewport) */
  .hero-bar-col.col-peri .hero-bar-block { height: clamp(80px, 16.5vw, 205px) !important; }
  .hero-bar-col.col-muc  .hero-bar-block { height: clamp(160px, 32.3vw, 400px) !important; }
  .hero-bar-col.col-ok   .hero-bar-block { height: clamp(130px, 26.3vw, 326px) !important; }
  .hero-bar-block .bar-pct { font-size: clamp(28px, 4.5vw, 60px) !important; }
  .hero-bar-foot { font-size: clamp(13px, 1.5vw, 20px) !important; }
  .hero-bar-foot strong { font-size: clamp(14px, 1.7vw, 24px) !important; }

  /* ---------- Hero bar chart ---------- */
  .hero-bars {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr auto;
    column-gap: 96px;
    align-items: end;
    margin-top: 150px;
    padding: 0 64px;
    max-width: 1240px;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-bar-col {
    display: contents; /* children participate directly in grid */
  }
  .hero-bar-block {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 22px 22px 0;
    transform-origin: bottom center;
    transform: scaleY(0);
    will-change: transform;
    align-self: end;
  }
  .hero-bar-foot {
    grid-row: 2;
    padding: 20px 0 0;
    font-family: var(--font-text);
    font-size: 24px;
    line-height: 1.5;
    color: var(--ink);
    align-self: start;
  }
  /* ---------- Hero bar animation ---------- */
  @keyframes barGrow {
    from { transform: scaleY(0); }
    to   { transform: scaleY(1); }
  }
  @keyframes pctFade {
    from { opacity: 0; transform: translateY(12px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .hero-bar-block {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 22px 22px 0;
    transform-origin: bottom center;
    transform: scaleY(0);
    will-change: transform;
  }
  .hero-bar-block .bar-pct {
    font-family: var(--font-sans);
    font-weight: 300;
    font-size: 72px;
    line-height: 1;
    letter-spacing: -0.03em;
    color: #ffffff;
    margin: 0;
    opacity: 0;
    will-change: opacity, transform;
  }
  /* Animations fire only when .bars-ready is added */
  .hero-bars.bars-ready .hero-bar-block          { animation: barGrow 0.45s cubic-bezier(0.22, 1, 0.36, 1) forwards; }
  .hero-bars.bars-ready .hero-bar-block .bar-pct { animation: pctFade 0.3s ease forwards; }
  /* Stagger timing: bar 1 → pct 1 → bar 2 → pct 2 → bar 3 → pct 3 */
  .hero-bars.bars-ready .hero-bar-col.col-peri .hero-bar-block          { animation-delay: 0.2s; }
  .hero-bars.bars-ready .hero-bar-col.col-peri .hero-bar-block .bar-pct { animation-delay: 0.7s; }
  .hero-bars.bars-ready .hero-bar-col.col-muc  .hero-bar-block          { animation-delay: 1.0s; }
  .hero-bars.bars-ready .hero-bar-col.col-muc  .hero-bar-block .bar-pct { animation-delay: 1.55s; }
  .hero-bars.bars-ready .hero-bar-col.col-ok   .hero-bar-block          { animation-delay: 1.8s; }
  .hero-bars.bars-ready .hero-bar-col.col-ok   .hero-bar-block .bar-pct { animation-delay: 2.35s; }
  .hero-bar-foot-hidden { display: none; } /* unused placeholder */
  .hero-bar-foot strong {
    display: block;
    font-weight: 600;
    font-size: 24px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 8px;
    color: var(--ink);
  }
  .hero-bar-col.col-peri .hero-bar-foot strong { color: #c02020; }
  .hero-bar-col.col-muc  .hero-bar-foot strong { color: #8a6c00; }
  .hero-bar-col.col-ok   .hero-bar-foot strong { color: #2d6e4a; }
  .hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 160px 64px 120px;
    overflow: hidden;
  }
  .hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
      ellipse 70% 50% at 50% 40%,
      var(--accent-glow),
      transparent 70%
    );
    pointer-events: none;
    opacity: .7;
  }
  .hero-stage {
    position: relative;
    width: 100%;
    max-width: 1380px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .hero-slide {
    position: relative;
    width: 100%;
    opacity: 1;
    transform: none;
  }
  .hero-slide.is-active {
    opacity: 1;
    transform: none;
  }
  .hero-slide h1 {
    font-family: var(--font-sans);
    font-weight: var(--headline-weight);
    font-size: clamp(56px, 7.4vw, 108px);
    line-height: 1.02;
    letter-spacing: var(--headline-tracking);
    margin: 0;
    color: var(--ink);
    text-wrap: balance;
  }
  .hero-slide .kicker {
    display: block;
    font-family: var(--font-text);
    font-weight: 400;
    font-size: 26px;
    letter-spacing: 0.12em;
    color: var(--accent);
    margin-bottom: 108px;
    text-transform: uppercase;
  }
  .hero-slide em {
    font-style: normal;
    color: var(--accent);
    font-weight: calc(var(--headline-weight) + 100);
  }

  .hero-dots {
    position: absolute;
    left: 50%; bottom: 56px;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 5;
  }
  .hero-dot {
    width: 28px; height: 2px;
    background: var(--line-strong);
    border: 0; padding: 0;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: background .3s ease;
  }
  .hero-dot::after {
    content: "";
    position: absolute;
    inset: 0;
    width: 0;
    background: var(--ink);
    transition: none;
  }
  .hero-dot.is-active::after {
    width: 100%;
    transition: width 5400ms linear;
  }
  .hero-scroll-hint {
    position: absolute;
    bottom: 24px; left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-text);
    font-size: 11px;
    letter-spacing: 0.24em;
    color: var(--ink-faint);
    text-transform: uppercase;
  }

  /* ---------- Section primitives ---------- */
  .section {
    padding: 160px 64px;
    position: relative;
  }
  .section-tight { padding: 120px 64px; }
  .container {
    max-width: var(--max);
    margin: 0 auto;
    position: relative;
  }
  .eyebrow {
    display: block;
    font-family: var(--font-text);
    font-size: 36px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 108px;
  }
  .display {
    font-family: var(--font-sans);
    font-weight: 300;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin: 0;
    color: var(--ink);
    text-wrap: pretty;
  }
  .display.xl { font-size: clamp(36px, 4.2vw, 60px); }
  .display.lg { font-size: clamp(28px, 3.2vw, 48px); }
  .display.md { font-size: clamp(22px, 2.2vw, 34px); }

  .lede {
    font-family: var(--font-text);
    font-weight: 300;
    font-size: clamp(18px, 1.5vw, 22px);
    line-height: 1.55;
    color: var(--ink-muted);
    max-width: 640px;
  }
  .body-text {
    font-family: var(--font-text);
    font-weight: 300;
    font-size: 18px;
    line-height: 1.6;
    color: var(--ink-muted);
  }

  /* Statement text cards (one frame per paragraph) */
  .statement-cards {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 1240px;
    margin: 80px auto 0;
    text-align: left;
  }
  .statement-card {
    background: transparent;
    border: none;
    padding: 0;
  }
  .statement-card:last-child p {
    margin-bottom: 0;
  }
  .statement-card p {
    font-family: var(--font-sans);
    font-weight: 300;
    font-size: clamp(28px, 4.2vw, 60px);
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--ink);
    margin: 0 0 0.45em 0;
  }
  .statement-card em {
    font-style: normal;
    color: #7fa2b0;
  }

  /* ---------- Statement / Intro section ---------- */
  .statement {
    padding: 160px 64px 140px;
    text-align: center;
    background: #ffffff;
  }
  .statement .display {
    max-width: 1380px;
    margin: 0 auto;
  }
  .statement .lede {
    margin: 40px auto 0;
    text-align: center;
  }

  /* Outcomes stat diagram (two-column bar comparison) */
  .outcomes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    max-width: 760px;
    margin: 80px auto 0;
    text-align: left;
  }
  .outcome-card {
    background: var(--bg-alt);
    border: 1px solid var(--line);
    border-radius: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
  }
  .outcome-head {
    padding: 18px 20px;
    font-family: var(--font-text);
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #ffffff;
    white-space: nowrap;
  }
  .outcome-card.patent .outcome-head { background: var(--accent); }
  .outcome-card.implant .outcome-head { background: #1d1d1f; }

  .outcome-body {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 22px;
    padding: 30px 22px 24px;
    align-items: stretch;
  }
  .outcome-bar {
    display: flex;
    flex-direction: column;
    border-radius: 0;
    overflow: hidden;
    height: 260px;
    width: 48px;
  }
  .outcome-bar .seg {
    width: 100%;
    transition: flex-basis .4s ease;
  }
  .seg-peri   { background: #ff1a1a; }
  .seg-muc    { background: #f0e7b8; }
  .seg-health { background: #8fb5a0; }
  /* In dark theme, slightly desaturate the segment palette */
  html[data-theme="dark"] .seg-peri   { background: #ff3838; }
  html[data-theme="dark"] .seg-muc    { background: #c9bd7e; }
  html[data-theme="dark"] .seg-health { background: #6a957f; }

  .outcome-labels {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 4px 0;
  }
  .outcome-row {
    line-height: 1.15;
  }
  .outcome-row .pct {
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 22px;
    color: var(--ink);
    display: block;
  }
  .outcome-row .name {
    font-family: var(--font-text);
    font-size: 15px;
    color: var(--ink);
    opacity: 0.85;
  }

  .outcome-foot {
    border-top: 1px solid var(--line);
    padding: 18px 28px 22px;
    font-family: var(--font-text);
    font-size: 12.5px;
    line-height: 1.5;
    color: var(--ink-muted);
  }
  .outcome-foot ul {
    margin: 8px 0 0;
    padding-left: 16px;
  }
  .outcome-foot li {
    margin-bottom: 2px;
  }

  /* ---------- Evolution (horizontal left-to-right) ---------- */
  .evolution {
    background: var(--bg-alt);
    padding: 180px 64px;
  }
  .evolution-head {
    text-align: center;
    margin-bottom: 100px;
  }
  /* ---------- Evo scaler wrapper ---------- */
  .evo-scaler-wrap {
    width: 100%;
    margin-top: 150px;
    overflow: hidden;
    max-width: 100vw;
  }
  .evo-scaler-wrap .evolution-stack {
    width: 100% !important;
    transform: none !important;
    zoom: 1 !important;
  }
  /* Responsive gen-card text */
  .gen-card .gen-label { font-size: clamp(12px, 1.3vw, 20px) !important; }
  .gen-card .gen-title { font-size: clamp(16px, 2.6vw, 40px) !important; overflow-wrap: break-word; hyphens: auto; word-break: break-word; }
  .gen-card .gen-sub   { font-size: clamp(13px, 1.5vw, 20px) !important; }
  .gen-card .gen-year  { font-size: clamp(18px, 2.5vw, 32px) !important; }
  .evolution-stack {
    display: grid;
    grid-template-columns: 1fr 28px 1fr 28px 1fr;
    align-items: stretch;
    gap: 0;
    max-width: 1240px;
    margin: 0 auto;
  }
  .gen-card {
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: 0;
    padding: 36px 32px 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    text-align: left;
    transition: transform .4s ease, box-shadow .4s ease;
    min-width: 0;
    overflow: hidden;
  }
  .gen-card .gen-icon {
    width: 64px;
    height: 64px;
    color: var(--ink-faint);
    margin-bottom: 28px;
    order: 1;
  }
  .gen-card .gen-num {
    font-family: var(--font-sans);
    font-weight: 300;
    font-size: 13px;
    line-height: 1;
    color: var(--accent);
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-bottom: 28px;
    order: -1;
  }
  .gen-card > div { order: 3; }
  .gen-card .gen-title {
    font-family: var(--font-sans);
    font-weight: 300;
    font-size: 28px;
    margin: 0 0 21px;
    color: var(--ink);
    letter-spacing: -0.02em;
    line-height: 1.1;
    text-align: left;
  }
  .gen-card .gen-meta {
    font-family: var(--font-text);
    font-size: 13px;
    color: var(--ink-muted);
    letter-spacing: 0.04em;
    margin-bottom: 18px;
  }
  .gen-card .gen-sub {
    margin: 0;
    font-size: 15px;
    line-height: 1.55;
    color: var(--ink-muted);
    max-width: none;
    text-align: left;
  }
  .gen-card .gen-year {
    order: 4;
    margin-top: auto;
    padding-top: 28px;
    font-family: var(--font-sans);
    font-weight: 200;
    font-size: 64px;
    line-height: 1;
    letter-spacing: -0.04em;
    color: var(--ink);
    opacity: 0.92;
  }
  .gen-card.gen-3 .gen-year { color: #ffffff; opacity: 1; text-align: left; }

  .gen-card.gen-1 { opacity: 0.78; }
  .gen-card.gen-2 { opacity: 0.92; }
  .gen-card.gen-3 {
    background: var(--accent);
    color: #ffffff;
    border-color: var(--accent);
    padding: 36px 32px 40px;
    box-shadow: 0 30px 60px -20px var(--accent-glow);
  }
  html[data-theme="dark"] .gen-card.gen-3 {
    background: var(--accent);
    border-color: var(--accent);
  }
  .gen-card.gen-3 .gen-icon { color: #ffffff; width: 64px; height: 64px; opacity: 0.95; }
  .gen-card.gen-3 .gen-num { color: rgba(255,255,255,0.85); }
  .gen-card.gen-3 .gen-title { color: #ffffff; font-size: 28px; font-weight: 300; }
  html[data-theme="dark"] .gen-card.gen-3 .gen-title { color: #ffffff; }
  .gen-card.gen-3 .gen-meta { color: rgba(255,255,255,0.78); }
  .gen-card.gen-3 .gen-sub { color: rgba(255,255,255,0.85); font-size: 15px; }
  html[data-theme="dark"] .gen-card.gen-3 .gen-sub { color: rgba(255,255,255,0.85); }

  /* Horizontal connector between cards */
  .evolution-arrow {
    width: 28px;
    height: auto;
    background: transparent;
    align-self: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ink-faint);
  }
  .evolution-arrow::before {
    content: "\2192"; /* → */
    font-size: 18px;
    font-weight: 200;
    opacity: 0.5;
  }

  /* ---------- Comparison (cross-sections) ---------- */
  .comparison {
    padding: 180px 64px;
    background: #ebebef;
  }
  .comparison-head {
    text-align: center;
    margin-bottom: 80px;
  }
  .compare-scaler-wrap {
    width: 100%;
    overflow: visible;
  }
  .compare-grid {
    display: grid;
    grid-template-columns: 615px 615px;
    gap: 10px;
    align-items: stretch;
    width: 1240px;
    transform-origin: top left;
  }
  .compare-card {
    background: var(--bg-alt);
    border-radius: 0;
    padding: 0;
    border: 1px solid var(--line);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
  }
  .compare-card.bad { background: var(--bg); }
  .compare-card.good {
    background: var(--accent);
    color: #ffffff;
    border-color: var(--accent);
  }
  html[data-theme="dark"] .compare-card.good {
    background: var(--accent);
    border-color: var(--accent);
  }
  .compare-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-text);
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: 0;
    margin-bottom: 14px;
  }
  .compare-card.bad .compare-tag {
    background: rgba(180, 60, 60, 0.10);
    color: #b43c3c;
  }
  .compare-card.good .compare-tag {
    background: rgba(255,255,255,0.18);
    color: #ffffff;
  }
  html[data-theme="dark"] .compare-card.bad .compare-tag {
    background: rgba(255, 130, 130, 0.15);
    color: #ff8a8a;
  }
  .compare-card h3 {
    font-family: var(--font-sans);
    font-weight: 300;
    font-size: 28px;
    margin: 0 0 8px;
    letter-spacing: -0.02em;
    line-height: 1.1;
  }
  .compare-card.good h3 { color: #ffffff; }
  html[data-theme="dark"] .compare-card.good h3 { color: #ffffff; }
  .compare-card .sub {
    font-size: 15px;
    line-height: 1.55;
    color: var(--ink-muted);
    margin-bottom: 32px;
    max-width: 380px;
  }
  .compare-card.good .sub { color: rgba(255,255,255,0.85); }
  html[data-theme="dark"] .compare-card.good .sub { color: rgba(255,255,255,0.85); }
  .compare-photo {
    width: 100%;
    height: 900px;
    padding-top: 100px;
    background: #ffffff;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
  }
  .compare-photo img {
    display: block;
    height: 100%;
    width: auto;
    max-width: none;
  }
  .compare-card.bad .compare-photo { justify-content: flex-end; }   /* left card: tooth aligns to gap edge */
  .compare-card.good .compare-photo { justify-content: flex-start; } /* right card: tooth aligns to gap edge */
  .compare-body {
    padding: 32px 32px 32px;
  }
  .compare-visual { display: none; }
  .compare-stats {
    display: grid;
    grid-template-columns: auto auto auto;
    gap: 16px;
    border-top: 1px solid var(--line);
    padding: 24px 24px 28px;
    justify-content: space-between;
  }
  .compare-card.good .compare-stats {
    border-top-color: rgba(255,255,255,0.18);
  }
  .stat .label {
    display: block;
    font-size: 10px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ink-faint);
    margin-bottom: 6px;
    white-space: nowrap;
  }
  .compare-card.good .stat .label { color: rgba(255,255,255,0.65); }
  html[data-theme="dark"] .compare-card.good .stat .label { color: rgba(255,255,255,0.65); }
  .stat .value {
    font-family: var(--font-sans);
    font-weight: 300;
    font-size: 22px;
    letter-spacing: -0.01em;
  }
  .stat.warn .value { color: #b43c3c; }
  html[data-theme="dark"] .stat.warn .value { color: #ff8a8a; }
  .stat.ok .value { color: #ffffff; }

  /* ---------- Symbionic Intro section ---------- */
  .symbionic-section {
    padding: 180px 64px;
    background: var(--bg-alt);
  }
  .symbionic-card-wrap {
    max-width: 720px;
    margin: 80px auto 0;
  }
  .symbionic-card {
    background: var(--bg);
    border: 1px solid var(--line);
    display: flex;
    flex-direction: column;
  }
  .symbionic-card .compare-photo {
    height: 600px;
    padding-top: 0;
  }
  .symbionic-card-foot {
    padding: 36px 36px 40px;
    font-family: var(--font-text);
    font-size: 18px;
    font-weight: 300;
    line-height: 1.6;
    color: var(--ink-muted);
  }

  /* ---------- WHY section ---------- */
  .why {
    padding: 160px 64px;
    background: var(--bg-alt);
  }
  .why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 96px;
    align-items: stretch;
  }
  .why-list {
    list-style: none;
    padding: 0;
    margin: 48px 0 0;
    display: flex;
    flex-direction: column;
    gap: 28px;
  }
  .why-list li {
    display: grid;
    grid-template-columns: 36px 1fr;
    gap: 18px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--line);
    align-items: start;
  }
  .why-list li:last-child { border-bottom: 0; }
  .why-list .num {
    font-family: var(--font-sans);
    font-weight: 200;
    font-size: 24px;
    color: var(--accent);
    letter-spacing: -0.02em;
    margin-top: 2px;
  }
  .why-list h4 {
    font-family: var(--font-sans);
    font-weight: 300;
    font-size: 21px;
    margin: 0 0 6px;
    color: var(--ink);
    letter-spacing: -0.01em;
  }
  .why-list p {
    margin: 0;
    font-size: 15px;
    color: var(--ink-muted);
    line-height: 1.55;
  }
  .why-viz {
    position: relative;
    height: 100%;
    min-height: 0;
    background: transparent;
    border-radius: 0;
    border: 0;
    padding: 0;
    overflow: hidden;
  }
  .why-viz img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
  }

  /* Compare facts list */
  .compare-facts {
    list-style: none;
    padding: 0;
    margin: 20px 0 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-family: var(--font-text);
    font-size: 20px;
    font-weight: 300;
    line-height: 1.3;
    color: var(--ink);
  }
  .compare-card.good .compare-facts { color: rgba(255,255,255,0.9); }
  .compare-facts li.fact-row {
    display: grid;
    grid-template-columns: 3ch 1fr;
    align-items: baseline;
    gap: 30px;
    font-size: 30px;
  }
  .compare-facts .fact-pct {
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 30px;
    text-align: right;
    display: block;
    font-variant-numeric: tabular-nums;
  }
  .fact-pct.warn-pct { color: #c02020; }
  .fact-pct.ok-pct   { color: #2d6e4a; }
  .compare-card.good .fact-pct.ok-pct { color: rgba(255,255,255,0.9); }
  .compare-facts .fact-ref {
    font-size: 13px;
    letter-spacing: 0.04em;
    color: var(--ink-faint);
    margin-top: 20px;
    border-top: 1px solid var(--line);
    padding-top: 20px;
  }
  .compare-card.good .compare-facts .fact-ref { color: rgba(255,255,255,0.5); border-top-color: rgba(255,255,255,0.18); }
  .peri {
    padding: 160px 64px;
    background: var(--ink);
    color: var(--bg);
    text-align: center;
  }
  html[data-theme="dark"] .peri { background: var(--bg-deep); }
  .peri .display { color: var(--bg); max-width: 1100px; margin: 0 auto; }
  html[data-theme="dark"] .peri .display { color: var(--ink); }
  .peri .display strong {
    font-weight: calc(var(--headline-weight) + 100);
    color: var(--accent-soft);
  }
  .peri .lede {
    color: color-mix(in srgb, var(--bg) 60%, transparent);
    margin: 32px auto 0;
    text-align: center;
  }
  html[data-theme="dark"] .peri .lede { color: var(--ink-muted); }

  /* ---------- 4-Schritte Diagramm ---------- */
  .steps-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
  }
  .step-item { position: relative; display: flex; }
  .step-arrow {
    background: #7fa2b0;
    clip-path: polygon(0 0, calc(100% - 24px) 0, 100% 50%, calc(100% - 24px) 100%, 0 100%, 24px 50%);
    padding: 28px 44px 28px 44px;
    min-height: 180px;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 16px;
    box-sizing: border-box;
  }
  .step-item:first-child .step-arrow {
    clip-path: polygon(0 0, calc(100% - 24px) 0, 100% 50%, calc(100% - 24px) 100%, 0 100%);
    padding-left: 28px;
  }
  .step-arrow-last {
    clip-path: polygon(0 0, calc(100% - 24px) 0, 100% 50%, calc(100% - 24px) 100%, 0 100%, 24px 50%) !important;
  }
  .step-num {
    font-family: var(--font-sans);
    font-weight: 300;
    font-size: 48px;
    line-height: 1;
    color: rgba(255,255,255,0.5);
    letter-spacing: -0.02em;
    display: block;
  }
  .step-text {
    font-family: var(--font-text);
    font-weight: 400;
    font-size: 20px;
    line-height: 1.45;
    color: #ffffff;
    margin: 0;
  }
  .steps-timeline { margin-top: 38px; }
  .steps-timeline-bar {
    position: relative;
    padding: 28px 60px 28px 44px;
    background: var(--line);
    display: flex;
    align-items: center;
    justify-content: center;
    clip-path: polygon(0 0, calc(100% - 32px) 0, 100% 50%, calc(100% - 32px) 100%, 0 100%);
  }
  .steps-timeline-bar::after { display: none; }
  .steps-timeline-label {
    font-family: var(--font-text);
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 0.04em;
    color: var(--ink-muted);
  }

  /* ---------- Dentist finder ---------- */
  .finder {
    padding: 180px 64px 200px;
    background: var(--bg);
  }
  .finder-head { text-align: center; margin-bottom: 80px; }
  .finder-grid {
    display: grid;
    grid-template-columns: 1.65fr 1fr;
    gap: 56px;
    align-items: start;
  }
  .map-wrap {
    background: var(--bg-alt);
    border: 1px solid var(--line);
    border-radius: 0;
    padding: 36px;
    position: relative;
    aspect-ratio: 5 / 4;
  }
  .map-legend {
    position: absolute;
    bottom: 28px; left: 28px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-family: var(--font-text);
    font-size: 12px;
    letter-spacing: 0.06em;
    z-index: 1000;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 12px 16px;
    border: 1px solid var(--line);
  }
  .legend-row {
    display: flex; align-items: center; gap: 10px;
    color: var(--ink-muted);
  }
  .legend-dot {
    width: 12px; height: 12px;
    border-radius: 50%;
    box-shadow: 0 0 0 3px color-mix(in srgb, currentColor 20%, transparent);
  }
  .legend-row.bronze { color: var(--bronze); }
  .legend-row.gold { color: var(--gold); }
  .legend-row.bronze .legend-dot { background: var(--bronze); }
  .legend-row.gold .legend-dot { background: var(--gold); }
  .legend-row span:last-child { color: var(--ink); font-weight: 500; }

  .map-meta {
    position: absolute;
    bottom: 28px; right: 28px;
    text-align: right;
    font-family: var(--font-text);
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink-faint);
    z-index: 1000;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 10px 14px;
    border: 1px solid var(--line);
  }
  .map-meta strong { display: block; color: var(--ink); font-size: 14px; letter-spacing: 0.06em; font-weight: 500; margin-bottom: 4px; }

  .swiss-map { width: 100%; height: 100%; }

  /* Leaflet styling overrides to match Patent look */
  #swissMap { width: 100%; height: 100%; border-radius: 0; }
  .leaflet-container { font-family: var(--font-text); background: var(--bg-alt) !important; }
  .leaflet-popup-content-wrapper {
    border-radius: 0;
    box-shadow: 0 10px 30px -10px rgba(0,0,0,0.18);
    border: 1px solid var(--line);
  }
  .leaflet-popup-content { margin: 14px 18px; }
  .leaflet-popup-tip { box-shadow: 0 6px 14px -8px rgba(0,0,0,0.2); }
  .leaflet-control-zoom a {
    background: #ffffff !important;
    color: var(--ink) !important;
    border: 1px solid var(--line) !important;
    border-radius: 0 !important;
    font-weight: 300;
  }
  .leaflet-control-attribution {
    background: rgba(255,255,255,0.85) !important;
    font-size: 10px !important;
    color: var(--ink-faint) !important;
  }
  .leaflet-control-attribution a { color: var(--ink-muted) !important; }
  .map-pin {
    cursor: pointer;
    transition: transform .25s ease;
    transform-box: fill-box;
    transform-origin: center;
  }
  .map-pin:hover { transform: scale(1.25); }
  .map-pin .ring {
    fill: none;
    stroke-width: 1;
    opacity: .35;
  }
  .map-pin.bronze .dot { fill: var(--bronze); }
  .map-pin.bronze .ring { stroke: var(--bronze); }
  .map-pin.gold .dot { fill: var(--gold); }
  .map-pin.gold .ring { stroke: var(--gold); }
  .map-pin .dot { filter: drop-shadow(0 1px 3px rgba(0,0,0,0.2)); }

  /* Partner list */
  .partner-search {
    display: flex; align-items: center;
    background: var(--bg-alt);
    border: 1px solid var(--line);
    border-radius: 0;
    padding: 4px 6px 4px 22px;
    margin-bottom: 24px;
  }
  .partner-search svg { width: 16px; height: 16px; color: var(--ink-faint); }
  .partner-search input {
    flex: 1;
    border: 0;
    background: transparent;
    font-family: var(--font-text);
    font-size: 15px;
    padding: 12px 12px;
    color: var(--ink);
    outline: none;
  }
  .partner-search button {
    border: 0;
    background: var(--ink);
    color: var(--bg);
    border-radius: 0;
    padding: 10px 18px;
    font-family: var(--font-text);
    font-size: 13px;
    letter-spacing: 0.06em;
    cursor: pointer;
  }
  html[data-theme="dark"] .partner-search button { color: #0a0a0c; }
  .partner-filter {
    display: flex; gap: 8px; margin-bottom: 24px;
  }
  .filter-chip {
    border: 1px solid var(--line);
    background: transparent;
    padding: 7px 14px;
    border-radius: 0;
    font-family: var(--font-text);
    font-size: 12px;
    letter-spacing: 0.06em;
    color: var(--ink-muted);
    cursor: pointer;
    transition: all .2s ease;
  }
  .filter-chip.is-active {
    background: var(--ink);
    color: var(--bg);
    border-color: var(--ink);
  }
  html[data-theme="dark"] .filter-chip.is-active { color: #0a0a0c; }

  .country-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
  }
  .country-filter .filter-chip {
    border-radius: 20px;
    padding: 6px 16px;
    font-size: 13px;
  }

  .partner-list {
    max-height: 520px;
    overflow-y: auto;
    padding-right: 6px;
    display: flex; flex-direction: column;
    gap: 0;
  }
  .partner-list::-webkit-scrollbar { width: 6px; }
  .partner-list::-webkit-scrollbar-thumb { background: var(--line-strong); border-radius: 0; }
  .partner {
    display: grid;
    grid-template-columns: 14px 1fr auto;
    gap: 18px;
    padding: 18px 4px;
    border-bottom: 1px solid var(--line);
    align-items: center;
    cursor: pointer;
    transition: background .2s ease, padding .2s ease;
  }
  .partner:hover {
    background: var(--bg-alt);
    padding-left: 12px;
    padding-right: 12px;
  }
  .partner .badge {
    width: 12px; height: 12px;
    border-radius: 50%;
    box-shadow: 0 0 0 3px color-mix(in srgb, currentColor 20%, transparent);
  }
  .partner.bronze .badge { background: var(--bronze); color: var(--bronze); }
  .partner.gold .badge { background: var(--gold); color: var(--gold); }
  .partner .name {
    font-family: var(--font-sans);
    font-weight: 400;
    font-size: 16px;
    color: var(--ink);
    margin: 0 0 2px;
    letter-spacing: -0.01em;
  }
  .partner .meta {
    font-size: 13px;
    color: var(--ink-muted);
  }
  .partner .level {
    font-family: var(--font-text);
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink-faint);
  }
  .partner.bronze .level { color: var(--bronze); }
  .partner.gold .level { color: var(--gold); }
  /* Partner contact links (shown on selection) */
  .partner-contact {
    display: none;
    flex-direction: column;
    gap: 4px;
    margin-top: 8px;
  }
  .partner.is-selected .partner-contact {
    display: flex;
  }
  .contact-link {
    font-family: var(--font-text);
    font-size: 13px;
    color: var(--accent);
    text-decoration: none;
    letter-spacing: 0.02em;
  }
  .contact-link:hover { text-decoration: underline; }
  .partner.is-selected {
    background: color-mix(in srgb, var(--accent) 8%, transparent);
    border-left: 3px solid var(--accent);
  }
    background: color-mix(in srgb, var(--accent) 12%, transparent);
    transition: background .3s ease;
  }

  /* ---------- Footer ---------- */
  .site-footer {
    padding: 80px 64px 56px;
    background: var(--bg-alt);
    font-size: 16px !important;
    border-top: 1px solid var(--line);
    font-family: var(--font-text);
    font-size: 12px;
    color: var(--ink-faint);
  }
  .footer-row {
    max-width: var(--max);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
  }
  .footer-links { display: flex; gap: 32px; }
  .footer-links a:hover { color: var(--ink); }

  #footerContact:hover { color: var(--accent) !important; }
  #footerEmail:hover { opacity: 0.7; }

  /* ---------- Reveal on scroll ---------- */
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .9s cubic-bezier(.4,0,.2,1),
                transform .9s cubic-bezier(.4,0,.2,1);
  }
  .reveal.is-in {
    opacity: 1;
    transform: translateY(0);
  }

  /* ---------- Tweaks panel host placeholder ---------- */
  #tweaks-root { position: fixed; z-index: 200; }

  /* ===== ANIMATION VARIANTEN ===== */
  .anim-a-card, .anim-a-arrow {
    opacity: 0 !important;
    transform: translateX(-60px) !important;
    transition: opacity 0.7s cubic-bezier(0.22,1,0.36,1), transform 0.7s cubic-bezier(0.22,1,0.36,1);
  }
  .anim-a-card.is-visible, .anim-a-arrow.is-visible { opacity: 1 !important; transform: translateX(0) !important; }

  .anim-b-card {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.55s ease, transform 0.55s ease;
  }
  .anim-b-card.is-visible { opacity: 1; transform: translateY(0); }
  .anim-b-arrow {
    opacity: 0;
    transform: scaleX(0);
    transform-origin: left center;
    transition: opacity 0.1s, transform 0.5s cubic-bezier(0.22,1,0.36,1);
  }
  .anim-b-arrow.is-visible { opacity: 1; transform: scaleX(1); }

  .anim-c-card {
    clip-path: inset(0 0 100% 0);
    transition: clip-path 0.7s cubic-bezier(0.22,1,0.36,1);
  }
  .anim-c-card.is-visible { clip-path: inset(0 0 0% 0); }
  .anim-c-arrow { opacity: 0; transition: opacity 0.4s ease; }
  .anim-c-arrow.is-visible { opacity: 1; }
  /* ===== END ANIMATION VARIANTEN ===== */

  /* ==============================================
     RESPONSIVE — Mobile (≤ 768px)
  =============================================== */
  @media (max-width: 768px) {

    .comparison-refs { font-size: 11px !important; }

    /* Header */
    .site-header { padding: 0 20px; height: 56px; }
    .brand img { height: 20px; }
    .header-cta { font-size: 11px; padding: 7px 13px; }
    .header-cta .arrow { display: none; }

    /* Hero */
    .hero { padding: 120px 24px 80px; }
    .hero-stage { max-width: 100%; }
    .hero-slide h1 { font-size: 48px !important; letter-spacing: -0.02em; }
    .hero-slide h1 span { font-size: inherit !important; }
    .hero-slide .kicker { font-size: 16px !important; margin-bottom: 40px; }

    /* Hero bars — horizontal bars, stacked, text below */
    .hero-bars {
      display: flex;
      flex-direction: column;
      gap: 36px;
      margin-top: 80px;
      padding: 0;
      max-width: 100%;
      align-items: flex-start;
    }
    .hero-bar-col {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      width: 100%;
    }
    .hero-bar-col.col-peri .hero-bar-block { width: 51% !important; height: 80px !important; align-self: flex-start !important; }
    .hero-bar-col.col-muc  .hero-bar-block { width: 100% !important; height: 80px !important; align-self: flex-start !important; }
    .hero-bar-col.col-ok   .hero-bar-block { width: 81% !important; height: 80px !important; align-self: flex-start !important; }
    @keyframes barGrowH {
      from { transform: scaleX(0); }
      to   { transform: scaleX(1); }
    }
    .hero-bar-col.col-peri .hero-bar-block,
    .hero-bar-col.col-muc  .hero-bar-block,
    .hero-bar-col.col-ok   .hero-bar-block {
      transform-origin: left center;
      transform: scaleX(0);
    }
    .hero-bars.bars-ready .hero-bar-col.col-peri .hero-bar-block { animation: barGrowH 0.45s cubic-bezier(0.22, 1, 0.36, 1) forwards; animation-delay: 0.2s; }
    .hero-bars.bars-ready .hero-bar-col.col-muc  .hero-bar-block { animation: barGrowH 0.45s cubic-bezier(0.22, 1, 0.36, 1) forwards; animation-delay: 1.0s; }
    .hero-bars.bars-ready .hero-bar-col.col-ok   .hero-bar-block { animation: barGrowH 0.45s cubic-bezier(0.22, 1, 0.36, 1) forwards; animation-delay: 1.8s; }
    .hero-bars.bars-ready .hero-bar-col.col-peri .hero-bar-block .bar-pct { animation-delay: 0.7s; }
    .hero-bars.bars-ready .hero-bar-col.col-muc  .hero-bar-block .bar-pct { animation-delay: 1.55s; }
    .hero-bars.bars-ready .hero-bar-col.col-ok   .hero-bar-block .bar-pct { animation-delay: 2.35s; }
    .hero-bar-block { padding: 0 16px; flex-direction: row; justify-content: flex-end; align-items: center; }
    .hero-bar-foot { padding: 12px 0 0; font-size: 16px; text-align: left; align-self: flex-start; }
    .hero-bar-block .bar-pct { font-size: 36px; }
    .hero-bar-foot { padding: 12px 0 0; font-size: 16px; text-align: left; }
    .hero-bar-foot strong { font-size: 16px; display: block; margin-bottom: 4px; }

    /* Intros (eyebrow) — immer 16px auf Mobile */
    .eyebrow { font-size: 16px !important; margin-bottom: 32px !important; letter-spacing: 0.12em !important; }

    /* Haupttexte — alle gleich gross wie Section 1 */
    .hero-text-blocks p,
    .statement .statement-cards .statement-card p {
      font-size: clamp(20px, 5vw, 60px) !important;
      font-weight: 300 !important;
      letter-spacing: -0.01em !important;
      line-height: 1.2 !important;
    }

    /* Main titles — all same size on mobile */
    .display.xl,
    .display.lg,
    .statement h2[style],
    .comparison .comparison-head h2,
    .comparison .comparison-head p:not(.comparison-refs),
    .peri .statement-card p,
    .finder-head h2,
    section .statement-cards .statement-card p {
      font-size: 48px !important;
      letter-spacing: -0.02em !important;
      line-height: 1.1 !important;
    }

    /* Sections */
    .section, .section-tight { padding: 80px 24px; }
    .statement { padding: 80px 24px 60px; }
    .evolution { padding: 80px 24px; }
    .why { padding: 80px 24px; }
    .comparison { padding: 80px 24px; }
    .peri { padding: 80px 24px; }
    .finder { padding: 80px 24px 100px; }

    /* Typography */
    .display.xl { font-size: 48px !important; }
    .display.lg { font-size: 48px !important; }
    .display.md { font-size: 22px !important; }

    /* Inline-style titles (120px → 48px on mobile) */
    h2[style*="font-size: 120px"],
    h1[style*="font-size: 120px"],
    .statement-card p[style*="font-size: 120px"],
    .finder-head h2[style],
    .hero-slide h1 { font-size: 48px !important; }
    .lede { font-size: 17px; }
    .eyebrow { font-size: 20px; margin-bottom: 40px; }

    /* Outcomes */
    .outcomes { grid-template-columns: 1fr; max-width: 100%; }
    .outcome-body { padding: 20px 16px 16px; gap: 16px; }
    .outcome-bar { height: 160px; width: 36px; }
    .outcome-body { grid-template-columns: 36px 1fr; }
    .pct { font-size: 20px !important; }
    .name { font-size: 14px !important; }
    .outcome-foot { font-size: 13px; padding: 14px 16px 16px; }

    /* Evolution — stack on mobile */
    .evolution-stack { grid-template-columns: 1fr !important; width: auto !important; transform: none !important; }
    .evo-scaler-wrap { height: auto !important; }
    .evolution-arrow::before { content: "↓"; }
    .gen-card { padding: 28px 24px 32px; }
    .gen-card.gen-3 { padding: 28px 24px 32px; }
    .gen-card .gen-num { font-size: 11px; }
    .gen-card .gen-title { font-size: 32px !important; }
    .gen-card .gen-sub { font-size: 15px !important; }
    .gen-card .gen-year { font-size: 32px !important; padding-top: 28px; }
    .gen-card.gen-1, .gen-card.gen-2 { opacity: 1; transform: none; }

    /* Why */
    .why-grid { grid-template-columns: 1fr; gap: 40px; }
    .why-viz { height: 300px; }
    .why-list { margin-top: 28px; }
    .why-list li { gap: 12px; }
    .why-list h4 { font-size: 17px; }
    .why-list p { font-size: 14px; }

    .compare-scaler-wrap { overflow: hidden; max-width: 100vw; }
    .compare-card h3 { font-size: 60px !important; }
    .compare-card .sub { font-size: 15px !important; }
    .stat .label { white-space: normal; }

    /* Finder */
    .finder-grid { grid-template-columns: 1fr; gap: 32px; }
    .map-wrap { aspect-ratio: 4 / 3; padding: 0; border-radius: 0; }
    .partner-search input { font-size: 14px; }

    /* Footer */
    .site-footer { padding: 48px 24px 36px; font-size: 13px; }
    .footer-row { flex-direction: column; gap: 16px; align-items: flex-start; font-size: 13px; }
    .footer-links { flex-wrap: wrap; gap: 16px; font-size: 13px; }
  }

  /* ---- Tablet: 769–1200px — side-by-side generations, 80px titles ---- */
  @media (min-width: 769px) and (max-width: 1200px) {
    h2[style*="font-size: 120px"],
    h1[style*="font-size: 120px"],
    h1[style*="clamp"],
    .statement-card p[style*="font-size: 120px"],
    .finder-head h2[style],
    .display.xl,
    .display.lg,
    .hero-stage h1,
    .hero-slide h1 { font-size: 80px !important; letter-spacing: -0.5px !important; }
    .hero-slide h1 span:not(.kicker),
    .hero-slide h1 > *:not(.kicker) { font-size: inherit !important; }
    .hero-slide h1 .kicker,
    .hero-stage h1 .kicker { font-size: 26px !important; }
    .evolution-stack { grid-template-columns: 1fr 28px 1fr 28px 1fr !important; }
    .evo-scaler-wrap { height: auto !important; }
    .evolution-arrow::before { content: "→"; }
  }

  @media (max-width: 480px) {
    .hero-slide h1 { font-size: 36px !important; }
    .display.xl { font-size: 28px !important; }
    .display.lg { font-size: 22px !important; }
    .hero-bar-block { height: 110px !important; }
    .hero-bar-block .bar-pct { font-size: 36px; }
  }


