:root {
  --bg: #06060a;
  --s1: #0d0d12;
  --gl: rgba(255, 255, 255, 0.035);
  --glh: rgba(255, 255, 255, 0.055);
  --gb: rgba(255, 255, 255, 0.07);
  --gbm: rgba(255, 255, 255, 0.14);
  --t: #fff;
  --t2: rgba(255, 255, 255, 0.52);
  --t3: rgba(255, 255, 255, 0.22);
  --r: 12px;
  --rr: 8px;
  --font: "Bricolage Grotesque", system-ui, sans-serif;
  --mono: "JetBrains Mono", monospace;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; -webkit-font-smoothing: antialiased; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--t);
  overflow-x: hidden;
  min-height: 100vh;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
.wrap { max-width: 1200px; margin: 0 auto; padding: 0 48px; }
.narrow { max-width: 640px; margin: 0 auto; }

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.028;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

#glow {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  transition: opacity 0.4s;
  background: radial-gradient(circle 500px at var(--cx, -999px) var(--cy, -999px), rgba(255, 255, 255, 0.045) 0%, transparent 65%);
}

.glass {
  background: var(--gl);
  border: 1px solid var(--gb);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-radius: var(--r);
  position: relative;
  overflow: hidden;
}
.glass::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255,255,255,0.07) 0%, transparent 60%, rgba(255,255,255,0.02) 100%);
  pointer-events: none;
}
.glass-hover { transition: background 0.25s, border-color 0.25s, transform 0.25s, box-shadow 0.25s; }
.glass-hover:hover {
  background: var(--glh);
  border-color: var(--gbm);
  transform: translateY(-3px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.06);
}

.btn-w {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  background: var(--t);
  color: var(--bg);
  font-size: 13px;
  font-weight: 700;
  border-radius: var(--rr);
  border: 1px solid var(--t);
  transition: all 0.22s;
  white-space: nowrap;
}
.btn-w:hover {
  background: rgba(255,255,255,0.9);
  transform: translateY(-1px);
  box-shadow: 0 8px 30px rgba(255,255,255,0.12);
}
.btn-g {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  font-weight: 600;
  border-radius: var(--rr);
  border: 1px solid var(--gb);
  transition: all 0.22s;
}
.btn-g:hover { background: rgba(255,255,255,0.1); border-color: var(--gbm); }
.btn-sm { padding: 9px 18px; font-size: 12px; border-radius: 6px; }
.btn-lg { padding: 16px 32px; font-size: 14px; }
.btn-block { width: 100%; justify-content: center; }

.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 13px;
  border: 1px solid var(--gb);
  border-radius: 99px;
  font-size: 11px;
  font-weight: 500;
  color: var(--t2);
  background: rgba(255,255,255,0.03);
}
.pill .dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  animation: blink 2.5s ease-in-out infinite;
}
@keyframes blink { 0%, 100% { opacity: 0.4; } 50% { opacity: 1; } }

.lbl {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--t3);
  letter-spacing: 2.2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.h2 {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.08;
  margin-bottom: 16px;
}
.h2 span { color: var(--t2); font-weight: 500; }
.sec-sub { font-size: 15px; color: var(--t2); line-height: 1.78; max-width: 520px; }

.rv {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.rv.d1 { transition-delay: 0.1s; }
.rv.d2 { transition-delay: 0.2s; }
.rv.d3 { transition-delay: 0.3s; }
.rv.d4 { transition-delay: 0.4s; }
.rv.in { opacity: 1; transform: none; }

/* ═══ NAV (from reference — pill + scroll) ═══ */
#nav {
  position: fixed;
  top: 14px;
  left: 0;
  right: 0;
  z-index: 400;
  display: flex;
  justify-content: center;
  padding: 0 22px;
  pointer-events: none;
  transition: top 0.35s;
}
#nav.scrolled { top: 10px; }

.nav-in {
  pointer-events: auto;
  width: 100%;
  max-width: 1120px;
  height: 44px;
  padding: 5px 8px 5px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 999px;
  background: rgba(10, 10, 10, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.55);
  transition: background 0.35s, border-color 0.35s, box-shadow 0.35s, transform 0.35s;
}
#nav.scrolled .nav-in {
  background: rgba(6, 6, 10, 0.92);
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: 0 12px 50px rgba(0, 0, 0, 0.65);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-right: auto;
}
.rbx-icon {
  width: 26px;
  height: 26px;
  border-radius: 7px;
  background: #232527 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14'%3E%3Cg transform='translate(7 7) rotate(12) translate(-7 -7)'%3E%3Crect x='2.2' y='2.2' width='9.6' height='9.6' rx='2' fill='white'/%3E%3Ctext x='7' y='9.2' text-anchor='middle' font-family='Segoe UI,Arial' font-weight='700' font-size='5.2' fill='%23111'%3EM%3C/text%3E%3C/g%3E%3C/svg%3E") center/15px 15px no-repeat;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
  transform: rotate(0deg);
  flex-shrink: 0;
}
.rbx-icon.sm { width: 22px; height: 22px; background-size: 12px 12px; border-radius: 6px; }

/* Roblox mark — white tile + black center (Game Copier, fresher) */
.rbx-mark {
  width: 26px;
  height: 26px;
  border-radius: 7px;
  background: #232527 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14'%3E%3Cg transform='translate(7 7) rotate(-12) translate(-7 -7)'%3E%3Crect x='3' y='3' width='8' height='8' rx='1.2' fill='white'/%3E%3Crect x='5.25' y='5.25' width='3.5' height='3.5' rx='0.6' fill='%23111'/%3E%3C/g%3E%3C/svg%3E") center/15px 15px no-repeat;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
  flex-shrink: 0;
}
.rbx-mark.sm { width: 22px; height: 22px; background-size: 12px 12px; border-radius: 6px; }
.rbx-mark.lg { width: 36px; height: 36px; background-size: 20px 20px; border-radius: 10px; }

/* Tool avatars — hub, picker, mocks */
.tool-ico {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  flex-shrink: 0;
  display: block;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
}
.tool-ico-mr {
  background: #232527 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14'%3E%3Cg transform='translate(7 7) rotate(12) translate(-7 -7)'%3E%3Crect x='2.2' y='2.2' width='9.6' height='9.6' rx='2' fill='white'/%3E%3Ctext x='7' y='9.2' text-anchor='middle' font-family='Segoe UI,Arial' font-weight='700' font-size='5.2' fill='%23111'%3EM%3C/text%3E%3C/g%3E%3C/svg%3E") center/18px 18px no-repeat;
}
.tool-ico-gc {
  background: #232527 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14'%3E%3Cg transform='translate(7 7) rotate(-12) translate(-7 -7)'%3E%3Crect x='3' y='3' width='8' height='8' rx='1.2' fill='white'/%3E%3Crect x='5.25' y='5.25' width='3.5' height='3.5' rx='0.6' fill='%23111'/%3E%3C/g%3E%3C/svg%3E") center/18px 18px no-repeat;
}
.tool-ico-rs {
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, rgba(139,92,246,0.22), rgba(34,211,238,0.1));
  border-color: rgba(139,92,246,0.28);
  color: #fff;
}
.tool-ico-rs svg { width: 16px; height: 16px; display: block; }

.mock-hub-mark {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: #232527 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14'%3E%3Cg transform='translate(7 7) rotate(12) translate(-7 -7)'%3E%3Crect x='2.2' y='2.2' width='9.6' height='9.6' rx='2' fill='white'/%3E%3Ctext x='7' y='9.2' text-anchor='middle' font-family='Segoe UI,Arial' font-weight='700' font-size='5.2' fill='%23111'%3EM%3C/text%3E%3C/g%3E%3C/svg%3E") center/16px 16px no-repeat;
  border: 1px solid rgba(255,255,255,0.12);
  flex-shrink: 0;
}

.picker-ico .tool-ico { width: 100%; height: 100%; border-radius: 8px; }

.nav-brand-t { font-weight: 700; font-size: 14px; letter-spacing: -0.2px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-right: 16px;
}
.nav-links a {
  padding: 7px 13px;
  font-size: 13px;
  color: var(--t2);
  border-radius: 6px;
  transition: color 0.18s, background 0.18s;
}
.nav-links a:hover { color: var(--t); background: rgba(255,255,255,0.06); }
.nav-links a.active { color: var(--t); background: rgba(255,255,255,0.08); }

/* ═══ HERO ═══ */
.hero {
  position: relative;
  z-index: 2;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding: 100px 0 60px;
  overflow: hidden;
}
.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 0%, black 40%, transparent 100%);
}
.hero-orb {
  position: absolute;
  width: 700px;
  height: 700px;
  top: 20%;
  right: -100px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.04) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero h1 {
  font-size: clamp(42px, 5.5vw, 72px);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -2.5px;
  margin-bottom: 22px;
}
.hero h1 .dim { color: var(--t2); font-weight: 400; }
.hero h1 .outline {
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.28);
  font-weight: 800;
}
.hero-sub {
  font-size: 15px;
  color: var(--t2);
  line-height: 1.78;
  max-width: 480px;
  margin-bottom: 28px;
}
.hero-acts { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; margin-bottom: 20px; }
.hero-acts .btn-runaway-wrap {
  min-width: 0;
  min-height: 0;
  padding: 8px;
  margin: -8px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}
.trust-chip {
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  color: var(--t2);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--gb);
}

.hero-stats { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.h-stat-v { font-size: 22px; font-weight: 800; letter-spacing: -1px; display: block; }
.h-stat-l {
  font-family: var(--mono);
  font-size: 9px;
  color: var(--t3);
  letter-spacing: 1.6px;
  text-transform: uppercase;
}
.h-stat-div { width: 1px; height: 32px; background: var(--gb); }

.hero-visual { position: relative; min-height: 0; perspective: 1600px; }

.mock-float {
  animation: mockBob 6s ease-in-out infinite;
}
@keyframes mockBob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.hero-tilt-wrap.is-tilting .mock-float {
  animation: none;
}

/* Extension popup mock (matches real popup) */
.mock-popup {
  box-sizing: border-box;
  overflow: hidden;
  width: 100%;
  max-width: 380px;
  margin-left: auto;
  padding: 14px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(165deg, rgba(28, 28, 32, 0.95), rgba(12, 12, 14, 0.98));
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.65), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  display: flex;
  flex-direction: column;
  gap: 12px;
  user-select: none;
}
.mock-add:hover,
.mock-launch-btn:hover,
.mock-foot-btn:hover,
.mock-acc-ib:hover {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
}
.mock-popup svg { display: block; flex-shrink: 0; }
.mock-mark svg { width: 32px !important; height: 32px !important; }
.mock-add svg { width: 11px !important; height: 11px !important; }
.mock-empty-icon svg { width: 22px !important; height: 22px !important; }
.mock-launch-btn svg,
.mock-foot-primary svg { width: 10px !important; height: 10px !important; }
.mock-head { display: flex; align-items: center; gap: 12px; }
.mock-mark { flex-shrink: 0; width: 36px; height: 36px; display: grid; place-items: center; }
.mock-mark svg { display: block; border-radius: 4px; }
.mock-brand { flex: 1; min-width: 0; }
.mock-title { font-size: 15px; font-weight: 700; letter-spacing: -0.35px; line-height: 1.15; }
.mock-tag {
  margin-top: 3px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.55px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.58);
}
.mock-add {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 7px 11px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04));
  color: #fff;
  font-size: 11.5px;
  font-weight: 600;
  cursor: pointer;
}
.mock-add svg { width: 11px; height: 11px; }
.mock-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 2px 2px 0;
}
.mock-status-pair {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 2px 6px;
  font-size: 11px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.68);
}
.mock-dot { width: 6px; height: 6px; border-radius: 50%; display: inline-block; margin-right: 2px; }
.mock-dot-on { background: #fafafa; box-shadow: 0 0 6px rgba(255, 255, 255, 0.35); }
.mock-dot-off { background: rgba(255, 255, 255, 0.22); }
.mock-muted { color: rgba(255, 255, 255, 0.45); }
.mock-sep { width: 1px; height: 12px; background: rgba(255, 255, 255, 0.1); margin: 0 4px; }
.mock-pill {
  font-size: 10px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.62);
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.06);
  flex-shrink: 0;
}
.mock-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.65px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 2px;
}
.mock-count {
  min-width: 18px;
  padding: 1px 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  font-family: var(--mono);
  font-size: 9.5px;
  font-weight: 600;
  text-transform: none;
  color: rgba(255, 255, 255, 0.68);
}
.mock-empty {
  text-align: center;
  padding: 20px 10px 16px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(0, 0, 0, 0.2);
}
.mock-empty-icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 12px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.4);
}
.mock-empty-icon svg { width: 22px; height: 22px; }
.mock-empty-title { font-size: 13px; font-weight: 600; color: rgba(255, 255, 255, 0.78); margin-bottom: 6px; }
.mock-empty-text {
  font-size: 11.5px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.42);
  max-width: 280px;
  margin: 0 auto;
}
.mock-empty-text strong { color: rgba(255, 255, 255, 0.65); font-weight: 600; }
.mock-launch-all {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}
.mock-launch-title { font-size: 13px; font-weight: 700; letter-spacing: -0.2px; }
.mock-launch-sub { font-size: 10.5px; color: rgba(255, 255, 255, 0.42); margin-top: 4px; line-height: 1.45; max-width: 200px; }
.mock-launch-btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.35);
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
}
.mock-launch-btn svg { width: 10px; height: 10px; }
.mock-foot {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.mock-foot-btn {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.55);
  font-size: 11px;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
}
.mock-foot-primary {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.3);
}
.mock-foot-primary svg { width: 10px; height: 10px; }
.mock-foot-btn:disabled, .mock-launch-btn:disabled { opacity: 0.85; cursor: default; }
.mock-launch-btn--on {
  color: rgba(255, 255, 255, 0.88);
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.12);
}
.mock-foot-primary--on {
  color: rgba(255, 255, 255, 0.88);
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
}

/* Account rows (matches extension acc-card) */
.mock-acc-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-height: 220px;
  overflow: hidden;
}
.mock-acc-list--stage { max-height: 260px; }
.mock-acc-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 10px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(0, 0, 0, 0.5));
  position: relative;
  transition: border-color 0.28s, background 0.28s, box-shadow 0.28s, transform 0.28s;
}
.mock-acc-card.is-signed-in {
  border-color: rgba(255, 255, 255, 0.22);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(0, 0, 0, 0.45));
}
.mock-acc-card.is-selected {
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.1), 0 0 24px rgba(255, 255, 255, 0.05);
}
.mock-acc-card.is-signed-in::before {
  content: "";
  position: absolute;
  left: -1px;
  top: 8px;
  bottom: 8px;
  width: 3px;
  border-radius: 0 3px 3px 0;
  background: #fafafa;
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.35);
  transition: opacity 0.28s;
}
.mock-acc-ava {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  background: hsl(var(--h, 180) 28% 18%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
}
.mock-acc-mid { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 4px; }
.mock-acc-name-row { display: flex; align-items: center; gap: 8px; min-width: 0; }
.mock-acc-name {
  flex: 1;
  min-width: 0;
  font-size: 12.5px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mock-acc-pres {
  flex-shrink: 0;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.55px;
  text-transform: uppercase;
  padding: 3px 7px;
  border-radius: 6px;
}
.mock-acc-pres.on {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
}
.mock-acc-pres.off {
  color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.mock-acc-hint {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.38);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.25s;
}
.mock-acc-card.is-signed-in .mock-acc-hint { color: rgba(255, 255, 255, 0.52); }
.mock-acc-actions { display: flex; align-items: center; gap: 4px; flex-shrink: 0; }
.mock-acc-ib {
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.55);
  cursor: pointer;
}
.mock-acc-ib svg { width: 12px !important; height: 12px !important; }
.mock-acc-ib.pressed {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
}

/* Panel section — full popup showcase */
.panel-sec { padding-bottom: 88px; }

#install { padding-bottom: 48px; }

/* Features — numbered list section */
.features-sec {
  padding-top: 48px;
  padding-bottom: 72px;
}
.feat-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}
.feat-h2 {
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 800;
  letter-spacing: -2px;
  line-height: 1.02;
  margin-bottom: 18px;
}
.feat-h2 span { color: var(--t2); font-weight: 500; }
.feat-sub {
  font-size: 15px;
  color: var(--t2);
  line-height: 1.75;
  margin: 0 auto;
  max-width: 520px;
}
.btn-runaway-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  min-height: 56px;
  padding: 20px;
}
.btn-runaway-wrap--block {
  display: flex;
  width: 100%;
  min-width: 0;
  padding: 24px 16px;
}
.btn-runaway-wrap--block .btn-runaway {
  width: 100%;
}
.btn-runaway {
  position: relative;
  z-index: 1;
  will-change: transform;
  transition: transform 0.12s ease-out, box-shadow 0.22s;
}
.btn-runaway-wrap:hover .btn-runaway {
  box-shadow: 0 12px 40px rgba(255, 255, 255, 0.14);
}
.feat-panel {
  max-width: 960px;
  margin: 0 auto;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.025);
  overflow: hidden;
}
.feat-row {
  display: grid;
  grid-template-columns: minmax(200px, 0.9fr) 1.1fr;
  gap: 24px 40px;
  align-items: start;
  padding: 22px 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.feat-row--last { border-bottom: none; }
.feat-row-left {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
}
.feat-num {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.28);
  letter-spacing: 0.5px;
  flex-shrink: 0;
}
.feat-title {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.25px;
  margin: 0;
  line-height: 1.3;
}
.feat-desc {
  margin: 0;
  font-size: 13px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.42);
  text-align: right;
}
@media (max-width: 720px) {
  .feat-row {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 18px 20px;
  }
  .feat-desc { text-align: left; }
}

/* Install + FAQ split */
.install-faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
  max-width: 1040px;
  margin: 0 auto;
}
.install-copy { text-align: left; }
.install-h2 {
  font-size: clamp(36px, 4.5vw, 56px);
  letter-spacing: -2px;
  margin-bottom: 18px;
  line-height: 1.02;
}
.install-h2 span {
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.35);
  font-weight: 800;
}
.install-lead {
  font-size: 15px;
  color: var(--t2);
  line-height: 1.75;
  max-width: 420px;
  margin-bottom: 12px;
}
.install-lead strong { color: var(--t); font-weight: 600; }
.install-meta {
  margin: 14px 0 0;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--t3);
  letter-spacing: 0.5px;
}
.install-meta--top { margin: 0 0 8px; }
.install-steps {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--gb);
}
.install-steps-lbl {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--t3);
  letter-spacing: 1.8px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.install-steps-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}
.install-steps-list li {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 14px;
  align-items: start;
  font-size: 13px;
  color: var(--t2);
  line-height: 1.55;
}
.install-step-n {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--gb);
  color: rgba(255, 255, 255, 0.75);
}
.install-steps-list strong { color: var(--t); font-weight: 600; }
.install-steps-list code {
  font-family: var(--mono);
  font-size: 11px;
  color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.06);
  padding: 1px 5px;
  border-radius: 4px;
}

.faq-col { min-width: 0; }
.faq-list--wide { max-width: none; gap: 10px; }
.faq-chev {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--gb);
  background: rgba(255, 255, 255, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--t2);
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), background 0.2s;
}
.faq-item.open .faq-chev {
  transform: rotate(180deg);
  background: rgba(255, 255, 255, 0.08);
}

.install-bottom {
  text-align: center;
  padding-bottom: 100px;
  padding-top: 0;
}
.install-bottom-hint {
  margin: 14px 0 0;
  font-size: 13px;
  color: var(--t3);
}

.hero-tilt-wrap.is-tilting .mock-popup {
  box-shadow: 0 48px 110px rgba(0,0,0,0.78), 0 0 90px rgba(255,255,255,0.08), inset 0 1px 0 rgba(255,255,255,0.06);
}

/* 3D tilt panels */
.tilt-3d {
  transform-style: preserve-3d;
  will-change: transform;
}
.hero-tilt-wrap {
  position: relative;
  transform: perspective(1600px) rotateX(0deg) rotateY(0deg);
}
.hero-tilt-wrap.is-tilting .hero-card,
.dash-wrap.is-tilting .dash-panel,
.price-wrap.is-tilting .price-box {
  box-shadow: 0 48px 110px rgba(0,0,0,0.78), 0 0 90px rgba(255,255,255,0.08), inset 0 1px 0 rgba(255,255,255,0.06);
}

.hero-float-tag {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(180deg, rgba(28,28,28,0.94), rgba(14,14,14,0.94));
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(12px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.55);
  white-space: nowrap;
  pointer-events: none;
}
.hero-float-tag .ico {
  width: 18px;
  height: 18px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(255,255,255,0.14), rgba(255,255,255,0.04));
  border: 1px solid rgba(255,255,255,0.16);
}
.hero-float-tag .ico svg { width: 11px; height: 11px; }
.hero-float-tag.t1 { top: -14px; left: -22px; animation: tagBob 5s ease-in-out infinite; }
.hero-float-tag.t2 { top: 38%; right: -34px; animation: tagBob 6.5s ease-in-out infinite reverse; }
.hero-float-tag.t3 { bottom: 10%; left: -42px; animation: tagBob 7s ease-in-out infinite 0.4s; }
@keyframes tagBob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.hero-card {
  width: 100%;
  max-width: 380px;
  margin-left: auto;
  border-radius: 20px;
  overflow: hidden;
  transition: box-shadow 0.45s ease;
  background: linear-gradient(180deg, #141414 0%, #0a0a0a 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.65), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
.hero-card--popup { max-width: 340px; }

.hc-headline {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 18px 18px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.hc-brandmark {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.14);
  display: grid;
  place-items: center;
}
.hc-brandmark .rbx-icon { transform: rotate(12deg); box-shadow: 0 0 14px rgba(255, 255, 255, 0.15); }
.hc-brandname { font-size: 18px; font-weight: 900; letter-spacing: -0.04em; line-height: 1.1; }
.hc-brandmeta { font-size: 12px; color: rgba(255, 255, 255, 0.4); margin-top: 3px; }
.hc-add {
  padding: 9px 16px;
  border: none;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  color: #080808;
  background: #fff;
  white-space: nowrap;
}

.hc-stats-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.85);
}
.hc-stats-left { display: flex; gap: 18px; }
.hc-stats-left strong { font-weight: 800; color: #fff; }
.hc-stats-right { color: rgba(255, 255, 255, 0.35); font-size: 11px; text-transform: lowercase; }

.hc-launch {
  margin: 14px 14px 12px;
  padding: 16px 18px;
  border-radius: 14px;
  background: #222;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.hc-l-t { font-size: 17px; font-weight: 900; letter-spacing: -0.04em; line-height: 1.1; }
.hc-l-s { font-size: 12px; color: rgba(255, 255, 255, 0.55); margin-top: 6px; line-height: 1.45; max-width: 240px; }
.hc-l-btn {
  padding: 10px 20px;
  font-size: 12px;
  font-weight: 800;
  border-radius: 999px;
  background: #fff;
  color: #080808;
  white-space: nowrap;
  flex-shrink: 0;
}

.hc-roster-head {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px 10px;
}
.hc-roster-label {
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 1.8px;
  font-size: 10px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.35);
}
.hc-roster-count {
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  font-size: 10px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hc-row {
  margin: 0 12px;
  padding: 12px 14px;
  border-radius: 14px;
  background: #181818;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
}
.hc-row + .hc-row { margin-top: 8px; }
.hc-row-active {
  border-color: rgba(74, 222, 128, 0.45);
  box-shadow: 0 0 0 1px rgba(74, 222, 128, 0.15);
  background: rgba(74, 222, 128, 0.04);
}
.hc-user { display: flex; align-items: center; gap: 12px; min-width: 0; }
.hc-ava {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #fff;
  color: #111;
  font-size: 11px;
  font-weight: 900;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.hc-ava-live {
  box-shadow: 0 0 0 2px rgba(74, 222, 128, 0.35);
}
.hc-footnote {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 14px 12px 16px;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.hc-foot-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #86efac;
  flex-shrink: 0;
}
.hc-uname { font-size: 15px; font-weight: 900; letter-spacing: -0.04em; }
.hc-ualt { font-size: 10px; color: rgba(255, 255, 255, 0.4); margin-top: 2px; }
.hc-status {
  padding: 5px 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  white-space: nowrap;
}
.hc-status-plain { border-color: transparent; padding-inline: 2px; color: rgba(255, 255, 255, 0.45); font-weight: 600; }
.hc-play {
  width: 30px;
  height: 30px;
  border-radius: 9px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.03);
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.55);
}

.hc-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 14px 12px 16px;
  margin-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #0f0f0f;
}
.hc-mini-btn {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.65);
  background: transparent;
  text-align: center;
}
.hc-wide-btn {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: #080808;
  font-size: 12px;
  font-weight: 900;
  border: none;
}
.hc-wide-btn svg { opacity: 0.85; }

.dash-wrap, .price-wrap { transform-style: preserve-3d; }

/* ═══ METRICS ═══ */
.metrics-strip {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--gb);
  border-bottom: 1px solid var(--gb);
}
.ms-inner { display: flex; align-items: stretch; }
.ms-inner--two {
  max-width: 720px;
  margin: 0 auto;
}
.ms-inner--two .ms-item:last-child { border-right: none; }
.ms-item {
  flex: 1;
  padding: 28px 24px;
  text-align: center;
  border-right: 1px solid var(--gb);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.ms-item:last-child { border-right: none; }
.ms-val { font-size: 26px; font-weight: 800; letter-spacing: -1px; }
.ms-lbl {
  font-family: var(--mono);
  font-size: 9px;
  color: var(--t3);
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

/* ═══ SECTIONS ═══ */
.sec { position: relative; z-index: 2; padding: 72px 0; }
.sec-alt {
  background: linear-gradient(180deg, rgba(255,255,255,0.02) 0%, transparent 100%);
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.sec-head { text-align: center; margin-bottom: 56px; }
#install { padding-bottom: 100px; }
.sec-head .sec-sub { margin: 16px auto 0; }

.feat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  max-width: 880px;
  margin: 0 auto;
}
.fcard {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 22px 20px;
  border-radius: var(--r);
  border: 1px solid var(--gb);
  background: rgba(255, 255, 255, 0.03);
  transition: border-color 0.22s, background 0.22s, transform 0.22s;
}
.fcard:hover {
  border-color: var(--gbm);
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-2px);
}
.fcard-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--gb);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.fcard-icon svg { opacity: 0.75; }
.fcard-body h3 { font-size: 16px; font-weight: 700; margin-bottom: 6px; letter-spacing: -0.3px; }
.fcard-body p { font-size: 13px; color: var(--t2); line-height: 1.55; margin: 0; }

.setup-block {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: start;
}
.setup-steps { display: grid; gap: 14px; }
.setup-step {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  padding: 22px 24px;
  border-radius: var(--r);
  background: var(--gl);
  border: 1px solid var(--gb);
  align-items: start;
}
.setup-n {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 16px;
  font-weight: 800;
  background: rgba(255,255,255,0.08);
  border: 1px solid var(--gbm);
}
.setup-step strong { display: block; margin-bottom: 6px; font-size: 15px; }
.setup-step p { font-size: 14px; color: var(--t2); line-height: 1.65; margin: 0; }
.setup-step code {
  font-family: var(--mono);
  font-size: 12px;
  color: rgba(255,255,255,0.75);
  background: rgba(255,255,255,0.06);
  padding: 2px 6px;
  border-radius: 4px;
}

.dash-panel {
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(180deg, #141414 0%, #0a0a0a 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.65), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.dash-bar {
  padding: 14px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 12px;
}
.dash-dots { display: flex; gap: 6px; }
.dash-dots span { width: 10px; height: 10px; border-radius: 50%; display: block; }
.dash-dots span:nth-child(1) { background: #ff5f57; }
.dash-dots span:nth-child(2) { background: #febc2e; }
.dash-dots span:nth-child(3) { background: #28c840; }
.dash-title {
  font-family: var(--mono);
  font-size: 10px;
  color: rgba(255, 255, 255, 0.35);
  text-align: center;
  letter-spacing: 0.08em;
  margin-right: 46px;
}

.dash-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.dash-stat {
  padding: 18px 12px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}
.dash-stat:last-child { border-right: none; }
.dash-stat strong {
  display: block;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: 6px;
}
.dash-stat small {
  font-family: var(--mono);
  font-size: 9px;
  color: rgba(255, 255, 255, 0.32);
  text-transform: uppercase;
  letter-spacing: 1.4px;
}

.dash-table { padding: 4px 0 0; }
.dash-row {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 0.8fr;
  gap: 10px;
  padding: 12px 18px;
  align-items: center;
  font-size: 13px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.dash-row.head {
  font-family: var(--mono);
  font-size: 9px;
  color: rgba(255, 255, 255, 0.28);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  padding-top: 14px;
  padding-bottom: 10px;
}
.dash-user {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.dash-ava {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: inline-grid;
  place-items: center;
  font-style: normal;
  font-size: 11px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.85);
  flex-shrink: 0;
}
.dash-on { color: #86efac; font-size: 12px; font-weight: 600; }
.dash-off { color: rgba(255, 255, 255, 0.32); font-size: 12px; }
.dash-launch-btn {
  justify-self: end;
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.75);
}

.dash-foot {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #0f0f0f;
}
.dash-foot-ghost {
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.dash-foot-solid {
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 800;
  color: #080808;
  background: #fff;
  border: none;
}

.pricing { text-align: center; }
.price-box {
  padding: 28px;
  text-align: left;
  margin-top: 24px;
  position: relative;
  z-index: 1;
}
.price-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 20px;
}
.price-head span { color: var(--t2); font-size: 13px; }
.price-head strong { font-size: 48px; font-weight: 800; letter-spacing: -2px; line-height: 1; }
.price-box ul {
  list-style: none;
  margin: 0 0 22px;
  display: grid;
  gap: 10px;
  color: var(--t2);
  font-size: 14px;
}
.price-box ul li::before { content: "→ "; color: var(--t3); }
.price-box small { display: block; margin-top: 12px; text-align: center; color: var(--t3); font-size: 11px; }

.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.faq-item {
  border-radius: var(--rr);
  overflow: hidden;
  border: 1px solid var(--gb);
  background: var(--gl);
  transition: border-color 0.2s ease, background 0.2s ease;
}
.faq-item.open {
  border-color: rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.045);
}
.faq-q {
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  transition: background 0.15s ease;
  user-select: none;
}
.faq-q:hover { background: rgba(255,255,255,0.03); }
.faq-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid var(--gb);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), background 0.2s ease;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: rgba(255,255,255,0.06);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.32s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.22s ease;
}
.faq-item.open .faq-a {
  opacity: 1;
}
.faq-a-inner {
  padding: 0 22px 18px;
  font-size: 14px;
  color: var(--t2);
  line-height: 1.7;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.faq-a-inner p { padding-top: 14px; margin: 0; }

.cta { text-align: center; padding-bottom: 100px; }
.cta-box {
  padding: 40px 36px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.cta-title { margin-bottom: 10px; }
.cta-sub { margin: 0 auto 24px !important; text-align: center; max-width: 400px; }
.cta-steps {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
  text-align: left;
  display: grid;
  gap: 10px;
}
.cta-steps li {
  font-size: 13px;
  color: var(--t2);
  line-height: 1.5;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid var(--gb);
  background: rgba(255, 255, 255, 0.03);
}
.cta-steps strong { color: var(--t); font-weight: 600; }

/* ═══ FLOW (how it works) ═══ */
.flow-track { position: relative; max-width: 960px; margin: 0 auto; }
.flow-line {
  position: absolute;
  top: 36px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 2px;
  overflow: hidden;
  z-index: 0;
}
.flow-line-fill {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, rgba(255,255,255,0.15), rgba(255,255,255,0.55));
  border-radius: 2px;
  transition: width 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.flow-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  position: relative;
  z-index: 1;
}
.flow-step {
  padding: 24px 22px;
  border-radius: var(--r);
  text-align: left;
}
.flow-num {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  color: var(--t3);
  letter-spacing: 1.5px;
  margin-bottom: 14px;
}
.flow-body h3 {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.3px;
  margin-bottom: 8px;
}
.flow-body p {
  font-size: 13px;
  color: var(--t2);
  line-height: 1.6;
  margin: 0;
}

/* ═══ BENTO SHOWCASE ═══ */
.bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 14px;
  max-width: 960px;
  margin: 0 auto;
}
.bento-card {
  padding: 22px;
  border-radius: var(--r);
  position: relative;
  overflow: hidden;
}
.bento-roster {
  grid-column: 1 / 3;
  grid-row: 1 / 3;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.bento-marquee { grid-column: 1 / -1; padding: 18px 0 14px; }
.bento-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.bento-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: rgba(255, 255, 255, 0.7);
}
.bento-tag.live { color: #86efac; }
.pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #86efac;
  box-shadow: 0 0 10px rgba(134, 239, 172, 0.5);
  animation: pulseDot 2s ease-in-out infinite;
}
@keyframes pulseDot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.25); opacity: 0.65; }
}
.bento-meta {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--t3);
  letter-spacing: 1px;
}
.roster-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.roster-row {
  display: grid;
  grid-template-columns: 36px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(0, 0, 0, 0.22);
  transition: border-color 0.25s, background 0.25s, transform 0.25s;
}
.roster-row.active {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  transform: translateX(4px);
}
.roster-ava {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.9);
  background: hsl(var(--h, 180) 30% 22%);
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.roster-name { font-size: 13px; font-weight: 700; letter-spacing: -0.2px; }
.roster-st { font-size: 11px; font-weight: 600; }
.roster-st.online { color: #86efac; }
.roster-st.offline { color: var(--t3); }
.bento-caption {
  font-size: 12px;
  color: var(--t3);
  margin: 0;
  line-height: 1.5;
}
.bento-caption.center { text-align: center; padding: 0 22px; }
.bento-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--gb);
  color: rgba(255, 255, 255, 0.75);
}
.bento-launch h3, .bento-lock h3, .bento-browser h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.3px;
}
.bento-launch p, .bento-lock p, .bento-browser p {
  font-size: 13px;
  color: var(--t2);
  line-height: 1.55;
  margin: 0;
}
.bento-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
.bento-chips span {
  font-size: 10px;
  font-weight: 700;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--gb);
  background: rgba(255, 255, 255, 0.04);
  color: var(--t2);
}
.marquee-wrap {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 12%, black 88%, transparent);
  margin-bottom: 12px;
}
.marquee-track {
  display: flex;
  gap: 32px;
  width: max-content;
  animation: marquee 22s linear infinite;
}
.marquee-track span {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.2px;
  color: rgba(255, 255, 255, 0.45);
  white-space: nowrap;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ═══ INSTALL + TERMINAL ═══ */
.install-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
  max-width: 960px;
  margin: 0 auto;
}
.install-title { margin-bottom: 12px; }
.install-side .sec-sub { margin-bottom: 24px; max-width: none; }
.install-notes {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}
.install-note {
  font-size: 13px;
  color: var(--t2);
  line-height: 1.5;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid var(--gb);
  background: rgba(255, 255, 255, 0.03);
}
.install-note strong {
  display: block;
  font-size: 10px;
  font-family: var(--mono);
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--t3);
  margin-bottom: 4px;
  font-weight: 600;
}
.term-panel {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, #121216 0%, #0a0a0c 100%);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.55);
}
.term-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}
.term-dots { display: flex; gap: 6px; }
.term-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: block;
}
.term-dots span:nth-child(1) { background: #ff5f57; }
.term-dots span:nth-child(2) { background: #febc2e; }
.term-dots span:nth-child(3) { background: #28c840; }
.term-title {
  font-family: var(--mono);
  font-size: 10px;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.08em;
}
.term-body {
  margin: 0;
  padding: 20px 18px 24px;
  min-height: 240px;
  font-family: var(--mono);
  font-size: 12px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.72);
  white-space: pre-wrap;
  word-break: break-word;
}
.term-line { display: block; }
.term-line.ok { color: #86efac; }
.term-line.dim { color: rgba(255, 255, 255, 0.38); }
.term-cursor {
  display: inline-block;
  animation: termBlink 1s step-end infinite;
  color: rgba(255, 255, 255, 0.55);
}
@keyframes termBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.foot {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 56px 0 0;
  background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.015) 100%);
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.75fr 0.85fr 0.75fr;
  gap: 40px 32px;
  padding-bottom: 40px;
}
.foot-brand-col { min-width: 0; }
.foot-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.foot-logo {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background-size: 16px 16px;
  transform: rotate(12deg);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.06);
}
.foot-brand-name {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.25px;
}
.foot-desc {
  margin: 0 0 18px;
  max-width: 300px;
  font-size: 12.5px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.38);
  font-weight: 400;
}
.foot-actions {
  display: flex;
  gap: 8px;
}
.foot-act {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.45);
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.foot-act:hover {
  color: rgba(255, 255, 255, 0.85);
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
}
.foot-col-lbl {
  margin: 0 0 14px;
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.22);
}
.foot-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.foot-nav a {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.42);
  letter-spacing: -0.1px;
  transition: color 0.18s;
  width: fit-content;
}
.foot-nav a:hover { color: rgba(255, 255, 255, 0.78); }
.foot-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 16px 0 28px;
}
.foot-copy {
  margin: 0;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.18);
  letter-spacing: 0.2px;
}

/* Download modal */
.dl-modal {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.28s ease, visibility 0.28s;
}
.dl-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
body.dl-modal-open { overflow: hidden; }
.dl-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.dl-modal-card {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 420px;
  padding: 36px 32px 32px;
  border-radius: 20px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(165deg, #1c1c20 0%, #121214 45%, #0a0a0c 100%);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.75), 0 0 0 1px rgba(255, 255, 255, 0.03) inset;
  transform: scale(0.96) translateY(12px);
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}
.dl-modal.is-open .dl-modal-card {
  transform: scale(1) translateY(0);
}
.dl-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: color 0.18s, border-color 0.18s, background 0.18s;
}
.dl-modal-close:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
}
.dl-modal-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #2a2a2e 0%, #1a1a1e 55%, #121214 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.dl-modal-icon svg { display: block; border-radius: 10px; }
.dl-modal-title {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin: 0 0 12px;
}
.dl-modal-text {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.48);
  margin: 0 0 26px;
  max-width: 340px;
  margin-left: auto;
  margin-right: auto;
}
.dl-modal-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: stretch;
}
.btn-runaway-wrap--modal {
  min-width: 0;
  min-height: 0;
  padding: 14px;
  width: 100%;
}
.btn-modal-dl {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px 22px;
  border-radius: 12px;
  border: 1px solid #fff;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 700;
  color: var(--bg);
  text-decoration: none;
  background: #fff;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
  will-change: transform;
  transition: transform 0.12s ease-out, box-shadow 0.22s;
}
.btn-runaway-wrap--modal:hover .btn-modal-dl {
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.45);
}
.btn-modal-secondary {
  width: 100%;
  padding: 13px 22px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.78);
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.18s, border-color 0.18s;
}
.btn-modal-secondary:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.2);
}


@media (max-width: 980px) {
  .hero-layout, .setup-block, .install-grid, .install-faq-grid { grid-template-columns: 1fr; }
  .flow-steps { grid-template-columns: 1fr; }
  .flow-line { display: none; }
  .bento { grid-template-columns: 1fr; }
  .bento-roster { grid-column: 1; grid-row: auto; }
  .bento-marquee { grid-column: 1; }
  .feat-grid { grid-template-columns: 1fr; }
  .mock-popup { margin: 0 auto; max-width: 100%; }
  .hero-visual { min-height: auto; margin-top: 20px; }
  .nav-links { display: none; }
  .hero-float-tag { display: none; }
  .hero-tilt-wrap { transform: none !important; }
  .tilt-3d { transform: none !important; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 32px 24px; }
  .foot-brand-col { grid-column: 1 / -1; }
}

@media (prefers-reduced-motion: reduce) {
  .rv, .nav-in.rv { opacity: 1 !important; transform: none !important; transition: none !important; }
  .hero-tilt-wrap, .tilt-3d { transform: none !important; }
  .hero-float-tag { animation: none !important; }
  .btn-runaway { transform: none !important; transition: none !important; }
}

@media (max-width: 640px) {
  .wrap { padding: 0 22px; }
  .feat-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 16px; }
  .h-stat-div { display: none; }
  .cta-box { padding: 28px 22px; }
  .foot-grid { grid-template-columns: 1fr; }
}
