/* Flim landing — warm dark + amber accent */

:root {
  --bg: #111012;
  --bg-elev: #1c1a1e;
  --bg-surface: #252328;
  --text: #f5f0eb;
  --text-secondary: #a39e98;
  --text-muted: #6b6660;
  --accent: #f5a623;
  --accent-hover: #d99020;
  --red: #ff4f5e;
  --border: #2a282d;
}

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

html,
body {
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", system-ui,
    sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.hero {
  max-width: 480px;
  width: 100%;
  text-align: center;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 16px rgba(255, 79, 94, 0.5);
}

h1 {
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -1.5px;
  color: var(--text);
}

.tagline {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.lede {
  font-size: 16px;
  line-height: 1.55;
  color: var(--text-secondary);
  margin-bottom: 32px;
}

.cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.btn {
  display: block;
  padding: 14px 24px;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.15s ease, transform 0.05s ease;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: var(--accent);
  color: #1a1410;
}

.btn-primary:hover {
  background: var(--accent-hover);
}

.btn-secondary {
  background: var(--bg-elev);
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  background: var(--bg-surface);
}

.micro {
  font-size: 12px;
  color: var(--text-muted);
}

.micro a {
  color: var(--accent);
  text-decoration: none;
}

.micro a:hover {
  text-decoration: underline;
}

/* Roll preview card (for /roll/[id] page) */

.roll-card {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px 24px;
  margin-bottom: 24px;
}

.roll-icon {
  font-size: 36px;
  margin-bottom: 12px;
}

.roll-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}

.roll-id {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 1px;
}
