html, body {
  height: 100%;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background: linear-gradient(135deg, #0f172a, #1e293b);
  color: #fff;
}

/* NAVBAR */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 8%;
}

.logo {
  font-size: 22px;
  font-weight: bold;
}

.logo span {
  color: #3b82f6;
}

nav a {
  margin: 0 15px;
  text-decoration: none;
  color: #ccc;
  transition: 0.3s;
}

nav a:hover {
  color: #fff;
}

.nav-btns button {
  margin-left: 10px;
  padding: 10px 18px;
  border-radius: 20px;
  border: none;
  cursor: pointer;
}

.offer-btn {
  background: transparent;
  border: 1px solid #22c55e;
  color: #22c55e;
}

.signup-btn {
  background: linear-gradient(90deg, #3b82f6, #a855f7);
  color: white;
}

/* HERO */
.hero {
  text-align: center;
  padding: 80px 20px;
}

.tag {
  display: inline-block;
  padding: 8px 15px;
  border-radius: 20px;
  background: rgba(59, 130, 246, 0.2);
  color: #60a5fa;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: 60px;
  margin-bottom: 20px;
}

.hero h1 span {
  background: linear-gradient(90deg, #3b82f6, #a855f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  color: #ccc;
  max-width: 600px;
  margin: auto;
  line-height: 1.6;
}

.buttons {
  margin-top: 30px;
}

.primary {
  padding: 12px 25px;
  border: none;
  border-radius: 25px;
  background: linear-gradient(90deg, #3b82f6, #a855f7);
  color: white;
  margin-right: 10px;
  cursor: pointer;
}

.secondary {
  padding: 12px 25px;
  border-radius: 25px;
  border: none;
  background: #e5e7eb;
  color: #333;
  cursor: pointer;
}

/* STATS */
.stats {
  margin-top: 60px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  padding: 25px;
  border-radius: 15px;
  width: 200px;
}

.card h2 {
  font-size: 28px;
}

.card p {
  color: #aaa;
}
/* PATH SECTION */
.path-section {
  text-align: center;
  padding: 80px 20px;
}

.path-section h2 {
  font-size: 40px;
  margin-bottom: 10px;
}

.path-section h2 span {
  background: linear-gradient(90deg, #3b82f6, #a855f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.subtitle {
  color: #aaa;
  max-width: 600px;
  margin: auto;
  margin-bottom: 50px;
}

/* CONTAINER */
.path-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

/* CARD */
.path-card {
  width: 350px;
  padding: 30px;
  border-radius: 20px;
  backdrop-filter: blur(12px);
  text-align: left;
  transition: 0.3s;
}

.path-card:hover {
  transform: translateY(-10px);
}

/* ADVERTISER */
.advertiser {
  background: linear-gradient(135deg, rgba(59,130,246,0.2), rgba(0,0,0,0.4));
  border: 1px solid rgba(59,130,246,0.3);
}

/* PUBLISHER */
.publisher {
  background: linear-gradient(135deg, rgba(168,85,247,0.2), rgba(0,0,0,0.4));
  border: 1px solid rgba(168,85,247,0.3);
}

.path-card h3 {
  margin-bottom: 15px;
}

.desc {
  color: #ccc;
  margin-bottom: 20px;
}

.path-card ul {
  list-style: none;
  margin-bottom: 25px;
}

.path-card ul li {
  margin: 10px 0;
  color: #ddd;
}

/* BUTTONS */
.btn-blue {
  width: 100%;
  padding: 12px;
  border-radius: 25px;
  border: none;
  background: linear-gradient(90deg, #3b82f6, #06b6d4);
  color: white;
  cursor: pointer;
}

.btn-pink {
  width: 100%;
  padding: 12px;
  border-radius: 25px;
  border: none;
  background: linear-gradient(90deg, #a855f7, #ec4899);
  color: white;
  cursor: pointer;
}
/* VERTICALS SECTION */
.verticals {
  text-align: center;
  padding: 80px 20px;
}

.verticals .tag {
  display: inline-block;
  padding: 6px 15px;
  border-radius: 20px;
  background: rgba(59,130,246,0.2);
  color: #60a5fa;
  margin-bottom: 15px;
}

.verticals h2 {
  font-size: 40px;
  margin-bottom: 10px;
}

.verticals h2 span {
  background: linear-gradient(90deg, #3b82f6, #a855f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.verticals .subtitle {
  color: #aaa;
  margin-bottom: 50px;
}

/* GRID */
.vertical-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

/* CARD */
.v-card {
  background: rgba(255,255,255,0.05);
  padding: 25px;
  border-radius: 15px;
  text-align: left;
  backdrop-filter: blur(10px);
  transition: 0.3s;
}

.v-card:hover {
  transform: translateY(-8px);
}

.v-card h3 {
  margin-top: 10px;
}

.v-card p {
  color: #aaa;
}

/* ICON */
.icon {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-size: 20px;
  margin-bottom: 10px;
}

/* COLORS */
.blue { background: #3b82f6; }
.purple { background: #a855f7; }
.green { background: #22c55e; }
.orange { background: #f97316; }
.pink { background: #ec4899; }
.red { background: #ef4444; }
.yellow { background: #f59e0b; }
.cyan { background: #06b6d4; }
.gold { background: #eab308; }
.violet { background: #8b5cf6; }

/* BRAND SECTION */
.brands {
  text-align: center;
  padding: 80px 20px;
  overflow: hidden;
}

.brands .tag {
  display: inline-block;
  padding: 6px 15px;
  border-radius: 20px;
  background: rgba(34,197,94,0.2);
  color: #22c55e;
  margin-bottom: 10px;
}

.brands h2 {
  font-size: 36px;
  margin-bottom: 40px;
}

.brands h2 span {
  color: #22c55e;
}

/* SLIDER */
.slider {
  position: relative;
  width: 100%;
  overflow: hidden;
}

/* TRACK */
.slide-track {
  display: flex;
  width: calc(250px * 16);
  animation: scroll 25s linear infinite;
}

/* CARD */
.slide {
  width: 220px;
  height: 80px;
  margin: 0 10px;
  background: rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: #ccc;
  font-weight: 600;
  backdrop-filter: blur(8px);
  transition: 0.3s;
}

.slide:hover {
  background: rgba(255,255,255,0.1);
  color: #fff;
}

/* ANIMATION */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

