/* FameShoot — English theme. Light, clean, international. */
* { box-sizing: border-box; margin: 0; }

:root {
  --bg: #faf8f3;
  --panel: #ffffff;
  --line: #e6e1d6;
  --ink: #16141c;
  --dim: #6d6759;
  --grad: linear-gradient(100deg, #ff2d78, #ff7a18 55%, #ffd21f);
}

html { scroll-behavior: smooth; }
body {
  background: var(--bg); color: var(--ink);
  font: 16px/1.6 "Inter", system-ui, sans-serif;
  overflow-x: hidden;
}
::selection { background: #ff2d78; color: #fff; }

h1, h2, h3, .logo {
  font-family: "Space Grotesk", "Inter", system-ui, sans-serif;
  letter-spacing: -0.03em;
}
h1 { font-size: clamp(2.9rem, 9vw, 5.6rem); font-weight: 700; line-height: 1.02; }
h2 { font-size: clamp(1.9rem, 5vw, 3rem); font-weight: 700; line-height: 1.05; }
em { font-style: normal; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
b { font-weight: 600; }

/* ── nav ── */
nav {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px min(5vw, 48px); position: sticky; top: 0; z-index: 10;
  background: color-mix(in srgb, var(--bg) 85%, transparent);
  backdrop-filter: blur(12px); border-bottom: 1px solid var(--line);
}
.logo { font-size: 20px; font-weight: 500; }
.logo b { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; font-weight: 700; }

/* ── buttons ── */
.btn {
  display: inline-block; padding: 14px 24px; border-radius: 999px;
  font-weight: 600; font-size: 15px; text-decoration: none; color: var(--ink);
  border: 1px solid #d8d2c4; background: var(--panel);
  transition: transform .15s, border-color .15s, box-shadow .15s;
}
.btn:hover { transform: translateY(-2px); border-color: #b9b2a1; box-shadow: 0 6px 18px rgba(22,20,28,.08); }
.btn.primary { background: var(--ink); color: #faf8f3; border: none; }
.btn.small { padding: 9px 16px; font-size: 13px; }

.chip {
  display: inline-block; padding: 7px 14px; border: 1px solid var(--line);
  border-radius: 999px; font-size: 13px; color: var(--dim); background: var(--panel);
  margin-bottom: 22px;
}

/* ── hero ── */
.hero {
  display: flex; align-items: center; justify-content: center; gap: min(6vw, 80px);
  flex-wrap: wrap; padding: clamp(48px, 9vh, 110px) min(5vw, 48px) 64px;
  max-width: 1200px; margin: 0 auto;
}
.hero-text { max-width: 580px; }
.sub { margin: 24px 0 30px; font-size: clamp(16px, 2.2vw, 19px); color: var(--dim); }
.sub b { color: var(--ink); }
.btns { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-phone { position: relative; }
.hero-phone::before {
  content: ""; position: absolute; inset: -8%;
  background: var(--grad); filter: blur(70px); opacity: .22; z-index: -1; border-radius: 50%;
}
.tap-hint { text-align: center; margin-top: 12px; font-size: 13px; color: var(--dim); }

/* ── the phone / reel frame ── */
.reel {
  position: relative; width: min(300px, 78vw); aspect-ratio: 9 / 16; flex: none;
  border-radius: 28px; overflow: hidden; background: #000;
  border: 1px solid #d9d3c6; box-shadow: 0 24px 60px rgba(22,20,28,.22);
  cursor: pointer; scroll-snap-align: center;
}
.reel video { width: 100%; height: 100%; object-fit: cover; display: block; }
.reel .bar {
  position: absolute; top: 10px; left: 12px; right: 12px; height: 3px;
  background: rgba(255,255,255,.25); border-radius: 99px;
}
.reel .bar i { display: block; height: 100%; width: 0; background: var(--grad); border-radius: 99px; }
.reel .mute {
  position: absolute; top: 20px; right: 12px; width: 38px; height: 38px;
  border-radius: 50%; border: none; cursor: pointer; font-size: 16px;
  background: rgba(0,0,0,.45); backdrop-filter: blur(6px); color: #fff;
}
.reel .meta {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 44px 14px 14px;
  background: linear-gradient(transparent, rgba(0,0,0,.8)); color: #fff;
}
.reel .handle { font-weight: 700; font-size: 13px; }
.reel .cap { font-size: 13px; color: #e8e4da; margin-top: 4px; }

.ghost-reel {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 18px; text-align: center; background: transparent;
  border: 2px dashed #cfc8b8; box-shadow: none; cursor: default;
  font-size: 18px; color: var(--dim);
}
.ghost-reel b { color: var(--ink); }
.ghost-reel .btn.primary { background: var(--ink); color: #faf8f3; }

/* ── marquee ── */
.marquee { border-block: 1px solid var(--line); overflow: hidden; padding: 14px 0; background: var(--panel); }
.track { display: flex; width: max-content; animation: slide 22s linear infinite; }
.track span {
  white-space: nowrap; text-transform: uppercase; letter-spacing: .16em;
  font-size: 13px; color: var(--dim);
}
@keyframes slide { to { transform: translateX(-50%); } }

/* ── sections ── */
section { padding: clamp(56px, 10vh, 110px) min(5vw, 48px); max-width: 1200px; margin: 0 auto; }
.lede { margin-top: 16px; color: var(--dim); max-width: 560px; }

.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; margin-top: 36px; }
.card {
  background: var(--panel); border: 1px solid var(--line); border-radius: 20px;
  padding: 26px 24px; box-shadow: 0 2px 10px rgba(22,20,28,.04);
}
.card h3 { font-size: 19px; margin-bottom: 10px; }
.card p { color: var(--dim); font-size: 15px; }
.card p b { color: var(--ink); }
.num {
  display: inline-grid; place-items: center; width: 40px; height: 40px; margin-bottom: 16px;
  border-radius: 50%; background: var(--grad); color: #16141c; font-weight: 700; font-size: 18px;
}

/* ── reel wall ── */
.reels { max-width: none; }
.reels h2, .reels .lede { max-width: 1200px; margin-inline: auto; }
.reels .lede { margin-top: 16px; }
.row {
  display: flex; gap: 18px; margin-top: 36px; padding: 8px min(5vw, 48px) 24px;
  overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none;
}
.row::-webkit-scrollbar { display: none; }

/* ── cta ── */
.cta-card {
  background: var(--ink); color: #faf8f3; border-radius: 28px;
  padding: clamp(40px, 7vw, 72px); text-align: center;
}
.cta-card h2 { color: #faf8f3; }
.cta-card p { margin: 18px 0 26px; font-weight: 500; color: #cfc9bd; }
.cta-card .btn.dark { background: var(--grad); color: #16141c; border: none; font-weight: 700; }
.cta-card .fine { margin: 14px 0 0; font-size: 13px; opacity: .65; font-weight: 400; }

footer { text-align: center; padding: 40px 20px 56px; border-top: 1px solid var(--line); }
footer .fine { margin-top: 6px; font-size: 13px; color: var(--dim); }

/* ── reveal on scroll ── */
[data-reveal] { opacity: 0; transform: translateY(18px); transition: opacity .6s, transform .6s; }
[data-reveal].in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .track { animation: none; }
  [data-reveal] { opacity: 1; transform: none; transition: none; }
}
