/* CSS Variables */
:root {
  --clr-primary: #6a4fff;
  --clr-accent: #ff3d8a;
  --clr-bg: #0a0818;
  --clr-surface: #13102b;
  --clr-surface2: #1e1a3d;
  --clr-text-body: #e8e4ff;
  --clr-text-muted: #8a85b8;
  --clr-success: #22d48f;
  --clr-border: #2e2855;
  --clr-gradient: linear-gradient(135deg, #6a4fff 0%, #ff3d8a 100%);

  --font-display: "Barlow Condensed", sans-serif;
  --font-body: "DM Sans", sans-serif;
  --font-ui: "Rajdhani", sans-serif;

  --transition: all 0.3s ease;
  --nav-height: 76px;
}

/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--clr-bg);
  color: var(--clr-text-body);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"><filter id="noiseFilter"><feTurbulence type="fractalNoise" baseFrequency="0.65" numOctaves="3" stitchTiles="stitch"/></filter><rect width="100%" height="100%" filter="url(%23noiseFilter)" opacity="0.03"/></svg>');
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

/* Typography */
h1,
h2,
h3 {
  font-family: var(--font-display);
  text-transform: uppercase;
}

.h2-wrap {
  margin-bottom: 24px;
  position: relative;
}

.h2-wrap.center {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 40px;
}

.h2-title {
  font-size: 44px;
  font-weight: 700;
  color: var(--clr-text-body);
  margin-bottom: 8px;
  text-align: left;
}

.h2-title.italic {
  font-style: italic;
}

.center .h2-title {
  text-align: center;
}

.h2-accent {
  height: 4px;
  width: 40px;
  background: var(--clr-gradient);
  margin-bottom: 16px;
  border-radius: 2px;
}

.h2-subtitle {
  font-size: 18px;
  color: var(--clr-text-muted);
  max-width: 600px;
  margin-inline: auto;
}

/* Layout */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-pad {
  padding: 80px 0;
}

.bg-surface {
  background-color: var(--clr-surface);
}

/* Components */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: var(--transition);
  border-radius: 50px;
}

.btn-primary {
  background: var(--clr-gradient);
  color: #fff;
  border: none;
  box-shadow: 0 4px 15px rgba(106, 79, 255, 0.4);
}

.btn-primary:hover {
  filter: brightness(1.15);
  transform: scale(1.02);
  box-shadow: 0 6px 20px rgba(255, 61, 138, 0.5);
}

.btn-outline {
  background: transparent;
  color: var(--clr-text-body);
  border: 1px solid var(--clr-primary);
  border-radius: 8px;
}

.btn-outline:hover {
  background: var(--clr-gradient);
  border-color: transparent;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  padding: 20px 0;
  transition: var(--transition);
  background: transparent;
  height: var(--nav-height);
  display: flex;
  align-items: center;
}

.navbar.scrolled {
  background: var(--clr-bg);
  border-bottom: 1px solid var(--clr-border);
  box-shadow: 0 4px 20px rgba(10, 8, 24, 0.8);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.logo {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 1px;
  z-index: 101;
}
.logo span {
  color: var(--clr-primary);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
  flex: 1;
  justify-content: flex-end;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-link {
  font-weight: 500;
  color: var(--clr-text-body);
  transition: color 0.3s;
}

.nav-link:hover {
  color: var(--clr-accent);
}

.nav-actions {
  display: flex;
  gap: 16px;
  align-items: center;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  z-index: 101;
}

/* S1: Page Hero (Center Aligned) */
.page-hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: var(--nav-height);
  text-align: center;
  padding: 80px 0;
}

.page-hero-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.page-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 8, 24, 0.7);
  z-index: -1;
}

.page-hero-content {
  max-width: 800px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-hero h1 {
  font-size: 64px;
  font-weight: 800;
  font-style: italic;
  line-height: 1.1;
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 18px;
  color: var(--clr-text-muted);
  margin-bottom: 32px;
  max-width: 640px;
}

.page-hero .btn {
  min-width: 220px;
}

/* S2: Bonus Highlight Strip */
.highlight-strip {
  background: var(--clr-surface);
  padding: 32px 0;
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
}

.highlight-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
}

.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  flex: 1;
}

.highlight-icon {
  width: 32px;
  height: 32px;
  background: rgba(34, 212, 143, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.highlight-icon svg {
  color: var(--clr-success);
}

.highlight-text h4 {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  color: var(--clr-text-body);
  margin-bottom: 4px;
}

.highlight-text p {
  font-size: 14px;
  color: var(--clr-text-muted);
}

.highlight-divider {
  width: 1px;
  height: 60px;
  background: var(--clr-border);
}

/* S3 & S5: Split Sections */
.split-section {
  display: grid;
  gap: 60px;
  align-items: center;
}

.split-text-left {
  grid-template-columns: 55% 1fr;
}

.split-img-left {
  grid-template-columns: 42% 1fr;
}

.split-content p {
  font-size: 16px;
  color: var(--clr-text-muted);
  margin-bottom: 24px;
  max-width: 560px;
}

.split-image {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  aspect-ratio: 4/3;
}

.split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.split-image:hover img {
  transform: scale(1.05);
}

/* S3 Specific Elements */
#welcome-bonus {
  position: relative;
  z-index: 1;
}

#welcome-bonus::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(106, 79, 255, 0.08) 0%,
    transparent 70%
  );
  transform: translate(-50%, -50%);
  z-index: -1;
  pointer-events: none;
}

.subheading-amount {
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 28px;
  background: var(--clr-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 24px;
  display: inline-block;
}

.terms-list {
  margin-bottom: 32px;
}

.terms-list li {
  font-size: 14px;
  color: var(--clr-text-muted);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.terms-list li svg {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
}

/* S4: Promotions Grid */
.promo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.promo-card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-top: 3px solid transparent;
  background-clip: padding-box;
  border-radius: 12px;
  padding: 32px 24px;
  position: relative;
  transition: var(--transition);
}

.promo-card::before {
  content: "";
  position: absolute;
  top: -3px;
  left: -1px;
  right: -1px;
  height: 3px;
  background: var(--clr-gradient);
  border-radius: 12px 12px 0 0;
}

.promo-card:hover {
  box-shadow: 0 0 24px rgba(106, 79, 255, 0.35);
  transform: translateY(-4px);
}

.promo-badge {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  background: var(--clr-surface2);
  color: var(--clr-primary);
  padding: 4px 12px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 16px;
  border: 1px solid var(--clr-border);
}

.promo-card h3 {
  font-family: var(--font-body);
  font-size: 20px;
  text-transform: none;
  margin-bottom: 8px;
  color: var(--clr-text-body);
}

.promo-card .amount {
  font-family: var(--font-ui);
  font-weight: 600;
  background: var(--clr-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 18px;
  margin-bottom: 16px;
  display: inline-block;
}

.promo-card p {
  color: var(--clr-text-muted);
  font-size: 14px;
  margin-bottom: 24px;
  line-height: 1.5;
}

.promo-card .btn {
  width: 100%;
  padding: 12px;
  font-size: 15px;
}

/* S5: VIP Program Specifics */
#vip-program {
  position: relative;
  z-index: 1;
}

.bg-lines {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(106, 79, 255, 0.02) 10px,
    rgba(106, 79, 255, 0.02) 20px
  );
  z-index: -1;
  pointer-events: none;
}

.vip-badges-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 32px;
  margin-top: 32px;
}

.trust-badge {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.trust-badge .icon {
  width: 40px;
  height: 40px;
  background: rgba(106, 79, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-primary);
  flex-shrink: 0;
}

.trust-badge-text h4 {
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--clr-text-body);
  font-size: 16px;
  margin-bottom: 4px;
}

.trust-badge-text p {
  font-size: 14px;
  color: var(--clr-text-muted);
  margin-bottom: 0;
}

/* S6: How to Claim */
.steps-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
}

.step-connector {
  position: absolute;
  top: 30px;
  left: 15%;
  right: 15%;
  height: 2px;
  background: linear-gradient(
    90deg,
    var(--clr-primary) 0%,
    var(--clr-accent) 100%
  );
  z-index: 0;
  opacity: 0.5;
  background-size: 10px 2px;
  background-image: linear-gradient(
    to right,
    var(--clr-primary) 50%,
    transparent 50%
  );
}

.step-item {
  position: relative;
  z-index: 1;
  background: var(--clr-surface);
  padding: 20px;
}

.step-num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  background: var(--clr-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 16px;
  display: inline-block;
}

.step-item h3 {
  font-family: var(--font-body);
  font-size: 20px;
  color: var(--clr-text-body);
  margin-bottom: 12px;
  text-transform: none;
}

.step-item p {
  color: var(--clr-text-muted);
  font-size: 15px;
}

/* S7: Bonus Terms Overview */
.terms-container {
  max-width: 800px;
  margin: 0 auto;
}

.term-block {
  padding: 32px 0;
  border-bottom: 1px solid var(--clr-border);
}

.term-block:last-child {
  border-bottom: none;
}

.term-block h3 {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 600;
  color: var(--clr-text-body);
  margin-bottom: 12px;
  text-transform: none;
}

.term-block p {
  color: var(--clr-text-muted);
  font-size: 16px;
  line-height: 1.7;
}

/* S8: FAQ */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: 8px;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.active {
  border-left: 3px solid var(--clr-primary);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 20px 24px;
  background: none;
  border: none;
  color: var(--clr-text-body);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-icon {
  font-size: 20px;
  transition: transform 0.3s;
  color: var(--clr-primary);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  padding: 0 24px;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding-bottom: 20px;
}

.faq-answer p {
  color: var(--clr-text-muted);
  font-size: 15px;
}

/* S9: Final CTA */
.final-cta {
  background: var(--clr-gradient);
  text-align: center;
}

.final-cta h2 {
  font-size: 52px;
  font-style: italic;
  color: #fff;
  margin-bottom: 16px;
}

.final-cta p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 32px;
  max-width: 600px;
  margin-inline: auto;
}

.btn-white {
  background: #fff;
  color: var(--clr-primary);
  border-radius: 50px;
}
.btn-white:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
}

.legal-note {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 24px;
  display: block;
}

/* Footer */
.footer {
  background: var(--clr-bg);
  padding: 60px 0 24px;
  border-top: 1px solid var(--clr-border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand p {
  color: var(--clr-text-muted);
  font-size: 14px;
  margin-top: 16px;
  max-width: 300px;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #fff;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--clr-text-muted);
  font-size: 14px;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--clr-primary);
}

.footer-bottom {
  border-top: 1px solid var(--clr-border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--clr-text-muted);
}

.license-badge {
  background: var(--clr-surface2);
  border: 1px solid var(--clr-border);
  padding: 4px 12px;
  border-radius: 20px;
  font-family: var(--font-ui);
  font-weight: 600;
  color: var(--clr-success);
}

/* Floating CTA */
.floating-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 99;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(106, 79, 255, 0.7);
  }
  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 15px rgba(106, 79, 255, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(106, 79, 255, 0);
  }
}

/* Responsive Breakpoints */
@media (max-width: 1023px) {
  .h2-title {
    font-size: 38px;
  }
  .page-hero h1 {
    font-size: 48px;
  }

  .highlight-row {
    flex-wrap: wrap;
  }
  .highlight-item {
    flex: 1 1 40%;
  }
  .highlight-divider {
    display: none;
  }

  .split-section {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .split-img-left .split-image {
    order: -1;
  }

  .promo-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .section-pad {
    padding: 48px 0;
  }
  .h2-title {
    font-size: 34px;
  }
  .h2-title.italic {
    font-size: 34px;
  }

  /* Navbar Mobile */
  .nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--clr-bg);
    padding: 24px;
    border-bottom: 1px solid var(--clr-border);
    gap: 24px;
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-links {
    flex-direction: column;
    width: 100%;
    text-align: center;
    gap: 20px;
  }

  .nav-actions {
    flex-direction: column;
    width: 100%;
  }

  .nav-actions .btn {
    width: 100%;
  }

  .hamburger {
    display: block;
  }

  /* Content Mobile */
  .page-hero {
    min-height: 340px;
  }
  .page-hero h1 {
    font-size: 38px;
  }
  .page-hero p {
    font-size: 15px;
  }
  .page-hero .btn {
    width: 100%;
  }

  .highlight-item {
    flex: 1 1 100%;
  }

  .split-content .btn {
    width: 100%;
  }
  .split-image {
    max-height: 220px;
  }

  .promo-grid {
    grid-template-columns: 1fr;
  }

  .steps-container {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .step-connector {
    display: none;
  }

  .term-block h3 {
    font-size: 18px;
  }
  .term-block p {
    font-size: 15px;
  }

  .final-cta h2 {
    font-size: 36px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}
