    /* =========================================================
       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}
    /* Layered radial-gradient background — same three-blob pattern
       used across the Fizook surface (index/redeem/history/etc). */
    body{
      min-height:100vh;
      background:
        radial-gradient(900px 500px at 10% -10%, rgba(124,58,237,.10), transparent 60%),
        radial-gradient(900px 500px at 110% 0%, rgba(36,129,188,.12), transparent 60%),
        radial-gradient(700px 420px at 50% 60%, rgba(22,163,74,.05), transparent 70%),
        #eef2f7;
    }
    img{max-width:100%;display:block}
    button{font-family:inherit}
    a{color:inherit}

    /* Fixed 3px scroll-progress bar. Width is driven by updateProgress()
       in jscript/fizook-register.js. Same pattern used on every long marketing page. */
    .scroll-progress{
      position:fixed;top:0;left:0;height:3px;width:0%;z-index:90;
      background:linear-gradient(90deg,#22d3ee,#7c3aed,#16a34a);
      box-shadow:0 0 12px rgba(124,58,237,.5);
      transition:width .1s linear;
    }

    /* =========================================================
       Top bar — sticky nav shared with the rest of the app
       =========================================================
       Same structure as index.html: brand + hamburger (phone) or
       inline nav (≥900px) + admin dropdown. On this page the
       "Sign Up" link carries .active + aria-current="page". */
    .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 (docs + vendor tools + portal switcher) ---
       Discovery menu shared with every page. Toggled by JS below;
       closes on outside click or Escape. Same z-index:60 ordering
       used elsewhere so it stays above the sticky topbar (50). */
    .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. Restaurant
       owners land here occasionally by mistake — this hands them a
       one-click bail-out to the vendor register page. */
    .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{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,#22d3ee,#7c3aed);box-shadow:0 0 16px rgba(34,211,238,.7)}
    .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(36,129,188,.25);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 — split layout: marketing pitch (left) + register card (right)
       =========================================================
       Same dark-navy → blue → purple gradient background used across
       the Fizook surface. Stacks to one column below 980px. Includes
       two floating gradient blobs + six falling coin emojis for the
       "value in motion" tone. */
    .hero{
      position:relative;overflow:hidden;
      background:linear-gradient(135deg,#0b1220,#1a6494 50%,#7c3aed 110%);
      color:#fff;padding:54px 20px 70px;
    }
    /* Two decorative gradient 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:#22d3ee;top:-100px;left:-80px;animation:floatA 9s ease-in-out infinite}
    .hero::after {width:380px;height:380px;background:#ec4899;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 coin confetti ---
       Six emoji spans (💰💵🪙💸) at fixed left-% columns, animated
       top→bottom on a linear loop. Staggered delays keep them out of sync. */
    .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 below 980px, 1fr : 460px
       split above so the register card gets a comfortable form width. */
    .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: marketing pitch + perks list ---
       Slides in from the left on load (slideInL). Contains:
       "🎁 Free signup" tag → headline with gradient accent word →
       lead copy → four-item perks list → "Already a member?" 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)}}
    /* Green "🎁 Free signup" tag — this page's specific hook. Different
       color scheme from other pages' hero tags (green here vs. white
       elsewhere) so signup feels like a gift, not a task. */
    .hero-tag{
      display:inline-flex;align-items:center;gap:8px;align-self:flex-start;
      background:rgba(34,197,94,.18);border:1px solid rgba(34,197,94,.4);
      padding:6px 14px;border-radius:999px;
      font-size:.74rem;font-weight:800;letter-spacing:.6px;text-transform:uppercase;
      color:#a7f3d0;
    }
    .hero-tag .gift{font-size:.95rem}
    /* Shared pulse keyframe (unused on this specific page but kept for
       consistency with the token surface — any element with pulse:
       animation:pulse... would just work). */
    @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 on tiny phones → 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;
    }
    /* Gradient accent word ("Fizook user.") — shared background-clip:text
       trick with a slow shimmer (gradShift). */
    .hero h1 .gradient-text{
      background:linear-gradient(135deg,#22d3ee 0%,#a78bfa 50%,#fbcfe8 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 (register-specific)
       Four glassmorphic pills that fade + slide in one at a time
       (perkIn keyframe with nth-child animation-delay staggering).
       Each row: colored icon square + description with a highlighted
       strong lede ("Run unlimited auctions", "Hold up to 6 offers", etc). */
    .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;
    }
    /* Stagger animation-delay so the four perks cascade in 150ms apart. */
    .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)}}
    /* Cyan→purple icon square. flex:0 0 36px prevents it from shrinking
       when the text next to it wraps. */
    .perk-ico{
      flex:0 0 36px;width:36px;height:36px;border-radius:10px;
      background:linear-gradient(135deg,rgba(34,211,238,.4),rgba(124,58,237,.4));
      display:grid;place-items:center;color:#fff;font-size:.95rem;
    }
    .perk-text{font-weight:600;font-size:.92rem;line-height:1.3}
    /* Highlighted lede within each perk (e.g. "Run unlimited auctions"). */
    .perk-text strong{color:#a7f3d0;font-weight:800}

    /* "Already a member?" text below the perks. */
    .have-account{margin-top:10px;font-size:.9rem;opacity:.88}
    .have-account a{color:#a5f3fc;font-weight:800;text-decoration:none}
    .have-account a:hover{text-decoration:underline}

    /* =========================================================
       RIGHT COLUMN: register card (glass with rainbow halo)
       =========================================================
       Frosted white card that slides in from the right on load.
       ::before pseudo is a soft cyan→purple→pink halo behind the
       card that reads as "premium" without a heavy border. */
    .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)}}
    /* Rainbow halo — inset:-1px + blur:14px paints just outside the card edge. */
    .reg-card::before{
      content:"";position:absolute;inset:-1px;border-radius:var(--radius-lg);
      background:linear-gradient(135deg,rgba(34,211,238,.7),rgba(124,58,237,.7),rgba(236,72,153,.7));
      z-index:-1;filter:blur(14px);opacity:.55;
    }
    /* Card header — "Create your free 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 blue as
       the user fills required fields
       =========================================================
       Purely visual (form is single-page). The JS updateDots()
       computes how many required fields are filled, then adds
       .active to that many dots. Provides gentle feedback about
       how far along the user is. */
    .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 blue gradient + slight horizontal stretch. */
    .step-dot.active{
      background:linear-gradient(90deg,#2481bc,#7c3aed);
      transform:scaleX(1.15);
    }

    /* =========================================================
       Form field primitives
       =========================================================
       .field is the outer column. .field-row lets two fields share a
       row (first name / last name) on ≥420px, collapses to one column
       below that. Every input uses an .input-wrap with an absolute
       leading icon (.pre) — padding-left:36px reserves space for it. */
    .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}
    @media (max-width:419.98px){.field-row{grid-template-columns:1fr}}
    /* Uppercase label. .opt subclass renders "(optional)" in normal case,
       .req is the red asterisk marker. */
    .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}
    /* Leading Font Awesome icon (envelope, at, lock, phone, etc).
       pointer-events:none so clicks pass through to the field. */
    .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) is critical: iOS Safari
       auto-zooms when a form input's computed size is < 16px 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}
    .input:focus{
      outline:0;border-color:var(--primary);
      box-shadow:0 0 0 3px rgba(36,129,188,.18);
    }
    /* Live-validation states — .is-valid = green ring, .is-invalid = red ring.
       Applied/removed by the input handlers in jscript/fizook-register.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. Sits at right of password fields.
       40×40 tap target (meets iOS/Android accessibility minimums). */
    .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 (e.g. "Letters, numbers, and underscores only.").
       .success and .danger variants are applied by the JS to signal
       live-validation results ("Looks good." / "Enter a valid email."). */
    .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)
       =========================================================
       .pw-meter has 4 <span> children (identical, styled by attribute
       selectors below). JS sets data-strength="0"..."4" on the meter;
       the attribute selectors fill in the first N segments red / amber
       / green (see scorePassword() in the JS). The label mirrors the
       same data-strength value for its own color coordination. */
    .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;
    }
    /* Attribute selectors light up the first 1/2/3/4 segments per level.
       Level 1 = red (weak), 2 = amber (fair), 3+4 = green (strong+). */
    .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}
    /* "Strength" label + current strength word ("Weak"/"Fair"/etc). */
    .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/promo checkboxes. flex-start alignment + margin-top on the
       input so the checkbox lines up with the first line of the label
       when the text wraps to multiple lines. */
    .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(--primary);width:auto;margin-top:3px;flex:0 0 auto}
    .check-row a{color:var(--primary);font-weight:700;text-decoration:none}
    .check-row a:hover{text-decoration:underline}

    /* =========================================================
       Button system — same variants used across the Fizook surface
       =========================================================
       .btn base + variant classes (.btn-primary/-success/-ghost/
       -ghost-light/-social). .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)}
    /* Green success variant — primary CTA on this page ("Create my
       free account"). ::after sheen sweeps across on hover. */
    .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 = dark-on-transparent (for dark heroes / dark cards). */
    .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 WITH" divider between the form and the 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 (Google / Facebook / Apple). Stub buttons —
       no OAuth wiring in this demo. Each uses its brand color, icon
       scales 15% on hover for gentle interactive feedback. */
    .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 have an account?" text under the social buttons. */
    .reg-foot{text-align:center;margin-top:14px;font-size:.86rem;color:var(--muted)}
    .reg-foot a{color:var(--primary);font-weight:700;text-decoration:none}
    .reg-foot a:hover{text-decoration:underline}

    /* =========================================================
       Layout below hero — vertical spine + reveal-on-scroll
       =========================================================
       .wrap is the vertical column holding stat strip, feature grid,
       testimonials, and final CTA. margin-top:-32px lifts the first
       section up into the hero's bottom edge. Below-the-fold sections
       use .reveal (see JS) so they fade in on scroll. */
    .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-the-fold sections. Below-the-fold
       uses .reveal (opacity:0 until JS adds .in) to defer animation
       until scrolled into view. */
    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 used by feature grid + testimonials +
       final CTA: small tag pill → h2 → lead paragraph. */
    .section-head{text-align:center;max-width:720px;margin:0 auto 22px}
    .section-tag{
      display:inline-flex;align-items:center;gap:8px;
      background:rgba(36,129,188,.10);color:var(--primary);
      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 (Members / Meals / Savings / Rating)
       =========================================================
       auto-fit(minmax(160px,1fr)) collapses gracefully across breakpoints.
       Numbers animate up from 0 via animateCount() in the JS. */
    .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(36,129,188,.04),rgba(124,58,237,.04));
      border:1px solid rgba(36,129,188,.1);
      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,#2481bc,#7c3aed);
      -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 you get" — 4 feature cards
       =========================================================
       Unlimited auctions / Held-offer tray / Auction history / Smart alerts.
       Same visual pattern as index.html's feature grid, but this page's
       accent stripe is a top-left radial glow (::before) instead of a
       left color bar. Icon rotates -8° on hover for a subtle "wobble" tell. */
    .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;
    }
    /* Soft blue corner glow — decorative, pointer-events:none. */
    .feature-card::before{
      content:"";position:absolute;left:-30px;top:-30px;width:120px;height:120px;border-radius:50%;
      background:radial-gradient(circle,rgba(36,129,188,.10),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 member quotes with star rating + avatar
       =========================================================
       ::before pseudo is a huge decorative left quotation mark ("\201C")
       tinted purple. Each avatar variant (.a/.b/.c) gets a different
       gradient so the initials read like three distinct people. */
    .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)}
    /* Big decorative " character in the corner. */
    .quote-card::before{
      content:"\201C";position:absolute;top:-18px;left:14px;
      font-size:6rem;line-height:1;color:rgba(124,58,237,.12);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}
    /* Attribution row: initials avatar + name/city. */
    .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,#2481bc,#1a6494)}
    .who .avatar.b{background:linear-gradient(135deg,#16a34a,#15803d)}
    .who .avatar.c{background:linear-gradient(135deg,#f59e0b,#b45309)}
    .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 conversion band (green→teal gradient)
       ========================================================= */
    .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 bottom bar
       =========================================================
       Same footer structure used across the Fizook surface. Columns
       auto-fit down to 1 on narrow phones via minmax(220px,1fr). */
    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,211,238,.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 (≤560), tiny phone (≤420), and
       phone landscape (short viewport). Rest of the page is fluid
       via clamp() + auto-fit grids. */

    /* Phone portrait — shrink hero, tighten 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 the
       first/last name row to single column and shrink headings. */
    @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, ≤500px tall) — compress hero
       so the register card is reachable without scrolling past a
       giant gradient. Hides the falling coins to save vertical space. */
    @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}
    }
