: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: #1a1a1a url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14'%3E%3Crect width='14' height='14' rx='1.6' fill='white'/%3E%3Crect x='5' y='5' width='4' height='4' rx='0.9' fill='%231a1a1a'/%3E%3C/svg%3E") center/14px 14px no-repeat;
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.1);
  transform: rotate(12deg);
  flex-shrink: 0;
}
.rbx-icon.sm { width: 22px; height: 22px; background-size: 12px 12px; border-radius: 6px; }
.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); }

/* ═══ 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; gap: 12px; margin-bottom: 36px; }
.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: 520px; perspective: 1600px; }

/* 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: 480px;
  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);
}

.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 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-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-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: 100px 0; }
.sec-head { text-align: center; margin-bottom: 64px; }
.sec-head .sec-sub { margin: 16px auto 0; }

.bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
}
.b1 { grid-column: span 8; }
.b2 { grid-column: span 4; }
.b3 { grid-column: span 4; }
.b4 { grid-column: span 8; }
.b5 { grid-column: span 6; }
.b6 { grid-column: span 6; }
.bcard {
  padding: 32px 28px;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}
.bcard-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--gb);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.bcard-icon svg { opacity: 0.7; }
.bc-num {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--t3);
  letter-spacing: 1px;
  display: block;
  margin-bottom: 8px;
}
.bcard h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; letter-spacing: -0.3px; }
.bcard p { font-size: 14px; color: var(--t2); line-height: 1.65; }

.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.steps-list { display: grid; gap: 20px; margin-top: 28px; }
.step-row {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 16px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--gb);
}
.step-row span {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--t3);
  padding-top: 4px;
}
.step-row strong { display: block; margin-bottom: 4px; font-size: 15px; }
.step-row p { font-size: 14px; color: var(--t2); line-height: 1.6; }

.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: 120px; }
.cta .sec-sub { margin: 0 auto 28px; text-align: center; }
.cta-note { display: block; margin-top: 14px; color: var(--t3); font-size: 11px; }

.foot {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--gb);
  padding: 40px 0 60px;
}
.foot-in { display: grid; gap: 12px; }
.foot p { color: var(--t2); font-size: 13px; }
.foot-links { display: flex; flex-wrap: wrap; gap: 18px; font-size: 13px; color: var(--t2); }
.foot-links a:hover { color: var(--t); }

@media (max-width: 980px) {
  .hero-layout, .split-grid { grid-template-columns: 1fr; }
  .hero-visual { min-height: auto; margin-top: 20px; }
  .b1, .b2, .b3, .b4, .b5, .b6 { grid-column: span 12; }
  .nav-links { display: none; }
  .hero-float-tag { display: none; }
  .hero-tilt-wrap { transform: none !important; }
  .tilt-3d { transform: none !important; }
}

@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; }
}

@media (max-width: 640px) {
  .wrap { padding: 0 22px; }
  .ms-inner { flex-wrap: wrap; }
  .ms-item { min-width: 50%; border-bottom: 1px solid var(--gb); }
  .ms-item:nth-child(2) { border-right: none; }
  .ms-item:nth-last-child(-n+2) { border-bottom: none; }
  .hero-stats { gap: 16px; }
  .h-stat-div { display: none; }
}
