:root {
  --ink: #10231e;
  --muted: #52645f;
  --cream: #f5f3eb;
  --paper: #fffef9;
  --lime: #d7ff45;
  --teal: #0d5248;
  --line: rgba(16, 35, 30, 0.14);
  --danger: #a33;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}
a { color: inherit; }
button, input, textarea, select { font: inherit; }
main { display: block; }
img { max-width: 100%; }

/* Skip link for keyboard/screen-reader users */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ink);
  color: white;
  padding: 12px 18px;
  z-index: 100;
}
.skip-link:focus { left: 12px; top: 12px; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px max(24px, calc((100vw - 1200px) / 2));
  background: rgba(255, 254, 249, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font: 800 20px "Manrope", sans-serif;
  letter-spacing: -0.6px;
  text-decoration: none;
}
.brand-mark {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--lime), var(--teal));
  display: inline-block;
}
.desktop-nav { display: flex; gap: 28px; font-size: 14px; font-weight: 600; }
.desktop-nav a { text-decoration: none; transition: opacity 0.2s; }
.desktop-nav a:hover, .desktop-nav a[aria-current="page"] { opacity: 0.6; }
.header-actions { display: flex; align-items: center; gap: 14px; }
.menu-button { display: none; border: 0; background: transparent; cursor: pointer; padding: 8px; }
.menu-button span { display: block; width: 20px; height: 2px; margin: 5px 0; background: var(--ink); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 22px;
  border: 0;
  border-radius: 6px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s, opacity 0.15s;
}
.button:hover { transform: translateY(-1px); box-shadow: 0 10px 22px rgba(16, 35, 30, 0.12); }
.button:disabled { opacity: 0.6; cursor: not-allowed; transform: none; box-shadow: none; }
.button-primary { color: var(--ink); background: var(--lime); }
.button-dark { color: white; background: var(--ink); }
.button-outline { color: var(--ink); background: transparent; border: 1px solid var(--line); }
.button-small { min-height: 38px; padding: 0 16px; font-size: 13px; }
.button-block { width: 100%; }

/* Layout helpers */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 24px; max-width: 1160px; margin: 0 auto; }
.section-narrow { max-width: 780px; }
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--teal);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}
.kicker::before { content: ""; width: 20px; height: 2px; background: var(--lime); }
h1 { font: 700 clamp(36px, 5.5vw, 60px)/1.05 "Manrope", sans-serif; letter-spacing: -1.5px; margin: 20px 0; }
h2 { font: 700 clamp(28px, 4vw, 40px)/1.1 "Manrope", sans-serif; letter-spacing: -1px; margin: 16px 0; }
h3 { font: 700 20px "Manrope", sans-serif; margin: 12px 0; }
p { color: var(--muted); }
.lede { font-size: 18px; max-width: 640px; }

/* Hero */
.hero {
  background: var(--cream);
  padding: 72px 24px 88px;
  text-align: center;
}
.hero .container { max-width: 780px; margin: 0 auto; }
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 28px; }
.disclosure-banner {
  margin: 28px auto 0;
  max-width: 640px;
  padding: 12px 18px;
  border-radius: 8px;
  background: rgba(13, 82, 72, 0.08);
  color: var(--teal);
  font-size: 13px;
}
.preview-banner {
  position: relative;
  z-index: 1000;
  padding: 10px 20px;
  border-bottom: 1px solid #d8b400;
  background: #fff2cc;
  color: #5b4700;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}

/* Cards / grids */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px; }
.card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--paper);
}
.card h3 { margin-top: 0; }

/* Pricing */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px; align-items: stretch; }
.price-card {
  display: flex;
  flex-direction: column;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--paper);
}
.price-card.featured { background: var(--ink); color: white; border-color: var(--ink); }
.price-card.featured p, .price-card.featured .price-note { color: #c7d4d0; }
.price-amount { font: 800 34px "Manrope", sans-serif; margin: 10px 0; }
.price-note { font-size: 12px; color: var(--muted); }
.price-features { list-style: none; padding: 0; margin: 20px 0; flex: 1; }
.price-features li { padding: 6px 0; font-size: 14px; border-top: 1px solid var(--line); }
.price-card.featured .price-features li { border-top-color: rgba(255,255,255,0.14); }

/* Forms */
.form-card {
  max-width: 560px;
  margin: 0 auto;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--cream);
}
label { display: block; margin-bottom: 16px; font-size: 13px; font-weight: 700; }
label > span { display: block; margin-bottom: 6px; }
input[type="text"], input[type="email"], input[type="url"], textarea, select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #cfd6d2;
  border-radius: 6px;
  background: #fff;
  font-size: 14px;
}
textarea { resize: vertical; }
.form-status { min-height: 20px; margin-top: 10px; font-size: 13px; font-weight: 600; }
.form-status.error { color: var(--danger); }
.form-status.success { color: var(--teal); }
fieldset { border: 0; padding: 0; margin: 0 0 20px; }

/* Tables (admin/account) */
table { width: 100%; border-collapse: collapse; font-size: 14px; }
th, td { text-align: left; padding: 10px 12px; border-bottom: 1px solid var(--line); }
th { font-size: 11px; text-transform: uppercase; letter-spacing: 0.6px; color: var(--muted); }

/* Disclosure/legal callouts reused across report + legal pages */
.disclosure-list { list-style: none; padding: 0; }
.disclosure-list li { padding: 10px 0; border-top: 1px solid var(--line); font-size: 14px; }
.placeholder-note {
  display: inline-block;
  margin-top: 4px;
  padding: 2px 8px;
  border-radius: 4px;
  background: #fff2cc;
  color: #6b5300;
  font-size: 12px;
  font-weight: 700;
}

/* Footer */
footer.site-footer {
  padding: 48px max(24px, calc((100vw - 1160px) / 2));
  background: #0a1b17;
  color: #9db3ad;
  font-size: 13px;
}
footer.site-footer .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 32px; max-width: 1160px; margin: 0 auto; }
footer.site-footer a { text-decoration: none; color: #9db3ad; }
footer.site-footer a:hover { color: white; }
footer.site-footer h4 { color: white; font-size: 12px; text-transform: uppercase; letter-spacing: 1px; margin: 0 0 12px; }
footer.site-footer ul { list-style: none; padding: 0; margin: 0; }
footer.site-footer li { margin-bottom: 8px; }
.footer-legal { max-width: 1160px; margin: 32px auto 0; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.1); font-size: 12px; }

.status-page { text-align: center; padding: 120px 24px; }
.status-page .icon { font-size: 48px; }

@media (max-width: 900px) {
  .desktop-nav, .header-actions .button-outline { display: none; }
  .menu-button { display: block; }
  .card-grid, .pricing-grid { grid-template-columns: 1fr; }
  footer.site-footer .footer-grid { grid-template-columns: 1fr 1fr; }
}
