:root {
    --purple: rgb(76,57,111);
    --purple-deep: color-mix(in oklch, var(--purple) 78%, black);
    --purple-muted: color-mix(in oklch, var(--purple) 60%, white);
    --purple-pale: color-mix(in oklch, var(--purple) 18%, white);
    --purple-badge-bg: rgb(249,245,255);
    --purple-badge-bd: rgb(233,215,254);
    --cream: rgb(251,247,236);
    --cream-line: rgb(244,234,204);
    --coral: rgb(223,112,94);
    --serif: "Newsreader", "Source Serif 4", Georgia, serif;
    --sans: "Geist", "Inter", system-ui, -apple-system, sans-serif;
  }

  *, *::before, *::after { box-sizing: border-box; }
  html, body { margin: 0; padding: 0; background: #fff; }
  body {
    font-family: var(--sans);
    color: var(--purple-deep);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
  }

  /* Fixed 1440-wide design canvas centered on the page */
  .canvas {
    position: relative;
    width: 1440px;
    height: 4853px;
    margin: 0 auto;
    background: #fff;
    overflow: hidden;
  }

  /* Stacked rounded "cards" — figma has 10px margin around the inner 1420 column */
  .section {
    position: absolute;
    left: 10px;
    width: 1420px;
    border-radius: 16px;
    overflow: hidden;
  }

  /* Buttons */
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 56px;
    padding: 0 24px;
    border-radius: 100px;
    font-family: var(--sans);
    font-weight: 500;
    font-size: 16px;
    line-height: 1;
    letter-spacing: -0.005em;
    border: 0;
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap;
  }
  .btn--coral { background: var(--coral); color: #fff; }
  .btn--purple { background: var(--purple); color: #fff; }
  .btn--ghost-light { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,.25); }
  .btn--coral { transition: background 0.15s ease; }
  .btn--coral:hover { background: color-mix(in oklch, var(--coral) 88%, black); }
  .btn--purple { transition: background 0.15s ease; }
  .btn--purple:hover { background: color-mix(in oklch, var(--purple) 88%, black); }
  .btn--ghost-light { transition: background 0.15s ease, border-color 0.15s ease; }
  .btn--ghost-light:hover { background: #fff; color: var(--purple); border-color: #fff; }

  /* Badges */
  .badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 4px 10px 4px 4px;
    background: var(--purple-badge-bg);
    border: 1px solid var(--purple-badge-bd);
    border-radius: 16px;
    color: var(--purple);
    font-size: 12px;
    font-weight: 500;
    line-height: 18px;
  }
  .badge .badge-pill {
    background: #fff;
    border: 1px solid var(--purple-badge-bd);
    border-radius: 16px;
    padding: 2px 8px;
    font-size: 12px;
    line-height: 18px;
  }
  .badge--plain {
    background: #fff;
    border: 1px solid var(--purple-badge-bd);
    border-radius: 16px;
    padding: 6px 10px;
    color: var(--purple);
    font-size: 12px;
    font-weight: 400;
    line-height: 1;
  }
  .badge--plain.coral { color: var(--coral); border-color: var(--cream-line); }

  /* Type helpers */
  .serif {
    font-family: var(--serif);
    font-weight: 300;
    letter-spacing: -0.025em;
    line-height: 1.1;
  }
  .serif-body {
    font-family: var(--serif);
    font-weight: 400;
    letter-spacing: -0.005em;
    line-height: 1.4;
  }
  .sans-body {
    font-family: var(--sans);
    font-size: 18px;
    line-height: 1.6;
    opacity: 0.7;
  }
  .sans-body--16 { font-size: 16px; }

  /* ───── Section 1: Hero ───── */
  .hero {
    top: 10px; height: 860px;
    background: var(--purple);
  }
  .hero-inner {
    position: absolute;
    inset: 20px 64px 0 64px;
  }
  .nav {
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 36px;
  }
  .nav-menu a {
    color: #fff;
    text-decoration: none;
    font-family: var(--sans);
    font-weight: 500;
    font-size: 15px;
    line-height: 1;
    letter-spacing: -0.005em;
    opacity: 0.85;
    transition: opacity 0.15s ease;
  }
  .nav-menu a:hover { opacity: 1; }
  .logo {
    color: #fff;
    line-height: 1.1;
    width: 124px;
    text-align: right;
  }
  .logo .l1 {
    font-family: var(--serif);
    font-weight: 300;
    font-size: 27.96px;
    letter-spacing: -0.035em;
    display: block;
    text-align: left;
  }
  .logo .l2 {
    font-family: var(--serif);
    font-weight: 700;
    font-size: 17px;
    display: block;
    text-align: right;
  }
  .hero-content {
    position: absolute;
    top: 154px;
    left: 0;
    width: 818px;
  }
  .hero h1 {
    font-family: var(--serif);
    font-weight: 300;
    font-size: 80px;
    line-height: 1;
    letter-spacing: -0.025em;
    color: #fff;
    margin: 32px 0 0;
    max-width: 798px;
  }
  .hero p.lede {
    margin: 32px 0 0;
    max-width: 573px;
    color: #fff;
    opacity: 0.7;
    font-size: 18px;
    line-height: 1.6;
  }
  .hero-cta {
    margin-top: 64px;
    display: flex;
    gap: 20px;
  }

  /* Decorative lupines on the hero */
  .lupine {
    position: absolute;
    pointer-events: none;
  }
  .lupine svg, .lupine img {
    display: block;
    width: 100%;
    height: 100%;
    overflow: visible;
  }
  .hero-lupine {
    top: 60px;
    right: 56px;
    width: 404px;
    height: 770px;
    color: #fff;
  }

  /* ───── Section 2: Counter (single big stat) ───── */
  .stats {
    top: 880px; height: 280px;
    background: var(--coral);
  }
  .counter {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    color: #fff;
    text-align: center;
  }
  .counter-big {
    font-family: var(--serif);
    font-weight: 300;
    font-size: 144px;
    line-height: 1;
    letter-spacing: -0.03em;
  }
  .counter-label {
    font-family: var(--serif);
    font-weight: 300;
    font-size: 32px;
    line-height: 1.2;
    letter-spacing: -0.015em;
    opacity: 0.9;
  }

  /* (Legacy stats grid styles kept below for backward compat but not used) */
  .stats-grid {
    position: absolute;
    inset: 0 64px 0 64px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
    height: 100%;
    color: #fff;
  }
  .stat { position: relative; padding: 0 56px; }
  .stat:first-child { padding-left: 0; }
  .stat + .stat::before {
    content: "";
    position: absolute;
    left: 0;
    top: 24px;
    bottom: 24px;
    width: 1px;
    background: rgba(255,255,255,.2);
  }
  .stat .big {
    font-family: var(--serif);
    font-weight: 300;
    font-size: 112px;
    line-height: 1;
    letter-spacing: -0.025em;
    margin-bottom: 32px;
  }
  .stat .sub {
    font-size: 18px;
    line-height: 1.6;
    opacity: 0.7;
    max-width: 360px;
  }

  /* ───── Section 3: Stories ───── */
  .stories {
    top: 1170px; height: 1971px;
    background: var(--cream);
  }
  .stories-inner {
    position: absolute;
    inset: 128px 54px 128px 54px;
  }
  .stories-head {
    display: grid;
    grid-template-columns: 528px 1fr;
    gap: 144px;
    align-items: start;
    margin-bottom: 96px;
  }
  .stories-head h2 {
    font-family: var(--serif);
    font-weight: 300;
    font-size: 60px;
    line-height: 1.1;
    letter-spacing: -0.025em;
    color: var(--purple-deep);
    margin: 0;
    max-width: 528px;
  }
  .stories-head p {
    font-size: 18px;
    line-height: 1.6;
    color: var(--purple-deep);
    opacity: 0.7;
    margin: 8px 0 0;
    max-width: 528px;
  }
  .stories-list {
    margin-left: 334px;
    max-width: 1033px;
  }
  .story-row {
    display: grid;
    grid-template-columns: 336px 641px;
    padding: 42px 0;
    border-top: 1px solid var(--cream-line);
  }
  .story-row:last-of-type { border-bottom: 1px solid var(--cream-line); }
  .story-meta { display: flex; flex-direction: column; gap: 16px; align-items: flex-start; }
  .story-meta .age {
    font-family: var(--serif);
    font-weight: 300;
    font-size: 32px;
    line-height: 1.1;
    color: var(--purple);
    margin: 0;
  }
  .story-row p {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    color: var(--purple-deep);
    opacity: 0.7;
  }
  .stories-cta { margin-top: 42px; }

  /* Per-story “Lesa meira” link — small coral text link */
  .story-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  .story-content p { margin: 0; }
  .story-date {
    font-family: var(--sans);
    font-size: 12px;
    line-height: 1.4;
    color: var(--purple);
    opacity: 0.55;
    margin-top: 4px;
  }
  .story-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--coral);
    font-family: var(--sans);
    font-weight: 400;
    font-size: 16px;
    line-height: 1;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    padding-bottom: 2px;
    transition: border-color 0.15s ease;
  }
  .story-link:hover { border-bottom-color: var(--coral); }
  .story-link svg {
    width: 12px;
    height: 12px;
    flex-shrink: 0;
    /* nudge the arrow up so its baseline aligns with the text x-height */
    margin-top: -1px;
  }

  /* lupine on left of stories */
  .stories-lupine {
    position: absolute;
    left: -80px;
    top: 200px;
    width: 274px;
    height: 808px;
    color: var(--purple);
    pointer-events: none;
  }

  /* ───── Section 4: About (pale purple) ───── */
  .about {
    top: 3151px; height: 940px;
    background: var(--purple-pale);
  }
  .about-inner {
    position: absolute;
    inset: 128px 54px 128px 54px;
  }
  .about-grid {
    display: grid;
    grid-template-columns: 560px 1fr;
    gap: 144px;
    margin-top: 48px;
  }
  .about h2 {
    font-family: var(--serif);
    font-weight: 300;
    font-size: 60px;
    line-height: 1.1;
    letter-spacing: -0.025em;
    color: var(--purple-deep);
    margin: 0;
    max-width: 560px;
  }
  .about-body {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 637px;
  }
  .about-body p {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    color: var(--purple-deep);
    opacity: 0.7;
  }
  .about-link {
    margin-top: 8px;
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    gap: 8px;
    color: var(--coral);
    font-family: var(--sans);
    font-weight: 500;
    font-size: 16px;
    line-height: 1;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    padding-bottom: 2px;
    transition: border-color 0.15s ease;
  }
  .about-link:hover { border-bottom-color: var(--coral); }
  .about-link svg { width: 12px; height: 12px; flex-shrink: 0; margin-top: -1px; }
  .about-body a.inline-link {
    color: var(--coral);
    text-decoration: underline;
    text-underline-offset: 2px;
    text-decoration-thickness: 1px;
  }
  .partners {
    position: absolute;
    left: 758px;
    bottom: 128px;
    display: flex;
    align-items: flex-end;
    opacity: 1;
  }
  .partner {
    font-family: var(--serif);
    font-weight: 600;
    font-size: 24px;
    letter-spacing: -0.01em;
    line-height: 1;
    color: var(--purple);
    display: inline-flex;
    align-items: flex-end;
    height: 22px;
  }
  .partner.upper { font-family: var(--sans); font-weight: 700; letter-spacing: 0.12em; font-size: 14px; }
  .partner.italic { font-style: italic; font-family: var(--serif); font-weight: 400; }
  .partner.script { font-family: var(--serif); font-style: italic; font-weight: 400; }
  .partner-logo {
    height: 22px;
    width: auto;
    display: block;
    object-fit: contain;
    flex-shrink: 0;
  }
  .partner-logo[alt="KALON"] { height: 17px; }
  .partner-osar { height: 64px; width: auto; display: block; }

  .about-lupine img { width: 100%; height: 100%; display: block; }
  .about-lupine {
    position: absolute;
    left: 504px;
    top: 130px;
    width: 245px;
    height: 430px;
    color: var(--purple);
    pointer-events: none;
  }

  /* ───── Section 5: Trust band (purple) ───── */
  .trust {
    top: 3293px; height: 227px;
    background: var(--purple);
  }
  .trust-grid {
    position: absolute;
    inset: 48px 54px 0 54px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    color: #fff;
  }
  .trust-item h3 {
    margin: 0 0 24px;
    font-family: var(--serif);
    font-size: 26px;
    line-height: 1.1;
    font-weight: 400;
    letter-spacing: -0.015em;
  }
  .trust-item p {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255,255,255,.7);
    max-width: 416px;
  }

  /* ───── Section 6: Konurnar (coral) ───── */
  .team {
    top: 3530px; height: 1039px;
    background: var(--coral);
  }
  .team-inner {
    position: absolute;
    inset: 128px 64px 0 64px;
  }
  .team-head {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 236px;
    margin-top: 20px;
  }
  .team h2 {
    font-family: var(--serif);
    font-weight: 300;
    font-size: 60px;
    line-height: 1.1;
    letter-spacing: -0.025em;
    color: #fff;
    margin: 0;
  }
  .team-body {
    display: flex;
    flex-direction: column;
    gap: 24px;
    color: #fff;
    max-width: 637px;
  }
  .team-body p {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.7;
  }
  .team-grid {
    margin-top: 96px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 29px;
    align-items: end;
  }
  .person { display: flex; flex-direction: column; gap: 16px; }
  .person .photo {
    width: 100%;
    aspect-ratio: 235 / 332;
    border-radius: 16px;
    background: var(--cream) url("/KH/assets/portrait.png") center / cover no-repeat;
  }
  .person .name {
    padding: 0 16px;
    font-family: var(--serif);
    font-size: 26px;
    line-height: 1.4;
    color: #fff;
  }
  .person .role {
    padding: 0 16px;
    font-size: 16px;
    line-height: 1.6;
    color: #fff;
    opacity: 0.7;
    margin-top: -4px;
  }

  /* ───── Section 7: Q&A ───── */
  .qa {
    top: 4579px; height: 1315px;
    background: var(--cream);
  }
  .qa-inner {
    position: absolute;
    inset: 128px 54px 0 54px;
  }
  .qa-head {
    display: grid;
    grid-template-columns: 528px 1fr;
    gap: 131px;
    margin-bottom: 96px;
  }
  .qa h2 {
    font-family: var(--serif);
    font-weight: 300;
    font-size: 60px;
    line-height: 1.1;
    letter-spacing: -0.025em;
    color: var(--purple-deep);
    margin: 0;
    max-width: 528px;
  }
  .qa-head p {
    font-size: 18px;
    line-height: 1.6;
    color: var(--purple-deep);
    opacity: 0.7;
    margin: 8px 0 0;
    max-width: 528px;
  }
  .qa-list { max-width: 1305px; }
  .qa-row {
    display: grid;
    grid-template-columns: 521px 1fr;
    column-gap: 142px;
    padding: 42px 0;
  }
  .qa-row:last-of-type { border-bottom: 1px solid var(--cream-line); }
  .qa-row .q {
    margin: 0;
    font-family: var(--serif);
    font-size: 26px;
    line-height: 1.4;
    font-weight: 400;
    color: var(--purple-deep);
    letter-spacing: -0.01em;
  }
  .qa-row .a {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    color: var(--purple-deep);
    opacity: 0.7;
  }
  .qa-author {
    display: flex;
    align-items: center;
    gap: 19px;
    margin-top: 24px;
    font-size: 16px;
    color: var(--purple-deep);
    opacity: 1;
  }
  .qa-author::before {
    content: "";
    width: 16px;
    height: 0;
    border-top: 2px solid var(--coral);
  }
  .qa-cta { margin-top: 42px; }

  /* ───── Section 8: Bottom CTA + giant 2026 (purple) ───── */
  .bottom {
    top: 4101px; height: 648px;
    background: var(--purple);
  }
  .bottom-card {
    position: absolute;
    left: 54px; top: 54px;
    width: 1312px; height: 162px;
    background: var(--coral);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 48px;
  }
  .bottom-card h2 {
    margin: 0;
    font-family: var(--serif);
    font-weight: 300;
    font-size: 60px;
    line-height: 1.1;
    letter-spacing: -0.025em;
    color: #fff;
    max-width: 800px;
  }
  .bottom-cta { display: flex; gap: 20px; }
  .year {
    position: absolute;
    left: 54px;
    top: 235px;
    /* width auto + white-space:nowrap so offsetWidth reports text width.
       font-size is set by fitYear() in JS so the rendered text matches
       the width of .bottom-card above it. */
    font-family: var(--serif);
    font-weight: 300;
    font-size: 500px;
    line-height: 1.1;
    letter-spacing: -0.036em;
    color: var(--purple-muted);
    user-select: none;
    pointer-events: none;
    white-space: nowrap;
  }
  .bottom-lupine {
    position: absolute;
    left: 475px;
    top: 401px;
    width: 133px;
    height: 247px;
    z-index: 2;
    pointer-events: none;
  }
  .bottom-lupine img { width: 100%; height: 100%; display: block; }

  /* ───── Footer copyright row ───── */
  .footer {
    position: absolute;
    left: 64px;
    top: 4759px;
    width: 1312px;
    padding: 28px 0 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
    font-family: var(--sans);
    font-weight: 500;
    font-size: 16px;
    color: var(--purple);
  }
  .footer-disclaimer {
    margin: 0;
    font-weight: 400;
    font-size: 13px;
    line-height: 1.6;
    color: var(--purple);
    opacity: 0.7;
    max-width: 880px;
  }
  .footer-disclaimer a { color: var(--coral); text-decoration: none; border-bottom: 1px solid currentColor; }
  .footer-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 24px;
  }
  .footer .links { display: flex; gap: 28px; }
  .footer a { color: var(--purple); text-decoration: none; }
  /* Scale the 1440 canvas down with a properly-clipped wrapper so the
     scroll area matches the SCALED height, not the unscaled layout box. */
  html, body { overflow-x: hidden; }
  body { background: #fff; }
  .viewport-host {
    position: relative;
    width: 100%;
    overflow: hidden;
    /* height set by JS to (CANVAS_H * scale) on desktop */
  }
  .scaler {
    position: absolute;
    left: 50%;
    margin-left: -720px;
    width: 1440px;
    transform-origin: top center;
  }

  /* ════════════════════════════════════════════════════════
     FLUID LAYOUT — at/below 1024px (tablets & phones), abandon the
     fixed canvas and flow sections vertically. Tablet enhancements
     (multi-col grids, larger type, more padding) kick in above 640px.
     ════════════════════════════════════════════════════════ */
  @media (max-width: 1024px) {
    .viewport-host { height: auto !important; overflow: visible !important; }
    .scaler {
      position: static !important;
      left: auto !important;
      margin-left: 0 !important;
      width: 100% !important;
      transform: none !important;
    }
    body { display: block !important; height: auto !important; }

    .canvas {
      width: 100%;
      height: auto;
      overflow: visible;
      padding: 10px;
    }

    .section {
      position: relative !important;
      top: auto !important;
      left: 0 !important;
      width: 100% !important;
      height: auto !important;
      border-radius: 16px;
      margin-bottom: 10px;
    }
    .section:last-of-type { margin-bottom: 0; }

    .btn { height: 52px; font-size: 15px; padding: 0 22px; }
    .btn--block { display: flex; width: 100%; }

    /* ─── Hero ─── */
    .hero { padding: 20px 0 64px; }
    .hero-inner { position: relative; inset: auto; padding: 0 24px; }
    .nav { height: auto; padding-top: 4px; }
    .logo { width: auto; }
    .logo .l1 { font-size: 22px; }
    .logo .l2 { font-size: 13px; }
    .hero-content { position: relative; top: auto; left: auto; width: 100%; margin-top: 56px; }
    .hero h1 { font-size: 40px; line-height: 1.05; margin-top: 24px; max-width: none; }
    .hero h1 br { display: none; }
    .hero p.lede { font-size: 16px; margin-top: 20px; max-width: none; }
    .hero-cta { margin-top: 32px; flex-direction: column; gap: 12px; }
    .hero-cta .btn { width: 100%; }
    .hero-lupine {
      top: 380px; right: -40px;
      width: 220px; height: 420px;
      opacity: 0.18;
    }

    /* ─── Stats ─── */
    .stats { padding: 56px 24px; }
    .counter {
      position: relative; inset: auto;
      gap: 12px;
    }
    .counter-big { font-size: 96px; }
    .counter-label { font-size: 22px; }
    .stats-grid {
      position: relative; inset: auto;
      grid-template-columns: 1fr;
      gap: 48px;
      padding: 0 24px;
    }
    .stat { padding: 0 !important; }
    .stat + .stat::before {
      left: 0; right: 0; top: -24px; bottom: auto;
      width: auto; height: 1px;
      background: rgba(255,255,255,.2);
    }
    .stat .big { font-size: 72px; margin-bottom: 16px; }
    .stat .sub { font-size: 15px; max-width: none; }

    /* ─── Stories ─── */
    .stories { padding: 64px 0 64px; }
    .stories-inner { position: relative; inset: auto; padding: 0 24px; }
    .stories-head {
      grid-template-columns: 1fr;
      gap: 16px;
      margin-bottom: 32px;
    }
    .stories-head h2 { font-size: 36px; max-width: none; }
    .stories-head p { font-size: 15px; max-width: none; }
    .stories-list { margin-left: 0; max-width: none; }
    .story-row {
      grid-template-columns: 1fr;
      gap: 16px;
      padding: 28px 0;
    }
    .story-meta { flex-direction: column; align-items: flex-start; gap: 8px; }
    .story-meta .age { font-size: 22px; }
    .story-row p { font-size: 15px; }
    .stories-cta { margin-top: 28px; }
    .stories-cta .btn { width: 100%; }
    .stories-lupine { display: none; }

    /* ─── About ─── */
    .about { padding: 64px 0; }
    .about-inner { position: relative; inset: auto; padding: 0 24px; }
    .about-grid {
      grid-template-columns: 1fr;
      gap: 24px;
      margin-top: 16px;
    }
    .about h2 { font-size: 36px; max-width: none; }
    .about-body { max-width: none; gap: 16px; }
    .about-body p { font-size: 15px; }
    .about-lupine { display: none; }
    .partners {
      position: relative; left: auto; bottom: auto;
      flex-wrap: wrap;
      justify-content: flex-start;
      gap: 20px 28px;
      margin: 36px 0 0;
      padding: 0 24px;
    }
    .partner { font-size: 18px; }
    .partner.upper { font-size: 12px; }

    /* ─── Trust ─── */
    .trust { padding: 40px 0; }
    .trust-grid {
      position: relative; inset: auto;
      grid-template-columns: 1fr;
      gap: 28px;
      padding: 0 24px;
    }
    .trust-item h3 { font-size: 22px; margin-bottom: 12px; }
    .trust-item p { font-size: 15px; max-width: none; }

    /* ─── Team ─── */
    .team { padding: 64px 0; }
    .team-inner { position: relative; inset: auto; padding: 0 24px; }
    .team-head {
      grid-template-columns: 1fr;
      gap: 20px;
      margin-top: 16px;
    }
    .team h2 { font-size: 36px; }
    .team-body { max-width: none; gap: 16px; }
    .team-body p { font-size: 15px; }
    .team-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 20px 16px;
      margin-top: 48px;
    }
    .person .name { font-size: 20px; padding: 0 4px; }
    .person .role { font-size: 14px; padding: 0 4px; }

    /* ─── Q&A ─── */
    .qa { padding: 64px 0; }
    .qa-inner { position: relative; inset: auto; padding: 0 24px; }
    .qa-head {
      grid-template-columns: 1fr;
      gap: 16px;
      margin-bottom: 32px;
    }
    .qa h2 { font-size: 36px; max-width: none; }
    .qa-head p { font-size: 15px; max-width: none; }
    .qa-list { max-width: none; }
    .qa-row {
      grid-template-columns: 1fr;
      column-gap: 0;
      row-gap: 16px;
      padding: 28px 0;
    }
    .qa-row .q { font-size: 20px; }
    .qa-row .a { font-size: 15px; }
    .qa-author { font-size: 14px; margin-top: 16px; gap: 12px; }
    .qa-cta { margin-top: 28px; }
    .qa-cta .btn { width: 100%; }

    /* ─── Bottom CTA + 2026 ─── */
    .bottom { padding: 32px 0 48px; }
    .bottom-card {
      position: relative; left: 0; top: 0;
      width: calc(100% - 32px);
      margin: 0 16px;
      height: auto;
      padding: 28px 24px;
      flex-direction: column;
      align-items: flex-start;
      gap: 24px;
    }
    .bottom-card h2 { font-size: 36px; max-width: none; }
    .bottom-cta {
      flex-direction: column;
      gap: 12px;
      width: 100%;
    }
    .bottom-cta .btn { width: 100%; }
    .year {
      position: relative; left: 0; top: 0;
      width: 100%;
      margin-top: 32px;
      padding: 0 16px;
      font-size: clamp(140px, 50vw, 200px);
      letter-spacing: -0.05em;
      text-align: left;
      overflow: hidden;
      white-space: normal;
    }
    .bottom-lupine { display: none; }

    /* ─── Footer ─── */
    /* Footer (mobile) */
    .footer {
      position: relative !important;
      left: 0 !important; top: 0 !important;
      width: 100% !important;
      padding: 24px 14px !important;
      font-size: 14px !important;
    }
    .footer-disclaimer { font-size: 12px; }
    .footer-row { padding-bottom: 0; flex-wrap: wrap; gap: 12px; }
    .footer .links { gap: 20px; }

  }

  /* ════════════════════════════════════════════════════════
     TABLET LAYER — 641-1024px: keep the fluid flow but restore
     multi-column grids, larger type, more breathing room.
     ════════════════════════════════════════════════════════ */
  @media (min-width: 641px) and (max-width: 1024px) {
    /* Generous side padding */
    .hero-inner,
    .stories-inner,
    .about-inner,
    .team-inner,
    .qa-inner { padding-left: 48px !important; padding-right: 48px !important; }
    .stats-grid,
    .trust-grid,
    .partners { padding-left: 48px !important; padding-right: 48px !important; }
    .bottom-card { width: calc(100% - 96px) !important; margin: 0 48px !important; padding: 40px 40px !important; flex-direction: row !important; align-items: center !important; }
    .bottom-card h2 { max-width: 60% !important; font-size: 44px !important; }
    .bottom-cta { flex-direction: row !important; width: auto !important; }
    .bottom-cta .btn { width: auto !important; }

    /* Hero — keep stacked, but bigger headline and side-by-side CTAs */
    .hero { padding-top: 28px; padding-bottom: 96px; }
    .hero h1 { font-size: 64px !important; }
    .hero p.lede { font-size: 18px !important; max-width: 640px !important; }
    .hero-cta { flex-direction: row !important; }
    .hero-cta .btn { width: auto !important; }
    .hero-lupine { display: block; top: 220px !important; right: -20px !important; width: 320px !important; height: 560px !important; opacity: 0.18 !important; }

    /* Stats — 3 columns with vertical dividers (like desktop) */
    .stats-grid { grid-template-columns: 1fr 1fr 1fr !important; gap: 0 !important; }
    .stat { padding: 0 32px !important; }
    .stat:first-child { padding-left: 0 !important; }
    .stat:last-child { padding-right: 0 !important; }
    .stat + .stat::before {
      left: 0 !important; top: 24px !important; bottom: 24px !important;
      right: auto !important;
      width: 1px !important; height: auto !important;
      background: rgba(255,255,255,.2) !important;
    }
    .stat .big { font-size: 88px !important; }
    .stat .sub { font-size: 16px !important; max-width: 240px !important; }

    /* Stories — 2-col rows (meta | text) */
    .stories-head { grid-template-columns: 1fr 1fr !important; gap: 48px !important; margin-bottom: 64px !important; }
    .stories-head h2 { font-size: 48px !important; }
    .story-row { grid-template-columns: 220px 1fr !important; gap: 32px !important; }
    .story-meta { flex-direction: column !important; align-items: flex-start !important; }

    /* About — 2-col */
    .about-grid { grid-template-columns: 1fr 1fr !important; gap: 48px !important; }
    .about h2 { font-size: 48px !important; }
    .partners { gap: 32px 40px !important; margin-top: 48px !important; }
    .partner { font-size: 22px !important; }

    /* Trust band — 3 columns */
    .trust-grid { grid-template-columns: 1fr 1fr 1fr !important; gap: 32px !important; }
    .trust-item h3 { font-size: 24px !important; }

    /* Team — 5 columns (5 people in a row) or fall to 3 on smaller */
    .team-head { grid-template-columns: 1fr 1fr !important; gap: 48px !important; }
    .team h2 { font-size: 48px !important; }
    .team-grid { grid-template-columns: repeat(5, 1fr) !important; gap: 20px !important; margin-top: 64px !important; }
    .person .name { font-size: 18px !important; padding: 0 8px !important; }
    .person .role { font-size: 13px !important; padding: 0 8px !important; }

    /* Q&A — 2-col (question | answer) */
    .qa-head { grid-template-columns: 1fr 1fr !important; gap: 48px !important; margin-bottom: 64px !important; }
    .qa h2 { font-size: 48px !important; }
    .qa-row { grid-template-columns: 360px 1fr !important; column-gap: 48px !important; row-gap: 0 !important; }

    /* Year — size relative to the bottom-card container */
    .year {
      margin-top: 48px !important;
      padding: 0 48px !important;
      font-size: clamp(180px, 38vw, 380px) !important;
      line-height: 0.95 !important;
      letter-spacing: -0.05em !important;
      white-space: nowrap !important;
      overflow: hidden !important;
    }

    /* Footer */
    .footer { padding: 28px 48px !important; }
  }

  /* Below 641px: phone tightening (CTAs full-width, single-col team, etc.) */
  @media (max-width: 640px) {
    /* (Defaults from the fluid layer already match phone needs) */
  }
