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

:root {
  --primary: #d4af37;
  --primary-light: #f0d878;
  --primary-dark: #b8941e;
  --accent: #00d9ff;
  --accent-dark: #00b8d4;
  --bg: #0a0a0a;
  --bg-secondary: #111111;
  --bg-tertiary: #1a1a1a;
  --text: #ffffff;
  --text-secondary: #a1a1a1;
  --border: #2a2a2a;
  --gradient: linear-gradient(135deg, #d4af37 0%, #f0d878 100%);
  --gradient-accent: linear-gradient(135deg, #00d9ff 0%, #00b8d4 100%);
  --shadow: 0 20px 25px -5px rgb(0 0 0 / 0.5), 0 8px 10px -6px rgb(0 0 0 / 0.4);
  --shadow-sm: 0 1px 3px 0 rgb(0 0 0 / 0.3), 0 1px 2px -1px rgb(0 0 0 / 0.2);
  --glow: 0 0 30px rgba(212, 175, 55, 0.4);
  --glow-accent: 0 0 30px rgba(0, 217, 255, 0.3);
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

* {
  -webkit-tap-highlight-color: transparent;
}

/* Floating Navigation */
.floating-nav {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  width: calc(100% - 40px);
  max-width: 1200px;
}

.nav-content {
  background: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: var(--shadow-sm);
}

.logo {
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.5px;
}

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

.nav-links a {
  color: var(--text);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}

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

.nav-cta {
  background: var(--gradient);
  color: #000;
  padding: 10px 24px;
  border-radius: 100px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s;
}

.nav-cta:hover {
  background: var(--primary-light);
  transform: scale(1.05);
  box-shadow: var(--glow);
}

/* Hero Section */
.hero-modern {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 20px 80px;
  overflow: hidden;
}

.hero-bg-gradient {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(240, 216, 120, 0.15) 100%);
  border-radius: 0 0 0 50%;
  filter: blur(100px);
}

.hero-content {
  flex: 1;
  max-width: 600px;
  position: relative;
  z-index: 1;
}

.badge {
  display: inline-block;
  background: rgba(34, 197, 94, 0.1);
  color: var(--accent);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
  border: 1px solid rgba(34, 197, 94, 0.2);
}

.hero-heading {
  font-size: clamp(48px, 8vw, 72px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -2px;
}

.text-shimmer {
  background: linear-gradient(90deg, #d4af37, #f0d878, #d4af37);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
  to {
    background-position: 200% center;
  }
}

.hero-desc {
  font-size: 20px;
  color: var(--text-secondary);
  margin-bottom: 40px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--gradient);
  color: #000;
  padding: 16px 32px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--glow);
  background: var(--primary-light);
}

.btn-primary.large {
  padding: 20px 40px;
  font-size: 18px;
}

.btn-secondary {
  background: rgba(212, 175, 55, 0.15);
  color: var(--primary);
  padding: 16px 32px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s;
  border: 2px solid rgba(212, 175, 55, 0.3);
  cursor: pointer;
}

.btn-secondary:hover {
  background: rgba(212, 175, 55, 0.25);
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--glow);
}

.social-proof {
  display: flex;
  align-items: center;
  gap: 16px;
}

.avatar-stack {
  display: flex;
  margin-left: 8px;
}

.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border: 3px solid var(--bg);
  margin-left: -12px;
}

.avatar:first-child {
  margin-left: 0;
}

.social-proof p {
  color: var(--text-secondary);
  font-size: 14px;
}

/* Hero Visual */
.hero-visual {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.phone-mockup {
  position: relative;
  animation: float 6s ease-in-out infinite;
}

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

.phone-frame {
  width: 300px;
  height: 600px;
  background: #000;
  border-radius: 40px;
  padding: 12px;
  box-shadow: 0 50px 100px -20px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.phone-notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
  height: 30px;
  background: #000;
  border-radius: 0 0 20px 20px;
  z-index: 2;
}

.phone-content {
  width: 100%;
  height: 100%;
  border-radius: 32px;
  overflow: hidden;
  position: relative;
}

.phone-content img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.floating-card {
  position: absolute;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 12px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 32px rgba(212, 175, 55, 0.3);
  border: 1px solid rgba(212, 175, 55, 0.3);
  left: 50%;
  transform: translateX(-50%);
  width: 85%;
  max-width: 220px;
}

.card-1 {
  top: 30%;
  background: rgba(34, 197, 94, 0.15);
  border-color: rgba(34, 197, 94, 0.4);
  box-shadow: 0 8px 32px rgba(34, 197, 94, 0.3);
}

.card-2 {
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  background: rgba(0, 217, 255, 0.15);
  border-color: rgba(0, 217, 255, 0.4);
  box-shadow: 0 8px 32px rgba(0, 217, 255, 0.3);
}

.card-3 {
  top: 70%;
  background: rgba(212, 175, 55, 0.15);
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: 0 8px 32px rgba(212, 175, 55, 0.3);
}

.card-icon {
  font-size: 24px;
}

.card-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}

.card-value {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
}

.card-1 .card-value {
  color: #22c55e;
}

.card-2 .card-value {
  color: #00d9ff;
}

.card-3 .card-value {
  color: var(--primary);
}

/* Vision Section */
.vision-section {
  padding: 0;
  background: var(--bg);
  overflow: hidden;
}

.vision-container {
  max-width: 100%;
  margin: 0 auto;
}

.vision-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Stats Bar */
.stats-bar {
  background: var(--bg-secondary);
  color: white;
  padding: 60px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 48px;
  font-weight: 900;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 14px;
  opacity: 0.8;
}

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

/* Section Headers */
.section-header-modern {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag {
  display: inline-block;
  background: rgba(212, 175, 55, 0.15);
  color: var(--primary);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.section-tag.light {
  background: rgba(212, 175, 55, 0.2);
  color: var(--primary-light);
  border-color: rgba(212, 175, 55, 0.3);
}

.section-header-modern h2 {
  font-size: clamp(36px, 6vw, 56px);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -1px;
}

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

/* Bento Grid */
.bento-section {
  padding: 120px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.bento-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 32px;
  transition: all 0.3s;
  cursor: pointer;
}

.bento-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--glow);
  border-color: var(--primary);
  background: var(--bg-tertiary);
}

.bento-card.large {
  grid-column: span 2;
}

.bento-card.wide {
  grid-column: span 2;
}

.bento-icon {
  font-size: 40px;
  margin-bottom: 16px;
}

.bento-card h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
}

.bento-card p {
  color: var(--text-secondary);
  line-height: 1.6;
}

.earnings-graph {
  display: flex;
  gap: 12px;
  align-items: flex-end;
  height: 120px;
  margin-top: 24px;
}

.graph-bar {
  flex: 1;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border-radius: 8px 8px 0 0;
  animation: barGrow 1s ease-out forwards;
  transform-origin: bottom;
}

@keyframes barGrow {
  from {
    transform: scaleY(0);
  }
  to {
    transform: scaleY(1);
  }
}

.revenue-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.pill {
  background: rgba(102, 126, 234, 0.1);
  color: var(--primary);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
}

/* Timeline */
.timeline-section {
  padding: 120px 20px;
  background: var(--bg);
}

.timeline {
  max-width: 800px;
  margin: 0 auto;
}

.timeline-item {
  display: flex;
  gap: 40px;
  margin-bottom: 60px;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

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

.marker-dot {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(102, 126, 234, 0.3);
}

.marker-line {
  width: 2px;
  flex: 1;
  background: linear-gradient(to bottom, var(--primary), transparent);
  margin-top: 8px;
}

.timeline-card {
  flex: 1;
  background: var(--bg-secondary);
  border-radius: 16px;
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}

.timeline-time {
  display: inline-block;
  background: rgba(34, 197, 94, 0.1);
  color: var(--accent);
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.timeline-card h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
}

.timeline-card p {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Earnings Showcase */
.earnings-showcase {
  position: relative;
  padding: 120px 20px;
  background: var(--bg-secondary);
  color: white;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.earnings-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.2) 0%, rgba(118, 75, 162, 0.2) 100%);
  filter: blur(100px);
}

.earnings-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.earnings-header {
  text-align: center;
  margin-bottom: 60px;
}

.earnings-header h2 {
  font-size: clamp(36px, 6vw, 56px);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -1px;
  margin-bottom: 16px;
}

.earnings-header p {
  font-size: 20px;
  opacity: 0.8;
}

.earnings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

.earnings-card {
  background: var(--bg-tertiary);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 32px;
  transition: all 0.3s;
}

.earnings-card:hover {
  transform: translateY(-4px);
  background: var(--bg);
  border-color: var(--primary);
  box-shadow: var(--glow);
}

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

.profile-img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border: 3px solid rgba(255, 255, 255, 0.2);
}

.profile-info h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
}

.profile-info p {
  font-size: 14px;
  opacity: 0.7;
}

.earnings-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.stat-label {
  display: block;
  font-size: 12px;
  opacity: 0.7;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.stat-value {
  display: block;
  font-size: 24px;
  font-weight: 700;
}

.earnings-quote {
  font-style: italic;
  opacity: 0.9;
  line-height: 1.6;
}

.earnings-disclaimer {
  text-align: center;
  opacity: 0.6;
  font-size: 12px;
  max-width: 600px;
  margin: 0 auto;
}

/* Pricing */
.pricing-section {
  padding: 120px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.pricing-grid-two {
  grid-template-columns: repeat(2, 1fr);
  max-width: 800px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--bg-secondary);
  border: 2px solid var(--border);
  border-radius: 24px;
  padding: 40px;
  transition: all 0.3s;
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--glow);
  border-color: var(--primary);
}

.pricing-card.featured {
  border-color: var(--primary);
  transform: scale(1.05);
  background: var(--bg-tertiary);
  box-shadow: var(--glow);
}

.pricing-card.featured:hover {
  transform: scale(1.08) translateY(-4px);
}

.featured-badge,
.pricing-badge-hot {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: white;
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pricing-header {
  margin-bottom: 24px;
}

.pricing-header h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
}

.pricing-header p {
  color: var(--text-secondary);
  font-size: 14px;
}

.pricing-price {
  margin-bottom: 32px;
}

.price {
  font-size: 56px;
  font-weight: 900;
  letter-spacing: -2px;
}

.period {
  color: var(--text-secondary);
  font-size: 18px;
}

.pricing-features {
  list-style: none;
  margin-bottom: 32px;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 15px;
}

.pricing-btn {
  display: block;
  width: 100%;
  padding: 16px;
  border-radius: 12px;
  text-align: center;
  text-decoration: none;
  font-weight: 600;
  background: var(--bg-tertiary);
  color: var(--text);
  border: 2px solid var(--border);
  transition: all 0.3s;
  cursor: pointer;
}

.pricing-btn:hover {
  border-color: var(--primary);
  background: var(--bg);
  box-shadow: var(--glow);
}

.pricing-btn.primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: white;
  border-color: transparent;
}

.pricing-btn.primary:hover {
  transform: scale(1.02);
  box-shadow: 0 0 30px rgba(102, 126, 234, 0.5);
}

/* App Showcase */
.app-showcase {
  padding: 120px 20px;
  background: var(--bg);
}

.app-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.app-text h2 {
  font-size: clamp(36px, 6vw, 48px);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -1px;
  margin-bottom: 24px;
}

.app-text > p {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 40px;
}

.app-features-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}

.app-feature {
  display: flex;
  gap: 16px;
}

.feature-icon {
  font-size: 32px;
}

.app-feature h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
}

.app-feature p {
  color: var(--text-secondary);
  font-size: 14px;
}

.app-stores {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.store-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  border-radius: 12px;
  background: var(--bg-secondary);
  color: white;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all 0.3s;
}

.store-btn:hover {
  background: var(--bg-tertiary);
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--glow);
}

.store-btn div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.store-btn span {
  font-size: 10px;
  opacity: 0.8;
}

.store-btn strong {
  font-size: 16px;
}

.app-visual {
  position: relative;
}

.app-phone {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 0 50px 100px -20px rgba(0, 0, 0, 0.3);
}

.app-phone img {
  width: 100%;
  height: auto;
  display: block;
}

/* Final CTA */
.final-cta {
  padding: 120px 20px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: white;
  text-align: center;
}

.cta-content h2 {
  font-size: clamp(36px, 6vw, 56px);
  font-weight: 900;
  margin-bottom: 16px;
}

.cta-content > p {
  font-size: 20px;
  opacity: 0.9;
  margin-bottom: 40px;
}

.cta-actions {
  margin-bottom: 24px;
}

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

.cta-actions .btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.cta-note {
  font-size: 14px;
  opacity: 0.8;
}

/* Footer */
.footer {
  background: var(--bg-secondary);
  color: white;
  padding: 60px 20px 30px;
  border-top: 1px solid var(--border);
}

.footer-simple {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.footer-brand h3 {
  font-size: 24px;
  font-weight: 900;
  margin-bottom: 8px;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-brand p {
  color: var(--text-secondary);
  font-size: 14px;
}

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

.footer-links a {
  color: var(--text);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}

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

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 30px;
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer-bottom p {
  opacity: 0.6;
  font-size: 14px;
}

/* Sticky Mobile CTA */
.sticky-mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
  padding: 12px 16px;
  z-index: 999;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.sticky-mobile-cta.visible {
  transform: translateY(0);
}

.sticky-cta-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 16px;
}

.sticky-cta-text {
  display: flex;
  flex-direction: column;
}

.sticky-cta-text strong {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
}

.sticky-cta-text span {
  font-size: 12px;
  color: var(--text-secondary);
}

.sticky-cta-btn {
  background: var(--gradient);
  color: #000;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  white-space: nowrap;
  transition: all 0.3s;
}

.sticky-cta-btn:hover {
  transform: scale(1.05);
  box-shadow: var(--glow);
  background: var(--primary-light);
}

/* Additional visual enhancements */
.btn-primary, .btn-secondary, .pricing-btn, .store-btn {
  user-select: none;
  -webkit-user-select: none;
}

/* Smooth scroll */
html {
  scroll-behavior: smooth;
}

/* Selection color */
::selection {
  background: rgba(102, 126, 234, 0.3);
  color: var(--text);
}

/* Focus visible for accessibility */
button:focus-visible,
a:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

/* Loading state */
@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

/* Improve image loading */
img {
  max-width: 100%;
  height: auto;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
  .hero-modern {
    padding: 100px 20px 60px;
  }

  .phone-frame {
    width: 280px;
    height: 560px;
  }

  .bento-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

  .app-content {
    gap: 60px;
  }
}

@media (max-width: 768px) {
  .sticky-mobile-cta {
    display: block;
  }

  .floating-nav {
    width: calc(100% - 24px);
    top: 12px;
  }

  .nav-content {
    padding: 10px 16px;
  }

  .nav-links {
    display: none;
  }

  .logo {
    font-size: 16px;
  }

  .nav-cta {
    padding: 8px 16px;
    font-size: 13px;
  }

  .hero-modern {
    flex-direction: column;
    padding: 100px 16px 60px;
    text-align: center;
    min-height: auto;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-heading {
    font-size: 42px;
  }

  .hero-desc {
    font-size: 18px;
  }

  .hero-actions {
    justify-content: center;
    flex-direction: column;
    width: 100%;
  }

  .btn-primary, .btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .hero-visual {
    margin-top: 60px;
    width: 100%;
  }

  .phone-frame {
    width: 280px;
    height: 560px;
  }

  .floating-card {
    padding: 12px;
    font-size: 12px;
  }

  .card-icon {
    font-size: 20px;
  }

  .card-value {
    font-size: 16px;
  }

  .stats-bar {
    gap: 32px;
    padding: 40px 16px;
  }

  .stat-divider {
    display: none;
  }

  .stat-number {
    font-size: 36px;
  }

  .stat-label {
    font-size: 12px;
  }

  .bento-section {
    padding: 80px 16px;
  }

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

  .bento-card.large,
  .bento-card.wide {
    grid-column: span 1;
  }

  .bento-card {
    padding: 24px;
  }

  .timeline-section {
    padding: 80px 16px;
  }

  .timeline-item {
    gap: 16px;
  }

  .marker-dot {
    width: 50px;
    height: 50px;
    font-size: 18px;
  }

  .timeline-card {
    padding: 20px;
  }

  .timeline-card h3 {
    font-size: 20px;
  }

  .earnings-showcase {
    padding: 80px 16px;
  }

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

  .earnings-card {
    padding: 24px;
  }

  .pricing-section {
    padding: 80px 16px;
  }

  .pricing-grid,
  .pricing-grid-two {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .pricing-card.featured {
    transform: scale(1);
  }

  .pricing-card.featured:hover {
    transform: translateY(-4px);
  }

  .pricing-card {
    padding: 32px 24px;
  }

  .app-showcase {
    padding: 80px 16px;
  }

  .app-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .app-text {
    text-align: center;
  }

  .app-stores {
    justify-content: center;
    flex-direction: column;
  }

  .store-btn {
    width: 100%;
    justify-content: center;
  }

  .final-cta {
    padding: 80px 16px;
  }

  .cta-actions .btn-primary {
    width: 100%;
  }

  .footer {
    padding: 40px 16px 80px;
  }

  .footer-simple {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .footer-links {
    justify-content: center;
    gap: 20px;
  }

  body {
    padding-bottom: env(safe-area-inset-bottom);
  }
}

@media (max-width: 480px) {
  .hero-heading {
    font-size: 36px;
    letter-spacing: -1px;
  }

  .hero-desc {
    font-size: 16px;
  }

  .badge {
    font-size: 12px;
    padding: 6px 12px;
  }

  .btn-primary, .btn-secondary {
    padding: 14px 20px;
    font-size: 14px;
  }

  .btn-primary.large {
    padding: 16px 28px;
    font-size: 16px;
  }

  .social-proof {
    flex-direction: column;
    text-align: center;
  }

  .social-proof p {
    font-size: 13px;
  }

  .phone-frame {
    width: 240px;
    height: 480px;
  }

  .floating-card {
    padding: 10px;
  }

  .card-label {
    font-size: 9px;
  }

  .card-value {
    font-size: 14px;
  }

  .floating-card {
    width: 90%;
    max-width: 200px;
    padding: 10px 12px;
  }

  .card-1 {
    top: 50%;
    transform: translateX(-50%) translateY(calc(-50% - 60px));
  }

  .card-2 {
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
  }

  .card-3 {
    top: 50%;
    transform: translateX(-50%) translateY(calc(-50% + 60px));
  }

  .stat-number {
    font-size: 32px;
  }

  .stat-label {
    font-size: 11px;
  }

  .section-header-modern h2 {
    font-size: 32px;
  }

  .section-tag {
    font-size: 11px;
    padding: 5px 12px;
  }

  .bento-section,
  .timeline-section,
  .earnings-showcase,
  .pricing-section,
  .app-showcase,
  .final-cta {
    padding: 60px 16px;
  }

  .bento-card {
    padding: 20px;
  }

  .bento-card h3 {
    font-size: 20px;
  }

  .bento-icon {
    font-size: 32px;
  }

  .timeline-card {
    padding: 16px;
  }

  .timeline-card h3 {
    font-size: 18px;
  }

  .marker-dot {
    width: 44px;
    height: 44px;
    font-size: 16px;
  }

  .earnings-card {
    padding: 20px;
  }

  .profile-img {
    width: 48px;
    height: 48px;
  }

  .profile-info h4 {
    font-size: 16px;
  }

  .stat-value {
    font-size: 20px;
  }

  .pricing-card {
    padding: 28px 20px;
  }

  .price {
    font-size: 48px;
  }

  .pricing-features li {
    font-size: 14px;
  }

  .app-feature {
    text-align: left;
  }

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

  .app-feature h4 {
    font-size: 16px;
  }

  .cta-content h2 {
    font-size: 32px;
  }

  .cta-content > p {
    font-size: 16px;
  }
}
