/* ============================================
   BUZZER PLATFORM — Design System & Global Styles
   Gen Z Aesthetic: Dark Mode, Gradients, Glass
   ============================================ */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

/* ---------- CSS Reset ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ---------- Design Tokens ---------- */
:root {
  /* Colors (Constant) */
  --primary: #7C3AED;
  --primary-light: #A78BFA;
  --primary-dark: #5B21B6;
  --secondary: #2563EB;
  --accent: #10B981;
  --accent-light: #34D399;
  --warning: #F59E0B;
  --danger: #EF4444;
  --pink: hsl(258.82deg 88.7% 45.1%);

  /* Gradient (Constant) */
  --gradient-primary: linear-gradient(135deg, #7C3AED, #2563EB);
  --gradient-accent: linear-gradient(135deg, #10B981, #059669);
  --gradient-hero: linear-gradient(135deg, #7C3AED 0%, #2563EB 50%, #06B6D4 100%);
  --gradient-card: linear-gradient(135deg, rgba(124, 58, 237, 0.1), rgba(37, 99, 235, 0.1));
  --gradient-glow: radial-gradient(ellipse at center, rgba(124, 58, 237, 0.15) 0%, transparent 70%);

  /* Shadows (Constant base) */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 24px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 40px rgba(124, 58, 237, 0.15);
  --shadow-glow-accent: 0 0 30px rgba(16, 185, 129, 0.2);
}

/* Light Theme (Default fallback) */
:root,
[data-theme="light"] {
  --bg-primary: #FAFAFA;
  --bg-secondary: #FFFFFF;
  --bg-tertiary: #F3F4F6;
  --bg-card: #FFFFFF;
  --bg-glass: rgba(255, 255, 255, 0.7);
  --bg-glass-hover: rgba(255, 255, 255, 0.9);
  --bg-input: #FFFFFF;
  --bg-navbar: rgba(255, 255, 255, 0.85);
  --bg-navbar-scrolled: rgba(255, 255, 255, 0.98);

  --text-primary: #0F172A;
  --text-secondary: #475569;
  --text-muted: #64748B;
  --text-accent: #7C3AED;

  --border-color: rgba(15, 23, 42, 0.08);
  /* Clean dark contrast */
  --border-color-hover: rgba(15, 23, 42, 0.15);
  --border-glow: rgba(124, 58, 237, 0.2);

  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.03);
  --shadow-glow: 0 0 40px rgba(124, 58, 237, 0.1);
  --shadow-glow-accent: 0 0 30px rgba(16, 185, 129, 0.1);

  /* Additional variables missing in previous overrides */
  --gradient-glow: radial-gradient(ellipse at center, rgba(124, 58, 237, 0.07) 0%, transparent 60%);
  --bg-hero-glow-1: radial-gradient(ellipse, rgba(124, 58, 237, 0.1) 0%, transparent 70%);
  --bg-hero-glow-2: radial-gradient(ellipse, rgba(37, 99, 235, 0.08) 0%, transparent 70%);
}

/* Dark Theme */
[data-theme="dark"] {
  --bg-primary: #000000;
  --bg-secondary: #111111;
  --bg-tertiary: #1f2937;
  --bg-card: rgba(255, 255, 255, 0.03);
  --bg-glass: rgba(255, 255, 255, 0.05);
  --bg-glass-hover: rgba(255, 255, 255, 0.08);
  --bg-input: rgba(255, 255, 255, 0.06);
  --bg-navbar: rgba(0, 0, 0, 0.8);
  --bg-navbar-scrolled: rgba(0, 0, 0, 0.95);

  --text-primary: #F8FAFC;
  --text-secondary: #94A3B8;
  --text-muted: #64748B;
  --text-accent: #A78BFA;

  --border-color: rgba(255, 255, 255, 0.08);
  --border-color-hover: rgba(255, 255, 255, 0.15);
  --border-glow: rgba(124, 58, 237, 0.3);

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 24px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.5);
}

:root {
  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Spacing */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  --space-4xl: 96px;

  /* Typography */
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-xs: 0.75rem;
  --font-sm: 0.875rem;
  --font-base: 1rem;
  --font-lg: 1.125rem;
  --font-xl: 1.25rem;
  --font-2xl: 1.5rem;
  --font-3xl: 1.875rem;
  --font-4xl: 2.25rem;
  --font-5xl: 3rem;
  --font-6xl: 3.75rem;

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms cubic-bezier(0.16, 1, 0.3, 1);

  /* Layout */
  --max-width: 1200px;
  --navbar-height: 72px;
  --sidebar-width: 260px;
}

/* ---------- Base Styles ---------- */
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-family);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-size: var(--font-base);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  outline: none;
}

input,
textarea,
select {
  font-family: inherit;
  outline: none;
}

ul,
ol {
  list-style: none;
}

/* ---------- Typography ---------- */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
}

h1 {
  font-size: var(--font-5xl);
}

h2 {
  font-size: var(--font-4xl);
}

h3 {
  font-size: var(--font-2xl);
}

h4 {
  font-size: var(--font-xl);
}

p {
  color: var(--text-secondary);
  line-height: 1.7;
}

.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-accent {
  color: var(--accent);
}

.text-muted {
  color: var(--text-muted);
}

.text-center {
  text-align: center;
}

/* ---------- Layout Utilities ---------- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.section {
  padding: var(--space-4xl) 0;
}

.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.flex-wrap {
  flex-wrap: wrap;
}

.items-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.gap-sm {
  gap: var(--space-sm);
}

.gap-md {
  gap: var(--space-md);
}

.gap-lg {
  gap: var(--space-lg);
}

.gap-xl {
  gap: var(--space-xl);
}

.gap-2xl {
  gap: var(--space-2xl);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 12px 28px;
  font-size: var(--font-sm);
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gradient-primary);
  color: white;
  box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 60px rgba(124, 58, 237, 0.3);
}

.btn-accent {
  background: var(--gradient-accent);
  color: white;
  box-shadow: var(--shadow-glow-accent);
}

.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 50px rgba(16, 185, 129, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-color);
}

.btn-outline:hover {
  border-color: var(--primary);
  background: rgba(124, 58, 237, 0.1);
}

.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
}

.btn-ghost:hover {
  color: var(--text-primary);
  background: var(--bg-glass);
}

.btn-lg {
  padding: 16px 36px;
  font-size: var(--font-base);
  border-radius: var(--radius-lg);
}

.btn-sm {
  padding: 8px 18px;
  font-size: var(--font-xs);
}

.btn-icon {
  width: 40px;
  height: 40px;
  padding: 0;
  border-radius: var(--radius-md);
}

/* ---------- Cards ---------- */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  transition: all var(--transition-base);
}

.card:hover {
  border-color: var(--border-color-hover);
  background: var(--bg-glass-hover);
}

.card-glass {
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
}

/* ---------- Badges ---------- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  font-size: var(--font-xs);
  font-weight: 600;
  border-radius: var(--radius-full);
  white-space: nowrap;
}

.badge-primary {
  background: rgba(124, 58, 237, 0.15);
  color: var(--primary-light);
}

.badge-accent {
  background: rgba(16, 185, 129, 0.15);
  color: var(--accent-light);
}

.badge-warning {
  background: rgba(245, 158, 11, 0.15);
  color: var(--warning);
}

.badge-danger {
  background: rgba(239, 68, 68, 0.15);
  color: var(--danger);
}

.badge-pink {
  background: hsla(258.82deg, 88.7%, 45.1%, 0.15);
  color: var(--pink);
}

/* ---------- Form Elements ---------- */
.input-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.input-group label {
  font-size: var(--font-sm);
  font-weight: 500;
  color: var(--text-secondary);
}

.input {
  width: 100%;
  padding: 12px 16px;
  background: var(--bg-input);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-size: var(--font-sm);
  transition: all var(--transition-fast);
}

.input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.15);
}

.input::placeholder {
  color: var(--text-muted);
}

/* ---------- Navbar ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--navbar-height);
  display: flex;
  align-items: center;
  z-index: 1000;
  transition: all var(--transition-base);
  background: var(--bg-navbar);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
}

.navbar.scrolled {
  border-bottom-color: var(--border-color);
  background: var(--bg-navbar-scrolled);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--font-xl);
  font-weight: 800;
}

.navbar-logo .logo-icon {
  width: 36px;
  height: 36px;
  background: var(--gradient-primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-lg);
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.navbar-links a {
  font-size: var(--font-sm);
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
  position: relative;
}

.navbar-links a:hover,
.navbar-links a.active {
  color: var(--text-primary);
}

.navbar-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  border-radius: 1px;
  transition: width var(--transition-base);
}

.navbar-links a:hover::after,
.navbar-links a.active::after {
  width: 100%;
}

.navbar-actions {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

/* Mobile Menu */
.mobile-menu-btn {
  display: none;
  width: 40px;
  height: 40px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: transparent;
  cursor: pointer;
}

.mobile-menu-btn span {
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--transition-base);
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: var(--navbar-height);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg-primary);
  padding: var(--space-xl);
  z-index: 999;
  flex-direction: column;
  gap: var(--space-md);
}

.mobile-menu.active {
  display: flex;
}

.mobile-menu a {
  padding: var(--space-md);
  font-size: var(--font-lg);
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.mobile-menu a:hover {
  color: var(--text-primary);
  background: var(--bg-glass);
}

/* ---------- Hero Section ---------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: var(--navbar-height);
  overflow: hidden;
}

.hero>.container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-2xl);
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  left: -10%;
  width: 60%;
  height: 60%;
  background: radial-gradient(ellipse, rgba(124, 58, 237, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -10%;
  right: -10%;
  width: 50%;
  height: 50%;
  background: radial-gradient(ellipse, rgba(37, 99, 235, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  flex: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 6px 16px;
  background: var(--bg-glass);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-full);
  font-size: var(--font-xs);
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: var(--space-lg);
  animation: fadeInUp 0.6s ease forwards;
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-lg);
  animation: fadeInUp 0.6s ease 0.1s forwards;
  opacity: 0;
}

.hero p {
  font-size: var(--font-lg);
  color: var(--text-secondary);
  max-width: 520px;
  margin-bottom: var(--space-xl);
  animation: fadeInUp 0.6s ease 0.2s forwards;
  opacity: 0;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  flex-wrap: wrap;
  animation: fadeInUp 0.6s ease 0.3s forwards;
  opacity: 0;
}

/* Hero Right — Floating Earnings Cards */
.hero-visual {
  position: relative;
  width: 380px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  z-index: 1;
  padding-top: var(--space-2xl);
}

.floating-card {
  position: relative;
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: var(--space-md) var(--space-lg);
  display: flex;
  align-items: center;
  gap: var(--space-md);
  animation: float 6s ease-in-out infinite;
  white-space: nowrap;
}

.floating-card:nth-child(1) {
  margin-left: 0;
  animation-delay: 0s;
}

.floating-card:nth-child(2) {
  margin-left: 40px;
  animation-delay: 1s;
}

.floating-card:nth-child(3) {
  margin-left: 15px;
  animation-delay: 2s;
}

.floating-card:nth-child(4) {
  margin-left: 50px;
  animation-delay: 0.5s;
}

.floating-card:nth-child(5) {
  margin-left: 25px;
  animation-delay: 1.5s;
}

.floating-card .avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: var(--font-sm);
  flex-shrink: 0;
}

.floating-card .info small {
  color: var(--text-muted);
  font-size: var(--font-xs);
}

.floating-card .info .amount {
  font-weight: 700;
  font-size: var(--font-lg);
  color: var(--accent);
}

/* ---------- Stats Bar ---------- */
.stats-bar {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: var(--space-2xl) 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  text-align: center;
}

.stat-item .stat-number {
  font-size: var(--font-4xl);
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-item .stat-label {
  font-size: var(--font-sm);
  color: var(--text-muted);
  margin-top: var(--space-xs);
}

/* ---------- Features Section ---------- */
.features-section {
  position: relative;
}

.features-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50%;
  height: 50%;
  background: var(--gradient-glow);
  pointer-events: none;
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-3xl);
  position: relative;
  z-index: 1;
}

.section-header h2 {
  font-size: clamp(1.875rem, 4vw, 2.5rem);
  margin-bottom: var(--space-md);
}

.section-header p {
  max-width: 560px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: var(--space-xl);
  position: relative;
  z-index: 1;
}

.feature-card {
  background: var(--bg-glass);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  transition: all var(--transition-slow);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-glow);
  box-shadow: var(--shadow-glow);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-card .feature-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: var(--space-lg);
}

.feature-icon.purple {
  background: rgba(124, 58, 237, 0.15);
  color: var(--primary-light);
}

.feature-icon.green {
  background: rgba(16, 185, 129, 0.15);
  color: var(--accent);
}

.feature-icon.blue {
  background: rgba(37, 99, 235, 0.15);
  color: var(--secondary);
}

.feature-icon.pink {
  background: rgba(236, 72, 153, 0.15);
  color: var(--pink);
}

.feature-card h3 {
  margin-bottom: var(--space-sm);
  font-size: var(--font-xl);
}

.feature-card p {
  font-size: var(--font-sm);
  line-height: 1.7;
}

/* ---------- How It Works ---------- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 15%;
  right: 15%;
  height: 2px;
  background: var(--gradient-primary);
  opacity: 0.3;
}

.step-card {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-3xl);
  font-weight: 800;
  margin: 0 auto var(--space-lg);
  box-shadow: var(--shadow-glow);
}

.step-card h3 {
  margin-bottom: var(--space-sm);
}

.step-card p {
  font-size: var(--font-sm);
  max-width: 280px;
  margin: 0 auto;
}

/* ---------- Campaign Preview ---------- */
.campaign-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--space-lg);
}

.campaign-card {
  background: var(--bg-glass);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-slow);
}

.campaign-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-glow);
  box-shadow: var(--shadow-glow);
}

.campaign-card .campaign-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  background: var(--gradient-card);
}

.campaign-card .campaign-body {
  padding: var(--space-lg);
}

.campaign-card .campaign-meta {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
}

.campaign-card h4 {
  margin-bottom: var(--space-sm);
}

.campaign-card .campaign-rate {
  font-size: var(--font-2xl);
  font-weight: 800;
  color: var(--accent);
}

.campaign-card .campaign-rate small {
  font-size: var(--font-xs);
  color: var(--text-muted);
  font-weight: 500;
}

.campaign-card .campaign-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: var(--space-md);
  padding-top: var(--space-md);
  border-top: 1px solid var(--border-color);
}

.campaign-card .campaign-footer span {
  font-size: var(--font-xs);
  color: var(--text-muted);
}

/* ---------- CTA Section ---------- */
.cta-section {
  position: relative;
  overflow: hidden;
}

.cta-box {
  background: var(--gradient-primary);
  border-radius: var(--radius-xl);
  padding: var(--space-4xl) var(--space-3xl);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(255, 255, 255, 0.1), transparent 60%);
  pointer-events: none;
}

.cta-box h2 {
  font-size: clamp(1.875rem, 4vw, 2.5rem);
  margin-bottom: var(--space-md);
}

.cta-box p {
  color: rgba(255, 255, 255, 0.8);
  max-width: 480px;
  margin: 0 auto var(--space-xl);
}

.cta-box .btn {
  background: white;
  color: var(--primary);
  font-weight: 700;
}

.cta-box .btn:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* ---------- Disclaimer Section ---------- */
.disclaimer-section {
  padding: var(--space-xl) 0;
}

.disclaimer-box {
  display: flex;
  align-items: flex-start;
  gap: var(--space-lg);
  padding: var(--space-xl) var(--space-2xl);
  background: rgba(245, 158, 11, 0.06);
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: var(--radius-xl);
}

.disclaimer-icon {
  font-size: 28px;
  flex-shrink: 0;
  margin-top: 2px;
}

.disclaimer-content h4 {
  font-size: var(--font-base);
  font-weight: 700;
  margin-bottom: var(--space-sm);
}

.disclaimer-content p {
  font-size: var(--font-sm);
  line-height: 1.7;
  color: var(--text-secondary);
}

.disclaimer-content strong {
  color: var(--warning);
  font-weight: 700;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  padding: var(--space-3xl) 0 var(--space-xl);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-2xl);
}

.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--font-xl);
  font-weight: 800;
  margin-bottom: var(--space-md);
}

.footer-brand p {
  font-size: var(--font-sm);
  max-width: 280px;
}

.footer-col h4 {
  font-size: var(--font-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-bottom: var(--space-md);
}

.footer-col a {
  display: block;
  font-size: var(--font-sm);
  color: var(--text-secondary);
  padding: var(--space-xs) 0;
  transition: color var(--transition-fast);
}

.footer-col a:hover {
  color: var(--text-primary);
}

.footer-bottom {
  padding-top: var(--space-xl);
  border-top: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: var(--font-xs);
  color: var(--text-muted);
}

.footer-socials {
  display: flex;
  gap: var(--space-md);
}

.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-glass);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: all var(--transition-fast);
}

.footer-socials a:hover {
  border-color: var(--primary);
  color: var(--primary-light);
  background: rgba(124, 58, 237, 0.1);
}

/* ---------- Animations ---------- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-15px);
  }
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(1.5);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }

  100% {
    background-position: 200% 0;
  }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero>.container {
    flex-direction: column;
    text-align: center;
  }

  .hero-visual {
    display: none;
  }

  .hero-content {
    max-width: 100%;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {

  .navbar-links,
  .navbar-actions {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

  h1 {
    font-size: var(--font-4xl);
  }

  h2 {
    font-size: var(--font-3xl);
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .steps-grid::before {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
  }

  .footer-bottom {
    flex-direction: column;
    gap: var(--space-md);
    text-align: center;
  }

  .campaign-grid {
    grid-template-columns: 1fr;
  }

  .cta-box {
    padding: var(--space-2xl) var(--space-lg);
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 var(--space-md);
  }

  h1 {
    font-size: var(--font-3xl);
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* ========================================
   Live Payouts Marquee
   ======================================== */
.live-payouts-section {
  padding: var(--space-lg) 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  background: var(--bg-secondary);
  overflow: hidden;
  position: relative;
}

.live-payouts-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: var(--space-md);
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  display: inline-block;
  animation: livePulse 1.5s ease-in-out infinite;
}

@keyframes livePulse {

  0%,
  100% {
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5);
  }

  50% {
    opacity: 0.7;
    box-shadow: 0 0 0 6px rgba(34, 197, 94, 0);
  }
}

.marquee-wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.marquee-wrapper::before,
.marquee-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}

.marquee-wrapper::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-secondary), transparent);
}

.marquee-wrapper::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-secondary), transparent);
}

.marquee-track {
  display: flex;
  gap: var(--space-xl);
  animation: marqueeScroll 25s linear infinite;
  width: max-content;
}

.marquee-track:hover {
  animation-play-state: paused;
}

@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  flex-shrink: 0;
  padding: var(--space-xs) var(--space-md);
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 999px;
  transition: all 0.2s;
}

.marquee-item:hover {
  border-color: rgba(34, 197, 94, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.marquee-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}

.marquee-info {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.marquee-name {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-primary);
  white-space: nowrap;
}

.marquee-amount {
  font-size: 11px;
  font-weight: 700;
  color: #22c55e;
  white-space: nowrap;
}

/* ========================================
   TryBuzzer Hero Redesign
   ======================================== */
.trybuzzer-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at top left, #fff1eb 0%, #ace0f9 100%);
  /* Alternatively, a peach to pink gradient like the screenshot: */
  background: radial-gradient(ellipse at center right, rgba(236, 72, 153, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse at top left, rgba(249, 115, 22, 0.15) 0%, transparent 60%),
    #fdfbfb;
}

.trybuzzer-hero::before,
.trybuzzer-hero::after {
  display: none;
  /* remove old glows */
}

.hero-container-new {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
  position: relative;
  z-index: 10;
  padding-bottom: 80px;
  /* space for social proof bar */
}

/* Badges */
.hero-badges-wrapper {
  display: flex;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
  flex-wrap: wrap;
}

.hero-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 99px;
  font-size: 12px;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(4px);
}

.hero-badge-pill.outline-orange {
  border: 1px solid rgba(249, 115, 22, 0.3);
  color: #c2410c;
}

.hero-badge-pill.outline-green {
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #15803d;
}

.dot.orange {
  background: #f97316;
}

.dot.green {
  background: #22c55e;
}

/* Text & Headings */
.hero-title-new {
  font-size: 4.5rem;
  line-height: 1.1;
  font-weight: 800;
  color: #1f2937;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-md);
}

.text-gradient-purple {
  background: linear-gradient(135deg, hsl(258.82deg 88.7% 65%) 0%, hsl(258.82deg 88.7% 45.1%) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.hero-desc {
  font-size: 1.125rem;
  color: #4b5563;
  line-height: 1.6;
  max-width: 480px;
  margin-bottom: var(--space-xl);
}

/* Actions */
.hero-actions-new {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.btn-gradient-purple {
  background: linear-gradient(135deg, hsl(258.82deg 88.7% 65%) 0%, hsl(258.82deg 88.7% 45.1%) 100%);
  color: white;
  padding: 14px 28px;
  border-radius: 99px;
  font-weight: 700;
  box-shadow: 0 10px 25px -5px rgba(100, 39, 218, 0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-gradient-purple:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px -5px rgba(100, 39, 218, 0.6);
  color: white;
}

.btn-glass-white {
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
  color: #1f2937;
  padding: 14px 28px;
  border-radius: 99px;
  font-weight: 600;
  transition: background 0.2s;
}

.btn-glass-white:hover {
  background: rgba(255, 255, 255, 0.9);
  color: #1f2937;
}

.btn-discord {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #5865F2;
  color: white;
  padding: 14px 24px;
  border-radius: 99px;
  font-weight: 600;
  transition: background 0.2s;
}

.btn-discord:hover {
  background: #4752c4;
  color: white;
}

/* Right Side - Glass Cards Stack */
.hero-visual-new {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1000px;
}

.glass-cards-stack {
  position: relative;
  width: 380px;
  height: 240px;
  transform-style: preserve-3d;
}

.glass-card {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05), inset 0 0 0 1px rgba(255, 255, 255, 0.5);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.card-chip {
  width: 44px;
  height: 32px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.card-logo {
  font-weight: 800;
  font-size: 18px;
  color: #1f2937;
  font-style: italic;
}

.card-label {
  font-size: 10px;
  font-weight: 700;
  color: #6b7280;
  letter-spacing: 1px;
}

.card-amount {
  font-size: 28px;
  font-weight: 800;
  color: #111827;
  margin: 4px 0;
}

.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.card-user {
  font-size: 14px;
  font-weight: 600;
  color: #4b5563;
}

.card-wifi {
  font-size: 20px;
  opacity: 0.5;
  transform: rotate(90deg);
}

/* Stack Positioning */
.card-back {
  transform: translate3d(20px, -30px, -100px) rotate(-4deg);
  opacity: 0.6;
}

.card-middle {
  transform: translate3d(10px, -15px, -50px) rotate(-2deg);
  opacity: 0.8;
}

.card-front {
  transform: translate3d(0, 0, 0) rotate(0);
  background: rgba(255, 255, 255, 0.6);
  z-index: 5;
}

/* Hover effect on stack */
.glass-cards-stack:hover .card-back {
  transform: translate3d(40px, -50px, -100px) rotate(-6deg);
}

.glass-cards-stack:hover .card-middle {
  transform: translate3d(20px, -25px, -50px) rotate(-3deg);
}

.glass-cards-stack:hover .card-front {
  transform: translate3d(-10px, 10px, 20px) rotate(2deg);
}

/* Social Proof Bar */
.social-proof-bar {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  background: #1f2937;
  padding: 12px 32px;
  border-radius: 99px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  z-index: 20;
  width: max-content;
  max-width: 90%;
}

.social-proof-content {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.proof-avatars {
  display: flex;
  align-items: center;
}

.proof-avatars img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid #1f2937;
  margin-left: -12px;
}

.proof-avatars img:first-child {
  margin-left: 0;
}

.avatar-more {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: white;
  color: #1f2937;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #1f2937;
  margin-left: -12px;
  z-index: 5;
}

.proof-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.proof-text .stars {
  color: #fbbf24;
  font-size: 14px;
  letter-spacing: 2px;
}

.proof-text span {
  color: #d1d5db;
  font-size: 13px;
  font-weight: 500;
}

.proof-platforms {
  display: flex;
  gap: 12px;
  align-items: center;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  padding-left: var(--space-xl);
}

/* Responsive */
@media (max-width: 992px) {
  .hero-container-new {
    grid-template-columns: 1fr;
    text-align: center;
    gap: var(--space-xl);
    padding-bottom: 120px;
  }

  .hero-badges-wrapper {
    justify-content: center;
  }

  .hero-actions-new {
    justify-content: center;
  }

  .hero-desc {
    margin: 0 auto var(--space-xl);
  }

  .hero-title-new {
    font-size: 3.5rem;
  }

  .social-proof-content {
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-md);
  }

  .proof-platforms {
    border-left: none;
    padding-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--space-sm);
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .hero-title-new {
    font-size: 2.5rem;
  }

  .glass-cards-stack {
    width: 300px;
    height: 190px;
  }

  .card-amount {
    font-size: 22px;
  }

  .social-proof-bar {
    bottom: 10px;
    padding: 12px 20px;
  }
}

/* ========================================
   Full Page Redesign (TryBuzzer Style)
   ======================================== */

/* Stats Section */
.stats-section-new {
  padding: 40px 0 20px;
  background: #f9fafb;
}

.stats-grid-new {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.stat-card-new {
  background: white;
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  display: flex;
  align-items: center;
  gap: 20px;
  transition: transform 0.2s;
}

.stat-card-new:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.stat-icon-wrapper {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-icon-wrapper.red {
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
}

.stat-icon-wrapper.blue {
  background: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
}

.stat-icon-wrapper.pink {
  background: hsla(258.82deg, 88.7%, 45.1%, 0.1);
  color: hsl(258.82deg 88.7% 45.1%);
}

.stat-number-new {
  font-size: 36px;
  font-weight: 800;
  color: #f97316;
  line-height: 1.1;
  margin-bottom: 4px;
}

.stat-label-new {
  font-size: 14px;
  color: #6b7280;
  font-weight: 500;
}

/* Features Section */
.features-section-new {
  padding: 80px 0;
  background: #f9fafb;
}

.section-header-new {
  margin-bottom: 60px;
}

.section-header-new.center {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-header-new h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1f2937;
  margin-bottom: 16px;
}

.section-header-new p {
  font-size: 1.125rem;
  color: #4b5563;
}

.features-grid-new {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
}

.feature-card-new {
  background: white;
  border-radius: 24px;
  padding: 32px 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  transition: transform 0.2s;
}

.feature-card-new:hover {
  transform: translateY(-5px);
}

.feature-icon-wrapper {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.feature-icon-wrapper.purple {
  background: rgba(139, 92, 246, 0.1);
  color: #8b5cf6;
}

.feature-icon-wrapper.green {
  background: rgba(34, 197, 94, 0.1);
  color: #22c55e;
}

.feature-card-new h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #111827;
}

.feature-card-new p {
  color: #6b7280;
  font-size: 14px;
  line-height: 1.6;
}

/* How It Works Split Layout */
.how-it-works-new {
  padding: 80px 0;
  background: white;
}

.role-toggle-wrapper {
  display: inline-flex;
  background: #f3f4f6;
  padding: 4px;
  border-radius: 99px;
  margin-top: 24px;
}

.role-toggle {
  padding: 10px 24px;
  border-radius: 99px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  color: #6b7280;
  transition: all 0.2s ease;
}

.role-toggle.active {
  background: white;
  color: #f97316;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.how-it-works-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 60px;
}

.hiw-header h3 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: #1f2937;
}

.hiw-header p {
  color: #4b5563;
  margin-bottom: 32px;
}

.hiw-step-card {
  display: flex;
  gap: 16px;
  padding: 24px;
  background: #f9fafb;
  border-radius: 16px;
  margin-bottom: 16px;
  transition: background 0.2s;
}

.hiw-step-card:hover {
  background: #f3f4f6;
}

.hiw-step-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hiw-step-icon.orange {
  background: rgba(249, 115, 22, 0.1);
  color: #f97316;
}

.hiw-step-content h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
  color: #111827;
}

.hiw-step-content p {
  font-size: 14px;
  color: #6b7280;
}

/* Generic Phone Mockup */
.phone-mockup {
  width: 320px;
  height: 640px;
  background: white;
  border-radius: 40px;
  border: 12px solid #1f2937;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.phone-notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 24px;
  background: #1f2937;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  z-index: 10;
}

.phone-inner {
  height: 100%;
  display: flex;
  flex-direction: column;
  background: #f9fafb;
}

.phone-header {
  padding: 40px 20px 20px;
  display: flex;
  justify-content: space-between;
  background: white;
  border-bottom: 1px solid #e5e7eb;
}

.phone-body {
  padding: 20px;
  flex: 1;
}

.phone-welcome {
  font-size: 20px;
  margin-bottom: 24px;
  color: #1f2937;
}

.phone-stats {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
}

.p-stat {
  background: white;
  padding: 16px;
  border-radius: 12px;
  flex: 1;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.p-stat small {
  display: block;
  font-size: 10px;
  color: #6b7280;
  margin-bottom: 4px;
}

.p-stat strong {
  font-size: 18px;
  color: #111827;
}

.phone-promo {
  background: var(--gradient-primary);
  padding: 20px;
  border-radius: 16px;
  display: flex;
  gap: 12px;
}

.promo-icon {
  font-size: 24px;
}

.promo-text strong {
  color: #1f2937;
  font-size: 14px;
}

.promo-btn {
  background: white;
  display: inline-block;
  padding: 6px 12px;
  border-radius: 99px;
  font-size: 12px;
  font-weight: 600;
  margin-top: 12px;
  color: #111827;
}

/* CTA Section */
.cta-section-new {
  padding: 100px 0;
  background: radial-gradient(circle at center, #2e1065 0%, #171717 100%);
  color: white;
  text-align: center;
}

.cta-box-new {
  max-width: 600px;
  margin: 0 auto;
}

.cta-box-new h2 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.cta-box-new p {
  font-size: 1.125rem;
  color: #d1d5db;
  margin-bottom: 40px;
}

.cta-actions-new {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-white-pill {
  background: white;
  color: #111827;
  padding: 14px 32px;
  border-radius: 99px;
  font-weight: 700;
  transition: transform 0.2s;
  text-decoration: none;
}

.btn-white-pill:hover {
  transform: translateY(-2px);
  background: #f9fafb;
}

.btn-discord-pill {
  background: #5865F2;
  color: white;
  padding: 14px 32px;
  border-radius: 99px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s;
  text-decoration: none;
}

.btn-discord-pill:hover {
  background: #4752c4;
  color: white;
}

/* Responsive updates for new sections */
@media (max-width: 992px) {
  .stats-grid-new {
    grid-template-columns: 1fr;
  }

  .features-grid-new {
    grid-template-columns: repeat(2, 1fr);
  }

  .how-it-works-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hiw-visual {
    order: -1;
  }

  .cta-box-new h2 {
    font-size: 2.5rem;
  }
}

@media (max-width: 640px) {
  .features-grid-new {
    grid-template-columns: 1fr;
  }

  .section-header-new.center h2 {
    font-size: 2rem;
  }

  .cta-box-new h2 {
    font-size: 2rem;
  }
}

/* ========================================
   Footer Minimalis (TryBuzzer Style)
   ======================================== */
.footer-new {
  background: #111111;
  color: #9ca3af;
  padding: 32px 0;
  border-top: 1px solid #1f2937;
}

.footer-container-new {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-left {
  font-size: 14px;
}

.footer-right {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-links a {
  color: #9ca3af;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: white;
}

.footer-socials-new {
  display: flex;
  gap: 16px;
}

.footer-socials-new a {
  color: #9ca3af;
  font-size: 18px;
  text-decoration: none;
  transition: transform 0.2s, color 0.2s;
}

.footer-socials-new a:hover {
  color: white;
  transform: translateY(-2px);
}

@media (max-width: 640px) {
  .footer-container-new {
    flex-direction: column;
    text-align: center;
  }

  .footer-right {
    flex-direction: column;
    gap: 20px;
  }

  .footer-links {
    justify-content: center;
  }
}

/* ========================================
   Campaign Card UI Enhancements
   ======================================== */
.campaign-category-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--text-primary);
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  z-index: 10;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

[data-theme="dark"] .campaign-category-badge {
  background: rgba(30, 30, 30, 0.85);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.1);
}

.campaign-budget-progress {
  margin-top: var(--space-md);
  padding-top: var(--space-sm);
  border-top: 1px dashed var(--border-color);
}

.budget-progress-labels {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  color: var(--text-muted);
  margin-bottom: 6px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.budget-progress-labels span:last-child {
  color: var(--warning);
}

.budget-progress-track {
  height: 6px;
  background: var(--bg-tertiary);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: inset 0 1px 2px rgba(0,0,0,0.05);
}

.budget-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #F59E0B, #EF4444);
  border-radius: 4px;
  max-width: 100%;
  transition: width 0.4s ease-out;
}