:root {
  --bg: #fbfbfb;
  --paper: #ffffff;
  --ink: #161616;
  --muted: #7b7b84;
  --line: #eeeeef;
  --coral: #ec4058;
  --blue: #3b82f6;
  --navy: #172554;
  --green: #20b26b;
  --yellow: #ffd166;
  --soft: #f7f7f8;
  --shadow: 0 24px 70px rgba(17, 17, 17, 0.12);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(90deg, rgba(236, 64, 88, 0.035) 1px, transparent 1px),
    linear-gradient(rgba(17, 17, 17, 0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, #000 0%, transparent 70%);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1180px, calc(100% - 40px));
  min-height: 76px;
  margin: 0 auto;
  background: rgba(251, 251, 251, 0.84);
  backdrop-filter: blur(18px);
  transition: box-shadow 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(251, 251, 251, 0.96);
  box-shadow: 0 1px 0 rgba(17, 17, 17, 0.08);
}

.brand,
.main-nav,
.hero-actions,
.hero-stats,
.drop-top,
.drop-meta,
.site-footer {
  display: flex;
  align-items: center;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  width: 154px;
  min-width: 132px;
}

.brand img {
  width: 100%;
  height: auto;
}

.main-nav {
  gap: 26px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 600;
}

.main-nav a:hover,
.text-link:hover {
  color: var(--coral);
}

.header-cta,
.text-link {
  font-weight: 800;
}

.header-cta {
  padding: 10px 16px;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--coral);
  box-shadow: 4px 4px 0 rgba(236, 64, 88, 0.14);
}

.section-pad {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 86px 0;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: 56px;
  align-items: center;
  min-height: calc(100vh - 76px);
  padding-top: 42px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 740px;
  margin-bottom: 22px;
  font-size: clamp(3rem, 6.2vw, 5.9rem);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  max-width: 780px;
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.22rem;
  line-height: 1.2;
}

.hero-lead,
.audience-copy p,
.community-panel p {
  max-width: 660px;
  color: var(--muted);
  font-size: 1.14rem;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.store-button {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 180px;
  min-height: 58px;
  padding: 10px 16px;
  border-radius: 8px;
  background: var(--coral);
  color: white;
  font-weight: 800;
  line-height: 1.05;
  box-shadow: 0 14px 34px rgba(236, 64, 88, 0.24);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.store-button:hover,
.drop-card:hover,
.step-card:hover {
  transform: translateY(-4px);
}

.store-button:hover {
  box-shadow: 0 20px 44px rgba(236, 64, 88, 0.3);
}

.store-button small {
  display: block;
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.66rem;
  font-weight: 700;
}

.store-icon {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
}

.store-icon svg {
  width: 29px;
  height: 29px;
  fill: currentColor;
}

.store-icon.play {
  color: #ffe7ec;
}

.hero-stats {
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.hero-stats span,
.tag,
.audience-list span {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
}

.hero-stats span {
  padding: 8px 12px;
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-stats strong {
  color: var(--ink);
}

.hero-visual {
  position: relative;
  min-height: 560px;
}

.phone-stage {
  display: grid;
  place-items: center;
}

.phone-frame {
  position: absolute;
  overflow: hidden;
  margin: 0;
  border: 8px solid #151515;
  border-radius: 30px;
  background: white;
  box-shadow: 0 28px 75px rgba(17, 17, 17, 0.22);
}

.phone-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.phone-main {
  z-index: 3;
  width: min(270px, 43vw);
  aspect-ratio: 9 / 19.5;
  transform: translateX(-26px) rotate(-2deg);
}

.phone-weekly {
  right: 0;
  z-index: 2;
  width: min(226px, 35vw);
  aspect-ratio: 9 / 19.5;
  transform: translateY(16px) rotate(4deg);
}

.phone-profile {
  left: 0;
  bottom: 34px;
  z-index: 1;
  width: min(205px, 32vw);
  aspect-ratio: 9 / 19.5;
  transform: rotate(-7deg);
  opacity: 0.96;
}

.live-card {
  position: absolute;
  right: 4%;
  bottom: 8%;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  font-weight: 800;
  box-shadow: var(--shadow);
}

.pulse {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.55);
  animation: pulse 1.8s infinite;
}

.split-section {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 38px;
  align-items: start;
}

.section-heading {
  max-width: 760px;
}

.steps,
.drop-grid {
  display: grid;
  gap: 18px;
}

.steps {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.step-card,
.drop-card,
.community-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 50px rgba(17, 17, 17, 0.06);
}

.step-card,
.drop-card {
  min-height: 230px;
  padding: 24px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.step-card:hover,
.drop-card:hover {
  box-shadow: 0 24px 60px rgba(17, 17, 17, 0.1);
}

.step-number {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--coral);
  font-weight: 900;
}

.step-screen {
  width: 84px;
  height: 132px;
  margin-bottom: 18px;
  border: 5px solid #181818;
  border-radius: 18px;
  object-fit: cover;
  object-position: top;
  box-shadow: 0 12px 28px rgba(17, 17, 17, 0.12);
}

.step-card p,
.drop-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.drops-section {
  width: 100%;
  padding-right: max(20px, calc((100% - 1180px) / 2));
  padding-left: max(20px, calc((100% - 1180px) / 2));
  background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.8) 28%, transparent 100%);
}

.drop-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.drop-top {
  justify-content: space-between;
  margin-bottom: 24px;
}

.drop-logo {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 8px;
  color: white;
  font-weight: 900;
}

.drop-logo.coral {
  background: var(--coral);
}

.drop-logo.blue {
  background: #111;
}

.drop-logo.yellow {
  background: #f0b429;
}

.tag {
  padding: 6px 10px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 800;
}

.tag.green {
  color: var(--green);
}

.drop-meta {
  gap: 12px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
}

.audience-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.8fr);
  gap: 54px;
  align-items: center;
}

.audience-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.audience-list span {
  padding: 12px 14px;
  font-weight: 800;
}

.community-section {
  padding-top: 42px;
}

.community-panel {
  padding: clamp(34px, 6vw, 68px);
  background:
    linear-gradient(135deg, rgba(236, 64, 88, 0.12), rgba(247, 247, 248, 0.9)),
    white;
}

.community-panel p {
  margin-bottom: 24px;
}

.text-link {
  color: var(--ink);
}

.site-footer {
  justify-content: space-between;
  gap: 20px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 34px 0 42px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
}

.site-footer span:first-child {
  color: var(--ink);
  font-weight: 900;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes pulse {
  70% {
    box-shadow: 0 0 0 12px rgba(22, 163, 74, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(22, 163, 74, 0);
  }
}

@media (max-width: 940px) {
  .main-nav {
    display: none;
  }

  .hero,
  .split-section,
  .audience-section {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 34px;
    min-height: auto;
    padding-top: 56px;
  }

  .hero-visual {
    min-height: 520px;
  }

  .steps,
  .drop-grid {
    grid-template-columns: 1fr;
  }

  .step-card,
  .drop-card {
    min-height: 0;
  }
}

@media (max-width: 620px) {
  .site-header,
  .section-pad,
  .site-footer {
    width: min(100% - 28px, 1180px);
  }

  .site-header {
    min-height: 68px;
  }

  .header-cta {
    padding: 9px 12px;
  }

  .brand {
    width: 128px;
  }

  .section-pad {
    padding: 44px 0;
  }

  .hero {
    gap: 22px;
    padding-top: 26px;
  }

  h1 {
    margin-bottom: 16px;
    font-size: clamp(2.55rem, 13vw, 3.25rem);
    line-height: 1.01;
  }

  .hero-lead,
  .audience-copy p,
  .community-panel p {
    font-size: 1rem;
  }

  .store-button {
    flex: 1 1 calc(50% - 6px);
    min-width: 0;
    min-height: 54px;
    justify-content: center;
    padding: 9px 10px;
    font-size: 0.86rem;
  }

  .store-button small {
    font-size: 0.54rem;
  }

  .store-icon {
    width: 24px;
    height: 24px;
  }

  .store-icon svg {
    width: 23px;
    height: 23px;
  }

  .hero-stats {
    margin-top: 18px;
  }

  .hero-stats span {
    padding: 7px 10px;
    font-size: 0.84rem;
  }

  .hero-actions {
    margin-top: 22px;
  }

  .store-button span:last-child {
    min-width: 0;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-visual {
    min-height: 430px;
    overflow: hidden;
  }

  .phone-frame {
    border-width: 6px;
    border-radius: 24px;
  }

  .phone-main {
    width: 218px;
    transform: translateX(-18px) rotate(-2deg);
  }

  .phone-weekly {
    width: 184px;
    right: -42px;
  }

  .phone-profile {
    width: 166px;
    left: -38px;
    bottom: 28px;
  }

  .live-card {
    right: 10px;
    bottom: 10px;
    padding: 9px 11px;
    font-size: 0.84rem;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
