/* rapper.studio — palette lifted straight from the app's Theme.swift */
:root {
  --ink: #0C0C10;
  --ink-2: #141019;
  --surface: #16161D;
  --surface-2: #1F1F29;
  --border: #33333F;
  --gold: #F5C518;
  --magenta: #FF2E63;
  --violet: #9D4EDD;
  --lime: #D7FF3E;
  --text: #F4F4F6;
  --text-2: #A0A0AE;
  --muted: #66666F;
  --display: "Big Shoulders Display", "Arial Narrow", Impact, sans-serif;
  --body: "Archivo", "Helvetica Neue", Arial, sans-serif;
  --mono: "JetBrains Mono", "SF Mono", Menlo, monospace;
  --warm: linear-gradient(90deg, var(--gold), var(--magenta));
  --brand: linear-gradient(135deg, var(--gold), var(--magenta) 55%, var(--violet));
  --max: 1120px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ink);
  color: var(--text);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
img { max-width: 100%; height: auto; display: block; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 4px; }

.wrap { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }

/* ---------- nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 10;
  background: color-mix(in srgb, var(--ink) 82%, transparent);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav .wrap { display: flex; align-items: center; gap: 28px; height: 64px; }
.wordmark {
  display: inline-flex; align-items: center; gap: 10px;
  text-decoration: none; font-family: var(--display); font-weight: 900;
  font-size: 30px; letter-spacing: 0.04em; line-height: 1;
}
.wordmark img { width: 34px; height: 34px; border-radius: 9px; }
.wordmark span {
  background: var(--brand); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.nav-links { display: flex; gap: 22px; margin-left: auto; font-size: 15px; color: var(--text-2); }
.nav-links a { text-decoration: none; }
.nav-links a:hover { color: var(--text); }
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 13px 22px; border-radius: 999px; text-decoration: none;
  font-weight: 700; font-size: 16px; line-height: 1; color: #0C0C10;
  background: var(--warm); border: 0; cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease;
}
.btn:hover { transform: translateY(-1px); box-shadow: 0 10px 30px rgba(255, 46, 99, .28); }
.btn.small { padding: 10px 16px; font-size: 14px; }
.btn.ghost { background: var(--surface-2); color: var(--text); border: 1px solid var(--border); }
.btn.ghost:hover { box-shadow: none; border-color: var(--text-2); }

/* ---------- hero ---------- */
.hero { position: relative; overflow: hidden; padding: 72px 0 40px; }
.hero::before {
  content: ""; position: absolute; inset: -20% -10% auto -10%; height: 90%;
  background:
    radial-gradient(40% 55% at 72% 40%, rgba(157, 78, 221, .32), transparent 70%),
    radial-gradient(30% 45% at 82% 70%, rgba(255, 46, 99, .22), transparent 70%),
    radial-gradient(35% 45% at 20% 30%, rgba(245, 197, 24, .12), transparent 70%);
  pointer-events: none;
}
.hero .wrap { position: relative; display: grid; grid-template-columns: 1.15fr .85fr; gap: 48px; align-items: center; }
.eyebrow {
  font-family: var(--mono); font-size: 12px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold); margin: 0 0 18px;
}
h1 {
  font-family: var(--display); font-weight: 900; text-transform: uppercase;
  font-size: clamp(64px, 9.5vw, 128px); line-height: .9; letter-spacing: .005em; margin: 0 0 24px;
}
h1 em { font-style: normal; background: var(--brand); -webkit-background-clip: text; background-clip: text; color: transparent; }
.lede { font-size: 20px; color: var(--text-2); max-width: 520px; margin: 0 0 30px; }
.cta-row { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; }
.cta-note { font-size: 14px; color: var(--muted); }
.phone {
  width: min(380px, 100%); aspect-ratio: 800 / 1734; margin: 0 auto;
  border-radius: 44px; overflow: hidden; background: #050507;
  border: 1px solid var(--border); box-shadow: 0 40px 90px rgba(0,0,0,.6), 0 0 0 7px #050507, 0 0 0 8px #2a2a36;
}
.phone img { width: 100%; height: 100%; object-fit: cover; }
.hero .phone { animation: float 7s ease-in-out infinite; }
@keyframes float { 0%, 100% { transform: translateY(0) rotate(-1.2deg); } 50% { transform: translateY(-12px) rotate(-1.2deg); } }

/* ---------- ticker (signature) ---------- */
.ticker {
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  overflow: hidden; white-space: nowrap; padding: 14px 0;
  font-family: var(--mono); font-size: 14px; letter-spacing: .08em; text-transform: uppercase;
  background: var(--ink-2);
}
.ticker-track { display: inline-flex; gap: 0; animation: slide 46s linear infinite; }
.ticker span { display: inline-block; padding: 0 28px; color: var(--text-2); }
.ticker b { color: var(--gold); font-weight: 700; }
.ticker i { font-style: normal; color: var(--magenta); }
@keyframes slide { to { transform: translateX(-50%); } }

/* ---------- sections ---------- */
section { padding: 96px 0; }
.section-head { max-width: 640px; margin-bottom: 48px; }
h2 {
  font-family: var(--display); font-weight: 900; text-transform: uppercase;
  font-size: clamp(44px, 6vw, 76px); line-height: .92; margin: 0 0 16px;
}
.section-head p { color: var(--text-2); font-size: 18px; margin: 0; }

/* two ways in */
.modes { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.mode {
  background: var(--surface); border: 1px solid var(--border); border-radius: 28px;
  padding: 36px; display: flex; flex-direction: column; gap: 22px;
}
.mode .tag {
  display: inline-flex; align-items: center; gap: 8px; width: max-content;
  font-family: var(--mono); font-size: 13px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  padding: 9px 14px; border-radius: 999px; color: #fff;
  background: linear-gradient(90deg, var(--violet), #6E2FB5);
  box-shadow: 0 0 0 1px rgba(157, 78, 221, .5), 0 8px 24px rgba(157, 78, 221, .35);
}
.mode .tag.hot { background: var(--warm); color: #0C0C10; box-shadow: 0 8px 24px rgba(255, 46, 99, .3); }
.mode h3 { font-family: var(--display); font-weight: 900; text-transform: uppercase; font-size: 40px; line-height: .95; margin: 0; }
.mode p { color: var(--text-2); margin: 0; }
.stages { list-style: none; padding: 0; margin: 6px 0 0; display: grid; gap: 12px; }
.stages li { display: grid; grid-template-columns: 34px 1fr; gap: 12px; align-items: baseline; }
.stages .num {
  font-family: var(--mono); font-size: 12px; font-weight: 700; padding: 3px 6px; border-radius: 6px;
  background: var(--warm); color: #0C0C10; text-align: center;
}
.stages b { font-family: var(--display); font-size: 20px; letter-spacing: .06em; text-transform: uppercase; }
.stages span { display: block; color: var(--text-2); font-size: 15px; }
.mode .phone { width: min(300px, 100%); border-radius: 36px; }
.mode-shot { margin-top: auto; padding-top: 12px; display: flex; justify-content: center; }

/* booth */
.booth { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card { background: var(--surface); border: 1px solid var(--border); border-radius: 24px; overflow: hidden; }
.card .shot { display: flex; justify-content: center; padding: 28px 28px 8px; background: linear-gradient(180deg, var(--surface-2), var(--surface)); }
.card .phone { width: 240px; border-radius: 30px; box-shadow: 0 24px 50px rgba(0,0,0,.55), 0 0 0 6px #050507, 0 0 0 7px #2a2a36; }
.card .body { padding: 24px 26px 28px; }
.card h3 { font-family: var(--display); font-weight: 900; text-transform: uppercase; font-size: 30px; margin: 0 0 8px; line-height: 1; }
.card p { color: var(--text-2); margin: 0; font-size: 15px; }

/* free block */
.free { background: var(--surface); border: 1px solid var(--border); border-radius: 32px; padding: 56px; display: grid; grid-template-columns: 1.2fr .8fr; gap: 40px; align-items: center; }
.free ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.free li { display: flex; gap: 12px; align-items: flex-start; color: var(--text-2); }
.free li::before { content: "▲"; color: var(--lime); font-size: 10px; margin-top: 7px; }
.free .cta-row { justify-content: flex-end; }

/* legal + support prose */
.prose { max-width: 760px; padding: 64px 0 96px; }
.prose h1 { font-size: clamp(48px, 7vw, 84px); margin-bottom: 8px; }
.prose .meta { font-family: var(--mono); font-size: 13px; color: var(--muted); letter-spacing: .1em; text-transform: uppercase; margin-bottom: 40px; }
.prose h2 { font-size: 30px; margin: 44px 0 12px; }
.prose h3 { font-size: 19px; margin: 24px 0 8px; }
.prose p, .prose li { color: var(--text-2); }
.prose strong { color: var(--text); }
.prose a { color: var(--gold); }
.prose table { width: 100%; border-collapse: collapse; font-size: 15px; }
.prose td { padding: 10px 0; border-bottom: 1px solid var(--border); color: var(--text-2); vertical-align: top; }
.prose td:first-child { color: var(--text); width: 45%; padding-right: 16px; }
.prose ul { padding-left: 22px; }
.prose li { margin: 6px 0; }
.faq details { border-top: 1px solid var(--border); padding: 18px 0; }
.faq details:last-child { border-bottom: 1px solid var(--border); }
.faq summary { cursor: pointer; font-weight: 700; color: var(--text); font-size: 18px; list-style: none; display: flex; justify-content: space-between; gap: 16px; }
.faq summary::after { content: "+"; color: var(--gold); font-family: var(--mono); }
.faq details[open] summary::after { content: "–"; }
.faq details p { margin: 12px 0 0; }

/* footer */
footer { border-top: 1px solid var(--border); padding: 40px 0 48px; color: var(--muted); font-size: 14px; }
footer .wrap { display: flex; flex-wrap: wrap; gap: 20px 32px; align-items: center; }
footer nav { display: flex; gap: 22px; margin-left: auto; }
footer a { text-decoration: none; color: var(--text-2); }
footer a:hover { color: var(--text); }

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .hero .wrap { grid-template-columns: 1fr; gap: 40px; }
  .hero { padding-top: 48px; }
  .modes, .booth { grid-template-columns: 1fr; }
  .free { grid-template-columns: 1fr; padding: 36px; }
  .free .cta-row { justify-content: flex-start; }
  .nav-links { display: none; }
  section { padding: 72px 0; }
}
@media (prefers-reduced-motion: reduce) {
  .hero .phone, .ticker-track { animation: none; }
  html { scroll-behavior: auto; }
}
