  :root {
    --orange: #e85d04;
    --orange-dark: #c24d04;
    --orange-tint: #fbe4d4;
    --orange-tint-border: #f5d4b8;
    --orange-deep-text: #8a3a02;
    --cream: #FDF6EE;
    --cream-border: #EDE5D9;
    --surface: #F5F3EF;
    --white: #FFFFFF;
    --ink: #1F1A17;
    --body: #4A443F;
    --muted: #76706B;
    --muted-strong: #8A847E;
    --border: #E8E3DC;
    --dark: #141414;
    --max-content: 1120px;
    /* Match FAQ and partner (retail) columns for consistent horizontal alignment */
    --prose-narrow: 640px;
  }

  * { box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body {
    margin: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--ink);
    background: var(--white);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
  h1, h2, h3, h4, p { margin: 0; }
  a { color: inherit; text-decoration: none; }
  button { font-family: inherit; cursor: pointer; }
  .container { max-width: var(--max-content); margin: 0 auto; padding: 0 32px; }

  /* NAV */
  .nav {
    position: sticky; top: 0; z-index: 10;
    background: var(--cream);
    border-bottom: 0.5px solid var(--cream-border);
    backdrop-filter: saturate(140%) blur(6px);
  }
  .nav-inner {
    display: flex; justify-content: space-between; align-items: center;
    padding: 16px 0;
  }
  .brand { display: flex; align-items: center; gap: 10px; }
  .brand .brand-mark { display: block; }
  .brand-wordmark { font-size: 22px; font-weight: 500; color: var(--ink); letter-spacing: -0.7px; }
  .nav-right { display: flex; align-items: center; gap: 24px; font-size: 14px; }
  .nav-link { color: var(--body); transition: color .15s ease; }
  .nav-link:hover { color: var(--ink); }
  .nav a:focus-visible,
  .nav button:focus-visible,
  .partner-cta .btn:focus-visible { outline: 2px solid var(--orange); outline-offset: 3px; }
  .btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 6px;
    background: var(--orange); color: var(--white);
    border: none; padding: 10px 18px;
    border-radius: 8px; font-size: 14px; font-weight: 500;
    transition: background .15s ease, transform .15s ease;
  }
  .btn:hover { background: var(--orange-dark); }
  .btn:active { transform: scale(0.98); }
  .btn-dark { background: var(--ink); }
  .btn-dark:hover { background: #000; }

  /* HERO */
  .hero { background: var(--cream); text-align: center; padding: 96px 0 88px; }
  .hero h1 {
    font-size: 60px; font-weight: 500; line-height: 1.08;
    max-width: 820px; margin: 0 auto 22px;
    color: var(--ink); letter-spacing: -1.6px;
  }
  .hero h1 .emph { color: var(--orange); }
  .hero-sub {
    font-size: 18px; max-width: 560px; margin: 0 auto 40px;
    color: var(--body); line-height: 1.55;
  }
  .waitlist-embed {
    max-width: 480px;
    margin: 0 auto 12px;
  }
  .waitlist-box {
    background: var(--white);
    border-radius: 10px;
    border: 0.5px solid var(--border);
    overflow: hidden;
  }
  .waitlist-box:empty { min-height: 0; }
  .form-success[hidden],
  .form-error[hidden] { display: none; }
  .form-success {
    font-size: 14px;
    color: var(--muted);
    text-align: center;
    margin: 0;
    padding: 4px 0 0;
  }
  .form-error {
    font-size: 13px;
    color: #a3200a;
    text-align: center;
    margin: 0;
    padding: 4px 0 0;
  }
  .waitlist-embed--native .waitlist-box,
  .waitlist-box:has(.waitlist-form) {
    background: transparent;
    border: none;
    min-height: 0;
  }
  .waitlist-form {
    position: relative;
    display: flex; gap: 6px; max-width: 480px;
    margin: 0;
    background: var(--white); padding: 6px;
    border-radius: 10px; border: 0.5px solid var(--border);
  }
  .form-hp-wrap {
    position: absolute;
    left: -9999px;
    top: 0;
    width: 1px;
    height: 1px;
    overflow: hidden;
    pointer-events: none;
  }
  .partner-dialog-form { position: relative; }
  .waitlist-form input {
    flex: 1; border: none; padding: 10px 14px;
    font-size: 15px; background: transparent; outline: none;
    color: var(--ink); font-family: inherit;
  }
  .waitlist-form input::placeholder { color: var(--muted); }
  .waitlist-form input:focus { outline: 2px solid var(--orange); outline-offset: 0; border-radius: 4px; }
  .waitlist-form button {
    white-space: nowrap; padding: 10px 18px;
    border-radius: 6px; font-size: 14px;
  }
  .form-note { font-size: 13px; color: var(--muted); margin-top: 10px; }

  /* COVERAGE STRIP */
  .coverage {
    background: var(--surface); text-align: center;
    padding: 26px 0;
    border-top: 0.5px solid var(--cream-border);
    border-bottom: 0.5px solid var(--cream-border);
  }
  .coverage-label {
    font-size: 11px; letter-spacing: 2px; color: var(--muted-strong);
    text-transform: uppercase; font-weight: 500;
    margin-bottom: 10px;
  }
  .coverage-list { font-size: 15px; color: var(--body); line-height: 1.6; }
  .coverage-list .more { color: var(--muted-strong); font-style: italic; }

  /* SECTION DEFAULTS */
  section { padding: 96px 0; }
  .section-head { text-align: center; margin-bottom: 56px; }
  .section-head h2 {
    font-size: 36px; font-weight: 500; letter-spacing: -0.9px;
    color: var(--ink); margin-bottom: 10px; line-height: 1.2;
  }
  .section-head h2 .emph { color: var(--orange); }
  .section-head p { font-size: 15px; color: var(--muted); }

  /* HOW IT WORKS */
  .how-it-works { background: var(--white); }
  .steps {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px;
    max-width: 960px; margin: 0 auto;
  }
  .step-head {
    display: flex; align-items: flex-start; gap: 14px; margin-bottom: 10px;
  }
  .step .n {
    flex: 0 0 auto; font-size: 40px; font-weight: 500; color: var(--orange);
    line-height: 1.1; letter-spacing: -1.2px; margin-top: 0;
  }
  .step-head h3 { font-size: 21px; font-weight: 500; margin: 0; color: var(--ink); line-height: 1.3; }
  .step p { font-size: 14px; line-height: 1.65; color: var(--body); }
  .step p em { color: var(--ink); font-style: normal; font-weight: 500; }

  /* DEAL CARD SECTION */
  .deal-teaser { background: var(--surface); border-top: 0.5px solid var(--cream-border); border-bottom: 0.5px solid var(--cream-border); }
  .deal-card {
    background: var(--white); border-radius: 16px;
    border: 0.5px solid var(--border); padding: 22px 24px;
    max-width: 380px; margin: 0 auto;
  }
  .deal-row-top {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 14px;
  }
  .deal-store {
    font-size: 11px; font-weight: 500; color: var(--muted);
    letter-spacing: 1px; text-transform: uppercase;
  }
  .deal-date { font-size: 11px; color: var(--muted); }
  .deal-product { font-size: 20px; font-weight: 500; color: var(--ink); margin-bottom: 4px; letter-spacing: -0.4px; }
  .deal-meta { font-size: 12px; color: var(--muted); margin-bottom: 16px; }
  .deal-price-row {
    display: flex; align-items: baseline; gap: 12px;
    margin-bottom: 16px; flex-wrap: wrap;
  }
  .deal-promo {
    font-size: 38px; font-weight: 500; color: var(--orange);
    line-height: 1; letter-spacing: -1.5px;
  }
  .deal-range { font-size: 13px; color: var(--muted); text-decoration: line-through; }
  .deal-pill {
    background: var(--orange-tint); color: var(--orange-deep-text);
    font-size: 12px; font-weight: 500; padding: 4px 10px; border-radius: 6px;
  }
  .deal-footer {
    display: flex; justify-content: space-between; align-items: center;
    padding-top: 14px; border-top: 0.5px solid var(--border);
    font-size: 12px;
  }
  .deal-footer .last { color: var(--muted); }
  .deal-footer .last strong { color: var(--ink); font-weight: 500; }
  .deal-footer .klip { color: var(--orange); font-weight: 500; }

  .deal-callouts {
    max-width: 380px; margin: 22px auto 0;
    font-size: 12px; color: var(--muted); line-height: 1.7;
  }
  .deal-callouts .row { display: flex; gap: 10px; padding: 4px 0; }
  .deal-callouts .arrow { color: var(--orange); }

  /* WHY DIFFERENT */
  .why { background: var(--white); }
  .why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; max-width: 960px; margin: 0 auto; }
  .why-item h3 { font-size: 14px; font-weight: 500; color: var(--orange); margin-bottom: 10px; letter-spacing: 0.2px; }
  .why-item p { font-size: 14px; line-height: 1.65; color: var(--body); }

  /* VOCAB */
  .vocab { background: var(--cream); padding: 72px 0; border-top: 0.5px solid var(--cream-border); border-bottom: 0.5px solid var(--cream-border); }
  .vocab-card {
    max-width: 640px; margin: 0 auto;
    background: var(--white); border: 1px solid var(--orange-tint-border);
    border-radius: 14px; padding: 32px;
  }
  .vocab-label {
    font-size: 11px; font-weight: 500; color: var(--muted);
    letter-spacing: 1.6px; text-transform: uppercase; margin-bottom: 20px;
  }
  .vocab-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px 32px; font-size: 14px; line-height: 1.55; }
  .vocab-term { color: var(--orange); font-weight: 500; }
  .vocab-part { color: var(--muted-strong); }
  .vocab-note { font-size: 13px; color: var(--muted-strong); margin-top: 20px; font-style: italic; }

  /* SECOND CTA */
  .cta { background: var(--orange); text-align: center; color: var(--white); padding: 88px 0; }
  .cta h2 { font-size: 40px; font-weight: 500; color: var(--white); margin-bottom: 14px; letter-spacing: -1px; }
  .cta p.sub { font-size: 16px; color: rgba(255,255,255,0.9); margin-bottom: 32px; max-width: 460px; margin-left: auto; margin-right: auto; }
  .cta .waitlist-box { background: var(--white); border: none; }
  .cta .waitlist-form { background: var(--white); border: none; }
  .cta .waitlist-form button {
    background: var(--ink);
    color: var(--white);
    font-weight: 500;
    border: none;
  }
  .cta .waitlist-form button:hover { background: #000; color: var(--white); }
  .cta .form-success { color: rgba(255,255,255,0.95); }
  .cta .form-error { color: #ffe0d4; }
  .cta .form-note { color: rgba(255,255,255,0.88); margin-bottom: 24px; }
  .cta .socials { font-size: 14px; color: rgba(255,255,255,0.95); }
  .cta .socials .handle { font-weight: 500; }
  .cta .socials a {
    color: inherit;
    text-decoration: underline;
    text-decoration-color: rgba(255, 255, 255, 0.4);
  }
  .cta .socials a:hover { text-decoration-color: rgba(255, 255, 255, 0.95); }
  .footer-col a[href^="https://"]:hover { color: var(--ink); }

  /* FAQ */
  .faq { background: var(--white); }
  .faq-list { max-width: var(--prose-narrow); margin: 0 auto; }
  .faq-item {
    padding: 18px 0; border-bottom: 0.5px solid var(--border);
  }
  .faq-item:last-child { border-bottom: none; }
  .faq-item h4 { font-size: 15px; font-weight: 500; color: var(--ink); margin-bottom: 6px; }
  .faq-item p { font-size: 14px; line-height: 1.65; color: var(--body); }

  /* PARTNER */
  .partner { background: var(--dark); color: #F5EFE8; padding: 96px 0; }
  .partner-inner { max-width: var(--prose-narrow); margin: 0 auto; }
  .partner .eyebrow {
    font-size: 11px; letter-spacing: 2px; color: var(--orange);
    text-transform: uppercase; font-weight: 500;
  }
  .partner h2 {
    font-size: 42px; font-weight: 500; color: var(--white);
    margin: 12px 0 18px; letter-spacing: -1px; line-height: 1.15;
  }
  .partner-lead { font-size: 16px; color: rgba(245,239,232,0.82); margin-bottom: 40px; line-height: 1.6; }
  .partner-bullet {
    display: flex; gap: 16px; padding: 18px 0;
    border-bottom: 0.5px solid rgba(245,239,232,0.12);
  }
  .partner-bullet:last-of-type { border-bottom: none; }
  .partner-bar { width: 3px; background: var(--orange); border-radius: 2px; flex-shrink: 0; }
  .partner-bullet h4 { font-size: 15px; font-weight: 500; color: var(--white); margin-bottom: 5px; }
  .partner-bullet p { font-size: 14px; line-height: 1.6; color: rgba(245,239,232,0.72); }
  .partner-cta { margin-top: 36px; }
  .partner-cta .btn { padding: 14px 24px; font-size: 15px; }
  .partner-cta .btn:disabled { opacity: 0.5; cursor: not-allowed; }

  /* PARTNER DIALOG (Web3Forms) */
  .partner-dialog {
    max-width: none;
    width: 100%;
    max-height: 100dvh;
    height: 100%;
    margin: 0;
    padding: 0;
    border: none;
    background: transparent;
    color: var(--ink);
  }
  .partner-dialog::backdrop {
    background: rgba(20, 20, 20, 0.55);
  }
  .partner-dialog-surface {
    min-height: 100%;
    min-height: 100dvh;
    display: flex; align-items: center; justify-content: center;
    padding: 1rem; box-sizing: border-box;
  }
  .partner-dialog-panel {
    max-width: 440px; width: 100%;
    max-height: min(100dvh - 2rem, 90vh);
    padding: 24px; box-sizing: border-box; overflow-y: auto;
    border: 0.5px solid var(--border);
    border-radius: 14px;
    background: var(--white);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.35);
  }
  .partner-dialog-head {
    display: flex; align-items: flex-start; justify-content: space-between; gap: 12px;
    margin-bottom: 8px;
  }
  .partner-dialog-head h2 {
    font-size: 1.2rem; font-weight: 500; letter-spacing: -0.3px; line-height: 1.25; margin: 0;
  }
  .partner-dialog-x {
    flex-shrink: 0;
    width: 36px; height: 36px; border: none; border-radius: 8px;
    background: var(--surface); color: var(--ink); font-size: 1.4rem; line-height: 1; cursor: pointer;
    transition: background .15s ease;
  }
  .partner-dialog-x:hover { background: var(--border); }
  .partner-dialog-lead {
    font-size: 14px; color: var(--muted); line-height: 1.5; margin: 0 0 18px;
  }
  .partner-field { margin-bottom: 14px; }
  .partner-field label {
    display: block; font-size: 12px; font-weight: 500; color: var(--body);
    margin-bottom: 5px; letter-spacing: 0.02em;
  }
  .partner-field .optional { font-weight: 400; color: var(--muted); }
  .partner-field input,
  .partner-field textarea {
    width: 100%; box-sizing: border-box;
    padding: 10px 12px; font-size: 15px; font-family: inherit;
    line-height: 1.5;
    color: var(--ink); background: var(--white);
    border: 0.5px solid var(--border); border-radius: 8px;
  }
  .partner-field textarea { min-height: 100px; resize: vertical; }
  .partner-field input:focus,
  .partner-field textarea:focus { outline: 2px solid var(--orange); outline-offset: 0; border-color: transparent; }
  .partner-dialog-error[hidden] { display: none; }
  .partner-dialog-error { font-size: 13px; color: #a3200a; margin: 4px 0 0; }
  .partner-dialog-actions {
    display: flex; flex-wrap: wrap; gap: 10px; justify-content: flex-end; margin-top: 18px;
  }
  .btn.btn-secondary {
    background: var(--white); color: var(--ink);
    border: 0.5px solid var(--border);
  }
  .btn.btn-secondary:hover { background: var(--surface); }
  .partner-dialog .btn:focus-visible,
  .partner-dialog-x:focus-visible { outline: 2px solid var(--orange); outline-offset: 2px; }
  .partner-dialog-success[hidden] { display: none; }
  .partner-dialog-success { text-align: center; }
  .partner-dialog-success p { font-size: 15px; color: var(--body); margin: 0 0 20px; line-height: 1.55; }

  /* LEGAL */
  .legal-page {
    background: var(--surface);
    padding: 72px 0;
  }
  .legal-card {
    max-width: 760px;
    margin: 0 auto;
    padding: 48px;
    background: var(--white);
    border: 0.5px solid var(--border);
    border-radius: 16px;
  }
  .legal-card .eyebrow {
    font-size: 11px; letter-spacing: 2px; color: var(--orange);
    text-transform: uppercase; font-weight: 500;
    margin-bottom: 10px;
  }
  .legal-card h1 {
    font-size: 42px; font-weight: 500; line-height: 1.12;
    color: var(--ink); letter-spacing: -1px;
    margin-bottom: 10px;
  }
  .legal-updated {
    font-size: 14px;
    color: var(--muted);
    margin-bottom: 32px;
  }
  .legal-card h2 {
    font-size: 21px;
    font-weight: 500;
    color: var(--ink);
    letter-spacing: -0.3px;
    margin: 32px 0 10px;
  }
  .legal-card p {
    font-size: 15px;
    line-height: 1.75;
    color: var(--body);
    margin-bottom: 14px;
  }
  .legal-card a {
    color: var(--orange);
    text-decoration: underline;
    text-decoration-color: var(--orange-tint-border);
    text-underline-offset: 3px;
  }
  .legal-card a:hover { color: var(--orange-dark); }
  .legal-card a:focus-visible { outline: 2px solid var(--orange); outline-offset: 3px; border-radius: 3px; }

  /* FOOTER */
  footer { background: var(--cream); color: var(--body); font-size: 13px; padding: 48px 0 24px; }
  .footer-grid {
    display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 32px;
    padding-bottom: 32px; border-bottom: 0.5px solid var(--cream-border);
  }
  .footer-brand { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; }
  .footer-brand img { display: block; }
  .footer-brand span { font-size: 18px; font-weight: 500; color: var(--ink); letter-spacing: -0.4px; }
  .footer-col p { margin: 0; line-height: 1.7; color: var(--body); }
  .footer-col h5 {
    font-weight: 500; color: var(--ink); font-size: 13px;
    margin-bottom: 10px; margin-top: 0;
  }
  .footer-col .muted { color: var(--muted); }
  .footer-bottom {
    padding-top: 20px; display: flex; justify-content: space-between;
    font-size: 12px; color: var(--muted-strong);
  }
  .footer-bottom a { color: inherit; }
  .footer-bottom a:hover { color: var(--ink); }
  .footer a:focus-visible { outline: 2px solid var(--orange); outline-offset: 2px; }

  /* RESPONSIVE */
  @media (max-width: 900px) {
    .hero { padding: 72px 0 64px; }
    .hero h1 { font-size: 44px; letter-spacing: -1.2px; }
    .hero-sub { font-size: 16px; }
    section { padding: 72px 0; }
    .section-head h2 { font-size: 30px; }
    .steps, .why-grid { grid-template-columns: 1fr; gap: 36px; max-width: 560px; }
    .vocab-grid { grid-template-columns: 1fr; }
    .legal-card h1 { font-size: 34px; }
    .cta h2 { font-size: 32px; }
    .partner h2 { font-size: 32px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-brand-col { grid-column: 1 / -1; }
  }
  @media (max-width: 560px) {
    .container { padding: 0 20px; }
    .hero { padding: 56px 0 48px; }
    .hero h1 { font-size: 34px; letter-spacing: -0.9px; }
    .hero-sub { font-size: 15px; }
    .waitlist-form { flex-direction: column; padding: 8px; }
    .waitlist-form button { width: 100%; padding: 12px; }
    section { padding: 56px 0; }
    .section-head h2 { font-size: 26px; }
    .deal-card, .deal-callouts { padding-left: 18px; padding-right: 18px; }
    .vocab-card { padding: 24px; }
    .legal-page { padding: 40px 0; }
    .legal-card { padding: 28px 22px; border-radius: 14px; }
    .legal-card h1 { font-size: 30px; }
    .legal-card h2 { font-size: 19px; }
    .cta h2 { font-size: 28px; }
    .partner h2 { font-size: 28px; }
    .footer-grid { grid-template-columns: 1fr; gap: 24px; }
    .footer-brand-col { grid-column: auto; }
    .footer-bottom { flex-direction: column; gap: 8px; }
  }

  /* SCREEN READER ONLY */
  .sr-only {
    position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
  }

  /* SCROLL REVEAL — fade-up as sections enter the viewport */
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition:
      opacity .7s ease,
      transform .7s cubic-bezier(0.2, 0.7, 0.2, 1);
    will-change: opacity, transform;
  }
  .reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
  }
  @media (prefers-reduced-motion: reduce) {
    .reveal { transform: none; transition: opacity .5s ease; }
  }
