: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;
    height: 2092px;
    background: #fff;
    overflow: hidden;
  }

  .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;
    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; }

  /* ─── 1. Hero (coral) + form overlay ─── */
  .hero {
    top: 10px; height: 1314px;
    background: var(--coral);
  }
  .hero-inner {
    position: absolute;
    inset: 20px 64px 30px 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: 139px;
    text-decoration: none;
  }
  .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: 184px;
    left: 0;
    width: 528px;
  }
  .saga-badge {
    display: inline-flex;
    align-items: center;
    background: #fff;
    border: 1px solid var(--purple-badge-bd);
    border-radius: 16px;
    padding: 4px 10px;
    color: var(--purple);
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 500;
    line-height: 18px;
  }
  .hero h1 {
    margin: 0;
    font-family: var(--serif);
    font-weight: 300;
    font-size: 80px;
    line-height: 1;
    letter-spacing: -0.025em;
    color: #fff;
    max-width: 600px;
  }
  .hero p.lede {
    margin: 41px 0 0;
    font-family: var(--sans);
    font-size: 18px;
    line-height: 1.6;
    color: #fff;
    opacity: 0.7;
    max-width: 573px;
  }

  /* Lupine on the left */
  .hero-lupine {
    position: absolute;
    left: -22px;
    top: 549px;
    width: 412px;
    height: 838px;
    pointer-events: none;
  }
  .hero-lupine img { width: 100%; height: 100%; display: block; }
  .hero-lupine svg { width: 100%; height: 100%; display: block; overflow: visible; }

  /* ─── Form card (overlay on hero, right side) ─── */
  .form-card {
    position: absolute;
    left: 656px;
    top: 50%;
    transform: translateY(-50%);
    width: 720px;
    background: var(--cream);
    border: 1px solid rgba(184,92,115,0.2);
    border-radius: 16px;
    padding: 41px;
  }
  .form-head { display: flex; flex-direction: column; gap: 12px; margin-bottom: 40px; }
  .form-head h2 {
    margin: 0;
    font-family: var(--serif);
    font-weight: 300;
    font-size: 36px;
    line-height: 45px;
    letter-spacing: -0.015em;
    color: var(--ink);
  }
  .form-head p {
    margin: 0;
    font-family: var(--sans);
    font-size: 16px;
    line-height: 24px;
    color: var(--ink);
    opacity: 0.7;
  }

  .form { display: flex; flex-direction: column; gap: 28px; }
  .form-error {
    background: color-mix(in oklch, var(--coral) 12%, white);
    border: 1px solid var(--coral);
    border-radius: 8px;
    color: var(--ink);
    font-family: var(--sans);
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    margin: 0 0 24px;
    padding: 14px 16px;
  }
  .field { display: flex; flex-direction: column; gap: 12px; }
  .field-label {
    font-family: var(--sans);
    font-weight: 500;
    font-size: 14px;
    line-height: 1;
    color: var(--ink);
  }
  .field-help {
    margin-top: 4px;
    font-family: var(--sans);
    font-size: 14px;
    line-height: 20px;
    color: var(--ink);
    opacity: 0.7;
  }

  /* Pills */
  .pill-group {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }
  .pill-input {
    appearance: none;
    -webkit-appearance: none;
    border: 0;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    white-space: nowrap;
    width: 1px;
  }
  .pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    padding: 0 18px;
    border-radius: 100px;
    background: #fff;
    border: 1px solid var(--cream-line);
    color: var(--ink);
    font-family: var(--sans);
    font-weight: 500;
    font-size: 14px;
    line-height: 1;
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
  }
  .pill:hover { border-color: var(--coral); }
  .pill-input:focus-visible + .pill {
    outline: 2px solid var(--coral);
    outline-offset: 2px;
  }
  .pill-input:checked + .pill,
  .pill.is-selected,
  .pill[aria-pressed="true"] {
    background: var(--coral);
    color: #fff;
    border-color: var(--coral);
  }

  /* Textarea */
  .textarea {
    display: block;
    width: 100%;
    min-height: 168px;
    padding: 16px 20px;
    background: #fff;
    border: 1px solid var(--cream-line);
    border-radius: 8px;
    font-family: var(--sans);
    font-size: 15px;
    line-height: 1.6;
    color: var(--ink);
    resize: vertical;
  }
  .textarea::placeholder { color: var(--ink); opacity: 0.6; }
  .textarea:focus { outline: 2px solid var(--coral); outline-offset: 1px; border-color: transparent; }

  /* Consent box */
  .consent-box {
    background: #fff;
    border: 1px solid var(--cream-line);
    border-radius: 8px;
    padding: 21px;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .consent-box .heading {
    font-family: var(--sans);
    font-size: 16px;
    line-height: 24px;
    color: var(--ink);
    margin-bottom: 4px;
  }
  .checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
  }
  .checkbox-input {
    appearance: none;
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    border-radius: 4px;
    background: var(--cream);
    border: 1px solid var(--cream-line);
    cursor: pointer;
    position: relative;
    margin-top: 1px;
  }
  .checkbox-input:checked {
    background: var(--coral);
    border-color: var(--coral);
  }
  .checkbox-input:checked::after {
    content: "";
    position: absolute;
    left: 5px;
    top: 1px;
    width: 6px;
    height: 11px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(45deg);
  }
  .checkbox-text {
    font-family: var(--sans);
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    color: var(--ink);
  }

  /* Input */
  .input {
    display: block;
    width: 100%;
    height: 40px;
    padding: 0 12px;
    background: #fff;
    border: 1px solid var(--cream-line);
    border-radius: 8px;
    font-family: var(--sans);
    font-size: 14px;
    line-height: 1;
    color: var(--ink);
  }
  .input::placeholder { color: var(--ink); opacity: 0.6; }
  .input:focus { outline: 2px solid var(--coral); outline-offset: 1px; border-color: transparent; }

  .field-label .optional { color: var(--ink); opacity: 0.7; font-weight: 500; margin-left: 6px; }

  .submit-row { margin-top: 12px; }

  .kh-honeypot {
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    position: absolute;
    white-space: nowrap;
    width: 1px;
  }

  .kh-honeypot[hidden] { display: none !important; }

  /* ─── 2. Bottom CTA + 2026 ─── */
  .bottom {
    top: 1334px; 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;
    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; }
  .bottom-lupine svg { width: 100%; height: 100%; display: block; overflow: visible; }

  /* ─── Footer ─── */
  .footer {
    position: absolute;
    left: 64px;
    top: 1992px;
    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; }
  /* 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 { 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; }

    /* Hero */
    .hero { padding: 24px 0 10px; }
    .hero-inner { position: relative; inset: auto; padding: 0 24px; }
    .nav { height: auto; padding-top: 4px; }
    .logo { width: auto; }
    .logo img { height: 36px; width: auto; display: block; }
    .hero-content { position: relative; top: auto; left: auto; width: 100%; margin-top: 56px; }
    .hero h1 { font-size: 40px; line-height: 1.05; max-width: none; margin-top: 24px; }
    .hero h1 br { display: none; }
    .hero p.lede { font-size: 16px; margin-top: 24px; max-width: none; }
    .hero-lupine { display: none; }

    /* Form card — sits inside the coral hero with 10px gutter */
    .form-card {
      position: relative;
      left: 0; top: 0;
      transform: none;
      width: calc(100% - 20px);
      margin: 40px 10px 0 10px;
      padding: 32px 24px;
    }
    .form-head { margin-bottom: 24px; }
    .form-head h2 { font-size: 28px; line-height: 1.2; }
    .form-head p { font-size: 15px; }
    .form { gap: 24px; }
    .pill { height: 36px; padding: 0 14px; font-size: 13px; }
    .textarea { min-height: 140px; font-size: 14px; }
    .consent-box { padding: 16px; }
    .checkbox-text { font-size: 13px; line-height: 18px; }
    .submit-row .btn { width: 100%; }

    /* Bottom */
    .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 (641-1024) */
  @media (min-width: 641px) and (max-width: 1024px) {
    .hero-inner { padding-left: 48px !important; padding-right: 48px !important; }
    .form-card { padding: 40px !important; }
    .hero h1 { font-size: 64px !important; }
    .form-head h2 { font-size: 32px !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; }
    .footer { padding: 28px 48px !important; }
  }
