/* CardKRP — Landing 2026 (dark, iPhone mockup, QR poster, gallery) */

/* ╔══════════════════════════════════════════════════════════════════╗
   ║  SIGNUP MODAL                                                     ║
   ╚══════════════════════════════════════════════════════════════════╝ */
.modal {
  position: fixed; inset: 0;
  z-index: 100;
  display: flex; align-items: center; justify-content: center;
  padding: 16px;
  overflow-y: auto;
}
.modal[hidden] { display: none; }
.modal__overlay {
  position: absolute; inset: 0;
  background: rgba(10,10,12,0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  cursor: pointer;
  animation: fadeIn 200ms var(--ease) both;
}
.modal__panel {
  position: relative;
  width: 100%;
  max-width: 460px;
  background: linear-gradient(180deg, #18181b 0%, #131316 100%);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 24px;
  padding: clamp(24px, 4vw, 36px);
  box-shadow: 0 40px 80px -20px rgba(0,0,0,0.7);
  color: #f5f5f4;
  animation: slideUp 280ms var(--ease) both;
  margin: auto;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideUp { from { opacity: 0; transform: translateY(20px) scale(0.96); } to { opacity: 1; transform: translateY(0) scale(1); } }

.modal__close {
  position: absolute; top: 12px; right: 14px;
  width: 36px; height: 36px;
  border: 0; background: rgba(255,255,255,0.06);
  border-radius: var(--r-full);
  color: #f5f5f4;
  font-size: 1.4rem; cursor: pointer; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  transition: background 150ms var(--ease);
}
.modal__close:hover { background: rgba(255,255,255,0.12); }

.modal__header { text-align: center; margin-bottom: 18px; }
.modal__header h2 {
  font-size: clamp(1.6rem, 3vw, 2rem);
  margin: 14px 0 8px;
  background: linear-gradient(180deg, #fff 0%, #c6c6c4 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.modal__header .muted { color: rgba(255,255,255,0.6); margin: 0; font-size: 0.94rem; }

.modal .form {
  background: transparent; border: 0; padding: 0; box-shadow: none; margin: 0;
}
.modal .form label > span { color: rgba(255,255,255,0.9); font-weight: 600; font-size: 0.88rem; }
.modal .form input {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: #f5f5f4;
  border-radius: 12px;
  padding: 13px 14px;
  min-height: 48px;
  font-size: 1rem;
}
.modal .form input::placeholder { color: rgba(255,255,255,0.35); }
.modal .form input:focus {
  border-color: rgba(255,231,194,0.6);
  background: rgba(255,255,255,0.08);
  box-shadow: 0 0 0 4px rgba(255,231,194,0.12);
  outline: none;
}
.modal .form label small { color: rgba(255,255,255,0.45); }
.modal .form .btn-primary {
  background: linear-gradient(180deg, #ffe7c2 0%, #f0c878 100%);
  color: #1a0e00;
  border-color: transparent;
}
.modal .center a { color: #ffe7c2; }

body.modal-open { overflow: hidden; }

/* ╔══════════════════════════════════════════════════════════════════╗
   ║  QR ZOOM MODAL                                                    ║
   ╚══════════════════════════════════════════════════════════════════╝ */
.qr-zoom {
  position: fixed; inset: 0;
  z-index: 110;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  background: rgba(10,10,12,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  animation: fadeIn 200ms var(--ease) both;
  cursor: pointer;
}
.qr-zoom[hidden] { display: none; }
.qr-zoom__panel {
  position: relative;
  background: #fff;
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.6);
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  cursor: default;
  animation: slideUp 280ms var(--ease) both;
  max-width: 380px;
  width: 100%;
}
.qr-zoom__brand {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.95rem; font-weight: 700; letter-spacing: var(--tracking-tight);
  color: #0a0a0a;
}
.qr-zoom__brand .qz-mark {
  width: 32px; height: 32px;
  border-radius: 10px;
  background: #0a0a0a;
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
}
.qr-zoom__big {
  width: clamp(260px, 70vmin, 320px);
  height: clamp(260px, 70vmin, 320px);
  background: #fff;
  border: 1px solid #e5e5e2;
  border-radius: 12px;
  padding: 14px;
}
.qr-zoom__big .qr-pattern { width: 100%; height: 100%; border-radius: 4px; }
.qr-zoom__hint {
  font-size: 0.92rem;
  color: rgba(0,0,0,0.6);
  text-align: center;
  font-weight: 600;
}
.qr-zoom__id {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: rgba(0,0,0,0.45);
  letter-spacing: 0.15em;
}
.qr-zoom__close {
  position: absolute; top: 12px; right: 14px;
  width: 32px; height: 32px;
  border: 0; background: rgba(0,0,0,0.06);
  border-radius: var(--r-full);
  font-size: 1.2rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.qr-zoom__close:hover { background: rgba(0,0,0,0.12); }

/* GLOBAL DARK FORM OVERRIDES on .lp-body — applies to all forms inside */
.lp-body input,
.lp-body select,
.lp-body textarea {
  background-color: rgba(255,255,255,0.06) !important;
  border-color: rgba(255,255,255,0.12) !important;
  color: #ffffff !important;
  color-scheme: dark !important;
}
.lp-body input::placeholder,
.lp-body textarea::placeholder { color: rgba(255,255,255,0.35) !important; }
.lp-body input:focus,
.lp-body select:focus,
.lp-body textarea:focus {
  border-color: rgba(255,231,194,0.7) !important;
  background-color: rgba(255,255,255,0.09) !important;
  box-shadow: 0 0 0 4px rgba(255,231,194,0.18) !important;
}
.lp-body input[type="color"] { background-color: transparent !important; }
.lp-body select option { background-color: #18181b !important; color: #f5f5f4 !important; }

/* SVG icons baseline */
.svg-icon { display: inline-block; vertical-align: -2px; flex-shrink: 0; }
.btn .svg-icon { margin-left: 4px; }
.badge .svg-icon { margin-right: 4px; }
.features-list .svg-icon { margin-right: 6px; color: #ffe7c2; vertical-align: -3px; }
.feature-icon { padding: 10px; }
.feature-icon .svg-icon { color: rgba(255,231,194,0.95); }
.gcard-mark .svg-icon { color: #fff; }
.wc-logo-mark .svg-icon { color: #fff; }
.wallet-pill .svg-icon { vertical-align: -3px; }
.poster__cta .svg-icon { vertical-align: -2px; }

/* ─── Dark body & header overrides ────────────────────────────────── */
.lp-body { background: #0a0a0a; color: #f5f5f4; }
.lp-body .site-header {
  background: color-mix(in srgb, #0a0a0a 70%, transparent);
  border-bottom-color: rgba(255,255,255,0.08);
}
.lp-body .site-header .brand { color: #f5f5f4; }
.lp-body .site-header .brand .dot { color: rgba(255,255,255,0.4); }
.lp-body .lang { background: rgba(255,255,255,0.06); }
.lp-body .lang a { color: rgba(255,255,255,0.55); }
.lp-body .lang a.active { background: rgba(255,255,255,0.95); color: #0a0a0a; }
.lp-body .btn-link { color: rgba(255,255,255,0.85); }
.lp-body .btn.btn-sm.btn-primary { background: #ffe7c2; color: #2a1f12; border-color: #ffe7c2; }
.lp-body .muted { color: rgba(255,255,255,0.55); }
.lp-body .badge { background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.7); border: 1px solid rgba(255,255,255,0.08); }
.lp-body .site-footer { background: #0a0a0a; border-top-color: rgba(255,255,255,0.06); color: rgba(255,255,255,0.45); }

/* Customer pages — dark card override so .card on lp-body is dark */
.lp-body .card {
  background: linear-gradient(180deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.025) 100%);
  border: 1px solid rgba(255,255,255,0.1);
  color: #f5f5f4;
}
.lp-body .card .muted { color: rgba(255,255,255,0.55); }
.lp-body .alert-ok {
  background: rgba(10,122,62,0.18);
  color: #6ee7a3;
  border-color: rgba(10,122,62,0.4);
}
.lp-body .alert-error {
  background: rgba(176,0,32,0.15);
  color: #ff9aa6;
  border-color: rgba(176,0,32,0.4);
}
.lp-body .form input,
.lp-body .form select,
.lp-body .form textarea {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: #ffffff;
  color-scheme: dark;
}
.lp-body .form input::placeholder { color: rgba(255,255,255,0.35); }
.lp-body .form input:focus, .lp-body .form select:focus, .lp-body .form textarea:focus {
  border-color: rgba(255,231,194,0.7);
  background: rgba(255,255,255,0.09);
  box-shadow: 0 0 0 4px rgba(255,231,194,0.18);
  outline: none;
}
.lp-body .form label > span { color: #ffffff; }
.lp-body .form label small { color: rgba(255,255,255,0.5); }
.lp-body .feature-icon { background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.85); }
.lp-body .eyebrow {
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.85);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: none;
  backdrop-filter: blur(20px);
}
.lp-body .btn { background: rgba(255,255,255,0.06); color: #f5f5f4; border-color: rgba(255,255,255,0.12); }
.lp-body .btn:hover { background: rgba(255,255,255,0.1); }
.lp-body .btn-primary {
  background: linear-gradient(180deg, #ffe7c2 0%, #f0c878 100%);
  color: #1a0e00; border-color: transparent;
  box-shadow: 0 8px 24px rgba(240,200,120,0.25), inset 0 1px 0 rgba(255,255,255,0.7);
}
.lp-body .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(240,200,120,0.35); }
.lp-body .btn-ghost { background: transparent; }

/* ─── Hero ────────────────────────────────────────────────────────── */
.lp-hero { position: relative; overflow: hidden; padding: clamp(56px, 9vw, 120px) 0 clamp(48px, 10vw, 96px); }
.lp-hero__bg { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.orb { position: absolute; border-radius: 50%; filter: blur(70px); opacity: 0.55; }
.orb-1 { width: 540px; height: 540px; background: #b97a2a; top: -160px; left: -120px; }
.orb-2 { width: 480px; height: 480px; background: #2a4a8e; top: 80px; right: -180px; }
.orb-3 { width: 380px; height: 380px; background: #6a2a8e; bottom: -200px; left: 30%; opacity: 0.4; }

.lp-hero__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(48px, 8vw, 72px);
  align-items: center;
  position: relative;
  z-index: 1;
  padding-bottom: 0;
}
@media (min-width: 980px) { .lp-hero__inner { grid-template-columns: 1.05fr 1fr; } }

.lp-hero__title {
  font-size: clamp(2.8rem, 8vw, 5.6rem);
  line-height: 0.96;
  letter-spacing: var(--tracking-tighter);
  font-weight: 800;
  margin: 16px 0 22px;
  background: linear-gradient(180deg, #ffffff 0%, #c6c6c4 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.lp-hero__lead {
  font-size: clamp(1.05rem, 1.7vw, 1.25rem);
  color: rgba(255,255,255,0.7);
  max-width: 520px;
  margin: 0 0 30px;
  letter-spacing: var(--tracking-tight);
  line-height: 1.5;
}
.cta-row { display: inline-flex; gap: 10px; flex-wrap: wrap; }
.trust-row { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 28px; }

/* ╔══════════════════════════════════════════════════════════════════╗
   ║  iPHONE MOCKUP                                                    ║
   ╚══════════════════════════════════════════════════════════════════╝ */
.lp-hero__device {
  display: flex; justify-content: center; align-items: center;
  position: relative;
  min-height: 600px;
  padding: 30px 0;
}

/* ─── Orbit cards (floating around the iPhone) ────────────────────── */
.orbit-card {
  position: absolute;
  width: 200px;
  padding: 14px 16px 13px;
  border-radius: 16px;
  color: #fff;
  z-index: 1;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow:
    0 30px 60px -20px rgba(0,0,0,0.7),
    0 12px 24px -8px rgba(0,0,0,0.5),
    inset 0 1px 0 rgba(255,255,255,0.08);
  font-family: var(--font-sans);
  animation: float-orbit 7s ease-in-out infinite;
}
.orbit-card::before {
  content: ""; position: absolute; inset: 0; border-radius: 16px;
  background: radial-gradient(120% 80% at 0% 0%, rgba(255,255,255,0.16), transparent 60%);
  pointer-events: none;
}
.oc-1 { top: 4%;   left: -6%;  background: linear-gradient(135deg, #16294a 0%, #3b5a9a 100%); --rot: -8deg; transform: rotate(-8deg); animation-delay: 0s; }
.oc-2 { top: 22%;  right: -4%; background: linear-gradient(135deg, #4a1530 0%, #b54f8a 100%); --rot: 7deg;  transform: rotate(7deg);  animation-delay: 1.4s; }
.oc-3 { bottom: 18%; left: -4%; background: linear-gradient(135deg, #4a1f0d 0%, #c66a2a 100%); --rot: 5deg;   transform: rotate(5deg);   animation-delay: 2.8s; }
.oc-4 { bottom: 4%; right: -8%; background: linear-gradient(135deg, #2a1645 0%, #6a3aaa 100%); --rot: -4deg; transform: rotate(-4deg); animation-delay: 4.2s; }

@keyframes float-orbit {
  0%, 100% { transform: translateY(0) rotate(var(--rot, 0deg)); }
  50%      { transform: translateY(-12px) rotate(var(--rot, 0deg)); }
}

.oc-head { display: flex; align-items: center; gap: 8px; font-size: 0.78rem; font-weight: 600; opacity: 0.95; letter-spacing: var(--tracking-tight); }
.oc-mark {
  width: 22px; height: 22px; border-radius: 7px;
  background: rgba(255,255,255,0.18);
  display: inline-flex; align-items: center; justify-content: center;
}
.oc-mark .svg-icon { color: #fff; }
.oc-big {
  font-size: 1.7rem; font-weight: 700;
  letter-spacing: var(--tracking-tighter); line-height: 1;
  margin: 10px 0 8px;
  font-variant-numeric: tabular-nums;
}
.oc-unit { font-size: 0.78rem; font-weight: 500; opacity: 0.55; margin-left: 6px; }
.oc-stamps { display: grid; grid-template-columns: repeat(8, 1fr); gap: 4px 5px; margin: 10px 0 8px; }
.ocst { height: 8px; border-radius: var(--r-full); background: rgba(255,255,255,0.16); border: 1px solid rgba(255,255,255,0.2); }
.ocst.on { background: #ffe7c2; border-color: #ffe7c2; box-shadow: 0 0 6px rgba(255,231,194,0.5); }
.oc-foot { font-size: 0.72rem; opacity: 0.7; font-weight: 500; }

@media (max-width: 980px) {
  .lp-hero__device { min-height: 720px; }
  .oc-1 { left: 2%; top: 0%; }
  .oc-4 { right: 2%; bottom: 0%; }
}
@media (max-width: 540px) {
  .lp-hero__device { min-height: 640px; }
  .orbit-card { width: 156px; padding: 11px 13px; }
  .oc-big { font-size: 1.4rem; }
  .oc-1 { left: -8%; top: 2%; }
  .oc-2 { right: -10%; top: 18%; }
  .oc-3 { left: -10%; bottom: 22%; }
  .oc-4 { right: -8%; bottom: 4%; }
}
.iphone { position: relative; width: 100%; max-width: 360px; }
.iphone__shadow {
  position: absolute; left: 8%; right: 8%; bottom: -40px;
  height: 60px; border-radius: 50%;
  background: radial-gradient(ellipse, rgba(240,200,120,0.25) 0%, transparent 70%);
  filter: blur(20px);
  z-index: -1;
}
.iphone__frame {
  background: #1a1a1c;
  border-radius: 46px;
  padding: 11px;
  position: relative;
  box-shadow:
    0 60px 120px -30px rgba(0,0,0,0.7),
    0 30px 60px -20px rgba(0,0,0,0.5),
    inset 0 0 0 1.5px rgba(255,255,255,0.06),
    inset 0 1px 0 rgba(255,255,255,0.12);
  aspect-ratio: 9 / 19.5;
}
.iphone__dynamic-island {
  position: absolute;
  top: 18px; left: 50%; transform: translateX(-50%);
  width: 96px; height: 28px;
  background: #000;
  border-radius: var(--r-full);
  z-index: 5;
}
.iphone__screen {
  width: 100%; height: 100%;
  background: #000;
  border-radius: 36px;
  overflow: hidden;
  padding: 52px 14px 18px;
  position: relative;
  display: flex; flex-direction: column;
  gap: 12px;
}

.ios-status {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.78rem; font-weight: 700;
  color: #fff;
  padding: 0 6px;
}
.ios-status__right { display: flex; gap: 6px; align-items: center; }
.ios-icon { font-size: 0.72rem; }

.wallet-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 4px;
  color: #fff;
}
.wallet-back, .wallet-plus { font-size: 1.4rem; font-weight: 300; color: #ffe7c2; line-height: 1; }
.wallet-title { font-size: 1rem; font-weight: 700; }

/* The wallet card itself */
.wallet-card {
  background: linear-gradient(155deg, #1a1a1a 0%, #3a3a3a 70%, #1a1a1a 100%);
  border-radius: 16px;
  padding: 16px 16px 14px;
  color: #fff;
  box-shadow:
    0 12px 28px rgba(0,0,0,0.5),
    inset 0 1px 0 rgba(255,255,255,0.1);
  position: relative;
  overflow: hidden;
}
.wallet-card::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(120% 80% at 0% 0%, rgba(255,255,255,0.15), transparent 60%);
  pointer-events: none;
}
.wallet-card__top { display: flex; align-items: center; gap: 8px; }
.wc-logo-mark {
  width: 28px; height: 28px;
  border-radius: 8px;
  background: rgba(255,255,255,0.18);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1rem;
}
.wc-org { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.02em; }

.wallet-card__balance { margin: 12px 0 8px; }
.wc-balance-num {
  font-size: 1.9rem; font-weight: 700;
  letter-spacing: var(--tracking-tighter);
  line-height: 1;
  font-variant-numeric: tabular-nums;
  color: #fff;
}
.wc-balance-of { font-size: 1rem; opacity: 0.55; font-weight: 500; }
.wc-balance-label {
  font-size: 0.6rem; font-weight: 700;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.55);
  margin-top: 4px;
}

.wallet-card__stamps {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: 4px 5px;
  margin: 8px 0;
}
.wc-dot {
  height: 8px;
  border-radius: var(--r-full);
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.16);
}
.wc-dot.on {
  background: #ffe7c2;
  border-color: #ffe7c2;
  box-shadow: 0 0 6px rgba(255,231,194,0.6);
}

.wallet-card__footer {
  display: flex; justify-content: space-between;
  margin-top: 10px; padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.7rem;
}
.wc-foot-label { font-size: 0.55rem; font-weight: 700; letter-spacing: 0.14em; color: rgba(255,255,255,0.5); }
.wc-foot-value { font-weight: 600; margin-top: 2px; }

/* QR section below the wallet card */
.wallet-card__qr-section {
  margin: 12px -4px 0;
  background: #fff;
  border-radius: 12px;
  padding: 14px 12px 10px;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  box-shadow: 0 6px 14px rgba(0,0,0,0.3);
}
.wallet-card__qr {
  width: 110px; height: 110px;
  background: #fff;
  border-radius: 4px;
  padding: 4px;
}
.qr-pattern {
  width: 100%; height: 100%;
  background-color: #fff;
  background-image:
    /* corners */
    radial-gradient(circle at 12% 12%, #0a0a0a 0 16%, transparent 17%),
    radial-gradient(circle at 88% 12%, #0a0a0a 0 16%, transparent 17%),
    radial-gradient(circle at 12% 88%, #0a0a0a 0 16%, transparent 17%),
    /* inner corner squares */
    radial-gradient(circle at 12% 12%, transparent 8%, #fff 9% 11%, #0a0a0a 12% 14%, transparent 15%),
    radial-gradient(circle at 88% 12%, transparent 8%, #fff 9% 11%, #0a0a0a 12% 14%, transparent 15%),
    radial-gradient(circle at 12% 88%, transparent 8%, #fff 9% 11%, #0a0a0a 12% 14%, transparent 15%),
    /* random module pattern */
    repeating-conic-gradient(from 45deg at 50% 50%, #0a0a0a 0 18deg, transparent 18deg 36deg),
    linear-gradient(45deg, #0a0a0a 25%, transparent 25%, transparent 50%, #0a0a0a 50%, #0a0a0a 75%, transparent 75%);
  background-size: 100% 100%, 100% 100%, 100% 100%, 100% 100%, 100% 100%, 100% 100%, 30% 30%, 9% 9%;
  background-repeat: no-repeat, no-repeat, no-repeat, no-repeat, no-repeat, no-repeat, repeat, repeat;
}
.wc-qr-id {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  color: rgba(0,0,0,0.5);
  letter-spacing: 0.1em;
}

.wallet-hint {
  text-align: center;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.5);
  margin-top: auto;
  padding: 0 8px 4px;
}

/* Smaller iPhone for flow section */
.iphone--small { max-width: 240px; }
.iphone--small .iphone__frame { padding: 8px; border-radius: 36px; }
.iphone--small .iphone__screen { border-radius: 28px; padding: 38px 10px 12px; gap: 8px; }
.iphone--small .iphone__dynamic-island { top: 12px; width: 70px; height: 20px; }
.iphone--small .wc-balance-num { font-size: 1.4rem; }
.iphone--small .wallet-card__qr { width: 86px; height: 86px; }
.iphone--small .ios-status { font-size: 0.62rem; }
.iphone--small .wallet-title { font-size: 0.85rem; }
.iphone--small .wallet-back, .iphone--small .wallet-plus { font-size: 1.1rem; }

/* ╔══════════════════════════════════════════════════════════════════╗
   ║  FROM COUNTER TO WALLET                                           ║
   ╚══════════════════════════════════════════════════════════════════╝ */
.lp-flow { background: linear-gradient(180deg, #0a0a0a 0%, #131315 100%); }
.flow-stage {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}
@media (min-width: 880px) { .flow-stage { grid-template-columns: 1fr auto 1fr; } }

.flow-side { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.flow-label { font-size: 0.85rem; color: rgba(255,255,255,0.55); font-weight: 600; letter-spacing: var(--tracking-tight); text-align: center; }
.flow-arrow { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.flow-arrow small { font-size: 0.7rem; color: rgba(255,231,194,0.6); font-weight: 600; }

/* QR Poster */
.poster {
  width: 100%;
  max-width: 280px;
  aspect-ratio: 105 / 148;
  background: #fff;
  color: #0a0a0a;
  border-radius: 14px;
  overflow: hidden;
  display: flex; flex-direction: column;
  box-shadow:
    0 30px 60px -20px rgba(0,0,0,0.6),
    0 12px 24px -8px rgba(0,0,0,0.35),
    inset 0 0 0 1px rgba(0,0,0,0.04);
  transform: rotate(-2deg);
  transition: transform var(--t-slow) var(--ease);
}
.poster:hover { transform: rotate(-1deg) translateY(-4px); }
.poster__strip {
  background: #0a0a0a;
  color: #fff;
  padding: 12px 16px;
  display: flex; align-items: baseline; justify-content: space-between;
}
.poster__brand { font-size: 0.6rem; font-weight: 800; letter-spacing: 0.16em; color: rgba(255,231,194,0.85); }
.poster__shop { font-size: 0.9rem; font-weight: 700; letter-spacing: var(--tracking-tight); }
.poster__body {
  flex: 1;
  padding: 18px 16px;
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
  gap: 8px;
}
.poster__headline {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: var(--tracking-tighter);
  line-height: 1.1;
  margin-bottom: 4px;
}
.poster__qr {
  width: 60%;
  aspect-ratio: 1/1;
  background: #fff;
  padding: 6px;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 8px;
  margin: 2px 0;
}
.qr-pattern--big {
  border-radius: 4px;
}
.poster__cta { font-size: 0.82rem; font-weight: 700; margin-top: 4px; }
.poster__sub { font-size: 0.65rem; color: rgba(0,0,0,0.5); font-weight: 500; }
.poster__footer {
  padding: 8px 16px;
  background: #f5f5f3;
  font-size: 0.6rem;
  color: rgba(0,0,0,0.45);
  text-align: center;
  letter-spacing: 0.06em;
  font-family: var(--font-mono);
  border-top: 1px solid rgba(0,0,0,0.05);
}

/* Section heads */
.lp-section { padding: clamp(72px, 12vw, 140px) 0; position: relative; }
.lp-section__head { text-align: center; max-width: 760px; margin: 0 auto 48px; }
.lp-section__head h2 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 700;
  letter-spacing: var(--tracking-tighter);
  line-height: 1.05;
  margin: 14px 0 14px;
  color: #f5f5f4;
}
.lp-section__head p { font-size: clamp(1rem, 1.4vw, 1.15rem); margin: 0; }

/* ─── Gallery (BIG SHOWCASE) ──────────────────────────────────────── */
.lp-gallery { background: linear-gradient(180deg, #131315 0%, #0a0a0a 50%, #131315 100%); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(18rem, 1fr));
  gap: 1.5rem;
  width: 100%;
  margin: 0 auto;
}
/* Each gallery card = a real loyalty card preview with QR in the CENTER.
   Aspect: square-ish to fit big QR */
.gcard {
  position: relative;
  border-radius: 22px;
  color: #fff;
  overflow: hidden;
  display: flex; flex-direction: column;
  background: linear-gradient(155deg, #1a1a1a 0%, #3a3a3a 70%, #1a1a1a 100%);
  box-shadow:
    0 32px 70px -20px rgba(0,0,0,0.7),
    0 12px 24px -8px rgba(0,0,0,0.4),
    inset 0 1px 0 rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.06);
  transition: transform 380ms var(--ease), box-shadow 380ms var(--ease);
  aspect-ratio: 320 / 460;
}
.gcard:hover {
  transform: translateY(-6px);
  box-shadow:
    0 44px 90px -20px rgba(0,0,0,0.8),
    0 20px 40px -10px rgba(0,0,0,0.5);
}

.gcard-shine {
  position: absolute; inset: 0;
  background:
    radial-gradient(120% 70% at 0% 0%, rgba(255,255,255,0.16), transparent 55%),
    radial-gradient(80% 80% at 100% 100%, rgba(255,255,255,0.06), transparent 60%);
  pointer-events: none;
}

/* TOP — logo + shop name */
.gcard-head {
  display: flex; align-items: center; gap: 10px;
  padding: 16px 18px 8px;
  position: relative;
  z-index: 1;
}
.gcard-logo {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.95);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(0,0,0,0.25), inset 0 1px 0 rgba(255,255,255,0.5);
}
.gcard-logo .svg-icon { color: #1a1a1a; }
.gcard-name {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: var(--tracking-tight);
  line-height: 1.15;
}
.gcard-name__sub {
  font-size: 0.62rem;
  opacity: 0.55;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-top: 2px;
}

/* CENTER QR — the visual heart of the card */
.gcard-qr-wrap {
  flex: 1;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 8px 16px 8px;
  gap: 8px;
  position: relative;
  z-index: 1;
}
.gcard-qr-frame {
  width: 60%;
  aspect-ratio: 1 / 1;
  background: #fff;
  border-radius: 14px;
  padding: 10px;
  box-shadow: 0 12px 28px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.6);
  cursor: pointer;
  transition: transform 200ms var(--ease), box-shadow 200ms var(--ease);
  position: relative;
}
.gcard-qr-frame:hover {
  transform: scale(1.04);
  box-shadow: 0 18px 36px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.6);
}
.gcard-qr-frame .qr-pattern { width: 100%; height: 100%; border-radius: 4px; }
.gcard-qr-frame::before {
  content: ""; position: absolute;
  top: -3px; left: -3px; right: -3px; bottom: -3px;
  border: 2px solid rgba(255,231,194,0.55);
  border-radius: 16px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 200ms var(--ease);
}
.gcard-qr-frame:hover::before { opacity: 1; }
.gcard-qr-serial {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  opacity: 0.55;
  font-weight: 600;
}

/* BOTTOM — stamps or big number + reward */
.gcard-foot {
  padding: 10px 18px 16px;
  position: relative;
  z-index: 1;
  border-top: 1px dashed rgba(255,255,255,0.12);
  margin: 0 16px;
}
.gcard-foot__title {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.55;
  margin: 8px 0 6px;
}
.gcard-stamps {
  display: grid; grid-template-columns: repeat(10, 1fr); gap: 4px 5px;
}
.gcard-stamps--6 { grid-template-columns: repeat(6, 1fr); }
.gcard-stamps--8 { grid-template-columns: repeat(8, 1fr); }
.gcard-stamps--5 { grid-template-columns: repeat(5, 1fr); }
.gst {
  aspect-ratio: 1/1;
  border-radius: var(--r-full);
  background: rgba(255,255,255,0.16);
  border: 1px solid rgba(255,255,255,0.2);
}
.gst.on {
  background: #ffe7c2;
  border-color: #ffe7c2;
  box-shadow: 0 0 10px rgba(255,231,194,0.55);
}
.gcard-big {
  font-size: 1.9rem;
  font-weight: 700;
  letter-spacing: var(--tracking-tighter);
  line-height: 1;
  margin: 0;
  font-variant-numeric: tabular-nums;
}
.gcard-unit { font-size: 0.85rem; font-weight: 600; opacity: 0.55; letter-spacing: 0; }

.gcard-foot__meta {
  display: flex; justify-content: space-between;
  margin-top: 8px;
  font-size: 0.7rem;
  font-weight: 600;
}
.gcard-foot__meta .progress { font-weight: 700; }
.gcard-foot__meta .reward { opacity: 0.6; font-weight: 500; }

.wallet-card__qr {
  cursor: pointer;
  transition: transform 180ms var(--ease);
}
.wallet-card__qr:hover { transform: scale(1.05); }
.poster__qr {
  cursor: pointer;
  transition: transform 180ms var(--ease);
}
.poster__qr:hover { transform: scale(1.04); }
.gcard-bottom__qr .qr-pattern {
  width: 100%; height: 100%;
  border-radius: 3px;
}

.gcard--black  { background: linear-gradient(135deg, #0d0d0d 0%, #2a2a2a 100%); }
.gcard--blue   { background: linear-gradient(135deg, #16294a 0%, #3b5a9a 100%); }
.gcard--pink   { background: linear-gradient(135deg, #4a1530 0%, #b54f8a 100%); }
.gcard--green  { background: linear-gradient(135deg, #143a26 0%, #3a8a5a 100%); }
.gcard--violet { background: linear-gradient(135deg, #2a1645 0%, #6a3aaa 100%); }
.gcard--orange { background: linear-gradient(135deg, #4a1f0d 0%, #c66a2a 100%); }
.gcard--teal   { background: linear-gradient(135deg, #0d3a3a 0%, #2a8a8a 100%); }
.gcard--red    { background: linear-gradient(135deg, #4a1414 0%, #b53a3a 100%); }

/* ─── Features grid ───────────────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
.feature-card {
  grid-column: span 3;
  padding: 24px 22px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.02) 100%);
  border: 1px solid rgba(255,255,255,0.08);
  color: #f5f5f4;
  min-height: 170px;
}
.feature-card h3 { color: #f5f5f4; }
.feature-card .muted { color: rgba(255,255,255,0.55); }
.feature-card--big { grid-column: span 6; min-height: 210px; display: flex; gap: 24px; align-items: center; flex-wrap: wrap; }
.feature-card--big > div:first-of-type { flex: 1; min-width: 220px; }
.feature-card__visual { display: flex; gap: 10px; flex-wrap: wrap; }
.wallet-pill {
  padding: 12px 20px;
  border-radius: var(--r-full);
  font-size: 0.92rem; font-weight: 600;
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid rgba(255,255,255,0.12);
}
.wallet-pill.apple  { background: rgba(0,0,0,0.5);    color: #fff; }
.wallet-pill.google { background: rgba(255,255,255,0.95); color: #0a0a0a; }
.feature-card .feature-icon { background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.85); }

@media (max-width: 860px) {
  .features-grid { grid-template-columns: 1fr 1fr; }
  .feature-card { grid-column: span 1; }
  .feature-card--big { grid-column: span 2; }
}
@media (max-width: 540px) {
  .features-grid { grid-template-columns: 1fr; }
  .feature-card--big { grid-column: span 1; }
}

/* ─── Pricing / FAQ on dark ───────────────────────────────────────── */
.lp-body .price-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.02) 100%);
  border: 1px solid rgba(255,255,255,0.08);
  color: #f5f5f4;
  border-radius: 22px;
  padding: 28px 24px;
}
.lp-body .price-card .tier { color: rgba(255,255,255,0.55); }
.lp-body .price-card .price { color: #f5f5f4; }
.lp-body .price-card .price small { color: rgba(255,255,255,0.55); }
.lp-body .price-card .features-list { color: rgba(255,255,255,0.7); }
.lp-body .price-card .features-list li { border-top-color: rgba(255,255,255,0.08); }
.price-card--trial {
  background: linear-gradient(180deg, rgba(255,231,194,0.12) 0%, rgba(255,231,194,0.03) 100%) !important;
  border-color: rgba(255,231,194,0.3) !important;
}
.price-card--trial .tier { color: #ffe7c2 !important; }

.lp-body .faq { max-width: 760px; margin: 0 auto; }
.lp-body .faq__item {
  background: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.02) 100%);
  border: 1px solid rgba(255,255,255,0.08);
  color: #f5f5f4;
  box-shadow: none;
}
.lp-body .faq__item summary { color: #f5f5f4; }
.lp-body .faq__item summary::after { color: rgba(255,255,255,0.5); }
.lp-body .faq__item .muted { color: rgba(255,255,255,0.55); }

/* ─── Final CTA ───────────────────────────────────────────────────── */
.lp-body .final-cta {
  background: linear-gradient(180deg, #ffe7c2 0%, #f0c878 100%);
  color: #1a0e00;
  border-radius: 32px;
  padding: 48px clamp(24px, 4vw, 56px);
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 30px 80px rgba(240,200,120,0.25);
}
.lp-body .final-cta h2 { color: #1a0e00; margin: 0 0 8px; }
.lp-body .final-cta .muted { color: rgba(26,14,0,0.7); }
.lp-body .final-cta .btn-primary {
  background: #0a0a0a; color: #ffe7c2; border-color: #0a0a0a;
  box-shadow: 0 14px 28px rgba(0,0,0,0.3);
}
.lp-body .final-cta .btn-primary:hover { background: #1a1a1a; }

@media (max-width: 640px) {
  .gcard { min-height: 200px; padding: 18px 18px 16px; }
  .gcard-title { font-size: 1.15rem; }
}
