/* GREATEST HOMES — editorial, spare, neutral.
   The look has one job: read as a publication, not as a brand's marketing site.
   Serif display + generous air + a single accent. Nothing that looks like SaaS. */

:root {
  --ink: #F5F0EE;          /* cream — the identity's light ink on dark */
  --ink-dim: #a9a5a2;
  --bg: #0b0c10;           /* the placeholder profile-photo surface */
  --bg-raised: #14161c;
  --rule: #262a33;
  --accent: #EB6851;       /* coral, used once — for live/action only */
  --measure: 34rem;
}

* { box-sizing: border-box; }

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

main, .masthead, footer { max-width: 46rem; margin: 0 auto; padding: 0 1.5rem; }

/* ---- masthead ---- */
.masthead { padding-top: 5rem; padding-bottom: 3rem; text-align: center; }
.kicker {
  font-size: 0.75rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-dim); margin: 0 0 1.25rem;
}
h1 {
  font-family: "Source Serif 4", Georgia, serif;
  font-weight: 600; font-size: clamp(2.6rem, 8vw, 4.2rem);
  line-height: 1.05; letter-spacing: -0.02em; margin: 0 0 1.5rem;
}
.standfirst {
  font-family: "Source Serif 4", Georgia, serif;
  font-size: clamp(1.1rem, 2.6vw, 1.35rem); line-height: 1.55;
  color: var(--ink-dim); max-width: var(--measure); margin: 0 auto;
}

/* ---- sections ---- */
section { padding: 3rem 0; border-top: 1px solid var(--rule); }
h2 {
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 1.5rem; font-weight: 600; letter-spacing: -0.01em; margin: 0 0 1.5rem;
}
h3 { font-size: 1rem; font-weight: 500; margin: 0 0 0.5rem; }
p { max-width: var(--measure); }

/* ---- markets ---- */
.market-list { list-style: none; margin: 0; padding: 0; }
.market-list li {
  display: flex; align-items: baseline; gap: 1rem;
  padding: 0.9rem 0; border-bottom: 1px solid var(--rule);
}
.market-name { font-family: "Source Serif 4", Georgia, serif; font-size: 1.25rem; }
.live {
  font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--accent); border: 1px solid var(--accent);
  border-radius: 999px; padding: 0.15rem 0.6rem;
}
.note { color: var(--ink-dim); font-size: 0.95rem; margin-top: 1.25rem; }

/* ---- how it works ---- */
.rules { display: grid; gap: 2rem; }
@media (min-width: 40rem) { .rules { grid-template-columns: 1fr 1fr; gap: 2rem 3rem; } }
.rules article p { color: var(--ink-dim); font-size: 0.95rem; margin: 0; }

/* ---- calls to action ---- */
.act p { color: var(--ink-dim); }
.cta { margin-top: 1.5rem; }
.cta a {
  display: inline-block; font-family: "Source Serif 4", Georgia, serif;
  font-size: 1.2rem; color: var(--ink); text-decoration: none;
  border-bottom: 2px solid var(--accent); padding-bottom: 2px;
}
.cta a:hover { color: var(--accent); }
.takedown { background: var(--bg-raised); }
.takedown h2, .takedown p { position: relative; }

/* Give the raised block real edge-to-edge presence on small screens. */
.takedown {
  margin: 0 -1.5rem; padding-left: 1.5rem; padding-right: 1.5rem;
}

/* ---- footer ---- */
footer { padding: 3rem 1.5rem 4rem; border-top: 1px solid var(--rule); color: var(--ink-dim); }
footer p { margin: 0 0 0.75rem; }
.small { font-size: 0.85rem; opacity: 0.75; }

/* The page commits to a single dark editorial look on purpose — it is a
   masthead, not an app surface, so it does not follow the viewer's theme. */
