/* Evicted — landing site stylesheet.
   Mirrors the iOS app's navy + Bebas Neue branding. */

:root {
  --navy: #1A2456;
  --navy-deep: #131A40;
  --white: #FFFFFF;
  --white-muted: rgba(255, 255, 255, 0.70);
  --white-faint: rgba(255, 255, 255, 0.45);
  --yellow: #F5D547;
  --yellow-glow: rgba(245, 213, 71, 0.12);
  --yellow-edge: rgba(245, 213, 71, 0.35);
  --card: rgba(255, 255, 255, 0.06);
  --card-stroke: rgba(255, 255, 255, 0.10);
}

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

html, body {
  background: var(--navy);
  color: var(--white);
  font-family: 'Bebas Neue', system-ui, -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
  letter-spacing: 0.6px;
  line-height: 1.4;
  min-height: 100%;
}

/* System sans for paragraph body text so multi-line copy stays readable */
.prose, .legal p, .legal li, .feature p, .disclaimer p {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  letter-spacing: 0.1px;
  line-height: 1.6;
}

main { max-width: 720px; margin: 0 auto; padding: 56px 24px 40px; }

/* ---------- Landing hero ---------- */

.hero { text-align: center; padding: 16px 0 56px; }

.logo {
  width: 140px; height: 140px;
  margin-bottom: 20px;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.35));
}

h1.brand {
  font-size: clamp(64px, 12vw, 104px);
  letter-spacing: 6px;
  font-weight: 400;
  margin-bottom: 14px;
  line-height: 1;
}

.tagline {
  font-size: clamp(18px, 3vw, 22px);
  color: var(--white-muted);
  max-width: 520px;
  margin: 0 auto 28px;
}

.coming-soon {
  display: inline-block;
  font-size: 14px;
  letter-spacing: 3px;
  color: var(--yellow);
  background: var(--yellow-glow);
  border: 1px solid var(--yellow-edge);
  padding: 10px 22px;
  border-radius: 999px;
}

/* App Store download button. Apple-style black pill, sized as one prominent CTA. */
.app-store-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #000;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.14);
  padding: 10px 22px;
  border-radius: 12px;
  text-decoration: none;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.app-store-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.35);
}
.app-store-btn .apple-logo {
  width: 24px;
  height: 24px;
  color: var(--white);
  flex-shrink: 0;
}
.app-store-btn__sub {
  display: block;
  font-size: 10px;
  letter-spacing: 0.6px;
  line-height: 1.1;
  text-transform: none;
  color: rgba(255,255,255,0.85);
}
.app-store-btn__store {
  display: block;
  font-size: 20px;
  line-height: 1.1;
  letter-spacing: -0.2px;
  font-weight: 600;
  margin-top: 2px;
}

/* ---------- Features ---------- */

section + section { margin-top: 56px; }

h2 {
  font-size: 34px;
  letter-spacing: 3px;
  color: var(--yellow);
  text-align: center;
  font-weight: 400;
  margin-bottom: 28px;
}

.features { display: flex; flex-direction: column; gap: 14px; }

.feature {
  background: var(--card);
  border: 1px solid var(--card-stroke);
  border-radius: 16px;
  padding: 22px 22px 24px;
}

.feature .num {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 3px;
  color: var(--yellow);
  margin-bottom: 6px;
}

.feature h3 {
  font-size: 26px;
  letter-spacing: 1.5px;
  color: var(--white);
  font-weight: 400;
  margin-bottom: 6px;
}

.feature p {
  font-size: 15px;
  color: var(--white-muted);
}

/* ---------- Scoring quick reference ---------- */

.scoring {
  background: var(--card);
  border: 1px solid var(--card-stroke);
  border-radius: 16px;
  padding: 22px 24px;
  font-size: 16px;
}

.scoring h3 {
  font-size: 22px;
  letter-spacing: 2px;
  color: var(--yellow);
  margin-bottom: 14px;
  font-weight: 400;
}

.scoring dl { display: grid; grid-template-columns: 1fr auto; row-gap: 8px; column-gap: 24px; }
.scoring dt { color: var(--white-muted); }
.scoring dd { color: var(--white); font-feature-settings: "tnum"; }

.scoring-note {
  font-size: 13px;
  color: var(--white-faint);
  margin-top: 14px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  letter-spacing: 0.1px;
  line-height: 1.5;
}

/* ---------- Disclaimer ---------- */

.disclaimer { padding: 40px 0 8px; text-align: center; }

.disclaimer p {
  font-size: 13px;
  color: var(--white-faint);
  max-width: 540px;
  margin: 0 auto;
}

/* ---------- Footer ---------- */

footer {
  text-align: center;
  padding: 28px 24px 40px;
  border-top: 1px solid var(--card-stroke);
  margin-top: 16px;
  font-size: 14px;
  letter-spacing: 1.5px;
  color: var(--white-muted);
}

footer a { color: var(--white-muted); text-decoration: none; transition: color 0.15s; }
footer a:hover { color: var(--yellow); }
footer .sep { margin: 0 10px; color: var(--white-faint); }

@media (max-width: 480px) {
  footer { line-height: 2.2; }
  footer .sep { display: none; }
  footer a { display: block; }
}

/* ---------- Legal pages ---------- */

.legal { padding: 32px 0 24px; }

.legal h1.page-title {
  font-size: 44px;
  letter-spacing: 4px;
  color: var(--white);
  font-weight: 400;
  margin-bottom: 8px;
}

.legal .updated {
  font-size: 13px;
  color: var(--white-faint);
  margin-bottom: 28px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  letter-spacing: 0.5px;
}

.legal h2.section {
  font-size: 18px;
  letter-spacing: 2px;
  color: var(--white);
  text-align: left;
  margin: 28px 0 10px;
  font-weight: 400;
  text-transform: uppercase;
}

.legal p {
  font-size: 16px;
  color: var(--white-muted);
  margin-bottom: 12px;
}

.legal ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 12px;
}

.legal ul li {
  font-size: 16px;
  color: var(--white-muted);
  padding-left: 18px;
  position: relative;
  margin-bottom: 6px;
}

.legal ul li::before {
  content: "•";
  color: var(--yellow);
  position: absolute;
  left: 0;
}

.back-link {
  display: inline-block;
  font-size: 14px;
  letter-spacing: 2px;
  color: var(--white-muted);
  text-decoration: none;
  margin-bottom: 24px;
  transition: color 0.15s;
}

.back-link:hover { color: var(--yellow); }
