/* =============================================
   BRANDIBLE — THE BRAND ACTIVATION NETWORK
   ============================================= */

/* ---- CSS Variables ---- */
:root {
  --primary: #7c3aed;
  --primary-dark: #5b21b6;
  --primary-light: #a78bfa;
  --primary-glow: rgba(124, 58, 237, 0.22);

  --bg-light: #f8f7ff;
  --bg-white: #ffffff;
  --dark-bg: #080314;

  --text-heading: #1e1b4b;
  --text-body: #374151;
  --text-muted: #6b7280;
  --text-on-dark: rgba(255,255,255,0.88);
  --text-on-dark-muted: rgba(255,255,255,0.58);

  --border: rgba(0,0,0,0.08);
  --border-dark: rgba(255,255,255,0.1);

  --gold: #f59e0b;
  --success: #10b981;

  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;

  --shadow-sm: 0 1px 4px rgba(0,0,0,0.07);
  --shadow-md: 0 4px 24px rgba(0,0,0,0.09);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.14);
  --shadow-primary: 0 6px 28px rgba(124,58,237,0.32);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
img { max-width: 100%; display: block; }

/* ---- Base ---- */
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-body);
  background: var(--bg-white);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  color: var(--text-heading);
  line-height: 1.2;
  letter-spacing: -0.02em;
  font-weight: 700;
}

/* ---- Container ---- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--r-md);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  transition: all 0.25s ease;
  cursor: pointer;
  border: none;
  white-space: nowrap;
  line-height: 1;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  box-shadow: var(--shadow-primary);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(124,58,237,0.42);
}

.btn-secondary {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-secondary:hover {
  background: var(--primary);
  color: white;
}

.btn-full {
  width: 100%;
  padding: 16px;
  font-size: 1rem;
}

/* ============================================
   SECTION HEADER
   ============================================ */
.section-header {
  text-align: center;
  margin-bottom: clamp(40px, 6vw, 70px);
}

.section-header h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 800;
  margin-bottom: 14px;
  line-height: 1.15;
}

.section-header p {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.65;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  padding: 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(124,58,237,0.07);
  transition: box-shadow 0.3s ease, background 0.3s ease;
}

.navbar.scrolled {
  box-shadow: 0 4px 28px rgba(0,0,0,0.1);
  background: rgba(255,255,255,0.98);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 70px;
}

.nav-logo .header-logo {
  height: 42px;
  transition: opacity 0.2s;
}
.nav-logo .header-logo:hover { opacity: 0.8; }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-link {
  margin: 0;
  padding: 8px 12px;
  text-decoration: none;
  color: var(--text-body);
  font-weight: 500;
  font-size: 0.875rem;
  border-radius: var(--r-sm);
  transition: all 0.2s ease;
}
.nav-link:hover {
  color: var(--primary);
  background: rgba(124,58,237,0.07);
}

.cta-button {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%) !important;
  color: white !important;
  padding: 10px 20px !important;
  border-radius: var(--r-md) !important;
  margin-left: 10px;
  font-size: 0.85rem !important;
  font-weight: 600 !important;
  box-shadow: 0 4px 16px rgba(124,58,237,0.28);
  transition: all 0.25s ease !important;
}
.cta-button:hover {
  transform: translateY(-1px) !important;
  box-shadow: 0 8px 28px rgba(124,58,237,0.4) !important;
  background: rgba(0,0,0,0) !important;
  background: linear-gradient(135deg, var(--primary-dark), #3730a3) !important;
}

.hamburger {
  display: none;
  cursor: pointer;
  padding: 6px;
  border-radius: var(--r-sm);
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px 0;
  background: var(--text-body);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(7px, -6px); }

/* ============================================
   HERO
   ============================================ */
.hero {
  background: linear-gradient(155deg, #080314 0%, #0e0920 40%, #180f38 70%, #0d1845 100%);
  padding-top: clamp(110px, 15vw, 160px);
  padding-bottom: clamp(70px, 10vw, 120px);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -15%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(124,58,237,0.14) 0%, transparent 65%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(67,56,202,0.1) 0%, transparent 65%);
  pointer-events: none;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 1;
}

.hero-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.14;
  margin-bottom: 24px;
  color: white;
  letter-spacing: -0.03em;
}
.hero-title .highlight {
  background: linear-gradient(135deg, #a78bfa, #c4b5fd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: rgba(255,255,255,0.72);
  margin-bottom: 36px;
  line-height: 1.72;
}

.hero-stats {
  display: flex;
  gap: 0;
  margin-bottom: 40px;
}

.stat {
  padding: 0 28px 0 0;
  margin-right: 28px;
  border-right: 1px solid rgba(255,255,255,0.12);
}
.stat:last-child { border-right: none; padding-right: 0; margin-right: 0; }

.stat-number {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--primary-light);
  line-height: 1.2;
}
.stat-text {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
  line-height: 1.35;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero .btn-secondary {
  color: rgba(255,255,255,0.88);
  border-color: rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.06);
}
.hero .btn-secondary:hover {
  background: rgba(255,255,255,0.13);
  color: white;
  border-color: rgba(255,255,255,0.45);
}

/* Hero Phone Visual */
.hero-image { position: relative; }

.hero-visual {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-xl);
  padding: 28px;
}

.phone-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.phone-mockup {
  background: white;
  border-radius: var(--r-lg);
  padding: 10px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.5);
}

.phone-screen {
  background: #f9f7ff;
  border-radius: 12px;
  padding: 14px;
  height: 250px;
  overflow: hidden;
}

.status-story {
  background: white;
  border-radius: 10px;
  padding: 13px;
  box-shadow: var(--shadow-sm);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.story-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.profile-pic {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 0.65rem;
  flex-shrink: 0;
}

.username {
  font-weight: 700;
  font-size: 0.75rem;
  color: var(--text-heading);
}

.story-content { flex: 1; }

.story-content .brand-content {
  background: var(--bg-light);
  border-radius: 8px;
  padding: 10px;
  text-align: center;
  height: 100%;
}
.story-content .brand-content h4 {
  font-size: 0.75rem;
  margin-bottom: 5px;
  color: var(--text-heading);
}
.story-content .brand-content p {
  font-size: 0.68rem;
  color: var(--text-muted);
  margin-bottom: 8px;
  line-height: 1.4;
}

.brand-logo {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  border-radius: 4px;
  padding: 3px 8px;
  font-size: 0.6rem;
  font-weight: 700;
  display: inline-block;
  letter-spacing: 0.04em;
}

.story-stats {
  margin-top: 8px;
  font-size: 0.7rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ============================================
   APP DOWNLOAD
   ============================================ */
.app-download-section {
  padding: clamp(44px, 7vw, 72px) 0;
  background: var(--bg-light);
  text-align: center;
  border-top: 1px solid rgba(124,58,237,0.07);
  border-bottom: 1px solid rgba(124,58,237,0.07);
}

.app-download-section .section-header {
  margin-bottom: 28px;
}
.app-download-section .section-header h2 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
}

.app-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.app-buttons .app-button {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-primary);
  transition: all 0.25s ease;
  min-height: 52px;
}
.app-buttons .app-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(124,58,237,0.42);
}

.app-buttons .playstore-button {
  background: #0f0c24;
  box-shadow: 0 6px 24px rgba(0,0,0,0.35);
}
.app-buttons .playstore-button:hover {
  background: #1a1640;
  box-shadow: 0 12px 36px rgba(0,0,0,0.45);
}

/* ============================================
   PROBLEM SECTION
   ============================================ */
.problem-section {
  padding: clamp(70px, 10vw, 120px) 0;
  background: var(--bg-white);
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.problem-card {
  background: white;
  padding: 36px 30px;
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  border-top: 4px solid transparent;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.problem-card:nth-child(1) { border-top-color: #ef4444; }
.problem-card:nth-child(2) { border-top-color: #f59e0b; }
.problem-card:nth-child(3) { border-top-color: #6366f1; }
.problem-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.problem-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 20px;
}
.problem-card:nth-child(1) .problem-icon { background: #fef2f2; color: #ef4444; }
.problem-card:nth-child(2) .problem-icon { background: #fffbeb; color: #f59e0b; }
.problem-card:nth-child(3) .problem-icon { background: #eef2ff; color: #6366f1; }

.problem-card h3 {
  font-size: 1.05rem;
  margin-bottom: 12px;
  color: var(--text-heading);
}
.problem-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.65;
  margin: 0;
}

/* ============================================
   GROWTH LOOP — SOLUTION
   ============================================ */
.growth-loop-section {
  padding: clamp(70px, 10vw, 110px) 0;
  background: linear-gradient(155deg, #080314 0%, #0e0920 50%, #180f38 100%);
  position: relative;
  overflow: hidden;
}
.growth-loop-section::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(124,58,237,0.12) 0%, transparent 65%);
  pointer-events: none;
}

.growth-loop-section .section-header h2 { color: white; }
.growth-loop-section .section-header p { color: var(--text-on-dark-muted); }

.growth-loop-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
  z-index: 1;
}

.loop-phase {
  background: rgba(255,255,255,0.055);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 36px 24px 30px;
  border-radius: var(--r-lg);
  text-align: center;
  border: 1px solid rgba(255,255,255,0.09);
  transition: all 0.3s ease;
  position: relative;
}
.loop-phase:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,0.09);
  border-color: rgba(167,139,250,0.35);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.phase-number {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.8rem;
  box-shadow: 0 4px 16px rgba(124,58,237,0.55);
}

.phase-icon {
  font-size: 2.2rem;
  margin-bottom: 18px;
  color: var(--primary-light);
}

.loop-phase h3 {
  font-size: 1rem;
  margin-bottom: 12px;
  color: white;
}
.loop-phase p {
  font-size: 0.875rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.72);
  margin: 0;
}

/* ============================================
   SERVICES — THREE ROLES
   ============================================ */
.services-section {
  padding: clamp(70px, 10vw, 120px) 0;
  background: var(--bg-light);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: white;
  padding: 40px 32px;
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-dark));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(124,58,237,0.14);
}
.service-card:hover::after { transform: scaleX(1); }

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--r-md);
  background: linear-gradient(135deg, rgba(124,58,237,0.1), rgba(124,58,237,0.04));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--primary);
  margin-bottom: 22px;
}

.service-card h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
  color: var(--text-heading);
}
.service-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.65;
  margin-bottom: 20px;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--border);
  padding-top: 18px;
}
.service-features li {
  margin-bottom: 9px;
  padding-left: 20px;
  position: relative;
  font-size: 0.875rem;
  color: var(--text-body);
  line-height: 1.5;
}
.service-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--primary);
}

/* ============================================
   HOW A SALE WORKS
   ============================================ */
.how-it-works-section {
  padding: clamp(70px, 10vw, 120px) 0;
  background: var(--bg-white);
}

.workflow-container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
  position: relative;
}
.workflow-container::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-light), var(--primary));
  opacity: 0.15;
  z-index: 0;
}

.workflow-step {
  text-align: center;
  width: 17%;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 18px;
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 4px 18px rgba(124,58,237,0.42);
  position: relative;
  z-index: 2;
}

.step-content h3 {
  margin-bottom: 8px;
  font-size: 0.95rem;
  color: var(--text-heading);
  line-height: 1.35;
}
.step-content p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.step-visual {
  font-size: 1.8rem;
  color: var(--primary-light);
  margin-top: 14px;
  opacity: 0.75;
}

.workflow-arrow {
  font-size: 1.1rem;
  color: var(--primary-light);
  width: 4%;
  text-align: center;
  margin-top: 12px;
  opacity: 0.4;
  flex-shrink: 0;
}

/* ============================================
   PERFORMANCE EDGE — HUB DIFFERENTIATOR
   ============================================ */
.performance-edge-section {
  padding: clamp(70px, 10vw, 110px) 0;
  background: var(--bg-light);
}

.performance-content {
  max-width: 840px;
  margin: 0 auto;
}

.performance-text {
  background: white;
  padding: clamp(32px, 5vw, 52px);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}

.lead-text {
  font-size: 1rem;
  line-height: 1.78;
  color: var(--text-body);
  margin-bottom: 20px;
}

.highlight-text {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--primary);
  margin-bottom: 22px;
  font-weight: 600;
}

.performance-benefits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 28px;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 16px;
  background: var(--bg-light);
  border-radius: var(--r-md);
  border: 1px solid rgba(124,58,237,0.07);
}
.benefit-item i {
  font-size: 1.1rem;
  color: var(--success);
  flex-shrink: 0;
}
.benefit-item span {
  font-size: 0.88rem;
  color: var(--text-body);
  font-weight: 500;
  line-height: 1.4;
}

/* ============================================
   CREATORS / AGENTS — DARK GRADIENT
   ============================================ */
.creators-agents-section {
  padding: clamp(70px, 10vw, 110px) 0;
  background: linear-gradient(155deg, #0e0920 0%, #100830 50%, #180f38 100%);
  position: relative;
  overflow: hidden;
}
.creators-agents-section::before {
  content: '';
  position: absolute;
  bottom: -25%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(67,56,202,0.12) 0%, transparent 65%);
  pointer-events: none;
}

.creators-agents-section .section-header h2 { color: white; }
.creators-agents-section .section-header p { color: var(--text-on-dark-muted); }

.creators-content {
  max-width: 860px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.creators-text {
  background: rgba(255,255,255,0.055);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: clamp(28px, 5vw, 50px);
  border-radius: var(--r-xl);
  border: 1px solid rgba(255,255,255,0.09);
}

.creators-text .lead-text {
  color: rgba(255,255,255,0.82);
  font-size: 1rem;
  margin-bottom: 30px;
}

.creators-benefits {
  display: grid;
  gap: 14px;
  margin-bottom: 36px;
}

.creators-benefits .benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: rgba(255,255,255,0.065);
  padding: 20px 22px;
  border-radius: var(--r-md);
  border: 1px solid rgba(255,255,255,0.09);
}
.creators-benefits .benefit-item i {
  font-size: 1.6rem;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}
.creators-benefits .benefit-item h4 {
  color: white;
  font-size: 0.98rem;
  margin-bottom: 5px;
}
.creators-benefits .benefit-item p {
  color: rgba(255,255,255,0.68);
  font-size: 0.875rem;
  margin: 0;
  line-height: 1.55;
}

.agent-registration-form {
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: clamp(24px, 4vw, 40px);
  border-radius: var(--r-lg);
  border: 1px solid rgba(255,255,255,0.12);
  margin-top: 36px;
}
.agent-registration-form h3 {
  color: white;
  font-size: 1.3rem;
  margin-bottom: 22px;
  text-align: center;
}
.agent-registration-form .form-group { margin-bottom: 14px; }

.agent-registration-form input,
.agent-registration-form select,
.agent-registration-form textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--r-sm);
  font-size: 0.92rem;
  font-family: inherit;
  background: rgba(255,255,255,0.92);
  color: var(--text-heading);
  transition: all 0.25s ease;
  box-sizing: border-box;
  -webkit-appearance: none;
}
.agent-registration-form input:focus,
.agent-registration-form select:focus,
.agent-registration-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: white;
  box-shadow: 0 0 0 3px rgba(245,158,11,0.18);
}
.agent-registration-form select {
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23374151' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-color: rgba(255,255,255,0.92);
  padding-right: 40px;
}
.agent-registration-form textarea {
  resize: vertical;
  min-height: 88px;
}
.agent-registration-form .btn-full {
  width: 100%;
  padding: 16px;
  font-size: 0.98rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  border-radius: var(--r-md);
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  box-shadow: var(--shadow-primary);
  transition: all 0.25s ease;
  margin-top: 4px;
  min-height: 52px;
}
.agent-registration-form .btn-full:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(124,58,237,0.48);
}
.agent-registration-form .form-note { margin-top: 18px; }
.agent-registration-form .form-note p {
  color: rgba(255,255,255,0.65);
  font-size: 0.82rem;
  text-align: center;
  line-height: 1.5;
}
.agent-registration-form .form-note i {
  margin-right: 6px;
  color: var(--gold);
}

/* ============================================
   BRANDIBLE FUTURE — FEATURES
   ============================================ */
.brandible-future-section {
  padding: clamp(70px, 10vw, 110px) 0;
  background: linear-gradient(155deg, #180f38 0%, #0e0920 60%, #080314 100%);
  position: relative;
  overflow: hidden;
}
.brandible-future-section::before {
  content: '';
  position: absolute;
  top: 10%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(124,58,237,0.1) 0%, transparent 65%);
  pointer-events: none;
}

.brandible-future-section .section-header h2 { color: white; }
.brandible-future-section .section-header p { color: var(--text-on-dark-muted); }

.future-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
  z-index: 1;
}

.future-card {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 30px 24px;
  border-radius: var(--r-lg);
  border: 1px solid rgba(255,255,255,0.08);
  transition: all 0.3s ease;
}
.future-card:hover {
  transform: translateY(-5px);
  background: rgba(255,255,255,0.09);
  border-color: rgba(167,139,250,0.28);
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
}

.future-icon {
  width: 48px;
  height: 48px;
  background: rgba(167,139,250,0.13);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--primary-light);
  margin-bottom: 18px;
}

.future-card h3 {
  font-size: 0.98rem;
  margin-bottom: 10px;
  color: white;
  line-height: 1.35;
}
.future-card p {
  font-size: 0.87rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.68);
  margin: 0;
}

/* ============================================
   CALCULATOR
   ============================================ */
.calculator-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-xl);
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.calculator-card {
  padding: 28px 22px;
  border-right: 1px solid rgba(255,255,255,0.07);
}
.calculator-card:last-child { border-right: none; }

.calculator-step-title {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--primary-light);
  margin-bottom: 18px;
}

.calculator-input-group,
.calculator-output-group { margin-bottom: 14px; }

.calculator-input-group label,
.calculator-output-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
}

.calculator-input-group input {
  width: 100%;
  padding: 10px 13px;
  border-radius: var(--r-sm);
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.09);
  color: white;
  font-size: 0.95rem;
  font-family: inherit;
  transition: all 0.2s;
  box-sizing: border-box;
}
.calculator-input-group input:focus {
  outline: none;
  border-color: var(--primary-light);
  background: rgba(255,255,255,0.14);
}

.calculator-output-value {
  font-size: 1.6rem;
  font-weight: 800;
}
.profit { color: #34d399; }
.loss { color: #f87171; }

.calculator-metric-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  font-size: 0.84rem;
  color: rgba(255,255,255,0.72);
}
.calculator-metric-row:last-of-type { border-bottom: none; }

.highlighted {
  background: rgba(124,58,237,0.22);
  border-radius: var(--r-sm);
  padding: 10px 8px;
  margin: 3px -8px;
  border-bottom: none !important;
  color: white;
  font-weight: 600;
}

.decision-card p {
  font-size: 0.9rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.78);
}
.feasibility-indicator {
  padding: 12px 14px;
  border-radius: var(--r-sm);
  margin-top: 12px;
  font-weight: 600;
  font-size: 0.87rem;
}
.feasible { background: rgba(52,211,153,0.14); color: #34d399; border: 1px solid rgba(52,211,153,0.28); }
.not-feasible { background: rgba(248,113,113,0.14); color: #f87171; border: 1px solid rgba(248,113,113,0.28); }

/* ============================================
   VISION / MISSION — COIN ECONOMY
   ============================================ */
.vision-mission-section {
  padding: clamp(70px, 10vw, 120px) 0;
  background: var(--bg-light);
}
.vision-mission-section .section-header h2 { color: var(--text-heading); }
.vision-mission-section .section-header p { color: var(--text-muted); }

.vision-mission-grid { display: none; } /* not used in new design */

.flywheel-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.flywheel-item {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 30px 22px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}
.flywheel-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(124,58,237,0.2);
}

.flywheel-item i {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 14px;
  display: block;
}
.flywheel-item h4 {
  font-size: 0.98rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-heading);
}
.flywheel-item p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.62;
  margin: 0;
}

/* ============================================
   ABOUT — COMPARISON TABLE
   ============================================ */
.about-section {
  padding: clamp(70px, 10vw, 120px) 0;
  background: var(--bg-white);
}
.about-section .section-header h2 { color: var(--text-heading); }
.about-section .section-header p { color: var(--text-muted); }

.about-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: start;
}

.about-text h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  margin-top: 30px;
  color: var(--text-heading);
}
.about-text h3:first-child { margin-top: 0; }
.about-text p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.72;
  margin: 0;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.stat-card {
  background: var(--bg-light);
  border: 1px solid rgba(124,58,237,0.1);
  padding: 22px 14px;
  border-radius: var(--r-md);
  text-align: center;
  transition: all 0.25s ease;
}
.stat-card:hover {
  border-color: var(--primary-light);
  box-shadow: 0 4px 20px rgba(124,58,237,0.1);
}
.stat-card .stat-number {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.2;
}
.stat-card .stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 6px;
  line-height: 1.35;
}

/* Comparison table */
.about-text {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  min-width: 540px;
}

.comparison-table th,
.comparison-table td {
  padding: 13px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}
.comparison-table th {
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.comparison-table thead {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}
.comparison-table thead th {
  border-bottom: none;
  color: white;
}
.comparison-table tbody tr:nth-child(even) { background: var(--bg-light); }
.comparison-table tbody tr:hover { background: rgba(124,58,237,0.04); }
.comparison-table td:first-child { font-weight: 600; color: var(--primary); }
.comparison-table td:last-child { color: var(--success); font-weight: 500; }

/* ============================================
   WHO IT'S FOR
   ============================================ */
.who-its-for-section {
  padding: clamp(70px, 10vw, 120px) 0;
  background: var(--bg-light);
}
.who-its-for-section .section-header h2 { color: var(--text-heading); }
.who-its-for-section .section-header p { color: var(--text-muted); }

.who-list {
  max-width: 660px;
  margin: 0 auto;
  list-style: none;
  padding: 0;
}

.who-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 12px;
  font-size: 0.95rem;
  color: var(--text-body);
  background: white;
  padding: 18px 20px;
  border-radius: var(--r-md);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  line-height: 1.55;
  transition: border-color 0.2s ease;
}
.who-list li:hover { border-color: rgba(124,58,237,0.22); }
.who-list li i {
  color: var(--primary);
  margin-top: 3px;
  flex-shrink: 0;
  font-size: 1rem;
}

/* ============================================
   GET STARTED
   ============================================ */
.get-started-section {
  padding: clamp(70px, 10vw, 120px) 0;
  background: var(--bg-white);
}

.get-started-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: flex-start;
}

.get-started-steps .step {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  padding: 22px 20px;
  background: var(--bg-light);
  border-radius: var(--r-lg);
  border: 1px solid rgba(124,58,237,0.07);
  transition: border-color 0.2s ease;
  align-items: flex-start;
}
.get-started-steps .step:hover { border-color: rgba(124,58,237,0.24); }

.step-icon {
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  color: white;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(124,58,237,0.32);
}
.get-started-steps .step h3 {
  font-size: 1rem;
  margin-bottom: 5px;
  color: var(--text-heading);
}
.get-started-steps .step p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

.get-started-form {
  background: white;
  padding: clamp(28px, 4vw, 44px);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.get-started-form h3 {
  font-size: 1.45rem;
  margin-bottom: 24px;
  text-align: center;
  color: var(--text-heading);
}

.contact-form .form-group { margin-bottom: 14px; }

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid #e5e7eb;
  border-radius: var(--r-sm);
  font-size: 0.92rem;
  font-family: inherit;
  color: var(--text-heading);
  background: white;
  transition: all 0.22s ease;
  box-sizing: border-box;
  -webkit-appearance: none;
  min-height: 48px;
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-glow);
}
.contact-form select {
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236b7280' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-color: white;
  padding-right: 40px;
}
.contact-form textarea { resize: vertical; min-height: 96px; }

.form-note {
  margin-top: 16px;
  font-size: 0.83rem;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.55;
}
.form-note i { color: var(--primary); margin-right: 5px; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: clamp(60px, 8vw, 90px) 0 0;
  background: #060212;
  color: rgba(255,255,255,0.5);
}

.footer-content {
  display: grid;
  grid-template-columns: 1.6fr repeat(4, 1fr);
  gap: 40px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-section h3 {
  color: white;
  margin-bottom: 18px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
}
.footer-section p {
  font-size: 0.875rem;
  line-height: 1.65;
  margin-bottom: 20px;
}
.footer-section ul { list-style: none; padding: 0; margin: 0; }
.footer-section ul li { margin-bottom: 9px; }
.footer-section a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s ease;
}
.footer-section a:hover { color: white; }

.footer-logo-img {
  height: 40px;
  margin-bottom: 16px;
  filter: brightness(1.1);
}

.social-links {
  display: flex;
  gap: 10px;
  margin-top: 4px;
}
.social-links a {
  width: 34px;
  height: 34px;
  background: rgba(255,255,255,0.07);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: all 0.25s ease;
  color: rgba(255,255,255,0.5);
}
.social-links a:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
}

.contact-info { margin: 0; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 11px;
  font-size: 0.86rem;
  line-height: 1.5;
}
.contact-item i {
  color: var(--primary-light);
  margin-top: 3px;
  flex-shrink: 0;
  font-size: 0.9rem;
}

.footer-bottom {
  padding: 22px 0;
}
.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
}

/* ============================================
   RESPONSIVE — TABLET 992px
   ============================================ */
@media (max-width: 992px) {
  /* Nav mobile drawer */
  .nav-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    height: calc(100vh - 70px);
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 20px;
    overflow-y: auto;
    border-top: 1px solid var(--border);
    gap: 4px;
    z-index: 999;
  }
  .nav-menu.active { display: flex; }

  .nav-link {
    margin: 0;
    padding: 13px 16px;
    font-size: 1rem;
    width: 100%;
    border-radius: var(--r-md);
    border-bottom: 1px solid var(--border);
  }
  .nav-link:last-child { border-bottom: none; }

  .cta-button {
    margin-left: 0 !important;
    margin-top: 12px;
    width: 100%;
    text-align: center !important;
    justify-content: center;
    padding: 14px 20px !important;
    font-size: 0.95rem !important;
  }

  .hamburger { display: block; }

  /* Layouts */
  .hero-container { grid-template-columns: 1fr; gap: 44px; }
  .hero-image { max-width: 480px; margin: 0 auto; width: 100%; }

  .growth-loop-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .future-grid { grid-template-columns: repeat(2, 1fr); }
  .flywheel-grid { grid-template-columns: repeat(2, 1fr); }

  .get-started-content { grid-template-columns: 1fr; gap: 40px; }
  .about-content { grid-template-columns: 1fr; gap: 36px; }

  .footer-content { grid-template-columns: repeat(3, 1fr); gap: 32px; }
  .footer-bottom-content { flex-direction: column; gap: 6px; text-align: center; }

  /* Calculator */
  .calculator-container { grid-template-columns: repeat(2, 1fr); }
  .calculator-card:nth-child(2) { border-right: none; }
  .calculator-card:nth-child(3) { border-top: 1px solid rgba(255,255,255,0.07); }
  .calculator-card:nth-child(4) { border-right: none; border-top: 1px solid rgba(255,255,255,0.07); }
}

/* ============================================
   RESPONSIVE — MOBILE 768px
   ============================================ */
@media (max-width: 768px) {
  /* Hero */
  .hero-stats { flex-wrap: wrap; gap: 16px; }
  .stat {
    padding-right: 16px;
    margin-right: 16px;
  }
  .hero-buttons { flex-direction: column; width: 100%; }
  .hero-buttons .btn { width: 100%; justify-content: center; }
  .hero .btn-secondary { justify-content: center; }

  .phone-grid { grid-template-columns: 1fr; gap: 14px; }
  .phone-screen { height: 180px; }

  /* Workflow */
  .workflow-container { flex-direction: column; align-items: center; }
  .workflow-container::before { display: none; }
  .workflow-step { width: 100%; max-width: 380px; }
  .workflow-arrow { transform: rotate(90deg); margin: 0; opacity: 0.35; }

  /* Grids → 1 col */
  .problem-grid,
  .services-grid,
  .future-grid,
  .growth-loop-grid,
  .flywheel-grid { grid-template-columns: 1fr; }

  /* Performance */
  .performance-benefits { grid-template-columns: 1fr; }

  /* Steps */
  .get-started-steps .step { flex-direction: column; gap: 12px; }

  /* Creators */
  .creators-benefits .benefit-item { flex-direction: column; gap: 10px; text-align: center; }
  .creators-benefits .benefit-item i { align-self: center; }

  /* Forms */
  .get-started-form { padding: 24px 18px; }
  .agent-registration-form { padding: 22px 16px; }

  /* Calculator */
  .calculator-container { grid-template-columns: 1fr; border-radius: var(--r-lg); }
  .calculator-card {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    padding: 22px 18px;
  }
  .calculator-card:last-child { border-bottom: none; }

  /* Footer */
  .footer-content { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .footer-section:first-child { grid-column: 1 / -1; }

  /* Comparison table: horizontal scroll via parent overflow-x */
  .comparison-table { min-width: 520px; }
}

/* ============================================
   RESPONSIVE — SMALL MOBILE 480px
   ============================================ */
@media (max-width: 480px) {
  .hero-stats { flex-direction: column; gap: 14px; }
  .stat { border-right: none; padding-right: 0; margin-right: 0; }

  .app-buttons { flex-direction: column; padding: 0; gap: 12px; }
  .app-buttons .app-button { width: 100%; justify-content: center; padding: 14px 20px; }

  .performance-text { padding: 24px 18px; }
  .creators-text { padding: 24px 16px; }

  .footer-content { grid-template-columns: 1fr; gap: 24px; }
  .about-stats { grid-template-columns: 1fr 1fr; }

  .section-header { margin-bottom: 32px; }
}
