:root {
  --bg-primary: #0a0a0f;
  --bg-secondary: #12121a;
  --bg-card: #1a1a26;
  --text-primary: #f0f0f5;
  --text-secondary: #8888a0;
  --text-muted: #55556a;
  --accent: #00e5a0;
  --accent-dim: rgba(0, 229, 160, 0.15);
  --accent-glow: rgba(0, 229, 160, 0.4);
  --hot: #ff3366;
  --hot-dim: rgba(255, 51, 102, 0.15);
  --font-display: 'Syne', sans-serif;
  --font-body: 'Space Grotesk', sans-serif;
  --max-width: 1120px;
}

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

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

/* ===== HERO ===== */
.hero {
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 24px 60px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  opacity: 0.3;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 51, 102, 0.2) 0%, transparent 70%);
  opacity: 0.4;
  pointer-events: none;
}

.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-dim);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 32px;
  border: 1px solid rgba(0, 229, 160, 0.25);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
  max-width: 800px;
}

.hero h1 em {
  font-style: normal;
  color: var(--accent);
  position: relative;
}

.hero-lede {
  font-size: clamp(1.1rem, 2.2vw, 1.35rem);
  color: var(--text-secondary);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}

.hero-stat {
  display: flex;
  flex-direction: column;
}

.hero-stat-value {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-primary);
}

.hero-stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ===== HOW IT WORKS ===== */
.how-section {
  padding: 100px 24px;
  background: var(--bg-secondary);
  position: relative;
}

.how-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 229, 160, 0.3), transparent);
}

.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-label {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 60px;
  max-width: 600px;
  letter-spacing: -0.02em;
}

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

.step-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 36px 28px;
  position: relative;
  transition: border-color 0.3s;
}

.step-card:hover {
  border-color: rgba(0, 229, 160, 0.2);
}

.step-number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.04);
  position: absolute;
  top: 16px;
  right: 24px;
  line-height: 1;
}

.step-icon {
  font-size: 1.6rem;
  margin-bottom: 20px;
  display: block;
  width: 48px;
  height: 48px;
  line-height: 48px;
  text-align: center;
  background: var(--accent-dim);
  border-radius: 12px;
}

.step-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.step-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ===== SCORING ===== */
.scoring-section {
  padding: 100px 24px;
  position: relative;
}

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

.scoring-text .section-label {
  margin-bottom: 16px;
}

.scoring-text .section-title {
  margin-bottom: 24px;
}

.scoring-text p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 36px;
}

.score-factors {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.score-factors li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.95rem;
}

.score-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.score-visual {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  padding: 40px;
  position: relative;
}

.score-visual::after {
  content: '';
  position: absolute;
  top: -1px;
  left: 40px;
  right: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--hot));
  border-radius: 2px;
}

.score-bar-group {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.score-bar-header {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
}

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

.score-bar-value {
  color: var(--accent);
  font-weight: 600;
}

.score-bar-track {
  height: 6px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 3px;
  overflow: hidden;
}

.score-bar-fill {
  height: 100%;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--accent), var(--hot));
}

.score-threshold {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.threshold-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.threshold-value {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
}

/* ===== FORMATS ===== */
.formats-section {
  padding: 100px 24px;
  background: var(--bg-secondary);
  position: relative;
}

.formats-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 51, 102, 0.3), transparent);
}

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

.format-card {
  text-align: center;
  padding: 36px 20px;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  transition: transform 0.3s, border-color 0.3s;
}

.format-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 229, 160, 0.2);
}

.format-ratio {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 8px;
  background: linear-gradient(135deg, var(--accent), var(--hot));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.format-name {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.format-platforms {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ===== CLOSING ===== */
.closing-section {
  padding: 120px 24px;
  text-align: center;
  position: relative;
}

.closing-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  opacity: 0.15;
  pointer-events: none;
}

.closing-inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.closing-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 700;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.closing-inner p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ===== FOOTER ===== */
footer {
  padding: 40px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
}

.footer-note {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .scoring-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .formats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-inner {
    flex-direction: column;
    gap: 12px;
  }
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: #0a0a0f;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: 100px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 0 0 0 var(--accent-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 24px var(--accent-glow);
}

.btn-ghost {
  display: inline-block;
  color: var(--text-secondary);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: 100px;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: border-color 0.2s, color 0.2s;
}

.btn-ghost:hover {
  border-color: rgba(0, 229, 160, 0.4);
  color: var(--text-primary);
}

/* ===== HERO CTA ===== */
.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.hero-subtext {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 48px;
}

/* ===== SWIPE-AWAY AI SECTION ===== */
.section-intro {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 580px;
  line-height: 1.7;
  margin-bottom: 48px;
}

.swipe-ai-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.swipe-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 36px 28px;
  transition: border-color 0.3s, transform 0.3s;
}

.swipe-card:hover {
  border-color: rgba(0, 229, 160, 0.25);
  transform: translateY(-4px);
}

.swipe-icon {
  width: 56px;
  height: 56px;
  background: var(--accent-dim);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--accent);
}

.swipe-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.swipe-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ===== PRICING SECTION ===== */
.pricing-section {
  padding: 100px 24px;
  background: var(--bg-secondary);
  position: relative;
}

.pricing-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 229, 160, 0.3), transparent);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
  margin-bottom: 48px;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  padding: 36px 28px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: border-color 0.3s;
}

.pricing-card:hover {
  border-color: rgba(0, 229, 160, 0.2);
}

.pricing-card.pricing-featured {
  border-color: rgba(0, 229, 160, 0.35);
  box-shadow: 0 0 40px rgba(0, 229, 160, 0.08);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #0a0a0f;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 4px 16px;
  border-radius: 100px;
  text-transform: uppercase;
  white-space: nowrap;
}

.pricing-header {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pricing-tier {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.price-amount {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
}

.price-period {
  font-size: 1rem;
  color: var(--text-muted);
}

.pricing-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-top: 4px;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-primary);
}

.check-icon {
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
}

.cross-icon {
  color: var(--text-muted);
  flex-shrink: 0;
}

.feature-muted {
  color: var(--text-muted) !important;
}

.pricing-cta {
  display: block;
  text-align: center;
  background: rgba(255, 255, 255, 0.07);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 12px 24px;
  border-radius: 10px;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.2s, border-color 0.2s;
}

.pricing-cta:hover {
  background: rgba(0, 229, 160, 0.1);
  border-color: rgba(0, 229, 160, 0.3);
}

.pricing-cta-featured {
  background: var(--accent);
  color: #0a0a0f;
  border-color: var(--accent);
}

.pricing-cta-featured:hover {
  background: #00c98e;
  border-color: #00c98e;
}

/* ===== LAUNCH SPECIAL ===== */
.launch-special {
  background: linear-gradient(135deg, rgba(0, 229, 160, 0.08) 0%, rgba(255, 51, 102, 0.08) 100%);
  border: 1px solid rgba(0, 229, 160, 0.25);
  border-radius: 20px;
  padding: 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.launch-special::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--hot));
}

.launch-special-inner {
  position: relative;
  z-index: 1;
}

.launch-special-badge {
  display: inline-block;
  background: var(--hot);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.launch-special h3 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.strike-price {
  text-decoration: line-through;
  color: var(--text-muted);
  font-weight: 400;
}

.launch-special p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.65;
  max-width: 540px;
  margin: 0 auto 32px;
}

.launch-cta {
  display: inline-block;
  background: var(--accent);
  color: #0a0a0f;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.05rem;
  padding: 16px 40px;
  border-radius: 100px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}

.launch-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px var(--accent-glow);
}

/* ===== CLOSING CTA ===== */
.closing-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 40px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .steps-grid,
  .swipe-ai-steps,
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .scoring-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .formats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-inner {
    flex-direction: column;
    gap: 12px;
  }
  .pricing-card.pricing-featured {
    order: -1;
  }
}

@media (max-width: 500px) {
  .hero {
    padding: 60px 20px 40px;
    min-height: 80vh;
  }
  .hero-stats {
    gap: 28px;
  }
  .formats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .format-card {
    padding: 24px 12px;
  }
  .pricing-card {
    padding: 28px 20px;
  }
  .launch-special {
    padding: 32px 24px;
  }
}