/* DailyDash marketing/legal site — "Terminus Warm" design system.
   Self-contained: self-hosted Manrope, no third-party requests (fitting for a privacy site). */

@font-face {
  font-family: 'Manrope';
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  src: url('/fonts/Manrope_400Regular.ttf') format('truetype');
}
@font-face {
  font-family: 'Manrope';
  font-weight: 600;
  font-style: normal;
  font-display: swap;
  src: url('/fonts/Manrope_600SemiBold.ttf') format('truetype');
}
@font-face {
  font-family: 'Manrope';
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  src: url('/fonts/Manrope_700Bold.ttf') format('truetype');
}
@font-face {
  font-family: 'Manrope';
  font-weight: 800;
  font-style: normal;
  font-display: swap;
  src: url('/fonts/Manrope_800ExtraBold.ttf') format('truetype');
}

:root {
  --bg: #FAF8F4;
  --surface: #FFFFFF;
  --surface-alt: #F1EEE8;
  --hairline: #EAE6DE;
  --text: #211D28;
  --text-secondary: #6A6474;
  --accent: #2563C4;
  --accent-tint: #2563C41F;
  --live: #167A43;
  --radius: 14px;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #17161B;
    --surface: #221F28;
    --surface-alt: #2C2934;
    --hairline: #34303E;
    --text: #F5F3F7;
    --text-secondary: #A9A4B3;
    --accent: #5C9DFF;
    --accent-tint: #5C9DFF29;
    --live: #3BCC7A;
  }
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 28px 20px 64px;
}

/* Brand header */
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0 28px;
}
.brand a { display: flex; align-items: center; gap: 12px; text-decoration: none; color: inherit; }
.brand svg { display: block; width: 38px; height: 38px; }
.brand .name {
  font-weight: 800;
  font-size: 24px;
  letter-spacing: -0.01em;
}

/* Typography */
h1 {
  font-weight: 800;
  font-size: 34px;
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin: 8px 0 12px;
}
h2 {
  font-weight: 700;
  font-size: 21px;
  letter-spacing: -0.01em;
  margin: 36px 0 10px;
}
p { margin: 0 0 14px; }
.lead {
  font-size: 19px;
  color: var(--text-secondary);
  margin-bottom: 24px;
}
.meta { color: var(--text-secondary); font-size: 15px; }
.updated { color: var(--text-secondary); font-size: 15px; margin: 0 0 24px; }

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

ul { margin: 0 0 16px; padding-left: 20px; }
li { margin: 0 0 8px; }

strong { font-weight: 700; }

/* Cards / sections */
.card {
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: 20px 22px;
  margin: 0 0 20px;
}
.card h2 { margin-top: 0; }
.card p:last-child { margin-bottom: 0; }

/* Feature list */
.features {
  list-style: none;
  padding: 0;
  margin: 8px 0 24px;
  display: grid;
  gap: 12px;
}
.features li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin: 0;
}
.features .dot {
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--live);
  margin-top: 9px;
}

/* Chips / badge slot */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-tint);
  color: var(--accent);
  font-weight: 700;
  font-size: 15px;
  padding: 10px 16px;
  border-radius: 10px;
}
.cta { margin: 4px 0 8px; }

/* Support email button */
.email {
  display: inline-flex;
  align-items: center;
  font-weight: 700;
}

/* Footer */
footer {
  margin-top: 48px;
  padding-top: 22px;
  border-top: 1px solid var(--hairline);
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.6;
}
footer a { color: var(--text-secondary); text-decoration: underline; }
footer a:hover { color: var(--accent); }
footer .row { margin-bottom: 8px; }

.backlink {
  display: inline-block;
  margin-bottom: 20px;
  font-weight: 600;
  font-size: 15px;
}

@media (max-width: 480px) {
  body { font-size: 16px; }
  h1 { font-size: 29px; }
  .wrap { padding: 20px 18px 56px; }
}
