/* ReelWatch — Cinema Scarlet on Pure Black */
:root {
  --black: #000000;
  --surface: #121212;
  --elevated: #1e1e1e;
  --border: #2a2a2a;
  --scarlet: #ff2d55;
  --scarlet-dim: rgba(255, 45, 85, 0.16);
  --white: #ffffff;
  --text-secondary: #a1a1aa;
  --text-tertiary: #71717a;
  --radius: 16px;
  --maxw: 760px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica,
    Arial, sans-serif;
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--scarlet);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 22px;
}

/* Header */
.site-header {
  border-bottom: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.85);
  position: sticky;
  top: 0;
  backdrop-filter: blur(10px);
  z-index: 10;
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 19px;
  color: var(--white);
}

.brand:hover {
  text-decoration: none;
}

.brand .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--scarlet);
  box-shadow: 0 0 14px rgba(255, 45, 85, 0.7);
}

.nav {
  display: flex;
  gap: 22px;
  font-size: 15px;
}

.nav a {
  color: var(--text-secondary);
}

.nav a:hover {
  color: var(--white);
  text-decoration: none;
}

/* Hero */
.hero {
  text-align: center;
  padding: 88px 0 64px;
}

.hero h1 {
  font-size: 46px;
  line-height: 1.1;
  margin: 0 0 18px;
  letter-spacing: -0.02em;
}

.hero h1 .accent {
  color: var(--scarlet);
}

.hero .tagline {
  font-size: 20px;
  color: var(--text-secondary);
  max-width: 540px;
  margin: 0 auto 16px;
}

.hero .blurb {
  font-size: 16px;
  color: var(--text-tertiary);
  max-width: 560px;
  margin: 0 auto 36px;
}

.cta-row {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 16px;
  border: 1px solid var(--border);
}

.btn:hover {
  text-decoration: none;
}

.btn-primary {
  background: var(--scarlet);
  color: var(--white);
  border-color: var(--scarlet);
}

.btn-primary:hover {
  background: #ff4567;
}

.btn-ghost {
  background: var(--surface);
  color: var(--white);
}

.btn-ghost:hover {
  background: var(--elevated);
}

/* Feature cards */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 12px 0 72px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
}

.card h3 {
  margin: 0 0 8px;
  font-size: 17px;
}

.card p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 15px;
}

/* Content pages */
.page {
  padding: 56px 0 80px;
}

.page h1 {
  font-size: 36px;
  margin: 0 0 8px;
  letter-spacing: -0.02em;
}

.page .updated {
  color: var(--text-tertiary);
  font-size: 14px;
  margin: 0 0 32px;
}

.page h2 {
  font-size: 22px;
  margin: 40px 0 12px;
  letter-spacing: -0.01em;
}

.page h3 {
  font-size: 17px;
  margin: 24px 0 8px;
  color: var(--white);
}

.page p,
.page li {
  color: var(--text-secondary);
}

.page strong {
  color: var(--white);
  font-weight: 600;
}

.page ul {
  padding-left: 22px;
}

.page li {
  margin-bottom: 8px;
}

.lead {
  font-size: 18px;
  color: var(--white) !important;
}

.callout {
  background: var(--scarlet-dim);
  border: 1px solid rgba(255, 45, 85, 0.35);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin: 24px 0;
}

.callout p {
  margin: 0;
  color: var(--white);
}

.contact-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  margin: 24px 0;
}

.contact-box p {
  margin: 0;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 40px 0;
  color: var(--text-tertiary);
  font-size: 14px;
}

.site-footer .wrap {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--text-secondary);
}

.attribution {
  color: var(--text-tertiary);
  line-height: 1.5;
}

@media (max-width: 680px) {
  .hero {
    padding: 56px 0 44px;
  }
  .hero h1 {
    font-size: 34px;
  }
  .hero .tagline {
    font-size: 18px;
  }
  .features {
    grid-template-columns: 1fr;
    padding-bottom: 52px;
  }
  .page h1 {
    font-size: 29px;
  }
  .nav {
    gap: 16px;
  }
  body {
    font-size: 16px;
  }
}
