/* ═══════════════════════════════════════════════════════════════════
   RENN STORE — Design System "NEBULA" v2.0
   Dark-futuristic · glassmorphism · aurora gradients · micro-motion
   Light mode tetap tersedia via [data-theme="light"].
   Semua class lama tetap didukung 100% (backward compatible).
   ═══════════════════════════════════════════════════════════════════ */

:root {
  /* surfaces */
  --bg: #05060e;
  --bg-subtle: #0a0c1c;
  --bg-elevated: #0d1024;
  --bg-glass: rgba(16, 19, 43, .55);
  --bg-card-hover: #11142e;
  /* type */
  --fg: #eef0ff;
  --fg-muted: #9aa3c7;
  --fg-faint: #636b92;
  /* lines */
  --border: rgba(140, 152, 255, .11);
  --border-strong: rgba(140, 152, 255, .26);
  /* brand & accents */
  --accent: #7c5cff;
  --brand: #7c5cff;             /* di-override inline dari settings.primaryColor */
  --brand-2: #22d3ee;
  --grad: linear-gradient(120deg, var(--brand) 0%, #5e8bff 48%, var(--brand-2) 100%);
  --grad-soft: linear-gradient(120deg,
      color-mix(in srgb, var(--brand) 22%, transparent),
      color-mix(in srgb, var(--brand-2) 18%, transparent));
  /* status */
  --danger: #ff5c7a;
  --success: #34d399;
  --warn: #fbbf24;
  /* geometry */
  --radius: 8px;
  --radius-lg: 14px;
  --radius-xl: 20px;
  --maxw: 1140px;
  --nav-h: 68px;
  /* elevation */
  --glow-sm: 0 0 18px -6px color-mix(in srgb, var(--brand) 55%, transparent);
  --glow-md: 0 8px 40px -12px color-mix(in srgb, var(--brand) 45%, transparent);
  --shadow: 0 1px 2px rgba(0, 0, 0, .5), 0 10px 30px -12px rgba(0, 0, 0, .65);
  --shadow-lg: 0 24px 70px -20px rgba(0, 0, 0, .75), 0 0 0 1px rgba(140, 152, 255, .06);
  /* type stack */
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --display: 'Space Grotesk', 'Inter', sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, monospace;

  /* compat aliases (view lama) */
  --shadow-old: var(--shadow);
}

/* ── LIGHT THEME ──────────────────────────────────────────────────── */
[data-theme="light"] {
  --bg: #f4f6fe;
  --bg-subtle: #eceffb;
  --bg-elevated: #ffffff;
  --bg-glass: rgba(255, 255, 255, .72);
  --bg-card-hover: #ffffff;
  --fg: #10132b;
  --fg-muted: #4d5578;
  --fg-faint: #7c84a8;
  --border: rgba(30, 41, 99, .10);
  --border-strong: rgba(30, 41, 99, .22);
  --shadow: 0 1px 2px rgba(16, 19, 43, .05), 0 10px 30px -12px rgba(16, 19, 43, .14);
  --shadow-lg: 0 24px 70px -24px rgba(16, 19, 43, .25);
}

/* ═══ BASE ══════════════════════════════════════════════════════════ */
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; overflow-x: hidden; overflow-x: clip; }
body {
  margin: 0;
  font-family: var(--sans);
  background: var(--bg);
  color: var(--fg);
  line-height: 1.55;
  letter-spacing: -.011em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  overflow-x: clip;
  max-width: 100vw;
}
/* aurora backdrop + grid — selalu tampil di belakang konten */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: -2; pointer-events: none;
  background:
    radial-gradient(52% 44% at 82% -6%, color-mix(in srgb, var(--brand) 17%, transparent), transparent 62%),
    radial-gradient(46% 40% at 8% 4%, color-mix(in srgb, var(--brand-2) 12%, transparent), transparent 60%),
    radial-gradient(38% 34% at 50% 108%, color-mix(in srgb, #5e8bff 10%, transparent), transparent 64%);
  filter: saturate(1.15);
}
body::after {
  content: '';
  position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background-image:
    linear-gradient(color-mix(in srgb, var(--fg) 3%, transparent) 1px, transparent 1px),
    linear-gradient(90deg, color-mix(in srgb, var(--fg) 3%, transparent) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 90% 60% at 50% 0%, black 0%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse 90% 60% at 50% 0%, black 0%, transparent 78%);
  opacity: .5;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }
input, select, textarea { font-family: inherit; }
::selection { background: var(--brand); color: #fff; }
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: color-mix(in srgb, var(--brand) 35%, var(--border-strong)); border-radius: 8px; border: 2px solid var(--bg); }
:focus-visible { outline: 2px solid var(--brand); outline-offset: 2px; border-radius: 4px; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; position: relative; }
.mono { font-family: var(--mono); }
.muted { color: var(--fg-muted); }
.grad-text {
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

/* ═══ GLASS UTILITIES ═══════════════════════════════════════════════ */
.glass {
  background: var(--bg-glass);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border: 1px solid var(--border);
}

/* ═══ NAVBAR ════════════════════════════════════════════════════════ */
.nav {
  position: sticky; top: 0; z-index: 50;
  height: var(--nav-h);
  background: color-mix(in srgb, var(--bg) 72%, transparent);
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  border-bottom: 1px solid var(--border);
  transition: background .3s, border-color .3s, box-shadow .3s;
}
.nav.scrolled {
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  box-shadow: 0 8px 32px -16px rgba(0, 0, 0, .6);
}
.nav-in { max-width: var(--maxw); margin: 0 auto; height: 100%; padding: 0 24px;
  display: flex; align-items: center; gap: 18px; }
.nav-logo { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 15px;
  letter-spacing: -.02em; font-family: var(--display); position: relative; }
.nav-logo img { width: 30px; height: 30px; border-radius: 9px; object-fit: cover;
  box-shadow: 0 0 0 1px var(--border-strong), var(--glow-sm); }
.nav-links { display: flex; align-items: center; gap: 2px; margin-left: 6px; }
.nav-links a {
  font-size: 13.5px; font-weight: 500; color: var(--fg-muted); padding: 8px 13px; border-radius: 9px;
  transition: color .18s, background .18s, box-shadow .18s;
}
.nav-links a:hover { color: var(--fg); background: color-mix(in srgb, var(--fg) 6%, transparent); }
.nav-links a.active {
  color: var(--fg);
  background: color-mix(in srgb, var(--brand) 14%, transparent);
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--brand) 30%, transparent);
}
.nav-right { margin-left: auto; display: flex; align-items: center; gap: 8px; }
.nav-burger { display: none; width: 40px; height: 40px; align-items: center; justify-content: center;
  border: 1px solid var(--border-strong); border-radius: 10px; background: var(--bg-glass); backdrop-filter: blur(8px); }
.nav-burger svg { width: 18px; height: 18px; stroke: var(--fg); }

/* mobile drawer */
.drawer { position: fixed; inset: 0; z-index: 60; visibility: hidden; transition: visibility .3s; overflow: hidden; }
.drawer.open { visibility: visible; }
.drawer-scrim { position: absolute; inset: 0; background: rgba(3, 4, 12, .66);
  backdrop-filter: blur(6px); opacity: 0; transition: opacity .28s; }
.drawer.open .drawer-scrim { opacity: 1; }
.drawer-panel { position: absolute; top: 0; right: 0; height: 100%; width: 292px; max-width: 86vw;
  background: color-mix(in srgb, var(--bg-elevated) 92%, transparent);
  backdrop-filter: blur(24px);
  border-left: 1px solid var(--border); transform: translateX(100%);
  transition: transform .32s cubic-bezier(.16, 1, .3, 1); padding: 18px; display: flex; flex-direction: column; gap: 4px; }
.drawer.open .drawer-panel { transform: translateX(0); }
.drawer-panel a { padding: 13px 14px; border-radius: 11px; font-size: 15px; font-weight: 500; color: var(--fg);
  transition: background .15s; }
.drawer-panel a:hover { background: color-mix(in srgb, var(--brand) 12%, transparent); }
.drawer-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.drawer-x { width: 38px; height: 38px; border: 1px solid var(--border-strong); border-radius: 10px;
  background: transparent; color: var(--fg);
  display: flex; align-items: center; justify-content: center; font-size: 18px; }

/* ═══ BUTTONS ═══════════════════════════════════════════════════════ */
.btn {
  position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  height: 42px; padding: 0 18px; border-radius: 11px; font-size: 14px; font-weight: 600;
  border: 1px solid transparent; overflow: hidden; white-space: nowrap;
  transition: transform .1s, box-shadow .25s, background .2s, border-color .2s, opacity .2s;
}
.btn:active { transform: translateY(1px) scale(.99); }
.btn-primary {
  background: var(--grad); background-size: 150% 150%; color: #fff;
  box-shadow: var(--glow-sm);
}
.btn-primary:hover { box-shadow: var(--glow-md); background-position: 90% 50%; }
.btn-primary::after {           /* kilau menyapu saat hover */
  content: ''; position: absolute; top: 0; left: -80%; width: 55%; height: 100%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, .28), transparent);
  transform: skewX(-22deg); transition: left .5s ease;
}
.btn-primary:hover::after { left: 130%; }
.btn-ghost {
  background: var(--bg-glass); color: var(--fg);
  border-color: var(--border-strong); backdrop-filter: blur(8px);
}
.btn-ghost:hover { border-color: color-mix(in srgb, var(--brand) 55%, var(--border-strong));
  box-shadow: var(--glow-sm); background: color-mix(in srgb, var(--brand) 8%, var(--bg)); }
.btn-danger { background: linear-gradient(120deg, #ff5c7a, #ff8060); color: #fff; }
.btn-danger:hover { box-shadow: 0 8px 30px -10px rgba(255, 92, 122, .55); }
.btn-sm { height: 36px; padding: 0 14px; font-size: 13px; border-radius: 9px; }
.btn-lg { height: 50px; padding: 0 26px; font-size: 15px; border-radius: 13px; }
.btn-block { width: 100%; }
.btn[disabled] { opacity: .45; pointer-events: none; }

/* ═══ BADGES / PILLS / CHIPS ════════════════════════════════════════ */
.badge { display: inline-flex; align-items: center; gap: 5px; height: 23px; padding: 0 9px;
  font-size: 11px; font-weight: 600; letter-spacing: .02em; border-radius: 7px;
  border: 1px solid var(--border-strong); color: var(--fg-muted); background: var(--bg-glass); }
.badge-new { color: #fff; background: var(--grad); border-color: transparent;
  box-shadow: var(--glow-sm); }
.chip { display: inline-flex; align-items: center; gap: 6px; height: 34px; padding: 0 15px; font-size: 13px;
  font-weight: 500; border: 1px solid var(--border-strong); border-radius: 100px; color: var(--fg-muted);
  background: var(--bg-glass); backdrop-filter: blur(6px);
  transition: all .18s; cursor: pointer; white-space: nowrap; }
.chip:hover { color: var(--fg); border-color: color-mix(in srgb, var(--brand) 60%, var(--border-strong));
  box-shadow: var(--glow-sm); transform: translateY(-1px); }
.chip.active { background: var(--grad); color: #fff; border-color: transparent; box-shadow: var(--glow-sm); }
.chip[disabled] { opacity: .4; pointer-events: none; }

/* ═══ HERO ══════════════════════════════════════════════════════════ */
.hero { padding: 84px 0 48px; position: relative; overflow-x: hidden; overflow-x: clip; }
.hero h1 {
  font-family: var(--display);
  font-size: clamp(38px, 7vw, 68px); line-height: 1.02; letter-spacing: -.045em; font-weight: 700;
  margin: 0 0 18px; max-width: 18ch;
}
.hero p { font-size: clamp(15px, 2.2vw, 18px); color: var(--fg-muted); max-width: 54ch; margin: 0 0 30px; }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 8px; font-family: var(--mono); font-size: 12px;
  color: var(--fg-muted); border: 1px solid var(--border-strong); border-radius: 100px; padding: 6px 14px;
  margin-bottom: 24px; background: var(--bg-glass); backdrop-filter: blur(8px); }
.hero-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--success);
  box-shadow: 0 0 0 0 rgba(52, 211, 153, .5); animation: ping 1.8s cubic-bezier(0, 0, .2, 1) infinite; }
@keyframes ping { 75%, 100% { box-shadow: 0 0 0 9px rgba(52, 211, 153, 0); } }

/* slides / banner */
.banner, .bnr { margin-top: 0; border: 1px solid var(--border); border-radius: var(--radius-lg);
  overflow: hidden; aspect-ratio: 24/9; background: var(--bg-subtle); position: relative; }
.banner img, .bnr img { width: 100%; height: 100%; object-fit: cover; }

/* ═══ SECTION ═══════════════════════════════════════════════════════ */
.section { padding: 58px 0; }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px;
  margin-bottom: 26px; flex-wrap: wrap; }
.section-head h2 { font-family: var(--display); font-size: clamp(22px, 3vw, 30px); font-weight: 700;
  letter-spacing: -.03em; margin: 0; }
.section-head p { margin: 4px 0 0; color: var(--fg-muted); font-size: 14px; }
.eyebrow { display: inline-flex; align-items: center; gap: 7px; font-family: var(--mono); font-size: 11px;
  letter-spacing: .12em; text-transform: uppercase; color: var(--brand);
  margin-bottom: 10px; }
.eyebrow::before { content: ''; width: 22px; height: 1px; background: var(--grad); }

.toolbar { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; margin-bottom: 22px; }
.search { flex: 1; min-width: 220px; height: 44px; display: flex; align-items: center; gap: 10px;
  border: 1px solid var(--border-strong); border-radius: 12px; padding: 0 14px;
  background: var(--bg-glass); backdrop-filter: blur(8px); transition: border-color .2s, box-shadow .2s; }
.search:focus-within { border-color: color-mix(in srgb, var(--brand) 60%, var(--border-strong)); box-shadow: var(--glow-sm); }
.search input { border: 0; outline: 0; background: transparent; color: var(--fg); font-size: 14px; width: 100%; }
.search input::placeholder { color: var(--fg-faint); }
.search svg { width: 16px; height: 16px; stroke: var(--fg-faint); flex-shrink: 0; }
.chips { display: flex; gap: 8px; overflow-x: auto; padding-bottom: 4px; scrollbar-width: none; }
.chips::-webkit-scrollbar { display: none; }

/* ═══ PRODUCT GRID (homepage) ═══════════════════════════════════════ */
.grid-shop { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
@media(min-width:640px){ .grid-shop { grid-template-columns: repeat(3, 1fr); } }
@media(min-width:900px){ .grid-shop { grid-template-columns: repeat(4, 1fr); } }
@media(min-width:1100px){ .grid-shop { grid-template-columns: repeat(5, 1fr); } }
.pcard {
  position: relative; border: 1px solid var(--border); border-radius: var(--radius-lg);
  background: linear-gradient(165deg, color-mix(in srgb, var(--fg) 3.5%, var(--bg-elevated)), var(--bg-elevated) 58%);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform .28s cubic-bezier(.16,1,.3,1), box-shadow .28s, border-color .28s;
}
.pcard:hover { transform: translateY(-5px); border-color: color-mix(in srgb, var(--brand) 45%, var(--border));
  box-shadow: var(--glow-md), var(--shadow); }
.pcard-media { aspect-ratio: 1/1; background: var(--bg-subtle); position: relative; overflow: hidden; }
.pcard-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s cubic-bezier(.16,1,.3,1); }
.pcard:hover .pcard-media img { transform: scale(1.07); }
.pcard-body { padding: 11px 12px 13px; display: flex; flex-direction: column; gap: 3px; }
.pcard-title { font-size: 13px; font-weight: 600; line-height: 1.35; min-height: 35px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.pcard-cat { font-family: var(--mono); font-size: 10px; color: var(--brand);
  text-transform: uppercase; letter-spacing: .08em; }
.pcard-price { font-size: 15px; font-weight: 700; letter-spacing: -.01em; margin-top: 3px; }
.pcard-price.orig { text-decoration: line-through; color: var(--fg-faint); font-size: 12px; font-weight: 500; }

/* ═══ GENERIC CARD GRID ═════════════════════════════════════════════ */
.grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 16px; }
.card {
  position: relative; border: 1px solid var(--border); border-radius: var(--radius-lg);
  background: linear-gradient(165deg, color-mix(in srgb, var(--fg) 3.5%, var(--bg-elevated)), var(--bg-elevated) 58%);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform .28s cubic-bezier(.16,1,.3,1), box-shadow .28s, border-color .28s;
}
.card:hover { transform: translateY(-4px); border-color: color-mix(in srgb, var(--brand) 45%, var(--border));
  box-shadow: var(--glow-md), var(--shadow); }
.card-media { aspect-ratio: 16/10; background: var(--bg-subtle); position: relative; overflow: hidden; }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s cubic-bezier(.16,1,.3,1); }
.card:hover .card-media img { transform: scale(1.05); }
.card-media .badge { position: absolute; top: 10px; left: 10px; }
.card-body { padding: 16px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.card-cat { font-family: var(--mono); font-size: 11px; color: var(--brand);
  text-transform: uppercase; letter-spacing: .08em; }
.card-title { font-size: 15px; font-weight: 700; letter-spacing: -.01em; line-height: 1.3;
  font-family: var(--display); }
.card-desc { font-size: 13px; color: var(--fg-muted); line-height: 1.5; flex: 1;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.card-foot { display: flex; align-items: center; justify-content: space-between; margin-top: 8px;
  padding-top: 12px; border-top: 1px solid var(--border); }
.card-price { font-size: 15px; font-weight: 700; }
.card-price small { font-size: 11px; color: var(--fg-faint); font-weight: 400; }

.empty { text-align: center; padding: 60px 20px; border: 1px dashed var(--border-strong);
  border-radius: var(--radius-lg); color: var(--fg-muted); background: var(--bg-glass); }
.empty svg { width: 34px; height: 34px; stroke: var(--fg-faint); margin: 0 auto 12px; }

/* ═══ ANNOUNCEMENT ══════════════════════════════════════════════════ */
.announce {
  background: linear-gradient(90deg, color-mix(in srgb, var(--brand) 16%, var(--bg-subtle)),
    color-mix(in srgb, var(--brand-2) 12%, var(--bg-subtle)));
  border-bottom: 1px solid var(--border);
}
.announce-in { max-width: var(--maxw); margin: 0 auto; padding: 10px 24px; font-size: 13px;
  color: var(--fg); display: flex; align-items: center; gap: 10px; }
.announce-in .badge { flex-shrink: 0; border-color: transparent; background: var(--grad); color: #fff; }

/* ═══ FEATURE STRIP ═════════════════════════════════════════════════ */
.feats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.feat {
  position: relative; padding: 24px; border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: linear-gradient(165deg, color-mix(in srgb, var(--fg) 3.5%, var(--bg-elevated)), var(--bg-elevated) 58%);
  transition: transform .28s cubic-bezier(.16,1,.3,1), border-color .28s, box-shadow .28s;
  overflow: hidden;
}
.feat::before { content: ''; position: absolute; inset: 0;
  background: radial-gradient(60% 60% at 20% 0%, color-mix(in srgb, var(--brand) 10%, transparent), transparent 70%);
  opacity: 0; transition: opacity .3s; }
.feat:hover { transform: translateY(-4px); border-color: color-mix(in srgb, var(--brand) 45%, var(--border));
  box-shadow: var(--glow-md); }
.feat:hover::before { opacity: 1; }
.feat h3 { font-family: var(--display); font-size: 15px; font-weight: 700; margin: 0 0 6px;
  letter-spacing: -.01em; position: relative; }
.feat p { font-size: 13px; color: var(--fg-muted); margin: 0; line-height: 1.55; position: relative; }
.feat-tile { width: 42px; height: 42px; border-radius: 12px; display: flex; align-items: center;
  justify-content: center; margin-bottom: 16px; background: var(--grad);
  box-shadow: var(--glow-sm); position: relative; }
.feat-tile svg { width: 21px; height: 21px; stroke: #fff; }
.feat-ic { width: 30px; height: 30px; margin-bottom: 14px; stroke: var(--brand); }

/* ═══ STATS STRIP ═══════════════════════════════════════════════════ */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.stat { text-align: center; padding: 22px 12px; border-radius: var(--radius-lg);
  border: 1px solid var(--border); background: var(--bg-glass); backdrop-filter: blur(12px);
  transition: border-color .25s, box-shadow .25s, transform .25s; }
.stat:hover { border-color: color-mix(in srgb, var(--brand) 45%, var(--border));
  box-shadow: var(--glow-sm); transform: translateY(-3px); }
.stat b { display: block; font-family: var(--display); font-size: clamp(22px, 3vw, 32px); font-weight: 700;
  letter-spacing: -.03em; background: var(--grad);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.stat span { font-size: 12px; color: var(--fg-muted); text-transform: uppercase; letter-spacing: .1em;
  font-family: var(--mono); }
@media(max-width:720px){ .stats { grid-template-columns: repeat(2, 1fr); } }

/* ═══ MARQUEE (trust bar) ═══════════════════════════════════════════ */
.marquee { overflow: hidden; position: relative; padding: 14px 0;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  mask-image: linear-gradient(90deg, transparent, black 12%, black 88%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 12%, black 88%, transparent); }
.marquee-track { display: flex; gap: 44px; width: max-content; animation: marquee 26s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-item { display: inline-flex; align-items: center; gap: 9px; font-family: var(--mono);
  font-size: 12.5px; letter-spacing: .08em; text-transform: uppercase; color: var(--fg-faint); white-space: nowrap; }
.marquee-item svg { width: 15px; height: 15px; stroke: var(--brand); flex-shrink: 0; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ═══ TESTIMONIAL ═══════════════════════════════════════════════════ */
.tst-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
@media(max-width:900px){ .tst-grid { grid-template-columns: 1fr; } }
.tst { padding: 22px; border-radius: var(--radius-lg); border: 1px solid var(--border);
  background: linear-gradient(165deg, color-mix(in srgb, var(--fg) 3.5%, var(--bg-elevated)), var(--bg-elevated) 58%);
  display: flex; flex-direction: column; gap: 14px; position: relative;
  transition: transform .25s, border-color .25s, box-shadow .25s; }
.tst:hover { transform: translateY(-4px); border-color: color-mix(in srgb, var(--brand) 45%, var(--border)); box-shadow: var(--glow-md); }
.tst-quote { position: absolute; top: 14px; right: 18px; font-family: var(--display); font-size: 54px;
  line-height: 1; color: color-mix(in srgb, var(--brand) 22%, transparent); user-select: none; }
.tst p { margin: 0; font-size: 13.5px; color: var(--fg-muted); line-height: 1.65; }
.tst-who { display: flex; align-items: center; gap: 11px; margin-top: auto; }
.tst-ava { width: 38px; height: 38px; border-radius: 50%; display: flex; align-items: center;
  justify-content: center; font-weight: 700; font-size: 14px; color: #fff; background: var(--grad);
  flex-shrink: 0; box-shadow: var(--glow-sm); }
.tst-who b { display: block; font-size: 13px; }
.tst-who span { font-size: 11.5px; color: var(--fg-faint); font-family: var(--mono); }
.stars { color: var(--warn); letter-spacing: 2px; font-size: 12px; }

/* ═══ FAQ ═══════════════════════════════════════════════════════════ */
.faq { display: flex; flex-direction: column; gap: 10px; max-width: 760px; margin: 0 auto; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden;
  background: var(--bg-glass); backdrop-filter: blur(10px); transition: border-color .25s; }
.faq-item[open] { border-color: color-mix(in srgb, var(--brand) 45%, var(--border)); box-shadow: var(--glow-sm); }
.faq-q { display: flex; align-items: center; justify-content: space-between; gap: 12px; width: 100%;
  padding: 16px 18px; background: transparent; border: 0; color: var(--fg);
  font-size: 14.5px; font-weight: 600; text-align: left; cursor: pointer;
  list-style: none; }
.faq-q::-webkit-details-marker { display: none; }
.faq-q svg { width: 17px; height: 17px; stroke: var(--brand); flex-shrink: 0;
  transition: transform .25s; }
.faq-item[open] .faq-q svg { transform: rotate(45deg); }
.faq-a { padding: 0 18px 16px; font-size: 13.5px; color: var(--fg-muted); line-height: 1.65; }

/* ═══ CTA BAND ══════════════════════════════════════════════════════ */
.cta-band { position: relative; overflow: hidden; border-radius: var(--radius-xl);
  border: 1px solid color-mix(in srgb, var(--brand) 35%, var(--border)); padding: 52px 32px; text-align: center; }
.cta-band::before { content: ''; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(70% 90% at 50% 115%, color-mix(in srgb, var(--brand) 30%, transparent), transparent 65%),
    radial-gradient(50% 70% at 85% -10%, color-mix(in srgb, var(--brand-2) 18%, transparent), transparent 60%),
    var(--bg-subtle); }
.cta-band h2 { font-family: var(--display); font-size: clamp(24px, 4vw, 38px); font-weight: 700;
  letter-spacing: -.03em; margin: 0 0 10px; }
.cta-band p { color: var(--fg-muted); margin: 0 0 26px; }

/* ═══ FOOTER ════════════════════════════════════════════════════════ */
.footer { border-top: 1px solid var(--border); margin-top: 64px; padding: 52px 0 0; position: relative; }
.footer::before { content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: min(680px, 80%); height: 1px;
  background: linear-gradient(90deg, transparent, var(--brand), var(--brand-2), transparent); }
.footer-in { display: flex; align-items: flex-start; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.footer-brand { display: flex; align-items: center; gap: 10px; font-weight: 700; font-family: var(--display); }
.footer-brand img { width: 28px; height: 28px; border-radius: 8px; box-shadow: var(--glow-sm); }
.footer-links { display: flex; gap: 48px; flex-wrap: wrap; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col b { font-size: 12px; text-transform: uppercase; letter-spacing: .1em;
  font-family: var(--mono); color: var(--brand); }
.footer-col a, .footer-col span { font-size: 13.5px; color: var(--fg-muted); transition: color .15s, transform .15s; }
.footer-col a:hover { color: var(--fg); transform: translateX(2px); }
.footer-base { max-width: var(--maxw); margin: 36px auto 0; padding: 20px 24px 26px;
  border-top: 1px solid var(--border); font-size: 12.5px; color: var(--fg-faint);
  display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; }

/* ═══ FLOATING WHATSAPP ═════════════════════════════════════════════ */
.wa-float { position: fixed; right: 20px; bottom: 20px; z-index: 70;
  width: 54px; height: 54px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #25d366, #128c7e); color: #fff;
  box-shadow: 0 10px 32px -8px rgba(37, 211, 102, .55);
  transition: transform .25s cubic-bezier(.16,1,.3,1), box-shadow .25s;
  animation: wa-pop .5s cubic-bezier(.16,1,.3,1) both; }
.wa-float:hover { transform: scale(1.1) rotate(6deg); box-shadow: 0 14px 44px -8px rgba(37, 211, 102, .7); }
.wa-float svg { width: 27px; height: 27px; fill: #fff; }
@keyframes wa-pop { from { transform: scale(0); opacity: 0; } }

/* ═══ FORM FIELDS ═══════════════════════════════════════════════════ */
.fld-lbl { display: block; font-size: 13px; font-weight: 600; margin: 0 0 6px; }
.fld { width: 100%; height: 44px; border: 1px solid var(--border-strong); border-radius: 11px;
  background: color-mix(in srgb, var(--bg) 60%, var(--bg-elevated)); color: var(--fg);
  font-size: 14px; padding: 0 14px; outline: none; margin: 0 0 14px;
  transition: border-color .2s, box-shadow .2s, background .2s; }
.fld:focus { border-color: color-mix(in srgb, var(--brand) 65%, var(--border-strong));
  box-shadow: var(--glow-sm); background: var(--bg-elevated); }
.fld::placeholder { color: var(--fg-faint); }
textarea.fld { height: auto; padding: 11px 14px; resize: vertical; }
select.fld { cursor: pointer; -webkit-appearance: none; appearance-none; }
option { background: var(--bg-elevated); color: var(--fg); }

/* ═══ KEY-VALUE ROW ═════════════════════════════════════════════════ */
.row-kv { display: flex; align-items: center; justify-content: space-between; gap: 10px;
  padding: 11px 14px; border: 1px solid var(--border); border-radius: 11px; margin-bottom: 8px;
  font-size: 13px; background: var(--bg-glass); transition: border-color .2s; }
.row-kv:hover { border-color: var(--border-strong); }
.row-kv .rk { color: var(--fg-muted); }
.row-kv .rv { font-weight: 600; text-align: right; word-break: break-all; user-select: all; }
.copy-mini { font-size: 11px; border: 1px solid var(--border-strong); background: transparent;
  color: var(--fg-muted); border-radius: 6px; padding: 3px 8px; cursor: pointer;
  transition: all .15s; }
.copy-mini:hover { color: #fff; background: var(--brand); border-color: var(--brand); }

/* ═══ SEGMENTED / TABS ══════════════════════════════════════════════ */
.seg { display: inline-flex; border: 1px solid var(--border-strong); border-radius: 12px;
  overflow: hidden; background: var(--bg-glass); backdrop-filter: blur(8px); }
.seg button { height: 40px; padding: 0 18px; font-size: 13px; font-weight: 600;
  background: transparent; color: var(--fg-muted); border: 0; border-right: 1px solid var(--border);
  transition: all .18s; }
.seg button:last-child { border-right: 0; }
.seg button:hover { color: var(--fg); }
.seg button.active { background: var(--grad); color: #fff; }

/* ═══ PAGE HEADER ═══════════════════════════════════════════════════ */
.page-head { padding: 40px 0 10px; }
.page-head h1 { font-family: var(--display); font-size: clamp(26px, 4.4vw, 38px);
  letter-spacing: -.035em; font-weight: 700; margin: 0 0 8px; }
.page-head p { color: var(--fg-muted); margin: 0; font-size: 15px; }

/* ═══ TOAST ═════════════════════════════════════════════════════════ */
.toast-host { position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%); z-index: 100;
  display: flex; flex-direction: column; gap: 8px; align-items: center; pointer-events: none; }
.toast { background: var(--bg-elevated); color: var(--fg); font-size: 13px; font-weight: 500;
  padding: 12px 20px; border-radius: 12px; border: 1px solid var(--border-strong);
  box-shadow: var(--shadow-lg), var(--glow-sm); opacity: 0; transform: translateY(10px);
  transition: all .3s cubic-bezier(.16,1,.3,1); }
.toast.show { opacity: 1; transform: translateY(0); }

/* ═══ THEME TOGGLE ══════════════════════════════════════════════════ */
.theme-btn { width: 40px; height: 40px; border: 1px solid var(--border-strong); border-radius: 11px;
  background: var(--bg-glass); display: flex; align-items: center; justify-content: center;
  transition: all .2s; }
.theme-btn:hover { border-color: color-mix(in srgb, var(--brand) 55%, var(--border-strong)); box-shadow: var(--glow-sm); transform: rotate(15deg); }
.theme-btn svg { width: 17px; height: 17px; stroke: var(--fg); }

/* ═══ SCROLL REVEAL ═════════════════════════════════════════════════ */
.rv { opacity: 0; transform: translateY(26px); transition: opacity .7s cubic-bezier(.16,1,.3,1),
  transform .7s cubic-bezier(.16,1,.3,1); transition-delay: var(--rv-d, 0ms); }
.rv.rv-in { opacity: 1; transform: none; }

/* ═══ FLOAT ORB DECOR ═══════════════════════════════════════════════ */
.orb { position: absolute; border-radius: 50%; filter: blur(70px); opacity: .5; z-index: -1;
  pointer-events: none; animation: orb-float 12s ease-in-out infinite alternate; }
.orb-a { width: 340px; height: 340px; right: -110px; top: -110px;
  background: color-mix(in srgb, var(--brand) 34%, transparent); }
.orb-b { width: 280px; height: 280px; left: -100px; bottom: -80px;
  background: color-mix(in srgb, var(--brand-2) 26%, transparent); animation-delay: -6s; }
@keyframes orb-float { from { transform: translate(0, 0) scale(1); } to { transform: translate(30px, 26px) scale(1.12); } }

/* ═══ RESPONSIVE ════════════════════════════════════════════════════ */
@media (max-width: 820px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .feats { grid-template-columns: 1fr; }
  .hero { padding: 56px 0 36px; }
  .section { padding: 44px 0; }
}
@media (min-width: 821px) { .drawer { display: none; } }

/* ═══ REDUCED MOTION ════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001s !important; transition-duration: .001s !important; }
  .rv { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* ═══════════════════════════════════════════════════════════════════
   NEBULA v2.1 — KOMPONEN TAMBAHAN (variant cards, timeline, search-dd,
   live feed, buybar, chat shell, empty states, PWA banner)
   ═══════════════════════════════════════════════════════════════════ */

/* ═══ VARIANT CARDS ═════════════════════════════════════════════════ */
.vgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
@media(max-width:420px){ .vgrid { grid-template-columns: 1fr; } }
.vcard { position: relative; text-align: left; border: 1px solid var(--border-strong);
  border-radius: 13px; padding: 12px 14px; background: color-mix(in srgb, var(--bg) 55%, var(--bg-elevated));
  cursor: pointer; transition: all .18s cubic-bezier(.16,1,.3,1); overflow: hidden; }
.vcard:hover { border-color: color-mix(in srgb, var(--brand) 60%, var(--border-strong)); box-shadow: var(--glow-sm); transform: translateY(-2px); }
.vcard.on { border-color: var(--brand); background: color-mix(in srgb, var(--brand) 12%, var(--bg-elevated));
  box-shadow: var(--glow-sm), inset 0 0 24px -14px color-mix(in srgb, var(--brand) 60%, transparent); }
.vcard.on::after { content: '✓'; position: absolute; top: 9px; right: 11px; width: 19px; height: 19px;
  border-radius: 50%; background: var(--grad); color: #fff; font-size: 11px; font-weight: 700;
  display: flex; align-items: center; justify-content: center; }
.vcard[disabled] { opacity: .45; pointer-events: none; }
.vc-name { font-size: 13px; font-weight: 600; line-height: 1.3; padding-right: 20px; }
.vc-price { margin-top: 5px; display: flex; align-items: baseline; gap: 7px; flex-wrap: wrap; }
.vc-price b { font-size: 15px; font-weight: 700; background: var(--grad);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.vc-price s { font-size: 11.5px; color: var(--fg-faint); }
.vc-badge { display: inline-flex; align-items: center; height: 17px; padding: 0 7px; border-radius: 6px;
  font-size: 9.5px; font-weight: 700; letter-spacing: .05em; background: linear-gradient(120deg,#ff5c7a,#ff8060);
  color: #fff; text-transform: uppercase; }
.vc-stock { margin-top: 4px; font-family: var(--mono); font-size: 10px; color: var(--fg-faint);
  text-transform: uppercase; letter-spacing: .06em; }
.vc-stock.low { color: var(--warn); }
.vc-stock.out { color: var(--danger); }

/* ═══ TRUST ROW ═════════════════════════════════════════════════════ */
.trust-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin: 16px 0 0; }
.trust-it { display: flex; flex-direction: column; align-items: center; gap: 6px; text-align: center;
  padding: 12px 6px; border-radius: 12px; border: 1px solid var(--border); background: var(--bg-glass); }
.trust-it svg { width: 18px; height: 18px; stroke: var(--brand); }
.trust-it span { font-size: 10.5px; color: var(--fg-muted); font-weight: 500; line-height: 1.3; }

/* ═══ STICKY BUY BAR (mobile) ═══════════════════════════════════════ */
.buybar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 65; display: none;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  backdrop-filter: blur(18px) saturate(180%); -webkit-backdrop-filter: blur(18px) saturate(180%);
  border-top: 1px solid var(--border); align-items: center; gap: 12px; }
.buybar-price { display: flex; flex-direction: column; }
.buybar-price small { font-size: 10px; color: var(--fg-faint); text-transform: uppercase; letter-spacing: .08em; }
.buybar-price b { font-size: 16px; background: var(--grad);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.buybar .btn { flex: 1; }
@media(max-width:820px){ .buybar { display: flex; } body.has-buybar { padding-bottom: 74px; } }

/* ═══ SEARCH DROPDOWN ═══════════════════════════════════════════════ */
.search-wrap2 { position: relative; flex: 1; min-width: 220px; z-index: 45; }
.search-dd { position: absolute; top: calc(100% + 8px); left: 0; right: 0; z-index: 40;
  border-radius: 14px; border: 1px solid var(--border-strong); overflow: hidden;
  background: color-mix(in srgb, var(--bg-elevated) 92%, transparent);
  backdrop-filter: blur(22px) saturate(180%); -webkit-backdrop-filter: blur(22px) saturate(180%);
  box-shadow: var(--shadow-lg); display: none; max-height: 340px; overflow-y: auto; }
.search-dd.open { display: block; }
.dd-item { display: flex; align-items: center; gap: 12px; padding: 10px 14px; cursor: pointer;
  transition: background .12s; border-bottom: 1px solid var(--border); }
.dd-item:last-child { border-bottom: 0; }
.dd-item:hover, .dd-item.hl { background: color-mix(in srgb, var(--brand) 10%, transparent); }
.dd-thumb { width: 40px; height: 40px; border-radius: 10px; object-fit: cover; flex-shrink: 0;
  border: 1px solid var(--border); background: var(--bg-subtle); }
.dd-thumb-txt { width: 40px; height: 40px; border-radius: 10px; flex-shrink: 0; display: flex;
  align-items: center; justify-content: center; font-family: var(--display); font-weight: 700;
  color: var(--fg); background: var(--grad-soft); border: 1px solid var(--border); }
.dd-info { flex: 1; min-width: 0; }
.dd-name { font-size: 13px; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.dd-cat { font-family: var(--mono); font-size: 10px; color: var(--fg-faint); text-transform: uppercase; letter-spacing: .07em; }
.dd-price { font-size: 12.5px; font-weight: 700; color: var(--brand); white-space: nowrap; }

/* ═══ SORT SELECT ═══════════════════════════════════════════════════ */
.sortsel { height: 40px; border: 1px solid var(--border-strong); border-radius: 11px;
  background: var(--bg-glass); color: var(--fg-muted); font-size: 13px; font-weight: 500;
  padding: 0 12px; cursor: pointer; outline: none; transition: all .18s; }
.sortsel:hover, .sortsel:focus { border-color: color-mix(in srgb, var(--brand) 55%, var(--border-strong)); color: var(--fg); }
.sortsel option { background: var(--bg-elevated); color: var(--fg); }

/* ═══ LIVE ORDER FEED ═══════════════════════════════════════════════ */
.feed-pill { position: fixed; left: 18px; bottom: 18px; z-index: 68; display: flex; align-items: center;
  gap: 11px; max-width: 320px; padding: 11px 16px 11px 12px; border-radius: 16px;
  border: 1px solid var(--border-strong);
  background: color-mix(in srgb, var(--bg-elevated) 88%, transparent);
  backdrop-filter: blur(18px) saturate(180%); -webkit-backdrop-filter: blur(18px) saturate(180%);
  box-shadow: var(--shadow-lg); cursor: pointer;
  transform: translateY(140%); opacity: 0;
  transition: transform .5s cubic-bezier(.16,1,.3,1), opacity .5s; }
.feed-pill.show { transform: translateY(0); opacity: 1; }
.feed-ic { width: 34px; height: 34px; border-radius: 11px; background: var(--grad); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; box-shadow: var(--glow-sm); }
.feed-ic svg { width: 17px; height: 17px; stroke: #fff; }
.feed-txt { min-width: 0; }
.feed-txt b { display: block; font-size: 12.5px; font-weight: 600; white-space: nowrap;
  overflow: hidden; text-overflow: ellipsis; }
.feed-txt span { font-size: 11px; color: var(--fg-faint); font-family: var(--mono); }
.feed-dot { position: absolute; top: -3px; left: -3px; width: 11px; height: 11px; border-radius: 50%;
  background: var(--success); border: 2px solid var(--bg); }
@media(max-width:600px){ .feed-pill { left: 12px; right: auto; max-width: 270px; bottom: 84px; }
  body.has-buybar .feed-pill { bottom: 84px; } }

/* ═══ TIMELINE (track) ══════════════════════════════════════════════ */
.tl { position: relative; padding-left: 30px; margin: 8px 0 4px; }
.tl::before { content: ''; position: absolute; left: 10px; top: 6px; bottom: 6px; width: 2px;
  background: linear-gradient(180deg, var(--brand), var(--brand-2)); opacity: .35; border-radius: 2px; }
.tl-it { position: relative; padding: 0 0 20px; }
.tl-it:last-child { padding-bottom: 4px; }
.tl-dot { position: absolute; left: -30px; top: 1px; width: 22px; height: 22px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: color-mix(in srgb, var(--bg) 70%, var(--bg-elevated)); border: 2px solid var(--border-strong); }
.tl-it.done .tl-dot { border-color: var(--brand); background: var(--grad); box-shadow: var(--glow-sm); }
.tl-it.done .tl-dot svg { width: 11px; height: 11px; stroke: #fff; stroke-width: 3; }
.tl-it.now .tl-dot { border-color: var(--brand); }
.tl-it.now .tl-dot::after { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--brand);
  animation: ping 1.6s cubic-bezier(0,0,.2,1) infinite; }
.tl-t { font-size: 13.5px; font-weight: 600; }
.tl-it.now .tl-t { color: var(--fg); }
.tl-it:not(.done):not(.now) .tl-t { color: var(--fg-faint); }
.tl-d { font-size: 12px; color: var(--fg-muted); margin-top: 2px; line-height: 1.5; }
.tl-time { font-family: var(--mono); font-size: 10.5px; color: var(--fg-faint); margin-top: 3px; }

/* ═══ CHAT SHELL ════════════════════════════════════════════════════ */
.chat-shell { border: 1px solid var(--border); border-radius: var(--radius-lg);
  background: linear-gradient(165deg, color-mix(in srgb, var(--fg) 3%, var(--bg-elevated)), var(--bg-elevated) 60%);
  overflow: hidden; display: flex; flex-direction: column; min-height: 0; }
.chat-head2 { display: flex; align-items: center; gap: 12px; padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  background: color-mix(in srgb, var(--brand) 6%, transparent); }
.chat-head2 .ch-ava { width: 38px; height: 38px; border-radius: 12px; background: var(--grad);
  display: flex; align-items: center; justify-content: center; box-shadow: var(--glow-sm); flex-shrink: 0; }
.chat-head2 .ch-ava svg { width: 19px; height: 19px; stroke: #fff; }
.chat-head2 b { font-family: var(--display); font-size: 15px; display: block; }
.chat-head2 .on-row { font-size: 11px; color: var(--fg-muted); display: flex; align-items: center; gap: 6px;
  font-family: var(--mono); margin-top: 1px; }
.on-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--success);
  box-shadow: 0 0 0 0 rgba(52,211,153,.5); animation: ping 1.8s infinite; }

/* ═══ EMPTY STATE PRO ═══════════════════════════════════════════════ */
.empty-x { text-align: center; padding: 56px 24px; border-radius: var(--radius-xl);
  border: 1px dashed var(--border-strong); position: relative; overflow: hidden;
  background: var(--bg-glass); }
.empty-x::before { content: ''; position: absolute; inset: 0;
  background: radial-gradient(60% 80% at 50% 0%, color-mix(in srgb, var(--brand) 9%, transparent), transparent 70%); }
.ex-ic { width: 74px; height: 74px; margin: 0 auto 18px; border-radius: 22px; display: flex;
  align-items: center; justify-content: center; background: var(--grad-soft);
  border: 1px solid var(--border-strong); position: relative; }
.ex-ic svg { width: 34px; height: 34px; stroke: var(--brand); }
.empty-x h3 { font-family: var(--display); font-size: 18px; font-weight: 700; margin: 0 0 6px; position: relative; }
.empty-x p { color: var(--fg-muted); font-size: 13.5px; margin: 0 0 20px; position: relative; }
.empty-x .btn { position: relative; }

/* ═══ SKELETON ══════════════════════════════════════════════════════ */
.skel2 { border-radius: 12px; background: linear-gradient(90deg, var(--bg-subtle) 25%,
  var(--border) 50%, var(--bg-subtle) 75%); background-size: 200% 100%;
  animation: skel2 1.4s infinite; }
@keyframes skel2 { to { background-position: -200% 0; } }

/* ═══ PWA INSTALL BANNER ════════════════════════════════════════════ */
.pwa-banner { position: fixed; left: 50%; transform: translate(-50%, 140%); bottom: 18px; z-index: 72;
  display: flex; align-items: center; gap: 12px; padding: 12px 14px; border-radius: 16px;
  border: 1px solid var(--border-strong); max-width: min(420px, calc(100vw - 32px));
  background: color-mix(in srgb, var(--bg-elevated) 90%, transparent);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  box-shadow: var(--shadow-lg); transition: transform .5s cubic-bezier(.16,1,.3,1); }
.pwa-banner.show { transform: translate(-50%, 0); }
.pwa-banner img { width: 40px; height: 40px; border-radius: 11px; }
.pwa-banner b { display: block; font-size: 13px; }
.pwa-banner small { font-size: 11.5px; color: var(--fg-muted); }
.pwa-x { margin-left: 4px; width: 30px; height: 30px; border-radius: 9px; border: 1px solid var(--border-strong);
  background: transparent; color: var(--fg-muted); font-size: 14px; flex-shrink: 0; }
@media(max-width:600px){ .pwa-banner { bottom: 84px; } }

/* ═══ BREADCRUMB ════════════════════════════════════════════════════ */
.crumbs { display: inline-flex; align-items: center; gap: 8px; font-size: 12.5px; color: var(--fg-faint);
  font-family: var(--mono); margin-bottom: 18px; }
.crumbs a { color: var(--fg-muted); transition: color .15s; }
.crumbs a:hover { color: var(--brand); }
.crumbs svg { width: 12px; height: 12px; opacity: .6; }

/* ═══ RELATED ═══════════════════════════════════════════════════════ */
.rel-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 12px; }

/* ═══════════════════════════════════════════════════════════════════
   AURORA LANDING v3 — hero visual, bento, steps, showcase, t-marquee
   ═══════════════════════════════════════════════════════════════════ */

/* ── HERO SPLIT ── */
.hero2 { padding: 72px 0 56px; position: relative; overflow-x: clip; }
.hero2-grid { display: grid; grid-template-columns: 1.02fr .98fr; gap: 48px; align-items: center; }
.hero2 h1 { font-family: var(--display); font-size: clamp(38px, 5.4vw, 62px); line-height: 1.03;
  letter-spacing: -.045em; font-weight: 700; margin: 18px 0 20px; }
.hero2-sub { font-size: clamp(15px, 1.6vw, 17.5px); color: var(--fg-muted); max-width: 50ch; margin: 0 0 30px; line-height: 1.65; }
.hero-avatars { display: flex; align-items: center; gap: 12px; margin-top: 26px; }
.hero-avatars .avs { display: flex; }
.hero-avatars .avs span { width: 34px; height: 34px; border-radius: 50%; border: 2px solid var(--bg);
  display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; color: #fff;
  margin-left: -9px; background: var(--grad); box-shadow: var(--glow-sm); }
.hero-avatars .avs span:first-child { margin-left: 0; }
.hero-avatars .avs span:nth-child(2) { background: linear-gradient(120deg,#22d3ee,#5e8bff); }
.hero-avatars .avs span:nth-child(3) { background: linear-gradient(120deg,#f0abfc,#7c5cff); }
.hero-avatars p { font-size: 12.5px; color: var(--fg-muted); line-height: 1.4; }
.hero-avatars p b { color: var(--fg); }

/* floating visual */
.hero-visual { position: relative; height: 480px; perspective: 1200px; }
.fv { position: absolute; border-radius: 18px; border: 1px solid var(--border-strong);
  background: linear-gradient(165deg, color-mix(in srgb, var(--fg) 5%, var(--bg-elevated)), var(--bg-elevated) 62%);
  box-shadow: var(--shadow-lg), var(--glow-md); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  animation: fv-float 7s ease-in-out infinite alternate; }
@keyframes fv-float { from { transform: translateY(-8px) rotate(var(--tilt, 0deg)); } to { transform: translateY(10px) rotate(var(--tilt, 0deg)); } }
.fv-product { width: 300px; left: 6%; top: 16%; --tilt: -5deg; z-index: 3; overflow: hidden; }
.fv-product .fv-img { aspect-ratio: 16/10; overflow: hidden; }
.fv-product .fv-img img { width: 100%; height: 100%; object-fit: cover; }
.fv-product .fv-body { padding: 14px 16px 16px; }
.fv-product .fv-cat { font-family: var(--mono); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; color: var(--brand); }
.fv-product .fv-name { font-family: var(--display); font-weight: 700; font-size: 15px; margin: 3px 0 8px; }
.fv-product .fv-row { display: flex; align-items: center; justify-content: space-between; }
.fv-product .fv-price { font-weight: 700; font-size: 15px; background: var(--grad);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.fv-product .fv-buy { font-size: 11px; font-weight: 700; color: #fff; background: var(--grad);
  border-radius: 8px; padding: 6px 12px; box-shadow: var(--glow-sm); }
.fv-notif { width: 250px; right: 0; top: 4%; --tilt: 4deg; z-index: 4; padding: 14px 16px;
  display: flex; gap: 12px; align-items: center; animation-delay: -2.4s; }
.fv-notif .fv-ic { width: 38px; height: 38px; border-radius: 12px; background: linear-gradient(135deg,#34d399,#10b981);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; box-shadow: 0 8px 24px -8px rgba(52,211,153,.6); }
.fv-notif .fv-ic svg { width: 19px; height: 19px; stroke: #fff; }
.fv-notif b { display: block; font-size: 12.5px; }
.fv-notif span { font-size: 11px; color: var(--fg-muted); }
.fv-stats { width: 230px; left: 0; bottom: 6%; --tilt: 3deg; z-index: 2; padding: 14px 18px; animation-delay: -4.8s; }
.fv-stats b { display: block; font-family: var(--display); font-size: 24px; font-weight: 700;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.fv-stats span { font-size: 11px; color: var(--fg-muted); font-family: var(--mono); letter-spacing: .06em; text-transform: uppercase; }
.fv-ring { position: absolute; border-radius: 50%; border: 1px solid var(--border); z-index: 0; }
.fv-ring.r1 { width: 380px; height: 380px; right: -40px; top: 40px; }
.fv-ring.r2 { width: 240px; height: 240px; left: -30px; bottom: 30px; border-style: dashed; opacity: .6; }
@media(max-width:980px){
  .hero2-grid { grid-template-columns: 1fr; gap: 20px; }
  .hero-visual { height: 380px; max-width: 560px; margin: 0 auto; width: 100%; }
  .fv-product { width: 250px; left: 0; }
  .fv-notif { width: 220px; right: -6px; }
  .fv-ring { display: none; }
}
@media(max-width:480px){ .hero-visual { height: 320px; } .fv-product { width: 210px; } .fv-notif { width: 190px; padding: 11px 12px; } }

/* ── PAYMENT STRIP ── */
.pay-strip { display: flex; align-items: center; justify-content: center; gap: 10px; flex-wrap: wrap;
  padding: 18px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.pay-strip .pay-lbl { font-family: var(--mono); font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--fg-faint); margin-right: 6px; }
.pay-badge { font-family: var(--mono); font-size: 11px; font-weight: 600; color: var(--fg-muted);
  border: 1px solid var(--border-strong); border-radius: 9px; padding: 6px 13px; background: var(--bg-glass);
  transition: all .2s; }
.pay-badge:hover { color: var(--fg); border-color: color-mix(in srgb, var(--brand) 55%, var(--border-strong)); box-shadow: var(--glow-sm); transform: translateY(-1px); }

/* ── BENTO ── */
.bento { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.bx { position: relative; overflow: hidden; border: 1px solid var(--border); border-radius: var(--radius-lg);
  background: linear-gradient(165deg, color-mix(in srgb, var(--fg) 3.5%, var(--bg-elevated)), var(--bg-elevated) 58%);
  padding: 24px; min-height: 190px; display: flex; flex-direction: column;
  transition: transform .3s cubic-bezier(.16,1,.3,1), border-color .3s, box-shadow .3s; }
.bx:hover { transform: translateY(-4px); border-color: color-mix(in srgb, var(--brand) 45%, var(--border)); box-shadow: var(--glow-md); }
.bx-large { grid-column: span 2; grid-row: span 2; }
.bx h3 { font-family: var(--display); font-size: 16.5px; font-weight: 700; letter-spacing: -.01em; margin: 14px 0 7px; position: relative; }
.bx p { font-size: 13px; color: var(--fg-muted); line-height: 1.6; margin: 0; position: relative; }
.bx .bx-tile { width: 42px; height: 42px; border-radius: 12px; background: var(--grad); display: flex;
  align-items: center; justify-content: center; box-shadow: var(--glow-sm); position: relative; }
.bx .bx-tile svg { width: 21px; height: 21px; stroke: #fff; }
.bx .bx-glow { position: absolute; inset: 0; background: radial-gradient(60% 55% at 80% 0%, color-mix(in srgb, var(--brand) 12%, transparent), transparent 70%); opacity: 0; transition: opacity .3s; }
.bx:hover .bx-glow { opacity: 1; }
/* mini visual: order flow */
.bx-flow { margin-top: auto; display: flex; align-items: center; gap: 8px; position: relative; flex-wrap: wrap; }
.bx-flow .fl-step { font-family: var(--mono); font-size: 10.5px; font-weight: 600; padding: 7px 12px;
  border-radius: 9px; border: 1px solid var(--border-strong); background: var(--bg-glass); color: var(--fg-muted); }
.bx-flow .fl-step.done { color: #fff; background: var(--grad); border-color: transparent; box-shadow: var(--glow-sm); }
.bx-flow .fl-arrow { color: var(--brand); font-size: 13px; font-weight: 700; }
/* mini visual: uptime bar */
.bx-uptime { margin-top: auto; }
.bx-uptime .up-bar { height: 7px; border-radius: 5px; background: var(--bg-subtle); overflow: hidden; }
.bx-uptime .up-bar i { display: block; height: 100%; width: 99%; background: var(--grad); border-radius: 5px; box-shadow: var(--glow-sm); }
.bx-uptime .up-lbl { display: flex; justify-content: space-between; font-family: var(--mono); font-size: 10px;
  color: var(--fg-faint); margin-top: 7px; }
/* mini visual: payments */
.bx-pays { margin-top: auto; display: flex; gap: 6px; flex-wrap: wrap; }
.bx-pays span { font-family: var(--mono); font-size: 10px; font-weight: 600; padding: 5px 10px; border-radius: 8px;
  border: 1px solid var(--border-strong); color: var(--fg-muted); background: var(--bg-glass); }
@media(max-width:900px){ .bento { grid-template-columns: 1fr 1fr; } .bx-large { grid-column: span 2; } }
@media(max-width:600px){ .bento { grid-template-columns: 1fr; } .bx-large { grid-column: span 1; } .bx { min-height: 0; } }

/* ── SHOWCASE PRODUK ── */
.show-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 16px; }
.show-card { position: relative; border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden;
  background: linear-gradient(165deg, color-mix(in srgb, var(--fg) 3.5%, var(--bg-elevated)), var(--bg-elevated) 58%);
  transition: transform .3s cubic-bezier(.16,1,.3,1), border-color .3s, box-shadow .3s; display: flex; flex-direction: column; }
.show-card:hover { transform: translateY(-6px); border-color: color-mix(in srgb, var(--brand) 50%, var(--border)); box-shadow: var(--glow-md), var(--shadow); }
.show-card .sh-media { aspect-ratio: 16/10; overflow: hidden; position: relative; }
.show-card .sh-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s cubic-bezier(.16,1,.3,1); }
.show-card:hover .sh-media img { transform: scale(1.06); }
.show-card .sh-media .sh-tag { position: absolute; top: 12px; left: 12px; }
.show-card .sh-body { padding: 15px 16px 17px; display: flex; flex-direction: column; gap: 4px; flex: 1; }
.show-card .sh-cat { font-family: var(--mono); font-size: 10px; letter-spacing: .09em; text-transform: uppercase; color: var(--brand); }
.show-card .sh-name { font-family: var(--display); font-size: 15.5px; font-weight: 700; letter-spacing: -.01em; }
.show-card .sh-foot { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: 12px; }
.show-card .sh-price { font-weight: 700; font-size: 15.5px; background: var(--grad);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.show-card .sh-go { width: 34px; height: 34px; border-radius: 10px; background: var(--grad-soft);
  border: 1px solid var(--border-strong); display: flex; align-items: center; justify-content: center;
  color: var(--brand); transition: all .2s; }
.show-card:hover .sh-go { background: var(--grad); color: #fff; border-color: transparent; box-shadow: var(--glow-sm); transform: rotate(-45deg); }
.show-card .sh-go svg { width: 15px; height: 15px; }

/* ── STEPS ── */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; position: relative; }
.steps::before { content: ''; position: absolute; top: 27px; left: 12%; right: 12%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--brand), var(--brand-2), transparent); opacity: .35; }
.step { text-align: center; padding: 0 10px; position: relative; }
.step-num { width: 56px; height: 56px; margin: 0 auto 18px; border-radius: 18px; display: flex; align-items: center;
  justify-content: center; font-family: var(--display); font-size: 21px; font-weight: 700; color: #fff;
  background: var(--grad); box-shadow: var(--glow-md); position: relative; z-index: 1; }
.step h3 { font-family: var(--display); font-size: 16px; font-weight: 700; margin: 0 0 7px; }
.step p { font-size: 13px; color: var(--fg-muted); line-height: 1.6; margin: 0; max-width: 30ch; margin-inline: auto; }
@media(max-width:800px){ .steps { grid-template-columns: 1fr; gap: 30px; } .steps::before { display: none; } }

/* ── TESTIMONI MARQUEE ── */
.tm-row { overflow: hidden; position: relative; padding: 4px 0;
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent); }
.tm-track { display: flex; gap: 14px; width: max-content; animation: marquee 42s linear infinite; }
.tm-row:hover .tm-track { animation-play-state: paused; }
.tm-card { width: 340px; flex-shrink: 0; padding: 20px 22px; border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: linear-gradient(165deg, color-mix(in srgb, var(--fg) 3.5%, var(--bg-elevated)), var(--bg-elevated) 58%);
  transition: border-color .25s, box-shadow .25s; }
.tm-card:hover { border-color: color-mix(in srgb, var(--brand) 45%, var(--border)); box-shadow: var(--glow-sm); }
.tm-card .stars { color: var(--warn); font-size: 11.5px; letter-spacing: 2px; margin-bottom: 9px; }
.tm-card p { font-size: 13px; color: var(--fg-muted); line-height: 1.65; margin: 0 0 13px; }
.tm-card .tm-who { display: flex; align-items: center; gap: 10px; }
.tm-card .tm-ava { width: 32px; height: 32px; border-radius: 50%; background: var(--grad); color: #fff;
  display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; }
.tm-card .tm-who b { display: block; font-size: 12.5px; }
.tm-card .tm-who span { font-size: 10.5px; color: var(--fg-faint); font-family: var(--mono); }
@media(max-width:600px){ .tm-card { width: 280px; } }
