:root {
  color-scheme: light;
  --navy: #102c3b;
  --ink: #193342;
  --muted: #516471;
  --green: #b5ef79;
  --paper: #f6f8fa;
  --line: #dce3e8;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  font-synthesis: none;
}
* { box-sizing: border-box; }
body { margin: 0; min-height: 100vh; display: flex; flex-direction: column; font-size: 1rem; line-height: 1.65; }
main { flex: 1; }
a { color: inherit; text-underline-offset: .25em; }
a:focus-visible { outline: 3px solid #238345; outline-offset: 5px; }
.hero a:focus-visible { outline-color: var(--green); }
.container { width: min(1120px, calc(100% - 64px)); margin-inline: auto; }
.skip-link { position: absolute; left: 1rem; top: -100px; padding: .75rem 1rem; background: white; z-index: 10; }
.skip-link:focus { top: 1rem; }
.site-header { background: white; border-bottom: 1px solid var(--line); }
.header-inner { min-height: 96px; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.brand { display: inline-flex; align-items: baseline; font-size: 1.6rem; font-weight: 800; text-decoration: none; letter-spacing: -.07em; white-space: nowrap; }
.brand > span:first-child { font-weight: 400; }
.brand-dot { width: 8px; height: 8px; margin-left: 5px; background: #37833d; border-radius: 50%; }
nav { display: flex; gap: 2rem; }
nav a { display: inline-flex; min-height: 48px; align-items: center; text-decoration: none; font-size: .95rem; color: var(--muted); border-bottom: 2px solid transparent; }
nav a:hover, nav a[aria-current="page"] { color: var(--ink); border-color: #37833d; }
.hero { color: white; background: var(--navy); padding-block: 76px; }
.hero-grid { display: grid; grid-template-columns: 1.25fr 1fr; gap: 72px; align-items: center; }
.eyebrow { font-size: .75rem; line-height: 1.6; letter-spacing: .13em; text-transform: uppercase; font-weight: 700; margin: 0 0 1.25rem; }
.hero .eyebrow { color: var(--green); }
h1 { font-size: clamp(2.7rem, 4.5vw, 4rem); line-height: 1.08; letter-spacing: -.05em; font-weight: 650; margin: 0 0 1.5rem; }
h2 { font-size: 2rem; line-height: 1.2; letter-spacing: -.035em; margin: 0 0 1.25rem; }
.hero-description { max-width: 480px; font-size: 1.15rem; color: #c9d6df; margin: 0 0 2rem; }
.button { display: inline-flex; justify-content: space-between; align-items: center; gap: 2rem; min-height: 52px; padding: .7rem 1.2rem; color: var(--navy); background: var(--green); border-radius: 5px; font-weight: 650; text-decoration: none; }
.button:hover { background: #cdf5a6; }
.channel-card { scroll-margin-top: 2rem; padding: 32px; background: #1b3a49; border: 1px solid #41606b; border-top: 3px solid var(--green); border-radius: 8px; }
.channel-card .eyebrow { margin-bottom: .6rem; }
.channel-card h2 { font-size: 1.65rem; }
.settings { margin: 0; }
.settings > div { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; padding-block: 14px; border-bottom: 1px solid #41606b; }
.settings dt { color: #cedae0; font-size: .9rem; }
.settings dd { margin: 0; font-size: 1.15rem; font-weight: 600; }
.settings .slot { color: var(--green); font-size: 2.4rem; line-height: 1; letter-spacing: -.04em; }
code { font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace; }
.settings-note { margin: 1.25rem 0 0; color: #c2d1d9; font-size: .875rem; }
.intro { display: grid; grid-template-columns: 1fr 1.35fr; gap: 80px; padding-block: 68px; }
.intro .eyebrow { color: #367041; }
.intro-copy p { margin: 0 0 1.2rem; color: var(--muted); font-size: 1.0625rem; }
.text-link { display: inline-flex; align-items: center; gap: 1.5rem; min-height: 44px; font-weight: 650; }
.text-link:hover { color: #2f743b; }
.site-footer { border-top: 1px solid var(--line); background: white; }
.footer-inner { display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding-block: 24px; font-size: .875rem; }
.footer-inner p { margin: 0; font-weight: 650; }
.footer-inner p span { font-weight: 400; color: var(--muted); }
.footer-inner a { color: var(--muted); }
.about-hero .hero-description { max-width: 560px; margin-bottom: 0; }
@media (max-width: 800px) {
  .hero-grid { gap: 32px; grid-template-columns: 1fr 1fr; }
  .channel-card { padding: 24px; }
  .intro { gap: 32px; }
}
@media (max-width: 640px) {
  .container { width: calc(100% - 40px); }
  .header-inner { min-height: 80px; }
  .brand { font-size: 1.4rem; }
  nav { gap: 1rem; }
  nav a { font-size: .875rem; }
  .hero { padding-block: 44px; }
  .hero-grid, .intro { grid-template-columns: 1fr; gap: 36px; }
  .hero-description { font-size: 1.0625rem; }
  .eyebrow { font-size: .75rem; letter-spacing: .09em; }
  .intro { padding-block: 44px; gap: 12px; }
  h2 { font-size: 1.85rem; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: .5rem; }
}
@media (max-width: 360px) {
  .header-inner { flex-wrap: wrap; padding-block: 12px; gap: 0; }
  nav { width: 100%; }
  .settings > div { flex-wrap: wrap; gap: .5rem; }
}
