/* ═══════════════════════════════════════════════════════════════════
   TITAN OPPORTUNITY FOUNDATION — brand tokens + placeholder landing.

   Sibling identity to Titan Real Estate Valuation: shared typography
   (Playfair Display / DM Sans) and midnight base, shifted accent
   (verdant green) so the Foundation reads as related but distinct.

   NOTE: this stylesheet serves the titanopportunityfoundation site
   ONLY (public-tof/). Titan Valuation lives in public/.
═══════════════════════════════════════════════════════════════════ */

:root {
  --midnight:  #0A1520;
  --navy:      #162D4E;
  --verdant:   #2F7D5B;   /* Foundation accent */
  --verdant-2: #4CA37B;
  --ivory:     #F4EFE3;
  --parchment: #EBE3D0;
  --pewter:    #918D87;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, -apple-system, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

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

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--midnight);
  color: rgba(244, 239, 227, 0.78);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* Soft radial wash so the flat midnight has some depth */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(900px 520px at 50% -10%, rgba(47, 125, 91, 0.20), transparent 70%),
    radial-gradient(700px 480px at 85% 110%, rgba(22, 45, 78, 0.55), transparent 70%);
  pointer-events: none;
}

.tof-shell {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 96px 24px 72px;
}

.tof-inner {
  max-width: 720px;
  text-align: center;
}

.tof-wordmark {
  font-family: var(--font-display);
  font-size: 15px;
  letter-spacing: 0.30em;
  text-transform: uppercase;
  color: var(--ivory);
  margin-bottom: 44px;
}
.tof-wordmark b { color: var(--verdant-2); font-weight: 600; }

h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(32px, 6vw, 54px);
  line-height: 1.18;
  letter-spacing: -0.015em;
  color: var(--ivory);
  margin: 0 0 24px;
}

.tof-sub {
  max-width: 560px;
  margin: 0 auto;
  font-size: 17px;
  font-weight: 300;
}

.tof-rule {
  width: 56px;
  height: 2px;
  background: var(--verdant-2);
  margin: 44px auto 32px;
}

.tof-soon {
  margin: 0 0 14px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--verdant-2);
}

.tof-contact {
  margin: 0;
  font-size: 15px;
  color: rgba(244, 239, 227, 0.55);
}
.tof-contact a {
  color: var(--ivory);
  text-decoration: none;
  border-bottom: 1px solid rgba(76, 163, 123, 0.5);
  padding-bottom: 1px;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.tof-contact a:hover { color: var(--verdant-2); border-bottom-color: var(--verdant-2); }

.tof-foot {
  position: relative;
  padding: 26px 24px;
  text-align: center;
  font-size: 13px;
  color: rgba(244, 239, 227, 0.38);
  border-top: 1px solid rgba(244, 239, 227, 0.09);
}

@media (max-width: 600px) {
  body { font-size: 16px; }
  .tof-shell { padding: 72px 20px 56px; }
  .tof-wordmark { font-size: 13px; letter-spacing: 0.24em; margin-bottom: 34px; }
}
