: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);
    --ink: rgb(46,35,67);
    --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;
  }

  .canvas {
    position: relative;
    width: 1440px;
    background: #fff;
  }

  .section {
    position: relative;
    margin: 0 10px 10px;
    border-radius: 16px;
    overflow: hidden;
  }
  .section:first-of-type { margin-top: 10px; }

  /* Buttons */
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: 56px;
    padding: 0 24px;
    border-radius: 100px;
    font-family: var(--sans);
    font-weight: 500;
    font-size: 16px;
    line-height: 1;
    border: 0;
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
  }
  .btn--coral { background: var(--coral); color: #fff; }
  .btn--coral:hover { background: color-mix(in oklch, var(--coral) 88%, black); }
  .btn--purple { background: var(--purple); color: #fff; }
  .btn--purple:hover { background: color-mix(in oklch, var(--purple) 88%, black); }
  .btn--ghost-light { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,.25); }
  .btn--ghost-light:hover { background: #fff; color: var(--purple); border-color: #fff; }
  .btn--ghost-coral {
    background: transparent;
    color: var(--coral);
    border: 1px solid var(--coral);
  }
  .btn--ghost-coral:hover { background: var(--coral); color: #fff; }
  .btn .arrow {
    width: 10px;
    height: 10px;
    display: block;
  }

  /* ─── Hero (purple) ─── */
  .hero {
    top: 10px;
    background: var(--purple);
    height: 544px;
  }
  .hero-inner {
    position: absolute;
    inset: 20px 64px 0 64px;
  }
  .nav {
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .logo {
    color: #fff;
    line-height: 1.1;
    width: 139px;
    text-decoration: none;
  }
  .logo img { width: 100%; height: auto; display: block; }

  .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;
    opacity: 0.85;
    transition: opacity 0.15s ease;
  }
  .nav-menu a:hover, .nav-menu a.is-active { opacity: 1; }

  .hero-content {
    position: absolute;
    top: 178px;
    left: 16px;
    width: 533px;
    display: flex;
    flex-direction: column;
    gap: 32px;
  }
  .saga-badge {
    display: inline-flex;
    align-self: flex-start;
    align-items: center;
    background: var(--purple-badge-bg);
    border: 1px solid var(--purple-badge-bd);
    border-radius: 16px;
    padding: 6px 10px;
    color: var(--purple);
    font-family: var(--sans);
    font-size: 12px;
    line-height: 1;
  }
  .hero h1 {
    margin: 0;
    font-family: var(--serif);
    font-weight: 300;
    font-size: 60px;
    line-height: 1;
    letter-spacing: -0.025em;
    color: #fff;
    max-width: 533px;
  }
  .hero p.lede {
    margin: 32px 0 0;
    max-width: 573px;
    color: #fff;
    opacity: 0.7;
    font-size: 18px;
    line-height: 1.6;
  }
  .hero-lupine {
    position: absolute;
    right: 70px;
    top: 0;
    width: 273px;
    height: 603px;
    pointer-events: none;
  }
  .hero-lupine img { width: 100%; height: 100%; display: block; }

  /* ─── Body (cream) ─── */
  .body {
    background: var(--cream);
    padding: 80px 169px 100px;
  }
  .body-inner {
    display: flex;
    flex-direction: column;
    gap: 60px;
    align-items: flex-end;
  }
  .body-grid {
    width: 100%;
    display: grid;
    grid-template-columns: 189px 1fr;
    column-gap: 145px;
    align-items: start;
  }

  /* Sidebar */
  .sidebar { display: flex; flex-direction: column; gap: 32px; }
  .sidebar-section { display: flex; flex-direction: column; gap: 12px; }
  .sidebar-label {
    font-family: var(--sans);
    font-weight: 700;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(46,35,67,0.5);
  }
  .tab-list { display: flex; flex-direction: column; gap: 8px; align-items: flex-start; }
  .tab {
    display: inline-flex;
    align-items: center;
    height: 33px;
    padding: 0 12px;
    border-radius: 16px;
    border: 1px solid var(--coral);
    background: #fff;
    color: var(--coral);
    text-decoration: none;
    font-family: var(--sans);
    font-weight: 500;
    font-size: 12px;
    line-height: 1;
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease;
  }
  .tab:hover { background: rgba(223,112,94,0.08); }
  .tab.is-active {
    background: var(--coral);
    color: var(--cream);
    border-color: var(--coral);
  }

  /* Article */
  .article-col {
    width: 527px;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  .article-panel { display: none; flex-direction: column; gap: 32px; }
  .article-panel.is-active { display: flex; }
  .article-panel p {
    margin: 0;
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.6;
    color: var(--ink);
    opacity: 0.85;
  }
  .article-panel h2 {
    margin: 16px 0 -8px;
    font-family: var(--serif);
    font-weight: 400;
    font-size: 22px;
    line-height: 1.3;
    letter-spacing: -0.015em;
    color: var(--purple-deep);
  }
  .article-panel h2:first-child { margin-top: 0; }
  .article-panel a {
    color: var(--coral);
    text-decoration: underline;
    text-underline-offset: 2px;
    text-decoration-thickness: 1px;
  }
  .article-section {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .article-cta { align-self: flex-end; }

  .footer-back {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--purple);
    opacity: 0.7;
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1;
    text-decoration: none;
    transition: opacity 0.15s ease;
  }
  .footer-back:hover { opacity: 1; }
  .footer-back svg { width: 10px; height: 10px; }

  /* ─── Bottom CTA + 2026 ─── */
  .bottom {
    background: var(--purple);
    height: 648px;
    position: relative;
  }
  .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;
    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 (disclaimer-only, matching homepage) ─── */
  .footer {
    margin: 36px 64px 0;
    padding: 24px 0;
    font-family: var(--sans);
    font-weight: 500;
    font-size: 16px;
    color: var(--purple);
  }
  .footer-disclaimer {
    margin: 0;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.5;
    color: var(--purple);
    opacity: 0.7;
    max-width: 880px;
  }
  .footer-disclaimer a { color: var(--coral); text-decoration: none; border-bottom: 1px solid currentColor; }

  /* Scaler */
  html, body { overflow-x: hidden; }
  body { background: #fff; }
  .viewport-host {
    position: relative;
    width: 100%;
    overflow: hidden;
  }
  .scaler {
    position: absolute;
    left: 50%;
    margin-left: -720px;
    width: 1440px;
    transform-origin: top center;
  }

  /* ════════════════════════════════════════════════════════
     FLUID LAYOUT — at/below 1024px
     ════════════════════════════════════════════════════════ */
  @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%; }
    .section { margin: 0 10px 10px; }

    .btn { height: 52px; font-size: 15px; padding: 0 22px; }

    /* Hero */
    .hero { padding: 24px 24px 56px; height: auto; }
    .hero-inner { position: relative; inset: auto; }
    .nav { height: auto; }
    .logo { width: 98px; }
    .nav-menu { display: flex; gap: 16px; }
    .nav-menu a { font-size: 13px; }
    .hero-content { position: relative; top: auto; left: auto; width: 100%; margin-top: 56px; }
    .hero h1 { font-size: 44px; max-width: none; }
    .hero-lupine { display: none; }

    /* Body */
    .body { padding: 56px 24px; }
    .body-inner { gap: 40px; align-items: stretch; }
    .body-grid {
      grid-template-columns: 1fr;
      gap: 32px;
    }
    .sidebar { gap: 16px; }
    .tab-list { flex-direction: row; flex-wrap: wrap; }
    .article-col { width: 100%; }
    .article-panel h2 { font-size: 20px; }
    .article-cta { align-self: stretch; }
    .article-cta.btn { width: 100%; }

    /* Bottom */
    .bottom { height: auto; padding: 32px 16px 48px; }
    .bottom-card {
      position: relative; left: 0; top: 0;
      width: 100%;
      margin: 0;
      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;
      font-size: clamp(140px, 50vw, 200px);
      letter-spacing: -0.05em;
      text-align: left;
      overflow: hidden;
      white-space: normal;
    }
    .bottom-lupine { display: none; }

    /* Footer */
    .footer { margin: 0 14px; padding: 24px 0; font-size: 14px; }
    .footer-disclaimer { font-size: 12px; }
  }

  /* Tablet (641-1024) */
  @media (min-width: 641px) and (max-width: 1024px) {
    .hero { padding: 24px 48px 80px !important; }
    .body { padding: 64px 48px !important; }
    .body-grid {
      grid-template-columns: 220px 1fr !important;
      gap: 56px !important;
    }
    .tab-list { flex-direction: column !important; }
    .hero h1 { font-size: 56px !important; }
    .article-cta { align-self: flex-end !important; }
    .article-cta.btn { width: auto !important; }
    .bottom { padding: 32px 48px 48px !important; }
    .bottom-card { 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; }
    .footer { margin: 0 48px !important; }
  }
