:root {
  color-scheme: dark;
  --background: #131313;
  --surface: #242424;
  --text: #fff;
  --muted: #bbb;
  --accent: #ff8cba;
  --border: #373737;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--background);
  font-synthesis: none;
}
* { box-sizing: border-box; }
body { margin: 0; font-size: 18px; line-height: 1.6; }
a { color: inherit; text-underline-offset: 4px; }
a:hover { color: var(--accent); }
a:focus-visible, summary:focus-visible { outline: 2px solid var(--accent); outline-offset: 6px; border-radius: 3px; }
.shell { width: min(1180px, calc(100% - 80px)); margin-inline: auto; }
.header { min-height: 74px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--border); }
.wordmark { font-size: 30px; font-weight: 650; letter-spacing: -.7px; text-decoration: none; line-height: 1.2; }
nav { display: flex; gap: 38px; }
nav a, .footer > a:last-child { font-size: 16px; color: var(--muted); text-decoration: none; }
nav a[aria-current="page"] { color: var(--text); }
.hero { padding-block: 72px 60px; }
h1, h2, h3, p { margin: 0; }
h1 { font-size: clamp(36px, 4.1vw, 58px); line-height: 1.15; letter-spacing: -2px; font-weight: 700; }
.hero > p { font-size: clamp(20px, 2.2vw, 30px); margin-top: 12px; color: var(--muted); letter-spacing: -.6px; }
h2 { font-size: 36px; line-height: 1.25; letter-spacing: -1px; }
h3 { font-size: 26px; line-height: 1.3; letter-spacing: -.6px; }
.contact { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.contact p { color: var(--muted); font-size: 21px; line-height: 1.5; margin-top: 8px; }
.button { display: inline-flex; justify-content: center; align-items: center; background: var(--accent); color: #131313; border-radius: 10px; padding: 12px 36px; min-width: 220px; min-height: 56px; font-weight: 600; font-size: 19px; text-decoration: none; margin-top: 22px; }
.button:hover { background: #ffbad6; color: #131313; }
.contact .hint { font-size: 16px; margin-top: 12px; }
.hint span { margin-inline: 6px; }
.note { padding: 40px 44px; background: var(--surface); border-radius: 10px; }
.note p { font-size: 19px; margin-top: 12px; }
.questions { margin-top: 76px; }
.questions h2 { margin-bottom: 14px; }
details { border-bottom: 1px solid var(--border); }
summary { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 22px 4px; font-size: 21px; cursor: pointer; line-height: 1.4; list-style: none; }
summary::-webkit-details-marker { display: none; }
summary::after { content: ""; width: 12px; height: 12px; border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor; transform: rotate(45deg); flex-shrink: 0; margin-right: 10px; margin-bottom: 6px; }
details[open] summary::after { transform: rotate(225deg); margin-bottom: -6px; }
summary:hover { color: var(--accent); }
.answer { max-width: 850px; padding: 0 4px 24px; color: var(--muted); }
.answer p + p { margin-top: 12px; }
.answer a, .policy a { color: var(--accent); }
strong { color: var(--text); font-weight: 600; }
.footer { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid var(--border); margin-top: 54px; padding-block: 24px 30px; }
.footer .wordmark { font-size: 26px; }
.skip-link { position: fixed; left: 20px; top: -100px; background: var(--accent); color: #131313; padding: 8px 16px; z-index: 1; }
.skip-link:focus { top: 10px; }
.policy { max-width: 800px; padding-top: 64px; }
.policy h1 { margin-bottom: 16px; }
.policy .updated { color: var(--muted); margin-bottom: 48px; font-size: 16px; }
.policy section { margin-block: 36px; scroll-margin-top: 24px; }
.policy h2 { font-size: 26px; margin-bottom: 14px; }
.policy p { color: var(--muted); margin-top: 14px; }
@media (max-width: 700px) {
  body { font-size: 16px; }
  .shell { width: calc(100% - 40px); }
  .header { min-height: 76px; }
  .wordmark { font-size: 26px; }
  nav { gap: 20px; }
  nav a { font-size: 14px; }
  .hero { padding-block: 52px 40px; }
  h1 { letter-spacing: -1.3px; max-width: 480px; }
  h2 { font-size: 28px; }
  h3 { font-size: 22px; }
  .contact { grid-template-columns: 1fr; gap: 30px; }
  .contact p { font-size: 18px; }
  .note { padding: 26px; }
  .note p { font-size: 17px; }
  .questions { margin-top: 48px; }
  summary { font-size: 18px; padding-block: 21px; }
  .footer { margin-top: 40px; }
  .policy { padding-top: 44px; }
}
