:root {
  --color-bg: #ffffff;
  --color-accent: hsl(204, 100%, 98%);
  --color-accent-2: #1f6726;
  --radius-card: 0px;
  --radius-button: 8px;
  --shadow-card: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-button: 0 1px 4px rgba(0,0,0,0.06);
  --font-family: 'EB Garamond', Garamond, 'Apple Garamond', Georgia, 'Times New Roman', serif;
}

/* Base */
* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  background:
    linear-gradient(to top, var(--color-bg) 10%, rgba(255,255,255,0) 28%),
    url('./src/ai-gen-mockup.png') center / cover no-repeat;
  color: #111;
  font-family: var(--font-family);
  line-height: 1.6;
  display: flex;
  min-height: 100vh;
  flex-direction: column;
}

img { max-width: 100%; height: auto; }

.container {
  width: min(1120px, 92%);
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.skip-link:focus {
  left: 16px;
  top: 16px;
  width: auto;
  height: auto;
  background: #fff;
  color: #000;
  padding: 8px 12px;
  outline: 2px solid var(--color-accent);
}

/* Header */
.site-header {
  background: #fff;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}
.brand {
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.3px;
}

/* Main */
.site-main {
  padding: 40px 0 64px;
  flex: 1;
}
.flow > * + * { margin-top: 16px; }
.title { font-size: clamp(28px, 4vw, 40px); line-height: 1.2; margin: 0; }
.blurb { font-size: 18px; max-width: 72ch; }

.card {
  margin-top: 16px;
  background: rgba(255, 255, 255, 0.864);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 12px;
  box-shadow: 0 8px 32px 0 rgba(23,80,172,0.18), 0 3px 12px 0 rgba(0,0,0,0.10);
  padding: 20px;
}

.badge {
  display: inline-block;
  background: rgba(23,80,172,0.06);
  color: var(--color-accent-2);
  padding: 6px 8px;
  font-size: 12px;
  border-radius: 0;
  font-weight: 600;
}

.details {
  margin: 12px 0 0;
}
.detail-row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 12px;
  padding: 10px 0;
  border-top: 1px solid rgba(0,0,0,0.06);
}
.detail-row:first-of-type { border-top: 0; }
.details dt { font-weight: 600; color: #222; }
.details dd { margin: 0; color: #333; }

.actions {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

/* Buttons */
.button {
  display: inline-block;
  border: 1px solid transparent;
  padding: 10px 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-button);
  box-shadow: var(--shadow-button);
}
.button:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}
.button-primary {
  background: var(--color-accent-2);
  color: #fff;
}
.button-primary:hover { background: #12408a; }
.button-secondary {
  background: transparent;
  color: var(--color-accent-2);
  border-color: var(--color-accent-2);
}

/* Footer */
.site-footer {
  border-top: 1px solid rgba(0,0,0,0.06);
  background: transparent;
}
.footer-inner {
  padding: 20px 0 32px;
  display: grid;
  gap: 12px;
}
.footer-info { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.footer-brand { font-weight: 700; }
.footer-link { color: var(--color-accent-2); text-decoration: none; }
.footer-link:focus-visible { outline: 2px solid var(--color-accent); outline-offset: 2px; }
.legal { color: #555; font-size: 14px; }

/* Responsive tweaks */
@media (max-width: 640px) {
  .detail-row { grid-template-columns: 1fr; }
  .header-inner { gap: 12px; }
}