/* ==========================================================
   TIP TOP AUSTRALIA — Global Design System
   Brand: Pink #00D68D | Gold #F5C518 | Dark Navy #0D0D0D
   ========================================================== */

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

/* ── CSS Variables ── */
:root {
  --green:        #00D68D;
  --green-light:  #00F0A0;
  --green-dark:   #00A86B;
  --gold:        #F5C518;
  --gold-light:  #FFD84D;
  --gold-dark:   #C9A00E;
  --navy:        #0D0D0D;
  --navy-2:      #111111;
  --navy-3:      #161616;
  --navy-4:      #1E1E1E;
  --white:       #FFFFFF;
  --off-white:   #F0F0F0;
  --text-muted:  #999999;
  --text-light:  #CCCCCC;
  --success:     #22C55E;
  --danger:      #EF4444;
  --border:      rgba(0,214,141,0.2);
  --border-gold: rgba(245,197,24,0.25);

  --grad-green:   linear-gradient(135deg, #00D68D 0%, #00F0A0 100%);
  --grad-gold:   linear-gradient(135deg, #C9A00E 0%, #F5C518 50%, #FFD84D 100%);
  --grad-hero:   linear-gradient(135deg, #0D0D0D 0%, #0D1A12 50%, #0D1A0D 100%);
  --grad-card:   linear-gradient(145deg, rgba(13,26,18,0.9) 0%, rgba(10,20,14,0.95) 100%);
  --grad-glow:   radial-gradient(circle at 50% 0%, rgba(0,214,141,0.2) 0%, transparent 70%);

  --radius-xs:   6px;
  --radius-sm:   10px;
  --radius-md:   16px;
  --radius-lg:   24px;
  --radius-xl:   36px;
  --radius-full: 999px;

  --shadow-sm:   0 2px 8px rgba(0,0,0,0.4);
  --shadow-md:   0 4px 20px rgba(0,0,0,0.5);
  --shadow-lg:   0 8px 40px rgba(0,0,0,0.6);
  --shadow-green: 0 4px 24px rgba(0,214,141,0.4);
  --shadow-gold: 0 4px 24px rgba(245,197,24,0.3);

  --max-w:       1240px;
  --header-h:    96px;
  --transition:  0.25s ease;
  --transition-slow: 0.4s ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', 'Outfit', sans-serif;
  background: var(--navy);
  color: var(--white);
  line-height: 1.65;
  min-height: 100vh;
  overflow-x: hidden;
}

/* ── Typography ── */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.2rem; }
h5 { font-size: 1rem; }

p { color: var(--text-light); margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

a { color: var(--green); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--green-light); }

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

ul, ol { padding-left: 1.5rem; }
li { color: var(--text-light); margin-bottom: 0.4rem; }

strong { color: var(--white); font-weight: 600; }

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

section { padding: 80px 0; }
.section-sm { padding: 48px 0; }
.section-lg { padding: 120px 0; }

/* ── Glow BG Layer ── */
.page-glow {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 600px;
  background: var(--grad-glow);
  pointer-events: none;
  z-index: 0;
}

/* ================================================================
   HEADER
================================================================ */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  background: rgba(13,13,26,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  transition: background var(--transition);
}

#site-header.scrolled {
  background: rgba(13,13,26,0.98);
  box-shadow: 0 2px 20px rgba(0,214,141,0.15);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  gap: 24px;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.site-logo img {
  height: 88px;
  width: auto;
}

/* Main Nav */
.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.main-nav li a {
  color: var(--text-light);
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  white-space: nowrap;
}

.main-nav li a:hover,
.main-nav li a.active {
  color: var(--white);
  background: rgba(0,214,141,0.12);
}

/* Header CTAs */
.header-ctas {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  border: none;
  background: none;
}

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

/* Mobile Nav Overlay */
.mobile-nav {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  background: #0D0D1A;
  z-index: 99999;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  display: flex;
  flex-direction: column;
  padding: 28px 24px;
  overflow-y: auto;
  /* Isolation to avoid any stacking context issues */
  isolation: isolate;
  will-change: transform;
}

.mobile-nav.open { transform: translateX(0); }

.mobile-nav-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}

.mobile-nav-close {
  background: rgba(0,214,141,0.15);
  border: 1px solid var(--border);
  color: var(--white);
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-nav-links {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-nav-links li a {
  display: block;
  color: var(--text-light);
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  border: 1px solid transparent;
}

.mobile-nav-links li a:hover {
  color: var(--white);
  background: rgba(0,214,141,0.1);
  border-color: var(--border);
}

.mobile-cta-area {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ================================================================
   BUTTONS
================================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 11px 22px;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--grad-green);
  color: var(--white);
  box-shadow: var(--shadow-green);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(0,214,141,0.5);
  color: var(--white);
}

.btn-gold {
  background: var(--grad-gold);
  color: var(--navy);
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(245,197,24,0.4);
  color: var(--navy);
}

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

.btn-outline:hover {
  background: rgba(0,214,141,0.1);
  color: var(--green-light);
}

.btn-ghost {
  background: rgba(255,255,255,0.06);
  color: var(--text-light);
  border: 1px solid rgba(255,255,255,0.1);
}

.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  color: var(--white);
}

.btn-lg {
  font-size: 1.05rem;
  padding: 14px 32px;
}

.btn-sm {
  font-size: 0.82rem;
  padding: 8px 16px;
}

.btn-block { width: 100%; }

/* ================================================================
   CARDS
================================================================ */
.card {
  background: var(--grad-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all var(--transition-slow);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--grad-green);
  opacity: 0;
  transition: opacity var(--transition);
}

.card:hover::before { opacity: 1; }

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(0,214,141,0.35);
  box-shadow: 0 12px 40px rgba(0,214,141,0.15);
}

.card-gold {
  border-color: var(--border-gold);
}

.card-gold::before {
  background: var(--grad-gold);
}

.card-gold:hover {
  border-color: rgba(245,197,24,0.4);
  box-shadow: 0 12px 40px rgba(245,197,24,0.12);
}

/* Feature Icon Card */
.icon-card {
  text-align: center;
  padding: 36px 24px;
}

.icon-card .card-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  background: rgba(0,214,141,0.12);
  border: 1px solid rgba(0,214,141,0.25);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  transition: all var(--transition);
}

.icon-card:hover .card-icon {
  background: rgba(0,214,141,0.2);
  box-shadow: 0 0 24px rgba(0,214,141,0.3);
}

.icon-card h3 { font-size: 1.1rem; margin-bottom: 10px; }

/* Stat Card */
.stat-card {
  text-align: center;
  padding: 32px 20px;
}

.stat-value {
  font-family: 'Outfit', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  background: var(--grad-green);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-value.gold {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
}

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

/* ================================================================
   SECTION HEADINGS
================================================================ */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0,214,141,0.1);
  border: 1px solid rgba(0,214,141,0.25);
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 5px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}

.section-tag.gold {
  background: rgba(245,197,24,0.1);
  border-color: rgba(245,197,24,0.3);
  color: var(--gold);
}

.section-header h2 {
  margin-bottom: 16px;
}

.section-header p {
  max-width: 600px;
  margin: 0 auto;
  color: var(--text-muted);
}

.text-gradient {
  background: var(--grad-green);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gradient-gold {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ================================================================
   GRIDS
================================================================ */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }

/* ================================================================
   BADGES & TAGS
================================================================ */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.badge-pink { background: rgba(0,214,141,0.15); color: var(--green); border: 1px solid rgba(0,214,141,0.3); }
.badge-gold { background: rgba(245,197,24,0.12); color: var(--gold); border: 1px solid rgba(245,197,24,0.3); }
.badge-green { background: rgba(34,197,94,0.12); color: #4ADE80; border: 1px solid rgba(34,197,94,0.3); }

/* ================================================================
   TABLES
================================================================ */
.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

thead tr {
  background: rgba(0,214,141,0.1);
}

thead th {
  padding: 14px 16px;
  text-align: left;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--green);
  white-space: nowrap;
}

tbody tr {
  border-top: 1px solid rgba(255,255,255,0.05);
  transition: background var(--transition);
}

tbody tr:hover {
  background: rgba(0,214,141,0.04);
}

tbody td {
  padding: 13px 16px;
  color: var(--text-light);
  vertical-align: middle;
}

tbody td:first-child {
  color: var(--white);
  font-weight: 500;
}

.table-gold thead tr { background: rgba(245,197,24,0.08); }
.table-gold thead th { color: var(--gold); }

/* ================================================================
   PROGRESS BARS / RATING BARS
================================================================ */
.rating-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.rating-bar-label {
  font-size: 0.85rem;
  color: var(--text-light);
  min-width: 120px;
}

.rating-bar-track {
  flex: 1;
  height: 8px;
  background: rgba(255,255,255,0.07);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.rating-bar-fill {
  height: 100%;
  background: var(--grad-green);
  border-radius: var(--radius-full);
  width: 0%;
  transition: width 1.2s ease;
}

.rating-bar-fill.gold { background: var(--grad-gold); }

.rating-bar-value {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
  min-width: 36px;
  text-align: right;
}

/* ================================================================
   HERO SECTIONS
================================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--header-h);
  background: var(--grad-hero);
}

.hero > .container { width: 100%; }


.hero-bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  object-position: center right;
  width: 100%;
  height: 100%;
  opacity: 0.35;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(13,13,26,1) 40%, rgba(13,13,26,0.3) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  margin-right: auto;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,214,141,0.12);
  border: 1px solid rgba(0,214,141,0.3);
  color: var(--green);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 24px;
}

.hero h1 {
  margin-bottom: 24px;
  font-size: clamp(2.2rem, 5.5vw, 3.75rem);
  font-weight: 800;
}

.hero-subtitle {
  font-size: 1.05rem;
  color: var(--text-light);
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 48px;
}

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

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

.hero-stat-value {
  font-family: 'Outfit', sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}

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

/* ================================================================
   BONUS SHOWCASE CARD
================================================================ */
.bonus-hero-card {
  background: linear-gradient(135deg, rgba(245,197,24,0.08) 0%, rgba(0,214,141,0.08) 100%);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-xl);
  padding: 40px 36px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.bonus-hero-card::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(245,197,24,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.bonus-amount {
  font-family: 'Outfit', sans-serif;
  font-size: 3.5rem;
  font-weight: 900;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 4px;
}

.bonus-subtitle {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

/* ================================================================
   STEP CARDS
================================================================ */
.step-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px;
}

.step-number {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--grad-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--white);
  box-shadow: var(--shadow-green);
}

.step-number.gold { background: var(--grad-gold); color: var(--navy); box-shadow: var(--shadow-gold); }

.step-content h4 { margin-bottom: 6px; font-size: 1rem; }
.step-content p { font-size: 0.88rem; margin: 0; }

/* ================================================================
   PAYMENT ICONS
================================================================ */
.payment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  gap: 12px;
}

.payment-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  padding: 14px 10px;
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-muted);
  transition: all var(--transition);
}

.payment-item:hover {
  border-color: var(--border);
  background: rgba(0,214,141,0.05);
  color: var(--white);
}

.payment-item .pi { font-size: 1.5rem; display: block; margin-bottom: 6px; }

/* ================================================================
   FAQ ACCORDION
================================================================ */
.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--white);
  gap: 16px;
  user-select: none;
}

.faq-toggle {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: rgba(0,214,141,0.1);
  border: 1px solid var(--border);
  border-radius: var(--radius-xs);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--green);
  transition: all var(--transition);
}

.faq-item.open .faq-toggle {
  background: var(--green);
  color: var(--white);
  transform: rotate(45deg);
}

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

.faq-answer-inner {
  padding: 0 0 18px;
  color: var(--text-light);
  font-size: 0.92rem;
  line-height: 1.7;
}

.faq-item.open .faq-answer { max-height: 400px; }

/* ================================================================
   AUTHOR BOX
================================================================ */
.author-box {
  background: var(--grad-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.author-avatar {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: var(--radius-full);
  overflow: hidden;
  border: 2px solid var(--green);
}

.author-avatar img { width: 100%; height: 100%; object-fit: cover; }

.author-meta h4 { font-size: 1.05rem; margin-bottom: 2px; }
.author-role { font-size: 0.8rem; color: var(--green); font-weight: 500; margin-bottom: 10px; }
.author-bio { font-size: 0.87rem; color: var(--text-muted); margin: 0; line-height: 1.6; }

/* ================================================================
   BREADCRUMBS
================================================================ */
.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-muted);
  padding: calc(var(--header-h) + 20px) 0 0;
  margin-bottom: 32px;
}

.breadcrumbs a { color: var(--text-muted); }
.breadcrumbs a:hover { color: var(--green); }
.breadcrumbs span { color: var(--green); }

/* ================================================================
   FORMS
================================================================ */
.form-group { margin-bottom: 20px; }

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-light);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 0.95rem;
  color: var(--white);
  font-family: 'Inter', sans-serif;
  transition: all var(--transition);
  outline: none;
}

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

.form-control:focus {
  border-color: var(--green);
  background: rgba(0,214,141,0.05);
  box-shadow: 0 0 0 3px rgba(0,214,141,0.12);
}

.form-box {
  background: var(--grad-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px 36px;
  max-width: 480px;
  width: 100%;
}

/* ================================================================
   CHIPS / FEATURE LIST
================================================================ */
.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--text-light);
  font-size: 0.93rem;
}

.feature-list .fi {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(0,214,141,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: var(--green);
  margin-top: 2px;
}

/* ================================================================
   CHART / VISUAL ELEMENTS
================================================================ */
.donut-wrap {
  position: relative;
  width: 200px;
  height: 200px;
  margin: 0 auto;
}

.donut-wrap canvas { width: 100% !important; height: 100% !important; }

.donut-label {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.donut-label .val {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
}

.donut-label .lbl {
  font-size: 0.72rem;
  color: var(--text-muted);
}

/* ================================================================
   CTA BANNER
================================================================ */
.cta-banner {
  background: linear-gradient(135deg, rgba(0,214,141,0.15) 0%, rgba(13,13,26,0.95) 50%, rgba(245,197,24,0.08) 100%);
  border: 1px solid rgba(0,214,141,0.25);
  border-radius: var(--radius-xl);
  padding: 64px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -80px; left: 50%;
  transform: translateX(-50%);
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(0,214,141,0.2) 0%, transparent 70%);
  pointer-events: none;
}

.cta-banner h2 { margin-bottom: 16px; }
.cta-banner p { max-width: 520px; margin: 0 auto 32px; }

/* ================================================================
   FOOTER
================================================================ */
#site-footer {
  background: #08080F;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 60px 0 32px;
}

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

.footer-brand .site-logo { margin-bottom: 16px; }
.footer-brand p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.7; max-width: 280px; }

.footer-col h5 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 18px;
  font-weight: 600;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  color: var(--text-muted);
  font-size: 0.87rem;
  transition: color var(--transition);
}

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

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-legal {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 640px;
}

.footer-badges {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.footer-badge {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-xs);
  padding: 6px 12px;
  font-size: 0.72rem;
  color: var(--text-muted);
}

/* ================================================================
   SECTION DIVIDERS & DECORATIONS
================================================================ */
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,214,141,0.3), transparent);
  margin: 0;
}

.glow-dot {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
  margin-right: 8px;
}
.glow-dot.gold { background: var(--gold); box-shadow: 0 0 8px var(--gold); }

/* ================================================================
   ANIMATIONS
================================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

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

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

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

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 20px rgba(0,214,141,0.4); }
  50% { box-shadow: 0 0 40px rgba(0,214,141,0.7); }
}

@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

.float-anim { animation: float 4s ease-in-out infinite; }
.pulse-glow { animation: pulse-glow 2.5s ease-in-out infinite; }

/* ================================================================
   UTILITY CLASSES
================================================================ */
.text-center { text-align: center; }
.text-pink { color: var(--green); }
.text-gold { color: var(--gold); }
.text-muted { color: var(--text-muted); }
.text-white { color: var(--white); }

.mb-0 { margin-bottom: 0; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.mb-64 { margin-bottom: 64px; }

.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }

.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-wrap { flex-wrap: wrap; }
.gap-8 { gap: 8px; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.gap-32 { gap: 32px; }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ================================================================
   RESPONSIVE
================================================================ */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --header-h: 64px; }
  section { padding: 56px 0; }
  
  .main-nav, .header-ctas { display: none; }
  .hamburger { display: flex; }
  
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  
  .hero { min-height: calc(100svh - var(--header-h)); padding-top: var(--header-h); }
  .hero-content { max-width: 100%; }
  
  .cta-banner { padding: 40px 24px; }
  .form-box { padding: 28px 20px; }
  
  .hero-stats { gap: 20px; }
  .author-box { flex-direction: column; }
  
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  h1 { font-size: clamp(1.8rem, 6vw, 2.5rem); }
  h2 { font-size: clamp(1.4rem, 4vw, 2rem); }

  .bonus-amount { font-size: 2.5rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .btn-lg { padding: 12px 22px; font-size: 0.95rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { text-align: center; }
}
