/* ============================================================
   GOLD BOSS INDICATOR — UNIFIED STYLESHEET
   Shared across index.html & referral.html
   ============================================================ */

/* ── VARIABLES ── */
:root {
  --gold: #C9A84C;
  --gold-light: #E8C96A;
  --gold-dim: #9A7A30;
  --black: #080808;
  --dark: #0f0f0f;
  --dark2: #161616;
  --dark3: #1e1e1e;
  --dark4: #252525;
  --white: #f5f0e8;
  --gray: #888;
  --gray-light: #aaa;
  --gray-dim: #555;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: 'Barlow', sans-serif;
  overflow-x: hidden;
}

/* ── NOISE TEXTURE OVERLAY ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1000;
  opacity: 0.4;
}


/* ============================================================
   NAVIGATION (shared)
   ============================================================ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 60px;
  height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(8,8,8,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,168,76,0.1);
}

.nav-logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
}

.nav-logo span { color: var(--gold); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--gray-light);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active { color: var(--gold); }

.nav-cta {
  background: var(--gold) !important;
  color: var(--black) !important;
  padding: 9px 22px !important;
  font-weight: 700 !important;
}

.nav-cta:hover {
  background: var(--gold-light) !important;
  color: var(--black) !important;
}


/* ============================================================
   BUTTONS (shared)
   ============================================================ */
.btn-primary {
  background: var(--gold);
  color: var(--black);
  padding: 16px 44px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(201,168,76,0.25);
}

.btn-secondary {
  color: var(--gold);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid rgba(201,168,76,0.3);
  padding-bottom: 2px;
  transition: all 0.2s;
}

.btn-secondary:hover { border-color: var(--gold); gap: 12px; }

.btn-outline {
  display: inline-block;
  border: 1px solid rgba(201,168,76,0.35);
  color: var(--gold);
  padding: 15px 40px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.2s;
}

.btn-outline:hover {
  border-color: var(--gold);
  background: rgba(201,168,76,0.06);
}


/* ============================================================
   SECTION SHARED STYLES
   ============================================================ */
section {
  padding: 96px 60px;
}

.section-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-eyebrow::after {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.section-eyebrow--center {
  justify-content: center;
}

.section-eyebrow--center::after { display: none; }

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(34px, 3.8vw, 56px);
  font-weight: 900;
  line-height: 1.08;
  margin-bottom: 20px;
}

.section-title em { color: var(--gold); font-style: italic; }

.section-body {
  font-size: 15px;
  font-weight: 300;
  color: var(--gray);
  line-height: 1.85;
  max-width: 560px;
}

.section-body--center { margin: 0 auto; }

.sec-alt { background: var(--dark); }


/* ============================================================
   FOOTER (shared)
   ============================================================ */
footer {
  background: var(--dark2);
  border-top: 1px solid var(--dark3);
  padding: 40px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--white);
}

.footer-logo span { color: var(--gold); }

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

.footer-links a {
  text-decoration: none;
  color: #3a3a3a;
  font-size: 12px;
  letter-spacing: 1px;
  transition: color 0.2s;
}

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

.footer-copy {
  font-size: 11px;
  color: #2a2a2a;
}


/* ============================================================
   ANIMATIONS (shared)
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.2; }
}

@keyframes pulse-gold {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201,168,76,0); }
  50%      { box-shadow: 0 0 0 8px rgba(201,168,76,0.08); }
}


/* ============================================================
   INDEX PAGE — HERO
   ============================================================ */
.hero--index {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 60px 80px;
}

/* Grid background */
.hero--index::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 100%);
}

/* Gold radial glow */
.hero--index::after {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 800px;
  height: 800px;
  background: radial-gradient(ellipse, rgba(201,168,76,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hero-content > * {
  animation: fadeUp 0.8s ease both;
}

.hero-content > *:nth-child(1) { animation-delay: 0.1s; }
.hero-content > *:nth-child(2) { animation-delay: 0.2s; }
.hero-content > *:nth-child(3) { animation-delay: 0.3s; }
.hero-content > *:nth-child(4) { animation-delay: 0.4s; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}

.hero-eyebrow::before {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--gold);
}

.hero--index h1,
.hero--referral h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(52px, 6vw, 86px);
  font-weight: 900;
  line-height: 1.0;
  margin-bottom: 24px;
  color: var(--white);
}

.hero--index h1 em,
.hero--referral h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  font-size: 17px;
  font-weight: 300;
  color: var(--gray-light);
  line-height: 1.8;
  max-width: 580px;
  margin-bottom: 44px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Signal badge */
.signal-demo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.25);
  padding: 6px 14px;
  margin-bottom: 24px;
  animation: pulse-gold 2s ease infinite;
}

.signal-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: blink 1.5s ease infinite;
}

.signal-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--gold);
  text-transform: uppercase;
}


/* ============================================================
   INDEX PAGE — TICKER
   ============================================================ */
.ticker-wrap {
  background: rgba(201,168,76,0.06);
  border-top: 1px solid rgba(201,168,76,0.1);
  border-bottom: 1px solid rgba(201,168,76,0.1);
  overflow: hidden;
  padding: 12px 0;
}

.ticker {
  display: flex;
  gap: 60px;
  animation: ticker 20s linear infinite;
  width: max-content;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.ticker-item {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(201,168,76,0.4);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 20px;
}

.ticker-item::after {
  content: '✦';
  font-size: 8px;
  color: rgba(201,168,76,0.3);
}


/* ============================================================
   INDEX PAGE — BANNER & STATS
   ============================================================ */
.built-banner {
  background: var(--dark);
  border-top: 1px solid var(--dark3);
  border-bottom: 1px solid var(--dark3);
  padding: 22px 60px;
  text-align: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gray-dim);
}

.built-banner .highlight {
  color: var(--gold);
  font-weight: 800;
  margin: 0 8px;
}

.stats-bar {
  background: var(--dark2);
  border-top: 1px solid var(--dark3);
  border-bottom: 1px solid var(--dark3);
  padding: 28px 60px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 20px;
}

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

.stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 42px;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  display: block;
}

.stat-label {
  font-size: 12px;
  font-weight: 500;
  color: #666;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 6px;
  display: block;
}

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


/* ============================================================
   INDEX PAGE — FEATURES
   ============================================================ */
.features-section { background: var(--dark); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 60px;
}

.feature-card {
  background: var(--dark2);
  padding: 44px 36px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.feature-card:hover { background: #1a1a1a; }
.feature-card:hover::before { opacity: 1; }

.feature-icon {
  width: 48px;
  height: 48px;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 24px;
}

.feature-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 12px;
}

.feature-desc {
  font-size: 14px;
  color: #777;
  line-height: 1.7;
}


/* ============================================================
   INDEX PAGE — HOW IT WORKS
   ============================================================ */
.how-section { background: var(--black); }

.how-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-top: 60px;
}

.steps { display: flex; flex-direction: column; }

.step {
  display: flex;
  gap: 28px;
  padding: 32px 0;
  border-bottom: 1px solid var(--dark3);
}

.step:last-child { border-bottom: none; }

.step-num--index {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 900;
  color: rgba(201,168,76,0.15);
  line-height: 1;
  min-width: 60px;
}

.step-content h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 8px;
}

.step-content p {
  font-size: 14px;
  color: #777;
  line-height: 1.7;
}


/* ============================================================
   INDEX PAGE — CHART DISPLAY
   ============================================================ */
.chart-display {
  background: var(--dark2);
  border: 1px solid var(--dark3);
  border-radius: 4px;
  overflow: hidden;
}

.chart-bar {
  background: var(--dark);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--dark3);
}

.chart-dot { width: 8px; height: 8px; border-radius: 50%; }

.chart-body {
  padding: 24px;
  position: relative;
  height: 320px;
  overflow: hidden;
}

.chart-svg { width: 100%; height: 100%; }

/* P&L Table overlay */
.pnl-demo {
  background: rgba(0,0,0,0.8);
  border: 1px solid rgba(201,168,76,0.3);
  position: absolute;
  top: 16px;
  right: 16px;
  min-width: 180px;
}

.pnl-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 12px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.pnl-row:last-child { border-bottom: none; }
.pnl-label { color: var(--gray); letter-spacing: 1px; }
.pnl-val-gold { color: var(--gold); font-weight: 700; }
.pnl-val-red { color: #e05555; font-weight: 700; }

.pnl-header {
  background: rgba(201,168,76,0.1);
  padding: 6px 12px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--gold);
  text-transform: uppercase;
  border-bottom: 1px solid rgba(201,168,76,0.2);
}


/* ============================================================
   INDEX PAGE — PRICING
   ============================================================ */
.pricing-section {
  background: var(--dark);
  text-align: center;
}

.pricing-card {
  max-width: 460px;
  margin: 60px auto 0;
  background: var(--dark2);
  border: 1px solid rgba(201,168,76,0.2);
  padding: 56px 48px;
  position: relative;
  overflow: hidden;
}

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

.pricing-badge {
  display: inline-block;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 6px 16px;
  margin-bottom: 28px;
}

.pricing-price {
  font-family: 'Playfair Display', serif;
  font-size: 72px;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}

.pricing-price sup {
  font-size: 32px;
  font-weight: 400;
  color: var(--gold);
  vertical-align: super;
}

.pricing-period {
  font-size: 14px;
  color: var(--gray-dim);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 40px;
}

.pricing-features {
  list-style: none;
  text-align: left;
  margin-bottom: 40px;
}

.pricing-features li {
  padding: 12px 0;
  border-bottom: 1px solid var(--dark3);
  font-size: 15px;
  color: var(--gray-light);
  display: flex;
  align-items: center;
  gap: 12px;
}

.pricing-features li:last-child { border-bottom: none; }

.pricing-features li::before {
  content: '✦';
  color: var(--gold);
  font-size: 10px;
  flex-shrink: 0;
}

.pricing-note {
  font-size: 12px;
  color: var(--gray-dim);
  margin-top: 20px;
  line-height: 1.6;
}


/* ============================================================
   INDEX PAGE — TELEGRAM CTA
   ============================================================ */
.telegram-section {
  background: var(--black);
  text-align: center;
  padding: 80px 60px;
}

.telegram-card {
  max-width: 640px;
  margin: 0 auto;
  background: var(--dark2);
  border: 1px solid var(--dark3);
  padding: 56px 48px;
  position: relative;
  overflow: hidden;
}

.telegram-card::after {
  content: '';
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(201,168,76,0.05) 0%, transparent 70%);
}

.telegram-icon {
  width: 64px;
  height: 64px;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.2);
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}


/* ============================================================
   REFERRAL PAGE — HERO
   ============================================================ */
.hero--referral {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px 60px 80px;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 40%, rgba(201,168,76,0.07) 0%, transparent 70%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.025) 1px, transparent 1px);
  background-size: 64px 64px;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 780px;
}

.hero-inner > * {
  animation: fadeUp 0.75s ease both;
}

.hero-inner > *:nth-child(1) { animation-delay: 0.1s; }
.hero-inner > *:nth-child(2) { animation-delay: 0.2s; }
.hero-inner > *:nth-child(3) { animation-delay: 0.3s; }
.hero-inner > *:nth-child(4) { animation-delay: 0.4s; }

.hero-eyebrow--badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(201,168,76,0.28);
  padding: 7px 18px;
  margin-bottom: 28px;
}

.eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: blink 2s ease infinite;
}

.eyebrow-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
}

.hero--referral .hero-sub {
  margin-left: auto;
  margin-right: auto;
}

.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}


/* ============================================================
   REFERRAL PAGE — NUMBER STRIP
   ============================================================ */
.number-strip {
  background: var(--dark2);
  border-top: 1px solid var(--dark3);
  border-bottom: 1px solid var(--dark3);
  padding: 48px 60px;
}

.number-strip-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--dark3);
  max-width: 1100px;
  margin: 0 auto;
}

.num-cell {
  background: var(--dark2);
  padding: 40px 32px;
  text-align: center;
}

.num-big {
  font-family: 'Playfair Display', serif;
  font-size: 56px;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  display: block;
}

.num-lbl {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray-dim);
  margin-top: 8px;
  display: block;
}


/* ============================================================
   REFERRAL PAGE — STEPS GRID
   ============================================================ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--dark3);
  margin-top: 60px;
}

.step-card {
  background: var(--dark2);
  padding: 40px 28px;
  position: relative;
  transition: background 0.25s;
}

.step-card:hover { background: var(--dark3); }

.step-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}

.step-card:hover::before { transform: scaleX(1); }

.step-num--ref {
  font-family: 'Playfair Display', serif;
  font-size: 52px;
  font-weight: 900;
  color: rgba(201,168,76,0.12);
  line-height: 1;
  margin-bottom: 16px;
}

.step-card-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 10px;
}

.step-card-desc {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.78;
}

.step-arrow {
  position: absolute;
  top: 50%;
  right: -14px;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  background: var(--dark4);
  border: 1px solid var(--dark3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: rgba(201,168,76,0.4);
  z-index: 2;
}


/* ============================================================
   REFERRAL PAGE — EARNINGS CALCULATOR
   ============================================================ */
.calc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 60px;
  background: var(--dark3);
}

.calc-left {
  background: var(--dark2);
  padding: 52px 48px;
}

.calc-right {
  background: var(--dark);
  padding: 52px 48px;
  border-top: 3px solid var(--gold);
}

.calc-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
}

/* Slider */
.slider-wrap { margin-bottom: 36px; }

.slider-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.slider-lbl-text { font-size: 13px; color: var(--gray); font-weight: 500; }

.slider-val {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 1px;
}

input[type=range] {
  width: 100%;
  -webkit-appearance: none;
  height: 2px;
  background: var(--dark4);
  border-radius: 1px;
  outline: none;
}

input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  background: var(--gold);
  border-radius: 50%;
  cursor: pointer;
}

input[type=range]::-moz-range-thumb {
  width: 18px;
  height: 18px;
  background: var(--gold);
  border-radius: 50%;
  cursor: pointer;
  border: none;
}

/* Plan toggle */
.plan-toggle {
  display: flex;
  gap: 2px;
  margin-bottom: 36px;
  background: var(--dark3);
}

.plan-btn {
  flex: 1;
  padding: 12px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: center;
  cursor: pointer;
  border: none;
  background: transparent;
  color: var(--gray);
  transition: all 0.2s;
}

.plan-btn.active { background: var(--gold); color: #000; }

/* Results */
.result-rows { display: flex; flex-direction: column; }

.result-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--dark3);
}

.result-row:last-child { border-bottom: none; }

.result-lbl { font-size: 13px; color: var(--gray); }

.result-val {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 1px;
}

.result-val.big { font-size: 32px; }

.result-highlight {
  background: rgba(201,168,76,0.06);
  border: 1px solid rgba(201,168,76,0.18);
  padding: 20px;
  margin-top: 24px;
}

.result-highlight-lbl {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(201,168,76,0.6);
  margin-bottom: 6px;
}

.result-highlight-val {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}

.result-highlight-sub {
  font-size: 12px;
  color: var(--gray-dim);
  margin-top: 4px;
}


/* ============================================================
   REFERRAL PAGE — TIERS TABLE
   ============================================================ */
.tiers-table {
  width: 100%;
  margin-top: 60px;
  border-collapse: collapse;
}

.tiers-table th {
  background: var(--gold);
  color: #000;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 14px 16px;
  text-align: left;
}

.tiers-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--dark3);
  font-size: 14px;
  color: var(--gray-light);
}

.tiers-table tr:nth-child(even) td { background: var(--dark2); }
.tiers-table tr:nth-child(odd) td  { background: var(--dark); }
.tiers-table td:first-child { font-weight: 600; color: var(--white); }

.tiers-table td.gold {
  color: var(--gold);
  font-weight: 700;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px;
  letter-spacing: 1px;
}

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


/* ============================================================
   REFERRAL PAGE — FAQ
   ============================================================ */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 60px;
  background: var(--dark3);
}

.faq-card {
  background: var(--dark2);
  padding: 36px 32px;
}

.faq-q {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.faq-q::before {
  content: 'Q';
  color: var(--gold);
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 1px;
}

.faq-a {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.78;
}


/* ============================================================
   REFERRAL PAGE — CTA BOX
   ============================================================ */
.cta-box {
  background: var(--dark2);
  border: 1px solid rgba(201,168,76,0.2);
  padding: 72px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
  max-width: 860px;
  margin: 60px auto 0;
}

.cta-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dim), var(--gold), var(--gold-dim));
}

.cta-box-bg {
  position: absolute;
  bottom: -40px;
  right: -40px;
  font-family: 'Playfair Display', serif;
  font-size: 220px;
  font-weight: 900;
  color: rgba(201,168,76,0.025);
  line-height: 1;
  pointer-events: none;
}

.cta-note {
  font-size: 12px;
  color: var(--gray-dim);
  margin-top: 20px;
  line-height: 1.6;
}


/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  nav { padding: 0 24px; }
  .nav-links li:not(:last-child):not(:nth-last-child(2)) { display: none; }

  .hero--index  { padding: 100px 24px 60px; }
  .hero--referral { padding: 110px 24px 60px; }

  section { padding: 72px 24px; }

  .built-banner { padding: 18px 24px; }

  .stats-bar {
    padding: 24px;
    flex-wrap: wrap;
    gap: 24px;
  }

  .features-grid { grid-template-columns: 1fr; }
  .how-grid { grid-template-columns: 1fr; gap: 40px; }

  .number-strip { padding: 40px 24px; }
  .number-strip-inner { grid-template-columns: 1fr 1fr; }

  .steps-grid { grid-template-columns: 1fr 1fr; }
  .step-arrow { display: none; }

  .calc-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }

  .cta-box { padding: 48px 32px; }
  .telegram-section { padding: 60px 24px; }

  footer {
    padding: 32px 24px;
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 600px) {
  nav { padding: 0 16px; height: 58px; }
  .nav-links li { display: none; }
  .nav-links li:last-child { display: block; }

  .hero--index { padding: 90px 16px 48px; }
  .hero--referral { padding: 90px 16px 48px; }
  .hero--referral h1 { font-size: clamp(42px, 11vw, 64px); }

  section { padding: 56px 16px; }

  .built-banner { padding: 16px; }
  .stats-bar { padding: 16px; }
  .stat-num { font-size: 32px; }

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

  .number-strip-inner { grid-template-columns: 1fr 1fr; }
  .num-big { font-size: 40px; }

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

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

  .tiers-table th,
  .tiers-table td { padding: 10px 12px; font-size: 12px; }

  .telegram-section { padding: 48px 16px; }
  .telegram-card { padding: 40px 28px; }

  footer { padding: 24px 16px; }
}
