:root {
  --info-ink: #101425;
  --info-muted: #626a7d;
  --info-line: #dde1ea;
  --info-soft: #f5f7fb;
  --info-blue: #5e6df2;
  --info-navy: #0b1020;
}

* { box-sizing: border-box; }
html { color-scheme: light; overflow-x: clip; }
body {
  margin: 0;
  color: var(--info-ink);
  background: #fff;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
  min-width: 0;
}
a { color: inherit; }
.info-shell {
  width: 100%;
  max-width: 920px;
  margin-inline: auto;
  padding-inline: clamp(16px, 4vw, 40px);
}
.info-header { border-bottom: 1px solid var(--info-line); background: rgba(255,255,255,.96); }
.info-header-inner { min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.info-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-size: 18px;
  font-weight: 780;
  letter-spacing: -.025em;
}
.info-brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  overflow: hidden;
  display: grid;
  place-items: center;
  background: #fff;
  border: 1px solid #c6c6cd;
}
.info-brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.info-nav { display: flex; align-items: center; justify-content: flex-end; flex-wrap: wrap; gap: 18px; }
.info-home { color: #4f5870; font-size: 14px; font-weight: 700; }
.info-hero { padding: 82px 0 46px; }
.info-kicker { color: var(--info-blue); font-size: 12px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.info-hero h1 { max-width: 760px; margin: 16px 0 20px; font-size: clamp(42px, 7vw, 70px); line-height: 1; letter-spacing: -.06em; }
.info-hero p { max-width: 760px; margin: 0; color: var(--info-muted); font-size: 18px; }
.info-notice { margin-top: 28px; padding: 16px 18px; border: 1px solid #d8ddff; border-radius: 0; background: #f3f5ff; color: #4f5874; }
.info-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(14px, 2vw, 18px); padding-bottom: 80px; }
.info-card { padding: 28px; border: 1px solid var(--info-line); border-radius: 0; background: #fff; box-shadow: 0 14px 36px rgba(20,26,55,.05); }
.info-card-wide { grid-column: 1 / -1; }
.info-card h2 { margin: 0 0 12px; font-size: 24px; letter-spacing: -.035em; }
.info-card h3 { margin: 22px 0 8px; font-size: 17px; }
.info-card p, .info-card li { color: var(--info-muted); }
.info-card ul, .info-card ol { margin: 12px 0 0; padding-left: 21px; }
.info-card li + li { margin-top: 8px; }
.info-table { width: 100%; border-collapse: collapse; margin-top: 14px; }
.info-table th, .info-table td { padding: 12px; border-top: 1px solid var(--info-line); text-align: left; vertical-align: top; }
.info-table th { width: 28%; font-size: 13px; }
.info-table td { color: var(--info-muted); }
.info-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.info-button { display: inline-flex; min-height: 46px; align-items: center; justify-content: center; padding: 0 18px; border-radius: 0; text-decoration: none; font-size: 14px; font-weight: 760; }
button.info-button {
  border: 0;
  font: inherit;
  cursor: pointer;
}
.info-button-primary { color: #fff; background: var(--info-navy); }
.info-button-secondary { border: 1px solid var(--info-line); background: #fff; }
.info-button-disabled,
.info-button[aria-disabled="true"],
button.info-button:disabled {
  opacity: 0.45;
  pointer-events: none;
  cursor: not-allowed;
}
.info-footer { padding: 26px 0 42px; border-top: 1px solid var(--info-line); color: var(--info-muted); font-size: 13px; }
code { padding: 2px 5px; border-radius: 0; background: var(--info-soft); font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: .9em; }
@media (max-width: 720px) {
  .info-header-inner { align-items: flex-start; padding-block: 16px; }
  .info-nav { gap: 10px 14px; }
  .info-grid { grid-template-columns: 1fr; }
  .info-card-wide { grid-column: auto; }
  .info-table, .info-table tbody, .info-table tr, .info-table th, .info-table td { display: block; width: 100%; }
  .info-table th { padding-bottom: 3px; }
  .info-table td { padding-top: 3px; border-top: 0; }
}
