/* ── Daily Focus — Static Page Styles (Privacy / Terms / Support) ── */

.static-layout {
  min-height: 100vh;
  padding-bottom: 60px;
}

.static-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 48px 24px 0;
}

/* ── Hero header ── */
.static-hero {
  margin-bottom: 40px;
}
.static-hero h1 {
  font-family: var(--serif);
  font-size: 34px;
  color: var(--text);
  letter-spacing: -0.3px;
  margin-bottom: 12px;
}
.static-updated {
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  font-weight: 500;
  color: var(--accent);
  background: var(--accent-light);
  padding: 5px 12px;
  border-radius: 20px;
}

/* ── Section headings/body ── */
.static-content h2 {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--text);
  margin: 36px 0 14px;
  padding-top: 4px;
}
.static-content > h2:first-of-type { margin-top: 0; }

.static-content p {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 14px;
}
.static-content p:last-child { margin-bottom: 0; }
.static-content strong { color: var(--text); font-weight: 500; }

.static-content a {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid var(--accent-light);
  transition: border-color var(--transition);
}
.static-content a:hover { border-color: var(--accent); }

.static-content ul {
  list-style: none;
  padding: 0;
  margin: 0 0 14px;
}
.static-content ul li {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.7;
  padding-left: 20px;
  position: relative;
  margin-bottom: 7px;
}
.static-content ul li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--text-hint);
}

/* ── "In short" callout box, with checkmark bullets ── */
.callout-box {
  background: var(--accent-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 26px;
  margin-bottom: 8px;
}
.callout-box .callout-title {
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 14px;
}
.callout-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.callout-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14.5px;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 10px;
}
.callout-list li:last-child { margin-bottom: 0; }
.callout-list li .check-icon {
  flex-shrink: 0;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}
.callout-list li .check-icon svg {
  width: 11px; height: 11px;
  stroke: #fff; fill: none;
  stroke-width: 3; stroke-linecap: round; stroke-linejoin: round;
}

/* ── "What we don't do" — red cross list ── */
.cross-list {
  list-style: none;
  padding: 0;
  margin: 0 0 14px;
}
.cross-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 10px;
}
.cross-list li:last-child { margin-bottom: 0; }
.cross-list li .cross-icon {
  flex-shrink: 0;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--danger-light);
  border: 1px solid var(--danger-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}
.cross-list li .cross-icon svg {
  width: 10px; height: 10px;
  stroke: var(--danger); fill: none;
  stroke-width: 3; stroke-linecap: round;
}

/* ── Card grid (e.g. "How we protect your data") ── */
.protect-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 14px;
}
@media (max-width: 560px) {
  .protect-grid { grid-template-columns: 1fr; }
}
.protect-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 18px;
}
.protect-card-title {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 6px;
}
.protect-card-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── Contact / support card ── */
.support-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 20px;
  margin: 24px 0 8px;
}
.support-icon {
  width: 40px; height: 40px;
  background: var(--accent-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.support-icon svg {
  width: 19px; height: 19px;
  stroke: var(--accent); fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}
.support-card-label {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 2px;
}
.support-card-value a {
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  border-bottom: none;
}
.support-card-value a:hover { color: var(--accent); }

/* ── FAQ items ── */
.faq-item {
  border-bottom: 1px solid var(--border);
  padding-bottom: 18px;
  margin-bottom: 18px;
}
.faq-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.faq-item p { margin-bottom: 0; }
.faq-item strong {
  display: block;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 6px;
}

/* ── Cross-page footer nav ── */
.footer-links {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.static-content .footer-links a {
  color: var(--text-hint);
  border-bottom: none;
}
.static-content .footer-links a:hover {
  color: var(--text-muted);
}
.timezone-note {
  font-size: 0.8rem;
  color: #888;
  text-align: center;
  margin-top: 1rem;
}