*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: 'Inter', sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, p { margin: 0; padding: 0; }

:root {
  --ink: #08090d;
  --panel: #131620;
  --paper: #f3f4f7;
  --dim: #9599a6;
  --red: #ff3b3f;
  --blue: #3d9bff;
  --line: rgba(243,244,247,0.12);
}

.section-title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(2.1rem, 5vw, 3.2rem); letter-spacing: 0.01em; line-height: 1.05; color: var(--paper); }
.tag { display: inline-block; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--blue); margin-bottom: 0.8rem; }
.tag--pale { color: var(--paper); opacity: 0.75; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) { .reveal { transition: none; } }

.live { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--red); margin-bottom: 1rem; }
.live__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--red); animation: pulse 1.4s infinite; }
@media (prefers-reduced-motion: reduce) { .live__dot { animation: none; } }

/* ---------- Nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 1.6rem;
  background: rgba(8,9,13,0.82);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav__logo { font-weight: 800; font-size: 1.02rem; display: flex; align-items: center; gap: 0.4rem; }
.nav__links { display: flex; gap: 1.6rem; }
.nav__links a { font-size: 0.92rem; color: var(--dim); font-weight: 500; }
.nav__links a:hover { color: var(--paper); }
.nav__burger { display: none; flex-direction: column; gap: 4px; background: none; border: 0; cursor: pointer; padding: 6px; }
.nav__burger span { width: 20px; height: 2px; background: var(--paper); display: block; }

/* ---------- Buttons ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; cursor: pointer; font-weight: 700; border-radius: 999px; transition: transform 0.15s, box-shadow 0.15s; }
.btn--pill { font-size: 0.85rem; padding: 0.55rem 1.1rem; background: var(--blue); color: #06121f; }
.btn--pill:hover { transform: translateY(-1px); }
.btn--big { font-size: 1rem; padding: 0.95rem 1.8rem; }
.btn--solid { background: linear-gradient(135deg, var(--red), #ff6a3d); color: #fff; box-shadow: 0 8px 26px rgba(255,59,63,0.35); }
.btn--solid:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(255,59,63,0.5); }
.btn--ghost { border: 1.5px solid var(--line); color: var(--paper); background: rgba(255,255,255,0.03); }
.btn--ghost:hover { border-color: var(--blue); color: var(--blue); }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; padding: 7rem 1.8rem 3rem; overflow: hidden; scroll-margin-top: 76px; }
.hero__bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.hero__scrim { position: absolute; inset: 0; background: linear-gradient(100deg, rgba(8,9,13,0.95) 0%, rgba(8,9,13,0.8) 42%, rgba(8,9,13,0.4) 70%, rgba(8,9,13,0.75) 100%); }
.hero__grid { position: relative; z-index: 2; max-width: 1180px; margin: 0 auto; width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 3rem; flex-wrap: wrap; }
.hero__text { max-width: 540px; }
.hero__title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(2.6rem, 6vw, 4.2rem); line-height: 1.02; color: var(--paper); margin-bottom: 1.2rem; }
.hero__sub { font-size: 1.1rem; color: var(--dim); max-width: 48ch; margin-bottom: 2rem; }
.hero__cta { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ---------- Phone / TikTok card ---------- */
.phone { flex-shrink: 0; }
.phone__frame {
  position: relative;
  width: 250px; height: 445px;
  border-radius: 26px;
  overflow: hidden;
  border: 4px solid #1c2030;
  box-shadow: 0 30px 70px rgba(0,0,0,0.6);
  background: #000;
}
.phone__video { width: 100%; height: 100%; object-fit: cover; }
.phone__topbar { position: absolute; top: 14px; left: 0; right: 0; display: flex; justify-content: center; gap: 1.2rem; font-size: 0.72rem; font-weight: 700; color: rgba(255,255,255,0.55); }
.phone__topbar--active { color: #fff; border-bottom: 2px solid #fff; padding-bottom: 4px; }
.phone__caption { position: absolute; left: 12px; bottom: 16px; right: 60px; color: #fff; }
.phone__user { font-weight: 700; font-size: 0.85rem; margin-bottom: 0.2rem; }
.phone__caption p:last-child { font-size: 0.78rem; opacity: 0.9; }
.phone__actions { position: absolute; right: 10px; bottom: 20px; display: flex; flex-direction: column; gap: 0.9rem; align-items: center; }
.phone__action { display: flex; flex-direction: column; align-items: center; gap: 0.15rem; font-size: 1.2rem; color: #fff; }
.phone__action span { font-size: 0.62rem; font-weight: 700; }

/* ---------- Feed / posts ---------- */
.feed { padding: 6rem 1.8rem; text-align: center; }
.posts { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 1.2rem; max-width: 1100px; margin: 3rem auto 0; }
.post { position: relative; border-radius: 14px; overflow: hidden; aspect-ratio: 3/4; }
.post img { width: 100%; height: 100%; object-fit: cover; }
.post__overlay { position: absolute; left: 0; right: 0; bottom: 0; padding: 1rem 0.9rem 0.8rem; background: linear-gradient(180deg, transparent, rgba(0,0,0,0.85)); text-align: left; }
.post__caption { font-size: 0.85rem; font-weight: 700; color: #fff; margin-bottom: 0.4rem; }
.post__stats { display: flex; gap: 0.8rem; font-size: 0.72rem; color: rgba(255,255,255,0.75); }

/* ---------- Millionaire ---------- */
.millionaire { position: relative; padding: 6.5rem 1.8rem; overflow: hidden; scroll-margin-top: 76px; }
.millionaire__bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.millionaire__scrim { position: absolute; inset: 0; background: linear-gradient(100deg, rgba(8,9,13,0.92) 0%, rgba(8,9,13,0.55) 55%, rgba(8,9,13,0.85) 100%); }
.millionaire__inner { position: relative; z-index: 2; max-width: 1100px; margin: 0 auto; display: flex; align-items: center; gap: 3.5rem; flex-wrap: wrap; }
.millionaire__media { flex: 0 0 260px; }
.millionaire__media img { border-radius: 16px; border: 1px solid var(--line); box-shadow: 0 20px 50px rgba(0,0,0,0.5); }
.millionaire__text { flex: 1; min-width: 280px; }
.millionaire__title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(2rem, 4.6vw, 3rem); line-height: 1.08; color: var(--paper); margin-bottom: 1.2rem; }
.millionaire__sub { color: var(--dim); font-size: 1.1rem; max-width: 46ch; margin-bottom: 1.8rem; }

/* ---------- Closer ---------- */
.closer { position: relative; min-height: 80svh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 6rem 1.8rem; overflow: hidden; }
.closer__bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.closer__scrim { position: absolute; inset: 0; background: radial-gradient(ellipse at center, rgba(8,9,13,0.55) 0%, rgba(8,9,13,0.93) 75%); }
.closer__inner { position: relative; z-index: 2; max-width: 620px; margin: 0 auto; }
.closer__title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(2rem, 4.6vw, 3rem); color: var(--paper); line-height: 1.1; margin-bottom: 1.8rem; }
.closer__cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.footer { position: relative; padding: 2rem 1.8rem; border-top: 1px solid var(--line); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.6rem; font-size: 0.85rem; color: var(--dim); }

@keyframes pulse { 50% { opacity: 0.3; } }

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

@media (max-width: 900px) {
  .hero__grid { flex-direction: column; }
  .millionaire__inner { flex-direction: column; }
  .millionaire__media { width: 220px; }
}

@media (max-width: 760px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }
  .nav__links.is-open { display: flex; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; background: var(--ink); padding: 1.1rem 1.6rem; gap: 0.9rem; border-bottom: 1px solid var(--line); }

  .hero { flex-direction: column; text-align: center; padding-top: 7.5rem; }
  .hero__text { text-align: center; margin: 0 auto; }
  .hero__cta { justify-content: center; }
  .phone__frame { width: 210px; height: 374px; }
}
