/* styles.css — seed: 338dbfedb33a779ba69689f6a145eb654aae9d008dae97d3b527c448297fd33a — archetype: editorial */
:root {
  --bg: hsl(143 29% 98%);
  --bg-elevated: hsl(143 27% 94%);
  --border: hsla(143 22% 90% / 0.1483159817568958);
  --text: hsl(143 18% 14%);
  --muted: hsl(143 23% 45%);
  --accent: hsl(193 58% 62%);
  --accent-strong: hsl(193 64% 47%);
  --gold: hsl(310 69% 54%);
  --danger: hsl(4 69% 52%);
  --radius: 12px;
  --font: "Source Sans 3", "Segoe UI", system-ui, -apple-system, sans-serif;
  --max: 1100px;
}

/* Layout shell — :root injected by node 6d from palette agent */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
}

body.theme-light {
  background-image: radial-gradient(ellipse 90% 60% at 50% -10%, hsla(var(--accent-h, 220) 60% 50% / 0.12), transparent);
}

body.theme-dark {
  background-image:
    radial-gradient(ellipse 120% 80% at 50% -20%, hsla(var(--accent-h, 220) 60% 50% / 0.14), transparent),
    radial-gradient(ellipse 60% 40% at 100% 50%, hsla(var(--gold-h, 90) 60% 50% / 0.06), transparent);
}

a {
  color: var(--accent-strong);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link:focus {
  position: fixed;
  left: 1rem;
  top: 1rem;
  width: auto;
  height: auto;
  padding: 0.5rem 1rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 8px;
  z-index: 100;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.85rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--text);
  text-decoration: none;
}

.nav-toggle {
  display: none;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 0.5rem 0.85rem;
  border-radius: 8px;
  cursor: pointer;
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1rem;
  align-items: center;
}

.nav-list a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.95rem;
}

.nav-list a:hover,
.nav-list a[aria-current="page"] {
  color: var(--text);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.35rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-strong), var(--accent));
  color: #fff;
  box-shadow: 0 4px 20px hsla(var(--accent-h, 220) 60% 40% / 0.35);
}

.btn-primary:hover {
  color: #fff;
}

main {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1.5rem 1.25rem 3rem;
}

main h1 {
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  line-height: 1.15;
  margin: 0 0 1rem;
}

section {
  margin: 1.75rem 0;
  padding: 1.25rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

section h2 {
  margin: 0 0 0.75rem;
  font-size: 1.2rem;
}

.page-cta {
  margin: 1rem 0 1.5rem;
  padding: 1rem;
  border-radius: var(--radius);
  border: 1px dashed var(--border);
}

.cta-disclaimer {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0.5rem 0 0;
}

.site-footer {
  max-width: var(--max);
  margin: 0 auto;
  padding: 2rem 1.25rem;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-disclaimers {
  margin: 0.5rem 0 0;
  padding-left: 1.2rem;
}

details {
  margin: 0.5rem 0;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.5rem 0.75rem;
}

details summary {
  cursor: pointer;
  font-weight: 600;
}

@media (max-width: 900px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav-list {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    background: var(--bg-elevated);
    border-bottom: 1px solid var(--border);
  }

  .nav.is-open .nav-list {
    display: flex;
  }
}
