/* ════════════════════════════════════════════════════════════════════
   BERA — Landing. Design system, glass, 3D, parallax, reveal.
   ════════════════════════════════════════════════════════════════════ */
:root {
  --orange: #F2A03E;
  --pink:   #E63B7A;
  --purple: #B14EE3;
  --cyan:   #2BCAD8;

  --bg:     #07060B;
  --bg2:    #0C0A14;
  --ink:    #FFFFFF;
  --soft:   rgba(255,255,255,0.66);
  --faint:  rgba(255,255,255,0.40);
  --line:   rgba(255,255,255,0.10);
  --line2:  rgba(255,255,255,0.06);
  --glass:  rgba(255,255,255,0.045);
  --glass2: rgba(255,255,255,0.07);

  --grad: linear-gradient(120deg, var(--orange), var(--pink) 55%, var(--purple));
  --grad-warm: linear-gradient(120deg, var(--orange), var(--pink));
  --maxw: 1240px;
  --ease: cubic-bezier(.22,.61,.36,1);

  --display: "Bricolage Grotesque", system-ui, sans-serif;
  --body: "Inter", system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--body);
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; }
::selection { background: var(--pink); color: #fff; }

/* page-wide ambient grain + base gradient */
body::before {
  content: ""; position: fixed; inset: 0; z-index: -2; pointer-events: none;
  background:
    radial-gradient(900px 600px at 78% -8%, rgba(242,160,62,0.16), transparent 60%),
    radial-gradient(800px 700px at 8% 12%, rgba(177,78,227,0.16), transparent 58%),
    radial-gradient(900px 800px at 50% 108%, rgba(230,59,122,0.14), transparent 60%),
    var(--bg);
}
body::after {
  content: ""; position: fixed; inset: 0; z-index: -1; pointer-events: none; opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }

/* ── type ───────────────────────────────────────────────────────────── */
.display { font-family: var(--display); font-weight: 700; letter-spacing: -0.03em; line-height: 0.98; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 12.5px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: var(--soft);
}
.eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--grad-warm); box-shadow: 0 0 14px var(--pink); }
.grad-text {
  background: var(--grad); -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.lead { color: var(--soft); font-size: 19px; line-height: 1.6; }

/* ── buttons ────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 9px; border: 0;
  padding: 14px 24px; border-radius: 14px; font-size: 15px; font-weight: 650;
  transition: transform .2s var(--ease), box-shadow .3s var(--ease), background .2s;
  white-space: nowrap;
}
.btn-primary {
  background: var(--grad-warm); color: #1a0e06;
  box-shadow: 0 14px 34px -10px rgba(230,59,122,.6), inset 0 1px 0 rgba(255,255,255,.4);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 20px 44px -10px rgba(230,59,122,.75), inset 0 1px 0 rgba(255,255,255,.5); }
.btn-ghost { background: var(--glass); color: #fff; border: 1px solid var(--line); backdrop-filter: blur(10px); }
.btn-ghost:hover { background: var(--glass2); transform: translateY(-2px); }
.btn svg { width: 17px; height: 17px; }

/* ── nav ────────────────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 28px; max-width: calc(var(--maxw) + 56px); margin: 0 auto;
  transition: padding .3s var(--ease);
}
.nav.scrolled {
  padding: 11px 28px; top: 10px; left: 50%; right: auto; transform: translateX(-50%);
  width: min(var(--maxw), calc(100% - 32px));
  background: rgba(12,10,20,0.72); backdrop-filter: blur(18px) saturate(1.4);
  border: 1px solid var(--line); border-radius: 18px;
  box-shadow: 0 20px 50px -20px rgba(0,0,0,.7);
}
.nav-logo { height: 30px; width: auto; }
.nav-links { display: flex; gap: 30px; align-items: center; }
.nav-links a { font-size: 14.5px; color: var(--soft); transition: color .2s; }
.nav-links a:hover { color: #fff; }
.nav-cta { display: flex; gap: 12px; align-items: center; }
.nav-burger { display: none; }
@media (max-width: 880px) {
  .nav-links, .nav-cta .btn-ghost { display: none; }
}

/* ── section frame ──────────────────────────────────────────────────── */
.section { position: relative; padding: 120px 0; }
.section-head { max-width: 720px; margin-bottom: 56px; }
.section-head h2 { font-size: clamp(34px, 5vw, 56px); margin: 18px 0 18px; }
.section-head .lead { max-width: 580px; }
.center { text-align: center; margin-left: auto; margin-right: auto; }

/* ── reveal ─────────────────────────────────────────────────────────── */
/* Visible by default. JS adds .armed (hidden state) ONLY to below-the-fold
   elements, so above-the-fold content always paints even where the embedding
   context freezes CSS transitions. .in animates the armed elements in. */
.reveal.armed { opacity: 0; transform: translateY(34px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.armed.in { opacity: 1; transform: none; }
.reveal.armed[data-d="1"] { transition-delay: .08s; }
.reveal.armed[data-d="2"] { transition-delay: .16s; }
.reveal.armed[data-d="3"] { transition-delay: .24s; }
.reveal.armed[data-d="4"] { transition-delay: .32s; }
.reveal.armed[data-d="5"] { transition-delay: .40s; }
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal.armed { opacity: 1; transform: none; transition: none; }
  * { animation: none !important; }
}

/* ── hero ───────────────────────────────────────────────────────────── */
.hero { position: relative; padding: 168px 0 90px; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 40px; align-items: center; }
.hero h1 { font-size: clamp(44px, 6.6vw, 84px); margin: 22px 0; }
.hero .lead { max-width: 500px; margin-bottom: 32px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero-note { margin-top: 22px; font-size: 13.5px; color: var(--faint); display: flex; align-items: center; gap: 8px; }
.hero-note b { color: var(--soft); font-weight: 600; }

/* floating orbs */
.orb { position: absolute; border-radius: 50%; filter: blur(50px); pointer-events: none; z-index: 0; }
.orb-1 { width: 480px; height: 480px; background: radial-gradient(circle, rgba(242,160,62,.45), transparent 68%); top: -120px; right: -80px; }
.orb-2 { width: 420px; height: 420px; background: radial-gradient(circle, rgba(177,78,227,.4), transparent 68%); bottom: -160px; left: -120px; }
.orb-3 { width: 320px; height: 320px; background: radial-gradient(circle, rgba(43,202,216,.34), transparent 68%); top: 30%; left: 38%; }

/* hero stage (3D phone + floating chips) */
.stage { position: relative; height: 560px; perspective: 1400px; z-index: 2; }
.stage-inner { position: absolute; inset: 0; transform-style: preserve-3d; transition: transform .25s var(--ease); }

/* phone device */
.phone {
  position: relative; width: 300px; border-radius: 42px; padding: 11px;
  background: linear-gradient(160deg, #2a2733, #121019);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 50px 100px -30px rgba(0,0,0,.85), inset 0 1px 0 rgba(255,255,255,.16);
}
.phone::after { /* notch */
  content: ""; position: absolute; top: 20px; left: 50%; transform: translateX(-50%);
  width: 96px; height: 26px; background: #0a0910; border-radius: 0 0 16px 16px; z-index: 5;
}
.phone .screen {
  position: relative; border-radius: 32px; overflow: hidden; background: #0B0A10;
  aspect-ratio: 9 / 20; isolation: isolate;
}
.hero-phone {
  position: absolute; top: 42%; left: 52%; transform: translate(-50%,-50%) rotateY(-16deg) rotateX(6deg) rotateZ(-2deg);
  transform-style: preserve-3d; z-index: 1;
}
.hero-phone .float { animation: floaty 7s ease-in-out infinite; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-16px); } }

/* floating glass chips around the phone */
.chip3d {
  position: absolute; z-index: 4; display: flex; align-items: center; gap: 10px;
  padding: 12px 15px; border-radius: 16px;
  background: rgba(20,18,28,.72); border: 1px solid var(--line);
  backdrop-filter: blur(14px); box-shadow: 0 24px 50px -18px rgba(0,0,0,.7);
  transform-style: preserve-3d;
}
.chip3d .ic { width: 36px; height: 36px; border-radius: 11px; display: grid; place-items: center; flex: 0 0 auto; color: #1a0e06; }
.chip3d .tx b { display: block; font-size: 14px; font-weight: 700; }
.chip3d .tx span { font-size: 11.5px; color: var(--faint); }
.chip-a { top: 12%; left: -6%; animation: floaty 6s ease-in-out infinite; }
.chip-b { top: 44%; right: -10%; animation: floaty 7.5s ease-in-out .6s infinite; }
.chip-c { bottom: 8%; left: 4%; animation: floaty 6.8s ease-in-out 1.1s infinite; }

/* QR cube (3D rotating) */
.qr-cube { position: absolute; top: 6%; right: 6%; width: 92px; height: 92px; perspective: 600px; z-index: 4; }

@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; }
  .stage { height: 580px; max-width: 360px; margin: 24px auto 0; }
  .phone { width: 230px; }
  .hero-phone { left: 50%; top: 50%; }
  .chip-a { top: 4%; left: -4%; }
  .chip-b { top: auto; bottom: 4%; right: -6%; }
  .chip-c { display: none; }
  .qr-cube { top: 2%; right: 2%; width: 76px; height: 76px; }
}
.qr-cube .spin { width: 100%; height: 100%; transform-style: preserve-3d; animation: spincube 14s linear infinite; }
@keyframes spincube { 0% { transform: rotateY(0) rotateX(-14deg); } 100% { transform: rotateY(360deg) rotateX(-14deg); } }
.qr-face {
  position: absolute; inset: 0; border-radius: 16px; display: grid; place-items: center;
  background: rgba(255,255,255,.95); box-shadow: 0 0 30px rgba(242,160,62,.4);
  backface-visibility: hidden;
}
.qr-face.front { transform: translateZ(46px); }
.qr-face.back  { transform: rotateY(180deg) translateZ(46px); }
.qr-face.right { transform: rotateY(90deg) translateZ(46px); width: 92px; background: rgba(20,18,28,.9); border: 1px solid var(--line); }
.qr-face.left  { transform: rotateY(-90deg) translateZ(46px); width: 92px; background: rgba(20,18,28,.9); border: 1px solid var(--line); }
.qr-img { width: 64px; height: 64px; image-rendering: pixelated; }
.qr-logo { width: 52px; height: 52px; object-fit: contain; filter: drop-shadow(0 0 12px rgba(242,160,62,.5)); }

/* ── stat band ──────────────────────────────────────────────────────── */
.stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; border-top: 1px solid var(--line2); border-bottom: 1px solid var(--line2); }
.stat { padding: 34px 26px; border-left: 1px solid var(--line2); }
.stat:first-child { border-left: 0; }
.stat .n { font-family: var(--display); font-size: 42px; font-weight: 700; letter-spacing: -.02em; }
.stat .l { font-size: 13.5px; color: var(--soft); margin-top: 6px; }
@media (max-width: 760px) { .stats { grid-template-columns: repeat(2,1fr); } .stat:nth-child(odd) { border-left: 0; } }

/* ── marquee ────────────────────────────────────────────────────────── */
.marquee { overflow: hidden; padding: 22px 0; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee-track { display: flex; gap: 18px; width: max-content; animation: scrollx 38s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes scrollx { to { transform: translateX(-50%); } }
.mq {
  display: inline-flex; align-items: center; gap: 10px; padding: 11px 20px; border-radius: 999px;
  background: var(--glass); border: 1px solid var(--line); font-size: 14.5px; font-weight: 550; white-space: nowrap; color: var(--soft);
}
.mq .d { width: 6px; height: 6px; border-radius: 50%; }

/* ── flow (order journey) ───────────────────────────────────────────── */
.flow-rail-wrap { position: relative; }
.flow-rail { display: flex; gap: 26px; overflow-x: auto; padding: 10px 4px 30px; scroll-snap-type: x mandatory; scrollbar-width: none; }
.flow-rail::-webkit-scrollbar { display: none; height: 0; }
.flow-nav {
  position: absolute; top: 240px; z-index: 10;
  width: 48px; height: 48px; border-radius: 50%; display: grid; place-items: center;
  background: var(--grad-warm); border: 1px solid transparent; color: #1a0e06;
  box-shadow: 0 14px 34px -10px rgba(230,59,122,.6), inset 0 1px 0 rgba(255,255,255,.4);
  transition: transform .2s var(--ease), box-shadow .3s var(--ease), opacity .2s;
}
.flow-nav:hover { transform: translateY(-2px) scale(1.05); box-shadow: 0 20px 44px -10px rgba(230,59,122,.75), inset 0 1px 0 rgba(255,255,255,.5); }
.flow-nav:disabled { opacity: .35; pointer-events: none; }
.flow-nav-prev { left: -8px; }
.flow-nav-next { right: -8px; }
@media (max-width: 900px) {
  .flow-nav { width: 40px; height: 40px; top: 200px; }
  .flow-nav-prev { left: 2px; }
  .flow-nav-next { right: 2px; }
}
.flow-step { flex: 0 0 auto; width: 290px; scroll-snap-align: start; }
.flow-step .badge {
  display: inline-flex; align-items: center; gap: 9px; font-size: 13px; font-weight: 700;
  padding: 7px 13px; border-radius: 999px; background: var(--glass); border: 1px solid var(--line); margin-bottom: 16px;
}
.flow-step .badge .num { width: 20px; height: 20px; border-radius: 50%; background: var(--grad-warm); color: #1a0e06; display: grid; place-items: center; font-size: 12px; }
.flow-step h3 { font-size: 21px; font-weight: 700; letter-spacing: -.01em; margin-bottom: 8px; }
.flow-step p { font-size: 14px; color: var(--soft); line-height: 1.55; }
.flow-phone { margin-bottom: 22px; }
.flow-phone .phone { width: 100%; }

/* ── bento ──────────────────────────────────────────────────────────── */
.bento { display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; grid-auto-rows: minmax(190px, auto); }
.card {
  position: relative; overflow: hidden; border-radius: 24px; padding: 26px;
  background: var(--glass); border: 1px solid var(--line); transition: transform .3s var(--ease), border-color .3s, background .3s;
}
.card:hover { transform: translateY(-4px); border-color: rgba(255,255,255,.2); background: var(--glass2); }
.card .ic-lg { width: 52px; height: 52px; border-radius: 15px; display: grid; place-items: center; color: #1a0e06; margin-bottom: 16px; }
.card h3 { font-size: 20px; font-weight: 700; letter-spacing: -.01em; margin-bottom: 9px; }
.card p { font-size: 14px; color: var(--soft); line-height: 1.55; }
.card .glow { position: absolute; width: 220px; height: 220px; border-radius: 50%; filter: blur(60px); opacity: .5; pointer-events: none; }
.col-3 { grid-column: span 3; } .col-2 { grid-column: span 2; } .col-4 { grid-column: span 4; } .row-2 { grid-row: span 2; }
@media (max-width: 900px) {
  .bento {
    display: flex; grid-template-columns: none; overflow-x: auto; gap: 16px;
    scroll-snap-type: x mandatory; scroll-padding-left: 28px; padding: 4px 0 10px;
    margin: 0 -28px; scrollbar-width: none;
  }
  .bento::-webkit-scrollbar { display: none; height: 0; }
  .bento .card { flex: 0 0 86vw; grid-row: auto; scroll-snap-align: start; height: 480px; overflow-y: auto; scrollbar-width: none; }
  .bento .card::-webkit-scrollbar { display: none; height: 0; width: 0; }
  .bento .card:first-child { margin-left: 28px; }
  .bento .card:last-child { margin-right: 28px; }
}

.tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.tag { font-size: 12.5px; padding: 6px 12px; border-radius: 999px; background: rgba(255,255,255,.05); border: 1px solid var(--line); color: var(--soft); }

/* ── roles ──────────────────────────────────────────────────────────── */
.roles { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.role {
  position: relative; padding: 24px; border-radius: 20px; background: var(--glass); border: 1px solid var(--line);
  transition: transform .3s var(--ease), border-color .3s;
}
.role:hover { transform: translateY(-4px); }
.role .tag-role { font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; padding: 5px 10px; border-radius: 7px; display: inline-block; margin-bottom: 14px; }
.role h4 { font-size: 18px; font-weight: 700; margin-bottom: 7px; }
.role p { font-size: 13.5px; color: var(--soft); line-height: 1.5; }
@media (max-width: 820px) { .roles { grid-template-columns: 1fr; } }

/* ── split feature (billing / realtime) ─────────────────────────────── */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split.rev .split-media { order: 2; }
.split h2 { font-size: clamp(30px,4vw,46px); margin: 16px 0; }
.split .lead { margin-bottom: 24px; }
.checklist { display: flex; flex-direction: column; gap: 14px; }
.checklist li { list-style: none; display: flex; gap: 12px; align-items: flex-start; font-size: 15px; color: var(--soft); }
.checklist .ck { flex: 0 0 auto; width: 24px; height: 24px; border-radius: 8px; background: var(--grad-warm); display: grid; place-items: center; color: #1a0e06; margin-top: 1px; }
.checklist b { color: #fff; font-weight: 650; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; gap: 32px; } .split.rev .split-media { order: 0; } }

/* invoice mock */
.invoice {
  border-radius: 22px; padding: 24px; background: linear-gradient(160deg, rgba(255,255,255,.08), rgba(255,255,255,.02));
  border: 1px solid var(--line); box-shadow: 0 40px 90px -40px rgba(0,0,0,.8);
}
.invoice-top { display: flex; justify-content: space-between; align-items: center; padding-bottom: 16px; border-bottom: 1px solid var(--line); margin-bottom: 16px; }
.invoice-type { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; font-family: var(--display); font-weight: 700; font-size: 22px; color: #1a0e06; }
.invoice-row { display: flex; justify-content: space-between; padding: 7px 0; font-size: 14px; }
.invoice-row span:first-child { color: var(--faint); }
.invoice-tot { display: flex; justify-content: space-between; margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--line); font-weight: 700; font-size: 18px; }
.invoice-tabs { display: flex; gap: 8px; margin-bottom: 18px; }
.invoice-tab { width: 38px; height: 38px; border-radius: 10px; display: grid; place-items: center; font-family: var(--display); font-weight: 700; border: 1px solid var(--line); background: var(--glass); }
.invoice-tab.on { color: #1a0e06; border-color: transparent; }

/* timeline mock (realtime) */
.tl { display: flex; flex-direction: column; gap: 0; }
.tl-step { display: flex; gap: 16px; }
.tl-left { display: flex; flex-direction: column; align-items: center; }
.tl-dot { width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center; flex: 0 0 auto; }
.tl-line { width: 2px; flex: 1; min-height: 34px; background: var(--line); }
.tl-line.done { background: var(--grad-warm); }
.tl-body { padding-bottom: 26px; padding-top: 3px; }
.tl-body h5 { font-size: 16px; font-weight: 700; }
.tl-body span { font-size: 13px; color: var(--faint); }
.tl-now { font-size: 12.5px; color: var(--orange); font-weight: 700; margin-top: 2px; }

/* ── final CTA ──────────────────────────────────────────────────────── */
.cta-final { position: relative; overflow: hidden; border-radius: 36px; padding: 80px 40px; text-align: center; border: 1px solid var(--line); background: linear-gradient(150deg, rgba(242,160,62,.12), rgba(230,59,122,.1) 50%, rgba(177,78,227,.12)); }
.cta-final h2 { font-size: clamp(36px,5.5vw,64px); margin-bottom: 20px; }
.cta-final .lead { max-width: 520px; margin: 0 auto 32px; }
.cta-final .hero-cta { justify-content: center; }

/* ── footer ─────────────────────────────────────────────────────────── */
footer { border-top: 1px solid var(--line2); padding: 56px 0 40px; margin-top: 60px; }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 30px; margin-bottom: 40px; }
.foot-col h6 { font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--faint); margin-bottom: 16px; }
.foot-col a { display: block; font-size: 14px; color: var(--soft); padding: 5px 0; transition: color .2s; }
.foot-col a:hover { color: #fff; }
.foot-col p { font-size: 14px; color: var(--soft); line-height: 1.6; margin-top: 14px; max-width: 280px; }
.foot-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 24px; border-top: 1px solid var(--line2); font-size: 13px; color: var(--faint); }
@media (max-width: 760px) { .foot-grid { grid-template-columns: 1fr 1fr; } }

/* ── shared mini-UI (screens inside phones) ─────────────────────────── */
.scr { position: absolute; inset: 0; display: flex; flex-direction: column; font-size: 11px; color: #fff; background: #0B0A10; }
.scr-amb { position: absolute; inset: 0; background: radial-gradient(300px 200px at 100% 0%, rgba(242,160,62,.18), transparent 60%), radial-gradient(300px 220px at 0% 30%, rgba(230,59,122,.12), transparent 60%); pointer-events: none; }
.scr-pad { padding: 38px 16px 16px; position: relative; z-index: 1; height: 100%; display: flex; flex-direction: column; }
.scr-top { display: flex; align-items: center; gap: 8px; margin-bottom: 14px; }
.scr-back { width: 28px; height: 28px; border-radius: 50%; background: var(--glass2); border: 1px solid var(--line); display: grid; place-items: center; }
.scr-h { font-size: 16px; font-weight: 800; letter-spacing: -.02em; }
.scr-sub { font-size: 10.5px; color: var(--faint); }

.m-cat { display: flex; gap: 7px; margin-bottom: 12px; }
.m-cat span { font-size: 10px; padding: 5px 10px; border-radius: 999px; background: var(--glass); border: 1px solid var(--line); color: var(--soft); white-space: nowrap; }
.m-cat span.on { background: var(--grad-warm); color: #1a0e06; border-color: transparent; font-weight: 700; }
.m-item { display: flex; gap: 11px; padding: 10px; border-radius: 14px; background: var(--glass); border: 1px solid var(--line); margin-bottom: 9px; }
.m-thumb { width: 46px; height: 46px; border-radius: 10px; flex: 0 0 auto; background: linear-gradient(150deg, rgba(242,160,62,.5), rgba(230,59,122,.3)); position: relative; overflow: hidden; }
.m-thumb::after { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 50% 40%, rgba(242,160,62,.5), transparent 60%); }
.m-meta { flex: 1; min-width: 0; }
.m-meta b { font-size: 12.5px; font-weight: 700; display: block; }
.m-meta span { font-size: 10px; color: var(--faint); }
.m-price { font-size: 12.5px; font-weight: 800; color: var(--orange); }

.scr-foot { margin-top: auto; display: flex; align-items: center; gap: 10px; padding-top: 12px; }
.scr-cta { flex: 1; height: 42px; border-radius: 13px; background: var(--grad-warm); color: #1a0e06; display: flex; align-items: center; justify-content: space-between; padding: 0 15px; font-weight: 800; font-size: 12px; }
.scr-step { display: flex; align-items: center; gap: 4px; background: var(--glass2); border: 1px solid var(--line); border-radius: 999px; padding: 3px; }
.scr-step b { width: 26px; height: 26px; display: grid; place-items: center; font-size: 15px; }

.opt { display: flex; align-items: center; justify-content: space-between; padding: 11px 13px; border-radius: 12px; background: var(--glass); border: 1px solid var(--line); margin-bottom: 8px; font-size: 12.5px; font-weight: 600; }
.opt.on { background: linear-gradient(120deg, rgba(242,160,62,.18), rgba(230,59,122,.12)); border-color: var(--orange); }
.opt .rad { width: 18px; height: 18px; border-radius: 50%; border: 1.5px solid var(--faint); }
.opt.on .rad { border-color: var(--orange); display: grid; place-items: center; }
.opt.on .rad::after { content: ""; width: 9px; height: 9px; border-radius: 50%; background: var(--grad-warm); }
.scr-label { font-size: 12px; font-weight: 700; margin: 4px 0 9px; }

.pay-card { padding: 13px; border-radius: 13px; background: var(--glass); border: 1px solid var(--line); margin-bottom: 9px; }
.pay-card.on { background: linear-gradient(150deg, rgba(242,160,62,.16), rgba(230,59,122,.1)); border-color: var(--orange); }
.pay-card .pi { width: 30px; height: 30px; border-radius: 9px; background: var(--grad-warm); display: grid; place-items: center; color: #1a0e06; margin-bottom: 8px; }
.pay-card b { font-size: 12.5px; display: block; }
.pay-card span { font-size: 10px; color: var(--faint); }

/* dashboard mini (in laptop) */
.laptop { position: relative; width: 100%; max-width: 560px; }
.laptop .lid { border-radius: 16px 16px 0 0; padding: 9px; background: linear-gradient(160deg, #2a2733, #14121c); border: 1px solid rgba(255,255,255,.12); border-bottom: 0; }
.laptop .lid .screen { border-radius: 9px; overflow: hidden; aspect-ratio: 16/10; background: #08070C; position: relative; }
.laptop .base { height: 14px; background: linear-gradient(#1c1a24, #0e0d14); border-radius: 0 0 14px 14px; border: 1px solid rgba(255,255,255,.1); position: relative; }
.laptop .base::after { content: ""; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 80px; height: 5px; border-radius: 0 0 7px 7px; background: rgba(0,0,0,.4); }

.dash { position: absolute; inset: 0; display: flex; font-size: 9px; }
.dash-side { width: 46px; background: #0E0D14; border-right: 1px solid var(--line2); display: flex; flex-direction: column; align-items: center; gap: 8px; padding: 12px 0; }
.dash-side .dl { width: 30px; height: 30px; border-radius: 9px; display: grid; place-items: center; color: var(--faint); }
.dash-side .dl.on { background: var(--glass2); color: #fff; }
.dash-main { flex: 1; padding: 14px; overflow: hidden; }
.dash-welcome { display: flex; align-items: center; justify-content: space-between; padding: 12px 14px; border-radius: 12px; background: linear-gradient(110deg, rgba(177,78,227,.2), rgba(230,59,122,.1) 50%, transparent); border: 1px solid var(--line); margin-bottom: 12px; }
.dash-welcome b { font-size: 14px; font-weight: 800; }
.dash-welcome span { font-size: 9px; color: var(--soft); }
.dash-chip { font-size: 9px; padding: 5px 9px; border-radius: 999px; background: rgba(43,202,216,.14); border: 1px solid rgba(43,202,216,.3); color: var(--cyan); font-weight: 700; }
.dash-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; }
.dash-acc { padding: 14px; border-radius: 12px; background: var(--glass); border: 1px solid var(--line); }
.dash-acc .ai { width: 30px; height: 30px; border-radius: 9px; display: grid; place-items: center; color: #1a0e06; margin-bottom: 9px; }
.dash-acc b { font-size: 11px; font-weight: 800; display: block; }
.dash-acc span { font-size: 8.5px; color: var(--faint); }

/* utilities */
.bg-orange { background: var(--grad-warm); }
.bg-pink { background: linear-gradient(135deg, var(--pink), var(--purple)); }
.bg-cyan { background: linear-gradient(135deg, var(--cyan), #1f8aa0); }
.bg-purple { background: linear-gradient(135deg, var(--purple), var(--pink)); }
.t-orange { color: var(--orange); } .t-pink { color: var(--pink); } .t-cyan { color: var(--cyan); } .t-purple { color: var(--purple); }
