/* ═══════════════════════════════════════════════════════════
   Sharp AI Agents PLATFORM — Dashboard & App Interface
   Space themed · Professional glassmorphism
 ═══════════════════════════════════════════════════════════ */

/* ── Reset & Base ─────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  max-width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
div,
li,
a,
label,
textarea,
input {
  overflow-wrap: anywhere;
  word-wrap: anywhere;
  word-break: break-word;
  /* Important to keep words inside containers */
}

:root {
  --bg: #03040b;
  --bg-2: #080a14;
  --bg-3: #0f1222;
  --bg-card: rgba(13, 17, 30, 0.65);
  --bg-card-h: rgba(20, 26, 45, 0.85);
  --border: rgba(255, 255, 255, 0.08);
  --border-h: rgba(99, 102, 241, 0.45);
  --text: #ffffff;
  --text-2: #94a3b8;
  --text-3: #64748b;
  --purple: #8b5cf6;
  --purple-l: #a855f7;
  --teal: #06b6d4;
  --teal-l: #22d3ee;
  --gold: #f59e0b;
  --gold-l: #fbbf24;
  --green: #10b981;
  --red: #6366f1;
  --grad: linear-gradient(135deg, #6366f1, #a855f7);
  --grad-aurora: linear-gradient(
    135deg,
    rgba(99, 102, 241, 0.2),
    rgba(168, 85, 247, 0.05)
  );
  --radius: 16px;
  --radius-lg: 28px;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.7);
  --shadow-glow: 0 0 50px rgba(99, 102, 241, 0.35);
  --nav-h: 76px;
  --font: "Inter", -apple-system, system-ui, sans-serif;
  --font-title: "Outfit", -apple-system, system-ui, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: radial-gradient(circle at top, var(--bg-2) 0%, var(--bg) 100%);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.6;
}

#platformNav {
  min-height: var(--nav-h);
}

canvas#space-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  /* background painted by canvas JS each frame */
}

main,
.dashboard-wrap,
.channels-wrap,
.pricing-wrap,
.builder-wrap,
.marketplace-wrap {
  position: relative;
  z-index: 1;
}

/* Page wrapper spacing — clears fixed nav */
.dashboard-wrap,
.channels-wrap,
.marketplace-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: calc(var(--nav-h) + 40px) 40px 80px;
}

.pricing-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: calc(var(--nav-h) + 40px) 40px 80px;
}

.builder-wrap {
  max-width: 960px;
  margin: 0 auto;
  padding: calc(var(--nav-h) + 40px) 40px 80px;
}

/* ── Nav ──────────────────────────────────────────────────── */
.platform-nav {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 101;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  background: rgba(1, 1, 3, 0.94);
  backdrop-filter: blur(54px);
  -webkit-backdrop-filter: blur(54px);
  border-bottom: 1px solid rgba(99, 102, 241, 0.12);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.7);
  transition: all 0.3s ease;
}

.platform-nav::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(99, 102, 241, 0.5),
    transparent
  );
  filter: blur(1px);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo-icon {
  width: 40px;
  height: 40px;
  background: var(--grad);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
}

.nav-logo-link:hover .nav-logo-icon {
  transform: rotate(10deg) scale(1.05);
  box-shadow: 0 0 20px rgba(99, 102, 241, 0.6);
}

.nav-logo-text {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 20px;
  color: var(--text);
  letter-spacing: -0.01em;
  transition: all 0.3s ease;
}

.nav-logo-link:hover .nav-logo-text {
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

.nav-logo-accent {
  color: #ff3e3e;
  /* Red accent as in screenshot */
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-link {
  padding: 8px 12px;
  border-radius: 8px;
  color: var(--text-2);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.2s;
}

.nav-link:hover {
  color: #fff;
}

.nav-link.active {
  color: #fff !important;
}

.nav-mobile-auth {
  display: none;
}

.nav-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s;
  margin-left: 8px;
}

.nav-pill:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-1px);
}

.nav-dot {
  width: 8px;
  height: 8px;
  background: #6366f1;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(251, 191, 36, 0.6);
}

.nav-link.active {
  color: var(--teal-l) !important;
  background: rgba(99, 102, 241, 0.12);
  box-shadow: 0 0 20px rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.2);
}

.nav-link svg {
  vertical-align: middle;
  margin-right: 8px;
  opacity: 0.6;
  transition: all 0.3s ease;
}

.nav-link:hover svg,
.nav-link.active svg {
  opacity: 1;
  transform: scale(1.1);
  filter: drop-shadow(0 0 5px #818cf8);
}

.nav-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: #818cf8;
  border-radius: 50%;
  margin-right: 8px;
  box-shadow: 0 0 10px #818cf8;
  animation: dotPulse 2s infinite;
}

@keyframes dotPulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.3);
    opacity: 0.7;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.nav-actions {
  display: flex;
  align-items: center;
}

.nav-actions-group {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-icon-btn {
  background: none;
  border: none;
  color: var(--text-2);
  cursor: pointer;
  padding: 8px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.2s;
}

.nav-icon-btn:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
}

.nav-notif-dot {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 6px;
  height: 6px;
  background: var(--teal);
  border-radius: 50%;
  border: 1.5px solid var(--bg);
}

.nav-v-divider {
  width: 1px;
  height: 24px;
  background: rgba(255, 255, 255, 0.1);
  margin: 0 4px;
}

.nav-btn {
  padding: 10px 22px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  border: none;
  font-family: var(--font);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-btn-ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.nav-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.3);
}

.nav-btn-primary {
  background: linear-gradient(135deg, #6366f1, #6366f1);
  color: #000;
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.nav-btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
  filter: brightness(1.1);
}

/* ── Nav User Profile ── */
.nav-user-profile {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-user-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 12px 6px 6px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-user-chip:hover,
.nav-user-chip.active {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--border-h);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.nav-user-avatar {
  width: 28px;
  height: 28px;
  background: var(--grad);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  color: #fff;
  box-shadow: 0 2px 8px rgba(99, 102, 241, 0.3);
}

.nav-user-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
}

.nav-user-chevron {
  color: var(--text-3);
  transition: transform 0.25s;
}

.nav-user-chip.active .nav-user-chevron {
  transform: rotate(180deg);
}

.nav-profile-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  min-width: 240px;
  width: max-content;
  max-width: 340px;
  background: var(--bg-card);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 8px;
  box-shadow:
    0 16px 48px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(255, 255, 255, 0.05);
  display: none;
  flex-direction: column;
  z-index: 1000;
  animation: dropdownSlide 0.25s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes dropdownSlide {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.96);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.nav-profile-dropdown.open {
  display: flex;
}

.dropdown-header {
  padding: 12px 16px;
}

.dropdown-user-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.dropdown-user-email {
  font-size: 11px;
  color: var(--text-3);
}

.dropdown-divider {
  height: 1px;
  background: var(--border);
  margin: 6px 8px;
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 10px;
  color: var(--text-2);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.2s;
  background: transparent;
  border: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
}

.dropdown-item:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

.dropdown-item.logout {
  color: var(--red);
}

.dropdown-item.logout:hover {
  background: rgba(248, 113, 113, 0.1);
  color: #a5b4fc;
}

.nav-hide-mobile {
  display: flex;
}

.site-footer {
  padding: 24px 24px 40px;
}

.site-footer-shell {
  max-width: 1240px;
  margin: 0 auto;
  padding: 30px 32px 20px;
  border-radius: 28px;
  border: 1px solid rgba(250, 204, 21, 0.12);
  background:
    radial-gradient(
      circle at top left,
      rgba(99, 102, 241, 0.12),
      transparent 38%
    ),
    radial-gradient(
      circle at top right,
      rgba(16, 185, 129, 0.12),
      transparent 30%
    ),
    rgba(1, 1, 3, 0.92);
  box-shadow: 0 18px 56px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(44px);
  -webkit-backdrop-filter: blur(44px);
}

.site-footer-top {
  display: grid;
  grid-template-columns:
    minmax(0, 1.45fr)
    repeat(2, minmax(140px, 0.7fr))
    minmax(200px, 0.9fr);
  gap: 28px;
  align-items: start;
}

.site-footer-brand {
  max-width: 420px;
}

.site-footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  text-decoration: none;
}

.site-footer-logo-icon {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.site-footer-logo-text {
  font-family: var(--font-title);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.site-footer-copy {
  margin-top: 14px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-2);
}

.site-footer-group {
  display: grid;
  gap: 10px;
  align-content: start;
}

.site-footer-heading {
  margin-bottom: 4px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(250, 204, 21, 0.88);
}

.site-footer-link {
  width: fit-content;
  color: var(--text-2);
  text-decoration: none;
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.site-footer-link:hover {
  color: var(--text);
  transform: translateX(2px);
}

.site-footer-cta {
  display: grid;
  gap: 14px;
  justify-items: start;
  padding: 18px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.site-footer-kicker {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-2);
}

.site-footer-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  background: var(--grad);
  box-shadow: 0 14px 28px rgba(99, 102, 241, 0.24);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.site-footer-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 34px rgba(99, 102, 241, 0.3);
}

.site-footer-bottom {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 12px;
  color: var(--text-2);
}

.site-footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

@media (max-width: 768px) {
  .nav-hide-mobile {
    display: none;
  }
}

/* ── Sections ─────────────────────────────────────────────── */
.section {
  padding: 100px 40px;
  position: relative;
  z-index: 1;
}

.section-head {
  max-width: 800px;
  margin: 0 auto 60px;
  text-align: center;
}

.section-title {
  font-family: var(--font-title);
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #fff, var(--teal-l));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-sub {
  font-size: 18px;
  color: var(--text-2);
  line-height: 1.6;
}

/* ── Cards ────────────────────────────────────────────────── */
.glass-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  backdrop-filter: blur(60px);
  -webkit-backdrop-filter: blur(60px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.glass-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(
    135deg,
    rgba(99, 102, 241, 0.3),
    transparent,
    rgba(99, 102, 241, 0.3)
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.glass-card:hover {
  background: var(--bg-card-h);
  border-color: var(--border-h);
  transform: translateY(-4px);
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.4),
    0 0 20px rgba(99, 102, 241, 0.15);
}

/* ── CTA Buttons (refined) ────────────────────────────────── */
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  cursor: pointer;
  font-family: var(--font);
}

.cta-primary {
  background: var(--grad);
  color: #fff;
  box-shadow: 0 5px 20px rgba(99, 102, 241, 0.3);
}

.cta-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 30px rgba(99, 102, 241, 0.5);
}

.cta-gold {
  background: linear-gradient(135deg, #6366f1, #6366f1);
  color: #030308;
  box-shadow: 0 5px 20px rgba(99, 102, 241, 0.3);
}

.cta-gold:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 30px rgba(99, 102, 241, 0.5);
}

.cta-ghost {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  border: 1px solid var(--border);
}

.cta-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--border-h);
}

.nav-btn-primary {
  background: var(--grad);
  color: #fff;
  box-shadow: 0 5px 20px rgba(99, 102, 241, 0.35);
}

.nav-btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 25px rgba(99, 102, 241, 0.5);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-hamburger span {
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.nav-hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
}

.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── CTA Buttons (Complete Set) ──────────────────────────── */
.cta-xl {
  padding: 18px 48px;
  font-size: 17px;
  border-radius: 14px;
}

.cta-danger {
  background: linear-gradient(135deg, #6366f1, #4338ca);
  color: #fff;
}

/* ── Earn $Sharp — vibrant orange fire gradient (matches screenshot CTA) ── */
.cta-sharp-earn {
  background: linear-gradient(135deg, #6366f1, #818cf8, #818cf8);
  background-size: 200% 200%;
  background-position: 0% 50%;
  color: #fff;
  box-shadow:
    0 6px 28px rgba(99, 102, 241, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  animation: earnPulse 3s ease infinite;
}

@keyframes earnPulse {
  0%,
  100% {
    background-position: 0% 50%;
    box-shadow: 0 6px 28px rgba(99, 102, 241, 0.5);
  }

  50% {
    background-position: 100% 50%;
    box-shadow: 0 8px 36px rgba(99, 102, 241, 0.7);
  }
}

.cta-sharp-earn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 40px rgba(99, 102, 241, 0.65);
  animation: none;
  background-position: 100% 50%;
}

/* ── Dark ghost — frosted dark pill for View Tokenomics (matches screenshot) ── */
.cta-tok {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.cta-tok:hover {
  background: rgba(255, 255, 255, 0.11);
  border-color: rgba(255, 255, 255, 0.26);
  transform: translateY(-3px) scale(1.02);
}

/* ── Sections ─────────────────────────────────────────────── */
.section {
  padding: 80px 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.s-title {
  font-family: var(--font-title);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: var(--text);
  text-align: center;
  margin-bottom: 14px;
}

.s-sub {
  text-align: center;
  color: var(--text-2);
  font-size: 16px;
  max-width: 580px;
  margin: 0 auto 48px;
}

.text-gold {
  color: var(--gold);
}

.text-green {
  color: var(--green);
}

.text-red {
  color: var(--red);
}

/* ── Hero ─────────────────────────────────────────────────── */
.hero-section {
  padding: calc(var(--nav-h) + 80px) 40px 80px;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 32px;
}

.badge {
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
}

.badge-purple {
  background: rgba(99, 102, 241, 0.15);
  color: var(--purple-l);
  border: 1px solid rgba(99, 102, 241, 0.3);
}

.badge-gold {
  background: rgba(99, 102, 241, 0.15);
  color: var(--gold-l);
  border: 1px solid rgba(99, 102, 241, 0.3);
}

.hero-title {
  font-family: var(--font-title);
  font-size: clamp(48px, 8vw, 90px);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 28px;
  background: linear-gradient(
    135deg,
    #fff 10%,
    var(--purple) 50%,
    var(--teal) 90%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.04em;
  filter: drop-shadow(0 0 15px rgba(99, 102, 241, 0.3));
}

.hero-title-gold {
  background: linear-gradient(135deg, #fff, var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-sub {
  font-size: 17px;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 40px;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-stat {
  text-align: center;
  padding: 0 24px;
}

.stat-n {
  display: block;
  font-family: var(--font-title);
  font-size: 28px;
  font-weight: 800;
  color: var(--text);
}

.stat-l {
  display: block;
  font-size: 13px;
  color: var(--text-2);
}

.stat-div {
  width: 1px;
  height: 36px;
  background: var(--border);
}

/* ── Compare ──────────────────────────────────────────────── */
.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 0;
}

.compare-card {
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  border: 1px solid var(--border);
}

.compare-bad {
  background: rgba(99, 102, 241, 0.06);
  border-color: rgba(99, 102, 241, 0.2);
}

.compare-good {
  background: rgba(16, 185, 129, 0.06);
  border-color: rgba(16, 185, 129, 0.2);
}

.compare-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  margin-bottom: 20px;
}

.compare-label.red {
  color: var(--red);
}

.compare-label.green {
  color: var(--green);
}

.compare-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.compare-card li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--text-2);
}

.x {
  color: var(--red);
  font-weight: 700;
  flex-shrink: 0;
}

.ck {
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
}

/* ── Three Steps ──────────────────────────────────────────── */
.steps-grid {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.step-card {
  flex: 1;
  min-width: 220px;
  max-width: 280px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition:
    transform 0.3s,
    border-color 0.3s;
}

.step-card:hover {
  transform: translateY(-4px);
  border-color: var(--purple);
}

.step-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: var(--grad);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.step-num {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--purple-l);
  margin-bottom: 8px;
}

.step-card h3 {
  font-family: var(--font-title);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.step-card p {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.6;
}

.step-arr {
  font-size: 28px;
  color: var(--border-h);
  flex-shrink: 0;
}

/* ── Features Grid ────────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition:
    transform 0.3s,
    border-color 0.3s,
    background 0.3s;
}

.feat-card:hover {
  transform: translateY(-3px);
  border-color: var(--border-h);
  background: var(--bg-card-h);
}

.feat-icon {
  font-size: 28px;
  margin-bottom: 16px;
}

.feat-card h3 {
  font-family: var(--font-title);
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
}

.feat-card p {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.6;
}

/* ── Integrations ─────────────────────────────────────────── */
.int-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.int-tag {
  padding: 10px 20px;
  border-radius: 100px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-2);
  cursor: default;
  transition: all 0.2s;
}

.int-tag:hover {
  color: var(--text);
  border-color: var(--border-h);
  background: var(--bg-card-h);
}

.int-more {
  color: var(--purple-l);
  border-color: rgba(124, 58, 237, 0.3);
  cursor: pointer;
}

/* ── Simple Pricing (landing) ─────────────────────────────── */
.pricing-card {
  max-width: 680px;
  margin: 0 auto;
  background: rgba(1, 1, 3, 0.85);
  /* Darker base */
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  backdrop-filter: blur(54px);
  -webkit-backdrop-filter: blur(54px);
}

.pricing-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 32px;
  border-bottom: 1px solid var(--border);
}

.pricing-row.no-border {
  border-bottom: none;
}

.pr-item {
  font-size: 15px;
  color: var(--text-2);
}

.pr-val {
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pr-val strong {
  font-size: 18px;
  color: var(--text);
  font-weight: 700;
}

.pr-note {
  font-size: 13px;
  color: var(--text-2);
}

.pricing-footer {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  padding: 18px 32px;
  background: rgba(16, 185, 129, 0.12);
  /* Slightly more prominent */
  border-top: 1px solid rgba(16, 185, 129, 0.2);
}

.pr-tag {
  font-size: 13px;
  color: var(--green);
  font-weight: 600;
}

.pricing-landing-section {
  text-align: center;
}

/* ── Earn $Sharp ──────────────────────────────────────────── */
.sharp-section {
  padding: 80px 40px;
}

.sharp-inner {
  max-width: 1000px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
  box-shadow: 0 0 60px rgba(99, 102, 241, 0.05);
}

.sharp-badge {
  font-size: 48px;
  margin-bottom: 16px;
}

.sharp-left h2 {
  font-family: var(--font-title);
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 8px;
}

.sharp-small {
  font-size: 13px;
  color: var(--text-2);
  margin-bottom: 16px;
}

.sharp-desc {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 28px;
}

.sharp-tasks {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.sharp-task {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
}

.tn {
  font-size: 13px;
  color: var(--text-2);
  flex-shrink: 0;
}

.tl {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  flex: 1;
  cursor: pointer;
}

.tl:hover {
  color: var(--gold);
}

.tc {
  font-size: 16px;
  margin-left: auto;
  transition: color 0.3s;
}

.sharp-stat-box {
  background: rgba(0, 0, 0, 0.9);
  /* High contrast dark box */
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.fstat-label {
  font-size: 12px;
  color: var(--text-2);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}

.fstat-big {
  font-family: var(--font-title);
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 14px;
}

.sharp-bar {
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  margin-bottom: 12px;
}

.sharp-bar-fill {
  height: 100%;
  background: var(--gold);
  border-radius: 3px;
  transition: width 0.5s;
}

.fstat-note {
  font-size: 12px;
  color: var(--text-2);
  line-height: 1.5;
}

.token-sale-box {
  background: rgba(0, 0, 0, 0.9);
  /* High contrast dark box */
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.ts-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-2);
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.ts-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  color: var(--text-2);
}

.ts-row:last-child {
  border-bottom: none;
}

/* ── Final CTA ────────────────────────────────────────────── */
.final-cta-section {
  text-align: center;
  padding: 100px 40px;
}

.final-title {
  font-family: var(--font-title);
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
}

.final-line2 {
  color: var(--teal);
}

.final-sub {
  font-size: 16px;
  color: var(--text-2);
  margin-bottom: 36px;
}

.final-note {
  margin-top: 18px;
  font-size: 13px;
  color: var(--text-2);
}

/* ── Toast ────────────────────────────────────────────────── */
.toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.toast {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 12px;
  min-width: 240px;
  background: rgba(30, 30, 50, 0.95);
  border: 1px solid var(--border);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
  animation: toastIn 0.28s ease;
  color: var(--text);
  font-size: 14px;
}

.toast.success {
  border-color: rgba(16, 185, 129, 0.4);
}

.toast.error {
  border-color: rgba(99, 102, 241, 0.4);
}

.toast.info {
  border-color: rgba(124, 58, 237, 0.4);
}

.toast.hiding {
  animation: toastOut 0.28s ease forwards;
}

.toast-icon {
  font-size: 16px;
}

@keyframes toastIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes toastOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translateY(8px);
  }
}

/* ── Modal ────────────────────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-overlay.open {
  display: flex;
}

.modal-box {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  width: 100%;
  max-width: 420px;
  box-shadow: var(--shadow);
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.modal-header h3 {
  font-family: var(--font-title);
  font-size: 20px;
  font-weight: 700;
}

.modal-close {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-2);
  cursor: pointer;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.modal-close:hover {
  color: var(--text);
  background: var(--bg-card-h);
}

.modal-desc {
  font-size: 14px;
  color: var(--text-2);
  margin-bottom: 20px;
}

.wallet-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.wallet-opt {
  padding: 14px 20px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font);
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text);
  text-align: left;
  transition: all 0.2s;
}

.wallet-opt:hover {
  border-color: var(--purple);
  background: rgba(124, 58, 237, 0.1);
}

/* ── Dashboard ────────────────────────────────────────────── */
.dashboard-wrap {
  padding: calc(var(--nav-h) + 36px) 40px 60px;
  max-width: 1100px;
  margin: 0 auto;
}

.dash-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 16px;
}

.dash-title {
  font-family: var(--font-title);
  font-size: 28px;
  font-weight: 800;
}

.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 36px;
}

.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
}

.stat-card-n {
  font-family: var(--font-title);
  font-size: 30px;
  font-weight: 800;
}

.stat-card-l {
  font-size: 13px;
  color: var(--text-2);
  margin-top: 4px;
}

.bots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.bot-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: all 0.25s;
  cursor: default;
}

.bot-card:hover {
  border-color: var(--border-h);
  transform: translateY(-3px) scale(1.02);
}

.bot-card-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.bot-emoji {
  font-size: 36px;
  flex-shrink: 0;
}

.bot-name {
  font-family: var(--font-title);
  font-size: 17px;
  font-weight: 700;
}

.bot-model {
  font-size: 12px;
  color: var(--text-2);
  margin-top: 2px;
}

.bot-status {
  margin-left: auto;
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.status-active {
  background: rgba(16, 185, 129, 0.15);
  color: var(--green);
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.status-inactive {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-2);
  border: 1px solid var(--border);
}

.bot-desc {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.5;
  margin-bottom: 16px;
  min-height: 40px;
}

.bot-channels {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 18px;
}

.ch-badge {
  padding: 3px 10px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  color: var(--text-2);
}

.bot-meta {
  font-size: 12px;
  color: var(--text-2);
  margin-bottom: 16px;
}

.bot-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.bot-action-btn {
  flex: 1;
  padding: 9px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid var(--border);
  font-family: var(--font);
  background: var(--bg-card);
  color: var(--text-2);
  transition: all 0.2s;
  text-align: center;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.bot-action-btn:hover {
  color: var(--text);
  border-color: var(--border-h);
  background: var(--bg-card-h);
}

.bot-action-btn.primary {
  background: var(--grad);
  color: #fff;
  border-color: transparent;
}

.bot-action-btn.danger {
  color: var(--red);
  border-color: rgba(99, 102, 241, 0.3);
}

.bot-action-btn.danger:hover {
  background: rgba(99, 102, 241, 0.1);
}

.empty-state {
  grid-column: 1/-1;
  text-align: center;
  padding: 80px 20px;
  color: var(--text-2);
}

.empty-state .empty-icon {
  font-size: 64px;
  margin-bottom: 20px;
}

.empty-state h3 {
  font-family: var(--font-title);
  font-size: 22px;
  color: var(--text);
  margin-bottom: 10px;
}

/* ── Builder ──────────────────────────────────────────────── */
.builder-wrap {
  padding: calc(var(--nav-h) + 36px) 40px 60px;
  max-width: 900px;
  margin: 0 auto;
}

.builder-title {
  font-family: var(--font-title);
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 8px;
}

.builder-sub {
  font-size: 14px;
  color: var(--text-2);
  margin-bottom: 36px;
}

.wizard-steps {
  display: flex;
  gap: 0;
  margin-bottom: 40px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.wizard-step {
  flex: 1;
  padding: 14px 10px;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-2);
  background: var(--bg-card);
  border-right: 1px solid var(--border);
  cursor: pointer;
  transition: all 0.2s;
}

.wizard-step:last-child {
  border-right: none;
}

.wizard-step.active {
  background: rgba(124, 58, 237, 0.18);
  color: var(--purple-l);
}

.wizard-step.done {
  color: var(--green);
}

.wizard-panel {
  display: none;
}

.wizard-panel.show {
  display: block;
}

.form-group {
  margin-bottom: 24px;
}

.form-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text);
}

.form-label span {
  font-size: 12px;
  color: var(--text-2);
  font-weight: 400;
  margin-left: 6px;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 12px 16px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 15px;
  font-family: var(--font);
  outline: none;
  transition: border-color 0.2s;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--purple);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-select option {
  background: var(--bg-2);
}

.emoji-grid {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: 8px;
}

.emoji-btn {
  font-size: 24px;
  padding: 10px;
  border-radius: 10px;
  background: var(--bg-card);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
}

.emoji-btn:hover {
  background: var(--bg-card-h);
  transform: scale(1.1);
}

.emoji-btn.selected {
  border-color: var(--purple);
  background: rgba(124, 58, 237, 0.15);
}

.model-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 14px;
}

.model-card {
  padding: 18px;
  border-radius: 12px;
  cursor: pointer;
  border: 2px solid var(--border);
  background: var(--bg-card);
  transition: all 0.2s;
}

.model-card:hover {
  border-color: var(--border-h);
}

.model-card.selected {
  border-color: var(--purple);
  background: rgba(124, 58, 237, 0.1);
}

.model-card-grad {
  height: 4px;
  border-radius: 2px;
  margin-bottom: 12px;
}

.model-card-name {
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 4px;
}

.model-card-desc {
  font-size: 12px;
  color: var(--text-2);
}

.model-badge {
  float: right;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 800;
}

.model-badge.FREE {
  background: rgba(16, 185, 129, 0.2);
  color: var(--green);
}

.model-badge.PRO {
  background: rgba(99, 102, 241, 0.2);
  color: var(--gold);
}

.wizard-nav {
  display: flex;
  justify-content: space-between;
  margin-top: 32px;
}

/* ── Channels ─────────────────────────────────────────────── */
.channels-wrap {
  padding: calc(var(--nav-h) + 36px) 40px 60px;
  max-width: 900px;
  margin: 0 auto;
}

.channels-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.channel-card {
  background: rgba(1, 1, 3, 0.94);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(54px);
  -webkit-backdrop-filter: blur(54px);
  display: flex;
  flex-direction: column;
  min-height: 280px;
}

.channel-card:hover {
  border-color: var(--border-h);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
}

.channel-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.channel-icon {
  font-size: 28px;
}

.channel-name {
  font-family: var(--font-title);
  font-size: 18px;
  font-weight: 700;
  word-break: normal;
  white-space: nowrap;
}

.channel-status {
  margin-left: auto;
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  word-break: normal;
  white-space: nowrap;
}

.ch-connected {
  background: rgba(16, 185, 129, 0.15);
  color: var(--green);
}

.ch-soon {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-2);
}

.ch-error {
  background: rgba(99, 102, 241, 0.1);
  color: var(--red);
}

.channel-desc {
  font-size: 13px;
  color: var(--text-2);
  margin-bottom: 16px;
  line-height: 1.5;
}

.embed-code-box {
  background: rgba(0, 0, 0, 0.9);
  /* High contrast dark box */
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 14px;
  font-family: monospace;
  font-size: 12px;
  color: #facc15;
  /* Sharp Gold for code */
  overflow-x: auto;
  white-space: pre;
  margin-bottom: 12px;
  box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* ── Marketplace ──────────────────────────────────────────── */
.marketplace-wrap {
  padding: calc(var(--nav-h) + 36px) 40px 60px;
  max-width: 1100px;
  margin: 0 auto;
}

.cat-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.cat-btn {
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid var(--border);
  background: rgba(1, 1, 3, 0.9);
  color: var(--text-2);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: var(--font);
  backdrop-filter: blur(16px);
}

.cat-btn:hover {
  color: var(--text);
}

.cat-btn.active {
  background: var(--grad);
  color: #fff;
  border-color: transparent;
}

.market-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  min-height: 620px;
}

.tldr-section {
  max-width: 760px;
  margin: 16px auto 0;
  text-align: left;
}

.tldr-card {
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(1, 1, 3, 0.85);
  padding: 14px 16px;
}

.tldr-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--gold-l);
  text-transform: uppercase;
}

.tldr-text {
  margin-top: 8px;
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.7;
}

.market-card {
  background: rgba(1, 1, 3, 0.94);
  /* High contrast dark box */
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(54px);
  -webkit-backdrop-filter: blur(54px);
}

.market-card:hover {
  border-color: var(--border-h);
  transform: translateY(-4px);
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.6),
    0 0 20px rgba(99, 102, 241, 0.05);
}

.mc-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.mc-emoji {
  font-size: 36px;
}

.mc-name {
  font-family: var(--font-title);
  font-size: 16px;
  font-weight: 700;
}

.mc-model {
  font-size: 11px;
  color: var(--text-2);
  margin-top: 2px;
}

.mc-desc {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.5;
  margin-bottom: 16px;
}

.mc-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mc-installs {
  font-size: 12px;
  color: var(--text-2);
}

.mc-price-free {
  font-size: 13px;
  font-weight: 700;
  color: var(--green);
}

/* ── Pricing Page Full ────────────────────────────────────── */
.pricing-wrap {
  padding: calc(var(--nav-h) + 60px) 40px 80px;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.pricing-tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 48px 0;
}

.tier-card {
  background: rgba(1, 1, 3, 0.94);
  /* Very dark for high contrast */
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: left;
  position: relative;
  transition: all 0.3s;
  backdrop-filter: blur(54px);
  -webkit-backdrop-filter: blur(54px);
}

.tier-card:hover {
  border-color: var(--border-h);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
}

.tier-card.popular {
  border-color: var(--gold);
  background: rgba(99, 102, 241, 0.05);
  box-shadow: 0 0 40px rgba(99, 102, 241, 0.05);
}

.tier-pop-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--grad);
  color: #fff;
  padding: 4px 16px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
}

.tier-name {
  font-family: var(--font-title);
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 8px;
}

.tier-price {
  font-family: var(--font-title);
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 4px;
}

.tier-price span {
  font-size: 16px;
  color: var(--text-2);
  font-weight: 400;
}

.tier-desc {
  font-size: 13px;
  color: var(--text-2);
  margin-bottom: 24px;
  line-height: 1.5;
}

.tier-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.tier-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-2);
}

.tier-features li .ck {
  color: var(--green);
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 768px) {
  .dashboard-wrap,
  .channels-wrap,
  .marketplace-wrap,
  .pricing-wrap,
  .builder-wrap {
    padding-left: 20px;
    padding-right: 20px;
  }

  .platform-nav {
    padding: 0 20px;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: var(--bg-2);
    padding: 12px;
    border-bottom: 1px solid var(--border);
    gap: 4px;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-mobile-auth {
    display: block;
  }

  .nav-hamburger {
    display: flex;
  }

  .section {
    padding: 60px 20px;
  }

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

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

  .sharp-inner {
    grid-template-columns: 1fr;
    padding: 32px;
    gap: 32px;
  }

  .hero-section {
    padding: calc(var(--nav-h) + 48px) 20px 60px;
  }

  .pricing-tiers {
    grid-template-columns: 1fr;
  }

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

  .site-footer {
    padding: 20px 20px 32px;
  }

  .site-footer-shell {
    padding: 24px 20px 18px;
    border-radius: 22px;
  }

  .site-footer-top {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .site-footer-brand {
    max-width: none;
  }

  .site-footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .modal-box {
    max-width: min(100%, calc(100vw - 24px));
    padding: 24px;
  }
}

@media (max-width: 500px) {
  .dashboard-wrap,
  .channels-wrap,
  .marketplace-wrap,
  .pricing-wrap,
  .builder-wrap {
    padding-left: 16px;
    padding-right: 16px;
  }

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

  .steps-grid {
    flex-direction: column;
  }

  .step-arr {
    transform: rotate(90deg);
  }

  .hero-title {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .wizard-nav {
    flex-direction: column-reverse;
    gap: 16px;
    align-items: stretch;
  }
  .wizard-nav > div {
    flex-direction: column;
    align-items: stretch !important;
    width: 100%;
  }
  .wizard-nav .cta-btn {
    width: 100%;
    margin-bottom: 8px;
    padding: 12px 16px;
  }
  .auth-card,
  .wizard-card,
  .glass-card,
  .channel-wizard-card {
    padding: 24px 16px;
    border-radius: 16px;
  }
  .cta-btn {
    padding: 12px 20px;
    height: auto;
  }
  .form-group
    > div[style*="display: flex"][style*="gap: 10px"]:not([style*="column"]) {
    flex-wrap: wrap;
  }
  .form-group
    > div[style*="display: flex"][style*="gap: 10px"]:not([style*="column"])
    .cta-btn {
    width: 100%;
  }
  .market-card,
  .tier-card {
    padding: 20px 16px;
  }
  .prompt-builder-meta,
  .slider-wrap,
  .cat-filters {
    flex-direction: column;
    align-items: flex-start;
  }
  .nav-btn-primary {
    white-space: nowrap;
  }
}
