/* Shared styles for the What If marketing/legal pages */
:root {
  --bg: #0A1118;
  --bg-elev: #111A22;
  --surface: #19232E;
  --border: #2C394A;
  --text: #F1F5F9;
  --text-muted: #94A3B8;
  --text-faint: #5E6E80;
  --primary: #34D5B4;
  --accent: #FFB454;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI',
    Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}

.shell {
  max-width: 720px;
  margin: 0 auto;
  padding: 64px 24px 96px;
}

.eyebrow {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 700;
  margin: 0 0 12px;
}

h1 {
  font-size: 38px;
  line-height: 1.15;
  font-weight: 700;
  margin: 0 0 8px;
  letter-spacing: -0.02em;
}

h2 {
  font-size: 22px;
  line-height: 1.3;
  font-weight: 600;
  margin: 48px 0 12px;
  color: var(--text);
}

h3 {
  font-size: 17px;
  font-weight: 600;
  margin: 32px 0 8px;
}

p,
li {
  font-size: 16px;
  color: var(--text-muted);
  margin: 0 0 14px;
}

li {
  margin: 0 0 8px;
}

a {
  color: var(--primary);
  text-decoration: none;
  border-bottom: 1px solid rgba(52, 213, 180, 0.4);
}

a:hover {
  border-bottom-color: var(--primary);
}

.meta {
  font-size: 14px;
  color: var(--text-faint);
  margin-top: 0;
}

.divider {
  height: 1px;
  background: var(--border);
  margin: 48px 0;
  border: 0;
}

.footer {
  margin-top: 64px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-faint);
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  align-items: baseline;
}

.footer a {
  color: var(--text-muted);
  border-bottom-color: transparent;
}

.footer a:hover {
  color: var(--primary);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--text);
  border-bottom: none;
}

.brand-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 12px rgba(52, 213, 180, 0.6);
}

ul {
  padding-left: 20px;
}
