/* ReelLog site — tokens from the app's DesignSystem (Doc 07 §3) */

:root {
  --background: #0e0e11;
  --surface-elevated: #141418;
  --hairline: #222228;
  --border: #2c2c34;
  --text-primary: #f2f2f4;
  --text-secondary: #a8a8b0;
  --text-muted: #6b6b73;
  --gold: #e6c56a;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  background: var(--background);
  color: var(--text-secondary);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.page {
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
  padding: 48px 24px 64px;
  flex: 1;
}

/* --- Header --- */

header {
  border-bottom: 0.5px solid var(--hairline);
  padding: 18px 24px;
}

header nav {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 28px;
}

header a {
  color: var(--text-muted);
  font-size: 14px;
  text-decoration: none;
}
header a:hover { color: var(--text-secondary); }
header a.active { color: var(--text-primary); }

/* --- Landing --- */

.hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 24px;
}

.hero .star {
  color: var(--gold);
  font-size: 28px;
  margin-bottom: 8px;
  line-height: 1;
  text-shadow:
    0 0 14px rgba(230, 197, 106, 0.55),
    0 0 44px rgba(230, 197, 106, 0.22);
}

.hero h1 {
  color: var(--text-primary);
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
  line-height: 1.15;
}

.hero .tagline {
  color: var(--text-secondary);
  font-size: 19px;
  line-height: 1.4;
  max-width: 26em;
}

.hero .tagline-sub {
  color: var(--text-muted);
  font-size: 16px;
  margin-top: -4px;
  line-height: 1.4;
  max-width: 28em;
}

.hero .soon {
  color: var(--text-muted);
  font-size: 14px;
  margin-top: 18px;
}

/* --- Content pages --- */

a { color: var(--text-primary); text-decoration: underline; text-underline-offset: 3px; text-decoration-color: var(--border); }
a:hover { text-decoration-color: var(--gold); }

.back {
  display: inline-block;
  color: var(--text-muted);
  font-size: 14px;
  text-decoration: none;
  margin-bottom: 40px;
}
.back:hover { color: var(--text-secondary); }

h1.title {
  color: var(--text-primary);
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -0.3px;
  margin-bottom: 10px;
}

.lede { margin-bottom: 36px; }

h2 {
  color: var(--text-primary);
  font-size: 18px;
  font-weight: 600;
  margin: 36px 0 10px;
}

p { margin-bottom: 14px; }

ul { margin: 0 0 14px 1.2em; }
li { margin-bottom: 8px; }

strong { color: var(--text-primary); font-weight: 600; }

.updated {
  color: var(--text-muted);
  font-size: 14px;
  margin-top: 44px;
  padding-top: 20px;
  border-top: 0.5px solid var(--hairline);
}

/* --- Footer --- */

footer {
  border-top: 0.5px solid var(--hairline);
  padding: 22px 24px 32px;
  text-align: center;
  color: var(--text-muted);
  font-size: 14px;
}

footer a {
  color: var(--text-muted);
  text-decoration: none;
  margin: 0 10px;
}
footer a:hover { color: var(--text-secondary); }

@media (max-width: 480px) {
  .hero h1 { font-size: 32px; }
  .hero .tagline { font-size: 17px; }
}
