:root {
  --bg: #140b0a;
  --surface: #211514;
  --surface-2: #2a1b18;
  --text: #fff3ed;
  --muted: #d9beb4;
  --accent: #ff9f87;
  --accent-2: #ff6a3d;
  --line: rgba(255, 255, 255, 0.1);
  --shadow: rgba(0, 0, 0, 0.35);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
}
a { color: inherit; }

.navbar {
  min-height: 76px;
  padding: 0 7%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(20, 11, 10, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 900;
  font-size: 24px;
}
.brand img { width: 38px; height: 38px; }
nav { display: flex; align-items: center; gap: 24px; }
nav a { text-decoration: none; color: var(--muted); font-weight: 700; }
nav a:hover { color: var(--accent); }
.nav-cta { color: #1a0e0b; background: var(--accent); padding: 11px 16px; border-radius: 999px; }
.menu-toggle { display: none; background: transparent; color: var(--text); border: 0; font-size: 28px; }

.hero {
  min-height: calc(100vh - 76px);
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.75fr);
  gap: 56px;
  align-items: center;
  padding: 72px 7%;
  background:
    radial-gradient(circle at 80% 20%, rgba(255, 159, 135, 0.22), transparent 34%),
    radial-gradient(circle at 10% 80%, rgba(255, 106, 61, 0.16), transparent 34%),
    linear-gradient(135deg, #140b0a, #25120f 60%, #120807);
}
.eyebrow { color: var(--accent); text-transform: uppercase; letter-spacing: 0.18em; font-size: 13px; font-weight: 900; }
h1, h2, h3, p { margin-top: 0; }
h1 { font-size: clamp(42px, 7vw, 82px); line-height: 0.96; letter-spacing: -0.05em; margin-bottom: 22px; }
h2 { font-size: clamp(34px, 5vw, 56px); line-height: 1.02; letter-spacing: -0.04em; margin-bottom: 18px; }
.subtitle, .section-intro, .split-section p { color: var(--muted); font-size: 20px; line-height: 1.65; max-width: 760px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 32px; }
.btn { border-radius: 999px; padding: 15px 22px; font-weight: 900; text-decoration: none; border: 1px solid transparent; }
.btn.primary { background: var(--accent); color: #20100c; }
.btn.secondary { border-color: var(--accent); color: var(--accent); }
.trust-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; color: var(--muted); font-weight: 700; }
.trust-row span { border: 1px solid var(--line); padding: 10px 14px; border-radius: 999px; background: rgba(255,255,255,0.04); }

.phone-shell { background: linear-gradient(180deg, #41302c, #090605); border-radius: 46px; padding: 18px; box-shadow: 0 34px 90px var(--shadow); min-height: 570px; }
.phone-screen { height: 100%; min-height: 535px; border-radius: 34px; overflow: hidden; background: #000; }
.feed-video-card {
  position: relative;
  height: 535px;
  padding: 28px;
  background:
    linear-gradient(to top, rgba(0,0,0,0.92), transparent 55%),
    url("https://images.unsplash.com/photo-1603894584373-5ac82b2ae398?auto=format&fit=crop&w=900&q=80") center/cover;
}
.play-badge { position: absolute; inset: 0; display: grid; place-items: center; font-size: 58px; text-shadow: 0 8px 24px #000; }
.video-text { position: absolute; left: 28px; right: 80px; bottom: 34px; }
.video-text h3 { font-size: 34px; margin: 10px 0 6px; }
.pill { display: inline-block; color: #160806; background: var(--accent); padding: 7px 11px; border-radius: 999px; font-weight: 900; }
.side-actions { position: absolute; right: 24px; bottom: 36px; display: grid; gap: 16px; font-size: 30px; }
.side-actions span { background: rgba(0,0,0,0.45); width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center; }

.section { padding: 96px 7%; text-align: center; }
.dark { background: #0d0706; }
.accent-soft { background: linear-gradient(135deg, rgba(255,159,135,0.12), rgba(255,106,61,0.05)); }
.feature-grid { margin-top: 38px; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.feature-grid.four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.feature-grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.card, .mini-card, .basket-card { background: var(--surface); border: 1px solid var(--line); border-radius: 28px; padding: 28px; box-shadow: 0 20px 70px rgba(0,0,0,0.18); }
.card { text-align: left; }
.card h3, .mini-card h3 { color: var(--accent); }
.card p, .mini-card p { color: var(--muted); line-height: 1.6; }
.highlight { background: linear-gradient(180deg, var(--surface), #2f1b15); }
.mini-card { text-align: center; font-size: 34px; }
.mini-card h3 { font-size: 20px; }

.split-section { display: grid; grid-template-columns: 1fr 1fr; gap: 42px; align-items: center; padding: 96px 7%; }
.mock-list { display: grid; gap: 16px; }
.mock-list div { display: flex; gap: 16px; align-items: center; background: var(--surface); border: 1px solid var(--line); border-radius: 22px; padding: 22px; }
.mock-list strong { color: var(--accent); font-size: 24px; }
.mock-list span { color: var(--muted); font-weight: 800; }
.basket-card { max-width: 420px; justify-self: center; width: 100%; }
.basket-card ul { color: var(--muted); line-height: 2; }
.basket-card button, form button { cursor: pointer; background: var(--accent); border: 0; color: #1b0c09; font-weight: 900; border-radius: 999px; padding: 14px 18px; }

.join-section { padding: 96px 7%; text-align: center; background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: #1b0c09; }
.join-section .eyebrow { color: #5e1d10; }
.join-section p { color: #32110c; font-size: 18px; }
form { margin: 30px auto 0; display: flex; max-width: 560px; gap: 12px; }
input { flex: 1; min-height: 54px; border-radius: 999px; border: 0; padding: 0 18px; font-size: 16px; }
.message { font-weight: 900; margin-top: 16px; }
.footer { padding: 38px 7%; background: #090504; border-top: 1px solid var(--line); display: grid; gap: 22px; }
.footer-brand { display: flex; gap: 12px; align-items: center; }
.footer-brand img { width: 36px; }
.footer-brand p { margin: 4px 0 0; color: var(--muted); }
.footer-links { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-links a, .footer a { color: var(--accent); text-decoration: none; font-weight: 800; }
.copyright { color: var(--muted); margin: 0; }
.legal-page { max-width: 900px; margin: 0 auto; padding: 80px 7%; }
.legal-page h1 { font-size: 48px; }
.legal-page h2 { font-size: 26px; margin-top: 34px; }
.legal-page p { color: var(--muted); line-height: 1.75; }
.legal-page a { color: var(--accent); }

@media (max-width: 980px) {
  .menu-toggle { display: block; }
  nav { display: none; position: absolute; top: 76px; left: 0; right: 0; padding: 20px 7%; background: #140b0a; border-bottom: 1px solid var(--line); flex-direction: column; align-items: flex-start; }
  nav.open { display: flex; }
  .hero, .split-section { grid-template-columns: 1fr; }
  .phone-shell { min-height: 480px; }
  .phone-screen, .feed-video-card { min-height: 445px; height: 445px; }
  .feature-grid, .feature-grid.four, .feature-grid.three { grid-template-columns: 1fr; }
  form { flex-direction: column; }
}
