:root {
  color-scheme: light;
  --ink: #132641;
  --muted: #50627b;
  --blue: #075dd5;
  --line: #dbe3ee;
  --paper: #fff;
  --wash: #f5f7fb;
  font:
    16px/1.7 Inter,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    sans-serif;
  color: var(--ink);
  background: var(--paper);
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
}
a {
  color: var(--blue);
  text-underline-offset: 4px;
}
a:hover {
  text-decoration-thickness: 2px;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
button,
input,
textarea,
select {
  font: inherit;
}
a,
button,
summary {
  -webkit-tap-highlight-color: transparent;
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid #1877ec;
  outline-offset: 5px;
}
h1,
h2,
h3 {
  line-height: 1.17;
  letter-spacing: -0.035em;
  text-wrap: balance;
  overflow-wrap: anywhere;
  hyphens: auto;
}
h1 {
  font-size: clamp(2.4rem, 4.8vw, 4.6rem);
  margin: 16px 0 22px;
  max-width: 900px;
}
h2 {
  font-size: clamp(1.6rem, 2.6vw, 2.4rem);
  margin: 0 0 20px;
}
h3 {
  font-size: 1.3rem;
  margin: 0 0 12px;
}
p {
  margin: 0 0 20px;
  overflow-wrap: anywhere;
}
ul,
ol {
  padding-left: 24px;
}
li {
  margin: 8px 0;
}
small {
  font-size: 0.85rem;
  color: var(--muted);
}
.wrap {
  width: min(1180px, 100% - 64px);
  margin-inline: auto;
}
.skip {
  position: absolute;
  top: 8px;
  left: 12px;
  clip-path: inset(50%);
  padding: 12px 20px;
  background: white;
  z-index: 10;
}
.skip:focus {
  clip-path: none;
}
.site-header {
  padding-top: env(safe-area-inset-top);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}
.bar {
  min-height: 88px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}
.brand img {
  width: 38px;
  height: 38px;
  border-radius: 11px;
}
.desktop-nav {
  display: flex;
  gap: 24px;
  align-items: center;
  margin-left: auto;
}
.desktop-nav a {
  font-size: 0.88rem;
  color: var(--muted);
  font-weight: 600;
  text-decoration: none;
  padding: 10px 0;
}
.desktop-nav a:hover,
.desktop-nav a[aria-current='page'] {
  color: var(--blue);
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 48px;
  padding: 10px 22px;
  border: 1px solid var(--blue);
  border-radius: 9px;
  background: var(--blue);
  color: white;
  font-weight: 650;
  text-decoration: none;
  cursor: pointer;
  font-size: 0.95rem;
}
.button:hover {
  background: #084cb0;
  color: white;
}
.button.secondary {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.button.secondary:hover {
  background: var(--wash);
}
.mobile-menu {
  display: none;
}
.eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.13em;
  font-weight: 750;
  text-transform: uppercase;
  color: var(--blue);
  margin: 0 0 16px;
}
.hero {
  padding-block: 74px 64px;
}
.hero.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 38px;
  align-items: center;
}
.hero.split h1 {
  font-size: clamp(2.7rem, 4.6vw, 4.2rem);
}
.intro {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--muted);
  max-width: 740px;
}
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.art {
  border-radius: 20px;
  overflow: hidden;
  background: #f5f7fb;
  aspect-ratio: 3/2;
}
.art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.platforms {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 24px;
  font-size: 0.8rem;
  color: var(--muted);
}
.platforms span + span {
  border-left: 1px solid var(--line);
  padding-left: 14px;
}
.band {
  background: var(--wash);
  border-block: 1px solid var(--line);
}
.section {
  padding-block: 68px;
}
.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 30px;
}
.section-heading h2 {
  margin-bottom: 0;
}
.section-heading p {
  max-width: 460px;
  margin: 0;
  color: var(--muted);
}
.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.card {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px;
  background: var(--paper);
  min-width: 0;
}
.card p {
  color: var(--muted);
  font-size: 0.95rem;
}
.card p:last-child {
  margin-bottom: 0;
}
.card .number {
  display: inline-flex;
  padding: 5px 10px;
  background: #eaf2ff;
  color: var(--blue);
  border-radius: 7px;
  font-weight: 700;
  font-size: 0.8rem;
  margin-bottom: 25px;
}
.card-link {
  display: block;
  color: inherit;
  text-decoration: none;
  transition:
    border-color 0.15s,
    transform 0.15s;
}
.card-link:hover {
  border-color: var(--blue);
  transform: translateY(-2px);
}
.card-link .more {
  color: var(--blue);
  font-size: 0.9rem;
  font-weight: 650;
}
.feature-line {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.feature-line p {
  color: var(--muted);
}
.callout {
  border-left: 3px solid var(--blue);
  padding: 20px 24px;
  background: var(--wash);
  border-radius: 0 12px 12px 0;
  margin: 28px 0;
}
.callout p:last-child {
  margin: 0;
}
.cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 38px 42px;
  background: #122b50;
  color: white;
  border-radius: 18px;
}
.cta h2 {
  margin-bottom: 10px;
}
.cta p {
  color: #d5e4fa;
  margin: 0;
}
.cta .button {
  background: white;
  color: #122b50;
  border-color: white;
  flex-shrink: 0;
}
.crumbs {
  font-size: 0.82rem;
  color: var(--muted);
  padding-top: 30px;
}
.crumbs a {
  color: var(--muted);
}
.document-hero {
  padding: 32px 0 42px;
  border-bottom: 1px solid var(--line);
}
.document-hero h1 {
  font-size: clamp(2.3rem, 4vw, 3.5rem);
}
.document-layout {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: 64px;
  padding-block: 44px 80px;
}
.toc {
  position: sticky;
  top: 28px;
  align-self: start;
  max-height: calc(100dvh - 56px);
  overflow: auto;
  padding: 0 12px 16px 0;
}
.toc h2 {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.toc a {
  display: block;
  color: var(--muted);
  font-size: 0.83rem;
  text-decoration: none;
  padding: 7px 0;
  line-height: 1.5;
}
.toc a:hover {
  color: var(--blue);
}
article {
  min-width: 0;
  max-width: 810px;
}
article h2 {
  font-size: 1.55rem;
  margin-top: 40px;
  scroll-margin-top: 24px;
}
article h2:first-child {
  margin-top: 0;
}
article section + section {
  border-top: 1px solid var(--line);
  padding-top: 30px;
  margin-top: 30px;
}
article section h2 {
  margin-top: 0;
}
article p {
  color: var(--muted);
}
.policy-date {
  display: block;
  margin-bottom: 30px;
}
.faq {
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}
.faq summary {
  font-size: 1.1rem;
  font-weight: 650;
  cursor: pointer;
  line-height: 1.5;
  padding-right: 24px;
}
.faq p {
  margin: 18px 0 0;
  max-width: 740px;
  color: var(--muted);
}
.faq a {
  font-weight: 600;
}
label {
  display: block;
  font-weight: 650;
  margin: 20px 0 7px;
}
input,
textarea {
  width: 100%;
  background: var(--paper);
  color: var(--ink);
  border: 1px solid #98aac0;
  border-radius: 9px;
  padding: 12px 14px;
  min-height: 48px;
}
textarea {
  min-height: 180px;
  resize: vertical;
}
form {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px;
  margin-top: 28px;
}
form button {
  border: 0;
  border-radius: 9px;
  background: var(--blue);
  color: white;
  padding: 13px 24px;
  font-weight: 650;
  cursor: pointer;
  margin: 12px 0;
}
button:disabled {
  opacity: 0.6;
  cursor: wait;
}
.trap {
  display: none;
}
.notice {
  padding: 18px;
  background: #eaf2ff;
  border-radius: 10px;
  color: #183656 !important;
}
#result:empty {
  margin: 0;
}
.license {
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  font:
    0.8rem/1.7 ui-monospace,
    monospace;
  background: var(--wash);
  padding: 22px;
  border-radius: 12px;
}
.site-footer {
  background: var(--wash);
  border-top: 1px solid var(--line);
  padding: 55px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 35px;
}
.footer-brand p {
  font-size: 0.88rem;
  color: var(--muted);
  margin-top: 20px;
  max-width: 270px;
}
.footer-col h2 {
  font-size: 0.8rem;
  letter-spacing: 0;
  margin: 5px 0 18px;
}
.footer-col a {
  display: block;
  font-size: 0.83rem;
  text-decoration: none;
  color: var(--muted);
  padding: 5px 0;
  overflow-wrap: anywhere;
}
.footer-col a:hover {
  color: var(--blue);
}
.footer-bottom {
  border-top: 1px solid var(--line);
  margin-top: 38px;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 0.75rem;
  color: var(--muted);
}
.footer-bottom p {
  margin: 0;
}
.footer-bottom a {
  color: inherit;
}
table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
th,
td {
  text-align: left;
  padding: 16px 12px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
th {
  background: var(--wash);
}
.table-wrap {
  overflow: auto;
  margin: 28px 0;
}
.badge-label {
  color: var(--blue);
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.support-links {
  margin: 24px 0;
}
.support-links a {
  display: block;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
@media (min-width: 1500px) {
  .hero.split {
    gap: 70px;
  }
}
@media (max-width: 1050px) {
  .desktop-nav {
    gap: 15px;
  }
  .bar {
    gap: 20px;
  }
  .desktop-nav a {
    font-size: 0.8rem;
  }
  .document-layout {
    gap: 38px;
    grid-template-columns: 200px minmax(0, 1fr);
  }
  .feature-line {
    gap: 35px;
  }
  .hero.split {
    gap: 25px;
  }
  .hero.split h1 {
    font-size: 3rem;
  }
}
@media (max-width: 800px) {
  .desktop-nav,
  .bar > .button {
    display: none;
  }
  .bar {
    justify-content: space-between;
    min-height: 74px;
    flex-wrap: wrap;
    gap: 0;
  }
  .mobile-menu {
    display: block;
    margin-left: auto;
  }
  .mobile-menu summary {
    padding: 10px 16px;
    border: 1px solid var(--line);
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
  }
  .mobile-menu[open] {
    width: 100%;
    padding: 0 0 18px;
  }
  .mobile-menu[open] summary {
    width: max-content;
    margin: 12px 0 12px auto;
  }
  .mobile-menu nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px 20px;
  }
  .mobile-menu nav a {
    padding: 10px 0;
    font-size: 0.9rem;
    text-decoration: none;
  }
  .hero.split,
  .feature-line {
    grid-template-columns: 1fr;
  }
  .hero.split {
    padding-top: 44px;
  }
  .hero.split h1 {
    font-size: clamp(2.5rem, 8vw, 3.8rem);
  }
  .hero.split .art {
    max-height: 380px;
  }
  .grid {
    grid-template-columns: 1fr;
  }
  .grid.two {
    grid-template-columns: 1fr 1fr;
  }
  .document-layout {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .toc {
    position: static;
    max-height: none;
    border-bottom: 1px solid var(--line);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 20px;
  }
  .toc h2 {
    grid-column: 1/-1;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .section-heading {
    display: block;
  }
  .section-heading p {
    margin-top: 18px;
  }
  .cta {
    display: block;
  }
  .cta .button {
    margin-top: 24px;
  }
  .section {
    padding-block: 48px;
  }
}
@media (max-width: 480px) {
  .wrap {
    width: calc(100% - 36px);
  }
  .hero {
    padding-block: 40px;
  }
  .intro {
    font-size: 1.03rem;
  }
  .grid.two {
    grid-template-columns: 1fr;
  }
  .card {
    padding: 24px;
  }
  .footer-grid {
    gap: 28px 20px;
  }
  .footer-brand {
    grid-column: 1/-1;
  }
  .footer-bottom {
    display: block;
  }
  .footer-bottom p + p {
    margin-top: 12px;
  }
  .document-hero {
    padding-top: 24px;
  }
  .document-layout {
    padding-top: 30px;
  }
  .toc {
    grid-template-columns: 1fr;
  }
  form {
    padding: 20px;
  }
  .cta {
    padding: 28px;
  }
  .table-wrap th,
  .table-wrap td {
    padding: 12px 8px;
    font-size: 0.78rem;
  }
  .actions .button {
    flex-grow: 1;
  }
}
@media (prefers-color-scheme: dark) {
  :root {
    color-scheme: dark;
    --ink: #e6edf7;
    --muted: #b3c2d7;
    --blue: #82b8ff;
    --line: #34445b;
    --paper: #121e30;
    --wash: #19283d;
  }
  .button {
    background: #075dd5;
    border-color: #075dd5;
    color: white;
  }
  .button.secondary {
    color: var(--ink);
    border-color: var(--line);
  }
  .card .number {
    background: #233b5f;
    color: #a8ceff;
  }
  .notice {
    background: #233b5f;
    color: #e6edf7 !important;
  }
  .art {
    background: #f5f7fb;
  }
  .skip {
    background: var(--paper);
  }
  .cta .button {
    color: #122b50;
  }
  .cta {
    background: #203b61;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
@media print {
  .site-header,
  .site-footer,
  .toc,
  .actions,
  form,
  .skip {
    display: none;
  }
  .wrap {
    width: 100%;
  }
  .document-layout {
    display: block;
  }
  .document-hero {
    padding: 0;
  }
  article {
    max-width: none;
  }
  :root {
    --ink: #000;
    --muted: #222;
    --paper: #fff;
    --wash: #fff;
  }
  a {
    color: inherit;
  }
  h2,
  h3 {
    break-after: avoid;
  }
  section {
    break-inside: avoid;
  }
}
