/* INLET FOODIES — Stylesheet v1 */

/* Base dark background */
html, body {
  margin: 0;
  padding: 0;
  background: #0d0d0d;
  overflow-x: hidden;
}

/* ========================================== */
  /* INLET FOODIES — BLACK/GOLD THEME           */
  /* ========================================== */

  * { margin: 0; padding: 0; box-sizing: border-box; }

  :root {
    --gold:       #c9a84c;
    --gold-light: #e8c96a;
    --gold-pale:  #f5e9c8;
    --black:      #0d0d0d;
    --black-mid:  #1a1a1a;
    --black-card: #111111;
    --text-muted: rgba(255,255,255,0.55);
  }

  body {
    min-height: 100vh;
    background: linear-gradient(160deg, #0d0d0d 0%, #1a1209 60%, #0d0d0d 100%);
    font-family: 'Inter', sans-serif;
    padding: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  /* Full viewport no-scroll for card/puck/lookup/ready views */
  body.pass-shown {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100%;
    height: 100%;
    overflow: hidden !important;
    -webkit-overflow-scrolling: auto !important;
    padding: 0;
    justify-content: flex-start;
  }

  html.pass-shown-html {
    overflow: hidden !important;
    height: 100%;
    position: fixed;
    width: 100%;
  }

  body.pass-shown .container {
    max-width: 100%;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
  }

@media (min-width: 600px) {
  .container {
    max-width: 480px;
    margin: 40px auto;
    min-height: auto;
    height: auto;
  }
}

  body.pass-shown .if-header {
    display: none !important;
  }

  body.pass-shown .card {
    flex: 1;
    border-radius: 0;
    border: none;
    box-shadow: none;
    padding: 20px 20px 16px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }

  body.pass-shown .card > .text-center {
    display: none !important;
  }

  /* ---- Header ---- */
  .if-header {
    background: rgba(201,168,76,0.08);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(201,168,76,0.25);
    border-radius: 20px;
    padding: 18px 24px;
    margin-bottom: 16px;
    text-align: center;
  }

  .if-header-badge {
    color: var(--gold);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 6px;
  }

  .if-header-title {
    color: white;
    font-size: 22px;
    font-weight: 900;
    letter-spacing: 0.5px;
  }

  /* ---- Security clock (matches Grand Strand VIP exactly) ---- */
  .security-clock {
    background: rgba(201,168,76,0.15);
    backdrop-filter: blur(8px);
    border: 2px solid rgba(201,168,76,0.3);
    border-radius: 50px;
    padding: 10px 20px;
    margin-bottom: 16px;
    text-align: center;
    animation: goldPulse 2s ease-in-out infinite;
  }

  @keyframes goldPulse {
    0%   { background: rgba(201,168,76,0.15); border-color: rgba(201,168,76,0.4); box-shadow: 0 0 20px rgba(201,168,76,0.3); }
    50%  { background: rgba(201,168,76,0.28); border-color: rgba(201,168,76,0.7); box-shadow: 0 0 32px rgba(201,168,76,0.5); }
    100% { background: rgba(201,168,76,0.15); border-color: rgba(201,168,76,0.4); box-shadow: 0 0 20px rgba(201,168,76,0.3); }
  }

  @keyframes textBlink {
    0%, 49%  { opacity: 1; }
    50%, 100% { opacity: 0; }
  }

  .blink-text {
    animation: textBlink 1.2s step-end infinite;
  }

  .clock-time {
    color: var(--gold-light);
    font-size: 18px;
    font-weight: 900;
    letter-spacing: 2px;
  }

  /* ---- Main card ---- */
  .card {
    background: var(--black-card);
    border: 1px solid rgba(201,168,76,0.2);
    border-radius: 32px;
    padding: 35px 28px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.6), inset 0 1px 0 rgba(201,168,76,0.1);
    overflow: hidden;
  }

  .card-badge {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--black);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 16px;
  }

  .status-active {
    background: rgba(16,185,129,0.12);
    color: #34d399;
    border: 2px solid rgba(52,211,153,0.4);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 800;
    display: inline-block;
    letter-spacing: 1px;
    margin-bottom: 16px;
  }

  /* ---- Digital wallet card preview ---- */
  .wallet-card-preview {
    background: linear-gradient(145deg, #1a1a1a 0%, #0d0d0d 100%);
    border: 1px solid rgba(201,168,76,0.35);
    border-radius: 20px;
    padding: 22px 20px 18px;
    margin: 20px 0;
    position: relative;
    overflow: hidden;
  }

  .wallet-card-preview::before {
    content: '';
    position: absolute;
    top: -30px; right: -30px;
    width: 120px; height: 120px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,168,76,0.12) 0%, transparent 70%);
  }

  .wc-brand {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2.5px;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 2px;
  }

  .wc-sub {
    font-size: 10px;
    color: var(--text-muted);
    letter-spacing: 1px;
    margin-bottom: 16px;
  }

  .wc-name {
    font-size: 18px;
    font-weight: 800;
    color: white;
    margin-bottom: 2px;
  }

  .wc-meta {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 16px;
  }

  .wc-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    border-top: 1px solid rgba(201,168,76,0.15);
    padding-top: 12px;
  }

  .wc-id {
    font-size: 11px;
    color: rgba(201,168,76,0.6);
    font-family: monospace;
    letter-spacing: 1px;
  }

  .wc-valid {
    font-size: 10px;
    color: var(--text-muted);
    text-align: right;
    line-height: 1.5;
  }

  .nfc-ring {
    position: absolute;
    top: 18px; right: 18px;
    width: 28px; height: 28px;
    opacity: 0.6;
  }

  /* ---- Code box ---- */
  .code-box {
    background: linear-gradient(135deg, #1a1209, #2a1f08);
    border: 1px solid rgba(201,168,76,0.3);
    border-radius: 20px;
    padding: 25px 20px;
    margin: 20px 0;
    text-align: center;
  }

  .code-label {
    color: var(--text-muted);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 8px;
  }

  .code-value {
    font-size: 64px;
    font-weight: 900;
    color: var(--gold-light);
    letter-spacing: 6px;
    line-height: 1;
    text-shadow: 0 0 20px rgba(201,168,76,0.4);
  }

  /* ---- Punch card ---- */
  .punch-card {
    background: rgba(201,168,76,0.06);
    border: 1px solid rgba(201,168,76,0.18);
    border-radius: 16px;
    padding: 20px;
    margin: 20px 0;
    text-align: center;
  }

  .punch-card-title {
    font-size: 12px;
    font-weight: 800;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
  }

  .punch-circles {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 12px;
    font-size: 26px;
    line-height: 1;
  }

  .punch-progress-text {
    font-size: 14px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 6px;
  }

  .punch-next-reward {
    font-size: 12px;
    color: var(--text-muted);
  }

  /* ---- Reward badges ---- */
  .reward-badge {
    border-radius: 16px;
    padding: 20px;
    margin: 16px 0;
    text-align: center;
    cursor: pointer;
    transition: transform 0.2s;
  }

  .reward-badge:active { transform: scale(0.95); }

  .reward-badge.tier1 { background: linear-gradient(135deg, #a78bfa, #8b5cf6); box-shadow: 0 8px 20px rgba(139,92,246,0.3); }
  .reward-badge.tier2 { background: linear-gradient(135deg, var(--gold), var(--gold-light)); box-shadow: 0 8px 20px rgba(201,168,76,0.35); }
  .reward-badge.tier3 { background: linear-gradient(135deg, #1a1a1a, #333); border: 2px solid var(--gold); box-shadow: 0 8px 24px rgba(201,168,76,0.25); }

  .reward-badge-title { color: white; font-size: 18px; font-weight: 900; margin-bottom: 6px; text-transform: uppercase; letter-spacing: 1px; }
  .reward-badge.tier2 .reward-badge-title { color: var(--black); }
  .reward-badge-desc { color: rgba(255,255,255,0.9); font-size: 14px; font-weight: 600; margin-bottom: 12px; }
  .reward-badge.tier2 .reward-badge-desc { color: rgba(0,0,0,0.75); }
  .reward-badge-tap { color: rgba(255,255,255,0.8); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; border: 2px solid rgba(255,255,255,0.4); border-radius: 50px; padding: 6px 16px; display: inline-block; }
  .reward-badge.tier2 .reward-badge-tap { color: rgba(0,0,0,0.6); border-color: rgba(0,0,0,0.25); }

  /* ---- Buttons ---- */
  .btn {
    width: 100%;
    padding: 20px;
    border: none;
    border-radius: 50px;
    font-weight: 900;
    font-size: 17px;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    letter-spacing: 1px;
    transition: transform 0.1s, box-shadow 0.1s;
  }

  .btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--black);
    box-shadow: 0 6px 0 #7a5e1a, 0 10px 24px rgba(201,168,76,0.35);
  }

  .btn-primary:active {
    transform: translateY(3px);
    box-shadow: 0 3px 0 #7a5e1a;
  }

  .btn-secondary {
    background: transparent;
    color: var(--gold);
    border: 2px solid rgba(201,168,76,0.4);
    box-shadow: none;
    font-size: 14px;
    padding: 14px;
    margin-top: 12px;
  }

  /* ---- Forms ---- */
  .form-group { margin-bottom: 14px; }

  .form-label {
    font-size: 11px;
    font-weight: 800;
    color: var(--gold);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 6px;
  }

  .form-input {
    width: 100%;
    padding: 17px 18px;
    border: 1px solid rgba(201,168,76,0.25);
    border-radius: 14px;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    background: rgba(20,16,8,0.85) !important;
    color: white !important;
    outline: none;
    transition: border-color 0.2s, background 0.2s;
    box-sizing: border-box;
  }

  .form-input::placeholder { color: rgba(255,255,255,0.45) !important; }

  select.form-input {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23c9a84c' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
  }

  select.form-input option {
    background: #1a1008;
    color: white;
  }

  .dob-row {
    display: grid;
    grid-template-columns: 1fr 72px 96px;
    gap: 10px;
  }

  .dob-sub-label {
    font-size: 11px;
    color: rgba(255,255,255,0.4);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 5px;
  }



  .form-input:focus {
    border-color: var(--gold);
    background: rgba(201,168,76,0.06);
  }

  .form-input.error {
    border-color: rgba(248,113,113,0.8) !important;
    background: rgba(220,38,38,0.05) !important;
  }

  .field-note {
    font-size: 12px;
    color: rgba(255,255,255,0.35);
    margin-top: 5px;
    font-style: italic;
  }

  .field-error {
    color: #f87171;
    font-size: 12px;
    font-weight: 700;
    min-height: 18px;
    margin-top: 5px;
    display: none;
  }

  .field-error.visible { display: block; }

  .terms-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    padding: 4px 0;
  }

  .terms-label input[type="checkbox"] {
    width: 22px;
    height: 22px;
    min-width: 22px;
    margin-top: 2px;
    accent-color: var(--gold);
    cursor: pointer;
  }

  .terms-text {
    font-size: 15px;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
  }

  .terms-full {
    color: rgba(255,255,255,0.35);
    font-size: 11px;
  }

  #termsLabel.error .terms-text { color: #f87171; }

  .form-row { display: flex; gap: 12px; }
  .form-row .form-group { flex: 1; }

  /* ---- Page titles ---- */
  .page-title {
    font-size: 26px;
    font-weight: 900;
    color: white;
    margin-bottom: 8px;
    text-align: center;
  }

  .page-subtitle {
    font-size: 14px;
    color: var(--gold);
    font-weight: 600;
    text-align: center;
    margin-bottom: 28px;
    opacity: 0.8;
  }

  /* ---- Price display ---- */
  .price-block {
    background: rgba(201,168,76,0.08);
    border: 1px solid rgba(201,168,76,0.2);
    border-radius: 16px;
    padding: 20px;
    margin: 20px 0;
    text-align: center;
  }

  .price-amount {
    font-size: 52px;
    font-weight: 900;
    color: var(--gold-light);
    line-height: 1;
    text-shadow: 0 0 20px rgba(201,168,76,0.3);
  }

  .price-period {
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 4px;
  }

  .price-perks {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .price-perk {
    font-size: 13px;
    color: rgba(255,255,255,0.75);
    display: flex;
    align-items: center;
    gap: 8px;
    text-align: left;
  }

  .price-perk-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
  }

  /* ---- Loading ---- */
  .loading {
    text-align: center;
    padding: 40px 20px;
  }

  .loading-spinner {
    font-size: 48px;
    animation: spin 1.5s linear infinite;
    display: block;
  }

  @keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
  }

  .loading-text {
    color: var(--gold);
    font-size: 16px;
    font-weight: 700;
    margin-top: 16px;
  }

  /* ---- Wallet add button ---- */
  .wallet-btn-row {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 20px 0;
  }

  .wallet-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 20px;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    border: none;
    font-family: 'Inter', sans-serif;
    text-decoration: none;
    transition: transform 0.1s;
  }

  .wallet-btn:active { transform: scale(0.97); }

  .wallet-btn-email {
    background: transparent;
    color: var(--gold);
    border: 1px solid rgba(201,168,76,0.35);
    font-size: 13px;
  }

  /* ---- PIN overlay (matches Grand Strand VIP exactly) ---- */
  .pin-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.92);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
  }

  .pin-modal {
    background: var(--black-card);
    border: 1px solid rgba(201,168,76,0.3);
    border-radius: 28px;
    padding: 32px 24px;
    width: 100%;
    max-width: 340px;
    text-align: center;
    box-shadow: 0 30px 60px rgba(0,0,0,0.6);
  }

  .pin-title { font-size: 13px; font-weight: 800; color: var(--gold); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 6px; }
  .pin-reward-desc { font-size: 16px; font-weight: 700; color: white; margin-bottom: 24px; }

  .pin-dots { display: flex; justify-content: center; gap: 16px; margin-bottom: 24px; }

  .pin-dot { width: 20px; height: 20px; border-radius: 50%; border: 3px solid var(--gold); background: transparent; transition: background 0.1s; }
  .pin-dot.filled { background: var(--gold); }
  .pin-dot.error { border-color: #dc2626; background: #dc2626; animation: shake 0.3s ease; }

  @keyframes shake {
    0%   { transform: translateX(0); }
    25%  { transform: translateX(-6px); }
    50%  { transform: translateX(6px); }
    75%  { transform: translateX(-6px); }
    100% { transform: translateX(0); }
  }

  .pin-keypad { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 16px; }

  .pin-key {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(201,168,76,0.2);
    border-radius: 16px;
    padding: 20px 10px;
    font-size: 26px;
    font-weight: 900;
    color: white;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: background 0.1s, transform 0.1s;
    -webkit-tap-highlight-color: transparent;
  }

  .pin-key:active { background: var(--gold); color: var(--black); transform: scale(0.94); }
  .pin-key.clear { background: rgba(220,38,38,0.1); border-color: rgba(220,38,38,0.3); color: #dc2626; font-size: 18px; }
  .pin-key.confirm { background: linear-gradient(135deg, var(--gold), var(--gold-light)); border-color: var(--gold); color: var(--black); font-size: 18px; font-weight: 900; }
  .pin-key.zero { grid-column: 2; }

  .pin-error-msg { font-size: 13px; font-weight: 700; color: #dc2626; min-height: 20px; margin-bottom: 12px; }
  .pin-cancel { font-size: 13px; color: rgba(255,255,255,0.4); font-weight: 600; cursor: pointer; text-decoration: underline; }

  /* ---- Misc ---- */
  .text-center { text-align: center; }
  .mb-16 { margin-bottom: 16px; }
  .mt-20 { margin-top: 20px; }

  .wave-divider {
    text-align: center;
    font-size: 18px;
    margin: 16px 0;
    opacity: 0.2;
    letter-spacing: 6px;
    color: var(--gold);
  }

  .footnote {
    text-align: center;
    font-size: 12px;
    color: rgba(255,255,255,0.3);
    margin-top: 12px;
    line-height: 1.6;
  }

  .success-icon {
    font-size: 56px;
    display: block;
    text-align: center;
    margin-bottom: 16px;
  }

  /* ========================================== */
  /* MEMBERSHIP CARD                            */
  /* ========================================== */

  @keyframes goldGlow {
    0%   { border-color: rgba(201,168,76,0.3); opacity: 1; }
    50%  { border-color: rgba(201,168,76,1.0); opacity: 0.85; }
    100% { border-color: rgba(201,168,76,0.3); opacity: 1; }
  }

  @keyframes goldGlowOverlay {
    0%   { opacity: 0; }
    50%  { opacity: 1; }
    100% { opacity: 0; }
  }

  @keyframes statusPulse {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.4; }
  }

  .membership-card {
    background: linear-gradient(145deg, #1a1209 0%, #0d0d0d 50%, #1a1007 100%);
    border: 2px solid rgba(201,168,76,0.3);
    border-radius: 20px;
    padding: 22px 22px 20px;
    margin: 0 0 20px;
    position: relative;
    overflow: hidden;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }

  .membership-card-glow {
    display: none;
  }

  .membership-card::before {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 180px; height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
    pointer-events: none;
  }

  .membership-card::after {
    content: '';
    position: absolute;
    bottom: -40px; left: -40px;
    width: 140px; height: 140px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,168,76,0.05) 0%, transparent 70%);
    pointer-events: none;
  }

  .mc-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
  }

  .mc-brand {
    font-size: 11px;
    font-weight: 800;
    color: var(--gold);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 3px;
  }

  .mc-location {
    font-size: 10px;
    color: rgba(201,168,76,0.7);
    letter-spacing: 1px;
  }

  .mc-nfc { opacity: 0.7; }

  .mc-status {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 10px;
    font-weight: 800;
    color: #34d399;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 18px;
  }

  .mc-status-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #34d399;
    flex-shrink: 0;
  }

  .mc-code-row { margin-bottom: 20px; }

  .mc-code-label {
    font-size: 9px;
    font-weight: 700;
    color: rgba(255,255,255,0.35);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 4px;
  }

  .mc-code {
    font-size: 48px;
    font-weight: 900;
    color: var(--gold-light);
    letter-spacing: 8px;
    line-height: 1;
    font-family: 'Inter', monospace;
    text-shadow: 0 0 30px rgba(201,168,76,0.6), 0 0 60px rgba(201,168,76,0.2);
  }

  .mc-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    border-top: 1px solid rgba(201,168,76,0.12);
    padding-top: 14px;
  }

  .mc-field-label {
    font-size: 9px;
    font-weight: 700;
    color: rgba(201,168,76,0.7);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 4px;
  }

  .mc-field-value {
    font-size: 18px;
    font-weight: 900;
    color: white;
    letter-spacing: 0.5px;
  }

  .mc-chip {
    position: absolute;
    top: 22px; left: 50%;
    transform: translateX(-50%);
    width: 36px; height: 27px;
    background: linear-gradient(135deg, rgba(201,168,76,0.25), rgba(201,168,76,0.08));
    border: 1px solid rgba(201,168,76,0.2);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .mc-chip-inner {
    width: 22px; height: 16px;
    border: 1px solid rgba(201,168,76,0.3);
    border-radius: 3px;
    background: linear-gradient(135deg, rgba(201,168,76,0.15), transparent);
  }

  .hidden { display: none !important; }

/* ============================================================
   PART 1 LAYOUT — New structural classes
   ============================================================ */

  /* ---- Signup: remove header, card gets no top badge ---- */
  .card > .text-center { display: none !important; }

  /* ---- Signup: hero banner (background image container) ---- */
  .signup-hero-banner {
    position: relative;
    width: calc(100% + 56px);
    margin-left: -28px;
    margin-right: -28px;
    margin-top: -35px;
    margin-bottom: 20px;
    background-image: url('https://thestrandvip.com/wp-content/uploads/2026/04/inletfoodiesignbackground_clean-1.png');
    background-size: cover;
    background-position: center top;
    border-radius: 32px 32px 0 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 32px 20px 20px;
  }

  /* No overlay needed — background image is clean */
  .signup-hero-banner::before {
    content: none;
  }

  /* Bottom gradient for text readability */
  .signup-hero-banner::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to bottom,
      transparent 0%,
      transparent 30%,
      rgba(13,13,13,0.7) 75%,
      rgba(13,13,13,0.92) 100%
    );
    pointer-events: none;
    z-index: 0;
  }

  /* Everything inside banner sits above both overlays */
  .signup-hero-banner > * {
    position: relative;
    z-index: 1;
  }

  /* ---- Signup: transparent logo centered in flow ---- */
  .signup-hero-logo {
    display: block;
    width: 42%;
    max-width: 180px;
    min-width: 120px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 14px;
    margin-top: 8px;
    filter: drop-shadow(0 2px 12px rgba(0,0,0,0.7));
  }

  /* ---- Signup: hero headline ---- */
  .signup-hero {
    text-align: center;
    margin-bottom: 16px;
  }

  .signup-hero-title {
    font-size: 24px;
    font-weight: 900;
    color: white;
    line-height: 1.2;
    margin-bottom: 4px;
    text-shadow: 0 1px 4px rgba(0,0,0,0.8);
  }

  .signup-hero-sub {
    font-size: 15px;
    font-weight: 600;
    color: var(--gold);
    text-shadow: 0 1px 3px rgba(0,0,0,0.6);
  }

  /* ---- Signup: 3-column trust row ---- */
  .signup-trust-row {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    gap: 8px;
    padding: 0 20px 4px;
  }

  .signup-trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
    flex: 1;
  }

  .signup-trust-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 900;
    color: #0d0d0d;
    box-shadow: 0 2px 8px rgba(201,168,76,0.4);
  }

  .signup-trust-label {
    font-size: 9px;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    line-height: 1.4;
  }

  /* ---- Signup: wave top divider ---- */
  .signup-wave-top {
    width: calc(100% + 56px);
    margin-left: -28px;
    margin-right: -28px;
    margin-bottom: -2px;
    display: block;
    line-height: 0;
  }

  .signup-wave-top svg {
    display: block;
    width: 100%;
    height: 40px;
  }

  /* ---- Signup: form card (inner white box area) ---- */
  .signup-form-card {
    background: rgba(8,6,3,0.75);
    border: none;
    border-radius: 0 0 20px 20px;
    padding: 12px 16px 20px;
    width: calc(100% + 56px);
    margin-left: -28px;
    margin-right: -28px;
    box-sizing: border-box;
  }

  .signup-form-title {
    font-size: 22px;
    font-weight: 900;
    color: white;
    text-align: center;
    margin-bottom: 4px;
  }

  .signup-form-subtitle {
    font-size: 13px;
    color: var(--gold);
    text-align: center;
    margin-bottom: 20px;
  }

  /* ---- Form input with icon ---- */
  .form-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
    background: rgba(20,16,8,0.85);
    border: 1px solid rgba(201,168,76,0.25);
    border-radius: 14px;
    overflow: hidden;
    transition: border-color 0.2s;
  }

  .form-input-wrap:focus-within {
    border-color: var(--gold);
  }

  .form-input-wrap.error {
    border-color: rgba(248,113,113,0.8) !important;
  }

  .form-input-icon {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    margin-left: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
  }

  .form-input-icon-pad {
    padding-left: 12px;
    border: none !important;
    background: transparent !important;
    border-radius: 0 !important;
    box-shadow: none !important;
  }

  /* ---- Signup: bottom trust bar ---- */
  .signup-bottom-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-top: 20px;
    padding: 14px 0 0;
    border-top: 1px solid rgba(201,168,76,0.12);
  }

  .signup-bottom-trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    flex: 1;
    font-size: 10px;
    font-weight: 600;
    color: rgba(255,255,255,0.7);
    text-align: center;
    line-height: 1.4;
  }

  .signup-bottom-trust-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    margin-bottom: 4px;
  }

  .signup-bottom-trust-divider {
    width: 1px;
    height: 32px;
    background: rgba(201,168,76,0.2);
  }

  .signup-powered {
    text-align: center;
    font-size: 11px;
    color: rgba(201,168,76,0.5);
    margin-top: 14px;
    font-weight: 600;
  }

  /* ---- Payment: back arrow ---- */
  .pay-back-row {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
  }

  .pay-back-arrow {
    background: transparent;
    border: none;
    color: white;
    font-size: 22px;
    cursor: pointer;
    padding: 4px 8px 4px 0;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
  }

  /* ---- Payment: secure badge ---- */
  .pay-secure-badge {
    text-align: center;
    font-size: 13px;
    font-weight: 700;
    color: #34d399;
    background: rgba(52,211,153,0.08);
    border: 1px solid rgba(52,211,153,0.25);
    border-radius: 50px;
    padding: 8px 20px;
    display: inline-block;
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 20px;
  }

  /* ---- Payment: order summary row ---- */
  .pay-order-summary {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(201,168,76,0.15);
    border-radius: 14px;
    padding: 14px 16px;
    margin-bottom: 20px;
  }

  .pay-order-logo {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    background: rgba(0,0,0,0.8);
  }

  .pay-order-details {
    flex: 1;
  }

  .pay-order-name {
    font-size: 14px;
    font-weight: 700;
    color: white;
    margin-bottom: 4px;
  }

  .pay-order-price {
    font-size: 22px;
    font-weight: 900;
    color: var(--gold-light);
    line-height: 1;
    margin-bottom: 2px;
  }

  .pay-order-charged {
    font-size: 12px;
    color: var(--text-muted);
  }

  /* ---- Payment: test mode banner ---- */
  .pay-test-banner {
    background: rgba(234,179,8,0.12);
    border: 1px solid rgba(234,179,8,0.4);
    border-radius: 12px;
    padding: 14px 16px;
    margin-bottom: 20px;
    text-align: center;
  }

  .pay-test-banner-title {
    color: #fbbf24;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 4px;
  }

  .pay-test-banner-sub {
    color: rgba(255,255,255,0.6);
    font-size: 12px;
  }

  /* ---- Payment: card fields ---- */
  .pay-card-section {
    margin-bottom: 20px;
  }

  .pay-card-label {
    font-size: 11px;
    font-weight: 800;
    color: var(--gold);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
  }

  .pay-stripe-element {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(201,168,76,0.25);
    border-radius: 14px;
    padding: 16px 18px;
    margin-bottom: 0;
    min-height: 44px;
  }

  .pay-card-fields {
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1px solid rgba(201,168,76,0.25);
    border-radius: 14px;
    overflow: hidden;
  }

  .pay-card-number-wrap .pay-card-input {
    border-radius: 0;
    border: none;
    border-bottom: 1px solid rgba(201,168,76,0.15);
  }

  .pay-card-row {
    display: flex;
  }

  .pay-card-input {
    border-radius: 0;
    border: none;
    background: rgba(255,255,255,0.04);
  }

  .pay-card-half {
    flex: 1;
  }

  .pay-card-half:first-child {
    border-right: 1px solid rgba(201,168,76,0.15);
  }

  .pay-stripe-errors {
    color: #f87171;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 16px;
    min-height: 20px;
  }

  /* ---- Delivery: You're In ---- */
  .delivery-success-icon {
    font-size: 56px;
    text-align: center;
    display: block;
    margin-bottom: 12px;
    margin-top: 8px;
  }

  .delivery-code-box {
    background: rgba(201,168,76,0.08);
    border: 2px solid rgba(201,168,76,0.35);
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    margin-bottom: 20px;
  }

  .delivery-code-label {
    font-size: 11px;
    font-weight: 800;
    color: var(--gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 8px;
  }

  .delivery-code-value {
    font-size: 38px;
    font-weight: 900;
    color: var(--gold-light);
    letter-spacing: 6px;
    font-family: monospace;
    line-height: 1;
    margin-bottom: 8px;
  }

  .delivery-code-sub {
    font-size: 12px;
    color: rgba(255,255,255,0.4);
    line-height: 1.5;
  }

  .delivery-pass-section {
    background: rgba(201,168,76,0.05);
    border: 1px solid rgba(201,168,76,0.2);
    border-radius: 16px;
    padding: 18px 16px;
    margin-bottom: 14px;
  }

  .delivery-pass-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
  }

  .delivery-pass-phone-icon {
    font-size: 28px;
    flex-shrink: 0;
  }

  .delivery-pass-title {
    font-size: 15px;
    font-weight: 800;
    color: white;
    margin-bottom: 3px;
  }

  .delivery-pass-sub {
    font-size: 12px;
    color: rgba(201,168,76,0.7);
  }

  .delivery-pass-btn {
    display: block;
    text-decoration: none;
    text-align: center;
  }

  .delivery-view-card-btn {
    width: 100%;
    margin-bottom: 12px;
  }

  .delivery-footer {
    text-align: center;
    margin-top: 4px;
  }

  .delivery-back-link {
    background: transparent;
    border: none;
    color: var(--gold);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    text-decoration: underline;
    padding: 8px 0;
  }

  /* ---- Active card: header label ---- */
  .active-card-header-label {
    text-align: center;
    font-size: 11px;
    font-weight: 800;
    color: var(--gold);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 12px;
    margin-top: 8px;
  }

  /* ---- Active card: landscape layout ---- */
  .membership-card {
    aspect-ratio: 1.586 / 1;
    padding: 14px 16px 12px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid #c9a84c !important;
    box-shadow:
      0 0 6px rgba(201,168,76,0.6),
      0 0 16px rgba(201,168,76,0.3);
    background:
      radial-gradient(ellipse 100% 80% at 55% 50%, rgba(140,90,10,0.25) 0%, rgba(80,50,5,0.12) 45%, transparent 70%),
      radial-gradient(ellipse 35% 35% at 5% 5%, rgba(0,0,0,0.7) 0%, transparent 65%),
      radial-gradient(ellipse 35% 35% at 95% 95%, rgba(0,0,0,0.6) 0%, transparent 65%),
      radial-gradient(ellipse 25% 25% at 5% 95%, rgba(0,0,0,0.5) 0%, transparent 60%),
      radial-gradient(ellipse 25% 25% at 95% 5%, rgba(0,0,0,0.5) 0%, transparent 60%),
      linear-gradient(145deg, #100a00 0%, #1c1206 30%, #201508 55%, #1a1005 80%, #0e0900 100%);
  }

  .membership-card::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.5;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='250'%3E%3Cpath d='M-50 60 Q80 30 160 70 Q240 110 320 60 Q400 10 480 50' stroke='%23c9a84c' stroke-width='0.8' fill='none' opacity='0.4'/%3E%3Cpath d='M-50 90 Q80 60 160 100 Q240 140 320 90 Q400 40 480 80' stroke='%23c9a84c' stroke-width='0.8' fill='none' opacity='0.35'/%3E%3Cpath d='M-50 120 Q80 90 160 130 Q240 170 320 120 Q400 70 480 110' stroke='%23c9a84c' stroke-width='0.8' fill='none' opacity='0.3'/%3E%3Cpath d='M-50 150 Q80 120 160 160 Q240 200 320 150 Q400 100 480 140' stroke='%23c9a84c' stroke-width='0.7' fill='none' opacity='0.25'/%3E%3Cpath d='M-50 180 Q80 150 160 190 Q240 230 320 180 Q400 130 480 170' stroke='%23c9a84c' stroke-width='0.7' fill='none' opacity='0.2'/%3E%3C/svg%3E");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: 0;
    border-radius: 18px;
  }

  .mc-landscape-top,
  .mc-center,
  .mc-landscape-bottom,
  .membership-card-glow {
    position: relative;
    z-index: 1;
  }

  .mc-landscape-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }

  .membership-card .mc-chip {
    position: static;
    transform: none;
    width: 50px;
    height: 38px;
    background: #b89a40;
    border: 1px solid rgba(201,168,76,0.4);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 1px 4px rgba(0,0,0,0.5);
  }

  .membership-card .mc-chip-inner {
    width: 36px;
    height: 28px;
    border-radius: 3px;
    border: 1px solid rgba(0,0,0,0.3);
    background-color: #c9a84c;
    background-image:
      linear-gradient(rgba(0,0,0,0.25) 1px, transparent 1px),
      linear-gradient(90deg, rgba(0,0,0,0.25) 1px, transparent 1px);
    background-size: 33.33% 33.33%;
  }

  .membership-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 18%;
    height: 100%;
    background: linear-gradient(
      to right,
      rgba(201,168,76,0.18) 0%,
      rgba(201,168,76,0.08) 40%,
      transparent 100%
    );
    pointer-events: none;
    z-index: 0;
    border-radius: 18px 0 0 18px;
  }

  .mc-nfc {
    opacity: 1;
    flex-shrink: 0;
  }

  .mc-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    flex: 1;
    padding: 0 6px 0;
    margin-top: -100px;
  }

  .mc-logo {
    width: 65%;
    max-width: 180px;
    min-width: 120px;
    height: auto;
    border-radius: 0;
    object-fit: contain;
    background: transparent;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.8));
  }

  .mc-center .mc-brand {
    font-size: 22px;
    font-weight: 900;
    color: var(--gold);
    letter-spacing: 3px;
    text-transform: uppercase;
    text-align: center;
    line-height: 1.0;
    margin-bottom: 3px;
    text-shadow: 0 0 10px rgba(201,168,76,0.3);
  }

  .mc-center .mc-location {
    font-size: 9px;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 2.5px;
    text-transform: uppercase;
    text-align: center;
    opacity: 0.9;
  }

  .mc-landscape-bottom {
    position: absolute;
    bottom: 12px;
    left: 16px;
    right: 16px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-top: 8px;
  }

  .mc-landscape-bottom-left .mc-field-label {
    margin-bottom: 2px;
    font-size: 8px;
    letter-spacing: 2px;
    color: rgba(201,168,76,0.8);
    text-transform: uppercase;
    font-weight: 700;
  }

  .mc-landscape-bottom-left .mc-field-value {
    font-size: 16px;
    font-weight: 900;
    color: var(--gold);
    letter-spacing: 0.5px;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
  }

  .mc-landscape-bottom .mc-status {
    margin-bottom: 0;
    background: rgba(52,211,153,0.1);
    border: 1px solid rgba(52,211,153,0.5);
    border-radius: 50px;
    padding: 5px 12px;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: #34d399;
    text-transform: uppercase;
  }

  /* ---- Active: code block below card ---- */
  .active-code-block {
    background: rgba(201,168,76,0.06);
    border: 1px solid rgba(201,168,76,0.2);
    border-radius: 16px;
    padding: 16px 20px;
    text-align: center;
    margin-bottom: 2px;
  }

  .active-code-label {
    font-size: 10px;
    font-weight: 800;
    color: var(--gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 6px;
  }

  /* ---- Active: 3-column info row ---- */
  .active-info-row {
    display: flex;
    align-items: center;
    background: none;
    border: none;
    border-top: 1px solid rgba(201,168,76,0.15);
    border-radius: 0;
    padding: 12px 0 0;
    margin-top: 12px;
    margin-bottom: 0;
  }

  .active-info-col {
    flex: 1;
    text-align: center;
    padding: 0 8px;
  }

  .active-info-icon {
    width: 16px;
    height: 16px;
    margin: 0 auto 4px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .active-info-field-label {
    font-size: 9px;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 4px;
  }

  .active-info-field-value {
    font-size: 15px;
    font-weight: 900;
    color: white;
    letter-spacing: 0.5px;
  }

  .active-info-divider {
    width: 1px;
    height: 40px;
    background: rgba(201,168,76,0.15);
    flex-shrink: 0;
  }

  /* ---- Active: NFC tap row ---- */
  .active-nfc-row {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(201,168,76,0.04);
    border: 1px solid rgba(201,168,76,0.15);
    border-radius: 14px;
    padding: 14px 16px;
    margin-bottom: 12px;
  }

  .active-nfc-icon {
    flex-shrink: 0;
  }

  .active-nfc-title {
    font-size: 11px;
    font-weight: 800;
    color: var(--gold);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 4px;
  }

  .active-nfc-sub {
    font-size: 12px;
    color: rgba(201,168,76,0.7);
  }

  /* ---- Active: benefits row ---- */
  .active-benefits-row {
    display: flex;
    justify-content: space-around;
    gap: 8px;
    padding: 14px 0;
    border-top: 1px solid rgba(201,168,76,0.1);
    border-bottom: 1px solid rgba(201,168,76,0.1);
    margin-bottom: 16px;
  }

  .active-benefit-col {
    flex: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
  }

  .active-benefit-icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .active-benefit-label {
    font-size: 9px;
    font-weight: 700;
    color: white;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    line-height: 1.4;
  }

  /* ---- Active: footer text ---- */
  .active-footer-text {
    text-align: center;
    font-style: italic;
    font-size: 20px;
    color: var(--gold);
    line-height: 1.7;
    margin-bottom: 8px;
  }

  /* ---- Active: mc-code larger ---- */
  .mc-code {
    font-size: 36px !important;
    letter-spacing: 5px !important;
  }

