/* ============================================================
   STOREYS — Investor Call Card (high-level thesis, single screen)
   Same brand system as the full site: deep forest green + warm
   ivory + antique gold, Boska display / General Sans body.
   ============================================================ */

:root {
  --color-bg: #163a31;
  --color-bg-2: #0f2b24;
  --color-surface: rgba(246, 243, 234, 0.06);
  --color-border: rgba(246, 243, 234, 0.16);
  --color-text: #f6f3ea;
  --color-text-muted: #c3cdc4;
  --color-accent: #d3a75a;
  --color-accent-soft: rgba(211, 167, 90, 0.16);

  --font-display: 'Boska', 'Iowan Old Style', Georgia, serif;
  --font-body: 'General Sans', 'Inter', system-ui, sans-serif;
}

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

html, body {
  min-height: 100%;
  background: radial-gradient(circle at 20% -10%, #1f4b3f 0%, var(--color-bg) 45%, var(--color-bg-2) 100%);
  color: var(--color-text);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding: clamp(1.5rem, 4vw, 3.5rem);
}

.screen {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
  min-height: 0;
}

/* ---------- Brand mark ---------- */
.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: clamp(1.25rem, 3vw, 2rem);
}
.brand svg { width: 30px; height: 30px; color: var(--color-accent); flex-shrink: 0; }
.brand span {
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}
.brand b { color: var(--color-text); font-weight: 500; }

/* ---------- Hero thesis ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent);
  border: 1px solid var(--color-border);
  border-radius: 999px;
  padding: 0.4rem 0.9rem;
  margin-bottom: 1.25rem;
}
.eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--color-accent); }

h1 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.3rem, 5.4vw, 4.6rem);
  line-height: 1.04;
  letter-spacing: -0.01em;
  max-width: 15ch;
}
h1 em { font-style: italic; color: var(--color-accent); font-weight: 400; }

.thesis {
  margin-top: 1rem;
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  line-height: 1.45;
  color: var(--color-text-muted);
  max-width: 46ch;
}

/* ---------- Pillars row ---------- */
.pillars {
  margin-top: clamp(1.5rem, 3.2vw, 2.25rem);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--color-border);
  border: 1px solid var(--color-border);
  border-radius: 1rem;
  overflow: hidden;
}
.pillar {
  background: var(--color-surface);
  padding: clamp(1rem, 2vw, 1.4rem);
}
.pillar .tag {
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 0.65rem;
}
.pillar p {
  font-size: clamp(0.92rem, 1.15vw, 1.05rem);
  line-height: 1.45;
  color: var(--color-text);
}

/* ---------- Footer strip ---------- */
.foot {
  margin-top: clamp(1.25rem, 3vw, 1.75rem);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1.5rem;
  flex-wrap: wrap;
  border-top: 1px solid var(--color-border);
  padding-top: 1.25rem;
}
.foot .next-step {
  font-size: 0.95rem;
  color: var(--color-text-muted);
}
.foot .next-step b { color: var(--color-text); font-weight: 500; }
.foot a { color: var(--color-accent); text-decoration: none; border-bottom: 1px solid transparent; transition: border-color 160ms; }
.foot a:hover { border-color: var(--color-accent); }

.foot .contact {
  text-align: right;
  font-size: 0.85rem;
  color: var(--color-text-muted);
}
.foot .contact b { color: var(--color-text); font-weight: 500; display: block; margin-bottom: 0.15rem; }

.legal {
  margin-top: 0.7rem;
  font-size: 0.65rem;
  color: rgba(246, 243, 234, 0.38);
  line-height: 1.4;
  max-width: 90ch;
}

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .pillars { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .pillars { grid-template-columns: 1fr; }
  .foot { flex-direction: column; align-items: flex-start; }
  .foot .contact { text-align: left; }
}
