/* ==========================================================================
   DESIGN SYSTEM & VARIABLES - DIGITAL GOAT (OUTLIER & MUNDPAY TYPOGRAPHY)
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@1&family=Inter:wght@300;400;500;600;700&family=Space+Grotesk:wght@300;400;500;600;700&display=swap');

:root {
  /* Colors - Luxury Dark & Violet Palette */
  --bg-primary: #070708;
  --bg-secondary: #0c0c0f;
  --bg-tertiary: #131317;
  --lead-grey: #1c1c21;
  --lead-border: rgba(124, 58, 237, 0.12); /* Subtle Violet Border */
  
  --text-primary: #ffffff;
  --text-secondary: #c5c5cb; /* Antique/Classic Grey */
  --text-muted: #71717a;
  
  /* Violet Branding (Primary Accent) */
  --violet-primary: #7c3aed;
  --violet-hover: #8b5cf6;
  --violet-glow: rgba(124, 58, 237, 0.05);
  --violet-border-glow: rgba(124, 58, 237, 0.25);
  --violet-gradient: linear-gradient(135deg, #6d28d9 0%, #7c3aed 50%, #c084fc 100%);
  --violet-text-gradient: linear-gradient(135deg, #8b5cf6 0%, #a78bfa 50%, #c084fc 100%);
  
  /* Antique Gold & Champagne (For Achievements Only) */
  --gold-primary: #c5a880;
  --gold-hover: #ecdcb9;
  --gold-dark: #8d7355;
  --gold-gradient: linear-gradient(135deg, #8d7355 0%, #c5a880 50%, #ecdcb9 100%);
  
  /* Status Colors */
  --status-success: #10b981;
  --status-success-bg: rgba(16, 185, 129, 0.03);
  
  /* Glassmorphism */
  --glass-bg: rgba(12, 12, 15, 0.7);
  --glass-backdrop: blur(20px);
  
  /* Typography - Reference Site Fonts (MundPay Style) */
  --font-headings: 'Space Grotesk', sans-serif;
  --font-italic: 'Instrument Serif', serif;
  --font-body: 'Inter', sans-serif;
  
  /* Layout & Transitions */
  --max-width: 1200px;
  --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  --border-radius-sm: 4px;
  --border-radius-md: 12px;
  --border-radius-lg: 20px;
}

/* ==========================================================================
   BASE & RESET STYLES
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
  width: 100%;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  -webkit-font-smoothing: antialiased;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
  background: var(--lead-grey);
  border: 1px solid var(--lead-border);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--violet-primary);
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-smooth);
}

button, input, select {
  font-family: inherit;
  outline: none;
}

/* ==========================================================================
   TYPOGRAPHY & UTILITIES
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-headings);
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

p {
  color: var(--text-secondary);
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 9rem 0;
  position: relative;
}

.section-title-wrap {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 6rem;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--violet-hover);
  margin-bottom: 1.5rem;
}

.section-tag::before,
.section-tag::after {
  content: '✦';
  font-size: 0.65rem;
  opacity: 0.6;
}

.section-title {
  font-size: 3.5rem;
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.section-title span {
  font-family: var(--font-italic);
  font-style: italic;
  font-weight: 400;
  font-size: 4.2rem; /* Classy tall display font */
  background: var(--violet-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  padding-right: 4px;
}

.section-subtitle {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Elegant Separators */
.luxury-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 2rem 0;
  opacity: 0.3;
}

.luxury-divider::before,
.luxury-divider::after {
  content: '';
  height: 1px;
  width: 60px;
  background: linear-gradient(to right, transparent, var(--violet-hover), transparent);
}

.luxury-divider span {
  font-size: 0.75rem;
  color: var(--violet-hover);
  margin: 0 10px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.1rem 2.2rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border-radius: var(--border-radius-sm);
  cursor: pointer;
  transition: var(--transition-smooth);
  border: none;
  gap: 10px;
}

.btn-primary {
  background: var(--violet-gradient);
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(124, 58, 237, 0.2);
  font-weight: 700;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(124, 58, 237, 0.45);
  background: linear-gradient(135deg, #7c3aed 0%, #8b5cf6 50%, #c084fc 100%);
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--lead-border);
}

.btn-secondary:hover {
  background: rgba(124, 58, 237, 0.03);
  border-color: var(--violet-hover);
  transform: translateY(-2px);
}

/* Grid Layouts */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

/* Glow Background Effects */
.bg-glow-violet {
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.08) 0%, rgba(124, 58, 237, 0) 70%);
  z-index: 0;
  pointer-events: none;
}

.bg-glow-gold {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(234, 179, 8, 0.04) 0%, rgba(234, 179, 8, 0) 70%);
  z-index: 0;
  pointer-events: none;
}

/* ==========================================================================
   ANNOUNCEMENT BAR & HEADER
   ========================================================================== */
.announcement-bar {
  background: #050506;
  border-bottom: 1px solid var(--lead-border);
  padding: 0.7rem 0;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  color: var(--text-secondary);
  text-align: center;
  font-weight: 400;
  position: relative;
  z-index: 1001;
}

.announcement-bar a {
  color: var(--violet-hover);
  font-weight: 600;
  margin-left: 0.5rem;
  text-decoration: none;
  border-bottom: 1px solid var(--violet-hover);
}

.announcement-bar a:hover {
  color: var(--violet-primary);
  border-color: var(--violet-primary);
}

.header {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(7, 7, 8, 0.8);
  backdrop-filter: var(--glass-backdrop);
  -webkit-backdrop-filter: var(--glass-backdrop);
  border-bottom: 1px solid rgba(124, 58, 237, 0.05);
  transition: var(--transition-smooth);
}

.header.scrolled {
  background: rgba(7, 7, 8, 0.95);
  border-bottom-color: var(--lead-border);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.7);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 85px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-headings);
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--text-primary);
}

.logo span {
  font-family: var(--font-italic);
  font-style: italic;
  font-weight: 500;
  font-size: 1.9rem;
  background: var(--violet-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.logo-goat-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  background: var(--violet-gradient);
  border-radius: var(--border-radius-sm);
  box-shadow: 0 0 15px rgba(124, 58, 237, 0.25);
  color: #ffffff;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.nav-link {
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
}

.nav-link:hover {
  color: var(--violet-hover);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.btn-nav-login {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-nav-login:hover {
  color: var(--violet-hover);
}

.btn-nav-cta {
  padding: 0.8rem 1.6rem;
  font-size: 0.8rem;
  border-radius: var(--border-radius-sm);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--text-primary);
  font-size: 1.5rem;
  cursor: pointer;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
  position: relative;
  overflow: hidden;
  padding: 12rem 0 9rem;
}

.hero .bg-glow-violet {
  top: -100px;
  right: -50px;
  width: 650px;
  height: 650px;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.5rem 1.2rem;
  border-radius: var(--border-radius-sm);
  background: rgba(124, 58, 237, 0.03);
  border: 1px solid var(--lead-border);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--violet-hover);
  margin-bottom: 2rem;
}

.hero-badge span {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--violet-hover);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--violet-hover);
}

.hero-title {
  font-size: 4.5rem;
  font-weight: 500;
  line-height: 1.05;
  margin-bottom: 1.8rem;
  letter-spacing: -0.03em;
}

.hero-title span {
  font-family: var(--font-italic);
  font-style: italic;
  font-weight: 400;
  font-size: 5.2rem;
  background: var(--violet-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  padding-right: 6px;
}

.hero-description {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 3rem;
  max-width: 550px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

/* Custom Interactive Mockup Dashboard (Outlier & Violet Edition) */
.hero-mockup-wrapper {
  position: relative;
  z-index: 2;
}

.dashboard-mockup {
  background: var(--bg-secondary);
  border: 1px solid var(--lead-border);
  border-radius: var(--border-radius-md);
  padding: 2.2rem;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.8), 0 0 40px rgba(124, 58, 237, 0.05);
  position: relative;
}

.dashboard-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(124, 58, 237, 0.06);
  padding-bottom: 1.5rem;
  margin-bottom: 1.8rem;
}

.dashboard-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-headings);
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.dashboard-logo span {
  font-size: 1rem;
}

.dashboard-dots {
  display: flex;
  gap: 6px;
}

.dashboard-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

.dashboard-dot:nth-child(1) { background: #b45309; }
.dashboard-dot:nth-child(2) { background: #78350f; }
.dashboard-dot:nth-child(3) { background: #1c1917; }

.dashboard-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-bottom: 1.8rem;
}

.stat-card {
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(124, 58, 237, 0.05);
  padding: 1.5rem;
  border-radius: var(--border-radius-sm);
  position: relative;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.stat-value {
  font-family: var(--font-body);
  font-size: 1.55rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
  letter-spacing: -0.01em;
}

.stat-value.text-violet {
  background: var(--violet-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-value.text-green {
  color: #10b981;
}

.stat-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.15rem 0.45rem;
  background: rgba(124, 58, 237, 0.05);
  border: 1px solid rgba(124, 58, 237, 0.15);
  color: var(--violet-hover);
  font-size: 0.7rem;
  font-weight: 600;
  border-radius: var(--border-radius-sm);
}

.dashboard-chart-wrap {
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(124, 58, 237, 0.05);
  padding: 1.5rem;
  border-radius: var(--border-radius-sm);
  margin-bottom: 1.8rem;
}

.chart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.2rem;
}

.chart-title {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-secondary);
}

.chart-legend {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.chart-bars {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  height: 100px;
  padding-top: 1rem;
}

.chart-bar-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 10%;
}

.chart-bar {
  width: 100%;
  background: rgba(124, 58, 237, 0.1);
  border-radius: var(--border-radius-sm);
  position: relative;
  transition: height 1.5s cubic-bezier(0.16, 1, 0.3, 1);
  height: 0px;
}

.chart-bar.active {
  background: var(--violet-gradient);
  box-shadow: 0 0 15px rgba(124, 58, 237, 0.2);
}

.chart-bar-col:nth-child(1) .chart-bar { height: 35px; }
.chart-bar-col:nth-child(2) .chart-bar { height: 45px; }
.chart-bar-col:nth-child(3) .chart-bar { height: 30px; }
.chart-bar-col:nth-child(4) .chart-bar { height: 60px; }
.chart-bar-col:nth-child(5) .chart-bar { height: 50px; }
.chart-bar-col:nth-child(6) .chart-bar { height: 75px; }
.chart-bar-col:nth-child(7) .chart-bar { height: 90px; background: var(--violet-gradient); box-shadow: 0 0 15px rgba(124, 58, 237, 0.2); }

.chart-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

.dashboard-live-payout {
  background: rgba(16, 185, 129, 0.02);
  border: 1px solid rgba(16, 185, 129, 0.08);
  border-radius: var(--border-radius-sm);
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.live-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  color: #10b981;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.live-pulse {
  width: 6px;
  height: 6px;
  background: #10b981;
  border-radius: 50%;
  animation: pulse-green 2s infinite;
}

.payout-text {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.payout-text strong {
  color: var(--text-primary);
}

@keyframes pulse-green {
  0% { transform: scale(0.9); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
  100% { transform: scale(0.9); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

/* ==========================================================================
   TICKER/MARQUEE SECTION
   ========================================================================== */
.ticker-section {
  background: var(--bg-primary);
  border-top: 1px solid var(--lead-border);
  border-bottom: 1px solid var(--lead-border);
  padding: 1.8rem 0;
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.ticker-wrapper {
  display: flex;
  white-space: nowrap;
  width: max-content;
  animation: ticker 40s linear infinite;
}

.ticker-item {
  display: flex;
  align-items: center;
  font-family: var(--font-headings);
  font-weight: 500;
  font-size: 1.5rem;
  color: var(--text-primary);
  padding: 0 3.5rem;
  letter-spacing: 0.02em;
}

.ticker-item span {
  font-family: var(--font-italic);
  font-style: italic;
  font-size: 1.8rem;
  background: var(--violet-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  padding-right: 4px;
}

.ticker-dot {
  font-size: 0.85rem;
  color: var(--violet-hover);
  margin-right: 1.8rem;
  opacity: 0.7;
}

@keyframes ticker {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-50%, 0, 0); }
}

/* ==========================================================================
   DIFFERENTIALS (THE DISRUPTION PROTOCOLS)
   ========================================================================== */
.differentials {
  position: relative;
}

.differentials .bg-glow-violet {
  top: 20%;
  left: -200px;
}

.diff-card {
  background: var(--glass-bg);
  border: 1px solid var(--lead-border);
  backdrop-filter: var(--glass-backdrop);
  -webkit-backdrop-filter: var(--glass-backdrop);
  padding: 3rem;
  border-radius: var(--border-radius-sm);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.diff-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(800px circle at var(--x, 0px) var(--y, 0px), rgba(124, 58, 237, 0.04), transparent 40%);
  pointer-events: none;
}

.diff-card:hover {
  transform: translateY(-4px);
  border-color: var(--violet-border-glow);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.7);
}

.diff-icon-wrap {
  width: 48px;
  height: 48px;
  background: rgba(124, 58, 237, 0.02);
  border: 1px solid rgba(124, 58, 237, 0.08);
  border-radius: var(--border-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--violet-hover);
  margin-bottom: 2.2rem;
  transition: var(--transition-smooth);
}

.diff-card:hover .diff-icon-wrap {
  background: var(--violet-gradient);
  color: #ffffff;
  box-shadow: 0 0 20px rgba(124, 58, 237, 0.3);
  border-color: transparent;
}

.diff-title {
  font-family: var(--font-headings);
  font-size: 1.65rem;
  font-weight: 500;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.diff-description {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.65;
  color: var(--text-secondary);
}

/* ==========================================================================
   FEATURES GRID (THE SOVEREIGNTY ENGINE)
   ========================================================================== */
.features {
  background: var(--bg-secondary);
  border-top: 1px solid var(--lead-border);
  border-bottom: 1px solid var(--lead-border);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.feature-item {
  background: var(--bg-primary);
  border: 1px solid var(--lead-border);
  border-radius: var(--border-radius-sm);
  padding: 2.5rem;
  transition: var(--transition-smooth);
}

.feature-item:hover {
  border-color: var(--violet-border-glow);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7);
  transform: translateY(-2px);
}

.feature-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 1.5rem;
}

.feature-number {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--violet-hover);
  width: 26px;
  height: 26px;
  background: rgba(124, 58, 237, 0.03);
  border: 1px solid rgba(124, 58, 237, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-item:hover .feature-number {
  border-color: var(--violet-primary);
  box-shadow: 0 0 10px rgba(124, 58, 237, 0.15);
}

.feature-title {
  font-family: var(--font-headings);
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.feature-desc {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 300;
  line-height: 1.65;
  color: var(--text-secondary);
}

/* ==========================================================================
   PROFIT CALCULATOR SECTION (DRAIN MATRIX SIMULATOR)
   ========================================================================== */
.calculator {
  position: relative;
  overflow: hidden;
}

.calculator .bg-glow-violet {
  bottom: 10%;
  left: -200px;
  width: 600px;
  height: 600px;
}

.calc-container {
  background: var(--glass-bg);
  border: 1px solid var(--lead-border);
  backdrop-filter: var(--glass-backdrop);
  -webkit-backdrop-filter: var(--glass-backdrop);
  border-radius: var(--border-radius-sm);
  padding: 4.5rem;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.8);
  position: relative;
  z-index: 2;
}

.calc-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 5rem;
}

.calc-controls {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.calc-control-group {
  display: flex;
  flex-direction: column;
}

.calc-label-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.2rem;
}

.calc-label {
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-primary);
}

.calc-value-display {
  font-family: var(--font-body);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--violet-hover);
  background: rgba(124, 58, 237, 0.03);
  border: 1px solid rgba(124, 58, 237, 0.15);
  padding: 0.4rem 1rem;
  border-radius: var(--border-radius-sm);
}

/* Range Slider Custom Styling */
.range-slider-wrap {
  position: relative;
  width: 100%;
}

.range-slider {
  -webkit-appearance: none;
  width: 100%;
  height: 4px;
  border-radius: 9999px;
  background: var(--lead-grey);
  outline: none;
  cursor: pointer;
}

.range-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--violet-primary);
  box-shadow: 0 0 10px rgba(124, 58, 237, 0.4), 0 0 0 4px var(--bg-primary);
  cursor: pointer;
  transition: transform 0.1s;
  border: 1px solid var(--violet-primary);
}

.range-slider::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

.competitor-selector-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem;
}

.competitor-btn {
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid var(--lead-border);
  color: var(--text-secondary);
  padding: 0.9rem 0.5rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: var(--border-radius-sm);
  cursor: pointer;
  transition: var(--transition-smooth);
  text-align: center;
}

.competitor-btn:hover {
  background: rgba(124, 58, 237, 0.02);
  border-color: rgba(124, 58, 237, 0.2);
}

.competitor-btn.active {
  background: rgba(124, 58, 237, 0.05);
  border-color: var(--violet-primary);
  color: var(--text-primary);
  box-shadow: 0 0 15px rgba(124, 58, 237, 0.15);
}

/* Results panel */
.calc-results {
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid var(--lead-border);
  padding: 2.5rem;
  border-radius: var(--border-radius-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.5);
}

.results-top {
  display: flex;
  flex-direction: column;
}

.result-card-glow {
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.03) 0%, rgba(0, 0, 0, 0) 100%);
  border: 1px solid rgba(124, 58, 237, 0.12);
  border-radius: var(--border-radius-sm);
  padding: 1.8rem;
  text-align: center;
  margin-bottom: 2.2rem;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.result-title {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
  margin-bottom: 0.6rem;
}

.result-amount {
  font-family: var(--font-body);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--violet-hover);
  text-shadow: 0 0 25px rgba(124, 58, 237, 0.25);
  margin-bottom: 0.4rem;
  letter-spacing: -0.01em;
}

.result-savings-annual {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.result-savings-annual strong {
  color: var(--text-primary);
}

.rates-comparison-list {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.comparison-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid rgba(124, 58, 237, 0.05);
  font-size: 0.85rem;
}

.comparison-item:last-child {
  border-bottom: none;
}

.comp-label {
  color: var(--text-secondary);
}

.comp-val {
  font-weight: 600;
}

.comp-val.text-violet {
  color: var(--violet-hover);
}

.comp-val.text-red {
  color: var(--text-muted);
  text-decoration: line-through;
  opacity: 0.8;
}

.calc-cta-btn {
  margin-top: 2rem;
  width: 100%;
}

/* ==========================================================================
   RATES CARDS SECTION
   ========================================================================== */
.rates-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.rate-card {
  background: var(--bg-secondary);
  border: 1px solid var(--lead-border);
  border-radius: var(--border-radius-sm);
  padding: 3.5rem 2.5rem;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.rate-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--lead-border);
}

.rate-card:hover {
  transform: translateY(-4px);
  border-color: var(--violet-border-glow);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.7);
}

.rate-card.featured {
  border-color: rgba(124, 58, 237, 0.2);
  background: var(--bg-primary);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
}

.rate-card.featured::before {
  background: var(--violet-gradient);
}

.rate-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  padding: 0.3rem 0.8rem;
  background: rgba(124, 58, 237, 0.05);
  border: 1px solid var(--violet-primary);
  color: var(--violet-hover);
  font-size: 0.65rem;
  font-weight: 700;
  border-radius: var(--border-radius-sm);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.rate-title {
  font-family: var(--font-headings);
  font-size: 1.65rem;
  font-weight: 500;
  margin-bottom: 0.6rem;
  letter-spacing: -0.01em;
}

.rate-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 2.2rem;
}

.rate-price-wrap {
  margin-bottom: 2.5rem;
}

.rate-percentage {
  font-family: var(--font-headings);
  font-size: 3.8rem;
  font-weight: 500;
  line-height: 1;
  color: var(--text-primary);
}

.rate-percentage span {
  font-family: var(--font-italic);
  font-style: italic;
  font-weight: 400;
  font-size: 2.2rem;
  color: var(--violet-hover);
  margin-left: 2px;
}

.rate-fixed {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.rate-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  margin-bottom: 3rem;
  border-top: 1px solid rgba(124, 58, 237, 0.06);
  padding-top: 2rem;
}

.rate-feature-item {
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-secondary);
}

.rate-feature-item svg {
  color: var(--violet-hover);
  flex-shrink: 0;
}

/* ==========================================================================
   GAMIFICATION SECTION (THE COVENANT OF THE TOP)
   ========================================================================== */
.awards {
  background: var(--bg-secondary);
  border-top: 1px solid var(--lead-border);
  border-bottom: 1px solid var(--lead-border);
}

.awards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.award-card {
  background: var(--bg-primary);
  border: 1px solid var(--lead-border);
  border-radius: var(--border-radius-sm);
  padding: 3rem 2rem;
  text-align: center;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.award-card:hover {
  transform: translateY(-5px);
  border-color: var(--violet-border-glow);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.7);
}

.award-card.bronze:hover { box-shadow: 0 15px 40px rgba(141, 115, 85, 0.1); }
.award-card.silver:hover { box-shadow: 0 15px 40px rgba(255, 255, 255, 0.03); }
.award-card.gold:hover { box-shadow: 0 15px 40px rgba(197, 168, 128, 0.12); }
.award-card.black:hover { box-shadow: 0 15px 50px rgba(124, 58, 237, 0.25); }

.award-graphic {
  width: 90px;
  height: 90px;
  margin: 0 auto 2.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: var(--transition-smooth);
}

.award-card:hover .award-graphic {
  transform: scale(1.1);
}

.award-badge-bg {
  position: absolute;
  width: 70px;
  height: 70px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.05) 0%, transparent 70%);
  border-radius: 50%;
}

.award-icon-svg {
  width: 58px;
  height: 58px;
  filter: drop-shadow(0 0 8px rgba(124, 58, 237, 0.1));
}

.award-card.gold .award-icon-svg { filter: drop-shadow(0 0 12px rgba(234, 179, 8, 0.3)); }
.award-card.black .award-icon-svg { filter: drop-shadow(0 0 15px rgba(124, 58, 237, 0.5)); }

.award-milestone {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  letter-spacing: -0.01em;
}

.award-milestone.bronze { color: #a16207; }
.award-milestone.silver { color: #a1a1aa; }
.award-milestone.gold { color: #eab308; }
.award-milestone.black { background: var(--violet-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }

.award-name {
  font-family: var(--font-headings);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.award-desc {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 300;
  line-height: 1.6;
  color: var(--text-secondary);
}

/* ==========================================================================
   INTEGRATIONS SECTION
   ========================================================================== */
.integrations-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.5rem;
}

.integration-card {
  background: var(--bg-primary);
  border: 1px solid var(--lead-border);
  padding: 2.2rem 1.2rem;
  border-radius: var(--border-radius-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: var(--transition-smooth);
  height: 120px;
}

.integration-card:hover {
  border-color: var(--violet-border-glow);
  background: rgba(124, 58, 237, 0.01);
  transform: translateY(-2px);
}

.integration-logo-text {
  font-family: var(--font-headings);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 0.3rem;
  letter-spacing: 0.02em;
}

.integration-type {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ==========================================================================
   FAQ SECTION (THE ACCORDION)
   ========================================================================== */
.faq {
  position: relative;
}

.faq .bg-glow-violet {
  bottom: 0;
  right: -200px;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  z-index: 2;
}

.faq-item {
  background: var(--bg-primary);
  border: 1px solid var(--lead-border);
  border-radius: var(--border-radius-sm);
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-item:hover {
  border-color: rgba(124, 58, 237, 0.2);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.6rem 2.2rem;
  cursor: pointer;
  user-select: none;
  font-family: var(--font-headings);
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  transition: var(--transition-smooth);
}

.faq-icon-wrap {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: var(--text-muted);
  transition: var(--transition-smooth);
}

.faq-icon-line {
  position: absolute;
  width: 12px;
  height: 1px;
  background: currentColor;
  transition: var(--transition-smooth);
}

.faq-icon-line.vertical {
  transform: rotate(90deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-answer-inner {
  padding: 0 2.2rem 1.6rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-secondary);
}

/* FAQ Active Styles */
.faq-item.active {
  border-color: var(--violet-primary);
  background: var(--bg-secondary);
}

.faq-item.active .faq-question {
  color: var(--violet-hover);
}

.faq-item.active .faq-icon-line.vertical {
  transform: rotate(0deg);
}

.faq-item.active .faq-icon-wrap {
  color: var(--violet-hover);
}

/* ==========================================================================
   FOOTER SECTION
   ========================================================================== */
.footer {
  background: #040405;
  border-top: 1px solid var(--lead-border);
  padding: 7rem 0 4rem;
  font-size: 0.85rem;
  position: relative;
  z-index: 2;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 4.5rem;
  margin-bottom: 5rem;
}

.footer-brand-col {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.footer-logo {
  font-size: 1.8rem;
}

.footer-brand-desc {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 320px;
}

.footer-apps {
  display: flex;
  gap: 0.8rem;
}

.app-badge {
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid var(--lead-border);
  border-radius: var(--border-radius-sm);
  padding: 0.6rem 1.1rem;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  transition: var(--transition-smooth);
}

.app-badge:hover {
  background: rgba(124, 58, 237, 0.02);
  border-color: var(--violet-hover);
  transform: translateY(-2px);
}

.app-badge-icon {
  font-size: 1.1rem;
}

.app-badge-text span {
  display: block;
  font-size: 0.6rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-col-title {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-link a {
  color: var(--text-secondary);
}

.footer-link a:hover {
  color: var(--violet-hover);
}

.footer-bottom {
  border-top: 1px solid rgba(124, 58, 237, 0.05);
  padding-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  color: var(--text-muted);
  font-size: 0.75rem;
  line-height: 1.7;
}

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

.footer-socials {
  display: flex;
  gap: 1.5rem;
}

.social-link {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-secondary);
}

.social-link:hover {
  color: var(--violet-hover);
}

/* ==========================================================================
   MEDIA QUERIES (RESPONSIVE DESIGN)
   ========================================================================== */
@media screen and (max-width: 1024px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .rates-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .awards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .integrations-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .calc-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
  
  .footer-top {
    grid-template-columns: repeat(2, 1fr);
    gap: 3.5rem;
  }
}

@media screen and (max-width: 768px) {
  .section {
    padding: 6rem 0;
  }
  
  .grid-2 {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  
  .hero {
    padding: 10rem 0 6rem;
    text-align: center;
  }
  
  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .nav-menu {
    display: none;
  }
  
  .header-actions {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .section-title {
    font-size: 2.8rem;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .integrations-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .calc-container {
    padding: 2.5rem 1.8rem;
  }
  
  .competitor-selector-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-top {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .footer-legal-row {
    flex-direction: column;
    gap: 1.2rem;
    align-items: flex-start;
  }
}

@media screen and (max-width: 480px) {
  .integrations-grid {
    grid-template-columns: 1fr;
  }
  
  .awards-grid {
    grid-template-columns: 1fr;
  }
  
  .competitor-selector-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-title {
    font-size: 3.2rem;
  }
  
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-actions .btn {
    width: 100%;
  }
}

/* ==========================================================================
   MOBILE EXPANDED NAV STYLING
   ========================================================================== */
.header.menu-open .nav-menu {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 85px;
  left: 0;
  width: 100%;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--lead-border);
  padding: 2.5rem 2rem;
  gap: 1.8rem;
  align-items: flex-start;
  box-shadow: 0 20px 45px rgba(0,0,0,0.8);
}

.header.menu-open .header-actions {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 360px;
  left: 0;
  width: 100%;
  background: var(--bg-secondary);
  padding: 0 2rem 2.5rem;
  gap: 1.2rem;
  align-items: stretch;
}

.header.menu-open .btn-nav-cta {
  text-align: center;
}
