/* Cardsworth web theme — Endorsed Expedition v2.0 (light), Alpenglow accent.
   Drop-in for cardsworth-privacy.html / cardsworth-support.html on
   fourteenerlabs.com. Same light base as recall-theme.css, with Cardsworth's
   alpenglow accent in place of Recall's fern. */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;600;800&display=swap');

:root {
  --bg: #F5F1EA;        /* Summit */
  --card: #EAE3D6;      /* Vellum */
  --ink: #0D1B2A;       /* Alpine Night */
  --sub: #3A4A57;       /* softened ink for running text */
  --accent: #C86A4E;    /* Alpenglow, darkened for AA on Summit/Vellum */
  --accent-icon: #E88B74; /* Alpenglow at full chroma for the icon tile */
  --stone: #8C857A;     /* Stone — support/labels (large text only) */
  --line: #DDD3C0;      /* hairlines one step off Vellum */
}

* { 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; }

/* ---------- header ---------- */
.app-header {
  text-align: center; margin-bottom: 48px;
  padding-bottom: 32px; border-bottom: 1px solid var(--line);
}
.app-icon {
  width: 80px; height: 80px; background: var(--accent-icon); border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.app-icon svg { width: 46px; height: 46px; }
.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);
}

/* ---------- type ---------- */
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-color: rgba(200, 106, 78, 0.35); }
a:hover { text-decoration-color: var(--accent); }

.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;
}

/* ---------- cards ---------- */
.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; }

/* ---------- support page ---------- */
.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 ---------- */
.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; }
