/* SMM Growth Now v2 - Premium dark theme */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=JetBrains+Mono:wght@400;500;600&display=swap');

:root {
  --bg: #0a0a0f;
  --bg-elevated: #12121a;
  --bg-card: #16161f;
  --border: rgba(255, 255, 255, 0.06);
  --border-strong: rgba(255, 255, 255, 0.12);
  --text: #f5f5f7;
  --text-dim: #8a8a96;
  --text-faint: #5a5a66;
  --accent: #ff5722;
  --accent-2: #ff8a50;
  --accent-soft: rgba(255, 87, 34, 0.12);
  --accent-glow: rgba(255, 87, 34, 0.4);
  --gradient: linear-gradient(135deg, #ff5722 0%, #ff8a50 100%);
  --green: #10b981;
  --red: #ef4444;
  --yellow: #fbbf24;
  --blue: #3b82f6;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.6);
  --radius: 14px;
  --radius-lg: 20px;
}

* { box-sizing: border-box; -webkit-tap-highlight-color: transparent; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  font-feature-settings: "ss01", "cv11";
}

::selection { background: var(--accent); color: #0a0a0f; }
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: rgba(255, 255, 255, 0.08); border-radius: 5px; border: 2px solid var(--bg); }
::-webkit-scrollbar-thumb:hover { background: var(--accent); }

a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-2); }

button { font-family: inherit; }

.bg-gradient {
  position: fixed;
  inset: 0;
  z-index: -2;
  background: var(--bg);
  overflow: hidden;
}
.bg-gradient::before,
.bg-gradient::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  will-change: transform;
}
.bg-gradient::before {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 87, 34, 0.35), transparent 60%);
  top: -200px;
  left: -200px;
  animation: float-orb-1 20s ease-in-out infinite;
}
.bg-gradient::after {
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(255, 138, 80, 0.25), transparent 60%);
  bottom: -300px;
  right: -200px;
  animation: float-orb-2 25s ease-in-out infinite;
}
.bg-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.3;
  pointer-events: none;
  z-index: -1;
  will-change: transform;
}
.bg-orb-1 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.4), transparent 60%);
  top: 30%; left: 50%;
  animation: float-orb-3 18s ease-in-out infinite;
}
@keyframes float-orb-1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(150px, 100px) scale(1.1); }
  66% { transform: translate(-80px, 200px) scale(0.95); }
}
@keyframes float-orb-2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-200px, -150px) scale(1.15); }
}
@keyframes float-orb-3 {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-30%, -70%) scale(1.2); }
}
.bg-grid {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
}
.bg-noise {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.02;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.bg-particles {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}
.bg-particles span {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--accent);
  border-radius: 50%;
  opacity: 0;
  box-shadow: 0 0 12px var(--accent), 0 0 24px var(--accent);
  animation: particle-drift 20s linear infinite;
}
.bg-particles span:nth-child(1) { left: 5%; animation-duration: 22s; animation-delay: 0s; }
.bg-particles span:nth-child(2) { left: 15%; animation-duration: 18s; animation-delay: 2s; width: 3px; height: 3px; }
.bg-particles span:nth-child(3) { left: 25%; animation-duration: 25s; animation-delay: 4s; width: 5px; height: 5px; }
.bg-particles span:nth-child(4) { left: 38%; animation-duration: 20s; animation-delay: 1s; }
.bg-particles span:nth-child(5) { left: 50%; animation-duration: 23s; animation-delay: 3s; width: 2px; height: 2px; }
.bg-particles span:nth-child(6) { left: 62%; animation-duration: 21s; animation-delay: 5s; }
.bg-particles span:nth-child(7) { left: 75%; animation-duration: 24s; animation-delay: 0s; width: 4px; height: 4px; }
.bg-particles span:nth-child(8) { left: 85%; animation-duration: 19s; animation-delay: 6s; width: 3px; height: 3px; }
.bg-particles span:nth-child(9) { left: 92%; animation-duration: 22s; animation-delay: 2s; }
.bg-particles span:nth-child(10) { left: 30%; animation-duration: 26s; animation-delay: 8s; width: 2px; height: 2px; }
.bg-particles span:nth-child(11) { left: 70%; animation-duration: 17s; animation-delay: 4s; width: 3px; height: 3px; }
.bg-particles span:nth-child(12) { left: 45%; animation-duration: 28s; animation-delay: 9s; }
@keyframes particle-drift {
  0% { bottom: -10px; opacity: 0; transform: translateX(0) scale(0.5); }
  10% { opacity: 0.7; transform: translateX(20px) scale(1); }
  50% { transform: translateX(-30px) scale(1.2); }
  90% { opacity: 0.4; transform: translateX(20px) scale(0.8); }
  100% { bottom: 110vh; opacity: 0; transform: translateX(0) scale(0.4); }
}

.marquee {
  overflow: hidden;
  margin: 60px 0;
  padding: 24px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, transparent, rgba(255, 87, 34, 0.03), transparent);
  position: relative;
}
.marquee::before, .marquee::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.marquee::before { left: 0; background: linear-gradient(90deg, var(--bg), transparent); }
.marquee::after { right: 0; background: linear-gradient(-90deg, var(--bg), transparent); }
.marquee-track {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  animation: marquee-slide 30s linear infinite;
  width: max-content;
}
.marquee-item {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dim);
  display: flex;
  align-items: center;
  gap: 12px;
  letter-spacing: -0.5px;
  transition: color 0.2s;
}
.marquee-item:hover { color: var(--accent); }
.marquee-item .icon { font-size: 28px; }
@keyframes marquee-slide {
  to { transform: translateX(-50%); }
}

.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 87, 34, 0.5), transparent);
  max-width: 600px;
  margin: 0 auto;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testimonial-card {
  background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg-elevated) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  position: relative;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 12px;
  right: 22px;
  font-size: 80px;
  line-height: 1;
  color: var(--accent);
  opacity: 0.15;
  font-family: Georgia, serif;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: 0 16px 40px rgba(255, 87, 34, 0.18);
}
.testimonial-text {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 18px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #0a0a0f;
  font-size: 16px;
}
.testimonial-name { font-weight: 700; font-size: 13px; }
.testimonial-handle { font-size: 11px; color: var(--text-dim); }
.testimonial-stars { color: var(--yellow); font-size: 14px; margin-bottom: 10px; letter-spacing: 2px; }

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.steps::before {
  content: "";
  position: absolute;
  top: 32px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.3;
  z-index: 0;
}
.step {
  position: relative;
  z-index: 1;
  text-align: center;
}
.step-num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 2px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 24px;
  font-weight: 900;
  color: var(--accent);
  box-shadow: 0 8px 24px rgba(255, 87, 34, 0.2);
  transition: all 0.3s;
}
.step:hover .step-num {
  background: var(--accent);
  color: #0a0a0f;
  transform: scale(1.1);
}
.step h3 { margin: 0 0 8px; font-size: 16px; }
.step p { font-size: 13px; color: var(--text-dim); margin: 0; }

.stat-card {
  position: relative;
  overflow: hidden;
}
.stat-card.with-spark { padding-bottom: 50px; }
.stat-card .spark {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 40px;
  opacity: 0.6;
}
.stat-card .stat-trend {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 8px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  margin-top: 6px;
}
.stat-trend.up { background: rgba(16, 185, 129, 0.15); color: var(--green); }
.stat-trend.down { background: rgba(239, 68, 68, 0.15); color: var(--red); }

.welcome-banner {
  background: linear-gradient(135deg, rgba(255, 87, 34, 0.12), rgba(255, 138, 80, 0.04));
  border: 1px solid rgba(255, 87, 34, 0.2);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  margin-bottom: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.welcome-banner::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 87, 34, 0.3), transparent 60%);
  filter: blur(60px);
  pointer-events: none;
}
.welcome-banner-text {
  position: relative;
  flex: 1;
  min-width: 0;
}
.welcome-banner h2 { margin: 0 0 4px; font-size: 22px; }
.welcome-banner p { margin: 0; color: var(--text-dim); font-size: 14px; }
.welcome-banner-actions { position: relative; display: flex; gap: 10px; flex-wrap: wrap; }

#content {
  animation: page-in 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes page-in {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.topnav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 32px;
  background: rgba(10, 10, 15, 0.85);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border);
}
.topnav .brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 18px;
  color: var(--text);
}
.topnav .brand-logo {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px var(--accent-glow);
  overflow: hidden;
}
.topnav .brand-logo svg { display: block; width: 100%; height: 100%; }
.topnav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.topnav-links a {
  color: var(--text-dim);
  font-weight: 500;
  font-size: 14px;
  transition: color 0.15s;
}
.topnav-links a:hover { color: var(--text); }
.topnav-actions { display: flex; gap: 10px; align-items: center; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 20px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  border: 1px solid var(--border-strong);
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s ease;
  text-decoration: none;
}
.btn:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--accent);
  transform: translateY(-1px);
}
.btn-primary {
  background: var(--gradient);
  color: #0a0a0f;
  border: none;
  font-weight: 700;
  box-shadow: 0 6px 20px var(--accent-glow), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: "";
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.6s;
}
.btn-primary:hover::before { left: 100%; }
.btn-primary:hover {
  background: var(--gradient);
  color: #0a0a0f;
  box-shadow: 0 12px 34px var(--accent-glow), inset 0 1px 0 rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}
.btn-primary:active { transform: translateY(0); }
.btn-danger {
  background: rgba(239, 68, 68, 0.15);
  border-color: rgba(239, 68, 68, 0.4);
  color: #ef4444;
}
.btn-danger:hover { background: rgba(239, 68, 68, 0.25); border-color: #ef4444; }
.btn-ghost {
  background: transparent;
  border-color: transparent;
}
.btn-sm { padding: 7px 14px; font-size: 12px; }
.btn-block { width: 100%; }

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}
.card-title {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-dim);
  margin-bottom: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.card h3 { margin: 0 0 12px; font-size: 16px; }

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}
.field label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}
.input, .select, .textarea {
  width: 100%;
  padding: 12px 14px;
  background: var(--bg-elevated);
  border: 1px solid var(--border-strong);
  border-radius: 10px;
  color: var(--text);
  font-size: 14px;
  font-family: inherit;
  transition: all 0.15s;
}
.input:focus, .select:focus, .textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}
.textarea { min-height: 90px; resize: vertical; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.auth-wrap {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 20px;
}
.auth-card {
  width: 100%;
  max-width: 440px;
  background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-elevated) 100%);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow-lg), 0 0 80px rgba(255, 87, 34, 0.12);
  position: relative;
  overflow: hidden;
  animation: auth-card-in 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.auth-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}
.auth-card::after {
  content: "";
  position: absolute;
  top: -50%; right: -30%;
  width: 200px; height: 200px;
  background: radial-gradient(circle, var(--accent-soft), transparent 70%);
  pointer-events: none;
}
@keyframes auth-card-in {
  from { opacity: 0; transform: translateY(20px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.auth-card h1 {
  margin: 0 0 8px;
  font-size: 24px;
  text-align: center;
}
.auth-card .auth-sub {
  text-align: center;
  color: var(--text-dim);
  font-size: 14px;
  margin-bottom: 28px;
}
.auth-card .brand-logo {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 24px;
  color: #0a0a0f;
  margin: 0 auto 20px;
  box-shadow: 0 8px 24px var(--accent-glow);
}
.auth-foot {
  text-align: center;
  margin-top: 18px;
  font-size: 13px;
  color: var(--text-dim);
}
.alert {
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 13px;
  margin-bottom: 14px;
  display: none;
}
.alert.show { display: block; }
.alert-error { background: rgba(239, 68, 68, 0.12); border: 1px solid rgba(239, 68, 68, 0.3); color: #ef4444; }
.alert-success { background: rgba(16, 185, 129, 0.12); border: 1px solid rgba(16, 185, 129, 0.3); color: #10b981; }

.hero {
  padding: 100px 32px 80px;
  text-align: center;
  max-width: 980px;
  margin: 0 auto;
  position: relative;
}
.hero h1 {
  font-size: 76px;
  font-weight: 900;
  line-height: 1.0;
  margin: 0 0 22px;
  letter-spacing: -3px;
  background: linear-gradient(180deg, #fff 0%, #b8b8c2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: hero-fade-up 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes hero-fade-up {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero h1 .highlight {
  background: linear-gradient(135deg, #ff5722 0%, #ff8a50 50%, #fbbf24 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-shift 4s ease-in-out infinite;
  display: inline-block;
}
@keyframes gradient-shift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
.hero .lede {
  animation: hero-fade-up 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.15s both;
}
.hero-cta {
  animation: hero-fade-up 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
}
.hero-stats {
  animation: hero-fade-up 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.45s both;
}

/* Hero floating decoration */
.hero::before {
  content: "";
  position: absolute;
  top: 60px;
  left: 50%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(255, 87, 34, 0.15), transparent 60%);
  transform: translateX(-50%);
  filter: blur(60px);
  pointer-events: none;
  z-index: -1;
  animation: hero-pulse 6s ease-in-out infinite;
}
@keyframes hero-pulse {
  0%, 100% { opacity: 0.6; transform: translateX(-50%) scale(1); }
  50% { opacity: 1; transform: translateX(-50%) scale(1.1); }
}
.hero .lede {
  font-size: 20px;
  color: var(--text-dim);
  max-width: 640px;
  margin: 0 auto 36px;
  line-height: 1.5;
}
.hero-cta { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }
.hero-cta .btn { padding: 16px 28px; font-size: 15px; }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  max-width: 920px;
  margin: 64px auto 0;
}
.hero-stat {
  background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg-elevated) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.hero-stat::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.hero-stat:hover {
  transform: translateY(-3px);
  border-color: var(--accent);
  box-shadow: 0 12px 30px rgba(255, 87, 34, 0.18);
}
.hero-stat:hover::before { opacity: 1; }
.hero-stat-num {
  font-size: 32px;
  font-weight: 900;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-stat-lbl { font-size: 11px; text-transform: uppercase; letter-spacing: 1.2px; color: var(--text-dim); margin-top: 4px; }

.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 32px;
}
.section h2 {
  font-size: 40px;
  font-weight: 800;
  margin: 0 0 12px;
  text-align: center;
}
.section .section-sub {
  text-align: center;
  color: var(--text-dim);
  font-size: 16px;
  margin-bottom: 56px;
}

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.feature {
  background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg-elevated) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
}
.feature::before {
  content: "";
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 87, 34, 0.08), transparent);
  transition: left 0.6s;
}
.feature::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  padding: 1px;
  background: linear-gradient(135deg, transparent 30%, rgba(255, 87, 34, 0.5) 50%, transparent 70%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s;
}
.feature:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(255, 87, 34, 0.2), 0 0 0 1px rgba(255, 87, 34, 0.3);
}
.feature:hover::before { left: 100%; }
.feature:hover::after { opacity: 1; }
.feature:hover .feature-icon {
  transform: scale(1.1) rotate(-5deg);
  background: var(--accent);
  color: #0a0a0f;
  box-shadow: 0 12px 30px rgba(255, 87, 34, 0.5);
}
.feature-icon { transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1); }
.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 18px;
}
.feature h3 { margin: 0 0 8px; font-size: 18px; }
.feature p { margin: 0; color: var(--text-dim); font-size: 14px; line-height: 1.6; }

.platforms {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.platform {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 16px;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.platform::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(255, 87, 34, 0.18), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
}
.platform:hover {
  border-color: var(--accent);
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 12px 30px rgba(255, 87, 34, 0.2);
}
.platform:hover::before { opacity: 1; }
.platform:hover .platform-icon { transform: scale(1.15) rotate(5deg); }
.platform-icon { transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1); }
.platform-icon { font-size: 36px; margin-bottom: 8px; }
.platform-name { font-size: 13px; font-weight: 600; color: var(--text-dim); }

.cta-banner {
  margin: 80px 32px;
  padding: 56px 32px;
  background: var(--gradient);
  border-radius: var(--radius-lg);
  text-align: center;
  color: #0a0a0f;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
}
.cta-banner h2 { color: #0a0a0f; font-size: 36px; margin: 0 0 12px; }
.cta-banner p { color: rgba(10, 10, 15, 0.8); font-size: 16px; margin-bottom: 24px; }
.cta-banner .btn { background: #0a0a0f; color: var(--accent); border: none; }
.cta-banner .btn:hover { background: #16161f; color: var(--accent-2); }

footer {
  border-top: 1px solid var(--border);
  padding: 40px 32px;
  text-align: center;
  color: var(--text-dim);
  font-size: 13px;
  margin-top: 60px;
}
footer .footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 16px;
}
footer .footer-links a { color: var(--text-dim); }
footer .footer-links a:hover { color: var(--accent); }

.app-layout {
  display: flex;
  min-height: 100vh;
}
.sidebar {
  width: 260px;
  background: var(--bg-elevated);
  border-right: 1px solid var(--border);
  padding: 24px 18px;
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  overflow-y: auto;
}
.sidebar .brand {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 8px 24px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--border);
  font-weight: 800;
  font-size: 16px;
}
.sidebar nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}
.sidebar .nav-section {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-faint);
  padding: 16px 12px 8px;
  margin-top: 8px;
}
.sidebar .nav-section:first-child { margin-top: 0; padding-top: 4px; }
.sidebar a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 14px;
  border-radius: 10px;
  color: var(--text-dim);
  font-size: 13px;
  font-weight: 600;
  transition: all 0.15s;
  cursor: pointer;
}
.sidebar a:hover {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}
.sidebar a.active {
  background: var(--accent-soft);
  color: var(--accent);
  box-shadow: inset 3px 0 0 var(--accent);
}
.sidebar a .icon { font-size: 16px; width: 20px; text-align: center; }
.sidebar-foot {
  padding-top: 20px;
  border-top: 1px solid var(--border);
  margin-top: 20px;
}
.sidebar-foot .user-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 10px;
  margin-bottom: 8px;
}
.sidebar-foot .avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  color: #0a0a0f;
  flex-shrink: 0;
}
.sidebar-foot .user-info { flex: 1; min-width: 0; }
.sidebar-foot .user-info .name { font-size: 13px; font-weight: 700; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sidebar-foot .user-info .balance { font-size: 11px; color: var(--accent); font-weight: 600; }

.main {
  margin-left: 260px;
  flex: 1;
  min-width: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.app-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 32px;
  border-bottom: 1px solid var(--border);
  background: rgba(10, 10, 15, 0.6);
  backdrop-filter: blur(10px);
}
.app-topbar h1 { margin: 0; font-size: 22px; }
.app-topbar .sub { color: var(--text-dim); font-size: 13px; }

.app-content {
  flex: 1;
  padding: 32px;
  max-width: 100%;
  min-width: 0;
  width: 100%;
  box-sizing: border-box;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin-bottom: 28px;
}
.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  position: relative;
  overflow: hidden;
}
.stat-card::before {
  content: "";
  position: absolute;
  top: 0; right: 0;
  width: 80px; height: 80px;
  background: var(--accent-soft);
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.5;
}
.stat-icon { font-size: 22px; margin-bottom: 10px; position: relative; }
.stat-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--text-dim);
  position: relative;
}
.stat-value {
  font-size: 30px;
  font-weight: 800;
  margin-top: 4px;
  position: relative;
}
.stat-sub { font-size: 12px; color: var(--text-faint); margin-top: 4px; position: relative; }

.table-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  max-width: 100%;
}
.data-table {
  display: block;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  max-width: 100%;
}
.table-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  padding: 18px 22px;
  border-bottom: 1px solid var(--border);
}
.table-header h3 { margin: 0; font-size: 16px; flex-shrink: 0; }
.table-actions { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; flex: 1; justify-content: flex-end; min-width: 0; }
.table-actions .input, .table-actions .select { flex: 0 1 auto; min-width: 130px; }

.data-table {
  width: 100%;
  border-collapse: collapse;
}
.data-table th {
  text-align: left;
  padding: 14px 22px;
  background: rgba(255, 255, 255, 0.02);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-dim);
  border-bottom: 1px solid var(--border);
}
.data-table td {
  padding: 14px 22px;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
}
.data-table tr:hover { background: rgba(255, 255, 255, 0.02); }
.data-table tr:last-child td { border-bottom: none; }

/* Badges */
.badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}
.badge-green { background: rgba(16, 185, 129, 0.15); color: #10b981; }
.badge-red { background: rgba(239, 68, 68, 0.15); color: #ef4444; }
.badge-yellow { background: rgba(251, 191, 36, 0.15); color: #fbbf24; }
.badge-blue { background: rgba(59, 130, 246, 0.15); color: #3b82f6; }
.badge-gray { background: rgba(255, 255, 255, 0.06); color: var(--text-dim); }
.badge-orange { background: var(--accent-soft); color: var(--accent); }

.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal.active { display: flex; animation: modal-fade-in 0.3s ease-out; }
@keyframes modal-fade-in { from { opacity: 0; } to { opacity: 1; } }
.modal-bg {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(16px) saturate(180%);
}
.modal-box {
  position: relative;
  background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-elevated) 100%);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 540px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg), 0 0 80px rgba(255, 87, 34, 0.15);
  animation: modal-pop 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}
.modal-box::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.6;
}
@keyframes modal-pop {
  0% { opacity: 0; transform: translateY(40px) scale(0.92); }
  60% { transform: translateY(-4px) scale(1.01); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}
.modal-head {
  padding: 22px 26px;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.modal-head h3 { margin: 0; font-size: 18px; }
.modal-close {
  background: rgba(255, 255, 255, 0.06);
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  color: var(--text);
  font-size: 18px;
  cursor: pointer;
}
.modal-body { padding: 26px; }
.modal-foot {
  padding: 18px 26px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.toast-stack {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 12px;
  pointer-events: none;
  max-width: calc(100vw - 48px);
}
.toast-item {
  pointer-events: auto;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  min-width: 320px;
  max-width: 420px;
  padding: 16px 18px 14px;
  background: rgba(20, 20, 28, 0.95);
  backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid var(--border-strong);
  border-radius: 14px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transform: translateX(120%) scale(0.95);
  opacity: 0;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}
.toast-item.show { transform: translateX(0) scale(1); opacity: 1; }
.toast-item.closing { transform: translateX(120%) scale(0.95); opacity: 0; }
.toast-item .toast-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 16px;
  flex-shrink: 0;
}
.toast-item .toast-body { flex: 1; min-width: 0; }
.toast-item .toast-title { font-weight: 700; font-size: 13px; margin-bottom: 2px; }
.toast-item .toast-msg { font-size: 13px; color: var(--text-dim); line-height: 1.5; }
.toast-item .toast-close {
  background: none;
  border: none;
  color: var(--text-faint);
  font-size: 20px;
  cursor: pointer;
  padding: 0;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  border-radius: 6px;
  transition: all 0.15s;
}
.toast-item .toast-close:hover { color: var(--text); background: rgba(255, 255, 255, 0.05); }
.toast-item .toast-bar {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 3px;
  background: currentColor;
  transform-origin: left center;
  opacity: 0.6;
}
.toast-success { border-left: 3px solid var(--green); color: var(--green); }
.toast-success .toast-icon { background: rgba(16, 185, 129, 0.15); color: var(--green); }
.toast-success .toast-title, .toast-success .toast-msg { color: var(--text); }
.toast-success .toast-msg { color: var(--text-dim); }

.toast-error { border-left: 3px solid var(--red); color: var(--red); }
.toast-error .toast-icon { background: rgba(239, 68, 68, 0.15); color: var(--red); }
.toast-error .toast-title, .toast-error .toast-msg { color: var(--text); }
.toast-error .toast-msg { color: var(--text-dim); }

.toast-info { border-left: 3px solid var(--accent); color: var(--accent); }
.toast-info .toast-icon { background: var(--accent-soft); color: var(--accent); }
.toast-info .toast-title, .toast-info .toast-msg { color: var(--text); }
.toast-info .toast-msg { color: var(--text-dim); }

.toast-warning { border-left: 3px solid var(--yellow); color: var(--yellow); }
.toast-warning .toast-icon { background: rgba(251, 191, 36, 0.15); color: var(--yellow); }

@media (max-width: 768px) {
  .toast-stack { top: auto; bottom: 24px; right: 12px; left: 12px; }
  .toast-item { min-width: 0; max-width: 100%; transform: translateY(120%) scale(0.95); }
  .toast-item.show { transform: translateY(0) scale(1); }
  .toast-item.closing { transform: translateY(120%) scale(0.95); }
}

.svc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 18px;
}
.svc-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  cursor: pointer;
  transition: all 0.2s;
}
.svc-card:hover { border-color: var(--accent); transform: translateY(-3px); box-shadow: 0 12px 32px rgba(255, 87, 34, 0.15); }
.svc-cat { font-size: 11px; color: var(--text-dim); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
.svc-name { font-size: 15px; font-weight: 700; margin-bottom: 8px; line-height: 1.4; }
.svc-meta { display: flex; gap: 12px; flex-wrap: wrap; font-size: 11px; color: var(--text-dim); margin-bottom: 14px; }
.svc-price {
  font-size: 22px;
  font-weight: 900;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.svc-price-unit { font-size: 11px; color: var(--text-dim); font-weight: 500; }

.empty {
  padding: 60px 20px;
  text-align: center;
  color: var(--text-dim);
  font-size: 14px;
}
.empty .icon { font-size: 48px; margin-bottom: 12px; opacity: 0.5; }

.loading { padding: 60px 20px; text-align: center; color: var(--text-dim); }
.spinner {
  width: 36px;
  height: 36px;
  border: 3px solid rgba(255, 255, 255, 0.08);
  border-top-color: var(--accent);
  border-radius: 50%;
  margin: 0 auto 16px;
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
.feature.reveal { transition-delay: 0.05s; }
.feature.reveal:nth-child(2) { transition-delay: 0.1s; }
.feature.reveal:nth-child(3) { transition-delay: 0.15s; }
.feature.reveal:nth-child(4) { transition-delay: 0.2s; }
.feature.reveal:nth-child(5) { transition-delay: 0.25s; }
.feature.reveal:nth-child(6) { transition-delay: 0.3s; }
.platform.reveal:nth-child(odd) { transition-delay: 0.05s; }
.platform.reveal:nth-child(even) { transition-delay: 0.1s; }

.topnav { transition: all 0.3s; }
.topnav.scrolled {
  padding: 14px 32px;
  background: rgba(10, 10, 15, 0.95);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.input:focus, .select:focus, .textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-soft), 0 0 30px rgba(255, 87, 34, 0.15);
}

.hero-stat-num {
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum";
}

.cta-banner {
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: conic-gradient(from 0deg, transparent, rgba(255, 255, 255, 0.1), transparent 50%);
  animation: cta-spin 8s linear infinite;
  pointer-events: none;
}
@keyframes cta-spin { to { transform: rotate(360deg); } }

@media (max-width: 1024px) {
  .hero h1 { font-size: 48px; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .features { grid-template-columns: repeat(2, 1fr); }
  .platforms { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .topnav { padding: 14px 18px; }
  .topnav-links { display: none; }
  .hero { padding: 60px 18px 40px; }
  .hero h1 { font-size: 36px; letter-spacing: -1px; }
  .hero .lede { font-size: 16px; }
  .hero-stats { grid-template-columns: 1fr 1fr; gap: 12px; }
  .hero-stat-num { font-size: 24px; }
  .section { padding: 50px 18px; }
  .section h2 { font-size: 28px; }
  .features, .platforms { grid-template-columns: 1fr 1fr; gap: 12px; }
  .feature { padding: 20px 18px; }

  /* App layout - mobile sidebar becomes a bottom nav */
  .sidebar {
    width: 100%;
    height: auto;
    bottom: 0;
    top: auto;
    border-right: none;
    border-top: 1px solid var(--border);
    flex-direction: row;
    padding: 8px 4px calc(8px + env(safe-area-inset-bottom));
    overflow-x: auto;
    z-index: 100;
  }
  .sidebar .brand, .sidebar .nav-section, .sidebar-foot { display: none; }
  .sidebar nav { flex-direction: row; gap: 2px; width: 100%; }
  .sidebar nav a {
    flex-direction: column;
    padding: 8px 6px;
    font-size: 9px;
    gap: 2px;
    flex: 1;
    min-width: 60px;
    text-align: center;
    justify-content: center;
  }
  .sidebar nav a .icon { font-size: 18px; }
  .sidebar nav a.active { box-shadow: none; background: var(--accent-soft); border-radius: 10px; }

  .main { margin-left: 0; padding-bottom: 80px; }
  .app-topbar { padding: 16px 18px; }
  .app-topbar h1 { font-size: 18px; }
  .app-content { padding: 18px; }

  .stats-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .stat-value { font-size: 22px; }

  .modal { padding: 12px; }
  .modal-box { max-width: 100%; }
  .modal-body { padding: 18px; }

  .field-row { grid-template-columns: 1fr; gap: 10px; }
  .auth-card { padding: 30px 22px; }

  .svc-grid { grid-template-columns: 1fr; }

  .toast { right: 12px; left: 12px; bottom: 90px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 30px; }
  .stats-grid { grid-template-columns: 1fr; }
  .platforms { grid-template-columns: 1fr 1fr; }
  .sidebar nav a { min-width: 0; }
}

/* ====================================================================
   ============ LANDING V2 - FULL REDESIGN ============
   ==================================================================== */

body.landing { background: #060609; }
body.landing .bg-gradient {
  background:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(255, 87, 34, 0.25), transparent 70%),
    radial-gradient(ellipse 60% 50% at 0% 100%, rgba(255, 87, 34, 0.1), transparent 60%),
    #060609;
}
body.landing .bg-gradient::before, body.landing .bg-gradient::after { display: none; }
body.landing .bg-grid {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, black 30%, transparent 70%);
}

body.landing .topnav {
  padding: 20px 40px;
  background: rgba(6, 6, 9, 0.8);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
body.landing .topnav.scrolled {
  padding: 14px 40px;
  background: rgba(6, 6, 9, 0.95);
}
body.landing .brand-logo {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  font-size: 14px;
  background: transparent;
  padding: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
body.landing .brand-logo svg { display: block; width: 100%; height: 100%; }
body.landing .topnav-links a {
  font-size: 13px;
  font-weight: 500;
}
body.landing .btn-ghost {
  background: transparent;
  border: 1px solid transparent;
  color: var(--text-dim);
  padding: 9px 16px;
}
body.landing .btn-ghost:hover { color: var(--text); background: rgba(255, 255, 255, 0.04); border-color: rgba(255, 255, 255, 0.08); }
body.landing .btn-primary {
  padding: 10px 18px;
  font-size: 13px;
  border-radius: 10px;
}
body.landing .btn-primary .arrow { transition: transform 0.2s; }
body.landing .btn-primary:hover .arrow { transform: translateX(3px); }

.btn-lg { padding: 16px 28px !important; font-size: 15px !important; border-radius: 12px !important; }

.hero-v2 {
  text-align: center;
  padding: 120px 32px 80px;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  font-size: 12px;
  color: var(--text-dim);
  margin-bottom: 32px;
  font-weight: 500;
  backdrop-filter: blur(10px);
}
.hero-eyebrow .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 10px #10b981;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}
.hero-title {
  font-size: clamp(40px, 7vw, 88px);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -3.5px;
  margin: 0 0 28px;
  background: linear-gradient(180deg, #fff 0%, #c5c5d0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: hero-fade-up 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.hero-title-accent {
  background: linear-gradient(135deg, #ff5722 0%, #ff8a50 50%, #ffaa78 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}
.hero-lede {
  font-size: 19px;
  color: var(--text-dim);
  max-width: 620px;
  margin: 0 auto 40px;
  line-height: 1.55;
  animation: hero-fade-up 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both;
}
.hero-v2 .hero-cta {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 80px;
  animation: hero-fade-up 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}

.hero-product {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  animation: hero-fade-up 1s cubic-bezier(0.16, 1, 0.3, 1) 0.35s both;
}
.product-glow {
  position: absolute;
  inset: -100px;
  background: radial-gradient(ellipse at center, rgba(255, 87, 34, 0.3), transparent 60%);
  filter: blur(80px);
  z-index: -1;
  opacity: 0.6;
}
.product-frame {
  background: linear-gradient(180deg, #14141c 0%, #0c0c12 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04),
    0 50px 120px rgba(0, 0, 0, 0.7),
    0 0 80px rgba(255, 87, 34, 0.15);
  position: relative;
}
.product-frame::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}
.product-chrome {
  display: flex;
  align-items: center;
  padding: 14px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  gap: 14px;
  background: rgba(255, 255, 255, 0.02);
}
.product-dots {
  display: flex;
  gap: 6px;
}
.product-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
}
.product-dots span:nth-child(1) { background: #ff5f57; }
.product-dots span:nth-child(2) { background: #febc2e; }
.product-dots span:nth-child(3) { background: #28c840; }
.product-url {
  flex: 1;
  text-align: center;
  font-size: 12px;
  color: var(--text-dim);
  font-family: "JetBrains Mono", monospace;
}
.product-body {
  display: grid;
  grid-template-columns: 200px 1fr;
  min-height: 360px;
}
.product-sidebar {
  padding: 20px 12px;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.product-nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: 8px;
  font-size: 12px;
  color: var(--text-dim);
  font-weight: 500;
}
.product-nav-item.active {
  background: var(--accent-soft);
  color: var(--accent);
}
.pi-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.6;
}
.product-main { padding: 22px 24px; }
.product-greeting {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 18px;
}
.product-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 18px;
}
.ps-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 12px 14px;
  position: relative;
  overflow: hidden;
}
.ps-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--text-faint);
  margin-bottom: 4px;
}
.ps-value {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.5px;
}
.ps-cents { font-size: 14px; opacity: 0.6; }
.ps-trend {
  font-size: 10px;
  font-weight: 600;
  margin-top: 4px;
  display: inline-block;
}
.ps-trend.up { color: var(--green); }
.ps-spark {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 24px;
  opacity: 0.5;
}
.ps-spark svg { width: 100%; height: 100%; }
.product-orders {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.po-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 8px;
}
.po-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
  flex-shrink: 0;
}
.po-info { flex: 1; min-width: 0; }
.po-name { font-size: 12px; font-weight: 600; }
.po-meta { font-size: 10px; color: var(--text-dim); margin-top: 2px; font-family: "JetBrains Mono", monospace; }
.po-status {
  font-size: 10px;
  padding: 4px 10px;
  border-radius: 999px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.po-status.done { background: rgba(16, 185, 129, 0.15); color: var(--green); }
.po-status.running { background: rgba(255, 87, 34, 0.15); color: var(--accent); }

.trust-strip {
  padding: 60px 32px 40px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  background: rgba(255, 255, 255, 0.01);
}
.trust-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-faint);
  margin-bottom: 24px;
  font-weight: 600;
}
.trust-platforms {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 36px 48px;
  max-width: 1100px;
  margin: 0 auto;
}
.trust-item {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dim);
  letter-spacing: -0.5px;
  transition: color 0.2s;
}
.trust-item:hover { color: var(--text); }

body.landing .section {
  max-width: 1200px;
  padding: 120px 32px;
}
.section-tight { padding: 80px 32px !important; }
.section-head {
  text-align: center;
  margin-bottom: 64px;
}
.section-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
  padding: 6px 14px;
  background: var(--accent-soft);
  border: 1px solid rgba(255, 87, 34, 0.2);
  border-radius: 999px;
}
.section-title {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -2px;
  margin: 0 0 16px;
}
.section-title .muted {
  color: var(--text-faint);
}
.section-sub {
  font-size: 16px;
  color: var(--text-dim);
  max-width: 560px;
  margin: 0 auto;
}

.bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.bento-card {
  background: linear-gradient(180deg, #0f0f15 0%, #0a0a10 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.bento-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 1px;
  background: linear-gradient(135deg, transparent 30%, rgba(255, 87, 34, 0.4) 50%, transparent 70%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s;
}
.bento-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 87, 34, 0.3);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5), 0 0 60px rgba(255, 87, 34, 0.15);
}
.bento-card:hover::before { opacity: 1; }
.bento-lg { grid-column: span 2; }
.bento-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 5px 11px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.bento-card h3 {
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 12px;
  letter-spacing: -0.5px;
}
.bento-card p {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.6;
  margin: 0;
}
.bento-visual {
  margin-top: 32px;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.visual-network { position: relative; }
.visual-network .net-center {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  color: #0a0a0f;
  font-size: 22px;
  z-index: 2;
  box-shadow: 0 8px 28px rgba(255, 87, 34, 0.5);
}
.visual-network .net-node {
  position: absolute;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 87, 34, 0.2);
  border: 1px solid rgba(255, 87, 34, 0.4);
  animation: net-pulse 3s ease-in-out infinite;
}
.visual-network .net-node.n1 { top: 5%; left: 12%; animation-delay: 0s; }
.visual-network .net-node.n2 { top: 12%; right: 12%; animation-delay: 0.5s; }
.visual-network .net-node.n3 { bottom: 12%; left: 16%; animation-delay: 1s; }
.visual-network .net-node.n4 { bottom: 12%; right: 16%; animation-delay: 1.5s; }
.visual-network .net-node.n5 { top: 0%; left: 47%; animation-delay: 2s; }
@keyframes net-pulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.2); opacity: 1; }
}
.net-lines { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; }
.net-lines line { stroke: rgba(255, 87, 34, 0.2); stroke-width: 1; stroke-dasharray: 4, 4; }

.visual-clock { display: flex; align-items: center; justify-content: center; }
.clock-circle { width: 120px; height: 120px; position: relative; }
.clock-circle svg { width: 100%; height: 100%; }
.clock-num {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 800;
  color: var(--accent);
}

.visual-lock { display: flex; align-items: center; justify-content: center; }
.lock-shield {
  font-size: 64px;
  filter: drop-shadow(0 8px 24px rgba(255, 87, 34, 0.4));
}

.visual-coin { display: flex; align-items: center; justify-content: center; }
.coin {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff5722, #ffaa78);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  font-weight: 900;
  color: #fff;
  box-shadow: 0 12px 32px rgba(255, 87, 34, 0.5), inset 0 -8px 16px rgba(0, 0, 0, 0.2);
  animation: coin-spin 8s linear infinite;
}
@keyframes coin-spin {
  0%, 100% { transform: rotateY(0); }
  50% { transform: rotateY(180deg); }
}

.visual-progress {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: stretch;
  width: 100%;
}
.prog-row {
  display: grid;
  grid-template-columns: 100px 1fr 50px;
  gap: 12px;
  align-items: center;
}
.prog-label {
  font-size: 11px;
  color: var(--text-dim);
  font-weight: 500;
}
.prog-bar {
  height: 6px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 3px;
  overflow: hidden;
}
.prog-fill {
  height: 100%;
  background: var(--gradient);
  border-radius: 3px;
  animation: prog-grow 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes prog-grow { from { width: 0; } }
.prog-num {
  font-size: 11px;
  text-align: right;
  font-family: "JetBrains Mono", monospace;
  color: var(--text-dim);
}

.numbers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.06);
  max-width: 1200px;
  margin: 60px auto;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.number {
  background: #0a0a10;
  padding: 48px 24px;
  text-align: center;
  transition: background 0.3s;
}
.number:hover { background: #10101a; }
.number-val {
  font-size: 52px;
  font-weight: 800;
  letter-spacing: -2px;
  background: linear-gradient(180deg, #fff 0%, #888 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-variant-numeric: tabular-nums;
}
.number-lbl {
  font-size: 12px;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 8px;
  font-weight: 600;
}

.steps-v2 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.step-v2 {
  background: linear-gradient(180deg, #0f0f15 0%, #0a0a10 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 32px 24px;
  transition: all 0.3s;
}
.step-v2:hover {
  border-color: rgba(255, 87, 34, 0.3);
  transform: translateY(-3px);
}
.step-v2 .step-num {
  font-size: 14px;
  font-weight: 800;
  color: var(--accent);
  font-family: "JetBrains Mono", monospace;
  margin-bottom: 16px;
  background: none;
  width: auto;
  height: auto;
  border: none;
  display: block;
  text-align: left;
  box-shadow: none;
}
.step-v2 h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 8px;
}
.step-v2 p {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.6;
  margin: 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}
.price-card {
  background: linear-gradient(180deg, #0f0f15 0%, #0a0a10 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 18px;
  padding: 32px 28px;
  position: relative;
  transition: all 0.3s;
}
.price-card:hover {
  border-color: rgba(255, 255, 255, 0.12);
  transform: translateY(-3px);
}
.price-card.featured {
  border-color: var(--accent);
  background: linear-gradient(180deg, rgba(255, 87, 34, 0.08) 0%, #0a0a10 60%);
  box-shadow: 0 30px 60px rgba(255, 87, 34, 0.18);
}
.price-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient);
  color: #0a0a0f;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.2px;
  padding: 6px 14px;
  border-radius: 999px;
}
.price-platform {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 12px 0;
  font-size: 14px;
  color: var(--text-dim);
}
.price-row:not(:last-child) { border-bottom: 1px solid rgba(255, 255, 255, 0.04); }
.price-val {
  color: var(--text);
  font-weight: 700;
  font-size: 16px;
}
.price-val small {
  font-weight: 500;
  color: var(--text-faint);
  font-size: 12px;
}
.price-foot { text-align: center; margin-top: 48px; }

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}
.faq-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 18px 22px;
  transition: all 0.2s;
}
.faq-item[open] { border-color: rgba(255, 87, 34, 0.3); background: rgba(255, 87, 34, 0.04); }
.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 15px;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-item summary::after {
  content: "+";
  font-size: 24px;
  font-weight: 300;
  color: var(--accent);
  transition: transform 0.2s;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item p {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.6;
  margin: 12px 0 0;
}

.cta-v2 {
  padding: 100px 32px;
  max-width: 1200px;
  margin: 0 auto;
}
.cta-card {
  background: linear-gradient(135deg, #ff5722 0%, #ff8a50 100%);
  border-radius: 24px;
  padding: 80px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(255, 87, 34, 0.3);
}
.cta-card::before {
  content: "";
  position: absolute;
  top: -100%;
  left: -100%;
  width: 300%;
  height: 300%;
  background: conic-gradient(from 0deg, transparent, rgba(255, 255, 255, 0.15), transparent 50%);
  animation: cta-spin 12s linear infinite;
  pointer-events: none;
}
.cta-card h2 {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  margin: 0 0 16px;
  color: #0a0a0f;
  letter-spacing: -2px;
  position: relative;
}
.cta-card p {
  font-size: 18px;
  color: rgba(10, 10, 15, 0.8);
  margin: 0 0 32px;
  position: relative;
}
.cta-card .btn-primary {
  background: #0a0a0f !important;
  color: #fff !important;
  border: none;
  position: relative;
  z-index: 1;
}
.cta-card .btn-primary:hover {
  background: #16161f !important;
  transform: translateY(-2px) scale(1.02);
}

.footer-v2 {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 60px 32px 32px;
  background: rgba(255, 255, 255, 0.01);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  margin-bottom: 48px;
}
.footer-brand p {
  color: var(--text-dim);
  font-size: 13px;
  margin-top: 16px;
  max-width: 320px;
  line-height: 1.6;
}
.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.footer-col h4 {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--text-faint);
  margin: 0 0 16px;
  font-weight: 700;
}
.footer-col a {
  display: block;
  color: var(--text-dim);
  font-size: 13px;
  padding: 6px 0;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text-faint);
}

@media (max-width: 1024px) {
  .bento { grid-template-columns: repeat(2, 1fr); }
  .bento-lg { grid-column: span 2; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; }
  .steps-v2 { grid-template-columns: repeat(2, 1fr); }
  .numbers { grid-template-columns: repeat(2, 1fr); }
  .product-body { grid-template-columns: 1fr; }
  .product-sidebar { display: none; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 768px) {
  body.landing .topnav { padding: 16px 20px; }
  body.landing .topnav-links { display: none; }
  .hero-v2 { padding: 80px 20px 60px; }
  .hero-v2 .hero-cta { flex-direction: column; }
  .hero-v2 .hero-cta .btn { width: 100%; justify-content: center; }
  body.landing .section { padding: 80px 20px; }
  .section-title { font-size: 32px; letter-spacing: -1px; }
  .bento { grid-template-columns: 1fr; }
  .bento-lg { grid-column: 1; }
  .product-stats { grid-template-columns: 1fr; }
  .trust-platforms { gap: 24px 32px; }
  .trust-item { font-size: 14px; }
  .faq-grid { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

.notif-bell-btn {
  position: relative;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-strong);
  color: var(--text);
  width: 40px;
  height: 40px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 16px;
  transition: all 0.15s;
}
.notif-bell-btn:hover { background: var(--accent-soft); border-color: var(--accent); }
.notif-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 18px;
  height: 18px;
  border-radius: 9px;
  background: var(--accent);
  color: #0a0a0f;
  font-size: 10px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 5px;
  border: 2px solid #0a0a0f;
  animation: bell-pulse 2s ease-in-out infinite;
}
.notif-badge.hidden { display: none; }
@keyframes bell-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.notif-dropdown {
  position: fixed;
  top: 80px;
  right: 24px;
  width: 360px;
  max-height: 500px;
  background: rgba(20, 20, 28, 0.97);
  backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid var(--border-strong);
  border-radius: 16px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7);
  z-index: 200;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  animation: dropdown-pop 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
.notif-dropdown.hidden { display: none; }
@keyframes dropdown-pop {
  from { opacity: 0; transform: translateY(-10px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.notif-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  font-weight: 700;
  font-size: 14px;
}
.notif-head button {
  background: none;
  border: none;
  color: var(--accent);
  font-size: 12px;
  cursor: pointer;
  font-weight: 600;
}
.notif-list {
  overflow-y: auto;
  max-height: 420px;
}
.notif-item {
  padding: 14px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  cursor: pointer;
  transition: background 0.15s;
}
.notif-item:hover { background: rgba(255, 255, 255, 0.04); }
.notif-item.unread { background: rgba(255, 87, 34, 0.05); border-left: 3px solid var(--accent); padding-left: 17px; }
.notif-item .notif-title { font-weight: 700; font-size: 13px; margin-bottom: 4px; }
.notif-item .notif-body { font-size: 12px; color: var(--text-dim); line-height: 1.5; margin-bottom: 4px; }
.notif-item .notif-time { font-size: 10px; color: var(--text-faint); }

.ticket-list {
  display: flex;
  flex-direction: column;
}
.ticket-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  transition: background 0.15s;
}
.ticket-row:hover { background: rgba(255, 255, 255, 0.02); }
.ticket-row:last-child { border-bottom: none; }
.ticket-prio {
  width: 4px;
  height: 40px;
  border-radius: 2px;
  flex-shrink: 0;
}
.ticket-prio.prio-low { background: var(--text-faint); }
.ticket-prio.prio-normal { background: var(--blue); }
.ticket-prio.prio-high { background: var(--yellow); }
.ticket-prio.prio-urgent { background: var(--red); animation: pulse-prio 2s ease-in-out infinite; }
@keyframes pulse-prio {
  0%, 100% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.6); }
  50% { box-shadow: 0 0 0 6px rgba(239, 68, 68, 0); }
}
.ticket-info { flex: 1; min-width: 0; }
.ticket-subj {
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ticket-meta {
  font-size: 11px;
  color: var(--text-dim);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.ticket-thread {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.msg {
  padding: 14px 18px;
  border-radius: 14px;
  max-width: 90%;
}
.msg-user {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  align-self: flex-start;
}
.msg-admin {
  background: linear-gradient(135deg, rgba(255, 87, 34, 0.12), rgba(255, 138, 80, 0.04));
  border: 1px solid rgba(255, 87, 34, 0.25);
  align-self: flex-end;
}
.msg-head {
  font-size: 11px;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.msg-head .muted { color: var(--text-faint); margin-left: auto; font-size: 10px; }
.msg-body {
  font-size: 13px;
  line-height: 1.6;
  white-space: pre-wrap;
  word-wrap: break-word;
}

.back-home {
  position: fixed;
  top: 28px;
  left: 28px;
  color: var(--text-dim);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  backdrop-filter: blur(10px);
  transition: all 0.2s;
  z-index: 100;
}
.back-home:hover { color: var(--text); background: rgba(255, 255, 255, 0.08); border-color: var(--accent); }

body.landing .auth-card {
  background: linear-gradient(180deg, rgba(20, 20, 28, 0.9) 0%, rgba(10, 10, 16, 0.9) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  padding: 48px 40px;
}
body.landing .auth-card .auth-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 14px;
  color: var(--text);
  text-decoration: none;
  margin: 0 auto 32px;
  width: fit-content;
}
body.landing .auth-card .auth-brand .brand-logo {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  font-size: 14px;
  margin: 0;
  box-shadow: 0 4px 14px rgba(255, 87, 34, 0.4);
}
body.landing .auth-card h1 {
  font-size: 28px;
  letter-spacing: -1px;
  margin: 0 0 8px;
  background: linear-gradient(180deg, #fff 0%, #c5c5d0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.auth-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 24px 0 18px;
  color: var(--text-faint);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.auth-divider::before, .auth-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.06);
}

.ord-status-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.ord-progress {
  margin: 18px 0;
  padding: 16px;
  background: rgba(255, 87, 34, 0.06);
  border: 1px solid rgba(255, 87, 34, 0.2);
  border-radius: 12px;
}
.ord-progress-bar {
  height: 8px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 10px;
}
.ord-progress-fill {
  height: 100%;
  background: var(--gradient);
  border-radius: 4px;
  transition: width 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 0 12px rgba(255, 87, 34, 0.6);
}
.ord-progress-meta {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--text-dim);
  font-weight: 600;
}
.ord-fields {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  overflow: hidden;
}
.ord-field {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  background: rgba(20, 20, 28, 0.8);
  font-size: 13px;
}
.ord-field span:first-child { color: var(--text-dim); font-weight: 500; }
.ord-field span:last-child, .ord-field a { color: var(--text); font-weight: 600; }
.ord-field a { color: var(--accent); }

.orders-list {
  display: flex;
  flex-direction: column;
}
.order-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 22px;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  transition: background 0.15s;
}
.order-row:hover { background: rgba(255, 255, 255, 0.02); }
.order-row:last-child { border-bottom: none; }
.order-main { flex: 1; min-width: 0; }
.order-name {
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.order-meta {
  font-size: 11px;
  color: var(--text-dim);
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.order-side { text-align: right; flex-shrink: 0; }

@media (max-width: 768px) {
  /* Auth */
  body.landing .auth-card { padding: 36px 24px; }
  body.landing .auth-card h1 { font-size: 24px; }
  .back-home { top: 16px; left: 16px; padding: 6px 12px; font-size: 12px; }

  /* Sidebar -> bottom nav */
  .sidebar {
    width: 100%;
    height: auto;
    bottom: 0;
    top: auto;
    border-right: none;
    border-top: 1px solid var(--border);
    flex-direction: row;
    padding: 8px 4px calc(8px + env(safe-area-inset-bottom));
    overflow-x: auto;
    z-index: 100;
    background: rgba(10, 10, 16, 0.95);
    backdrop-filter: blur(20px);
  }
  .sidebar .brand, .sidebar .nav-section, .sidebar-foot { display: none; }
  .sidebar nav { flex-direction: row; gap: 2px; width: 100%; }
  .sidebar nav a {
    flex-direction: column;
    padding: 8px 4px;
    font-size: 9px;
    gap: 2px;
    flex: 1 0 60px;
    text-align: center;
    justify-content: center;
    min-width: 60px;
    border-radius: 10px;
  }
  .sidebar nav a .icon { font-size: 18px; width: auto; }
  .sidebar nav a.active { box-shadow: none; background: var(--accent-soft); }

  .main { margin-left: 0; padding-bottom: 90px; }
  .app-topbar {
    padding: 14px 16px;
    flex-wrap: wrap;
    gap: 10px;
  }
  .app-topbar h1 { font-size: 16px; }
  .app-topbar .sub { font-size: 11px; }
  .app-content { padding: 16px; }

  .welcome-banner { padding: 20px; flex-direction: column; align-items: stretch; gap: 14px; }
  .welcome-banner h2 { font-size: 18px; }
  .welcome-banner-actions { width: 100%; }
  .welcome-banner-actions .btn { flex: 1; justify-content: center; }

  .stats-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .stat-card { padding: 16px 14px; }
  .stat-value { font-size: 22px; }
  .stat-icon { font-size: 18px; margin-bottom: 6px; }

  /* Cards */
  .card { padding: 18px; }

  /* Modals */
  .modal { padding: 12px; align-items: flex-start; padding-top: 16px; }
  .modal-box { max-height: calc(100vh - 32px); }
  .modal-head { padding: 18px 20px; }
  .modal-body { padding: 20px; }
  .modal-foot { padding: 14px 20px; flex-wrap: wrap; }
  .modal-foot .btn { flex: 1; justify-content: center; min-width: 120px; }

  /* Forms */
  .field-row { grid-template-columns: 1fr; gap: 10px; }
  .input, .select, .textarea { font-size: 16px; padding: 13px 14px; }

  /* Tickets */
  .ticket-row { padding: 14px 16px; gap: 12px; }
  .ticket-prio { height: 32px; }
  .ticket-subj { font-size: 13px; }

  /* Order rows */
  .order-row { padding: 14px 16px; gap: 12px; }

  /* Notifications */
  .notif-dropdown {
    position: fixed;
    top: auto;
    bottom: 80px;
    right: 12px;
    left: 12px;
    width: auto;
    max-height: 60vh;
  }

  /* Toast */
  .toast-stack { top: auto; bottom: 90px; right: 12px; left: 12px; }
  .toast-item { min-width: 0; max-width: 100%; transform: translateY(120%) scale(0.95); }
  .toast-item.show { transform: translateY(0) scale(1); }

  /* Service grid */
  .svc-grid { grid-template-columns: 1fr; }

  /* Bot/orders mobile */
  .ord-fields { font-size: 12px; }
  .ord-field { padding: 10px 12px; }

  /* Hide CSV button text on mobile */
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .modal-box { width: calc(100vw - 24px); margin: 0; }
  .sidebar nav a { font-size: 8px; min-width: 52px; }
  .app-topbar h1 { font-size: 14px; }
  .app-content { padding: 12px; }
  .welcome-banner { padding: 18px 16px; }
  .welcome-banner h2 { font-size: 16px; }
  .notif-bell-btn { width: 36px; height: 36px; }
}

.modal-confirm {
  text-align: center;
  padding: 40px 32px 28px;
  max-width: 420px;
}
.modal.closing { animation: modal-fade-out 0.2s ease-in forwards; }
@keyframes modal-fade-out { from { opacity: 1; } to { opacity: 0; } }
.modal-confirm .confirm-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  border-radius: 18px;
  background: var(--accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  box-shadow: 0 12px 32px rgba(255, 87, 34, 0.25);
}
.modal-confirm .confirm-icon.danger {
  background: rgba(239, 68, 68, 0.15);
  box-shadow: 0 12px 32px rgba(239, 68, 68, 0.3);
}
.modal-confirm .confirm-icon.success {
  background: rgba(16, 185, 129, 0.15);
  box-shadow: 0 12px 32px rgba(16, 185, 129, 0.3);
}
.modal-confirm .confirm-title {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.5px;
}
.modal-confirm .confirm-msg {
  margin: 0 0 24px;
  color: var(--text-dim);
  font-size: 14px;
  line-height: 1.55;
}
.modal-confirm .confirm-actions {
  display: flex;
  gap: 10px;
  justify-content: center;
}
.modal-confirm .confirm-actions .btn {
  min-width: 120px;
  justify-content: center;
}

.svc-card {
  position: relative;
  overflow: hidden;
}
.svc-disabled {
  opacity: 0.65;
}
.svc-disabled:hover { transform: none; }
.svc-overlay {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 5px 11px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  z-index: 2;
}
.svc-overlay.paused {
  background: rgba(251, 191, 36, 0.18);
  color: var(--yellow);
  border: 1px solid rgba(251, 191, 36, 0.4);
}
.svc-overlay.coming {
  background: rgba(59, 130, 246, 0.18);
  color: var(--blue);
  border: 1px solid rgba(59, 130, 246, 0.4);
}

.svc-actions {
  display: flex;
  gap: 4px;
  flex-wrap: nowrap;
}
.svc-actions .btn {
  padding: 6px 9px;
  font-size: 13px;
  min-width: 32px;
}

.api-key-box {
  background: linear-gradient(135deg, #0a0a10, #14141c);
  border: 1px solid rgba(255, 87, 34, 0.3);
  border-radius: 12px;
  padding: 18px 20px;
  font-family: "JetBrains Mono", monospace;
  font-size: 13px;
  word-break: break-all;
  margin: 18px 0 14px;
  color: var(--accent);
  position: relative;
  box-shadow: inset 0 0 30px rgba(255, 87, 34, 0.05);
}
.btn-block { width: 100%; }

@media (max-width: 768px) {
  .modal-confirm { padding: 32px 22px 22px; max-width: calc(100vw - 24px); }
  .modal-confirm .confirm-icon { width: 60px; height: 60px; font-size: 28px; }
  .modal-confirm .confirm-title { font-size: 18px; }
  .modal-confirm .confirm-actions .btn { flex: 1; min-width: 0; }
  .svc-actions { gap: 3px; }
  .svc-actions .btn { padding: 5px 7px; font-size: 12px; min-width: 28px; }
}

.bulk-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding: 14px 22px;
  background: linear-gradient(135deg, rgba(255, 87, 34, 0.18), rgba(255, 138, 80, 0.06));
  border: 1px solid rgba(255, 87, 34, 0.35);
  border-radius: 14px;
  margin-bottom: 14px;
  font-weight: 700;
  font-size: 14px;
  animation: bulk-slide 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  flex-wrap: wrap;
}
@keyframes bulk-slide {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}
.bulk-bar.hidden { display: none; }
.bulk-actions { display: flex; gap: 6px; flex-wrap: wrap; }

.grid-2col {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 18px;
  margin-top: 18px;
}
@media (max-width: 968px) { .grid-2col { grid-template-columns: 1fr; } }

.profit-totals {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.top-svc-list {
  display: flex;
  flex-direction: column;
}
.top-svc-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.top-svc-row:last-child { border-bottom: none; }
.top-svc-rank {
  font-size: 12px;
  font-weight: 800;
  color: var(--accent);
  width: 28px;
  font-family: "JetBrains Mono", monospace;
}
.top-svc-info { flex: 1; min-width: 0; }
.top-svc-name { font-weight: 700; font-size: 13px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.top-svc-rev { font-weight: 800; font-size: 14px; color: var(--green); flex-shrink: 0; }

.data-table input[type="checkbox"] {
  width: 16px;
  height: 16px;
  cursor: pointer;
  accent-color: var(--accent);
}

.compare-table {
  max-width: 800px;
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(180deg, #0f0f15 0%, #0a0a10 100%);
}
.compare-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  align-items: center;
  padding: 18px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  font-size: 14px;
  transition: background 0.2s;
}
.compare-row:hover { background: rgba(255, 87, 34, 0.03); }
.compare-row:last-child { border-bottom: none; }
.compare-row.compare-head {
  background: rgba(255, 255, 255, 0.02);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 700;
  color: var(--text-faint);
  padding: 14px 24px;
}
.compare-row > div:nth-child(2),
.compare-row > div:nth-child(3) {
  text-align: center;
  font-weight: 600;
}
.compare-row .compare-us {
  color: var(--accent);
  font-weight: 800;
}
.compare-row.compare-head .compare-us { color: var(--accent); }
.compare-row .compare-feat { color: var(--text); }
.compare-row .ck {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.18);
  color: var(--green);
  font-weight: 900;
  font-size: 14px;
}
.compare-row .x {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(239, 68, 68, 0.15);
  color: var(--red);
  font-weight: 900;
  font-size: 14px;
}
.compare-row .muted { color: var(--text-faint); font-size: 12px; }

@media (max-width: 768px) {
  .compare-row { grid-template-columns: 1.4fr 1fr 1fr; padding: 14px 16px; font-size: 12px; gap: 8px; }
  .compare-row.compare-head { font-size: 10px; padding: 12px 16px; }
  .compare-row .ck, .compare-row .x { width: 22px; height: 22px; font-size: 12px; }
}

/* Verify page */
.auth-wrap { width: 100%; box-sizing: border-box; }
.auth-card { width: 100%; box-sizing: border-box; }

/* Universal box-sizing */
.modal-box, .card, .input, .select, .textarea, .btn,
.bento-card, .price-card, .step-v2, .feature, .platform, .testimonial-card,
.welcome-banner, .compare-table, .compare-row, .product-frame {
  box-sizing: border-box;
  max-width: 100%;
}

/* Prevent any layout overflow */
html, body { overflow-x: hidden; }
section, .section { max-width: 100%; box-sizing: border-box; }

/* Tablets (768-1024) */
@media (max-width: 1024px) {
  .hero-v2 { padding: 80px 24px 60px; }
  .hero-title { font-size: clamp(38px, 6vw, 64px); letter-spacing: -2px; }
  .product-frame { box-shadow: 0 30px 60px rgba(0,0,0,0.5); }
  .product-stats { grid-template-columns: repeat(3, 1fr); }
  .compare-table { font-size: 13px; }
  .grid-2col { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: repeat(3, 1fr); }
}

/* Phones (<= 768) - apply tighter layout, wrap everything */
@media (max-width: 768px) {
  /* Topnav */
  body.landing .topnav { flex-wrap: wrap; padding: 14px 16px; gap: 8px; }
  body.landing .topnav-actions { gap: 6px; }
  body.landing .topnav-actions .btn { padding: 8px 14px; font-size: 12px; }
  body.landing .topnav-actions .btn .arrow { display: none; }
  body.landing .brand span { display: none; }

  /* Hero */
  .hero-v2 { padding: 50px 16px 40px; }
  .hero-title { font-size: 36px !important; letter-spacing: -1.5px; }
  .hero-lede { font-size: 15px; }

  /* Product mockup - simplify on mobile */
  .product-frame { transform: scale(0.95); }
  .product-body { grid-template-columns: 1fr; }
  .product-sidebar { display: none; }
  .product-stats { grid-template-columns: 1fr; gap: 8px; }
  .ps-card { padding: 10px 12px; }
  .product-orders { gap: 6px; }
  .po-row { padding: 8px 10px; gap: 10px; }
  .po-icon { width: 28px; height: 28px; font-size: 12px; }
  .po-name { font-size: 11px; }
  .po-meta { font-size: 9px; }
  .po-status { font-size: 9px; padding: 3px 8px; }

  /* Trust strip */
  .trust-strip { padding: 40px 16px 30px; }
  .trust-platforms { gap: 18px 28px; }
  .trust-item { font-size: 13px; }
  .trust-label { font-size: 10px; }

  /* Sections */
  body.landing .section { padding: 60px 16px; }
  .section-tight { padding: 50px 16px !important; }
  .section-title { font-size: 28px !important; letter-spacing: -1px; }
  .section-eyebrow { font-size: 10px; padding: 5px 11px; }
  .section-sub { font-size: 14px; }
  .section-head { margin-bottom: 40px; }

  /* Bento */
  .bento { gap: 14px; }
  .bento-card { padding: 24px 22px; border-radius: 18px; }
  .bento-card h3 { font-size: 20px; }
  .bento-card p { font-size: 13px; }
  .bento-visual { height: 130px; }
  .bento-tag { font-size: 9px; padding: 4px 9px; }

  /* Numbers */
  .numbers { grid-template-columns: 1fr 1fr; gap: 1px; margin: 40px 16px; border-radius: 16px; }
  .number { padding: 32px 16px; }
  .number-val { font-size: 36px; letter-spacing: -1px; }
  .number-lbl { font-size: 11px; }

  /* Steps */
  .steps-v2 { grid-template-columns: 1fr; gap: 14px; }
  .step-v2 { padding: 24px 20px; }

  /* Pricing */
  .price-card { padding: 26px 22px; }
  .price-platform { font-size: 16px; }
  .price-row { padding: 10px 0; font-size: 13px; }
  .price-val { font-size: 14px; }

  /* FAQ */
  .faq-grid { grid-template-columns: 1fr; gap: 12px; }
  .faq-item { padding: 16px 18px; }
  .faq-item summary { font-size: 14px; }

  /* CTA */
  .cta-v2 { padding: 60px 16px; }
  .cta-card { padding: 56px 24px; border-radius: 20px; }
  .cta-card h2 { font-size: 28px !important; letter-spacing: -1px; }
  .cta-card p { font-size: 15px; }

  /* Footer */
  .footer-v2 { padding: 50px 16px 24px; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; margin-bottom: 32px; }
  .footer-cols { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  /* Auth */
  .auth-wrap { padding: 24px 16px; }
  body.landing .auth-card { padding: 32px 22px; }
  body.landing .auth-card h1 { font-size: 22px; }
  body.landing .auth-card .auth-sub { font-size: 13px; }
  .back-home { top: 16px; left: 16px; padding: 6px 12px; font-size: 11px; }

  /* Verify */
  .auth-wrap .brand-logo { width: 56px; height: 56px; font-size: 26px; }

  /* Compare table */
  .compare-table { margin: 0 4px; font-size: 11px; }

  /* App layout */
  .app-topbar h1 { font-size: 16px; }

  /* Welcome banner mobile */
  .welcome-banner { padding: 18px 20px; gap: 12px; flex-direction: column; align-items: stretch; text-align: center; }
  .welcome-banner h2 { font-size: 18px; }
  .welcome-banner p { font-size: 13px; }
  .welcome-banner-actions { width: 100%; justify-content: center; }

  /* Bulk bar */
  .bulk-bar { padding: 12px 16px; font-size: 12px; flex-direction: column; align-items: stretch; gap: 10px; }
  .bulk-actions { justify-content: center; }
  .bulk-actions .btn { font-size: 11px; padding: 6px 10px; }

  /* Stat cards */
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .stat-card { padding: 18px 16px; }
  .stat-value { font-size: 22px; }

  /* Table → card layout on mobile (no horizontal scroll) */
  .table-wrap { border-radius: 14px; }
  .table-header { padding: 14px 16px; }
  .table-header h3 { font-size: 14px; width: 100%; }
  .table-actions { width: 100%; justify-content: stretch; }
  .table-actions .input, .table-actions .select { flex: 1 1 130px; min-width: 0; width: auto !important; font-size: 14px; }
  .table-actions .btn { flex: 1 1 auto; }
  .data-table { display: block; overflow-x: visible; min-width: 0 !important; width: 100%; }
  .data-table thead { display: none; }
  .data-table tbody { display: block; }
  .data-table tr {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 6px 12px;
    padding: 14px 16px;
    border-bottom: 1px solid var(--border);
    background: rgba(255,255,255,0.015);
    margin: 0;
  }
  .data-table tr:hover { background: rgba(255,255,255,0.03); }
  .data-table td {
    display: contents;
    padding: 0;
    border: none;
    font-size: 13px;
  }
  .data-table td::before {
    content: attr(data-label);
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: var(--text-faint);
    align-self: center;
  }
  .data-table td[data-label=""]::before { display: none; content: none; }
  .data-table td.td-check { display: contents; }
  .data-table td.td-check input { grid-column: 1 / -1; justify-self: start; }
  .data-table td.td-name b { font-size: 14px; color: var(--text); }
  .data-table tr td:last-child .svc-actions { grid-column: 2; }
  .data-table tr td.empty {
    display: block;
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px 16px;
  }
  .data-table tr td.empty::before { display: none; content: none; }

  /* Notification dropdown */
  .notif-dropdown {
    position: fixed;
    top: auto !important;
    bottom: 90px;
    left: 12px !important;
    right: 12px !important;
    width: auto !important;
    max-height: 60vh;
  }

  /* Toast stack */
  .toast-stack { top: auto; bottom: 90px; left: 12px; right: 12px; }
  .toast-item { min-width: 0; max-width: 100%; }

  /* Modals - fit phones perfectly */
  .modal { padding: 12px; align-items: center; }
  .modal-box { max-width: calc(100vw - 24px); max-height: 90vh; overflow-y: auto; }
  .modal-head { padding: 16px 20px; }
  .modal-body { padding: 18px 20px; }
  .modal-foot { padding: 14px 20px; flex-wrap: wrap; gap: 8px; }
  .modal-foot .btn { flex: 1; min-width: 100px; justify-content: center; }
  .modal-confirm { padding: 32px 20px 22px; }
  .modal-confirm .confirm-icon { width: 56px; height: 56px; font-size: 26px; }

  /* Forms */
  .field-row { grid-template-columns: 1fr; gap: 10px; }
  .input, .select, .textarea { font-size: 16px; padding: 12px 14px; }

  /* Service quick actions */
  .svc-actions { gap: 3px; }
  .svc-actions .btn { padding: 5px 7px; font-size: 11px; min-width: 28px; }

  /* Sidebar bottom nav (already responsive earlier) */
  .sidebar nav { overflow-x: auto; }

  /* Order rows */
  .order-row { padding: 14px 16px; gap: 10px; }
  .order-name { font-size: 13px; }
  .order-meta { font-size: 11px; }

  /* Ticket rows */
  .ticket-row { padding: 14px 16px; gap: 12px; }
  .ticket-prio { height: 32px; }

  /* Profit chart */
  .profit-totals { grid-template-columns: 1fr 1fr; gap: 12px; }
}

/* Tiny phones (≤ 480) */
@media (max-width: 480px) {
  .hero-title { font-size: 30px !important; }
  .stats-grid { grid-template-columns: 1fr; }
  .numbers { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: 1fr; }
  .price-card { padding: 22px 18px; }
  .compare-row { grid-template-columns: 1.5fr 0.8fr 0.8fr; padding: 12px 10px; gap: 4px; font-size: 11px; }
  .compare-row.compare-head { font-size: 9px; }
  .modal-box { width: calc(100vw - 16px); margin: 0; }
  .product-frame { transform: scale(0.92); margin: 0 -8px; }
}

/* iOS safe areas */
@supports (padding: max(0px)) {
  .sidebar { padding-bottom: max(8px, env(safe-area-inset-bottom)); }
  .main { padding-bottom: max(80px, calc(70px + env(safe-area-inset-bottom))); }
}

/* Smoother typography */
body { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; text-rendering: optimizeLegibility; }
h1, h2, h3, h4 { letter-spacing: -0.02em; }

/* All inputs - premium focus state */
input, select, textarea, button {
  font-family: inherit;
}
.input, .select, .textarea {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.input:hover, .select:hover, .textarea:hover {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.05);
}
.input:focus, .select:focus, .textarea:focus {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(255, 87, 34, 0.12), 0 0 28px rgba(255, 87, 34, 0.18);
}

/* Better button hover feedback */
.btn { position: relative; overflow: hidden; }
.btn:active { transform: scale(0.97); }
.btn-primary:active { transform: scale(0.97) translateY(0); }

/* Card polish */
.card {
  background: linear-gradient(180deg, rgba(255,255,255,0.025) 0%, rgba(255,255,255,0.01) 100%);
  border: 1px solid rgba(255,255,255,0.06);
  backdrop-filter: blur(10px);
  transition: border-color 0.2s, transform 0.2s;
}
.card:hover {
  border-color: rgba(255,255,255,0.1);
}

/* Stat card depth */
.stat-card {
  background: linear-gradient(135deg, rgba(20,20,30,0.8), rgba(10,10,15,0.6));
  border: 1px solid rgba(255,255,255,0.06);
  position: relative;
  overflow: hidden;
}
.stat-card::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,87,34,0.4), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.stat-card:hover::after { opacity: 1; }
.stat-card:hover { transform: translateY(-2px); }

/* Page entrance */
.app-content { animation: page-fade-in 0.5s cubic-bezier(0.16, 1, 0.3, 1); }
@keyframes page-fade-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Sidebar nav active state - sharper */
.sidebar a.active {
  background: linear-gradient(90deg, rgba(255,87,34,0.18), rgba(255,87,34,0.06));
  color: var(--accent);
  box-shadow: inset 3px 0 0 var(--accent);
}
.sidebar a:hover:not(.active) {
  background: rgba(255,255,255,0.04);
  color: var(--text);
}

/* Premium scroll snap on services grid */
.svc-card {
  background: linear-gradient(180deg, rgba(20,20,28,0.8), rgba(15,15,22,0.6));
  border: 1px solid rgba(255,255,255,0.06);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.svc-card:hover:not(.svc-disabled) {
  transform: translateY(-3px);
  border-color: rgba(255,87,34,0.4);
  box-shadow: 0 16px 40px rgba(255,87,34,0.15);
}
.svc-card .svc-cat {
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* Order rows */
.order-row, .ticket-row {
  transition: background 0.15s, transform 0.15s;
}
.order-row:hover, .ticket-row:hover {
  background: linear-gradient(90deg, rgba(255,87,34,0.04), transparent 60%);
}
.order-row:active, .ticket-row:active { transform: scale(0.99); }

/* Table rows - better hover */
.data-table tbody tr {
  transition: background 0.15s;
}
.data-table tbody tr:hover {
  background: rgba(255,87,34,0.04);
}

/* Modal box - premium glass */
.modal-box {
  background: linear-gradient(180deg, rgba(22,22,32,0.97), rgba(12,12,18,0.97));
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(40px) saturate(180%);
  box-shadow:
    0 50px 120px rgba(0,0,0,0.7),
    0 0 0 1px rgba(255,255,255,0.04),
    0 0 100px rgba(255,87,34,0.12);
}

/* Loading skeleton */
.skeleton {
  background: linear-gradient(90deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.08) 50%, rgba(255,255,255,0.04) 100%);
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.4s infinite;
  border-radius: 8px;
}
@keyframes skeleton-shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Empty states - more premium */
.empty {
  padding: 60px 20px;
  text-align: center;
  color: var(--text-dim);
}
.empty .icon {
  font-size: 56px;
  margin-bottom: 16px;
  opacity: 0.4;
  filter: grayscale(0.5);
}
.empty .btn { margin-top: 16px; }

/* App topbar premium */
.app-topbar {
  background: rgba(10, 10, 16, 0.85);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  position: sticky;
  top: 0;
  z-index: 50;
}

/* Welcome banner extra polish */
.welcome-banner {
  background:
    radial-gradient(ellipse at top right, rgba(255, 138, 80, 0.15), transparent 60%),
    linear-gradient(135deg, rgba(255, 87, 34, 0.12) 0%, rgba(255, 87, 34, 0.04) 100%);
  border: 1px solid rgba(255, 87, 34, 0.25);
  box-shadow: 0 12px 40px rgba(255, 87, 34, 0.1);
}
.welcome-banner h2 {
  background: linear-gradient(180deg, #fff 0%, #c5c5d0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Premium shadow on bento cards on hover */
.bento-card:hover {
  box-shadow:
    0 30px 80px rgba(0,0,0,0.6),
    0 0 80px rgba(255,87,34,0.18),
    inset 0 1px 0 rgba(255,255,255,0.05);
}

/* Better focus rings for accessibility */
*:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 6px;
}

/* Smoother scroll */
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 768px) {
  /* Force any wide content to fit */
  .product-frame { transform: none; max-width: 100%; }
  .product-stats { grid-template-columns: repeat(3, 1fr) !important; gap: 6px; }
  .ps-card { padding: 8px 10px; }
  .ps-value { font-size: 16px; }
  .ps-label { font-size: 9px; }

  /* Sticky topbar */
  .app-topbar { padding: 14px 16px; }

  /* Profile/account pages */
  .profile-grid { grid-template-columns: 1fr !important; }

  /* Form rows always single col */
  .field-row { grid-template-columns: 1fr !important; }

  /* Welcome banner takes full width */
  .welcome-banner { padding: 22px 20px; border-radius: 16px; }
}

/* Tap target padding for better mobile */
@media (pointer: coarse) {
  .btn { min-height: 44px; }
  .btn-sm { min-height: 36px; }
  .btn-mini, button.btn-mini { min-height: 32px; }
}

.social-ticker {
  position: fixed;
  bottom: 20px;
  left: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: linear-gradient(135deg, #1a1a24, #0a0a0f);
  border: 1px solid rgba(255,87,34,0.35);
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6), 0 0 40px rgba(255,87,34,0.15);
  max-width: 340px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 9999;
  pointer-events: none;
}
.social-ticker.show { opacity: 1; transform: translateY(0); pointer-events: auto; }
.ticker-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff5722, #ff8a65);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(255,87,34,0.4);
}
.ticker-text {
  flex: 1;
  min-width: 0;
  font-size: 13px;
  color: var(--text);
  line-height: 1.4;
}
.ticker-text b { font-weight: 800; }
.ticker-time {
  font-size: 11px;
  color: var(--text-faint);
  margin-top: 3px;
}
.ticker-close {
  background: transparent;
  border: none;
  color: var(--text-dim);
  font-size: 18px;
  cursor: pointer;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: color 0.2s;
}
.ticker-close:hover { color: var(--text); }
@media (max-width: 520px) {
  .social-ticker { left: 12px; right: 12px; bottom: 12px; max-width: none; padding: 12px 14px; }
  .ticker-text { font-size: 12px; }
}

.err-wrap {
  max-width: 560px;
  margin: 0 auto;
  padding: 140px 24px 80px;
  text-align: center;
  position: relative;
  z-index: 2;
}
.err-logo { margin-bottom: 24px; display: flex; justify-content: center; }
.err-logo svg {
  border-radius: 18px;
  box-shadow: 0 0 60px rgba(255,87,34,0.4);
  animation: err-float 3s ease-in-out infinite;
}
@keyframes err-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.err-code {
  font-size: clamp(80px, 14vw, 140px);
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(180deg, #ff8a65, #ff5722 60%, transparent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.04em;
  margin-bottom: 16px;
}
.err-wrap h1 {
  font-size: clamp(26px, 4vw, 38px);
  margin: 0 0 14px;
  letter-spacing: -0.015em;
}
.err-wrap p {
  color: var(--text-dim);
  font-size: 15px;
  line-height: 1.6;
  margin: 0 auto 28px;
  max-width: 440px;
}
.err-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.err-links {
  font-size: 13px;
  color: var(--text-faint);
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.err-links a { color: var(--text-dim); text-decoration: none; margin: 0 4px; transition: color 0.2s; }
.err-links a:hover { color: var(--accent); }

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 1200px;
  margin: 0 auto;
}
.testi-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 26px 26px;
  transition: all 0.3s;
  position: relative;
}
.testi-card:hover {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,87,34,0.3);
  transform: translateY(-4px);
}
.testi-card.testi-featured {
  background: linear-gradient(135deg, rgba(255,87,34,0.08), rgba(255,87,34,0.02));
  border-color: rgba(255,87,34,0.3);
}
.testi-stars { font-size: 14px; margin-bottom: 14px; letter-spacing: 1px; }
.testi-text {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text);
  margin: 0 0 22px;
  font-weight: 500;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(0,0,0,0.3);
}
.testi-name { font-weight: 800; font-size: 14px; color: var(--text); }
.testi-role { font-size: 12px; color: var(--text-dim); margin-top: 2px; }
@media (max-width: 900px) {
  .testi-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .testi-card { padding: 22px 22px; }
  .testi-text { font-size: 13px; }
}
@media (max-width: 600px) {
  .testi-grid { grid-template-columns: 1fr; }
}

.refer-hero {
  position: relative;
  background: linear-gradient(135deg, rgba(255,87,34,0.14), rgba(16,185,129,0.06));
  border: 1px solid rgba(255,87,34,0.3);
  border-radius: 24px;
  padding: 44px 44px;
  overflow: hidden;
}
.refer-hero::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -10%;
  width: 460px;
  height: 460px;
  background: radial-gradient(circle, rgba(255,87,34,0.25), transparent 65%);
  filter: blur(50px);
  pointer-events: none;
  animation: pulse-glow 4s ease-in-out infinite;
}
.refer-hero::after {
  content: "🎁";
  position: absolute;
  right: 44px;
  top: 50%;
  transform: translateY(-50%) rotate(-10deg);
  font-size: 160px;
  opacity: 0.08;
  pointer-events: none;
}
.refer-hero-inner { position: relative; z-index: 1; max-width: 720px; }
.refer-hero-badge {
  display: inline-block;
  padding: 6px 14px;
  background: var(--accent);
  color: #0a0a0f;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.5px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.refer-hero-title {
  margin: 0 0 18px;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--text);
}
.refer-hero-pct {
  display: inline-block;
  padding: 0 14px;
  background: var(--accent);
  color: #0a0a0f;
  border-radius: 14px;
  font-weight: 900;
  transform: rotate(-1deg);
  box-shadow: 0 8px 30px rgba(255,87,34,0.4);
}
.refer-hero-subtitle {
  font-size: 0.65em;
  color: var(--text-dim);
  font-weight: 700;
}
.refer-hero-sub {
  font-size: 15px;
  color: var(--text-dim);
  line-height: 1.7;
  margin: 0 0 22px;
  max-width: 560px;
}
.refer-hero-sub b { color: var(--accent); font-weight: 800; }
.refer-hero-perks {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.refer-perk {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
}
.refer-perk span { font-size: 16px; }
@media (max-width: 700px) {
  .refer-hero { padding: 32px 24px; border-radius: 20px; }
  .refer-hero::after { font-size: 120px; right: 12px; }
  .refer-hero-title { font-size: 26px; }
  .refer-hero-sub { font-size: 13px; }
}

.verify-nag {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 24px;
  background: linear-gradient(135deg, rgba(245,158,11,0.1), rgba(245,158,11,0.03));
  border-bottom: 1px solid rgba(245,158,11,0.25);
  color: var(--text);
  font-size: 13px;
  animation: nag-slide-down 0.4s ease-out;
}
@keyframes nag-slide-down {
  from { transform: translateY(-100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.verify-nag b { color: #fbbf24; }
.verify-nag-close {
  background: transparent;
  border: none;
  color: var(--text-dim);
  font-size: 22px;
  cursor: pointer;
  width: 30px;
  height: 30px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.verify-nag-close:hover { background: rgba(255,255,255,0.05); color: var(--text); }
@media (max-width: 700px) {
  .verify-nag { flex-wrap: wrap; padding: 12px 16px; }
  .verify-nag > div { flex-basis: 100%; order: -1; }
  .verify-nag .btn { flex: 1; }
}

.footer-v3 {
  margin-top: 100px;
  padding: 70px 24px 30px;
  background: linear-gradient(180deg, rgba(255,87,34,0.02) 0%, rgba(10,10,15,0) 100%);
  border-top: 1px solid rgba(255,87,34,0.15);
  position: relative;
}
.footer-v3::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,87,34,0.6), transparent);
}
.footer-v3-top {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 2.2fr;
  gap: 60px;
  padding-bottom: 50px;
  border-bottom: 1px solid var(--border);
}
.footer-v3-brand { min-width: 0; }
.footer-v3-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.footer-v3-logo svg {
  border-radius: 10px;
  box-shadow: 0 4px 18px rgba(255,87,34,0.3);
}
.footer-v3-name {
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -0.01em;
  background: linear-gradient(180deg, #fff 0%, #b8b8c4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.footer-v3-tag {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.7;
  margin: 0 0 22px;
  max-width: 360px;
}
.footer-v3-badges { display: flex; gap: 8px; flex-wrap: wrap; }
.footer-v3-badge {
  display: inline-flex;
  align-items: center;
  padding: 7px 13px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-dim);
  transition: all 0.2s;
}
.footer-v3-badge:hover {
  background: rgba(255,87,34,0.08);
  border-color: rgba(255,87,34,0.3);
  color: var(--text);
}
.footer-v3-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.footer-v3-col h4 {
  font-size: 13px;
  font-weight: 800;
  color: var(--text);
  margin: 0 0 16px;
  letter-spacing: -0.005em;
}
.footer-v3-col a {
  display: block;
  font-size: 13px;
  color: var(--text-dim);
  text-decoration: none;
  padding: 6px 0;
  transition: all 0.2s;
  position: relative;
}
.footer-v3-col a::before {
  content: "→";
  position: absolute;
  left: -16px;
  opacity: 0;
  transition: all 0.2s;
  color: var(--accent);
}
.footer-v3-col a:hover {
  color: var(--text);
  padding-left: 8px;
}
.footer-v3-col a:hover::before { opacity: 1; left: -8px; }
.footer-v3-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}
.footer-v3-copy { font-size: 12px; color: var(--text-faint); }
.footer-v3-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 12px;
  color: var(--text-dim);
  flex-wrap: wrap;
}
.footer-v3-meta .dot-sep { color: var(--text-faint); font-size: 8px; }
@media (max-width: 900px) {
  .footer-v3 { padding: 60px 20px 24px; margin-top: 70px; }
  .footer-v3-top { grid-template-columns: 1fr; gap: 40px; padding-bottom: 36px; }
  .footer-v3-links { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-v3-tag { font-size: 13px; }
  .footer-v3-name { font-size: 18px; }
  .footer-v3-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .footer-v3-meta { justify-content: center; }
}
@media (max-width: 520px) {
  .footer-v3-links { grid-template-columns: 1fr; }
}

.promo-strip {
  max-width: 1100px;
  margin: 0 auto 40px;
  padding: 0 24px;
}
.promo-strip-inner {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 26px;
  background: linear-gradient(135deg, rgba(255,87,34,0.15), rgba(255,87,34,0.03));
  border: 1px solid rgba(255,87,34,0.4);
  border-radius: 18px;
  backdrop-filter: blur(12px);
  position: relative;
  overflow: hidden;
  animation: promo-slide-in 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.promo-strip-inner::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -5%;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(255,87,34,0.4), transparent 70%);
  filter: blur(30px);
  animation: promo-orb 4s ease-in-out infinite;
  pointer-events: none;
}
@keyframes promo-slide-in {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes promo-orb {
  0%, 100% { transform: translateX(0); opacity: 0.7; }
  50% { transform: translateX(calc(100vw - 200px)); opacity: 1; }
}
.promo-strip-badge {
  flex-shrink: 0;
  padding: 6px 12px;
  background: var(--accent);
  color: #0a0a0f;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.5px;
  border-radius: 999px;
  animation: badge-pulse 2s ease-in-out infinite;
}
@keyframes badge-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,87,34,0.5); }
  50% { box-shadow: 0 0 0 6px rgba(255,87,34,0); }
}
.promo-strip-text {
  flex: 1;
  min-width: 0;
  font-size: 14px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.promo-strip-text b {
  font-size: 16px;
  color: var(--text);
}
.promo-strip-text b #promo-slots {
  color: var(--accent);
  font-variant-numeric: tabular-nums;
  font-size: 18px;
}
.promo-strip-text .muted {
  font-size: 12px;
  color: var(--text-dim);
}
@media (max-width: 700px) {
  .promo-strip { padding: 0 16px; margin-bottom: 28px; }
  .promo-strip-inner { flex-direction: column; padding: 16px 18px; text-align: center; align-items: stretch; }
  .promo-strip-text b { font-size: 15px; }
  .promo-strip-text .muted { font-size: 11px; }
  .promo-strip-inner .btn { width: 100%; justify-content: center; }
}

.net-lines-anim {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.net-avatars { position: absolute; inset: 0; pointer-events: none; }
.net-avatar {
  position: absolute;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1a1a24, #0a0a0f);
  border: 2px solid rgba(255,87,34,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.4), 0 0 20px rgba(255,87,34,0.15);
  animation: avatar-float 4s ease-in-out infinite;
  transition: all 0.3s;
}
.net-avatar:hover {
  border-color: var(--accent);
  box-shadow: 0 0 30px rgba(255,87,34,0.4);
  transform: scale(1.1);
}
.net-avatar.na1 { top: 15%; left: 12%; animation-delay: 0s; }
.net-avatar.na2 { top: 18%; right: 12%; animation-delay: 0.6s; }
.net-avatar.na3 { top: 8%; left: 48%; animation-delay: 1.2s; }
.net-avatar.na4 { bottom: 18%; left: 12%; animation-delay: 1.8s; }
.net-avatar.na5 { bottom: 22%; right: 12%; animation-delay: 2.4s; }
@keyframes avatar-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.net-center-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 40px rgba(255,87,34,0.5), 0 10px 30px rgba(0,0,0,0.5);
  animation: center-pulse 3s ease-in-out infinite;
  z-index: 2;
}
@keyframes center-pulse {
  0%, 100% { box-shadow: 0 0 40px rgba(255,87,34,0.35), 0 10px 30px rgba(0,0,0,0.5); }
  50% { box-shadow: 0 0 60px rgba(255,87,34,0.6), 0 10px 30px rgba(0,0,0,0.5); }
}

.promo-banner {
  position: relative;
  background: linear-gradient(135deg, rgba(255,87,34,0.16), rgba(255,87,34,0.04));
  border: 1px solid rgba(255,87,34,0.35);
  border-radius: 20px;
  padding: 22px 26px;
  margin-bottom: 22px;
  overflow: hidden;
}
.promo-glow {
  position: absolute;
  top: -50%;
  right: -10%;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(255,87,34,0.22), transparent 65%);
  pointer-events: none;
  filter: blur(30px);
}
.promo-content {
  position: relative;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.promo-icon {
  font-size: 36px;
  flex-shrink: 0;
}
.promo-text { flex: 1; min-width: 220px; }
.promo-title {
  font-size: 18px;
  font-weight: 800;
  background: linear-gradient(180deg, #fff 0%, #ffd8cc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.01em;
}
.promo-sub {
  font-size: 13px;
  color: var(--text-dim);
  margin-top: 3px;
}
@media (max-width: 600px) {
  .promo-banner { padding: 18px 18px; border-radius: 16px; }
  .promo-icon { font-size: 30px; }
  .promo-title { font-size: 16px; }
  .promo-content .btn { width: 100%; justify-content: center; }
}

.deposit-hero {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 32px 34px;
}
.deposit-hero-left { min-width: 0; }
.deposit-eyebrow {
  display: inline-block;
  padding: 5px 12px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 999px;
  border: 1px solid rgba(255,87,34,0.3);
  margin-bottom: 12px;
}
.deposit-hero-left h2 {
  font-size: 28px;
  margin: 0 0 10px;
  background: linear-gradient(180deg, #fff 0%, #b8b8c4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.015em;
}
.deposit-hero-left p.muted { font-size: 14px; line-height: 1.6; margin: 0 0 16px; }
.deposit-networks {
  display: flex;
  gap: 8px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.net-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}
.net-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.deposit-addr-wrap { margin-bottom: 14px; }
.deposit-addr-wrap label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-faint);
  margin-bottom: 8px;
}
.deposit-addr {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  background: rgba(0,0,0,0.3);
  border: 1px solid rgba(255,87,34,0.3);
  border-radius: 12px;
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
}
.deposit-addr code {
  flex: 1;
  font-size: 13px;
  color: var(--accent);
  word-break: break-all;
  overflow-wrap: anywhere;
}
.deposit-warn {
  padding: 12px 16px;
  background: rgba(245,158,11,0.08);
  border: 1px solid rgba(245,158,11,0.25);
  border-radius: 10px;
  font-size: 12px;
  color: #fbbf24;
}
.deposit-hero-right { flex-shrink: 0; }
.qr-card {
  background: #0a0a0f;
  border: 2px solid rgba(255,87,34,0.3);
  border-radius: 18px;
  padding: 18px 18px 14px;
  text-align: center;
}
.qr-card img {
  display: block;
  border-radius: 10px;
  max-width: 100%;
}
.qr-label {
  font-size: 11px;
  color: var(--text-dim);
  margin-top: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
}
@media (max-width: 800px) {
  .deposit-hero { grid-template-columns: 1fr; padding: 24px 22px; }
  .deposit-hero-right { order: -1; display: flex; justify-content: center; margin-bottom: 8px; }
  .deposit-hero-left h2 { font-size: 22px; }
  .deposit-hero-left p.muted { font-size: 13px; }
  .deposit-addr code { font-size: 11px; }
}

.intent-active {
  background: linear-gradient(135deg, rgba(255,87,34,0.06), rgba(0,0,0,0));
  border: 1px solid rgba(255,87,34,0.3);
  border-radius: 22px;
  padding: 28px 32px;
  position: relative;
  overflow: hidden;
}
.intent-active::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,87,34,0.12), transparent 65%);
  pointer-events: none;
  filter: blur(40px);
  animation: pulse-glow 3s ease-in-out infinite;
}
@keyframes pulse-glow {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.1); }
}
.intent-header {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 22px;
  flex-wrap: wrap;
  gap: 12px;
}
.intent-eyebrow {
  display: inline-block;
  padding: 5px 12px;
  background: rgba(255,87,34,0.15);
  color: var(--accent);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.5px;
  border-radius: 999px;
  border: 1px solid rgba(255,87,34,0.3);
  margin-bottom: 8px;
}
.intent-header h2 {
  margin: 0;
  font-size: 26px;
  background: linear-gradient(180deg, #fff 0%, #b8b8c4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.015em;
}
.intent-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: start;
}
.intent-left { min-width: 0; display: flex; flex-direction: column; gap: 14px; }
.intent-right { flex-shrink: 0; display: flex; flex-direction: column; gap: 12px; }

.intent-amount-box {
  background: rgba(0,0,0,0.4);
  border: 2px solid rgba(255,87,34,0.4);
  border-radius: 18px;
  padding: 22px 24px;
  text-align: center;
  box-shadow: 0 0 40px rgba(255,87,34,0.08), inset 0 1px 0 rgba(255,255,255,0.05);
}
.intent-amount-label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: var(--text-faint);
  margin-bottom: 8px;
}
.intent-amount-big {
  font-size: 48px;
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(180deg, #ff8a65 0%, #ff5722 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
}
.intent-token {
  font-size: 14px;
  color: var(--text-dim);
  -webkit-text-fill-color: var(--text-dim);
  font-weight: 700;
}

.intent-addr-box {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px 18px;
}
.intent-addr-label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: var(--text-faint);
  margin-bottom: 8px;
}
.intent-addr {
  display: flex;
  align-items: center;
  gap: 10px;
}
.intent-addr code {
  flex: 1;
  min-width: 0;
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 12px;
  color: var(--accent);
  word-break: break-all;
}

.intent-countdown-box {
  background: rgba(0,0,0,0.3);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px 20px;
}
.intent-countdown-label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: var(--text-faint);
  margin-bottom: 8px;
}
.intent-countdown-big {
  font-size: 42px;
  font-weight: 900;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  color: #10b981;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.intent-countdown-bar {
  height: 6px;
  background: rgba(255,255,255,0.04);
  border-radius: 999px;
  overflow: hidden;
}
.intent-countdown-fill {
  height: 100%;
  width: 100%;
  background: #10b981;
  transition: width 1s linear, background-color 0.3s;
  border-radius: 999px;
}

.intent-status-poll {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: rgba(16,185,129,0.08);
  border: 1px solid rgba(16,185,129,0.25);
  border-radius: 12px;
  font-size: 13px;
}
.pulse-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #10b981;
  flex-shrink: 0;
  animation: pulse-dot 1.5s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(16,185,129,0.7); }
  70% { box-shadow: 0 0 0 10px rgba(16,185,129,0); }
}

.intent-warn {
  position: relative;
  margin-top: 20px;
  padding: 14px 18px;
  background: rgba(245,158,11,0.08);
  border: 1px solid rgba(245,158,11,0.3);
  border-radius: 12px;
  font-size: 13px;
  color: #fbbf24;
  line-height: 1.5;
}

.deposit-secure-note {
  margin-top: 18px;
  padding: 14px 18px;
  background: rgba(16,185,129,0.06);
  border: 1px solid rgba(16,185,129,0.2);
  border-radius: 12px;
  font-size: 12px;
  color: var(--text-dim);
  line-height: 1.6;
}
.deposit-secure-note ul {
  margin: 8px 0 0;
  padding-left: 18px;
}
.deposit-secure-note li { margin-bottom: 4px; }
.deposit-secure-note b { color: var(--text); }

/* Payment method tabs */
.pay-tabs {
  display: flex;
  gap: 6px;
  margin: 16px 0 20px;
  padding: 4px;
  background: rgba(255,255,255,0.04);
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.08);
}
.pay-tab {
  flex: 1;
  padding: 12px 16px;
  background: transparent;
  border: none;
  border-radius: 11px;
  color: var(--text-dim);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.pay-tab:hover { background: rgba(255,255,255,0.06); color: var(--text); }
.pay-tab.active {
  background: var(--accent);
  color: #000;
  box-shadow: 0 2px 12px rgba(255,87,34,0.3);
}
.pay-tab-icon { font-size: 16px; }

/* Paystack form */
.paystack-form { margin-top: 4px; }
.pay-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 4px;
}
.pay-chip {
  padding: 6px 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  font-size: 12px;
  color: var(--text-dim);
  font-weight: 500;
}
.ngn-preview {
  margin-top: 8px;
  padding: 10px 14px;
  background: rgba(255,87,34,0.08);
  border: 1px solid rgba(255,87,34,0.2);
  border-radius: 10px;
  font-size: 13px;
  color: var(--text);
}
.ngn-preview b { color: var(--accent); font-size: 15px; }

/* Paystack badge in table */
.badge-blue {
  background: rgba(59,130,246,0.15);
  color: #60a5fa;
  border: 1px solid rgba(59,130,246,0.25);
}

@media (max-width: 800px) {
  .pay-tabs { gap: 4px; padding: 3px; }
  .pay-tab { padding: 10px 12px; font-size: 13px; }
  .pay-chips { gap: 6px; }
  .pay-chip { font-size: 11px; padding: 5px 10px; }
}

@media (max-width: 800px) {
  .intent-active { padding: 22px 20px; border-radius: 18px; }
  .intent-grid { grid-template-columns: 1fr; gap: 16px; }
  .intent-right { order: -1; align-items: center; }
  .intent-header h2 { font-size: 22px; }
  .intent-amount-big { font-size: 38px; }
  .intent-countdown-big { font-size: 36px; }
}

.content-wrap {
  max-width: 860px;
  margin: 0 auto;
  padding: 110px 24px 80px;
  position: relative;
  z-index: 2;
}
.content-head {
  text-align: center;
  margin-bottom: 50px;
}
.content-head .eyebrow {
  display: inline-block;
  padding: 6px 14px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 999px;
  margin-bottom: 18px;
  border: 1px solid rgba(255,87,34,0.3);
}
.content-head h1 {
  font-size: clamp(34px, 5vw, 56px);
  margin: 0 0 16px;
  line-height: 1.05;
  letter-spacing: -0.02em;
  background: linear-gradient(180deg, #fff 0%, #b8b8c4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.content-head p {
  font-size: 18px;
  color: var(--text-dim);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}
.prose {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 44px 48px;
  backdrop-filter: blur(12px);
}
.prose h2 {
  font-size: 24px;
  margin: 38px 0 14px;
  color: var(--text);
  font-weight: 800;
  letter-spacing: -0.01em;
}
.prose h2:first-child { margin-top: 0; }
.prose h3 {
  font-size: 17px;
  margin: 26px 0 10px;
  color: var(--accent);
  font-weight: 700;
}
.prose p, .prose li {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-dim);
}
.prose p { margin: 0 0 14px; }
.prose ul, .prose ol { margin: 0 0 18px; padding-left: 22px; }
.prose li { margin-bottom: 6px; }
.prose strong { color: var(--text); font-weight: 700; }
.prose a { color: var(--accent); text-decoration: none; border-bottom: 1px solid rgba(255,87,34,0.3); }
.prose a:hover { border-bottom-color: var(--accent); }
.prose code {
  background: rgba(255,87,34,0.08);
  color: var(--accent);
  padding: 2px 7px;
  border-radius: 5px;
  font-size: 13px;
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
}
.prose pre {
  background: rgba(0,0,0,0.4);
  border: 1px solid var(--border);
  padding: 18px 20px;
  border-radius: 12px;
  overflow-x: auto;
  margin: 18px 0;
  font-size: 13px;
  line-height: 1.6;
}
.prose pre code {
  background: none;
  color: var(--text);
  padding: 0;
}
.prose table {
  width: 100%;
  border-collapse: collapse;
  margin: 18px 0;
  font-size: 13px;
}
.prose table th, .prose table td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--border);
  text-align: left;
}
.prose table th {
  background: rgba(255,255,255,0.03);
  font-weight: 700;
  color: var(--text);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

/* FAQ accordion on content page */
.faq-list { margin-top: 8px; }
.faq-q {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: 14px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: all 0.2s;
}
.faq-q:hover { border-color: rgba(255,87,34,0.3); }
.faq-q summary {
  padding: 18px 22px;
  cursor: pointer;
  font-weight: 700;
  font-size: 15px;
  color: var(--text);
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.faq-q summary::-webkit-details-marker { display: none; }
.faq-q summary::after {
  content: "+";
  font-size: 22px;
  color: var(--accent);
  font-weight: 300;
  transition: transform 0.2s;
}
.faq-q[open] summary::after { transform: rotate(45deg); }
.faq-q .faq-a {
  padding: 0 22px 20px;
  color: var(--text-dim);
  font-size: 14px;
  line-height: 1.7;
}

.content-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-dim);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 30px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  text-decoration: none;
  transition: all 0.2s;
}
.content-back:hover { background: rgba(255,255,255,0.07); color: var(--text); transform: translateX(-2px); }

@media (max-width: 768px) {
  .content-wrap { padding: 90px 16px 60px; }
  .prose { padding: 28px 22px; border-radius: 18px; }
  .prose h2 { font-size: 20px; }
  .content-head h1 { font-size: 32px; }
  .content-head p { font-size: 15px; }
}

/* ============ Admin Settings Tabs ============ */
.stabs {
  display: flex;
  gap: 4px;
  padding: 4px;
  background: rgba(255,255,255,0.03);
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 20px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.stab {
  padding: 10px 16px;
  background: transparent;
  border: none;
  border-radius: 10px;
  color: var(--text-dim);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}
.stab:hover { background: rgba(255,255,255,0.06); color: var(--text); }
.stab.active { background: var(--accent); color: #000; box-shadow: 0 2px 10px rgba(255,87,34,0.3); }
.stab-body { max-width: 720px; }

/* Settings card */
.scard {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 22px 24px;
  margin-bottom: 18px;
}
.scard-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.scard-sub {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}
.field-hint {
  font-size: 11px;
  color: var(--text-dim);
  margin-top: 4px;
  line-height: 1.4;
}

/* Toggle switch */
.field-toggle { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.field-toggle label:first-child { margin-bottom: 0; flex: 1; }
.toggle-switch {
  position: relative;
  display: inline-block;
  width: 48px;
  height: 26px;
  flex-shrink: 0;
}
.toggle-switch input { opacity: 0; width: 0; height: 0; }
.toggle-slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background: rgba(255,255,255,0.1);
  border-radius: 26px;
  transition: 0.25s;
}
.toggle-slider:before {
  content: "";
  position: absolute;
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background: #fff;
  border-radius: 50%;
  transition: 0.25s;
}
.toggle-switch input:checked + .toggle-slider { background: var(--accent); }
.toggle-switch input:checked + .toggle-slider:before { transform: translateX(22px); }

/* System info grid */
.sys-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 10px;
}
.sys-item {
  background: rgba(255,255,255,0.04);
  border-radius: 10px;
  padding: 12px 14px;
}
.sys-label { font-size: 11px; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.3px; margin-bottom: 4px; }
.sys-val { font-size: 15px; font-weight: 700; color: var(--text); }
.sys-table-rows { display: flex; flex-wrap: wrap; gap: 8px; }
.sys-tbl {
  padding: 4px 10px;
  background: rgba(255,255,255,0.04);
  border-radius: 8px;
  font-size: 11px;
  color: var(--text-dim);
}
.sys-tbl b { color: var(--text); }

/* Tool grid */
.tool-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
}
.tool-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 16px;
}
.tool-name { font-size: 14px; font-weight: 600; color: var(--text); margin-bottom: 4px; }
.tool-desc { font-size: 12px; color: var(--text-dim); margin-bottom: 10px; line-height: 1.4; }

/* Provider balance rows */
.prov-bal-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
  background: rgba(255,255,255,0.03);
  border-radius: 10px;
  margin-bottom: 6px;
}
.prov-name { font-size: 13px; font-weight: 600; color: var(--text); }
.prov-bal { font-size: 13px; }

/* Order stats bar */
.order-stats {
  display: flex;
  gap: 10px;
  margin-bottom: 16px;
}
.order-stat {
  flex: 1;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 14px 16px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
}
.order-stat:hover { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.15); }
.order-stat-num { font-size: 22px; font-weight: 800; color: var(--text); }
.order-stat-label { font-size: 11px; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.5px; margin-top: 2px; }

@media (max-width: 768px) {
  .order-stats { flex-wrap: wrap; gap: 8px; }
  .order-stat { flex: 1 0 calc(50% - 8px); padding: 10px 12px; }
  .order-stat-num { font-size: 18px; }
}

/* Audit log table */
.audit-table td { vertical-align: top; }
.audit-table { font-size: 12px; }

/* Quick stats table */
.qstats-table .data-table td,
.qstats-table .data-table th { text-align: center; padding: 10px 16px; }
.qstats-table .data-table td:first-child,
.qstats-table .data-table th:first-child { text-align: left; font-weight: 600; }

@media (max-width: 768px) {
  .stabs { gap: 2px; padding: 3px; }
  .stab { padding: 8px 10px; font-size: 11px; }
  .scard { padding: 18px 16px; border-radius: 14px; }
  .sys-grid { grid-template-columns: repeat(2, 1fr); }
  .tool-grid { grid-template-columns: 1fr; }
}
