/* =====================================================
   ELROIHUB — REDESIGNED STYLESHEET
   Color: Dark navy + Emerald/Teal accent + Warm gold
   Fonts: Cabinet Grotesk (display) + DM Sans (body)
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cabinet+Grotesk:wght@400;500;700;800;900&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;1,9..40,300&display=swap');

/* ── TOKENS ── */
:root {
  /* Background layers */
  --bg0: #060a12;
  --bg1: #0b1120;
  --bg2: #0f1829;
  --bg3: #141f35;
  --bg4: #1a2840;

  /* Surface & borders */
  --surface: rgba(255,255,255,0.035);
  --border: rgba(255,255,255,0.07);
  --border-hover: rgba(0,212,170,0.35);

  /* Accent — Emerald teal */
  --accent1: #00d4aa;
  --accent2: #00b4e6;
  --accent-dim: rgba(0,212,170,0.12);
  --accent-glow: rgba(0,212,170,0.25);

  /* Gold accent for premium */
  --gold: #f5c842;
  --gold-dim: rgba(245,200,66,0.12);

  /* Text */
  --text: #eef2ff;
  --muted: #6b7fa8;
  --dim: #374565;

  /* Status */
  --green: #00d4aa;
  --red: #ff4d6d;
  --amber: #f5c842;
  --blue: #4fa3f7;

  /* Typography */
  --font-display: 'Cabinet Grotesk', sans-serif;
  --font-body: 'DM Sans', sans-serif;

  /* Spacing */
  --max: 1140px;
  --nav-h: 68px;
}

/* ── RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg0);
  color: var(--text);
  font-size: 15px;
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }
button { font-family: var(--font-body); }

/* ── CUSTOM CURSOR ── */
.cursor, .cursor-trail {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s;
}
.cursor {
  width: 8px; height: 8px;
  background: var(--accent1);
  transition: width .2s, height .2s, background .2s;
}
.cursor.hover {
  width: 36px; height: 36px;
  background: transparent;
  border: 1.5px solid var(--accent1);
}
.cursor-trail {
  width: 28px; height: 28px;
  border: 1px solid rgba(0,212,170,0.3);
  transition: left 0.08s, top 0.08s;
}
@media (hover: none) { .cursor, .cursor-trail { display: none; } }

/* ── KEYFRAMES ── */
@keyframes revealUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes float1 {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%       { transform: translateY(-18px) rotate(2deg); }
}
@keyframes float2 {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%       { transform: translateY(14px) rotate(-2deg); }
}
@keyframes float3 {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%       { transform: translateY(-10px) rotate(1deg); }
}
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50%       { transform: scale(1.8); opacity: 0; }
}
@keyframes barPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(0.7); }
  50%       { opacity: 1; transform: scaleY(1); }
}
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0); }
  33%       { transform: translate(30px, -20px); }
  66%       { transform: translate(-20px, 15px); }
}
@keyframes ruFill {
  from { width: 0; }
}

/* ── SCROLL REVEAL ── */
.scroll-reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.75s cubic-bezier(.22,1,.36,1), transform 0.75s cubic-bezier(.22,1,.36,1);
}
.scroll-reveal.in { opacity: 1; transform: none; }
.scroll-reveal:nth-child(2) { transition-delay: 0.1s; }
.scroll-reveal:nth-child(3) { transition-delay: 0.2s; }
.scroll-reveal:nth-child(4) { transition-delay: 0.3s; }

/* Hero staggered reveals */
.reveal-up {
  opacity: 0;
  transform: translateY(30px);
}
.delay-0 { animation-delay: 0.1s; }
.delay-1 { animation-delay: 0.25s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.55s; }
.delay-4 { animation-delay: 0.7s; }

/* ── GRADIENT TEXT ── */
.gradient-text {
  background: linear-gradient(110deg, var(--accent1) 0%, var(--accent2) 50%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  height: var(--nav-h);
  transition: background .3s, border-color .3s, backdrop-filter .3s;
}
.nav.scrolled {
  background: rgba(6,10,18,0.85);
  backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 28px;
  gap: 32px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-mark {
  width: 34px; height: 34px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--accent1), var(--accent2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 16px;
  color: var(--bg0);
}
.logo-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 17px;
  color: var(--text);
}
.logo-text em {
  font-style: normal;
  background: linear-gradient(90deg, var(--accent1), var(--accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.nav-links {
  display: flex;
  gap: 6px;
  flex: 1;
}
.nav-links a {
  padding: 7px 14px;
  border-radius: 8px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--muted);
  transition: color .2s, background .2s;
}
.nav-links a:hover {
  color: var(--text);
  background: var(--surface);
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.btn-outline {
  padding: 8px 20px;
  border-radius: 9px;
  border: 1px solid var(--border);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--muted);
  transition: border-color .2s, color .2s;
}
.btn-outline:hover {
  border-color: var(--accent1);
  color: var(--text);
}
.btn-solid {
  padding: 8px 20px;
  border-radius: 9px;
  background: var(--accent1);
  color: var(--bg0);
  font-size: 13.5px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: filter .2s, gap .2s;
}
.btn-solid:hover {
  filter: brightness(1.08);
  gap: 12px;
}
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
}
.nav-burger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: var(--bg1);
  border-bottom: 1px solid var(--border);
  padding: 20px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  z-index: 499;
  transform: translateY(-110%);
  transition: transform .35s cubic-bezier(.22,1,.36,1);
}
.mobile-menu.open { transform: none; }
.mobile-menu a {
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 500;
  color: var(--muted);
  transition: color .2s, background .2s;
}
.mobile-menu a:hover { color: var(--text); background: var(--surface); }
.mobile-menu .mm-login { margin-top: 8px; }
.mobile-menu .mm-cta {
  margin-top: 8px;
  background: var(--accent1);
  color: var(--bg0);
  font-weight: 700;
  text-align: center;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: calc(var(--nav-h) + 60px) 28px 80px;
}
.mesh-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.mesh-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  animation: orbFloat 12s ease-in-out infinite;
}
.orb1 {
  width: 640px; height: 640px;
  background: radial-gradient(circle, rgba(0,212,170,0.09) 0%, transparent 70%);
  top: -200px; left: -200px;
}
.orb2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0,180,230,0.07) 0%, transparent 70%);
  bottom: -150px; right: -100px;
  animation-delay: -4s;
}
.orb3 {
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(245,200,66,0.05) 0%, transparent 70%);
  top: 40%; left: 40%;
  animation-delay: -8s;
}
.particle-canvas {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
}
.hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 820px;
  width: 100%;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px 6px 10px;
  border-radius: 100px;
  background: rgba(0,212,170,0.08);
  border: 1px solid rgba(0,212,170,0.25);
  color: var(--accent1);
  font-size: 12.5px;
  font-weight: 600;
  margin-bottom: 32px;
  position: relative;
}
.pulse-ring {
  width: 20px; height: 20px;
  border-radius: 50%;
  border: 1.5px solid var(--accent1);
  position: absolute;
  left: 10px;
  animation: pulse 2s ease-out infinite;
}
.badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent1);
  flex-shrink: 0;
}
.hero-h1 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(42px, 7vw, 76px);
  line-height: 1.04;
  letter-spacing: -2.5px;
  margin-bottom: 22px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero-h1 .line { display: block; }
.hero-sub {
  font-size: 16px;
  color: var(--muted);
  max-width: 480px;
  margin: 0 auto 36px;
  line-height: 1.75;
}
.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}
.cta-primary {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: var(--accent1);
  color: var(--bg0);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 15px;
  border-radius: 12px;
  overflow: hidden;
  transition: filter .2s, transform .2s;
}
.cta-primary:hover { filter: brightness(1.08); }
.cta-glow {
  position: absolute;
  inset: -30px;
  background: radial-gradient(circle, rgba(0,212,170,0.5), transparent 60%);
  opacity: 0;
  transition: opacity .3s;
  pointer-events: none;
}
.cta-primary:hover .cta-glow { opacity: 1; }
.cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border: 1px solid var(--border);
  border-radius: 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  transition: border-color .2s, color .2s;
}
.cta-secondary i {
  width: 32px; height: 32px;
  background: var(--surface);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--accent1);
}
.cta-secondary:hover { border-color: var(--accent1); color: var(--text); }

/* Floating cards */
.floating-cards {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.f-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 14px;
  backdrop-filter: blur(10px);
}
.fc1 { animation: float1 6s ease-in-out infinite; }
.fc2 { animation: float2 7s ease-in-out infinite; animation-delay: -2s; }
.fc3 { animation: float3 5.5s ease-in-out infinite; animation-delay: -4s; }
.fc-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #fff;
  flex-shrink: 0;
}
.fc-val {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 15px;
  line-height: 1.2;
}
.fc-lbl { font-size: 11px; color: var(--muted); }
.fc-badge {
  width: 20px; height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  flex-shrink: 0;
}
.fc-badge.green { background: rgba(0,212,170,0.15); color: var(--accent1); }

/* ── TICKER ── */
.ticker-wrap {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg1);
  overflow: hidden;
  padding: 18px 0;
}
.ticker-inner {
  display: flex;
  width: max-content;
  animation: ticker 28s linear infinite;
  gap: 0;
}
.tick-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 48px;
  white-space: nowrap;
}
.t-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  background: linear-gradient(90deg, var(--accent1), var(--accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}
.t-lbl {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--dim);
  margin-top: 2px;
}
.tick-div {
  width: 1px;
  align-self: stretch;
  background: var(--border);
  flex-shrink: 0;
}

/* ── SECTION BASE ── */
.section {
  padding: 100px 28px;
}
.section-inner {
  max-width: var(--max);
  margin: 0 auto;
}
.section-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent1);
  margin-bottom: 14px;
}
.section-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(30px, 4.5vw, 48px);
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 14px;
}
.section-sub {
  color: var(--muted);
  font-size: 15px;
  max-width: 500px;
  line-height: 1.7;
  margin-bottom: 52px;
}
.section-title.centered, .section-sub.centered { text-align: center; margin-left: auto; margin-right: auto; }

/* ── PLATFORMS ── */
.plat-section { background: var(--bg1); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.plat-section .section-title,
.plat-section .section-tag,
.plat-section .section-sub { text-align: center; margin-left: auto; margin-right: auto; }

.plat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.plat-card {
  position: relative;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px 20px;
  overflow: hidden;
  transition: border-color .25s, transform .25s, background .25s;
  cursor: pointer;
}
.plat-card:hover {
  border-color: var(--accent, var(--accent1));
  background: var(--bg3);
  transform: translateY(-4px);
}
.plat-glow {
  position: absolute;
  inset: -60px;
  background: radial-gradient(circle at 50% 50%, var(--accent, var(--accent1)), transparent 60%);
  opacity: 0;
  transition: opacity .3s;
  pointer-events: none;
}
.plat-card:hover .plat-glow { opacity: 0.07; }
.plat-ico {
  width: 46px; height: 46px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 14px;
}
.plat-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 15px;
  margin-bottom: 5px;
}
.plat-services {
  font-size: 11.5px;
  color: var(--muted);
  line-height: 1.5;
}
.plat-arrow {
  position: absolute;
  top: 18px; right: 18px;
  width: 28px; height: 28px;
  border-radius: 8px;
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--muted);
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity .2s, transform .2s, color .2s;
}
.plat-card:hover .plat-arrow { opacity: 1; transform: none; color: var(--accent, var(--accent1)); }

/* ── FEATURES BENTO ── */
.feat-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 14px;
}
.feat-section .section-title,
.feat-section .section-tag { text-align: center; margin: 0 auto 14px; }
.feat-section .section-inner > .scroll-reveal:nth-child(2) { text-align: center; margin-bottom: 48px; }

.bento-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 28px;
  transition: border-color .25s, transform .25s;
  position: relative;
  overflow: hidden;
}
.bento-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-3px);
}
.b-wide { grid-column: span 2; }
.b-tall { grid-row: span 2; }
.bento-icon {
  font-size: 28px;
  margin-bottom: 16px;
  display: block;
}
.bento-card h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 17px;
  margin-bottom: 8px;
}
.bento-card p { font-size: 13.5px; color: var(--muted); line-height: 1.65; }

/* Speed bars decoration */
.bento-deco { position: absolute; bottom: 24px; right: 24px; display: flex; align-items: flex-end; gap: 4px; }
.bar {
  width: 6px;
  background: linear-gradient(to top, var(--accent1), var(--accent2));
  border-radius: 3px;
  opacity: 0.5;
  animation: barPulse 1.4s ease-in-out infinite;
}

/* Refill UI */
.bento-refill-ui { margin-top: 24px; display: flex; flex-direction: column; gap: 14px; }
.ru-bar { display: flex; align-items: center; gap: 10px; }
.ru-label { font-size: 11px; font-weight: 600; color: var(--muted); width: 60px; flex-shrink: 0; }
.ru-track {
  flex: 1;
  height: 6px;
  background: var(--bg4);
  border-radius: 6px;
  overflow: hidden;
}
.ru-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent1), var(--accent2));
  border-radius: 6px;
  animation: ruFill 1.5s ease-out forwards;
}
.ru-val { font-size: 11px; font-weight: 700; color: var(--accent1); width: 34px; text-align: right; }

/* ── HOW IT WORKS ── */
.how-section { background: var(--bg1); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.how-section .section-title,
.how-section .section-tag { text-align: center; margin: 0 auto 14px; }
.steps-wrap {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 56px;
}
.step-line {
  position: absolute;
  top: 28px;
  left: calc(12.5%);
  right: calc(12.5%);
  height: 1px;
  background: linear-gradient(90deg, var(--accent1), var(--accent2), var(--gold), var(--accent1));
  background-size: 200% 100%;
  animation: shimmer 3s linear infinite;
  z-index: 0;
}
.step {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 20px;
}
.step-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--bg0);
  border: 2px solid var(--accent1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 18px;
  color: var(--accent1);
  margin-bottom: 20px;
  box-shadow: 0 0 24px rgba(0,212,170,0.2);
}
.step-body h4 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 15px;
  margin-bottom: 6px;
}
.step-body p { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* ── PRICING ── */
.price-section .section-title,
.price-section .section-tag,
.price-section .section-sub { text-align: center; margin: 0 auto 14px; }
.price-section .section-sub { margin-bottom: 52px; }

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: start;
}
.price-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px 28px;
  transition: border-color .25s, transform .25s;
  position: relative;
}
.price-card:hover { border-color: var(--border-hover); transform: translateY(-4px); }
.price-card.featured {
  border-color: rgba(0,212,170,0.4);
  background: linear-gradient(160deg, rgba(0,212,170,0.06), rgba(0,180,230,0.04));
  transform: translateY(-8px);
}
.price-card.featured:hover { transform: translateY(-12px); }
.pc-popular {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, var(--accent1), var(--accent2));
  color: var(--bg0);
  font-size: 10px;
  font-weight: 800;
  padding: 4px 16px;
  border-radius: 100px;
  white-space: nowrap;
  letter-spacing: .5px;
  text-transform: uppercase;
}
.pc-tier {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}
.pc-amount {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 38px;
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -1.5px;
}
.pc-amount span {
  font-size: 14px;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--muted);
  letter-spacing: 0;
}
.pc-desc { font-size: 12.5px; color: var(--muted); margin-bottom: 24px; }
.pc-feats {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 28px;
}
.pc-feats li {
  font-size: 13.5px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 10px;
}
.pc-feats li i { color: var(--accent1); font-size: 11px; flex-shrink: 0; }
.pc-btn {
  width: 100%;
  padding: 13px;
  border-radius: 11px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14px;
  text-align: center;
  display: block;
  transition: all .2s;
}
.pc-btn.outline {
  border: 1.5px solid var(--border);
  color: var(--muted);
}
.pc-btn.outline:hover { border-color: var(--accent1); color: var(--text); }
.pc-btn.solid {
  background: linear-gradient(135deg, var(--accent1), var(--accent2));
  color: var(--bg0);
}
.pc-btn.solid:hover { filter: brightness(1.08); }

/* ── TESTIMONIALS ── */
.testi-section .section-title,
.testi-section .section-tag { text-align: center; margin: 0 auto 14px; }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 48px;
}
.testi-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 26px;
  transition: border-color .25s, transform .25s;
}
.testi-card:hover { border-color: var(--border-hover); transform: translateY(-3px); }
.testi-stars {
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.testi-card p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 18px;
  font-style: italic;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testi-av {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 16px;
  color: #fff;
  flex-shrink: 0;
}
.testi-author strong { font-size: 13.5px; font-weight: 700; display: block; }
.testi-author span { font-size: 11.5px; color: var(--muted); }

/* ── FAQ ── */
.faq-section { background: var(--bg1); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.faq-inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px;
  align-items: start;
}
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  background: none;
  border: none;
  color: var(--text);
  font-size: 14.5px;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  gap: 12px;
  transition: color .2s;
}
.faq-q:hover { color: var(--accent1); }
.faq-ico {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  flex-shrink: 0;
  transition: background .2s, border-color .2s, transform .25s;
  color: var(--muted);
}
.faq-item.open .faq-ico {
  background: var(--accent-dim);
  border-color: var(--accent1);
  color: var(--accent1);
  transform: rotate(45deg);
}
.faq-a {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.75;
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding-bottom .35s ease;
  padding-bottom: 0;
}
.faq-item.open .faq-a { max-height: 200px; padding-bottom: 20px; }

/* ── CTA BANNER ── */
.cta-banner {
  background: var(--bg0);
  padding: 20px 28px 80px;
}
.cta-banner-inner {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
  background: linear-gradient(145deg, rgba(0,212,170,0.07), rgba(0,180,230,0.05), rgba(245,200,66,0.04));
  border: 1px solid rgba(0,212,170,0.2);
  border-radius: 28px;
  padding: 70px 40px;
  text-align: center;
  overflow: hidden;
}
.cta-mesh { position: absolute; inset: 0; pointer-events: none; }
.cta-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
}
.c1 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(0,212,170,0.12), transparent);
  top: -100px; left: -60px;
}
.c2 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(245,200,66,0.08), transparent);
  bottom: -80px; right: -60px;
}
.cta-banner-inner h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: -1.5px;
  margin-bottom: 12px;
  position: relative;
}
.cta-banner-inner p {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 32px;
  position: relative;
}
.cta-banner-inner .cta-primary { position: relative; }

/* ── FOOTER ── */
.footer {
  border-top: 1px solid var(--border);
  background: var(--bg1);
}
.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 60px 28px 40px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer-brand p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.75;
  margin-top: 14px;
  max-width: 240px;
}
.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}
.footer-socials a {
  width: 36px; height: 36px;
  border-radius: 9px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: var(--muted);
  transition: border-color .2s, color .2s;
}
.footer-socials a:hover { border-color: var(--accent1); color: var(--accent1); }
.footer-col h5 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-size: 13.5px;
  color: var(--muted);
  margin-bottom: 10px;
  transition: color .2s;
}
.footer-col a:hover { color: var(--text); }
.footer-bottom {
  border-top: 1px solid var(--border);
  max-width: var(--max);
  margin: 0 auto;
  padding: 18px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom span { font-size: 12.5px; color: var(--dim); }

/* ──────────────────────────────────────
   DASHBOARD STYLES (kept from original)
   ────────────────────────────────────── */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 7px; padding: 9px 20px; border-radius: 9px; font-size: 13px; font-weight: 600; cursor: pointer; border: none; transition: all .18s; font-family: var(--font-body); }
.btn-primary { background: linear-gradient(135deg, var(--accent1), var(--accent2)); color: var(--bg0); }
.btn-primary:hover { filter: brightness(1.08); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--muted); border: 1px solid var(--border); }
.btn-ghost:hover { border-color: var(--accent1); color: var(--text); }
.btn-danger { background: rgba(255,77,109,0.15); color: var(--red); border: 1px solid rgba(255,77,109,0.25); }
.btn-success { background: rgba(0,212,170,0.15); color: var(--accent1); border: 1px solid rgba(0,212,170,0.25); }
.btn-sm { padding: 6px 14px; font-size: 12px; border-radius: 7px; }
.btn-lg { padding: 13px 28px; font-size: 15px; border-radius: 11px; }
.btn-full { width: 100%; justify-content: center; }

.form-group { margin-bottom: 16px; }
.form-label { font-size: 11px; font-weight: 700; letter-spacing: .5px; text-transform: uppercase; color: var(--muted); display: block; margin-bottom: 6px; }
.form-input { width: 100%; background: var(--bg3); border: 1px solid var(--border); border-radius: 9px; padding: 11px 14px; color: var(--text); font-size: 13px; outline: none; transition: border-color .2s; font-family: var(--font-body); }
.form-input:focus { border-color: var(--accent1); }
.form-input::placeholder { color: var(--dim); }
.form-select { width: 100%; background: var(--bg3); border: 1px solid var(--border); border-radius: 9px; padding: 11px 14px; color: var(--text); font-size: 13px; outline: none; cursor: pointer; -webkit-appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M2 4l4 4 4-4' fill='none' stroke='%236b7fa8' stroke-width='1.5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 34px; font-family: var(--font-body); }
.form-select:focus { border-color: var(--accent1); }
.form-select option { background: var(--bg2); }
.form-textarea { width: 100%; background: var(--bg3); border: 1px solid var(--border); border-radius: 9px; padding: 11px 14px; color: var(--text); font-size: 13px; outline: none; resize: vertical; min-height: 90px; font-family: var(--font-body); }
.form-textarea:focus { border-color: var(--accent1); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.input-icon-wrap { position: relative; }
.input-icon-wrap .form-input { padding-left: 38px; }
.input-icon { position: absolute; left: 12px; top: 50%; transform: translateY(-50%); color: var(--muted); font-size: 14px; }
.form-error { color: var(--red); font-size: 12px; margin-top: 5px; }

.alert { padding: 12px 16px; border-radius: 9px; margin-bottom: 16px; font-size: 13px; display: flex; align-items: center; gap: 10px; }
.alert-success { background: rgba(0,212,170,0.1); border: 1px solid rgba(0,212,170,0.25); color: var(--accent1); }
.alert-danger { background: rgba(255,77,109,0.1); border: 1px solid rgba(255,77,109,0.25); color: var(--red); }
.alert-info { background: rgba(0,212,170,0.1); border: 1px solid rgba(0,212,170,0.25); color: var(--accent1); }
.alert-warning { background: rgba(245,200,66,0.1); border: 1px solid rgba(245,200,66,0.25); color: var(--amber); }

.card { background: var(--bg2); border: 1px solid var(--border); border-radius: 14px; padding: 20px; }
.pill { padding: 3px 10px; border-radius: 100px; font-size: 11px; font-weight: 600; display: inline-block; }
.p-green { background: rgba(0,212,170,0.15); color: var(--accent1); }
.p-purple { background: rgba(0,212,170,0.12); color: var(--accent1); }
.p-amber { background: rgba(245,200,66,0.12); color: var(--amber); }
.p-red { background: rgba(255,77,109,0.12); color: var(--red); }
.p-blue { background: rgba(79,163,247,0.12); color: var(--blue); }
.p-gray { background: rgba(255,255,255,0.06); color: var(--muted); }

.table-wrap { background: var(--bg2); border: 1px solid var(--border); border-radius: 14px; overflow: hidden; }
.tbl-toolbar { padding: 14px 18px; display: flex; align-items: center; gap: 10px; border-bottom: 1px solid var(--border); flex-wrap: wrap; }
table { width: 100%; border-collapse: collapse; }
thead th { padding: 11px 16px; text-align: left; font-size: 10px; font-weight: 700; letter-spacing: .8px; text-transform: uppercase; color: var(--muted); background: var(--bg3); border-bottom: 1px solid var(--border); }
tbody td { padding: 12px 16px; border-bottom: 1px solid rgba(255,255,255,0.04); font-size: 13px; vertical-align: middle; }
tbody tr:last-child td { border-bottom: none; }
tbody tr:hover td { background: rgba(255,255,255,0.02); }

.dash-nav { background: var(--bg2); border-bottom: 1px solid var(--border); display: flex; align-items: stretch; position: sticky; top: 0; z-index: 99; overflow-x: auto; scrollbar-width: none; }
.dash-nav::-webkit-scrollbar { display: none; }
.nav-brand { display: flex; align-items: center; gap: 9px; padding: 0 18px; border-right: 1px solid var(--border); min-width: fit-content; cursor: pointer; text-decoration: none; }
.nav-logo-ico { width: 30px; height: 30px; border-radius: 9px; background: linear-gradient(135deg, var(--accent1), var(--accent2)); display: flex; align-items: center; justify-content: center; font-size: 14px; }
.nav-logo-txt { font-family: var(--font-display); font-size: 16px; font-weight: 800; }
.nav-logo-txt span { background: linear-gradient(90deg, var(--accent1), var(--accent2)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.nav-tabs { display: flex; align-items: stretch; }
.ntab { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px; padding: 11px 14px; border: none; background: transparent; color: var(--muted); cursor: pointer; font-size: 9px; font-weight: 600; letter-spacing: .6px; text-transform: uppercase; border-bottom: 2px solid transparent; transition: all .15s; min-width: 68px; white-space: nowrap; text-decoration: none; }
.ntab i { font-size: 15px; }
.ntab:hover { color: var(--text); background: rgba(255,255,255,0.03); }
.ntab.active { color: var(--accent1); border-bottom-color: var(--accent1); background: rgba(0,212,170,0.07); }
.ntab.new-order-tab { background: linear-gradient(135deg, var(--accent1), var(--accent2)); color: var(--bg0); border-bottom-color: transparent; }
.ntab.new-order-tab:hover { filter: brightness(1.1); }
.nav-end { margin-left: auto; display: flex; align-items: center; padding: 0 16px; gap: 10px; }
.bal-btn { background: linear-gradient(135deg, var(--accent1), var(--accent2)); color: var(--bg0); font-size: 11px; font-weight: 700; padding: 7px 16px; border-radius: 8px; border: none; cursor: pointer; white-space: nowrap; text-decoration: none; display: inline-flex; align-items: center; gap: 5px; }
.notif-btn { width: 32px; height: 32px; border-radius: 8px; background: var(--bg3); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; cursor: pointer; color: var(--muted); font-size: 14px; text-decoration: none; }
.avatar { width: 32px; height: 32px; border-radius: 50%; background: linear-gradient(135deg, var(--accent1), var(--accent2)); display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; color: var(--bg0); }

.dash-content { padding: 26px; max-width: 980px; margin: 0 auto; width: 100%; }
.stat-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-bottom: 22px; }
.ostat { background: var(--bg2); border: 1px solid var(--border); border-radius: 14px; padding: 20px; display: flex; align-items: center; gap: 14px; transition: border-color .2s; }
.ostat:hover { border-color: var(--border-hover); }
.ostat-icon-wrap { display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ostat-body { display: flex; flex-direction: column; gap: 3px; }
.ostat-val { font-family: var(--font-display); font-size: 22px; font-weight: 800; line-height: 1; }
.ostat-lbl { font-size: 10px; font-weight: 700; letter-spacing: .8px; text-transform: uppercase; color: var(--muted); }
.ostat-sub { font-size: 11px; color: var(--muted); }

.panel-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; flex-wrap: wrap; gap: 10px; }
.panel-title { font-family: var(--font-display); font-size: 22px; font-weight: 800; }

.auth-wrap { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 40px 20px; position: relative; overflow: hidden; background: var(--bg0); }
.auth-wrap::before { content: ''; position: absolute; width: 600px; height: 600px; border-radius: 50%; background: rgba(0,212,170,0.05); filter: blur(100px); top: -200px; left: -200px; pointer-events: none; }
.auth-wrap::after { content: ''; position: absolute; width: 500px; height: 500px; border-radius: 50%; background: rgba(0,180,230,0.04); filter: blur(100px); bottom: -150px; right: -150px; pointer-events: none; }
.auth-box { background: var(--bg2); border: 1px solid var(--border); border-radius: 20px; padding: 40px; width: 100%; max-width: 420px; position: relative; z-index: 1; }
.auth-logo { text-align: center; margin-bottom: 28px; }
.auth-logo-txt { font-family: var(--font-display); font-size: 26px; font-weight: 900; }
.auth-logo-txt span { background: linear-gradient(90deg, var(--accent1), var(--accent2)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.auth-logo p { color: var(--muted); font-size: 13px; margin-top: 4px; }
.auth-title { font-family: var(--font-display); font-size: 22px; font-weight: 800; margin-bottom: 4px; }
.auth-sub { color: var(--muted); font-size: 13px; margin-bottom: 24px; }
.auth-link { color: var(--muted); font-size: 12px; text-align: center; margin-top: 16px; }
.auth-link a { color: var(--accent1); font-weight: 600; }
.divider { display: flex; align-items: center; gap: 12px; margin: 16px 0; color: var(--dim); font-size: 11px; }
.divider::before, .divider::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.remember-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }

.plat-img { width: 20px; height: 20px; object-fit: contain; display: inline-block; vertical-align: middle; }
.plat-img-lg { width: 28px; height: 28px; object-fit: contain; }
.plat-img-xl { width: 36px; height: 36px; object-fit: contain; }

.toast { position: fixed; bottom: 24px; right: 24px; z-index: 9999; background: var(--bg2); border: 1px solid var(--border-hover); border-radius: 12px; padding: 13px 18px; display: flex; align-items: center; gap: 10px; transform: translateY(80px); opacity: 0; transition: all .3s; box-shadow: 0 8px 32px rgba(0,0,0,.5); max-width: 300px; }
.toast.show { transform: translateY(0); opacity: 1; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .plat-grid { grid-template-columns: repeat(4, 1fr); }
  .feat-bento { grid-template-columns: repeat(2, 1fr); }
  .b-wide { grid-column: span 2; }
  .b-tall { grid-row: auto; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: span 2; }
}

@media (max-width: 768px) {
  .nav-links, .nav-actions { display: none; }
  .nav-burger { display: flex; }
  .hero-h1 { letter-spacing: -1.5px; }
  .floating-cards { gap: 10px; }
  .f-card { padding: 10px 14px; }
  .plat-grid { grid-template-columns: repeat(2, 1fr); }
  .feat-bento { grid-template-columns: 1fr; }
  .b-wide, .b-tall { grid-column: auto; grid-row: auto; }
  .steps-wrap { grid-template-columns: 1fr; gap: 24px; }
  .step-line { display: none; }
  .step { flex-direction: row; text-align: left; align-items: flex-start; gap: 18px; }
  .step-num { margin-bottom: 0; flex-shrink: 0; }
  .price-grid { grid-template-columns: 1fr; }
  .price-card.featured { transform: none; }
  .testi-grid { grid-template-columns: 1fr; }
  .faq-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .stat-cards, .form-row { grid-template-columns: 1fr; }
  .dash-content { padding: 16px; }
  .cta-banner-inner { padding: 40px 24px; }
  .section { padding: 64px 20px; }
}
