/* ═══════════════════════════════════════════════════════════════
   FAST TRACK GENAI — MASTER BRAND STYLESHEET
   Extracted from live funnel pages — April 2026
   ═══════════════════════════════════════════════════════════════ */

/* ── FONTS ── */
@font-face {
  font-family: 'Conthrax';
  src: url('https://assets.cdn.filesafe.space/2ZXJxsBIBYREWv4XuzXW/media/6972028115885e9f6e7abef5.otf') format('opentype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

/* ── CSS VARIABLES ── */
:root {
  /* Primary Colors */
  --cyan: #02E6F3;
  --cyan-rgb: 2, 230, 243;
  --magenta: #B811B4;
  --magenta-rgb: 184, 17, 180;
  --light-cyan: #63E7F4;
  --pink: #D760E0;
  --deep-purple: #9A0E97;
  --purple-pink: #BA49B5;

  /* Background Colors */
  --bg-primary: #050A10;
  --bg-navy: #1A2B47;
  --bg-dark: #121212;
  --bg-deep-navy: #0D1829;
  --bg-dark-blue: #121233;

  /* Text Colors */
  --text-white: #FFFFFF;
  --text-light: #F5F5F5;
  --text-gray: #C0C0C0;
  --text-green: #37CA37;
  --text-red: #FF0000;
  --text-mint: #81E6D9;
  --text-light-cyan: #BFF8FF;

  /* Fonts */
  --font-heading: 'Conthrax', 'Segoe UI', sans-serif;
  --font-body: 'Poppins', sans-serif;

  /* Gradients */
  --gradient-cta: linear-gradient(90deg, #B218B5, #6674D8, #11D3ED);
  --gradient-cta-simple: linear-gradient(90deg, #B811B4 0%, #02E6F3 100%);
  --gradient-text-cyan-pink: linear-gradient(90deg, #02E6F3 0%, #D760E0 100%);
  --gradient-text-cyan-magenta: linear-gradient(90deg, #02E6F3 0%, #B811B4 100%);
  --gradient-hero: radial-gradient(circle at 30% 20%, #9A0E97 0%, #1A2B47 40%, #121212 100%);
  --gradient-hero-lead: radial-gradient(circle, #1A2B47 0%, #050A10 60%, #000000 100%);
  --gradient-bar: linear-gradient(to right, #39C3ED, #39BBF2, #46B1F4, #5AA7F4, #709CF0, #7D95EF, #8B8EEC, #9986E7, #A381E7, #AD7BE6, #B874E3, #C36CE0);

  /* Shadows */
  --shadow-cta: rgba(255, 255, 255, 0.086) 0px 0px 5px 4.49px;
  --shadow-cta-lead: rgba(255, 255, 255, 0.416) 0px 0px 5px 2.5px;
  --shadow-card: rgb(112, 112, 112) 0px 1px 5px 2px;

  /* Border Radius */
  --radius-button: 15px;
  --radius-card: 15px;
  --radius-button-lead: 10px 25px;
}

/* ── RESET & BASE ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-white);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--cyan); text-decoration: none; }

/* ── LAYOUT ── */
.container { width: 100%; max-width: 960px; margin: 0 auto; padding: 0 24px; }
.container.narrow { max-width: 720px; }
.container.wide { max-width: 1100px; }
.centered { text-align: center; }
section { padding: 60px 0; position: relative; }

/* ── GRADIENT TOP BAR ── */
.gradient-bar {
  height: 4px;
  background: var(--gradient-bar);
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* ── LOGO BAR ── */
.logo-bar {
  padding: 16px 0;
  text-align: center;
  background: var(--bg-primary);
}
.logo-bar img {
  max-height: 50px;
  margin: 0 auto;
}

/* ── SOCIAL PROOF BADGE ── */
.trust-badge {
  text-align: center;
  padding: 12px 0;
}
.trust-badge img {
  max-height: 40px;
  margin: 0 auto;
}

/* ── HEADINGS ── */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.3;
  letter-spacing: 0.5px;
}
h1 {
  font-size: clamp(28px, 5vw, 44px);
  font-weight: 700;
  text-transform: uppercase;
}
h2 {
  font-size: clamp(22px, 4vw, 36px);
  font-weight: 700;
  text-transform: uppercase;
}
h3 {
  font-size: clamp(18px, 3vw, 24px);
  font-weight: 600;
}
h4 {
  font-size: 20px;
  font-weight: 400;
}

/* ── BODY TEXT ── */
p, li, label {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-light);
}
.body-lg { font-size: 20px; line-height: 1.5; }
.body-sm { font-size: 14px; line-height: 1.4; }

/* ── ACCENT / HIGHLIGHT TEXT ── */
.accent, .highlight-cyan { color: var(--cyan); }
.highlight-magenta { color: var(--magenta); }
.highlight-green { color: var(--text-green); }
.highlight-red { color: var(--text-red); }

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

/* ── SECTION BACKGROUNDS ── */
.section-hero-lead {
  background: var(--gradient-hero-lead);
}
.section-hero-ghl {
  background: var(--gradient-hero);
}
.section-dark {
  background: var(--bg-primary);
}
.section-navy {
  background: var(--bg-navy);
}
.section-glow-dual {
  background:
    radial-gradient(circle at 80% 50%, rgba(184, 17, 180, 0.25) 0%, transparent 60%),
    radial-gradient(circle at 20% 50%, rgba(2, 230, 243, 0.15) 0%, transparent 60%);
  background-color: var(--bg-primary);
}
.section-glow-top-bottom {
  background:
    radial-gradient(circle at 50% 0%, rgba(184, 17, 180, 0.2) 0%, transparent 60%),
    radial-gradient(circle at 50% 100%, rgba(2, 230, 243, 0.15) 0%, transparent 60%);
  background-color: var(--bg-primary);
}
.section-subtle-purple {
  background: radial-gradient(circle at 80% 50%, rgba(184, 17, 180, 0.08) 0%, var(--bg-primary) 60%, #000 100%);
}
.section-dark-radial {
  background: radial-gradient(circle, var(--bg-navy) 0px, var(--bg-dark) 93%);
}
.section-bg-image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* ── CTA BUTTONS ── */
.cta-btn {
  display: inline-block;
  background: var(--gradient-cta);
  color: white;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  padding: 16px 48px;
  border: none;
  border-radius: var(--radius-button);
  box-shadow: var(--shadow-cta);
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: transform 0.2s, box-shadow 0.2s;
  text-align: center;
  text-decoration: none;
}
.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: rgba(255, 255, 255, 0.2) 0px 0px 10px 5px;
  color: white;
}
.cta-btn-large {
  font-family: var(--font-heading);
  font-weight: 600;
  padding: 20px 80px;
  font-size: 18px;
}
.cta-btn-lead {
  display: inline-block;
  background: var(--gradient-cta-simple);
  color: white;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  padding: 16px 40px;
  border: none;
  border-radius: 10px 25px;
  box-shadow: var(--shadow-cta-lead);
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}
.cta-btn-lead:hover {
  transform: translateY(-2px);
  box-shadow: rgba(255, 255, 255, 0.5) 0px 0px 8px 3px;
  color: white;
}

/* Step button (thank you pages) */
.step-btn {
  display: inline-block;
  background-color: var(--cyan);
  color: #B811B5;
  font-family: var(--font-heading);
  border-radius: 10px;
  padding: 15px 24px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: transform 0.2s;
}
.step-btn:hover {
  transform: translateY(-2px);
  color: #B811B5;
}

/* Decline / Skip link */
.decline-link, .cta-decline {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 16px;
  color: var(--text-gray);
  text-decoration: underline;
  cursor: pointer;
  margin-top: 12px;
}

/* ── GLASS CARD ── */
.glass-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(13, 24, 41, 0.1) 100%);
  background-color: rgba(13, 24, 41, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-card);
  backdrop-filter: blur(10px);
  padding: 30px;
}

/* ── CARD (Cyan bordered — thank you pages) ── */
.card-bordered {
  border: 1.5px solid var(--cyan);
  border-radius: var(--radius-card);
  background: rgba(13, 24, 41, 0.4);
  padding: 30px;
}

/* ── TESTIMONIAL FACES ── */
.testimonial-faces {
  text-align: center;
  padding: 12px 0;
}
.testimonial-faces img {
  max-width: 280px;
  margin: 0 auto;
}

/* ── VIDEO WRAPPER ── */
.video-wrapper {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: 0 0 30px rgba(2, 230, 243, 0.15);
  max-width: 800px;
  margin: 0 auto;
}
.video-wrapper img {
  width: 100%;
  display: block;
}

/* ── PRODUCT IMAGE ── */
.product-image {
  text-align: center;
}
.product-image img {
  max-width: 500px;
  margin: 0 auto;
  border-radius: 12px;
}

/* ── BONUS STACK ── */
.bonus-card {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 24px;
  margin-bottom: 20px;
  background: rgba(13, 24, 41, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-card);
}
.bonus-card img {
  width: 180px;
  flex-shrink: 0;
  border-radius: 8px;
}
.bonus-card .bonus-info h3 {
  color: var(--cyan);
  margin-bottom: 8px;
  font-size: 18px;
}
.bonus-card .bonus-info p {
  font-size: 14px;
  color: var(--text-gray);
}
.bonus-card .bonus-value {
  color: var(--text-gray);
  font-size: 14px;
  margin-top: 4px;
}

/* ── CHECKLIST ── */
.checklist { list-style: none; padding: 0; }
.checklist li {
  padding: 10px 0 10px 36px;
  position: relative;
  font-size: 16px;
  color: var(--text-light);
}
.checklist li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--cyan);
  font-weight: 700;
  font-size: 18px;
}

/* ── GUARANTEE ── */
.guarantee-section {
  text-align: center;
  padding: 40px 0;
}
.guarantee-section img {
  max-width: 160px;
  margin: 0 auto 20px;
}

/* ── FAQ ── */
.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
}
.faq-item h4 {
  color: var(--cyan);
  margin-bottom: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
}
.faq-item p {
  color: var(--text-gray);
  font-size: 14px;
}

/* ── DIVIDER ── */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(2, 230, 243, 0.3), transparent);
  margin: 40px 0;
}

/* ── FOOTER ── */
.footer {
  padding: 30px 0;
  text-align: center;
  background: var(--bg-primary);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.footer img {
  max-height: 40px;
  margin: 0 auto 12px;
}
.footer p {
  font-size: 12px;
  color: var(--text-gray);
}

/* ── CHECKOUT-SPECIFIC ── */
.checkout-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: 13px;
  color: var(--text-gray);
  margin-bottom: 6px;
  font-weight: 500;
}
.form-group input, .form-group select {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  color: white;
  font-family: var(--font-body);
  font-size: 14px;
}
.form-group input:focus, .form-group select:focus {
  outline: none;
  border-color: var(--cyan);
  box-shadow: 0 0 0 2px rgba(2, 230, 243, 0.15);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.order-summary {
  background: rgba(13, 24, 41, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-card);
  padding: 28px;
}
.price-highlight { color: var(--text-green); font-weight: 700; }
.timer-urgency { color: var(--text-red); font-weight: 700; }

/* ── AGENT / FEATURE CARDS ── */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 30px;
}
.feature-card {
  background: rgba(13, 24, 41, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-card);
  padding: 28px;
  transition: border-color 0.3s;
}
.feature-card:hover {
  border-color: rgba(2, 230, 243, 0.3);
}
.feature-card .icon {
  font-size: 28px;
  margin-bottom: 12px;
}
.feature-card h3 {
  color: var(--cyan);
  margin-bottom: 8px;
  font-size: 16px;
}
.feature-card p {
  font-size: 14px;
  color: var(--text-gray);
}

/* ── TESTIMONIALS ── */
.testimonial-card {
  background: rgba(13, 24, 41, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-card);
  padding: 24px;
  margin-bottom: 16px;
}
.testimonial-card .quote {
  font-style: italic;
  color: var(--text-light);
  margin-bottom: 12px;
}
.testimonial-card .author {
  color: var(--cyan);
  font-size: 14px;
  font-weight: 600;
}

/* ── COMPARISON TABLE ── */
.compare-table {
  width: 100%;
  border-collapse: collapse;
}
.compare-table th, .compare-table td {
  padding: 14px 20px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.compare-table th {
  font-family: var(--font-heading);
  color: var(--cyan);
  font-size: 14px;
}

/* ── EYEBROW TEXT ── */
.eyebrow {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--cyan);
  margin-bottom: 12px;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .container { padding: 0 16px; }
  section { padding: 40px 0; }
  .checkout-wrapper { grid-template-columns: 1fr; }
  .bonus-card { flex-direction: column; text-align: center; }
  .bonus-card img { width: 140px; }
  .feature-grid { grid-template-columns: 1fr; }
  .cta-btn, .cta-btn-large { padding: 14px 28px; font-size: 14px; }
  h1 { font-size: 26px; }
  h2 { font-size: 22px; }
}
