    *, *::before, *::after { box-sizing: border-box; }

    /* ── Base ──────────────────────────────────────────────────────────── */
    body {
      margin: 0;
      background: var(--bg-base);
      color: var(--t-primary);
      font-family: var(--ff-body);
      min-height: 100vh;
      overflow-x: hidden;
    }

    /* ── Frosted sticky navbar ──────────────────────────────────────────── */
    .lp-nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 50;
      height: 52px; display: flex; align-items: center; gap: 16px; padding: 0 28px;
      background: rgba(12,16,20,0.82);
      -webkit-backdrop-filter: blur(28px) saturate(180%);
      backdrop-filter: blur(28px) saturate(180%);
      border-bottom: 1px solid var(--line);
    }
    [data-theme="light"] .lp-nav { background: rgba(255,255,255,0.88); }

    .lp-nav-logo {
      display: flex; align-items: center; gap: 8px;
      font-family: 'Space Mono', ui-monospace, 'JetBrains Mono', monospace; font-size: 16px; font-weight: 700;
      letter-spacing: 0.06em; text-transform: uppercase; color: var(--t-primary);
      text-decoration: none;
    }
    .lp-nav-dot {
      width: 13px; height: 13px; border-radius: 50%;
      background: var(--accent, #11D389); box-shadow: 0 0 10px rgba(17,211,137,0.55), 0 0 2px var(--accent, #11D389);
      animation: livePulse 2.2s ease-in-out infinite; flex-shrink: 0;
    }
    .lp-nav-logo em { font-style: normal; color: var(--trust); text-shadow: 0 0 8px rgba(16,185,129,0.40); }
    .lp-nav-right { margin-left: auto; display: flex; align-items: center; gap: 10px; }

    .lp-btn-ghost {
      padding: 6px 14px; border-radius: 6px; border: 1px solid var(--line-mid);
      background: transparent; color: var(--t-secondary); font-size: 12px;
      font-weight: 500; cursor: pointer; transition: all .15s; font-family: inherit;
      text-decoration: none; display: inline-flex; align-items: center;
      white-space: nowrap; height: 32px; box-sizing: border-box;
    }
    .lp-btn-ghost:hover { border-color: var(--line-strong); color: var(--t-primary); }
    @media (max-width: 640px) {
      .lp-btn-ghost { font-size: 10px; padding: 6px 8px; }
    }
    .lp-btn-sign {
      padding: 7px 18px; border-radius: 6px; background: var(--brand); color: #fff;
      font-size: 12px; font-weight: 600; cursor: pointer; border: 0;
      box-shadow: 0 0 10px rgba(255,45,135,0.40); transition: all .15s;
      font-family: var(--ff-data); letter-spacing: 0.08em; text-transform: uppercase;
    }
    .lp-btn-sign:hover { filter: brightness(1.1); box-shadow: 0 0 18px rgba(255,45,135,0.60); }
    .lp-theme-btn {
      width: 32px; height: 32px;
      border-radius: 8px;
      border: 1px solid rgba(255,255,255,0.12);
      background: rgba(255,255,255,0.07);
      cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      position: relative; flex-shrink: 0;
      transition: background .15s, border-color .15s, box-shadow .15s;
    }
    [data-theme="light"] .lp-theme-btn {
      background: #FFFFFF;
      border-color: rgba(0,0,0,0.08);
      box-shadow: 0 2px 8px rgba(0,0,0,0.12), 0 0 0 0.5px rgba(0,0,0,0.05);
    }
    .lp-theme-btn span {
      position: absolute;
      display: flex; align-items: center; justify-content: center;
      transition: opacity .18s, transform .18s;
      pointer-events: none;
      color: var(--t-secondary);
    }
    /* Default dark — moon shown */
    .lp-theme-btn #icon-dark  { opacity: 1; transform: scale(1) rotate(0deg); }
    .lp-theme-btn #icon-light { opacity: 0; transform: scale(0.6) rotate(-20deg); }
    /* Light override — sun shown */
    [data-theme="light"] .lp-theme-btn #icon-dark  { opacity: 0; transform: scale(0.6) rotate(20deg); }
    [data-theme="light"] .lp-theme-btn #icon-light { opacity: 1; transform: scale(1) rotate(0deg); color: #555; }
    .lp-theme-btn:hover { border-color: var(--line-strong); }

    /* ── Hero section ──────────────────────────────────────────────────── */
    .lp-hero {
      position: relative; z-index: 1; min-height: 100vh;
      display: flex; align-items: center; padding: 52px 0 0;
    }
    .lp-hero-inner {
      max-width: 1200px; margin: 0 auto; padding: 0 28px;
      width: 100%; display: grid; grid-template-columns: 1fr 440px;
      gap: 60px; align-items: center;
    }

    /* Badge */
    .lp-badge {
      display: inline-flex; align-items: center; gap: 7px;
      padding: 5px 12px; border-radius: 999px;
      background: rgba(16,185,129,0.08); border: 1px solid rgba(16,185,129,0.25);
      font-family: var(--ff-data); font-size: 10px; font-weight: 600;
      letter-spacing: 0.14em; text-transform: uppercase; color: var(--trust);
      margin-bottom: 28px;
    }
    .lp-badge-dot {
      width: 6px; height: 6px; border-radius: 50%;
      background: var(--trust); box-shadow: 0 0 6px rgba(16,185,129,0.9);
    }

    /* Headline */
    .lp-headline {
      font-family: var(--ff-display); font-weight: 800;
      font-size: clamp(2.8rem, 5vw, 4.4rem); line-height: 1.05;
      letter-spacing: -0.035em; margin: 0 0 20px; color: var(--t-primary);
    }
    .lp-headline em { font-style: italic; font-family: 'Source Serif Pro', 'Iowan Old Style', Georgia, serif; color: var(--brand); text-shadow: none; font-weight: 700; }
    .lp-sub { font-size: 1.05rem; color: var(--t-secondary); max-width: 580px; line-height: 1.65; margin-bottom: 36px; }
    .lp-sub strong { color: var(--t-primary); font-weight: 500; }

    /* Stat bar */
    .stat-bar { display: flex; gap: 0; margin-bottom: 40px; }
    .stat-item {
      display: flex; flex-direction: column;
      padding: 0 28px 0 0; margin-right: 28px; border-right: 1px solid var(--line-mid);
    }
    .stat-item:last-child { border-right: none; }
    .stat-num {
      font-family: var(--ff-data); font-size: 1.85rem;
      font-weight: 700; line-height: 1; letter-spacing: -0.03em;
    }
    .stat-num.cyan  { color: var(--trust); text-shadow: 0 0 12px rgba(16,185,129,0.35); }
    .stat-num.pink  { color: var(--brand); text-shadow: 0 0 10px rgba(255,45,135,0.30); }
    .stat-num.green { color: #30D158; }
    .stat-lbl { font-family: var(--ff-data); font-size: 9px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--t-muted); margin-top: 5px; }

    /* CTA row */
    .cta-row { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
    .lp-cta-primary {
      padding: 13px 28px; border-radius: 6px; background: var(--brand); color: #fff;
      font-size: 13px; font-weight: 700; cursor: pointer; border: 0;
      letter-spacing: 0.08em; text-transform: uppercase; font-family: var(--ff-data);
      box-shadow: var(--brand-glow); transition: all .18s;
    }
    .lp-cta-primary:hover { filter: brightness(1.1); box-shadow: 0 0 28px rgba(255,45,135,0.60); }
    .lp-cta-rec {
      padding: 12px 22px; border-radius: 6px; border: 1px solid var(--line-strong);
      background: transparent; color: var(--t-secondary); font-size: 13px;
      font-weight: 600; cursor: pointer; font-family: inherit; transition: all .15s;
    }
    .lp-cta-rec:hover { border-color: var(--trust); color: var(--trust); }
    .cta-note { font-size: 11px; color: var(--t-muted); font-family: var(--ff-data); letter-spacing: 0.06em; margin-top: 10px; }

    /* Feature pills */
    .pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 32px; }
    .pill {
      display: inline-flex; align-items: center; gap: 6px;
      padding: 6px 12px; border-radius: 999px; border: 1px solid var(--line-mid);
      background: rgba(255,255,255,0.02); color: var(--t-secondary); font-size: 11.5px; font-weight: 500;
    }
    .pill svg { color: var(--brand); flex-shrink: 0; }

    /* ── Auth side panel (floating card) ────────────────────────────────── */
    .lp-auth-side {
      background: var(--bg-surface); border: 1px solid var(--line-mid);
      border-radius: 12px; padding: 32px 28px; position: relative; overflow: hidden;
    }
    .lp-auth-side::before {
      content: ''; position: absolute; top: -60px; right: -60px;
      width: 180px; height: 180px; border-radius: 50%;
      background: radial-gradient(circle, rgba(255,45,135,0.12), transparent 70%); pointer-events: none;
    }
    .lp-auth-side::after {
      content: ''; position: absolute; bottom: -40px; left: -40px;
      width: 140px; height: 140px; border-radius: 50%;
      background: radial-gradient(circle, rgba(16,185,129,0.08), transparent 70%); pointer-events: none;
    }
    .auth-logo {
      font-family: var(--ff-data); font-size: 18px; font-weight: 700;
      letter-spacing: 0.14em; color: var(--t-primary); margin-bottom: 28px; position: relative;
    }
    .auth-logo em { font-style: normal; color: var(--trust); text-shadow: 0 0 8px rgba(16,185,129,0.40); }
    .auth-tabs { display: flex; background: var(--bg-raised); border-radius: 8px; padding: 3px; gap: 2px; margin-bottom: 24px; }
    .auth-tab {
      flex: 1; text-align: center; padding: 8px; border-radius: 6px;
      font-family: var(--ff-data); font-size: 10px; font-weight: 600;
      letter-spacing: 0.12em; text-transform: uppercase; cursor: pointer;
      transition: all .15s; color: var(--t-muted); background: transparent; border: 0;
    }
    .auth-tab.active { background: var(--bg-surface); color: var(--brand); }

    .alert-box { border-radius: 8px; padding: 10px 14px; margin-bottom: 16px; font-size: 12px; font-family: var(--ff-data); }
    .alert-ok  { background: var(--trust-glass); border: 1px solid var(--trust-border); color: var(--trust); }
    .alert-err { background: var(--risk-glass);  border: 1px solid var(--risk-border); color: var(--risk); }

    .hl-label { font-family: var(--ff-data); font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em; color: var(--t-muted); margin-bottom: 7px; display: block; }
    .hl-ig    { margin-bottom: 14px; }
    .modal-input {
      width: 100%; height: 44px; background: var(--bg-raised); border: 1px solid var(--line-mid);
      border-radius: 7px; padding: 0 14px; color: var(--t-primary);
      font-family: var(--ff-body); font-size: 13px; outline: none;
      transition: border-color .15s, box-shadow .15s;
    }
    .modal-input:focus { border-color: rgba(16,185,129,0.50); box-shadow: 0 0 0 3px rgba(16,185,129,0.12); }
    .modal-input::placeholder { color: var(--t-muted); }

    .role-selector { display: flex; background: var(--bg-raised); padding: 3px; border-radius: 8px; margin-bottom: 18px; border: 1px solid var(--line-mid); gap: 3px; }
    .role-selector input { display: none; }
    .role-option { flex: 1; text-align: center; padding: 9px 8px; font-family: var(--ff-data); font-size: 10px; letter-spacing: 0.10em; font-weight: 600; cursor: pointer; border-radius: 5px; transition: all .15s; color: var(--t-muted); user-select: none; text-transform: uppercase; }
    .role-selector input:checked + .role-option { background: var(--bg-surface); color: var(--brand); }

    .btn-primary {
      width: 100%; height: 46px; background: var(--brand); color: #fff;
      border: none; border-radius: 7px; font-weight: 700; font-size: 13.5px;
      cursor: pointer; letter-spacing: 0.04em; font-family: inherit;
      box-shadow: 0 0 14px rgba(255,45,135,0.40); transition: all .18s;
    }
    .btn-primary:hover { filter: brightness(1.1); box-shadow: 0 0 24px rgba(255,45,135,0.60); }
    .oauth-row { display: flex; gap: 8px; margin-top: 12px; }
    .oauth-btn {
      flex: 1; height: 38px; display: flex; align-items: center; justify-content: center; gap: 7px;
      background: var(--bg-raised); border: 1px solid var(--line-mid); border-radius: 7px;
      color: var(--t-secondary); font-size: 12px; cursor: pointer; transition: all .15s; font-family: inherit;
    }
    .oauth-btn:hover { border-color: rgba(255,45,135,0.40); color: var(--brand); }
    .auth-divider { display: flex; align-items: center; gap: 10px; margin: 14px 0; }
    .auth-divider span { font-family: var(--ff-data); font-size: 9px; letter-spacing: 0.10em; text-transform: uppercase; color: var(--t-muted); white-space: nowrap; }
    .auth-divider::before, .auth-divider::after { content: ''; flex: 1; height: 1px; background: var(--line-mid); }
    .auth-links { display: flex; justify-content: space-between; margin-top: 14px; }
    .auth-link  { font-size: 11.5px; color: var(--brand); cursor: pointer; text-decoration: none; }
    .auth-link.muted { color: var(--t-muted); }

    .uname-wrap { position: relative; }
    .uname-at   { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); color: var(--t-muted); font-family: var(--ff-data); font-size: 13px; pointer-events: none; }
    .uname-inp  { padding-left: 26px !important; text-transform: lowercase; }
    .uname-hint { font-size: 11px; margin-top: 5px; font-family: var(--ff-data); min-height: 14px; color: var(--t-muted); }
    .ref-row { display: flex; gap: 8px; }
    .ref-btn { height: 44px; padding: 0 16px; background: var(--bg-raised); border: 1px solid var(--line-mid); border-radius: 8px; color: var(--t-secondary); font-family: var(--ff-data); font-size: 10px; font-weight: 600; cursor: pointer; white-space: nowrap; }

    .sb-footer { font-size: 9px; color: var(--t-muted); font-family: var(--ff-data); opacity: .5; margin-top: 20px; text-align: center; letter-spacing: 0.04em; }
    .hidden { display: none !important; }
    .auth-view { animation: screenIn .35s ease-out; }

    /* ── Job ticker ─────────────────────────────────────────────────────── */
    .ticker-wrap {
      position: relative; z-index: 1; overflow: hidden;
      border-top: 1px solid var(--line-mid); border-bottom: 1px solid var(--line-mid);
      background: var(--bg-surface); padding: 14px 0;
    }
    .ticker-cards { display: flex; gap: 10px; animation: ticker 35s linear infinite; width: max-content; padding: 0 28px; }
    .ticker-cards:hover { animation-play-state: paused; }
    @keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
    @keyframes livePulse {
      0%, 100% { box-shadow: 0 0 6px rgba(17,211,137,0.5), 0 0 2px var(--accent, #11D389); opacity: 1; }
      50%       { box-shadow: 0 0 14px rgba(17,211,137,0.9), 0 0 4px var(--accent, #11D389); opacity: 0.8; }
    }
    .job-chip {
      flex-shrink: 0; display: flex; flex-direction: column; gap: 2px;
      background: var(--bg-raised); border: 1px solid var(--line-mid);
      border-radius: 7px; padding: 9px 14px; min-width: 210px;
      cursor: default; transition: border-color .15s;
    }
    .job-chip:hover { border-color: rgba(255,45,135,0.40); }
    .job-chip-title { font-size: 12.5px; font-weight: 600; color: var(--t-primary); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
    .job-chip-meta  { font-size: 11px; color: var(--t-muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

    /* ── Features section ───────────────────────────────────────────────── */
    .lp-features { position: relative; z-index: 1; padding: 80px 28px; }
    .lp-features-inner { max-width: 1200px; margin: 0 auto; }
    .section-eyebrow { font-family: var(--ff-data); font-size: 10px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--trust); margin-bottom: 16px; }
    .lp-features h2 { font-family: var(--ff-display); font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 700; letter-spacing: -0.03em; line-height: 1.12; margin-bottom: 48px; color: var(--t-primary); }
    .lp-features h2 em { font-style: normal; color: var(--brand); text-shadow: 0 0 16px rgba(255,45,135,0.30); }
    .feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; }
    .feat-card {
      padding: 28px 24px; background: var(--bg-surface); border: 1px solid var(--line);
      position: relative; overflow: hidden; transition: border-color .2s;
    }
    .feat-card:hover { border-color: var(--line-mid); }
    .feat-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--card-accent, var(--line)); }
    .feat-icon { width: 40px; height: 40px; border-radius: 8px; display: grid; place-items: center; margin-bottom: 18px; border: 1px solid var(--line-mid); }
    .feat-title { font-size: 15px; font-weight: 600; color: var(--t-primary); letter-spacing: -0.01em; margin-bottom: 8px; }
    .feat-body { font-size: 12.5px; color: var(--t-secondary); line-height: 1.65; }

    /* ── How it works ────────────────────────────────────────────────────── */
    .lp-how { position: relative; z-index: 1; padding: 72px 28px; background: var(--bg-surface); border-top: 1px solid var(--line-mid); border-bottom: 1px solid var(--line-mid); }
    .lp-how-inner { max-width: 1200px; margin: 0 auto; }
    .lp-how h2 { font-family: var(--ff-display); font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 700; letter-spacing: -0.03em; margin-bottom: 48px; color: var(--t-primary); }
    .how-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; }
    .how-step { padding: 28px 24px; background: var(--bg-raised); border: 1px solid var(--line); position: relative; }
    .step-num { font-family: var(--ff-data); font-size: 2rem; font-weight: 200; color: var(--trust); opacity: 0.55; letter-spacing: -0.04em; margin-bottom: 14px; }
    .step-title { font-size: 14px; font-weight: 600; color: var(--t-primary); margin-bottom: 8px; }
    .step-body { font-size: 12px; color: var(--t-secondary); line-height: 1.6; }

    /* ── Footer ─────────────────────────────────────────────────────────── */
    .lp-footer {
      position: relative; z-index: 1; padding: 40px 28px;
      border-top: 1px solid var(--line-mid); max-width: 1200px; margin: 0 auto;
      display: flex; justify-content: space-between; align-items: center;
      gap: 24px; flex-wrap: wrap;
    }
    .footer-logo { font-family: 'Space Mono', ui-monospace, 'JetBrains Mono', monospace; font-size: 9px; font-weight: 700; letter-spacing: 0.06em; color: var(--t-primary); text-transform: uppercase; }
    .footer-logo em { font-style: normal; color: var(--trust); }

    /* ── Logo System v2.0 · wordmark lockups (public pages) ─────────────────
       Mirrors the canonical rules in tevos.css (which the candidate-app
       loads). Public pages load only tevos-landing.css, so the lockup
       classes are duplicated here so .feat / .feat--violet / .feat--amber
       / .feat--red / .feat--navy resolve correctly. */
    .wordmark {
      font-family: 'Space Mono', ui-monospace, 'JetBrains Mono', monospace;
      font-weight: 700; letter-spacing: 0.06em;
      color: var(--t-primary); text-transform: uppercase; line-height: 1;
    }
    .wordmark .feat,
    .wordmark em.feat        { font-style: normal; font-weight: 400; margin-left: 0.4em; color: #11D389; }
    .wordmark .feat--violet,
    .wordmark em.feat--violet { color: #BF5AF2; }
    .wordmark .feat--amber,
    .wordmark em.feat--amber  { color: #FF9F0A; }
    .wordmark .feat--red,
    .wordmark em.feat--red    { color: #EF4444; }
    .wordmark .feat--navy,
    .wordmark em.feat--navy   { color: #4A90C4; }
    [data-theme="light"] .wordmark .feat,
    [data-theme="light"] .wordmark em.feat        { color: #0EAF73; }
    [data-theme="light"] .wordmark .feat--violet,
    [data-theme="light"] .wordmark em.feat--violet { color: #9333EA; }
    [data-theme="light"] .wordmark .feat--amber,
    [data-theme="light"] .wordmark em.feat--amber  { color: #C2690A; }
    [data-theme="light"] .wordmark .feat--navy,
    [data-theme="light"] .wordmark em.feat--navy   { color: #042142; }
    .footer-copy { font-family: var(--ff-data); font-size: 10px; color: var(--t-muted); letter-spacing: 0.06em; }

    /* ── Responsive ──────────────────────────────────────────────────────── */
    @media (max-width: 1000px) {
      .lp-hero-inner { grid-template-columns: 1fr; gap: 40px; }
      .lp-auth-side { max-width: 480px; width: 100%; }
      .feat-grid { grid-template-columns: repeat(2, 1fr); }
      .how-steps { grid-template-columns: repeat(2, 1fr); }
      .lp-footer { justify-content: center; text-align: center; }
    }
    @media (max-width: 640px) {
      .feat-grid, .how-steps { grid-template-columns: 1fr; }
      .stat-bar { flex-wrap: wrap; gap: 18px; }
      .stat-item { border-right: none; padding-right: 0; margin-right: 0; }
      .lp-headline { font-size: 2.4rem; }
      .pills { display: none; }
    }

    /* ═════════ Screenshot-match additions (2026-04-25) ═════════ */

    /* 1. Two-up "For candidates / For recruiters" split section */
    .lp-split {
      position: relative; z-index: 1;
      padding: 80px 28px;
    }
    .lp-split-inner {
      max-width: 1200px; margin: 0 auto;
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 24px;
    }
    .lp-split-card {
      padding: 44px 40px;
      border-radius: 18px;
      border: 1px solid var(--line-mid);
      background: var(--bg-surface);
    }
    .lp-split-card--dark {
      background: #0F1A24;
      border-color: rgba(255,255,255,0.10);
      color: rgba(255,255,255,0.94);
    }
    [data-theme="light"] .lp-split-card--dark {
      background: #0E1419;
      color: rgba(255,255,255,0.94);
    }
    .lp-split-eyebrow {
      font-family: var(--ff-data); font-size: 11px; font-weight: 700;
      letter-spacing: .14em; text-transform: uppercase;
      color: var(--brand); margin-bottom: 18px;
    }
    .lp-split-card--dark .lp-split-eyebrow { color: var(--brand); }
    .lp-split-h {
      font-family: var(--ff-display);
      font-size: clamp(1.6rem, 2.8vw, 2.2rem); font-weight: 700;
      letter-spacing: -.02em; line-height: 1.2;
      margin: 0 0 16px;
      color: var(--t-primary);
    }
    .lp-split-card--dark .lp-split-h { color: rgba(255,255,255,0.95); }
    .lp-split-h em {
      font-style: italic;
      font-family: 'Source Serif Pro', 'Iowan Old Style', Georgia, serif;
      color: var(--brand);
      font-weight: 700;
    }
    .lp-split-body {
      font-size: 14.5px; line-height: 1.6;
      color: var(--t-secondary); margin: 0 0 20px;
    }
    .lp-split-card--dark .lp-split-body { color: rgba(255,255,255,0.62); }
    .lp-split-list {
      list-style: none; margin: 0 0 22px; padding: 0;
      display: flex; flex-direction: column;
    }
    .lp-split-list li {
      padding: 12px 0;
      border-top: 1px solid var(--line);
      font-size: 13.5px; color: var(--t-primary);
      display: flex; align-items: center; gap: 12px;
    }
    .lp-split-card--dark .lp-split-list li {
      border-top-color: rgba(255,255,255,0.08);
      color: rgba(255,255,255,0.86);
    }
    .lp-split-list li::before {
      content: '—'; color: var(--brand); font-weight: 700;
    }
    .lp-split-cta {
      display: inline-flex; align-items: center; gap: 6px;
      padding: 12px 18px; border-radius: 10px;
      font-family: var(--ff-body); font-size: 13.5px; font-weight: 600;
      cursor: pointer; text-decoration: none;
      border: 1px solid transparent;
      transition: transform .12s ease, background .15s, border-color .15s;
    }
    .lp-split-cta--primary { background: var(--brand); color: #07080A; }
    .lp-split-cta--primary:hover { filter: brightness(1.05); transform: translateY(-1px); }
    .lp-split-cta--ghost {
      background: transparent; color: rgba(255,255,255,0.95);
      border-color: rgba(255,255,255,0.20);
    }
    .lp-split-cta--ghost:hover { border-color: rgba(255,255,255,0.45); }

    @media (max-width: 880px) {
      .lp-split-inner { grid-template-columns: 1fr; }
      .lp-split-card { padding: 32px 26px; }
    }

    /* 2. Numbered feature card labels (01 / Matching, …) */
    .feat-card-label {
      font-family: var(--ff-data); font-size: 10.5px; font-weight: 700;
      letter-spacing: .14em; text-transform: uppercase;
      color: var(--t-muted);
      margin-bottom: 12px;
    }

    /* 3. Multi-column footer (PRODUCT / COMPANY / RESOURCES) */
    .lp-footer-grid {
      max-width: 1200px; margin: 0 auto;
      padding: 56px 28px 28px;
      display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 40px;
      border-top: 1px solid var(--line);
    }
    .lp-footer-brand .footer-logo {
      font-family: 'Space Mono', ui-monospace, 'JetBrains Mono', monospace; font-size: 16px; font-weight: 700;
      letter-spacing: 0.06em; color: var(--t-primary); text-transform: uppercase;
      display: inline-flex; align-items: center; gap: 8px;
    }
    .lp-footer-brand .footer-logo::before {
      content: ''; width: 12px; height: 12px; border-radius: 50%;
      background: var(--brand);
    }
    .lp-footer-brand p {
      font-size: 13px; color: var(--t-secondary);
      max-width: 32ch; line-height: 1.55; margin: 12px 0 0;
    }
    .lp-footer-col h5 {
      font-family: var(--ff-data); font-size: 11px; font-weight: 700;
      letter-spacing: .14em; text-transform: uppercase;
      color: var(--t-muted); margin: 0 0 14px;
    }
    .lp-footer-col ul {
      list-style: none; margin: 0; padding: 0;
      display: flex; flex-direction: column; gap: 8px;
    }
    .lp-footer-col a {
      font-size: 13px; color: var(--t-primary);
      text-decoration: none; transition: color .12s;
    }
    .lp-footer-col a:hover { color: var(--brand); }
    .lp-footer-meta {
      max-width: 1200px; margin: 0 auto;
      padding: 18px 28px;
      display: flex; justify-content: space-between; align-items: center;
      font-family: var(--ff-data); font-size: 11px; color: var(--t-muted);
      letter-spacing: .04em;
      border-top: 1px solid var(--line);
    }
    @media (max-width: 880px) {
      .lp-footer-grid { grid-template-columns: 1fr 1fr; }
      .lp-footer-brand { grid-column: 1 / -1; }
      .lp-footer-meta { flex-direction: column; gap: 8px; text-align: center; }
    }

    /* 4. Section eyebrow restyled (smaller, screenshot-match) */
    .section-eyebrow {
      font-family: var(--ff-data); font-size: 10.5px; font-weight: 700;
      letter-spacing: .16em; text-transform: uppercase;
      color: var(--t-muted); margin-bottom: 10px;
    }

    /* 5. Mixed-style headline italic in features + how-it-works h2 */
    .lp-features h2 em,
    .lp-how h2 em {
      font-style: italic;
      font-family: 'Source Serif Pro', 'Iowan Old Style', Georgia, serif;
      color: var(--brand);
      text-shadow: none;
      font-weight: 700;
    }

    /* 6. Hero eyebrow strip — VOL. III · EDITION 2026 */
    .lp-eyebrow-strip {
      display: flex; align-items: center; gap: 14px;
      margin: 0 0 26px;
      font-family: var(--ff-data); font-size: 10.5px; font-weight: 600;
      letter-spacing: .14em; text-transform: uppercase;
      color: var(--t-muted);
    }
    .lp-eyebrow-line { flex: 0 0 56px; height: 1px; background: var(--line-mid); }
    .lp-eyebrow-text { flex-shrink: 0; }

    /* Hero serif headline — match screenshot: large display serif */
    .lp-headline {
      font-family: 'Source Serif Pro', 'Iowan Old Style', Georgia, serif;
      font-size: clamp(2.6rem, 5.4vw, 4.4rem);
      font-weight: 700;
      letter-spacing: -.02em;
      line-height: 1.05;
    }

    /* Hero sub-copy + screenshot italic emphasis */
    .lp-sub strong { color: var(--t-primary); font-weight: 600; }
    .lp-sub em {
      font-style: italic;
      font-family: 'Source Serif Pro', 'Iowan Old Style', Georgia, serif;
      color: var(--t-primary);
      font-weight: 600;
    }

    /* 7. Match preview card (right side of hero) */
    .lp-match-wrap {
      display: flex; flex-direction: column; gap: 12px;
      position: relative;
      max-width: 540px;
      width: 100%;
      justify-self: end;
    }
    .lp-match-cap {
      font-family: 'Source Serif Pro', 'Iowan Old Style', Georgia, serif;
      font-style: italic; font-size: 13px;
      color: var(--t-muted);
      margin: 0;
    }
    .lp-match-cap em { font-style: italic; }
    .lp-match-cap--top { text-align: right; padding-right: 16px; }
    .lp-match-cap--bot { text-align: left;  padding-left:  16px; }

    .lp-match-card {
      background: var(--bg-surface);
      border: 1px solid var(--line);
      border-radius: 18px;
      box-shadow: 0 24px 48px -32px rgba(0,0,0,.18), 0 1px 0 rgba(255,255,255,.04) inset;
      overflow: hidden;
    }
    [data-theme="light"] .lp-match-card {
      background: #FFFFFF;
      box-shadow: 0 28px 56px -36px rgba(15,23,42,.18);
    }

    .lp-match-head {
      display: flex; align-items: center; justify-content: space-between;
      padding: 16px 20px;
      border-bottom: 1px solid var(--line);
    }
    .lp-match-dots { display: flex; gap: 6px; }
    .lp-match-dots span {
      width: 8px; height: 8px; border-radius: 50%;
      background: var(--line-mid);
    }
    .lp-match-dots span:first-child { background: var(--brand); }
    .lp-match-session {
      font-family: var(--ff-data); font-size: 10px; font-weight: 700;
      letter-spacing: .16em; text-transform: uppercase;
      color: var(--t-muted);
    }

    .lp-match-row {
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto;
      gap: 24px; align-items: center;
      padding: 14px 20px;
      border-bottom: 1px solid var(--line);
    }
    .lp-match-row:last-of-type { border-bottom: 0; }
    .lp-match-meta { min-width: 0; }
    .lp-match-title {
      font-size: 13.5px; font-weight: 700; color: var(--t-primary);
      line-height: 1.3;
      white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
    }
    .lp-match-sub {
      font-size: 12px; color: var(--t-secondary); margin-top: 3px;
      white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
    }
    .lp-match-row--dim .lp-match-title,
    .lp-match-row--dim .lp-match-sub { color: var(--t-muted); }

    .lp-match-score {
      display: flex; align-items: center; gap: 14px;
      flex-shrink: 0;
    }
    .lp-bar {
      position: relative; display: block;
      width: 96px; height: 5px; border-radius: 999px;
      background: var(--line);
      overflow: hidden;
    }
    .lp-bar-fill {
      position: absolute; inset: 0 auto 0 0;
      background: var(--brand); border-radius: 999px;
    }
    .lp-bar-fill--dim { background: var(--line-mid); }
    .lp-num {
      font-family: var(--ff-data); font-size: 14px; font-weight: 700;
      color: var(--t-primary);
      width: 26px; text-align: right;
    }
    .lp-num--dim { color: var(--t-muted); }

    .lp-match-foot {
      display: flex; align-items: center; justify-content: space-between;
      padding: 14px 20px;
      border-top: 1px solid var(--line);
      font-family: var(--ff-data); font-size: 11px; color: var(--t-muted);
      letter-spacing: .04em;
    }
    .lp-match-live {
      display: inline-flex; align-items: center; gap: 6px;
      color: var(--brand); font-weight: 600;
    }
    .lp-match-live-dot {
      width: 7px; height: 7px; border-radius: 50%;
      background: var(--brand);
      box-shadow: 0 0 0 0 color-mix(in srgb, var(--brand) 60%, transparent);
      animation: lp-pulse 2.4s ease-in-out infinite;
    }
    @keyframes lp-pulse {
      0%,100% { box-shadow: 0 0 0 0 color-mix(in srgb, var(--brand) 55%, transparent); }
      50%     { box-shadow: 0 0 0 6px transparent; }
    }
    .lp-match-tally { font-style: italic; }

    @media (max-width: 880px) {
      .lp-match-wrap { max-width: 100%; justify-self: stretch; }
      .lp-match-cap { display: none; }
    }

    /* 8. Auth section (login / signup / request access dedicated section) */
    .lp-auth-section {
      position: relative; z-index: 1;
      padding: 72px 28px 96px;
      background: var(--bg-surface);
      border-top: 1px solid var(--line);
    }
    .lp-auth-shell {
      max-width: 560px; margin: 0 auto;
      display: flex; flex-direction: column; gap: 28px;
      align-items: center;
    }
    .lp-auth-head { text-align: center; }
    .lp-auth-h {
      font-family: 'Source Serif Pro', 'Iowan Old Style', Georgia, serif;
      font-size: clamp(1.8rem, 3.4vw, 2.4rem);
      font-weight: 700; letter-spacing: -.02em; line-height: 1.15;
      margin: 0 0 10px;
      color: var(--t-primary);
    }
    .lp-auth-h em {
      font-style: italic;
      color: var(--brand);
    }
    .lp-auth-sub {
      font-size: 14px; color: var(--t-secondary);
      margin: 0;
    }
    /* Override the hero-scoped sticky/positioned auth-side styles inside this section */
    .lp-auth-section .lp-auth-side {
      position: static;
      width: 100%;
      max-width: 460px;
      margin: 0 auto;
    }
    .lp-auth-section .lp-auth-side::before,
    .lp-auth-section .lp-auth-side::after { display: none; }

    /* 9. Hero grid — give the match card the right column at desktop */
    @media (min-width: 1080px) {
      .lp-hero-inner {
        grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
        align-items: center;
      }

/* Mobile nav hamburger */
.lp-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px; height: 44px;
  background: none; border: none; cursor: pointer;
  padding: 0;
}
.lp-hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--t-primary, #f5f5f7);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}
.lp-nav-drawer {
  display: none;
  position: fixed; inset: 0; z-index: 200;
  background: rgba(0,0,0,0.96);
  flex-direction: column;
  align-items: center; justify-content: center;
  gap: 28px;
}
.lp-nav-drawer a, .lp-nav-drawer button.lp-theme-btn {
  font-size: 20px; font-family: var(--ff-body, system-ui);
  color: var(--t-primary, #f5f5f7); text-decoration: none;
  opacity: 0.85;
}
.lp-nav-drawer a:hover { opacity: 1; }
.lp-nav-drawer .lp-btn-sign-m {
  margin-top: 8px; padding: 10px 28px;
  background: var(--trust, #11D389); color: #000;
  border-radius: 6px; font-weight: 600; font-size: 15px;
}
.lp-nav-drawer .lp-close {
  position: absolute; top: 20px; right: 20px;
  width: 44px; height: 44px; background: none; border: none;
  cursor: pointer; font-size: 24px; color: var(--t-primary, #f5f5f7);
}
@media (max-width: 767px) {
  .lp-nav-right { display: none !important; }
  .lp-hamburger { display: flex; }
  .lp-nav-drawer.open { display: flex; }
}
    }

/* ── Funnel footer CTA ─────────────────────────────────────────────────────── */
.lp-funnel-cta {
  text-align: center;
  padding: 64px 24px 48px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.lp-funnel-cta p {
  font-size: 22px; font-weight: 500;
  color: var(--t-primary, #f5f5f7);
  margin: 0 0 20px;
  font-family: var(--ff-body, system-ui);
}
.lp-funnel-cta__btn {
  display: inline-block;
  padding: 12px 28px; border-radius: 8px;
  background: var(--trust, #11D389); color: #000;
  font-weight: 600; font-size: 15px; text-decoration: none;
  font-family: var(--ff-body, system-ui);
  transition: opacity 0.15s;
}
.lp-funnel-cta__btn:hover { opacity: 0.88; }
