:root {
  /* Colors */
  --brand-navy: #02285a;
  --brand-cream: #f4f3ef;
  --brand-orange: #eb5b1c;

  --primary-rose: var(--brand-orange);
  --primary-rose-dark: #cc4d14;
  --soft-accent: rgba(235, 91, 28, 0.1);
  --text-dark: var(--brand-navy);
  --text-light: #526682;
  --bg-white: #ffffff;
  --bg-soft: var(--brand-cream);
  --border-color: #e5e5e5;
  
  --hero-purple: var(--brand-navy);
  --hero-pink: var(--brand-orange);
  
  --success: #059669;
  --error: #dc2626;
  
  /* Gradients */
  --primary-gradient: linear-gradient(135deg, var(--primary-rose) 0%, var(--primary-rose-dark) 100%);
  --hero-gradient: linear-gradient(135deg, var(--hero-purple) 0%, var(--hero-pink) 100%);
  
  /* Shadows */
  --shadow-sm: 0 4px 6px rgba(235, 91, 28, 0.05);
  --shadow-md: 0 10px 25px rgba(235, 91, 28, 0.1);
  --shadow-lg: 0 20px 40px rgba(235, 91, 28, 0.15);
  
  /* Radii */
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  
  /* Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: var(--bg-white);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

/* Mouse Follower */
.mouse-follower {
  position: fixed;
  width: 20px;
  height: 20px;
  background: var(--brand-orange);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: difference;
  transition: transform 0.1s ease-out, opacity 0.3s ease;
  opacity: 0;
  filter: blur(2px);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

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

.fw-600 { font-weight: 600; }
.fw-700 { font-weight: 700; }
.text-dark { color: var(--text-dark); }
.text-light { color: var(--text-light); }
.text-small { font-size: 0.875rem; }
.text-xl { font-size: 1.25rem; }
.text-white { color: #fff; }
.text-opacity { color: rgba(255, 255, 255, 0.8); }
.text-center { text-align: center; }
.max-w-md { max-width: 600px; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mt-4 { margin-top: 1.5rem; }
.bg-soft { background-color: var(--bg-soft); }

.btn {
  display: inline-block;
  padding: 10px 24px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-family: var(--font-body);
  text-align: center;
  cursor: pointer;
  transition: transform 0.1s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  border: 2px solid transparent;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-primary {
  background: var(--primary-gradient);
  color: white;
}

.btn-secondary {
  background: var(--hero-gradient);
  color: white;
}

.btn-outline {
  background: transparent;
  color: var(--text-dark);
  border-color: var(--border-color);
}

.btn-outline:hover {
  border-color: var(--primary-rose);
  color: var(--primary-rose);
}

.btn-white {
  background: white;
  color: var(--hero-purple);
}

.btn-large {
  padding: 14px 32px;
  font-size: 1.125rem;
}

.btn-full {
  width: 100%;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 0;
  z-index: 1000;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(243, 244, 246, 0.5);
}

.navbar.scrolled {
  padding: 12px 0;
  box-shadow: var(--shadow-sm);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary-rose);
  letter-spacing: -0.5px;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  font-weight: 500;
  color: var(--text-light);
}

.nav-links a:hover {
  color: var(--primary-rose);
}

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

/* Badges */
.badge {
  display: inline-block;
  padding: 6px 16px;
  background-color: var(--soft-accent);
  color: var(--primary-rose);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.badge-purple {
  background-color: rgba(2, 40, 90, 0.1);
  color: var(--hero-purple);
}

/* Hero Taglines */
.hero-taglines {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}

.tagline {
  display: inline-block;
  font-size: 1rem;
  font-weight: 600;
  color: var(--brand-orange);
  text-transform: uppercase;
  letter-spacing: 2px;
  opacity: 0.8;
}

.tagline:first-child {
  color: var(--brand-navy);
  font-size: 0.875rem;
  opacity: 0.6;
}

/* Hero Section */
.hero {
  position: relative;
  padding: 160px 0 100px;
  overflow: hidden;
}

.hero-bg-blobs {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

.blob {
  position: absolute;
  filter: blur(80px);
  opacity: 0.15;
  border-radius: 50%;
  animation: float 10s ease-in-out infinite alternate;
}

.blob-1 {
  top: -10%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: var(--hero-pink);
}

.blob-2 {
  bottom: 0;
  right: -5%;
  width: 500px;
  height: 500px;
  background: var(--hero-purple);
  animation-delay: -5s;
}

@keyframes float {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(50px, 50px) scale(1.1); }
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero-title {
  font-size: 4rem;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-light);
  margin-bottom: 40px;
  max-width: 500px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
}

.mockup-container {
  position: relative;
  width: 100%;
  height: 500px;
  perspective: 1000px;
}

.glass-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius-lg);
  padding: 24px;
  transform-style: preserve-3d;
}

.mockup-card {
  position: absolute;
  top: 50px;
  left: 50%;
  transform: translateX(-50%) rotateY(-5deg) rotateX(5deg);
  width: 320px;
  z-index: 2;
  transition: transform 0.5s ease;
}

.mockup-card:hover {
  transform: translateX(-50%) rotateY(0deg) rotateX(0deg) translateY(-10px);
}

.mockup-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.mockup-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--hero-gradient);
  border: 3px solid white;
  box-shadow: var(--shadow-sm);
}

.mockup-name {
  font-weight: 700;
  font-size: 1.125rem;
}

.mockup-handle {
  color: var(--text-light);
  font-size: 0.875rem;
}

.mockup-stats {
  display: flex;
  justify-content: space-between;
  margin-bottom: 24px;
  background: var(--soft-accent);
  padding: 16px;
  border-radius: var(--radius-md);
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-value {
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--primary-rose);
}

.stat-label {
  font-size: 0.75rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 4px;
}

.float-card-1, .float-card-2 {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  border-radius: var(--radius-md);
  z-index: 3;
  animation: float-y 6s ease-in-out infinite alternate;
}

.float-card-1 {
  bottom: 80px;
  left: 0;
}

.float-card-2 {
  top: 40px;
  left: -120px;
  animation-delay: -3s;
}

.icon-box {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: white;
}

.icon-box.success {
  background-color: var(--success);
}

@keyframes float-y {
  0% { transform: translateY(0); }
  100% { transform: translateY(-20px); }
}

/* Stats Section */
.stats-section {
  padding: 60px 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  background: var(--bg-soft);
}

.stats-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.stat-desc {
  color: var(--text-light);
  font-weight: 500;
}

/* Split Section */
.split-section {
  padding: 120px 0;
}

.split-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.split-container.row-reverse {
  direction: rtl;
}

.split-container.row-reverse > * {
  direction: ltr;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-light);
  margin-bottom: 32px;
}

.feature-list {
  list-style: none;
}

.feature-list li {
  margin-bottom: 16px;
  padding-left: 32px;
  position: relative;
}

.feature-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--primary-rose);
  font-weight: bold;
  background: var(--soft-accent);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
}

.row-reverse .feature-list li::before {
  color: var(--hero-purple);
  background: rgba(2, 40, 90, 0.1);
}

.feature-card {
  background: white;
  padding: 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
  transform-style: preserve-3d;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.creator-card:hover { border-color: var(--primary-rose); }
.brand-card:hover { border-color: var(--hero-purple); }

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.feature-card p {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* How It Works */
.hiw-section {
  padding: 120px 0;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 64px;
}

.step-card {
  background: white;
  padding: 32px 24px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: transform 0.3s ease;
  transform-style: preserve-3d;
}

.step-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.step-number {
  width: 48px;
  height: 48px;
  background: var(--soft-accent);
  color: var(--primary-rose);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0 auto 24px;
  font-family: var(--font-heading);
}

.step-card h3 {
  margin-bottom: 12px;
}

.step-card p {
  color: var(--text-light);
  font-size: 0.9rem;
}

/* Banner Rule Section */
.banner-rule-section {
  padding: 100px 0;
  background-color: var(--brand-navy);
  color: white;
  text-align: center;
}

.banner-rule-card {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.rule-icon {
  font-size: 3.5rem;
  margin-bottom: 24px;
}

.banner-rule-section .section-title {
  color: white;
  margin-bottom: 20px;
}

.rule-description {
  font-size: 1.2rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
}

.rule-description strong {
  color: var(--brand-orange);
}

.rule-steps {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 40px;
}

.rule-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.step-icon {
  font-size: 2rem;
  background: rgba(255, 255, 255, 0.1);
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--brand-orange);
}

.rule-step span:not(.step-icon) {
  font-weight: 600;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .rule-steps {
    flex-direction: column;
    gap: 30px;
  }
}

/* CTA Section */
.cta-section {
  padding: 100px 0;
  background: var(--hero-gradient);
  text-align: center;
}

.cta-container h2 {
  font-size: 3rem;
  margin-bottom: 16px;
}

.cta-container p {
  font-size: 1.25rem;
  margin-bottom: 40px;
}

/* Calculator Section */
.calculator-section {
  padding: 100px 0;
  background-color: var(--bg-white);
}

.calculator-card {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px;
  background: white;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-lg);
}

.calculator-header {
  text-align: center;
  margin-bottom: 40px;
}

.calculator-body {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.sliders-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
}

.multiplier {
  display: block;
  font-size: 0.7rem;
  color: var(--brand-orange);
  opacity: 0.8;
  margin-top: 2px;
}

.input-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.input-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  font-size: 1.1rem;
}

.highlight-text {
  color: var(--brand-orange);
  font-size: 1.5rem;
}

.value-input {
  background: transparent;
  border: 1px solid transparent;
  text-align: right;
  width: 140px;
  font-family: inherit;
  font-weight: 800;
  outline: none;
  padding: 4px 8px;
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
}

.value-input:hover, .value-input:focus {
  border-color: var(--brand-orange);
  background: rgba(235, 91, 28, 0.05);
}

/* Remove Arrows from Number Input */
.value-input::-webkit-outer-spin-button,
.value-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.value-input[type=number] {
  -moz-appearance: textfield;
}

/* Custom Slider */
.slider {
  -webkit-appearance: none;
  width: 100%;
  height: 12px;
  background: #eef2f6;
  border-radius: 6px;
  outline: none;
}

.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 28px;
  height: 28px;
  background: var(--brand-orange);
  cursor: pointer;
  border-radius: 50%;
  border: 4px solid white;
  box-shadow: 0 4px 12px rgba(235, 91, 28, 0.3);
  transition: transform 0.2s ease;
}

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

.results-container {
  background: var(--brand-navy);
  padding: 40px;
  border-radius: var(--radius-lg);
  color: white;
  text-align: center;
}

.result-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.result-label {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.8rem;
  opacity: 0.6;
}

.result-value {
  font-size: 4rem;
  font-weight: 800;
}

.total-engagement-badge {
  margin-top: 16px;
  background: rgba(255, 255, 255, 0.1);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 600;
}

#total-engagement {
  color: var(--brand-orange);
}

.calculator-note {
  font-size: 0.875rem;
  color: var(--text-light);
  text-align: center;
  font-style: italic;
}

/* Feature Grid */
/* Footer */
.footer {
  background: var(--bg-soft);
  padding: 80px 0 32px;
  border-top: 1px solid var(--border-color);
}

.footer-container {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 64px;
  margin-bottom: 48px;
}

.footer-desc {
  color: var(--text-light);
  margin-top: 16px;
  max-width: 300px;
}

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

.link-group h4 {
  font-size: 1.125rem;
  margin-bottom: 24px;
}

.link-group a {
  display: block;
  color: var(--text-light);
  margin-bottom: 12px;
}

.link-group a:hover {
  color: var(--primary-rose);
}

/* Contact Info Section */
.contact-info-section {
  padding: 80px 0;
  background-color: var(--bg-soft);
  text-align: center;
}

.contact-info-card {
  max-width: 600px;
  margin: 0 auto;
  padding: 40px;
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
}

.contact-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.contact-address {
  font-size: 1.25rem;
  color: var(--brand-navy);
  margin-bottom: 16px;
  font-weight: 600;
}

.contact-phone-link {
  display: inline-block;
  font-size: 1.5rem;
  color: var(--brand-orange) !important;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.contact-phone-link:hover {
  transform: scale(1.05);
}

.footer-bottom {
  text-align: center;
  padding-top: 32px;
  border-top: 1px solid var(--border-color);
  color: var(--text-light);
  font-size: 0.875rem;
}

/* Animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay { transition-delay: 0.2s; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* Responsive */
@media (max-width: 992px) {
  .hero-container, .split-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-title { font-size: 3rem; }
  .hero-subtitle { margin: 0 auto 40px; }
  .hero-ctas { justify-content: center; }
  
  .mockup-container { margin-top: 40px; }
  
  .stats-container { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  
  .feature-list li { text-align: left; }
  
  .footer-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hero-title { font-size: 2.5rem; }
  .stats-container { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: 1fr; }
}
