@font-face {
  font-family: 'Bebas Neue Local';
  src: url('./assets/fonts/BebasNeue-Regular.ttf') format('truetype');
  font-display: swap;
}

@font-face {
  font-family: 'Montserrat Local';
  src: url('./assets/fonts/Montserrat-ExtraBold.ttf') format('truetype');
  font-display: swap;
}

:root {
  --bg: #07070b;
  --bg-2: #0c0c15;
  --panel: rgba(17, 17, 28, 0.72);
  --panel-strong: rgba(14, 14, 24, 0.92);
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.14);
  --text: #f8f3ff;
  --muted: #b8afd0;
  --pink: #ff4fb2;
  --violet: #965cff;
  --blue: #5d7cff;
  --cyan: #66e6ff;
  --green: #9eff82;
  --shadow: 0 20px 70px rgba(0, 0, 0, 0.45);
  --radius: 30px;
  --radius-sm: 22px;
  --max: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 10%, rgba(255, 79, 178, 0.18), transparent 26%),
    radial-gradient(circle at 90% 20%, rgba(93, 124, 255, 0.18), transparent 26%),
    linear-gradient(180deg, #050509 0%, #090912 50%, #050509 100%);
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img, video { display: block; width: 100%; }

.bg-glow,
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

.bg-glow { filter: blur(60px); opacity: 0.55; }
.glow-a {
  background: radial-gradient(circle at 15% 18%, rgba(255, 79, 178, 0.38), transparent 20%);
}
.glow-b {
  background: radial-gradient(circle at 84% 30%, rgba(102, 230, 255, 0.22), transparent 18%);
}
.grain {
  opacity: 0.08;
  background-image: radial-gradient(rgba(255,255,255,0.9) 0.6px, transparent 0.6px);
  background-size: 10px 10px;
  mix-blend-mode: soft-light;
}

.site-header,
.page,
.sticky-cta {
  width: min(calc(100% - 24px), var(--max));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  padding: max(14px, env(safe-area-inset-top)) 0 12px;
  backdrop-filter: blur(22px);
}

.header-shell,
.top-nav,
.hero-intro-card,
.story-card,
.feed-card,
.drop-card,
.stat-card,
.sticky-cta {
  background: linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.03));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.header-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 999px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-family: 'Montserrat Local', Arial, sans-serif;
  font-size: 1rem;
  letter-spacing: -0.04em;
}
.brand span span { color: var(--pink); }
.brand-badge {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--pink), var(--violet));
  box-shadow: 0 0 18px rgba(255, 79, 178, 0.8);
  flex: 0 0 auto;
}

.header-meta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-status,
.eyebrow,
.kicker,
.micro,
.chip,
.top-nav a,
.sticky-tab span {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 800;
  font-size: 0.68rem;
}

.header-status,
.eyebrow,
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #e3d4ff;
}

.live-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 20px rgba(158, 255, 130, 0.8);
}

.header-cta,
.btn,
.sticky-tab,
.quick-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease;
}

.header-cta {
  min-height: 42px;
  padding: 0 14px;
  font-size: 0.92rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--line);
}

.top-nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  margin-top: 10px;
  padding: 6px;
  border-radius: 24px;
}

.top-nav a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  color: var(--muted);
  border-radius: 18px;
}
.top-nav a:hover { color: var(--text); background: rgba(255,255,255,0.04); }

.page {
  padding: 12px 0 144px;
}

.hero,
.story-stack,
.story-rail,
.hero-actions,
.hero-stats,
.feed-grid,
.drops-grid,
.quick-links-card {
  display: grid;
  gap: 14px;
}

.hero {
  gap: 18px;
}

.hero-intro-card,
.story-card,
.feed-card,
.drop-card,
.stat-card,
.sticky-cta,
.quick-link {
  border-radius: var(--radius);
}

.hero-intro-card {
  padding: 20px;
}

.hero-intro-card h1,
.section-head h2,
.feed-card-copy h3,
.quick-links-head h3,
.drop-card h3 {
  margin: 0;
  font-family: 'Bebas Neue Local', Impact, sans-serif;
  letter-spacing: 0.01em;
}

.hero-intro-card h1 {
  margin-top: 12px;
  font-size: clamp(3.25rem, 15vw, 6.8rem);
  line-height: 0.88;
}

.subcopy {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
}

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

.btn {
  min-height: 56px;
  padding: 0 20px;
}

.btn:hover,
.header-cta:hover,
.sticky-tab:hover,
.quick-link:hover { transform: translateY(-1px); }

.btn-primary,
.sticky-tab-primary {
  color: #120710;
  background: linear-gradient(135deg, #ff7cc7, var(--pink));
  box-shadow: 0 16px 34px rgba(255, 79, 178, 0.28);
}

.btn-ghost {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
}

.story-card,
.feed-card {
  position: relative;
  overflow: hidden;
}

.phone-frame,
.story-media,
.feed-card img,
.feed-card video {
  height: 100%;
}

.story-card-main {
  min-height: 500px;
}

.compact-card {
  min-height: 260px;
}

.story-media,
.compact-media {
  position: relative;
  min-height: inherit;
}

.story-media video,
.feed-card video,
.feed-card img {
  object-fit: cover;
}

.story-gradient,
.feed-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9, 9, 16, 0.06), rgba(9, 9, 16, 0.66));
}

.story-copy,
.tile-copy {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 2;
}

.story-copy strong,
.tile-copy strong {
  display: block;
  margin-top: 8px;
  font-size: 1.18rem;
  line-height: 1.05;
}

.story-copy p {
  margin: 8px 0 0;
  color: #ddd2f6;
  max-width: 18rem;
}

.chat-card {
  min-height: 180px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(180deg, rgba(150, 92, 255, 0.2), rgba(16, 17, 28, 0.8));
}

.chat-card p {
  margin: 12px 0 8px;
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 0.95;
}

.chat-card small,
.feed-card-copy p,
.drop-card p,
.quick-link span,
.sticky-tab { color: var(--muted); }

.chip {
  display: inline-flex;
  width: fit-content;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.1);
}

.chip-soft { background: rgba(93, 124, 255, 0.16); }

.hero-stats {
  grid-template-columns: 1fr;
}

.stat-card {
  padding: 16px 18px;
}

.stat-card strong {
  display: block;
  font-size: 1.2rem;
}

.stat-card span {
  color: var(--muted);
  font-size: 0.92rem;
}

.logo-ticker {
  overflow: hidden;
  border-block: 1px solid rgba(255,255,255,0.06);
  margin: 18px 0 28px;
}

.ticker-track {
  display: flex;
  gap: 18px;
  width: max-content;
  padding: 14px 0;
  animation: ticker 20s linear infinite;
}

.ticker-track span {
  color: #ddceff;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
}

.ticker-track span::after {
  content: '✦';
  margin-left: 18px;
  color: var(--pink);
}

@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.section-head.compact {
  margin-bottom: 16px;
}

.section-head h2 {
  font-size: clamp(2.5rem, 10vw, 4.8rem);
  line-height: 0.92;
}

.feed-section,
.drops-section {
  padding: 0 0 28px;
}

.feed-card {
  min-height: 240px;
}

.feed-card-tall {
  min-height: 420px;
}

.feed-card-copy {
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.feed-card-copy h3,
.quick-links-head h3 {
  margin-top: 10px;
  font-size: 2.45rem;
  line-height: 0.92;
}

.feed-card-copy p {
  max-width: 24rem;
}

.feed-card-copy a {
  margin-top: 10px;
  font-weight: 800;
}

.accent-pink {
  background: linear-gradient(135deg, rgba(255, 79, 178, 0.22), rgba(17, 17, 28, 0.78));
}

.accent-blue {
  background: linear-gradient(135deg, rgba(93, 124, 255, 0.22), rgba(17, 17, 28, 0.78));
}

.quick-links-card {
  padding: 20px;
  background: linear-gradient(180deg, rgba(17,17,28,0.96), rgba(17,17,28,0.8));
}

.quick-links-head {
  margin-bottom: 4px;
}

.quick-link {
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px;
  text-align: left;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
}

.quick-link strong {
  color: var(--text);
  font-size: 0.98rem;
}

.quick-link.primary {
  background: linear-gradient(135deg, rgba(255, 79, 178, 0.18), rgba(93, 124, 255, 0.12));
  border-color: rgba(255,255,255,0.12);
}

.drops-grid { grid-template-columns: 1fr; }

.drop-card {
  padding: 22px;
}

.drop-card span {
  display: inline-flex;
  margin-bottom: 10px;
  font-size: 0.82rem;
  font-weight: 800;
  color: #e6d7ff;
}

.drop-card h3 {
  font-size: 2rem;
  line-height: 0.95;
}

.sticky-cta {
  position: fixed;
  left: 50%;
  bottom: calc(12px + env(safe-area-inset-bottom));
  transform: translateX(-50%);
  z-index: 50;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  padding: 10px;
  background: rgba(11, 11, 19, 0.9);
}

.sticky-tab {
  min-height: 62px;
  padding: 10px 8px;
  flex-direction: column;
  gap: 4px;
  text-align: center;
  border-radius: 20px;
}

.sticky-tab strong {
  color: var(--text);
  font-size: 0.95rem;
}

@media (min-width: 760px) {
  .site-header,
  .page,
  .sticky-cta {
    width: min(calc(100% - 56px), var(--max));
  }

  .site-header {
    padding-top: 20px;
  }

  .header-shell {
    padding: 16px 18px;
  }

  .top-nav {
    width: fit-content;
    grid-template-columns: repeat(4, max-content);
    justify-content: center;
    margin-inline: auto;
    padding-inline: 10px;
  }

  .top-nav a {
    padding: 0 18px;
  }

  .hero {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    align-items: start;
    gap: 24px;
    padding-top: 12px;
  }

  .hero-intro-card {
    position: sticky;
    top: 132px;
  }

  .story-card-main {
    min-height: 620px;
  }

  .story-rail {
    grid-template-columns: 1fr 0.9fr;
  }

  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
  }

  .feed-grid {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 190px;
  }

  .feed-card-tall {
    grid-row: span 2;
  }

  .feed-card-video.wide,
  .quick-links-card {
    grid-column: span 2;
  }

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

  .sticky-cta {
    width: min(calc(100% - 56px), 820px);
  }
}

@media (max-width: 759px) {
  .header-status { display: none; }
  .header-cta {
    min-height: 40px;
    padding-inline: 12px;
    font-size: 0.86rem;
  }

  .quick-link {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 420px) {
  .header-shell {
    padding: 12px 14px;
  }

  .brand {
    font-size: 0.92rem;
  }

  .header-cta {
    min-height: 38px;
    padding-inline: 10px;
    font-size: 0.8rem;
  }

  .sticky-cta {
    width: min(calc(100% - 16px), 680px);
    gap: 6px;
    padding: 8px;
  }

  .sticky-tab {
    min-height: 58px;
    padding-inline: 4px;
  }

  .sticky-tab strong {
    font-size: 0.84rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
