/* ============================================================
   BioScript JV — Design System & Global Styles
   ============================================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
  --bg-body: #0a0a0a;
  --accent: #a855f7;
  --accent-deep: #7c3aed;
  --text-primary: #ffffff;
  --text-secondary: #a1a1aa;
  --card-bg: #111111;
  --card-border: #1f1f1f;
  --radius: 12px;
  --max-w: 900px;
  --section-py: 80px;
  --section-py-mobile: 48px;
  --font: 'Inter', sans-serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: inherit;
  text-decoration: none;
}

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

/* ---------- Utility ---------- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: var(--section-py) 0;
  width: 100%;
}

/* Section label (uppercase purple tag) */
.section-label {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 11px;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 16px;
  display: inline-block;
}

.section-title {
  font-size: clamp(28px, 4.5vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 18px;
}

.section-subtitle {
  font-size: clamp(15px, 2vw, 18px);
  color: var(--text-secondary);
  max-width: 640px;
  line-height: 1.7;
}

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

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.accent {
  color: var(--accent);
}

/* Gradient text helper */
.gradient-text {
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border: none;
  border-radius: 8px;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 0 24px rgba(168, 85, 247, 0.25);
}

.btn-primary:hover {
  background: var(--accent-deep);
  transform: translateY(-2px);
  box-shadow: 0 0 40px rgba(168, 85, 247, 0.4);
}

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

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 18px 42px;
  font-size: 17px;
  border-radius: 10px;
}

/* ---------- Cards ---------- */
.card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 32px;
  transition: var(--transition);
}

.card:hover {
  border-color: rgba(168, 85, 247, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

/* ---------- Navbar ---------- */
.navbar {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 14px 0;
  transition: var(--transition);
  background: var(--bg-body);
  border-bottom: 1px solid var(--card-border);
}

.navbar.scrolled {
  padding: 10px 0;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}

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

.navbar-brand {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.navbar-brand-name {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
}

.navbar-brand-sub {
  font-size: 11px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.02em;
}

.navbar-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

.btn-nav {
  padding: 10px 22px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 8px;
  white-space: nowrap;
}

.btn-outline-accent {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.btn-outline-accent:hover {
  background: rgba(168, 85, 247, 0.1);
  transform: translateY(-2px);
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  margin: 6px 0;
  transition: var(--transition);
  border-radius: 2px;
}

/* ---------- Hero ---------- */
.hero {
  min-height: calc(100vh - 60px);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 40px;
  padding-bottom: 40px;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-title {
  font-size: 52px;
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  color: #fff;
}

.hero-sub {
  font-size: 20px;
  color: var(--text-secondary);
  max-width: 620px;
  line-height: 1.7;
  margin-bottom: 36px;
}

/* Stat pills */
.hero-pills {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-pill {
  background: var(--card-bg);
  border: 1px solid var(--accent);
  border-radius: 100px;
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* Hero CTA */
.hero-cta-wrap {
  margin-bottom: 36px;
}

.btn-hero {
  padding: 18px 40px;
  font-size: 17px;
  font-weight: 700;
  border-radius: 8px;
  display: inline-flex;
  width: auto;
}

.hero-cta-note {
  margin-top: 14px;
  font-size: 13px;
  color: var(--text-secondary);
  font-weight: 500;
}

/* Launch date urgency bar */
.launch-bar {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius);
  padding: 18px 28px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  max-width: 100%;
}

.launch-bar strong {
  color: var(--accent);
  letter-spacing: 0.04em;
}

/* ---------- Commission Table ---------- */
.commission-table-wrap {
  margin-top: 40px;
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid var(--card-border);
}

.commission-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  min-width: 560px;
}

.commission-table thead {
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
}

.commission-table th {
  padding: 14px 20px;
  text-align: left;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #fff;
  white-space: nowrap;
}

.commission-table tbody tr {
  background: var(--card-bg);
  border-bottom: 1px solid var(--card-border);
  transition: var(--transition);
}

.commission-table tbody tr:last-child {
  border-bottom: none;
}

.commission-table tbody tr:hover {
  background: #161616;
}

.commission-table td {
  padding: 16px 20px;
  color: var(--text-secondary);
  white-space: nowrap;
}

.commission-table td.accent strong {
  color: var(--accent);
}

/* ---------- Highlight Cards ---------- */
.highlight-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 28px;
}

.highlight-card {
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
}

.highlight-card--purple {
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  color: #fff;
}

.highlight-card--dark {
  background: var(--card-bg);
  border: 1px solid var(--accent);
  color: #fff;
}

.highlight-number {
  font-size: 42px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.highlight-card--dark .highlight-number {
  color: var(--accent);
}

.highlight-label {
  font-size: 14px;
  font-weight: 600;
  opacity: 0.85;
}

/* ---------- Funnel Flow ---------- */
.funnel-flow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  margin-top: 40px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.funnel-step {
  width: 100%;
  border-radius: var(--radius);
  transition: var(--transition);
}

.funnel-step-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 24px;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
}

.funnel-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  flex-shrink: 0;
}

.funnel-step--filled {
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
}

.funnel-step--filled .funnel-tag {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.funnel-step--bordered {
  background: var(--card-bg);
  border: 1px solid var(--accent);
}

.funnel-step--bordered .funnel-tag {
  background: rgba(168, 85, 247, 0.15);
  color: var(--accent);
}

.funnel-step--subtle {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
}

.funnel-step--subtle .funnel-step-inner {
  color: var(--text-secondary);
  font-weight: 500;
}

/* Funnel arrow */
.funnel-arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  padding: 4px 0;
}

.funnel-arrow-line {
  width: 2px;
  height: 32px;
  background: repeating-linear-gradient(
    to bottom,
    var(--accent) 0,
    var(--accent) 4px,
    transparent 4px,
    transparent 8px
  );
  position: relative;
}

.funnel-arrow-line::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid var(--accent);
}

.funnel-arrow-label {
  margin-top: 2px;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.02em;
}

.funnel-note {
  margin-top: 36px;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ---------- Screenshot Grid ---------- */
.screenshot-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
}

.screenshot-item {
  border-radius: 10px;
  border: 1px solid var(--card-border);
  overflow: hidden;
  transition: var(--transition);
}

.screenshot-item:hover {
  border-color: rgba(168, 85, 247, 0.3);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
  transform: translateY(-3px);
}

.screenshot-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ---------- Bio Pages Grid ---------- */
.bio-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-top: 48px;
}

.bio-grid-item {
  border-radius: 16px;
  border: 1px solid #2a2a2a;
  overflow: hidden;
  max-height: 320px;
  transition: var(--transition);
}

.bio-grid-item:hover {
  border-color: rgba(168, 85, 247, 0.35);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  transform: translateY(-3px);
}

.bio-grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}

.demo-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 24px;
  background: rgba(168, 85, 247, 0.1);
  border: 1px solid rgba(168, 85, 247, 0.3);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  transition: var(--transition);
}

.demo-pill:hover {
  background: rgba(168, 85, 247, 0.2);
  border-color: var(--accent);
  transform: translateY(-2px);
}

/* ---------- Video Grid ---------- */
.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.video-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.video-card-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
}

.video-embed {
  border-radius: 8px;
  overflow: hidden;
  background: #000;
}

.video-embed iframe {
  width: 100%;
  height: 220px;
  display: block;
  border: none;
}

.video-card-title {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}

.video-card-desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ---------- Why It Converts ---------- */
.convert-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 48px;
}

.convert-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: var(--transition);
}

.convert-card:hover {
  border-color: rgba(168, 85, 247, 0.3);
  border-left-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.convert-icon {
  font-size: 24px;
  flex-shrink: 0;
  line-height: 1;
  margin-top: 2px;
}

.convert-body h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
  color: #fff;
}

.convert-body p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.65;
}

.best-for-bar {
  margin-top: 32px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 22px 28px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  line-height: 1.7;
  text-align: center;
}

/* ---------- EPC Projections ---------- */
.epc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.epc-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  transition: var(--transition);
}

.epc-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.epc-card--conservative { border-left: 4px solid #6b7280; }
.epc-card--realistic { border-left: 4px solid var(--accent); background: #141414; }
.epc-card--best { border-left: 4px solid #22c55e; }

.epc-badge {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.epc-card--realistic .epc-badge { color: var(--accent); }
.epc-card--best .epc-badge { color: #22c55e; }

.epc-number {
  font-size: 28px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.epc-body {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.epc-note {
  margin-top: 32px;
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- Affiliate Contest Podium ---------- */
.podium-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.podium-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
}

.podium-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.podium-card--gold { border-top: 4px solid #f59e0b; }
.podium-card--silver { border-top: 4px solid #9ca3af; }
.podium-card--bronze { border-top: 4px solid #d97706; }

.podium-rank {
  font-size: 40px;
  margin-bottom: 12px;
}

.podium-place {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.podium-prize {
  font-size: 26px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 12px;
}

.podium-card--gold .podium-prize { color: #f59e0b; }
.podium-card--silver .podium-prize { color: #d1d5db; }
.podium-card--bronze .podium-prize { color: #d97706; }

.podium-req {
  font-size: 12px;
  color: var(--text-secondary);
}

.podium-note {
  margin-top: 28px;
  font-size: 13px;
  color: var(--text-secondary);
}

/* ---------- Rules Table ---------- */
.rules-table-wrap {
  margin-top: 32px;
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid var(--card-border);
}

.rules-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.rules-table tr {
  border-bottom: 1px solid var(--card-border);
}

.rules-table tr:last-child {
  border-bottom: none;
}

.rules-table td {
  padding: 16px 24px;
}

.rules-key {
  font-weight: 700;
  color: #fff;
  width: 220px;
  white-space: nowrap;
  background: var(--card-bg);
}

.rules-val {
  color: var(--text-secondary);
  background: var(--card-bg);
}

.rules-val--warn {
  color: #ef4444;
}

/* ---------- Contact Section ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--card-bg);
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-decoration: none;
  transition: var(--transition);
}

.contact-card:hover {
  background: #161616;
  transform: translateY(-3px);
  box-shadow: 0 4px 24px rgba(168, 85, 247, 0.15);
}

.contact-icon {
  font-size: 32px;
  flex-shrink: 0;
}

.contact-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 4px;
}

.contact-link {
  font-size: 15px;
  font-weight: 700;
  color: var(--accent);
}

.final-cta-wrap {
  margin-top: 48px;
}

.btn-final {
  width: 100%;
  max-width: 560px;
}

/* ---------- New Footer ---------- */
.footer-new {
  background: #050505;
  border-top: 1px solid #1a1a1a;
  padding: 36px 0;
}

.footer-new-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.footer-new-left {
  font-size: 13px;
  color: var(--text-secondary);
  font-weight: 500;
}

.footer-new-right {
  font-size: 13px;
  color: var(--text-secondary);
}

.footer-legal {
  font-size: 11px;
  color: #6b7280;
  line-height: 1.7;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

/* ---------- Features Grid ---------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

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

.feature-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(168, 85, 247, 0.1);
  border-radius: 12px;
  margin-bottom: 20px;
  font-size: 22px;
}

.feature-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ---------- Commission Tiers ---------- */
.tiers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.tier-card {
  text-align: center;
  position: relative;
  overflow: hidden;
}

.tier-card.featured {
  border-color: var(--accent);
  box-shadow: 0 0 40px rgba(168, 85, 247, 0.15);
}

.tier-card.featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-deep));
}

.tier-badge {
  display: inline-block;
  padding: 4px 14px;
  background: rgba(168, 85, 247, 0.1);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 16px;
}

.tier-percent {
  font-size: 56px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 4px;
}

.tier-percent span {
  font-size: 24px;
}

.tier-label {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.tier-details {
  list-style: none;
  text-align: left;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--card-border);
}

.tier-details li {
  font-size: 14px;
  color: var(--text-secondary);
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.tier-details li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
  font-size: 13px;
  flex-shrink: 0;
}

/* ---------- How It Works (Steps) ---------- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
  counter-reset: step;
}

.step-card {
  counter-increment: step;
  position: relative;
}

.step-card::before {
  content: counter(step, decimal-leading-zero);
  font-size: 48px;
  font-weight: 900;
  color: rgba(168, 85, 247, 0.15);
  line-height: 1;
  margin-bottom: 16px;
  display: block;
}

.step-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
}

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

/* ---------- Testimonials ---------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.testimonial-stars {
  color: var(--accent);
  font-size: 16px;
  letter-spacing: 2px;
}

.testimonial-quote {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
  font-style: italic;
  flex-grow: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  flex-shrink: 0;
}

.testimonial-info h4 {
  font-size: 14px;
  font-weight: 600;
}

.testimonial-info p {
  font-size: 12px;
  color: var(--text-secondary);
}

/* ---------- FAQ ---------- */
.faq-list {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

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

.faq-item:hover {
  border-color: rgba(168, 85, 247, 0.3);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  color: var(--text-primary);
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  text-align: left;
  transition: var(--transition);
}

.faq-question:hover {
  color: var(--accent);
}

.faq-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(168, 85, 247, 0.1);
  font-size: 18px;
  color: var(--accent);
  transition: var(--transition);
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-answer-inner {
  padding: 0 28px 22px;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

/* ---------- CTA Banner ---------- */
.cta-banner {
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(168, 85, 247, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.cta-banner .container {
  position: relative;
  z-index: 1;
}

.cta-banner .section-title {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-banner .section-subtitle {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 36px;
}

/* ---------- Footer ---------- */
.footer {
  padding: 40px 0;
  border-top: 1px solid var(--card-border);
}

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

.footer-copy {
  font-size: 13px;
  color: var(--text-secondary);
}

.footer-links {
  display: flex;
  gap: 24px;
  list-style: none;
}

.footer-links a {
  font-size: 13px;
  color: var(--text-secondary);
  transition: var(--transition);
}

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

/* ---------- Scroll Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
  .section {
    padding: var(--section-py-mobile) 0;
  }

  .navbar-actions {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: #0e0e0e;
    flex-direction: column;
    padding: 80px 32px 32px;
    gap: 16px;
    transition: right 0.35s ease;
    border-left: 1px solid var(--card-border);
    z-index: 999;
  }

  .navbar-actions.open {
    right: 0;
  }

  .btn-nav {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
    font-size: 14px;
  }

  .menu-toggle {
    display: block;
    z-index: 1001;
  }

  .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }

  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }

  .hero {
    min-height: auto;
    padding-top: 32px;
    padding-bottom: 48px;
  }

  .hero-title {
    font-size: 32px;
    line-height: 1.18;
  }

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

  .hero-pills {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .hero-pill {
    width: 100%;
    justify-content: center;
  }

  .btn-hero {
    width: 100%;
    justify-content: center;
    padding: 18px 24px;
    font-size: 15px;
  }

  .launch-bar {
    font-size: 12px;
    padding: 14px 18px;
    gap: 8px;
  }

  .highlight-cards {
    grid-template-columns: 1fr;
  }

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

  .screenshot-grid {
    grid-template-columns: 1fr;
  }

  .bio-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .bio-grid-item {
    max-height: 260px;
  }

  .video-grid {
    grid-template-columns: 1fr;
  }

  .convert-grid {
    grid-template-columns: 1fr;
  }

  .features-grid,
  .tiers-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .footer .container {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .epc-grid,
  .podium-grid {
    grid-template-columns: 1fr;
  }

  .epc-number {
    font-size: 24px;
  }

  .podium-prize {
    font-size: 22px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .rules-key {
    width: auto;
    white-space: normal;
  }

  .footer-new-top {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .features-grid,
  .tiers-grid,
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
