  /* ============== Preview (Beta) additions ============== */

  .hero-eyebrow-row { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
  .hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 7px 14px; border-radius: 999px;
    background: var(--teal); color: var(--paper);
    font-family: var(--font-mono); font-size: 11px; font-weight: 500;
    letter-spacing: 0.12em; text-transform: uppercase;
  }
  .hero-badge .dot {
    width: 7px; height: 7px; border-radius: 50%; background: var(--accent);
    box-shadow: 0 0 0 4px rgba(196,149,106,.25);
  }
  .hero-note {
    display: inline-flex; align-items: center; gap: 7px;
    font-size: 12.5px; color: var(--gray-600); font-weight: 500;
  }
  .hero-note svg { color: var(--green); flex-shrink: 0; }

  /* company section */
  .company {
    padding: 80px 0;
    background: var(--paper-warm);
    border-top: 1px solid rgba(44,36,32,.06);
    border-bottom: 1px solid rgba(44,36,32,.06);
  }
  .company .section-head { margin-bottom: 20px; }
  .company-legal {
    font-family: var(--font-mono);
    font-size: 11.5px;
    letter-spacing: 0.06em;
    color: var(--gray-500);
    margin-bottom: 36px;
  }
  .company-beliefs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 32px;
  }
  .company-belief {
    background: var(--paper);
    border: 1px solid rgba(44,36,32,.10);
    border-radius: var(--radius-lg);
    padding: 24px 22px 22px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: border-color .2s ease;
  }
  .company-belief:hover { border-color: rgba(196,149,106,.45); }
  .company-belief-num {
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    color: var(--accent-dark);
  }
  .company-belief-title {
    font-family: var(--font-display);
    font-size: 19px;
    font-weight: 500;
    letter-spacing: -0.01em;
    color: var(--teal);
    line-height: 1.25;
  }
  .company-belief-body {
    font-size: 14px;
    line-height: 1.55;
    color: var(--gray-700);
  }
  .company-founder-line {
    font-size: 15px;
    line-height: 1.5;
    color: var(--gray-700);
    padding-top: 28px;
    border-top: 1px solid rgba(44,36,32,.08);
  }

  /* founder note */
  .founder { padding: 96px 0; background: var(--paper-warm); border-top: 1px solid rgba(44,36,32,.06); border-bottom: 1px solid rgba(44,36,32,.06); }
  .founder-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 64px; align-items: start; }
  .founder-aside { display: flex; flex-direction: column; gap: 22px; }
  .founder-portrait {
    width: 84px; height: 84px; border-radius: 50%;
    background: var(--teal); color: var(--accent);
    display: grid; place-items: center;
    font-family: var(--font-display); font-style: italic; font-size: 34px;
    box-shadow: var(--shadow-lg);
  }
  .founder-meta-name { font-family: var(--font-display); font-size: 20px; color: var(--teal); font-weight: 500; }
  .founder-meta-role { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray-500); margin-top: 3px; }
  .founder-sig { font-family: var(--font-display); font-style: italic; font-size: 26px; color: var(--accent-dark); margin-top: 4px; }
  .founder-body { display: flex; flex-direction: column; gap: 20px; }
  .founder-body p { font-size: 18px; line-height: 1.62; color: var(--ink-soft); }
  .founder-body p.lead { font-size: 22px; line-height: 1.5; color: var(--teal); font-family: var(--font-display); }
  .founder-body strong { color: var(--teal); font-weight: 600; }

  /* how-it-works video */
  .how-video {
    max-width: 920px;
    margin: 56px auto 0;
    padding-top: 8px;
    border-top: 1px solid rgba(44,36,32,.08);
  }
  .how-video-wrap {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(44,36,32,.12);
    box-shadow: var(--shadow-lg);
    background: var(--teal);
  }
  .how-video-wrap video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #1a1410;
  }
  .how-video-fallback {
    display: none;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    min-height: 200px;
    padding: 1.25rem;
    text-align: center;
    font-size: 14px;
    line-height: 1.5;
    color: rgba(252,251,248,.78);
  }
  .how-video-wrap.is-missing video { display: none; }
  .how-video-wrap.is-missing .how-video-fallback { display: flex; }
  .how-video-caption {
    margin-top: 14px;
    text-align: center;
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.5;
  }

  /* designed poster shown until the real walkthrough mp4 is added */
  .how-video-fallback {
    flex-direction: column; gap: 0; padding: 0; position: relative; overflow: hidden;
    background: radial-gradient(ellipse 70% 80% at 50% 32%, rgba(196,149,106,.20), transparent 70%), var(--teal);
  }
  .hv-scene { position: relative; display: grid; place-items: center; width: 100%; height: 100%; }
  .hv-card { display: block; width: 46%; max-width: 280px; background: #fff; border-radius: 8px; box-shadow: var(--shadow-xl); overflow: hidden; transform: rotate(-1.6deg); }
  .hv-card-bar { display: flex; align-items: center; gap: 4px; height: 20px; padding: 0 9px; background: var(--gray-100); border-bottom: 1px solid rgba(44,36,32,.07); }
  .hv-card-bar > span:not(.hv-card-tab) { width: 5px; height: 5px; border-radius: 50%; background: var(--gray-300); }
  .hv-card-tab { margin-left: auto; font-family: var(--font-mono); font-size: 7px; letter-spacing: .1em; text-transform: uppercase; color: var(--accent-dark); font-weight: 600; }
  .hv-card-body { display: flex; flex-direction: column; gap: 8px; padding: 14px; }
  .hv-l { display: block; height: 5px; background: var(--gray-200); border-radius: 2px; }
  .hv-l.short { width: 50%; }
  .hv-l.med { width: 74%; }
  .hv-shot { position: relative; display: block; height: 62px; margin: 2px 0; background: linear-gradient(180deg,#faf7f2,#efe9e1); border: 1px solid rgba(44,36,32,.08); border-radius: 5px; }
  .hv-shot-hi { position: absolute; right: 16%; top: 22%; width: 34%; height: 42%; border: 2px solid var(--accent); border-radius: 4px; box-shadow: 0 0 0 3px rgba(196,149,106,.2); }
  .hv-shot-redact { position: absolute; left: 12%; bottom: 14%; width: 40%; height: 13%; background: var(--teal); border-radius: 2px; }
  .hv-play { position: absolute; display: grid; place-items: center; width: 56px; height: 56px; border-radius: 50%; background: var(--accent); color: #fff; box-shadow: 0 12px 30px rgba(20,15,10,.42); border: 3px solid rgba(255,255,255,.92); }
  .hv-play svg { width: 22px; height: 22px; margin-left: 3px; }
  .hv-badge { position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%); white-space: nowrap; font-family: var(--font-mono); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; color: rgba(252,251,248,.82); background: rgba(0,0,0,.28); padding: 5px 13px; border-radius: 999px; -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); }

  /* waitlist */
  .waitlist { padding: 104px 0; background: var(--teal); color: var(--paper); position: relative; overflow: hidden; }
  .waitlist::before {
    content: ''; position: absolute; inset: 0; pointer-events: none;
    background:
      radial-gradient(ellipse 50% 60% at 85% 15%, rgba(196,149,106,.16), transparent 70%),
      radial-gradient(ellipse 60% 60% at 8% 92%, rgba(196,149,106,.07), transparent 70%);
  }
  .waitlist-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; position: relative; }
  .waitlist h2 { color: var(--paper); font-size: clamp(34px, 4vw, 52px); }
  .waitlist h2 em { color: var(--accent); }
  .waitlist-lede { font-size: 18px; line-height: 1.6; color: rgba(252,251,248,.76); margin-top: 18px; max-width: 46ch; }
  .waitlist-points { display: flex; flex-direction: column; gap: 13px; margin-top: 28px; }
  .wp-row { display: flex; align-items: flex-start; gap: 11px; font-size: 14.5px; color: rgba(252,251,248,.86); line-height: 1.45; }
  .wp-icon { width: 20px; height: 20px; border-radius: 50%; background: rgba(196,149,106,.2); color: var(--accent); display: grid; place-items: center; flex-shrink: 0; margin-top: 1px; }
  .wp-row strong { color: var(--paper); font-weight: 600; }

  .waitlist-card {
    background: var(--paper); color: var(--ink);
    border-radius: var(--radius-xl);
    padding: 36px 34px 34px;
    box-shadow: var(--shadow-xl);
  }
  .wc-eyebrow { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent-dark); font-weight: 600; }
  .wc-title { font-family: var(--font-display); font-size: 25px; color: var(--teal); font-weight: 500; margin-top: 8px; letter-spacing: -0.01em; }
  .wc-form { display: flex; flex-direction: column; gap: 16px; margin-top: 26px; }
  .wc-captcha { min-height: 0; }
  .wc-captcha:empty { display: none; }
  .contact-modal .wc-captcha:empty {
    display: block;
    min-height: 78px;
  }
  .wc-field { display: flex; flex-direction: column; gap: 7px; }
  .wc-row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
  .wc-label { font-size: 11.5px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--gray-600); font-family: var(--font-mono); }
  .wc-input, .wc-select {
    width: 100%; padding: 12px 14px; font-size: 14.5px; font-family: var(--font-ui);
    color: var(--ink); background: var(--paper-warm);
    border: 1px solid rgba(44,36,32,.14); border-radius: var(--radius);
    transition: border-color .15s, box-shadow .15s;
  }
  .wc-input:focus, .wc-select:focus {
    outline: none; border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(196,149,106,.18); background: #fff;
  }
  .wc-input::placeholder { color: var(--gray-400); }
  .wc-select { appearance: none; -webkit-appearance: none; cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%238A8A8A' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 14px center; padding-right: 38px;
  }
  .wc-submit { margin-top: 6px; width: 100%; justify-content: center; padding: 14px; font-size: 14.5px; }
  .wc-fineprint { font-size: 11.5px; color: var(--gray-500); line-height: 1.5; margin-top: 4px; text-align: center; }
  .wc-fineprint strong { color: var(--green); font-weight: 600; }

  .wc-success { display: none; flex-direction: column; align-items: center; text-align: center; gap: 14px; padding: 26px 8px; }
  .wc-success .check {
    width: 56px; height: 56px; border-radius: 50%;
    background: var(--green-light); color: var(--green);
    display: grid; place-items: center;
  }
  .wc-success h3 { font-family: var(--font-display); font-size: 24px; color: var(--teal); }
  .wc-success p { font-size: 14.5px; color: var(--gray-600); line-height: 1.55; max-width: 38ch; }
  .waitlist-card.done .wc-form, .waitlist-card.done .wc-eyebrow, .waitlist-card.done .wc-title { display: none; }
  .waitlist-card.done .wc-success { display: flex; }

  @media (max-width: 980px) {
    .company-beliefs { grid-template-columns: 1fr; }
    .founder-grid { grid-template-columns: 1fr; gap: 36px; }
    .founder-aside { flex-direction: row; align-items: center; flex-wrap: wrap; gap: 18px; }
    .waitlist-grid { grid-template-columns: 1fr; gap: 44px; }
  }
  @media (max-width: 560px) {
    .wc-row2 { grid-template-columns: 1fr; }
  }

  .wc-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
  }

  .wc-error {
    display: none;
    font-size: 13px;
    color: var(--red);
    text-align: center;
    line-height: 1.45;
    margin-top: 4px;
  }

  .waitlist-card.has-error .wc-error,
  .contact-modal-card.has-error .wc-error {
    display: block;
  }

  .wc-submit:disabled {
    opacity: 0.65;
    cursor: not-allowed;
  }

  .wc-textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.55;
  }

  /* contact modal */
  .contact-modal {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px 16px;
    box-sizing: border-box;
  }
  .contact-modal[hidden] { display: none; }
  .contact-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(44, 36, 32, 0.52);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
  }
  .contact-modal-dialog {
    position: relative;
    width: 100%;
    max-width: 560px;
    max-height: calc(100vh - 48px);
    overflow: auto;
    z-index: 1;
  }
  .contact-modal-card {
    position: relative;
    background: var(--paper-warm);
    border: 1px solid rgba(44,36,32,.10);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg, 0 24px 64px rgba(44,36,32,.18));
    padding: 36px 34px 34px;
  }
  .contact-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(44,36,32,.12);
    background: var(--paper);
    color: var(--gray-600);
    font-size: 16px;
    line-height: 1;
    display: grid;
    place-items: center;
    transition: border-color .15s, color .15s;
  }
  .contact-modal-close:hover {
    border-color: var(--accent);
    color: var(--teal);
  }
  .contact-modal-head {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-right: 36px;
    margin-bottom: 28px;
  }
  .contact-modal-title {
    font-family: var(--font-display);
    font-weight: 500;
    color: var(--teal);
  }
  .contact-modal-lede { font-size: 18px; margin: 0; }
  .contact-modal-card .wc-form { margin-top: 0; }
  .contact-modal-card .wc-fineprint a { color: var(--accent-dark); font-weight: 500; }
  .contact-modal-card .wc-fineprint a:hover { text-decoration: underline; }
  .contact-modal-card.done .wc-form,
  .contact-modal-card.done .contact-modal-head { display: none; }
  .contact-modal-card.done .wc-success { display: flex; }
  body.contact-modal-open { overflow: hidden; }

  /* company modal */
  .company-modal {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px 16px;
    box-sizing: border-box;
  }
  .company-modal[hidden] { display: none; }
  .company-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(44, 36, 32, 0.52);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
  }
  .company-modal-dialog {
    position: relative;
    width: 100%;
    max-width: 920px;
    max-height: calc(100vh - 48px);
    overflow: auto;
    z-index: 1;
    scroll-behavior: smooth;
  }
  .company-modal-card {
    position: relative;
    background: var(--paper-warm);
    border: 1px solid rgba(44,36,32,.10);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg, 0 24px 64px rgba(44,36,32,.18));
    padding: 36px 34px 34px;
  }
  .company-modal-body .company {
    padding: 0;
    background: transparent;
    border: none;
    margin: 0;
  }
  .company-modal-body .company .section-head { margin-bottom: 20px; }
  .company-modal-body .company-beliefs { margin-bottom: 0; }
  .company-modal-body .founder {
    padding: 40px 0 0;
    margin-top: 40px;
    background: transparent;
    border-top: 1px solid rgba(44,36,32,.08);
    border-bottom: none;
  }
  body.company-modal-open { overflow: hidden; }

  @media (max-width: 560px) {
    .contact-modal-card { padding: 28px 22px 26px; }
    .contact-modal-head { padding-right: 28px; }
    .company-modal-card { padding: 28px 22px 26px; }
  }
