/* =====================================================
   Penguin Global Rise - Main Stylesheet
   Premium Dark Navy + Gold + Teal Design
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

/* ---- CSS Variables ---- */
:root {
  --navy: #0A1628;
  --navy-light: #0F2040;
  --navy-mid: #132238;
  --gold: #F5A623;
  --gold-light: #FFD166;
  --gold-dark: #D4861A;
  --teal: #00C9B1;
  --teal-dark: #009E8D;
  --white: #FFFFFF;
  --text: #E8EDF5;
  --text-muted: #8A9BB5;
  --card-bg: rgba(255,255,255,0.04);
  --card-border: rgba(255,255,255,0.08);
  --glass-bg: rgba(10, 22, 40, 0.85);
  --shadow: 0 20px 60px rgba(0,0,0,0.4);
  --shadow-gold: 0 0 30px rgba(245,166,35,0.25);
  --shadow-teal: 0 0 30px rgba(0,201,177,0.25);
  --radius: 16px;
  --radius-sm: 8px;
  --radius-lg: 24px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--navy);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

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

img { max-width: 100%; height: auto; }

ul { list-style: none; }

/* ---- Utility ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-wide { max-width: 1400px; margin: 0 auto; padding: 0 24px; }

.section { padding: 100px 0; }
.section-sm { padding: 60px 0; }

.text-gold { color: var(--gold); }
.text-teal { color: var(--teal); }
.text-muted { color: var(--text-muted); }
.text-center { text-align: center; }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: rgba(245,166,35,0.12);
  color: var(--gold);
  border: 1px solid rgba(245,166,35,0.25);
  margin-bottom: 20px;
}

.badge-teal {
  background: rgba(0,201,177,0.12);
  color: var(--teal);
  border-color: rgba(0,201,177,0.25);
}

.section-title {
  font-size: clamp(32px, 4vw, 52px);
  margin-bottom: 16px;
  background: linear-gradient(135deg, var(--white) 0%, var(--text-muted) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-title span {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-title span.teal {
  background: linear-gradient(135deg, var(--teal) 0%, #00F5D4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 60px;
  line-height: 1.7;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--navy);
  box-shadow: 0 4px 20px rgba(245,166,35,0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(245,166,35,0.5);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.2);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.4);
  transform: translateY(-2px);
}

.btn-teal {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  color: var(--navy);
  box-shadow: 0 4px 20px rgba(0,201,177,0.35);
}

.btn-teal:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,201,177,0.5);
}

/* ---- Card ---- */
.card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 32px;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

.card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(245,166,35,0.2);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 24px;
  transition: var(--transition);
}

.navbar.scrolled {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--card-border);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.navbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: var(--white);
}

.navbar-logo img {
  height: 42px;
  width: auto;
}

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

.navbar-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.navbar-links a {
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  transition: var(--transition);
}

.navbar-links a:hover,
.navbar-links a.active {
  color: var(--white);
  background: rgba(255,255,255,0.06);
}

.navbar-links a.active { color: var(--gold); }

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

.navbar-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  background: transparent;
  border: none;
}

.navbar-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 72px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 80% 60% at 20% 50%, rgba(0,201,177,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 80% 20%, rgba(245,166,35,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 50% 100%, rgba(10,22,40,0.8) 0%, transparent 60%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
  width: 100%;
}

.hero-left { animation: fadeInLeft 0.8s ease forwards; }
.hero-right { animation: fadeInRight 0.8s ease 0.2s forwards; opacity: 0; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border-radius: 50px;
  background: rgba(245,166,35,0.1);
  border: 1px solid rgba(245,166,35,0.3);
  color: var(--gold);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
}

.hero-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s ease infinite;
}

.hero-title {
  font-size: clamp(40px, 5vw, 68px);
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero-title .line1 { color: var(--white); display: block; }
.hero-title .line2 {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--teal) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}

.hero-desc {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 480px;
}

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

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-card-stack {
  position: relative;
  width: 340px;
  height: 400px;
}

.hero-income-card {
  position: absolute;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 24px;
  backdrop-filter: blur(10px);
  animation: float 6s ease-in-out infinite;
}

.hero-income-card:nth-child(1) {
  top: 0; left: 0; right: 60px;
  animation-delay: 0s;
  border-top: 2px solid var(--gold);
}

.hero-income-card:nth-child(2) {
  top: 80px; left: 40px; right: 0;
  animation-delay: 1s;
  border-top: 2px solid var(--teal);
}

.hero-income-card:nth-child(3) {
  top: 200px; left: 10px; right: 30px;
  animation-delay: 2s;
  border-top: 2px solid rgba(245,166,35,0.5);
}

.income-card-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.income-card-value {
  font-family: 'Poppins', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--gold);
}

.income-card-value.teal { color: var(--teal); }

.income-card-desc {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ============================================
   STATS BAR
   ============================================ */
.stats-bar {
  background: linear-gradient(135deg, var(--navy-light) 0%, var(--navy-mid) 100%);
  border-top: 1px solid var(--card-border);
  border-bottom: 1px solid var(--card-border);
  padding: 40px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-item {
  text-align: center;
  padding: 20px;
  border-right: 1px solid var(--card-border);
}

.stat-item:last-child { border-right: none; }

.stat-number {
  font-family: 'Poppins', sans-serif;
  font-size: 42px;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-number.teal { color: var(--teal); }

.stat-label {
  font-size: 13px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ============================================
   INCOME STREAMS OVERVIEW
   ============================================ */
.income-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.income-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.income-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--teal));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

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

.income-card:hover {
  background: rgba(255,255,255,0.06);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.income-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 20px;
  background: rgba(245,166,35,0.1);
  border: 1px solid rgba(245,166,35,0.2);
}

.income-icon.teal {
  background: rgba(0,201,177,0.1);
  border-color: rgba(0,201,177,0.2);
}

.income-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.income-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================
   WHY JOIN / FEATURES
   ============================================ */
.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.features-list { display: flex; flex-direction: column; gap: 24px; }

.feature-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px;
  border-radius: var(--radius);
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  transition: var(--transition);
}

.feature-item:hover {
  border-color: rgba(245,166,35,0.2);
  background: rgba(255,255,255,0.06);
}

.feature-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.feature-text h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}

.feature-text p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}

.features-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  padding: 40px;
  text-align: center;
}

.features-penguin {
  width: 200px;
  height: auto;
  margin: 0 auto 24px;
  display: block;
  animation: float 4s ease-in-out infinite;
}

/* ============================================
   COMMISSION TABLE / PLAN TABLE
   ============================================ */
.plan-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid var(--card-border);
}

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

.plan-table thead { background: rgba(245,166,35,0.08); }
.plan-table thead th {
  padding: 16px 20px;
  text-align: left;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--gold);
  border-bottom: 1px solid var(--card-border);
  white-space: nowrap;
}

.plan-table tbody tr { transition: var(--transition); }

.plan-table tbody tr:hover { background: rgba(255,255,255,0.04); }

.plan-table tbody td {
  padding: 14px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  color: var(--text);
  white-space: nowrap;
}

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

.td-highlight { color: var(--gold); font-weight: 600; }
.td-teal { color: var(--teal); font-weight: 600; }
.td-rank {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.rank-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* ============================================
   RANKING CARDS
   ============================================ */
.ranking-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

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

.rank-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.rank-card.gold {
  border-color: rgba(245,166,35,0.3);
  background: linear-gradient(135deg, rgba(245,166,35,0.05) 0%, var(--card-bg) 100%);
}

.rank-card.teal {
  border-color: rgba(0,201,177,0.3);
  background: linear-gradient(135deg, rgba(0,201,177,0.05) 0%, var(--card-bg) 100%);
}

.rank-card.silver {
  border-color: rgba(192,192,210,0.3);
  background: linear-gradient(135deg, rgba(192,192,210,0.05) 0%, var(--card-bg) 100%);
}

.rank-card.purple {
  border-color: rgba(168,85,247,0.3);
  background: linear-gradient(135deg, rgba(168,85,247,0.05) 0%, var(--card-bg) 100%);
}

.rank-trophy {
  font-size: 42px;
  margin-bottom: 12px;
}

.rank-title {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.rank-amount {
  font-family: 'Poppins', sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 4px;
}

.rank-amount.teal { color: var(--teal); }

.rank-desc {
  font-size: 13px;
  color: var(--text-muted);
}

/* ============================================
   BONUS / INCOME PLAN SECTIONS
   ============================================ */
.bonus-section {
  background: var(--navy-light);
}

.bonus-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.bonus-info h2 {
  font-size: clamp(28px, 3vw, 42px);
  margin-bottom: 16px;
}

.bonus-info p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
}

.bonus-points { display: flex; flex-direction: column; gap: 16px; }

.bonus-point {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  background: var(--card-bg);
  border: 1px solid var(--card-border);
}

.bonus-point-icon {
  font-size: 22px;
  min-width: 36px;
}

.bonus-point-text h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}

.bonus-point-text p {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0;
}

/* ============================================
   ROYALTY INCOME
   ============================================ */
.royalty-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.royalty-card {
  border-radius: var(--radius);
  padding: 30px 24px;
  text-align: center;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.royalty-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--teal));
}

.royalty-card:hover {
  transform: translateY(-4px);
  border-color: rgba(245,166,35,0.25);
}

.royalty-level {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.royalty-percent {
  font-family: 'Poppins', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}

.royalty-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
}

.royalty-cond {
  font-size: 12px;
  color: var(--text-muted);
}

/* ============================================
   TRAVEL / REWARDS
   ============================================ */
.travel-hero {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, rgba(0,201,177,0.1), rgba(245,166,35,0.1));
  border: 1px solid var(--card-border);
  padding: 60px 40px;
  text-align: center;
  position: relative;
}

.travel-hero::before {
  content: '✈️';
  position: absolute;
  font-size: 200px;
  opacity: 0.04;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.travel-hero h2 {
  font-size: clamp(32px, 4vw, 52px);
  margin-bottom: 16px;
}

.travel-hero p {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 32px;
}

.rewards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 60px;
}

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

.reward-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold);
}

.reward-card-top {
  padding: 32px 28px 28px;
  background: linear-gradient(135deg, rgba(245,166,35,0.08), rgba(0,201,177,0.05));
  border-bottom: 1px solid var(--card-border);
  text-align: center;
}

.reward-emoji { font-size: 52px; margin-bottom: 12px; }

.reward-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.reward-card-body { padding: 24px 28px; }

.reward-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.reward-tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  background: rgba(245,166,35,0.12);
  color: var(--gold);
  border: 1px solid rgba(245,166,35,0.2);
}

/* ============================================
   FOUNDER SECTION
   ============================================ */
.founder-section {
  background: linear-gradient(135deg, rgba(245,166,35,0.06) 0%, rgba(0,201,177,0.04) 100%);
  border-top: 1px solid var(--card-border);
  border-bottom: 1px solid var(--card-border);
}

.founder-card {
  max-width: 800px;
  margin: 0 auto;
  background: var(--card-bg);
  border: 2px solid rgba(245,166,35,0.3);
  border-radius: var(--radius-lg);
  padding: 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.founder-card::before {
  content: 'LIMITED OFFER';
  position: absolute;
  top: 20px; right: -30px;
  background: var(--gold);
  color: var(--navy);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 8px 40px;
  transform: rotate(45deg);
}

.founder-crown { font-size: 64px; margin-bottom: 16px; }

.founder-card h2 {
  font-size: clamp(28px, 3vw, 42px);
  margin-bottom: 16px;
}

.founder-card p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 32px;
}

.founder-benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 40px;
  text-align: left;
}

.founder-benefit {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text);
}

.founder-benefit::before {
  content: '✓';
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(245,166,35,0.15);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}

/* ============================================
   JOIN FORM
   ============================================ */
.join-section {
  background: var(--navy-light);
}

.join-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.join-info h2 {
  font-size: clamp(28px, 3vw, 44px);
  margin-bottom: 16px;
}

.join-info p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 32px;
}

.contact-items { display: flex; flex-direction: column; gap: 20px; }

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(245,166,35,0.1);
  border: 1px solid rgba(245,166,35,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.contact-detail h4 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.contact-detail p {
  font-size: 15px;
  color: var(--white);
  font-weight: 500;
}

/* Form */
.join-form-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
}

.join-form-card h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 32px;
  color: var(--white);
}

.form-group { margin-bottom: 20px; }

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-size: 15px;
  font-family: 'Inter', sans-serif;
  transition: var(--transition);
  outline: none;
}

.form-control::placeholder { color: var(--text-muted); }

.form-control:focus {
  border-color: rgba(245,166,35,0.4);
  background: rgba(255,255,255,0.06);
  box-shadow: 0 0 0 3px rgba(245,166,35,0.08);
}

select.form-control option { background: var(--navy-mid); color: var(--text); }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  text-align: center;
  background: linear-gradient(135deg, var(--navy-mid) 0%, var(--navy) 100%);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(245,166,35,0.06) 0%, transparent 70%);
  border-radius: 50%;
}

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

.cta-section h2 {
  font-size: clamp(32px, 4vw, 54px);
  margin-bottom: 16px;
}

.cta-section p {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 40px;
}

.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============================================
   REFERRAL CHALLENGE
   ============================================ */
.challenge-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0;
  position: relative;
}

.challenge-steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--teal));
  z-index: 0;
}

.challenge-step {
  text-align: center;
  padding: 20px;
  position: relative;
  z-index: 1;
}

.step-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy);
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 0 0 4px rgba(245,166,35,0.15), 0 0 0 8px rgba(245,166,35,0.05);
}

.step-circle.teal {
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  box-shadow: 0 0 0 4px rgba(0,201,177,0.15), 0 0 0 8px rgba(0,201,177,0.05);
}

.challenge-step h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}

.challenge-step p {
  font-size: 13px;
  color: var(--text-muted);
}

/* ============================================
   PAGE HERO (inner pages)
   ============================================ */
.page-hero {
  padding: 140px 0 80px;
  text-align: center;
  background: linear-gradient(180deg, var(--navy-light) 0%, var(--navy) 100%);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: 
    linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
  background-size: 60px 60px;
}

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

.page-hero h1 {
  font-size: clamp(36px, 5vw, 60px);
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
  justify-content: center;
  margin-bottom: 24px;
}

.breadcrumb a { color: var(--text-muted); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--gold); }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--navy-light);
  border-top: 1px solid var(--card-border);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand { }

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-logo img { height: 36px; }

.footer-logo-text {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
}

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

.footer-brand p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 260px;
  margin-bottom: 24px;
}

.social-links { display: flex; gap: 10px; }

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: var(--transition);
}

.social-link:hover {
  background: rgba(245,166,35,0.1);
  border-color: rgba(245,166,35,0.3);
  transform: translateY(-2px);
}

.footer-col h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.footer-col ul { display: flex; flex-direction: column; gap: 10px; }

.footer-col ul li a {
  font-size: 14px;
  color: var(--text-muted);
  transition: color 0.2s;
}

.footer-col ul li a:hover { color: var(--gold); }

.footer-bottom {
  padding: 24px 0;
  border-top: 1px solid var(--card-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom p {
  font-size: 13px;
  color: var(--text-muted);
}

.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a {
  font-size: 13px;
  color: var(--text-muted);
  transition: color 0.2s;
}

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

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

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

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.2); }
}

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

.animate-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-up:nth-child(2) { transition-delay: 0.1s; }
.animate-up:nth-child(3) { transition-delay: 0.2s; }
.animate-up:nth-child(4) { transition-delay: 0.3s; }
.animate-up:nth-child(5) { transition-delay: 0.4s; }
.animate-up:nth-child(6) { transition-delay: 0.5s; }

/* ============================================
   MOBILE NAV
   ============================================ */

/* Hidden on desktop by default */
.navbar-mobile { display: none; }

/* Hamburger → X animation */
.navbar-toggle span {
  transform-origin: center;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.navbar-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.navbar-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.navbar-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 768px) {
  .navbar-links,
  .navbar-cta { display: none; }
  .navbar-toggle { display: flex; }

  .navbar-mobile {
    display: none;
    position: absolute;
    top: 72px;
    left: 0; right: 0;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--card-border);
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
    padding: 16px 24px 28px;
    flex-direction: column;
    gap: 4px;
    animation: slideDown 0.25s ease forwards;
  }

  @keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  .navbar-mobile.open { display: flex; }

  .navbar-mobile a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 13px 16px;
    border-radius: var(--radius-sm);
    color: var(--text);
    font-size: 15px;
    font-weight: 500;
    transition: var(--transition);
    border: 1px solid transparent;
  }

  .navbar-mobile a:hover {
    background: rgba(255,255,255,0.06);
    color: var(--gold);
    border-color: rgba(245,166,35,0.15);
  }

  .navbar-mobile a.active {
    color: var(--gold);
    background: rgba(245,166,35,0.08);
    border-color: rgba(245,166,35,0.2);
  }

  .navbar-mobile .btn {
    width: 100%;
    justify-content: center;
    margin-top: 12px;
    border-radius: var(--radius-sm);
  }

  .hero-content { grid-template-columns: 1fr; gap: 40px; }
  .hero-right { display: none; }
  
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: 1px solid var(--card-border); }
  .stat-item:nth-child(even):last-child { border-right: none; }

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

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

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

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }

  .founder-benefits { grid-template-columns: 1fr; }
  .founder-card { padding: 40px 24px; }

  .form-row { grid-template-columns: 1fr; }

  .challenge-steps::before { display: none; }

  .plan-table thead th,
  .plan-table tbody td { padding: 12px 14px; }
}

@media (max-width: 480px) {
  .section { padding: 70px 0; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .ranking-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================
   DIVIDER
   ============================================ */
.divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--teal));
  border-radius: 2px;
  margin: 0 auto 20px;
}

.divider.left { margin: 0 0 20px; }

/* scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  z-index: 2;
  animation: fadeInUp 1s ease 1s forwards;
  opacity: 0;
}

.scroll-mouse {
  width: 24px;
  height: 38px;
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: 12px;
  position: relative;
}

.scroll-mouse::before {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: var(--gold);
  border-radius: 2px;
  animation: scroll-bounce 2s ease infinite;
}

@keyframes scroll-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
  80% { transform: translateX(-50%) translateY(12px); opacity: 0; }
}

/* ============================================
   SUCCESS MESSAGE
   ============================================ */
.alert-success {
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  background: rgba(0,201,177,0.1);
  border: 1px solid rgba(0,201,177,0.25);
  color: var(--teal);
  font-size: 15px;
  margin-bottom: 20px;
  display: none;
}

.alert-success.show { display: block; }

/* ============================================
   LEGAL PAGES (Terms, Privacy, Disclaimer)
   ============================================ */

/* ---- Hero ---- */
.legal-hero {
  position: relative;
  padding: 140px 0 80px;
  overflow: hidden;
  text-align: center;
}

.legal-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 30% 40%, rgba(245,166,35,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 60% 70% at 70% 60%, rgba(0,201,177,0.07) 0%, transparent 60%);
}

/* Always-visible page title for legal pages (avoids background-clip:text rendering issues) */
.legal-page-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 16px;
}

.legal-page-title span {
  color: var(--gold);
}

.legal-hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  margin: 0 auto;
}

.legal-icon {
  font-size: 52px;
  margin-bottom: 20px;
  animation: float 4s ease-in-out infinite;
  display: block;
}

.legal-hero-sub {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-top: 16px;
}

.legal-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.legal-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-muted);
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  padding: 6px 14px;
  border-radius: 50px;
}

/* ---- Breadcrumb ---- */
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.breadcrumb a {
  color: var(--gold);
  transition: var(--transition);
}
.breadcrumb a:hover { opacity: 0.8; }
.breadcrumb span { color: var(--text-muted); }

/* ---- Section Layout ---- */
.legal-section { padding-top: 20px; }

.legal-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 48px;
  align-items: start;
}

/* ---- Table of Contents (Sidebar) ---- */
.legal-toc {
  position: sticky;
  top: 96px;
}

.toc-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 28px 24px;
  backdrop-filter: blur(10px);
}

.toc-card h3 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--card-border);
}

.toc-card ul { display: flex; flex-direction: column; gap: 2px; }

.toc-card ul li a {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
  padding: 7px 10px;
  border-radius: 6px;
  transition: var(--transition);
  line-height: 1.4;
}

.toc-card ul li a:hover {
  color: var(--gold);
  background: rgba(245,166,35,0.08);
}

/* ---- Content Blocks ---- */
.legal-content { display: flex; flex-direction: column; gap: 0; }

.legal-block {
  padding: 40px 0;
  border-bottom: 1px solid var(--card-border);
}

.legal-block:last-child { border-bottom: none; }

.legal-block h2 {
  font-size: 22px;
  color: var(--white);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.legal-block h4 {
  font-size: 15px;
  color: var(--gold);
  margin: 20px 0 10px;
  font-family: 'Poppins', sans-serif;
}

.legal-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
  font-family: 'Poppins', sans-serif;
}

.legal-block p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 14px;
}

.legal-block p strong { color: var(--text); }

.legal-block p:last-child { margin-bottom: 0; }

/* ---- Legal List ---- */
.legal-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 14px 0;
}

.legal-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
  padding-left: 4px;
}

.legal-list li::before {
  content: '›';
  color: var(--gold);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  flex-shrink: 0;
}

.legal-list li strong { color: var(--text); }

/* ---- Notice / Callout Boxes ---- */
.legal-notice {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 20px;
  border-radius: var(--radius-sm);
  margin: 20px 0;
}

.legal-notice > span {
  font-size: 22px;
  flex-shrink: 0;
  line-height: 1;
  margin-top: 2px;
}

.legal-notice p {
  font-size: 14px;
  line-height: 1.65;
  margin: 0;
}

.notice-gold {
  background: rgba(245,166,35,0.07);
  border: 1px solid rgba(245,166,35,0.2);
}
.notice-gold p { color: var(--gold-light); }

.notice-teal {
  background: rgba(0,201,177,0.07);
  border: 1px solid rgba(0,201,177,0.2);
}
.notice-teal p { color: var(--teal); }

/* ---- Contact Grid ---- */
.legal-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 20px;
}

.legal-contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-sm);
}

.legal-contact-item > span { font-size: 24px; }

.legal-contact-item strong {
  display: block;
  font-size: 14px;
  color: var(--white);
  margin-bottom: 4px;
}

.legal-contact-item p {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0;
}

/* ---- Disclaimer Banner ---- */
.disclaimer-banner {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 28px;
  background: linear-gradient(135deg, rgba(245,166,35,0.1), rgba(245,166,35,0.05));
  border: 1px solid rgba(245,166,35,0.3);
  border-radius: var(--radius);
  margin-bottom: 12px;
}

.disclaimer-banner-icon { font-size: 32px; flex-shrink: 0; margin-top: 2px; }

.disclaimer-banner strong {
  display: block;
  font-size: 16px;
  color: var(--gold);
  margin-bottom: 6px;
  font-family: 'Poppins', sans-serif;
}

.disclaimer-banner p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .legal-layout {
    grid-template-columns: 1fr;
  }
  .legal-toc { position: static; }
  .toc-card { padding: 20px; }
}

@media (max-width: 600px) {
  .legal-hero { padding: 120px 0 60px; }
  .legal-contact-grid { grid-template-columns: 1fr; }
  .legal-block h2 { font-size: 19px; }
  .disclaimer-banner { flex-direction: column; gap: 12px; }
  .legal-meta { gap: 10px; }
}
