:root {
  --blue: #4fc7ff;        /* aqua neon */
  --blue-dark: #2b9ad4;   /* deeper metallic */
  --green: #3cffbd;       /* mint neon green */
  --orange: #ff9f40;      /* for contrast elements */
  --bg-light: #f4f8ff;
  --text-main: #111827;
  --text-muted: #6b7280;
  --card-radius: 22px;
  --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.12);
}

* { box-sizing: border-box; }

/* PAGE LOAD FADE-IN */
body {
  margin: 0;
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-main);
  background-color: #ffffff;
  scroll-behavior: smooth;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  background: radial-gradient(
      circle at center,
      #0b1e29 0%,
      #0a2233 35%,
      #071a29 70%,
      #05131f 100%
    );
  color: var(--text-main);
  overflow-x: hidden;
}

#particle-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -10;
  pointer-events: none;
}

body.page-loaded {
  opacity: 1;
}

/* SCROLL ANIMATIONS */
.animate {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

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

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

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

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* HEADER */
header {
  position: sticky;
  top: 0;
  z-index: 50;
}

header.scrolled {
  background: #081d2d;   /* solid dark blue */
  transition: background 0.25s ease;
}

header.scrolled {
  background: #081d2d !important;
  backdrop-filter: none !important;
}


.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 24px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.nav-left {
  display: flex;
  align-items: center;
  justify-content: center;
}

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

/* HAMBURGER BUTTON */
.hamburger {
  display: block;
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  font-size: 28px;
  color: white;
  cursor: pointer;
  z-index: 1002;
  padding: 8px;
  transition: color 0.2s ease;
}

.hamburger:hover {
  color: white;
}

/* BACKDROP OVERLAY */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 998;
}

.mobile-menu-overlay.show {
  opacity: 1;
  visibility: visible;
}

/* SLIDE-IN MENU PANEL */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 50%;
  height: 100vh;
  background: #081d2d;
  box-shadow: -4px 0 25px rgba(0, 0, 0, 0.2);
  transition: right 0.35s ease-in-out;
  z-index: 999;
  display: flex;
  flex-direction: column;
  padding: 80px 40px 40px;
  overflow-y: auto;
}

.mobile-menu.show {
  right: 0;
}

/* MENU LINK STYLING */
.mobile-links {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
}

.mobile-links a {
  font-size: 18px;
  font-weight: 600;
  color: white;
  text-decoration: none;
  transition: all 0.2s ease;
  padding: 18px 20px;
  border-bottom: 1px solid #e5e7eb;
}

.mobile-links a:first-child {
  border-top: 1px solid #e5e7eb;
}

.mobile-links a:hover {
  color: var(--blue);
  background-color: #f9fafb;
  padding-left: 28px;
}

/* RESPONSIVE */
@media (max-width: 960px) {
  .nav-logo {
    transform: scale(1.25);
    transform-origin: center;
  }
}

@media (max-width: 640px) {
  .mobile-menu {
    width: 70%;
  }
  
  .hamburger {
    right: 16px;
  }
}

@media (max-width: 480px) {
  .mobile-menu {
    width: 80%;
  }
  
  .mobile-links a {
    font-size: 16px;
    padding: 16px 18px;
  }
}


/* HERO */

#hero {
  padding: 60px 0 80px;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 48px;
  align-items: center;
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 999px;
  background-color: #2f89ff;
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 18px;
}

.badge-pill i {
  font-size: 12px;
}

/* HERO — match colours of HOW IT WORKS section */

.hero-title {
  font-size: 52px;
  line-height: 1.1;
  font-weight: 800;
  margin: 0 0 18px;

  /* same neon gradient used in .section-heading */
  background: linear-gradient(90deg, var(--blue), var(--green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-text {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);  /* match how section */
  max-width: 470px;
  line-height: 1.7;
  margin-bottom: 28px;
}


.hero-title span {
  color: var(--blue);
}

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

.btn-primary {
  padding: 14px 24px;
  border-radius: 999px;
  background-color: var(--blue);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 12px 32px rgba(37, 99, 235, 0.35);
}
.btn-primary:hover { background-color: var(--blue-dark); }

.btn-outline {
  padding: 14px 24px;
  border-radius: 999px;
  background-color: #ffffff;
  border: 1.5px solid #cbd5f5;
  color: var(--blue);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-outline:hover { background-color: #f3f4ff; }

.hero-note {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #6ee7b7;
  margin-top: 8px;
}

.hero-note i {
  color: #6ee7b7;
}

.hero-media {
  position: relative;
}

.hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-stat {
  position: absolute;
  left: 24px;
  bottom: 24px;
  background-color: #ffffff;
  border-radius: 16px;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.18);
}

.hero-stat-text h4 {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
}

.hero-stat-text span {
  font-size: 13px;
  color: var(--text-muted);
}
.badge-pill {
  background-color: var(--blue);
  color: #fff;
}

.btn-outline {
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  background-color: transparent;
}
/* HERO BUTTONS — make them rectangular + larger */
.hero-actions .btn-primary,
.hero-actions .btn-outline {
  border-radius: 12px !important;   /* remove pill shape */
  padding: 18px 32px !important;    /* make them bigger */
  font-size: 17px !important;       /* slightly larger text */
  font-weight: 700 !important;      /* stronger presence */
}
.hero-actions button {
  min-width: 260px;   /* adjust to the width you want */
  text-align: center;
  justify-content: center;
}

@media (max-width: 960px) {
  .hero-media {
    display: none !important;
  }
}


/* ============================
   HOW IT WORKS — DARK NEON THEME
=============================== */

#how-it-works {
  background:
    linear-gradient(
      to right,
      rgba(125, 31, 36, 0.35) 0%,     /* left red */
      rgba(8, 29, 45, 1) 40%,        /* dark blue fade-in */
      rgba(8, 29, 45, 1) 60%,        /* dark blue center */
      rgba(125, 31, 36, 0.35) 100%   /* right red */
    ),
    #081d2d; /* solid base layer */
  
  padding: 40px 0;
  position: relative;
  z-index: 1;
}



.section-heading {
  text-align: center;
  margin-bottom: 14px;
  font-size: 40px;
  font-weight: 800;
  background: linear-gradient(90deg, var(--blue), var(--green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-heading span {
  background: linear-gradient(90deg, var(--green), var(--blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-subtitle {
  text-align: center;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  max-width: 580px;
  margin: 0 auto 40px;
}

/* GRID */
.steps {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

/* STEP CARD (dark-glass, neon edges) */
.step-card {
  position: relative;
  background: linear-gradient(
      to bottom right,
      rgba(0, 0, 0, 0.55),
      rgba(0, 0, 0, 0.35)
    );
  border-radius: var(--card-radius);
  padding: 28px 22px 26px;
  box-shadow: 0 0 18px rgba(0, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(5px);
  color: #e5faff;
}

/* ICONS */
.step-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #000;
  margin-bottom: 20px;
  font-weight: bold;
}

/* ICON COLOURS (neon bright) */
.step-card:nth-child(1) .step-icon { background: var(--blue); }
.step-card:nth-child(2) .step-icon { background: #00d8ff; }
.step-card:nth-child(3) .step-icon { background: var(--orange); }
.step-card:nth-child(4) .step-icon { background: var(--green); }

.step-title {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
}

.step-text {
  margin: 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
}

/* NUMBER CIRCLES (neon glow) */
.step-number {
  position: absolute;
  top: -16px;
  right: 24px;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-weight: 700;
  font-size: 16px;
  box-shadow: 0 0 12px rgba(0, 255, 255, 0.5);
}

/* Number colours based on card index */
.step-card:nth-child(1) .step-number { background: var(--blue); }
.step-card:nth-child(2) .step-number { background: #00d8ff; }
.step-card:nth-child(3) .step-number { background: var(--orange); }
.step-card:nth-child(4) .step-number { background: var(--green); }

/* RESPONSIVE */
@media (max-width: 960px) {
  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .steps {
    grid-template-columns: minmax(0, 1fr);
  }
}


/* WHY CHOOSE US */

#why-us {
  padding: 40px 0 70px;
}

.why-inner {
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
  gap: 36px;
  align-items: center;
}

.why-main {
  grid-column: 1 / 3;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}


.why-small {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.why-badge {
  display: inline-flex;
  padding: 8px 16px;
  border-radius: 999px;
  background-color: var(--orange);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 14px;
  align-items: center;
  gap: 8px;
}

.why-title {
  font-size: 32px;
  line-height: 1.2;
  margin: 0 0 14px;
  font-weight: 800;

  /* same gradient as hero title */
  background: linear-gradient(90deg, var(--blue), var(--green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.why-title span {
  /* reverse gradient like your section headings */
  background: linear-gradient(90deg, var(--green), var(--blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.why-text {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 24px;
  color: white;
}

.why-feature {
  display: flex;
  gap: 14px;
  margin-bottom: 16px;
}

.why-feature-icon {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
}

.why-feature:nth-child(1) .why-feature-icon { background-color: #22c55e; }
.why-feature:nth-child(2) .why-feature-icon { background-color: var(--blue); }
.why-feature:nth-child(3) .why-feature-icon { background-color: #facc15; }

.why-feature-text h4 {
  margin: 0 0 4px;
  font-size: 15px;
  font-weight: 700;
  background: linear-gradient(90deg, var(--green), var(--blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.why-feature-text p {
  margin: 0;
  font-size: 14px;
  color: white;
  line-height: 1.6;
}

.why-cta {
  margin-top: 20px;
}

/* FOR INFLUENCERS & BRANDS */
/* BASE SECTION STYLING */
.for-section {
  padding: 80px 0;
  color: white;
  width: 100%;
  transition: 0.3s ease;
}

/* BACKGROUND EFFECTS LIKE SCREENSHOT */
.creators {
  background: radial-gradient(circle at top left, rgba(255,50,0,0.25), transparent 60%), #000;
}
.creators:hover {
  background: radial-gradient(circle at top left, rgba(255,70,20,0.45), transparent 60%), #000;
}

.brands {
  background: radial-gradient(
      circle at top right,
      rgba(50, 244, 162, 0.25),  /* your green in RGB, low opacity */
      transparent 60%
    ),
    #000;
}

.brands:hover {
  background: radial-gradient(
      circle at top right,
      rgba(50, 244, 162, 0.45),  /* brighter green glow */
      transparent 60%
    ),
    #000;
}


/* CONTENT WIDTH */
.for-content {
  max-width: 620px;
  margin: 0 auto;
  padding: 0 30px;
}

/* HEADINGS (Matches screenshot font/weight/size style) */
.for-heading {
  font-size: 42px;
  font-weight: 900;
  margin-bottom: 18px;
  letter-spacing: 1px;
}

/* DESCRIPTION */
.for-desc {
  font-size: 16px;
  opacity: 0.9;
  margin-bottom: 32px;
  line-height: 1.6;
}

/* LIST */
.for-list {
  list-style: none;
  padding: 0;
  margin: 0 0 40px;
}

.for-list li {
  font-size: 16px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0.9;
}

/* TICKS EXACTLY LIKE SCREENSHOT */
.tick {
  font-weight: 900;
  font-size: 18px;
}

.tick.red {
  color: #ff4d1a;
}

.tick.yellow {
  color: #32F4A2; /* same green as glow */
}


/* BUTTONS LIKE SCREENSHOT */
.for-btn {
  padding: 16px 28px;
  display: inline-block;
  font-size: 15px;
  font-weight: 700;
  border-radius: 4px;
  text-decoration: none;
  transition: 0.25s ease;
  letter-spacing: 0.5px;
}

.red-btn {
  background: linear-gradient(90deg, #ff4d1a, #d63800);
  color: white;
}
.red-btn:hover {
  filter: brightness(1.2);
}

.yellow-btn {
  background: linear-gradient(90deg, #32F4A2, #1EBB79);  /* same green as ticks/glow */
  color: black; /* keeps the high contrast look */
}

.yellow-btn:hover {
  filter: brightness(1.15);
}


/* DESKTOP SIDE-BY-SIDE LAYOUT */
@media (min-width: 960px) {
  #for-creators {
    padding: 100px 0;
  }
  #for-brands {
    padding: 100px 0 0 0;  /* remove bottom padding */
  }

  #for-creators .for-content {
    margin-left: auto;
  }
  #for-brands .for-content {
    margin-right: auto;
  }
}

/* MOBILE STACKED */
@media (max-width: 959px) {
  .for-content {
    text-align: left;
    margin: 0 auto;
  }
}

/* CTA SECTION */
#cta {
  position: relative;
  padding: 60px 0 80px;   /* reduced spacing so it doesn’t feel boxed */
  background: black;      /* particles will sit over this */
  overflow: hidden;
  text-align: center;
  color: white;
}

/* PARTICLES CANVAS */
#particle-canvas-cta {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

/* CONTENT ABOVE PARTICLES */
.cta-inner,
.stats-container {
  position: relative;
  z-index: 2;
}

/* ROCKET ICON (no circle, no box) */
.cta-icon {
  font-size: 55px;
  color: white; 
  margin-bottom: 18px;
}

/* TITLE */
.cta-title {
  font-size: 38px;
  font-weight: 800;
  margin-bottom: 12px;
  background: linear-gradient(90deg, var(--green), var(--blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* TEXT */
.cta-text {
  font-size: 16px;
  max-width: 540px;
  margin: 0 auto 24px;
  color: rgba(255, 255, 255, 0.75);
}

/* CTA BUTTON — clean + simple */
.cta-btn {
  padding: 14px 26px;
  background: linear-gradient(90deg, var(--green), var(--blue));
  color: black;
  font-weight: 700;
  font-size: 16px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: 0.25s ease;
}

.cta-btn:hover {
  filter: brightness(1.2);
}

/* STATS */
.stats-container {
  margin-top: 50px;
  display: flex;
  justify-content: center;
  gap: 100px;
  flex-wrap: wrap;
}

.stat h2 {
  font-size: 40px;
  font-weight: 900;
  margin: 0;
  background: linear-gradient(90deg, var(--green), var(--blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat p {
  color: rgba(255, 255, 255, 0.75);
  margin-top: 6px;
  font-weight: 600;
}

/* MOBILE */
@media (max-width: 768px) {
  .stats-container {
    gap: 40px;
  }
  .cta-title {
    font-size: 30px;
  }
}



/* FOOTER */

footer {
  background-color: #050505;
  color: #f5f5f5;
  padding: 60px 80px 30px;
}

.footer-top {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 80px;
  flex-wrap: wrap;
}

.footer-column { min-width: 200px; }

.footer-logo-area {
  margin-bottom: 20px;
}

.footer-logo {
  height: 50px;
  width: auto;
}

.footer-description {
  max-width: 320px;
  font-size: 15px;
  line-height: 1.7;
  color: #d1d5db;
}

.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.footer-socials a {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background-color: #111827;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f9fafb;
  text-decoration: none;
  font-size: 18px;
}

.footer-heading {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 18px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #e5e7eb;
  text-decoration: none;
  font-size: 15px;
}

.footer-links a:hover { color: #ffffff; }

.footer-bottom {
  max-width: 1200px;
  margin: 40px auto 0;
  padding-top: 20px;
  border-top: 1px solid #1f2933;
  font-size: 13px;
  color: #9ca3af;
}

/* RESPONSIVE */

@media (max-width: 960px) {
  .nav-links { display: none; }
  .hero-inner,
  .why-inner {
    grid-template-columns: minmax(0, 1fr);
  }
  .hero-inner {
    text-align: center;
  }
  .hero-text {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-actions,
  .hero-note {
    justify-content: center;
  }
  .hero-media {
    order: -1;
  }
  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .for-cards {
    grid-template-columns: minmax(0, 1fr);
  }
  footer {
    padding: 40px 24px 24px;
  }
  .footer-top {
    gap: 40px;
  }
}

@media (max-width: 640px) {
  .hero-title { font-size: 32px; }
  .steps { grid-template-columns: minmax(0, 1fr); }
  .stats-container { gap: 60px; }
  .stat h2 { font-size: 32px; }
  .cta-title { font-size: 26px; }
}

@media (max-width: 640px) {
  .hero-inner {
    gap: 20px !important;   /* reduce ONLY spacing between buttons & image */
  }
}

@media (max-width: 960px) {
  .hero-media {
    order: 2 !important; /* make image appear after text */
    margin-top: 20px;
  }
  .hero-actions,
  .hero-note {
    order: 3;
  }
}

@media (max-width: 768px) {
  .badge-pill {
    display: none !important;
  }
}

/* === REMOVE ALL WHITE BACKGROUNDS FROM SECTIONS === */
#hero,
#services,
#why-us,
#for,
#cta {
  background: transparent !important;
}


/* REMOVE internal cards & boxes white backgrounds too */
.step-card,
.why-main,
.why-small,
.for-card,
.hero-stat,
.cta-inner,
.stats-section {
  background: rgba(0,0,0,0.2) !important;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.08);
}

