:root {
  --ink: #28261f;
  --green: #a8174a;
  --mint: #f7f8df;
  --lime: #c7d301;
  --muted: #60706a;
  --line: #dfe8e4;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: #fbfcfc;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.65;
}
a { color: var(--green); }
a:focus-visible { outline: 3px solid var(--lime); outline-offset: 4px; }
.sitehead {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 10px max(5vw, 20px);
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.sitehead img { display: block; width: 118px; height: 54px; object-fit: contain; }
.sitehead a:last-child { font-size: 14px; font-weight: 750; text-decoration: none; }
main { width: min(1040px, calc(100% - 40px)); margin: 0 auto; }
.breadcrumb { margin: 24px 0; color: var(--muted); font-size: 14px; }
.breadcrumb a { color: inherit; }
.hero {
  padding: clamp(42px, 8vw, 90px);
  border-radius: 30px;
  background: radial-gradient(circle at 90% 20%, #fff 0, transparent 30%), var(--mint);
}
.eyebrow { color: var(--green); font-size: 13px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
h1 { max-width: 800px; margin: 14px 0 18px; font-size: clamp(38px, 7vw, 70px); line-height: 1.02; letter-spacing: -.045em; }
.lead { max-width: 720px; margin: 0; font-size: clamp(18px, 2.4vw, 22px); }
.facts { display: flex; flex-wrap: wrap; gap: 10px; margin: 28px 0 0; padding: 0; list-style: none; }
.facts li { padding: 9px 14px; border-radius: 999px; background: #fff; font-size: 14px; font-weight: 700; }
.content { display: grid; grid-template-columns: minmax(0, 1fr) 300px; gap: 54px; padding: 70px 0; }
.copy section + section { margin-top: 44px; }
h2 { margin: 0 0 12px; font-size: clamp(25px, 4vw, 34px); letter-spacing: -.025em; }
.copy p, .copy li { color: #42534d; }
.copy ul { padding-left: 22px; }
.copy li + li { margin-top: 8px; }
.applybox { position: sticky; top: 20px; align-self: start; padding: 28px; border-radius: 22px; color: #fff; background: var(--ink); }
.applybox h2 { font-size: 24px; }
.applybox p { color: #d8dfdc; }
.button { display: block; margin-top: 22px; padding: 14px 18px; border-radius: 999px; color: #fff; background: var(--green); font-weight: 800; text-align: center; text-decoration: none; }
.note { margin-top: 22px; padding: 18px; border-left: 4px solid var(--lime); background: #f4f7e8; }
footer { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 16px; margin-top: 30px; padding: 30px max(5vw, 20px); border-top: 1px solid var(--line); color: var(--muted); font-size: 13px; }
footer nav { display: flex; flex-wrap: wrap; gap: 18px; }
footer a { color: inherit; }
@media (max-width: 760px) {
  .sitehead a:last-child { display: none; }
  main { width: min(100% - 28px, 1040px); }
  .hero { padding: 38px 24px; border-radius: 22px; }
  .content { grid-template-columns: 1fr; gap: 34px; padding: 50px 4px; }
  .applybox { position: static; }
}
