/* Summit Log legal and support pages — Fourteener Labs light theme. */
/* Accent: Columbine #7A68B5 (locked 2026-08-13) — text links darkened for contrast. */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;600;800&display=swap');

:root {
  --bg: #F5F1EA;
  --card: #EAE3D6;
  --ink: #0D1B2A;
  --sub: #3A4A57;
  --accent: #5F4FA0;
  --accent-icon: #7A68B5;
  --stone: #756F66;
  --line: #DDD3C0;
}

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

body {
  background: var(--bg); color: var(--ink);
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 17px; line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

.container { max-width: 720px; margin: 0 auto; padding: 60px 24px 80px; }
.app-header {
  text-align: center; margin-bottom: 48px;
  padding-bottom: 32px; border-bottom: 1px solid var(--line);
}
.app-icon {
  width: 80px; height: 80px; background: linear-gradient(180deg, #2A2438, #150F24); border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px; color: white; font-size: 46px; font-weight: 800;
  line-height: 1;
}
.app-header h1 {
  font-size: 30px; font-weight: 800; letter-spacing: -0.01em; margin-bottom: 6px;
}
.app-header .subtitle {
  font-size: 13px; font-weight: 600; color: var(--stone);
  letter-spacing: 0.12em; text-transform: uppercase;
}
.app-header .version-badge {
  display: inline-block; margin-top: 10px; padding: 3px 12px;
  background: var(--card); border-radius: 999px;
  font-size: 13px; font-weight: 600; color: var(--stone);
}

h2 { font-size: 22px; font-weight: 800; letter-spacing: -0.01em; margin: 44px 0 12px; }
h3 { font-size: 17px; font-weight: 600; margin: 24px 0 8px; }
p, li { color: var(--sub); margin-bottom: 12px; }
ul, ol { padding-left: 24px; margin-bottom: 16px; }
li { margin-bottom: 8px; }
strong { color: var(--ink); font-weight: 600; }
a { color: var(--accent); text-decoration: underline; text-decoration-thickness: 1px; }
a:hover { text-decoration-thickness: 2px; }
a:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; border-radius: 2px; }

.effective-date {
  display: inline-block; padding: 4px 14px; background: var(--card);
  border-radius: 999px; font-size: 14px; font-weight: 600; color: var(--stone);
  margin-bottom: 24px;
}
.highlight-box, .contact-box {
  background: var(--card); border-radius: 16px; padding: 24px 28px; margin: 24px 0;
}
.highlight-box p, .contact-box p { margin-bottom: 0; color: var(--ink); }
.contact-box { text-align: center; }
.contact-box p + p { margin-top: 8px; }
.feature-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px; margin: 24px 0;
}
.feature-card { background: var(--card); border-radius: 16px; padding: 20px 22px; }
.feature-card .icon { font-size: 26px; margin-bottom: 8px; }
.feature-card h3 { margin: 0 0 6px; font-size: 16px; }
.feature-card p { font-size: 14.5px; margin-bottom: 0; }
.faq-section { margin-top: 8px; }
.faq-item { background: var(--card); border-radius: 16px; padding: 20px 26px; margin: 14px 0; }
.faq-question { font-weight: 600; color: var(--ink); margin-bottom: 6px; }
.faq-answer { color: var(--sub); font-size: 15.5px; }
.footer {
  border-top: 1px solid var(--line); margin-top: 72px; padding-top: 32px;
  text-align: center; color: var(--stone); font-size: 13px;
}
.footer p { color: var(--stone); margin-bottom: 6px; }
.footer a { color: var(--stone); }
.footer a:hover { color: var(--ink); }
.footer .endorsement {
  font-weight: 600; letter-spacing: 0.11em; text-transform: uppercase;
  font-size: 12px; margin-bottom: 14px;
}
.footer .endorsement img { height: 20px; vertical-align: -5px; margin-right: 9px; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; }
}
