    /* =========================================================
       Tokens (shared across the Fizook pages)
       ========================================================= */
    *,*::before,*::after{box-sizing:border-box}
    :root{
      --bg:#0b1220;
      --surface:#ffffff;
      --surface-2:#f8fafc;
      --border:#e5e7eb;
      --text:#0f172a;
      --muted:#64748b;
      --primary:#2481bc;
      --primary-dark:#1a6494;
      --success:#16a34a;
      --success-light:#dcfce7;
      --danger:#dc2626;
      --warn:#f59e0b;
      --accent:#7c3aed;
      --shadow-sm:0 1px 3px rgba(15,23,42,.10);
      --shadow:0 6px 20px rgba(15,23,42,.14);
      --shadow-lg:0 20px 48px rgba(15,23,42,.24);
      --radius:14px;
      --radius-sm:10px;
      --radius-lg:20px;
      --radius-button:6px;
    }
    html,body{margin:0;padding:0;font-family:'Inter',system-ui,-apple-system,Segoe UI,Roboto,sans-serif;color:var(--text);background:var(--surface-2);scroll-behavior:smooth}
    /* Vendor-portal background gradients — amber + green, matching
       fizook-vendor-login.html. Diner-side pages use purple + blue in
       the same slots so vendors instantly know they're on the vendor
       flow. */
    body{
      min-height:100vh;
      background:
        radial-gradient(900px 500px at 10% -10%, rgba(245,158,11,.10), transparent 60%),
        radial-gradient(900px 500px at 110% 0%, rgba(22,163,74,.12), transparent 60%),
        radial-gradient(700px 420px at 50% 60%, rgba(245,158,11,.06), transparent 70%),
        #eef2f7;
    }
    img{max-width:100%;display:block}
    button{font-family:inherit}
    a{color:inherit}

    /* Fixed 3px scroll-progress bar — vendor-themed gradient
       (green → amber → green vs the diner side's cyan → purple → green). */
    .scroll-progress{
      position:fixed;top:0;left:0;height:3px;width:0%;z-index:90;
      background:linear-gradient(90deg,#22c55e,#f59e0b,#16a34a);
      box-shadow:0 0 12px rgba(22,163,74,.5);
      transition:width .1s linear;
    }

    /* =========================================================
       Top bar — sticky nav shared with fizook-vendor-login
       =========================================================
       Four nav links (How It Works / Build Offer / Sign Up / Log In).
       On this page "Sign Up" carries .active + aria-current="page".
       Also includes the vendor-side live-status pill (≥1100px only). */
    .topbar{
      position:sticky;top:0;z-index:50;
      background:rgba(11,18,32,.92);backdrop-filter:saturate(1.4) blur(10px);
      color:#fff;border-bottom:1px solid rgba(255,255,255,.08);
    }
    .topbar-inner{max-width:1280px;margin:0 auto;display:flex;align-items:center;gap:16px;padding:12px 16px}

    /* --- Admin dropdown (Documentation / Vendor tools / Portals) ---
       Shared discovery menu used across the whole app. Toggled by JS
       below with outside-click and Escape handlers. */
    .admin-menu{position:relative;display:inline-block;flex:0 0 auto}
    .admin-btn{
      background:rgba(255,255,255,.08);color:#fff;border:0;
      border-radius:6px;padding:7px 12px;cursor:pointer;
      font-family:inherit;font-size:.92rem;font-weight:700;
      display:inline-flex;align-items:center;gap:8px;
      transition:background .15s ease;
    }
    .admin-btn:hover{background:rgba(255,255,255,.18)}
    .admin-btn[aria-expanded="true"]{background:rgba(255,255,255,.18)}
    .admin-btn > i.fa-cogs{color:#22d3ee;font-size:.95rem}
    .admin-btn .admin-caret{color:#cbd5e1;font-size:.78rem;margin-left:2px;transition:transform .2s ease}
    .admin-btn[aria-expanded="true"] .admin-caret{transform:rotate(180deg)}
    .admin-dropdown{
      position:absolute;top:100%;right:0;left:auto;
      margin-top:6px;min-width:210px;
      background:rgba(11,18,32,.98);
      border:1px solid rgba(255,255,255,.12);
      border-radius:10px;padding:6px;
      box-shadow:0 16px 40px rgba(0,0,0,.5);
      z-index:60;
    }
    .admin-dropdown[hidden]{display:none}
    .admin-link{
      display:flex;align-items:center;gap:10px;
      padding:9px 12px;border-radius:6px;
      color:#cbd5e1;text-decoration:none;
      font-size:.92rem;font-weight:600;
      transition:background .15s ease,color .15s ease;
    }
    .admin-link:hover{background:rgba(255,255,255,.10);color:#fff}
    .admin-link.active{background:rgba(34,211,238,.15);color:#fff}
    .admin-link i{color:#22d3ee;width:14px;text-align:center;font-size:.92rem}
    .admin-section-label{
      font-size:.66rem;font-weight:800;letter-spacing:.7px;text-transform:uppercase;
      color:#94a3b8;padding:8px 12px 4px;
    }
    .admin-divider{
      height:1px;background:rgba(255,255,255,.10);margin:6px 4px;
    }
    /* Amber warning box shown inside the register card. Diners who
       accidentally land here (looking for the consumer signup) get
       a one-click bail-out to fizook-register.html. */
    .wrong-portal{
      display:flex;align-items:flex-start;gap:10px;
      padding:11px 14px;border-radius:12px;
      background:linear-gradient(135deg,rgba(245,158,11,.10),rgba(245,158,11,.04));
      border:1px solid rgba(245,158,11,.35);
      color:#92400e;font-size:.84rem;line-height:1.45;
      margin-top:12px;
    }
    .wrong-portal i{color:#b45309;font-size:1rem;margin-top:1px;flex:0 0 auto}
    .wrong-portal strong{color:#7c2d12;font-weight:800}
    .wrong-portal a{color:#b45309;font-weight:800;text-decoration:none;white-space:nowrap}
    .wrong-portal a:hover{text-decoration:underline}
    @media (max-width:559.98px){
      .admin-btn{padding:6px 10px;font-size:.86rem;gap:6px}
      .admin-btn-label{display:none}
    }
    /* Brand mark — green→amber dot on this page (matches vendor theme).
       Diner side uses cyan→purple, redeem/history use different combos. */
    .brand{font-weight:800;letter-spacing:.5px;font-size:1.25rem;display:flex;align-items:center;gap:8px;text-decoration:none;color:#fff}
    .brand .dot{width:10px;height:10px;border-radius:50%;background:linear-gradient(135deg,#22c55e,#f59e0b);box-shadow:0 0 16px rgba(34,197,94,.7)}

    /* "N diners hungry near you right now" pill (desktop-only).
       Same pattern as fizook-vendor-login. Auto-ticks up in the JS. */
    .live-status{
      display:none;align-items:center;gap:8px;font-size:.78rem;color:#cbd5e1;
      padding:5px 10px;border-radius:999px;background:rgba(34,197,94,.12);
      border:1px solid rgba(34,197,94,.25);
    }
    .live-status .pulse-dot{
      width:7px;height:7px;border-radius:50%;background:#22c55e;
      box-shadow:0 0 0 0 rgba(34,197,94,.6);animation:pulse 1.6s infinite;
    }
    @media (min-width:1100px){.live-status{display:inline-flex}}
    .nav-toggle{margin-left:auto;background:rgba(255,255,255,.08);color:#fff;border:0;border-radius:6px;padding:11px 14px;min-width:44px;min-height:44px;cursor:pointer}
    .topnav{display:none}
    .nav-link{
      background:transparent;border:0;font-family:inherit;color:#cbd5e1;
      text-decoration:none;font-size:.92rem;padding:6px 10px;border-radius:8px;
      display:inline-flex;align-items:center;gap:6px;cursor:pointer;
    }
    .nav-link:hover{background:rgba(255,255,255,.14);color:#fff}
    .nav-link.active{background:rgba(22,163,74,.28);color:#fff}
    @media (min-width:900px){
      .nav-toggle{display:none}
      .topnav{display:flex;gap:4px;margin-left:auto;align-items:center;flex-wrap:wrap}
    }
    .topnav.open{
      display:flex;flex-direction:column;align-items:stretch;gap:2px;
      padding:8px 12px;background:rgba(11,18,32,.98);
      position:absolute;top:100%;left:0;right:0;
      border-bottom:1px solid rgba(255,255,255,.08);
    }
    @media (min-width:900px){.topnav.open{position:static;flex-direction:row;background:transparent;padding:0;border:0}}

    /* =========================================================
       Hero — vendor-themed split: pitch (left) + register card (right)
       =========================================================
       Green→amber gradient background matching vendor-login. Two
       decorative floating blobs: green (top-left) + amber (bottom-right).
       Falling emojis are vendor-themed (food + trophies + money). */
    .hero{
      position:relative;overflow:hidden;
      background:linear-gradient(135deg,#0b1220,#15803d 45%,#f59e0b 110%);
      color:#fff;padding:54px 20px 70px;
    }
    /* Green/amber decorative blobs — clipped by .hero{overflow:hidden}. */
    .hero::before,.hero::after{
      content:"";position:absolute;border-radius:50%;filter:blur(50px);opacity:.55;pointer-events:none;
    }
    .hero::before{width:340px;height:340px;background:#22c55e;top:-100px;left:-80px;animation:floatA 9s ease-in-out infinite}
    .hero::after {width:380px;height:380px;background:#f59e0b;bottom:-140px;right:-80px;animation:floatB 11s ease-in-out infinite}
    @keyframes floatA{0%,100%{transform:translateY(0)}50%{transform:translateY(20px)}}
    @keyframes floatB{0%,100%{transform:translate(0,0)}50%{transform:translate(-12px,-18px)}}

    /* --- Falling vendor-themed emojis (💰🍴🏆🍳💵🥇) ---
       Six spans at fixed left-% columns; staggered animation delays. */
    .coin{position:absolute;font-size:1.4rem;opacity:.85;pointer-events:none;animation:coinFall linear infinite}
    .coin.c1{left:8%; top:-40px;animation-duration:9s; animation-delay:0s}
    .coin.c2{left:24%;top:-40px;animation-duration:11s;animation-delay:1.6s}
    .coin.c3{left:40%;top:-40px;animation-duration:8s; animation-delay:.8s}
    .coin.c4{left:62%;top:-40px;animation-duration:12s;animation-delay:3s}
    .coin.c5{left:78%;top:-40px;animation-duration:10s;animation-delay:2.2s}
    .coin.c6{left:92%;top:-40px;animation-duration:13s;animation-delay:4.5s}
    @keyframes coinFall{
      0%  {transform:translateY(-40px) rotate(0);opacity:0}
      10% {opacity:.9}
      90% {opacity:.9}
      100%{transform:translateY(110vh) rotate(720deg);opacity:0}
    }

    /* Hero content container — single column on phones, 1fr : 460px
       split at ≥980px so the register card has room for the taller form. */
    .hero-inner{
      position:relative;z-index:1;
      max-width:1240px;margin:0 auto;
      display:grid;gap:38px;align-items:start;
      grid-template-columns:1fr;
    }
    @media (min-width:980px){
      .hero-inner{grid-template-columns:minmax(0,1fr) minmax(0,460px);gap:48px}
    }

    /* --- LEFT COLUMN: vendor pitch + perks list ---
       Slides in from the left on load (slideInL). Contains:
       amber "🎁 FREE SIGNUP" tag → headline with lime-gradient accent
       word → lead copy → 4-item perks list → sign-in cross-link. */
    .pitch{display:flex;flex-direction:column;gap:18px;animation:slideInL .7s ease both}
    @keyframes slideInL{from{opacity:0;transform:translateX(-24px)}to{opacity:1;transform:translateX(0)}}
    /* Amber "🎁 FREE SIGNUP" tag — this page's signature hook. Different
       color than the diner-register's green tag (amber matches vendor theme). */
    .hero-tag{
      display:inline-flex;align-items:center;gap:8px;align-self:flex-start;
      background:rgba(245,158,11,.18);border:1px solid rgba(245,158,11,.4);
      padding:6px 14px;border-radius:999px;
      font-size:.74rem;font-weight:800;letter-spacing:.6px;text-transform:uppercase;
      color:#fde68a;
    }
    .hero-tag .gift{font-size:.95rem}
    /* Shared pulse keyframe — unused on this specific page but kept
       for token consistency (dots elsewhere in the app reuse it). */
    @keyframes pulse{
      0%{box-shadow:0 0 0 0 rgba(34,197,94,.6)}
      70%{box-shadow:0 0 0 14px rgba(34,197,94,0)}
      100%{box-shadow:0 0 0 0 rgba(34,197,94,0)}
    }
    /* Fluid headline — 1.9rem tiny phone → 3.4rem desktop. */
    .hero h1{
      margin:0;font-size:clamp(1.9rem,4.5vw,3.4rem);
      font-weight:800;letter-spacing:-1px;line-height:1.05;max-width:680px;
    }
    /* Vendor-side gradient accent — cream → mint → lime (matches
       vendor-login). Diner side uses cyan → purple → pink. */
    .hero h1 .gradient-text{
      background:linear-gradient(135deg,#fde68a 0%,#a7f3d0 50%,#bef264 100%);
      -webkit-background-clip:text;background-clip:text;color:transparent;
      background-size:200% 200%;animation:gradShift 8s ease infinite;
    }
    @keyframes gradShift{0%,100%{background-position:0% 50%}50%{background-position:100% 50%}}
    .hero p.lead{margin:0;font-size:clamp(.95rem,1.4vw,1.1rem);line-height:1.55;opacity:.92;max-width:560px}

    /* --- Perks list — 4 glassmorphic pills that cascade in ---
       Each pill fades + slides in with a staggered animation delay
       (perkIn keyframe + .perk:nth-child delay overrides below).
       Icon squares use a green→amber gradient (vendor-tinted). */
    .perks{
      display:flex;flex-direction:column;gap:10px;margin-top:6px;
      max-width:520px;
    }
    .perk{
      display:flex;align-items:center;gap:12px;
      background:rgba(255,255,255,.10);border:1px solid rgba(255,255,255,.16);
      border-radius:12px;padding:10px 14px;
      backdrop-filter:saturate(1.4) blur(8px);
      animation:perkIn .55s ease both;
      opacity:0;
    }
    .perk:nth-child(1){animation-delay:.25s}
    .perk:nth-child(2){animation-delay:.40s}
    .perk:nth-child(3){animation-delay:.55s}
    .perk:nth-child(4){animation-delay:.70s}
    @keyframes perkIn{from{opacity:0;transform:translateX(-12px)}to{opacity:1;transform:translateX(0)}}
    .perk-ico{
      flex:0 0 36px;width:36px;height:36px;border-radius:10px;
      background:linear-gradient(135deg,rgba(34,197,94,.45),rgba(245,158,11,.45));
      display:grid;place-items:center;color:#fff;font-size:.95rem;
    }
    .perk-text{font-weight:600;font-size:.92rem;line-height:1.3}
    .perk-text strong{color:#a7f3d0;font-weight:800}

    .have-account{margin-top:10px;font-size:.9rem;opacity:.88}
    .have-account a{color:#fde68a;font-weight:800;text-decoration:none}
    .have-account a:hover{text-decoration:underline}

    /* =========================================================
       RIGHT COLUMN: register card (glass with green/amber halo)
       =========================================================
       Frosted white card that slides in from the right on load.
       ::before pseudo is a green→amber→gold halo behind the card
       (matches vendor-login's login card halo). The form inside
       is longer than the diner side — 13 required fields — so the
       card is often the tallest thing on the page. */
    .reg-card{
      position:relative;
      background:rgba(255,255,255,.96);
      backdrop-filter:saturate(1.4) blur(10px);
      border:1px solid rgba(255,255,255,.6);
      color:var(--text);
      border-radius:var(--radius-lg);
      padding:24px 22px 22px;
      box-shadow:var(--shadow-lg);
      animation:slideInR .7s ease both;
    }
    @keyframes slideInR{from{opacity:0;transform:translateX(24px)}to{opacity:1;transform:translateX(0)}}
    /* Vendor-themed halo — green (success), amber (money), gold (win). */
    .reg-card::before{
      content:"";position:absolute;inset:-1px;border-radius:var(--radius-lg);
      background:linear-gradient(135deg,rgba(34,197,94,.7),rgba(245,158,11,.7),rgba(251,191,36,.7));
      z-index:-1;filter:blur(14px);opacity:.55;
    }
    /* Card header — "Create your vendor account" + subtitle. */
    .reg-head{text-align:center;margin-bottom:16px}
    .reg-head h2{margin:0;font-size:1.35rem;font-weight:800;letter-spacing:-.3px}
    .reg-head p{margin:4px 0 0;font-size:.86rem;color:var(--muted)}

    /* =========================================================
       Step-progress indicator — 3 gray pills that turn green→amber
       as the user fills required fields
       =========================================================
       Purely visual (form is single-page). updateDots() in the JS
       computes progress from filled reqFields + passwords + terms,
       then adds .active to that many dots. */
    .step-dots{
      display:flex;align-items:center;gap:6px;justify-content:center;margin-bottom:16px;
    }
    .step-dot{
      width:32px;height:6px;border-radius:999px;background:#e2e8f0;
      transition:background .2s ease,transform .2s ease;
    }
    /* Active dot — filled green→amber gradient + slight horizontal stretch. */
    .step-dot.active{
      background:linear-gradient(90deg,#16a34a,#f59e0b);
      transform:scaleX(1.15);
    }

    /* =========================================================
       Form field primitives — .field, .field-row, .field-row-3
       =========================================================
       .field: outer column with label + input-wrap.
       .field-row: 2-column row (owner first/last).
       .field-row-3: 2fr/1fr/1fr row for city / state / zip. On
       phone-portrait collapses to equal columns, on tiny phones to
       single column. */
    .field{display:flex;flex-direction:column;gap:6px;margin-bottom:12px;min-width:0}
    .field-row{display:grid;gap:12px;grid-template-columns:1fr 1fr}
    .field-row-3{display:grid;gap:12px;grid-template-columns:2fr 1fr 1fr}
    @media (max-width:559.98px){.field-row-3{grid-template-columns:1fr 1fr 1fr}}
    @media (max-width:419.98px){
      .field-row{grid-template-columns:1fr}
      .field-row-3{grid-template-columns:1fr}
    }
    .field label{
      font-size:.7rem;color:var(--muted);text-transform:uppercase;
      letter-spacing:.6px;font-weight:700;
      display:flex;align-items:center;justify-content:space-between;gap:6px;
    }
    .field label .opt{color:var(--muted);font-weight:600;text-transform:none;letter-spacing:0;font-size:.7rem}
    .field label .req{color:var(--danger);margin-left:3px}
    .input-wrap{position:relative}
    .input-wrap > i.pre{
      position:absolute;left:12px;top:50%;transform:translateY(-50%);
      color:var(--muted);font-size:.95rem;pointer-events:none;
    }
    /* Base input. font-size:1rem (16px) prevents iOS Safari auto-zoom on focus. */
    .input{
      width:100%;font-family:inherit;color:var(--text);
      background:#fff;border:1px solid var(--border);border-radius:10px;
      padding:11px 12px 11px 36px;font-size:1rem;
      transition:border-color .15s ease,box-shadow .15s ease,background .15s ease;
    }
    .input.no-icon{padding-left:12px}
    /* Native <select> styling — hide the OS chevron and draw our own
       via an inline SVG background-image. Custom chevron matches the
       token muted color (#64748b) so it looks like part of the design. */
    select.input{appearance:none;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2364748b' d='M6 9L1 4h10z'/%3E%3C/svg%3E");background-repeat:no-repeat;background-position:right 12px center;padding-right:32px}
    /* Focus ring uses the success color (vendor page uses green as
       primary; diner side uses blue). */
    .input:focus{
      outline:0;border-color:var(--success);
      box-shadow:0 0 0 3px rgba(22,163,74,.18);
    }
    /* Live-validation states applied by input handlers in JS. */
    .input.is-valid{border-color:#86efac;box-shadow:0 0 0 3px rgba(22,163,74,.18)}
    .input.is-invalid{border-color:#fca5a5;box-shadow:0 0 0 3px rgba(220,38,38,.16)}
    /* Show/hide password eye button. 40×40 tap target (meets iOS/Android
       accessibility minimums). Two of these on the page — the JS wires
       them via a wirePwToggle helper. */
    .pw-toggle{
      position:absolute;right:6px;top:50%;transform:translateY(-50%);
      width:40px;height:40px;border-radius:8px;border:0;background:transparent;color:var(--muted);
      cursor:pointer;display:grid;place-items:center;
      transition:background .15s ease,color .15s ease;
    }
    .pw-toggle:hover{background:#f1f5f9;color:var(--text)}
    /* Sub-field helper text below each input. .success and .danger
       variants are applied by the JS to signal live-validation results
       ("Looks good." / "Passwords don't match yet." etc). */
    .field-help{
      font-size:.74rem;color:var(--muted);line-height:1.3;
      display:flex;align-items:center;gap:6px;
    }
    .field-help.success{color:#15803d}
    .field-help.danger{color:#b91c1c}

    /* =========================================================
       Password strength meter — 4 colored segments (0-4)
       =========================================================
       Same pattern as fizook-register: 4 identical <span> children
       styled by the meter's data-strength attribute. JS scorePassword()
       computes 0–4 based on length + case + digit + symbol rules.
       Segments fill red/amber/green as the score climbs. */
    .pw-meter{
      display:flex;gap:4px;margin-top:6px;
    }
    .pw-meter span{
      flex:1;height:5px;border-radius:999px;background:#e2e8f0;
      transition:background .25s ease;
    }
    .pw-meter[data-strength="1"] span:nth-child(-n+1){background:#dc2626}
    .pw-meter[data-strength="2"] span:nth-child(-n+2){background:#f59e0b}
    .pw-meter[data-strength="3"] span:nth-child(-n+3){background:#16a34a}
    .pw-meter[data-strength="4"] span:nth-child(-n+4){background:#16a34a}
    .pw-strength-label{
      font-size:.74rem;font-weight:700;margin-top:4px;
      display:flex;justify-content:space-between;color:var(--muted);
    }
    .pw-strength-label[data-strength="1"]{color:#b91c1c}
    .pw-strength-label[data-strength="2"]{color:#b45309}
    .pw-strength-label[data-strength="3"]{color:#15803d}
    .pw-strength-label[data-strength="4"]{color:#15803d}

    /* Terms/authority/promo checkboxes. flex-start + margin-top on the
       input so the box aligns with the first line of wrapped label text.
       accent-color:var(--success) tints the checkmark green to match
       the vendor theme (diner side uses blue --primary). */
    .check-row{
      display:flex;align-items:flex-start;gap:9px;margin-bottom:10px;
      font-size:.86rem;line-height:1.4;cursor:pointer;
    }
    .check-row input{accent-color:var(--success);width:auto;margin-top:3px;flex:0 0 auto}
    .check-row a{color:var(--success);font-weight:700;text-decoration:none}
    .check-row a:hover{text-decoration:underline}

    /* =========================================================
       Button system — same variants used across the Fizook surface
       =========================================================
       .btn base + .btn-primary/-success/-ghost/-ghost-light variants.
       .btn-block spans full width, .btn-lg bumps padding for hero-sized
       CTAs. Disabled state is dimmed and non-interactive. */
    .btn{
      appearance:none;border:0;cursor:pointer;font-weight:700;
      padding:11px 16px;border-radius:var(--radius-button);font-size:.95rem;
      display:inline-flex;align-items:center;justify-content:center;gap:8px;
      font-family:inherit;text-decoration:none;
      transition:transform .15s ease,box-shadow .15s ease,background .15s ease,opacity .15s ease;
    }
    .btn:hover{transform:translateY(-1px)}
    .btn:disabled{opacity:.55;cursor:not-allowed;transform:none}
    .btn-primary{background:linear-gradient(135deg,#2481bc,#1a6494);color:#fff;box-shadow:0 4px 12px rgba(36,129,188,.32)}
    .btn-success{background:linear-gradient(135deg,#16a34a,#15803d);color:#fff;box-shadow:0 6px 18px rgba(22,163,74,.4);position:relative;overflow:hidden}
    .btn-success::after{
      content:"";position:absolute;inset:0;
      background:linear-gradient(115deg,transparent 30%,rgba(255,255,255,.45) 50%,transparent 70%);
      transform:translateX(-100%);transition:transform .6s ease;pointer-events:none;
    }
    .btn-success:hover::after{transform:translateX(100%)}
    .btn-ghost{background:#f1f5f9;color:var(--text);border:1px solid var(--border)}
    .btn-ghost:hover{background:#e2e8f0}
    .btn-ghost-light{background:rgba(255,255,255,.16);color:#fff;border:1px solid rgba(255,255,255,.3)}
    .btn-ghost-light:hover{background:rgba(255,255,255,.26)}
    .btn-block{width:100%}
    .btn-lg{padding:13px 20px;font-size:1rem}

    /* "OR SIGN UP USING" divider between the form and social buttons. */
    .or-divider{
      display:flex;align-items:center;gap:10px;margin:14px 0 12px;
      color:var(--muted);font-size:.78rem;font-weight:700;letter-spacing:.6px;
    }
    .or-divider::before,.or-divider::after{
      content:"";flex:1;height:1px;background:var(--border);
    }

    /* Social sign-up stack (stub buttons — no OAuth wiring in this demo). */
    .social{display:grid;gap:8px}
    .btn-social{
      width:100%;background:#fff;color:#1f2937;border:1px solid var(--border);
      transition:transform .15s ease,box-shadow .15s ease,border-color .15s ease;
    }
    .btn-social:hover{transform:translateY(-2px);box-shadow:var(--shadow-sm);border-color:#cbd5e1}
    .btn-social i{font-size:1.05rem;transition:transform .15s ease}
    .btn-social:hover i{transform:scale(1.15)}
    .btn-social.google i{color:#DB4437}
    .btn-social.facebook{background:#1877F2;color:#fff;border-color:transparent}
    .btn-social.facebook:hover{background:#1564d1}
    .btn-social.apple{background:#0f172a;color:#fff;border-color:transparent}
    .btn-social.apple:hover{background:#020617}

    /* "Already a Fizook vendor?" text below the social buttons. */
    .reg-foot{text-align:center;margin-top:14px;font-size:.86rem;color:var(--muted)}
    .reg-foot a{color:var(--success);font-weight:700;text-decoration:none}
    .reg-foot a:hover{text-decoration:underline}

    /* =========================================================
       Layout below hero — vertical spine + reveal-on-scroll
       =========================================================
       Below-fold sections fade in on scroll via the .reveal class
       (JS IntersectionObserver adds .in when 12% visible). */
    .wrap{
      max-width:1240px;margin:-32px auto 0;padding:0 16px 60px;position:relative;z-index:2;
      display:grid;gap:32px;
    }

    /* Shared cardIn keyframe for above-fold sections. Below-fold uses
       .reveal (opacity:0 until JS adds .in) to defer animation until scroll. */
    section.block{animation:cardIn .6s ease both}
    @keyframes cardIn{0%{opacity:0;transform:translateY(20px)}100%{opacity:1;transform:translateY(0)}}
    .reveal{opacity:0;transform:translateY(24px);transition:opacity .65s ease,transform .65s ease}
    .reveal.in{opacity:1;transform:translateY(0)}

    /* Centered header pattern (tag → h2 → lead). Tag pill uses the
       green accent color on this page (vs blue on the diner side). */
    .section-head{text-align:center;max-width:720px;margin:0 auto 22px}
    .section-tag{
      display:inline-flex;align-items:center;gap:8px;
      background:rgba(22,163,74,.10);color:var(--success);
      padding:5px 12px;border-radius:999px;font-size:.7rem;font-weight:800;
      letter-spacing:.7px;text-transform:uppercase;
    }
    .section-head h2{margin:14px 0 10px;font-size:clamp(1.6rem,3vw,2.2rem);font-weight:800;letter-spacing:-.5px;line-height:1.15}
    .section-head p{margin:0;color:var(--muted);line-height:1.55;font-size:1rem}

    /* =========================================================
       Stat strip — 4 counters (Covers / Win rate / $ won / Fee)
       =========================================================
       Same 4-metric layout as vendor-login. Tile background is a
       green→amber gradient tint (vs blue→purple on diner side). */
    .stat-strip{
      display:grid;gap:14px;
      grid-template-columns:repeat(auto-fit,minmax(160px,1fr));
      background:var(--surface);border:1px solid var(--border);
      border-radius:var(--radius-lg);padding:22px;
      box-shadow:var(--shadow-lg);
    }
    .stat-tile{
      text-align:center;padding:14px 10px;border-radius:var(--radius);
      background:linear-gradient(180deg,rgba(22,163,74,.05),rgba(245,158,11,.05));
      border:1px solid rgba(22,163,74,.12);
      transition:transform .2s ease,box-shadow .2s ease;
    }
    .stat-tile:hover{transform:translateY(-3px);box-shadow:var(--shadow)}
    .stat-tile .v{
      font-size:clamp(1.6rem,3.2vw,2.4rem);font-weight:800;letter-spacing:-.5px;line-height:1;
      background:linear-gradient(135deg,#16a34a,#15803d);
      -webkit-background-clip:text;background-clip:text;color:transparent;
    }
    .stat-tile .v.green{background:linear-gradient(135deg,#16a34a,#15803d);-webkit-background-clip:text;background-clip:text;color:transparent}
    .stat-tile .v.amber{background:linear-gradient(135deg,#f59e0b,#b45309);-webkit-background-clip:text;background-clip:text;color:transparent}
    .stat-tile .v.cyan {background:linear-gradient(135deg,#22d3ee,#0891b2);-webkit-background-clip:text;background-clip:text;color:transparent}
    .stat-tile .k{margin-top:6px;font-size:.78rem;color:var(--muted);font-weight:600;text-transform:uppercase;letter-spacing:.6px}

    /* =========================================================
       "What vendors get free" — 4 feature cards
       =========================================================
       No upfront cost / Fill quiet hours / Pre-qualified diners /
       Live analytics. Same visual pattern as vendor-login's feature
       grid but with slightly different card decoration (green tint
       radial glow ::before instead of :has()-driven left stripe). */
    .feature-grid{display:grid;gap:14px;grid-template-columns:repeat(auto-fit,minmax(220px,1fr))}
    .feature-card{
      background:var(--surface);border:1px solid var(--border);
      border-radius:var(--radius);padding:20px;
      box-shadow:var(--shadow-sm);
      transition:transform .25s ease,box-shadow .25s ease,border-color .25s ease;
      position:relative;overflow:hidden;
    }
    .feature-card::before{
      content:"";position:absolute;left:-30px;top:-30px;width:120px;height:120px;border-radius:50%;
      background:radial-gradient(circle,rgba(22,163,74,.12),transparent 70%);pointer-events:none;
    }
    .feature-card:hover{transform:translateY(-4px);box-shadow:var(--shadow);border-color:#cbd5e1}
    .feature-icon{
      width:42px;height:42px;border-radius:11px;
      display:grid;place-items:center;color:#fff;font-size:1.05rem;
      box-shadow:var(--shadow-sm);transition:transform .25s ease;
    }
    .feature-card:hover .feature-icon{transform:rotate(-8deg) scale(1.08)}
    .feature-icon.blue{background:linear-gradient(135deg,#2481bc,#1a6494)}
    .feature-icon.purple{background:linear-gradient(135deg,#7c3aed,#5b21b6)}
    .feature-icon.green{background:linear-gradient(135deg,#16a34a,#15803d)}
    .feature-icon.amber{background:linear-gradient(135deg,#f59e0b,#b45309)}
    .feature-card h3{margin:14px 0 6px;font-size:1.05rem;font-weight:800}
    .feature-card p{margin:0;color:var(--muted);font-size:.92rem;line-height:1.5}

    /* =========================================================
       Testimonial cards — 3 vendor quotes with star rating + avatar
       =========================================================
       Same pattern as fizook-register but with vendor-facing quotes
       (Tuesday lunch covers, zero monthly fees, analytics ROI).
       Decorative quote-mark pseudo tinted green (vs purple on diner side). */
    .quote-grid{display:grid;gap:14px;grid-template-columns:repeat(auto-fit,minmax(260px,1fr))}
    .quote-card{
      background:linear-gradient(180deg,#fff,var(--surface-2));
      border:1px solid var(--border);border-radius:var(--radius);
      padding:22px 22px 18px;box-shadow:var(--shadow-sm);
      position:relative;overflow:hidden;
      transition:transform .25s ease,box-shadow .25s ease;
    }
    .quote-card:hover{transform:translateY(-3px);box-shadow:var(--shadow)}
    .quote-card::before{
      content:"\201C";position:absolute;top:-18px;left:14px;
      font-size:6rem;line-height:1;color:rgba(22,163,74,.14);font-family:Georgia,serif;
    }
    .stars{color:#f59e0b;font-size:.9rem;margin-bottom:6px;letter-spacing:2px}
    .quote-card p.q{margin:0 0 14px;font-size:.95rem;line-height:1.55;color:var(--text);font-weight:500}
    .who{display:flex;align-items:center;gap:10px}
    .who .avatar{
      width:36px;height:36px;border-radius:50%;color:#fff;font-weight:800;font-size:.82rem;
      display:grid;place-items:center;flex:0 0 auto;
    }
    .who .avatar.a{background:linear-gradient(135deg,#16a34a,#15803d)}
    .who .avatar.b{background:linear-gradient(135deg,#f59e0b,#b45309)}
    .who .avatar.c{background:linear-gradient(135deg,#ef4444,#b91c1c)}
    .who .name{font-weight:800;font-size:.86rem;line-height:1.1}
    .who .where{font-size:.74rem;color:var(--muted);margin-top:2px}

    /* =========================================================
       Final CTA — last-chance vendor conversion band
       ========================================================= */
    .final-cta{
      background:linear-gradient(135deg,#16a34a 0%,#15803d 50%,#0e7490 100%);
      color:#fff;border-radius:var(--radius-lg);
      padding:36px 26px;text-align:center;
      box-shadow:var(--shadow-lg);position:relative;overflow:hidden;
    }
    .final-cta::before{content:"";position:absolute;inset:0;background:radial-gradient(600px 200px at 30% -20%, rgba(255,255,255,.18), transparent 70%);pointer-events:none}
    .final-cta h2{margin:0 0 8px;font-size:clamp(1.5rem,2.8vw,2rem);font-weight:800;letter-spacing:-.3px;position:relative;z-index:1}
    .final-cta p{margin:0 0 18px;opacity:.92;font-size:1rem;position:relative;z-index:1}
    .final-cta .cta-row{display:flex;gap:10px;justify-content:center;flex-wrap:wrap;position:relative;z-index:1}

    /* =========================================================
       Footer — dark 4-column link grid + copyright bar
       ========================================================= */
    footer.fz-footer{background:#0b1220;color:#cbd5e1;border-top:1px solid rgba(255,255,255,.08);margin-top:32px}
    .fz-footer-inner{max-width:1240px;margin:0 auto;padding:40px 24px 24px;display:grid;gap:32px;grid-template-columns:repeat(auto-fit,minmax(220px,1fr))}
    .fz-footer h3{margin:0 0 12px;color:#fff;font-size:1.1rem;font-weight:800}
    .fz-footer h4{margin:0 0 12px;color:#fff;font-size:.92rem;font-weight:700;letter-spacing:.4px}
    .fz-footer p{margin:0 0 14px;font-size:.86rem;line-height:1.55;opacity:.8}
    .fz-footer ul{list-style:none;padding:0;margin:0}
    .fz-footer li{margin-bottom:8px}
    .fz-footer a{color:#cbd5e1;text-decoration:none;font-size:.86rem;transition:color .15s ease}
    .fz-footer a:hover{color:#fff}
    .fz-footer .socials{display:flex;gap:10px;margin-top:14px}
    .fz-footer .socials a{
      width:34px;height:34px;border-radius:50%;background:rgba(255,255,255,.08);
      display:inline-flex;align-items:center;justify-content:center;
      transition:background .2s ease,transform .2s ease;
    }
    .fz-footer .socials a:hover{background:rgba(34,197,94,.25);transform:translateY(-2px)}
    .fz-footer-bottom{
      border-top:1px solid rgba(255,255,255,.08);
      max-width:1240px;margin:0 auto;padding:14px 24px;
      display:flex;flex-wrap:wrap;justify-content:space-between;gap:12px;
      font-size:.78rem;opacity:.75;
    }
    .fz-footer-bottom a{color:#cbd5e1;text-decoration:none;margin-left:14px}

    /* =========================================================
       Responsive breakpoints — three tiers
       ========================================================= */

    /* Phone portrait — shrink hero + card padding. */
    @media (max-width:559.98px){
      .hero{padding:42px 18px 56px}
      .reg-card{padding:20px 18px}
      .wrap{margin-top:-24px;padding:0 12px 36px;gap:24px}
      .stat-strip{padding:16px}
    }

    /* Tiny portrait phones (≤420, e.g. iPhone SE) — force stacked
       field rows so first/last name and city/state/zip don't crush. */
    @media (max-width:419.98px){
      .hero h1{font-size:1.7rem;line-height:1.1}
      .hero p.lead{font-size:.9rem}
      .perk{padding:8px 12px}
      .perk-text{font-size:.86rem}
      .reg-card{padding:18px 14px}
      .reg-head h2{font-size:1.2rem}
      .field-row{grid-template-columns:1fr}
      .stat-tile .v{font-size:1.5rem}
      .feature-card,.quote-card{padding:18px}
    }

    /* Phone landscape (short viewport) — compress hero, hide falling
       emojis, tighten register card so form is reachable without long scroll. */
    @media (orientation:landscape) and (max-height:500px){
      .topbar-inner{padding:8px 14px}
      .hero{padding:22px 18px 30px}
      .hero::before,.hero::after{width:200px;height:200px}
      .hero-inner{gap:18px}
      .hero h1{font-size:1.6rem;line-height:1.1;letter-spacing:-.5px}
      .hero p.lead{font-size:.86rem}
      .perks{gap:6px}
      .perk{padding:7px 10px}
      .perk-ico{flex:0 0 30px;width:30px;height:30px;font-size:.85rem}
      .perk-text{font-size:.82rem}
      .coin{display:none}
      .reg-card{padding:18px 16px}
      .reg-head h2{font-size:1.2rem}
      .field{margin-bottom:10px}
      .input{padding:9px 12px 9px 34px;font-size:1rem}
      .step-dots{margin-bottom:12px}
      .or-divider{margin:10px 0}
      .wrap{margin-top:18px;padding:0 16px 24px;gap:18px}
      .stat-strip{padding:14px;grid-template-columns:repeat(4,1fr)}
      .stat-tile .v{font-size:1.5rem}
      .feature-card,.quote-card{padding:16px}
      .final-cta{padding:24px 20px}
    }
