/* Donna — marketing & compliance site
 *
 * Since the DON-116 waitlist rebuild, index.html gets its look from waitlist.css and uses
 * NONE of the page rules below. The only things still live here are the shared tokens
 * (:root), the reset, and what privacy.html renders with: .wash, .container, header,
 * .brand, nav a, footer, .legal, .callout — plus the Fraunces/Karla @import, which is
 * privacy.html's alone now (the waitlist page uses a system stack).
 *
 * Everything else — .hero*, .kicker, .badge-beta, .cta-note, .features/.feature*,
 * .calendar-note*, the rise/pulse keyframes and their media queries — is dead code kept
 * out of that PR's scope deliberately. Safe to delete in its own change; check nothing
 * new has started using it first.
 */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght,SOFT@9..144,300..700,50&family=Karla:wght@400;500;700&display=swap');

:root {
  --blue: #4482C5;
  --blue-deep: #2E5E93;
  --gold: #AF9B46;
  --bg: #FAFAF7;
  --surface: #E9ECF4;
  --ink: #1A1C24;
  --ink-soft: #6E7282;
  --mauve: #BC7C9C;
  --green: #60992D;
  --serif: 'Fraunces', Georgia, serif;
  --sans: 'Karla', -apple-system, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

/* soft atmospheric wash behind the page content (privacy.html only — the waitlist page
   doesn't include the .wash element) */
.wash {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 55% 40% at 75% -5%, rgba(68, 130, 197, 0.13), transparent 70%),
    radial-gradient(ellipse 40% 32% at 8% 12%, rgba(175, 155, 70, 0.09), transparent 70%),
    var(--bg);
}

.container { max-width: 880px; margin: 0 auto; padding: 0 24px; }

/* ---------- header ---------- */
header {
  padding: 28px 0;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ink);
}
.brand img {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(26, 28, 36, 0.12);
}
.brand span {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 500;
}
nav a {
  color: var(--ink-soft);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  margin-left: 24px;
  transition: color 0.2s;
}
nav a:hover { color: var(--blue); }

/* ---------- hero ---------- */
.hero {
  padding: 90px 0 70px;
  text-align: left;
}
.hero .kicker {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  animation: rise 0.7s ease both;
}
.hero h1 {
  font-family: var(--serif);
  font-weight: 380;
  font-size: clamp(2.6rem, 6.5vw, 4.4rem);
  line-height: 1.08;
  letter-spacing: -0.015em;
  max-width: 15ch;
  animation: rise 0.7s 0.08s ease both;
}
.hero h1 em {
  font-style: italic;
  color: var(--blue);
}
.hero p.lede {
  margin-top: 26px;
  font-size: 1.2rem;
  color: var(--ink-soft);
  max-width: 52ch;
  animation: rise 0.7s 0.16s ease both;
}
.hero .cta-row {
  margin-top: 38px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  animation: rise 0.7s 0.24s ease both;
}
.badge-beta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--surface);
  border: 1px solid rgba(68, 130, 197, 0.25);
  color: var(--blue-deep);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 10px 18px;
  border-radius: 100px;
}
.badge-beta .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse 2.2s infinite;
}
.cta-note { color: var(--ink-soft); font-size: 0.95rem; }
.cta-note a { color: var(--blue); font-weight: 500; }

@keyframes rise {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: none; }
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(96, 153, 45, 0.4); }
  50% { box-shadow: 0 0 0 6px rgba(96, 153, 45, 0); }
}

/* ---------- features ---------- */
.features {
  padding: 30px 0 80px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.feature {
  background: #fff;
  border: 1px solid rgba(26, 28, 36, 0.07);
  border-radius: 18px;
  padding: 30px 26px;
  box-shadow: 0 1px 3px rgba(26, 28, 36, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.feature:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(68, 130, 197, 0.12);
}
.feature .glyph {
  font-family: var(--serif);
  font-size: 1.7rem;
  color: var(--gold);
  margin-bottom: 14px;
}
.feature h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.25rem;
  margin-bottom: 8px;
}
.feature p { color: var(--ink-soft); font-size: 0.98rem; }

/* ---------- calendar note ---------- */
.calendar-note {
  margin: 0 0 90px;
  background: linear-gradient(135deg, rgba(68,130,197,0.07), rgba(175,155,70,0.06));
  border: 1px solid rgba(68, 130, 197, 0.18);
  border-radius: 18px;
  padding: 34px 36px;
}
.calendar-note h2 {
  font-family: var(--serif);
  font-weight: 450;
  font-size: 1.5rem;
  margin-bottom: 10px;
}
.calendar-note p { color: var(--ink-soft); max-width: 62ch; }
.calendar-note a { color: var(--blue); font-weight: 500; }

/* ---------- footer ---------- */
footer {
  border-top: 1px solid rgba(26, 28, 36, 0.08);
  padding: 34px 0 44px;
  color: var(--ink-soft);
  font-size: 0.92rem;
}
footer .container {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
footer a { color: var(--ink-soft); text-decoration: none; margin-right: 20px; }
footer a:hover { color: var(--blue); }

/* ---------- privacy / legal page ---------- */
.legal {
  max-width: 720px;
  margin: 0 auto;
  padding: 50px 24px 90px;
}
.legal h1 {
  font-family: var(--serif);
  font-weight: 420;
  font-size: 2.6rem;
  line-height: 1.15;
  margin-bottom: 10px;
}
.legal .effective {
  color: var(--ink-soft);
  font-size: 0.95rem;
  margin-bottom: 44px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(26, 28, 36, 0.08);
}
.legal h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.45rem;
  margin: 44px 0 12px;
  scroll-margin-top: 20px;
}
.legal h2::before {
  content: '§ ';
  color: var(--gold);
  font-weight: 300;
}
.legal p, .legal li { color: #3a3d49; margin-bottom: 12px; }
.legal ul { padding-left: 22px; margin-bottom: 14px; }
.legal li { margin-bottom: 7px; }
.legal a { color: var(--blue); }
.legal strong { color: var(--ink); }
.callout {
  background: var(--surface);
  border-left: 3px solid var(--blue);
  border-radius: 0 12px 12px 0;
  padding: 18px 22px;
  margin: 18px 0;
}
.callout p { margin: 0; }

@media (max-width: 720px) {
  .features { grid-template-columns: 1fr; }
  .hero { padding: 56px 0 50px; }
  .calendar-note { padding: 26px 22px; }
}
