:root {
  --black: #050505;
  --dark: #0d0d0d;
  --pink: #ff2f92;
  --lime: #9dff00;
  --orange: #ff9800;
  --white: #ffffff;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: Arial, Helvetica, sans-serif;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 5vw;
  background: #050505;
  border-bottom: 1px solid #222;
  position: sticky;
  top: 0;
  z-index: 20;
}
.logo, .footer-logo {
  text-decoration: none;
  color: white;
  font-weight: 900;
  font-style: italic;
  font-size: 42px;
  line-height: .85;
  letter-spacing: -2px;
  text-shadow: 0 0 16px rgba(255,47,146,.45);
}
.logo span { display: block; }
.logo span:nth-child(2), .footer-logo strong { color: var(--lime); }
.logo small {
  display: block;
  margin-top: 8px;
  font-size: 10px;
  letter-spacing: 2px;
  color: white;
}
nav {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: center;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 13px;
}
nav a { color: white; text-decoration: none; }
nav .instagram { color: var(--pink); }

.hero {
  min-height: 690px;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 35px;
  align-items: center;
  padding: 70px 6vw;
  border-bottom: 3px solid var(--pink);
  background-image: linear-gradient(90deg, rgba(0,0,0,.96), rgba(0,0,0,.72), rgba(0,0,0,.25)), url('https://i.postimg.cc/YS5CXfYK/Screenshot-20260512'Gmail.jpg');
  background-size: cover;
  background-position: center;
}
.eyebrow {
  color: var(--pink);
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 1px;
}
.hero h1 {
  margin: 18px 0;
  font-size: clamp(56px, 9vw, 112px);
  line-height: .88;
  font-style: italic;
  font-weight: 900;
  letter-spacing: -4px;
  text-shadow: 0 0 20px rgba(0,0,0,.9);
}
.hero h1 span { color: var(--lime); }
.hero h1 strong { color: var(--pink); }
.intro {
  max-width: 560px;
  font-size: 21px;
  line-height: 1.55;
  color: #eee;
}
.launch-badge, .coming-soon {
  display: inline-block;
  margin: 26px 0 10px;
  padding: 15px 34px;
  background: var(--lime);
  color: black;
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 900;
  font-style: italic;
  transform: rotate(-3deg);
  box-shadow: 0 0 24px rgba(157,255,0,.45);
}
.buttons a {
  display: inline-block;
  margin: 18px 14px 0 0;
  padding: 14px 26px;
  border: 2px solid var(--pink);
  color: var(--pink);
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 900;
  box-shadow: 0 0 18px rgba(255,47,146,.38);
}
.hero-card {
  min-height: 430px;
  border: 2px solid rgba(255,47,146,.65);
  border-radius: 30px;
  background-image: linear-gradient(rgba(0,0,0,.10), rgba(0,0,0,.42)), url('https://i.postimg.cc/qRQMkfSD/Screenshot-20260512-094327-Brave.jpg');
  background-size: cover;
  background-position: center;
  box-shadow: 0 0 35px rgba(255,47,146,.35);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 30px;
}
.hero-card p {
  color: var(--lime);
  font-size: 42px;
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  text-align: center;
}

.lollies-section { padding: 70px 5vw 50px; }
.lollies-section h2, .brand-section h2, .signup h2 {
  margin: 0 0 42px;
  text-align: center;
  font-size: clamp(42px, 6vw, 68px);
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
}
.lollies-section h2 span, .brand-section h2 span { color: var(--pink); }
.lolly-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}
.lolly-card {
  padding: 28px;
  background: #0d0d0d;
  border: 1px solid #222;
  text-align: center;
  box-shadow: 0 0 22px rgba(255,47,146,.13);
}
.lolly-card h3 {
  font-size: 26px;
  line-height: 1.05;
  text-transform: uppercase;
}
.lolly-card p { color: #ccc; line-height: 1.55; }
.pink h3 { color: var(--pink); }
.green h3, .lime h3 { color: var(--lime); }
.orange h3 { color: var(--orange); }
.lolly {
  width: 94px;
  height: 178px;
  margin: 10px auto 62px;
  position: relative;
  border-radius: 42px 42px 18px 18px;
  box-shadow: 0 0 28px rgba(255,255,255,.26), inset 0 0 18px rgba(255,255,255,.35);
}
.lolly::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 62px;
  background: #d9985b;
  border-radius: 10px;
  left: 50%;
  bottom: -55px;
  transform: translateX(-50%);
}
.lolly-pink { background: linear-gradient(145deg, #ff2f92, white, #9dff00, #ff2f92); }
.lolly-green { background: linear-gradient(145deg, #ff334e, #9dff00, white, #ff9800); }
.lolly-orange { background: linear-gradient(145deg, #ff9800, #ff2f92, #ffee57, #ff9800); }
.lolly-lime { background: linear-gradient(145deg, #b7ff00, white, #4ee8ff, #9dff00); }

.vibe-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 2px solid var(--pink);
  border-bottom: 2px solid var(--pink);
}
.vibe-card {
  min-height: 290px;
  padding: 38px;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.vibe-card h2 {
  margin: 0;
  font-size: 58px;
  font-style: italic;
  font-weight: 900;
}
.vibe-card p { color: #eee; font-size: 17px; line-height: 1.55; }
.chill { background-image: linear-gradient(rgba(0,0,0,.18), rgba(0,0,0,.70)), url('https://postimg.cc/zyzZMvz5'); }
.swirl { background-image: linear-gradient(rgba(0,0,0,.18), rgba(0,0,0,.70)), url('https://i.postimg.cc/qRQMkfSD/Screenshot-20260512-094327-Brave.jpg'); }
.enjoy { background-image: linear-gradient(rgba(0,0,0,.18), rgba(0,0,0,.70)), url('https://postimg.cc/Sj6Ph4tz'); }
.chill h2 { color: var(--pink); }
.swirl h2 { color: var(--lime); }
.enjoy h2 { color: var(--orange); }

.brand-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  align-items: center;
  padding: 75px 6vw;
}
.product-image {
  min-height: 430px;
  border-radius: 28px;
  border: 2px solid rgba(255,47,146,.65);
  background-image: linear-gradient(rgba(0,0,0,.08), rgba(0,0,0,.25)), url('https://postimg.cc/fSWWvKr9');
  background-size: cover;
  background-position: center;
  box-shadow: 0 0 36px rgba(255,47,146,.3);
}
.green-text { color: var(--lime); }
.brand-section h2 { text-align: left; margin-bottom: 20px; }
.brand-section p { color: #ddd; font-size: 18px; line-height: 1.65; }
.features { display: flex; gap: 18px; flex-wrap: wrap; margin-top: 24px; font-weight: 900; }
.features span { color: var(--lime); }

.signup {
  margin: 35px 5vw 50px;
  padding: 34px;
  border: 2px solid var(--pink);
  border-radius: 26px;
  box-shadow: 0 0 30px rgba(255,47,146,.33);
  display: grid;
  grid-template-columns: 1.1fr 1.2fr .8fr;
  gap: 25px;
  align-items: center;
}
.signup h2 { text-align: left; color: var(--pink); margin-bottom: 10px; }
.signup p { color: #ddd; }
.signup form { display: flex; }
.signup input {
  width: 100%;
  padding: 16px;
  color: white;
  background: #050505;
  border: 1px solid var(--pink);
}
.signup button {
  padding: 16px 22px;
  border: 0;
  background: var(--pink);
  color: white;
  font-weight: 900;
  text-transform: uppercase;
}
.coming-soon { margin: 0; text-align: center; font-size: 36px; }

footer {
  padding: 50px 30px;
  text-align: center;
  border-top: 1px solid #222;
}
footer a {
  display: inline-block;
  margin: 25px 0 10px;
  color: var(--pink);
  text-decoration: none;
  font-weight: 900;
  font-size: 21px;
}
footer p { color: #888; }

@media (max-width: 900px) {
  .hero, .brand-section, .signup { grid-template-columns: 1fr; }
  .lolly-grid { grid-template-columns: repeat(2, 1fr); }
  .vibe-strip { grid-template-columns: 1fr; }
  .topbar { position: static; }
}
@media (max-width: 560px) {
  .lolly-grid { grid-template-columns: 1fr; }
  nav { gap: 14px; font-size: 12px; }
  .signup form { flex-direction: column; gap: 10px; }
}
