:root {

  --bg: #f6f8fc;
  --bg-sunken: #eef2f9;
  --surface: #ffffff;
  --surface-alt: #f9fbff;
  --line: #e4e9f2;
  --line-strong: #cfd8e6;

  --ink: #0b1220;
  --ink-2: #33415a;
  --muted: #5f6d84;
  --on-brand: #ffffff;

  --brand: #1d4ed8;
  --brand-hover: #1e40af;
  --brand-active: #1b3a9e;
  --brand-50: #eff4ff;
  --brand-100: #dbe6ff;
  --brand-200: #bed2ff;
  --brand-900: #16265e;
  --accent: #06b6d4;
  --accent-soft: #cffafe;

  --success: #0b7a55;
  --success-soft: #e6f7f1;
  --warning: #b45309;
  --warning-soft: #fdf3e7;

  --r-sm: 8px;
  --r: 12px;
  --r-lg: 18px;
  --r-xl: 26px;
  --r-pill: 999px;

  --shadow-xs: 0 1px 2px rgba(15, 32, 74, 0.06);
  --shadow-sm: 0 2px 6px rgba(15, 32, 74, 0.06), 0 1px 2px rgba(15, 32, 74, 0.04);
  --shadow-md: 0 10px 24px rgba(15, 32, 74, 0.08), 0 2px 6px rgba(15, 32, 74, 0.04);
  --shadow-lg: 0 24px 48px rgba(15, 32, 74, 0.12), 0 8px 16px rgba(15, 32, 74, 0.06);
  --shadow-brand: 0 12px 28px rgba(29, 78, 216, 0.22);

  --wrap: 1160px;
  --gutter: 24px;
  --section-y: clamp(56px, 7vw, 104px);

  --font: "Inter", ui-sans-serif, system-ui, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --mono: ui-monospace, "SFMono-Regular", "Cascadia Mono", "JetBrains Mono", Consolas, monospace;

  color-scheme: light;
}

*,
*::before,
*::after { box-sizing: border-box; }

* { margin: 0; }

[hidden] { display: none !important; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  font-size: 1.0625rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: var(--brand); text-decoration: none; }
a:hover { color: var(--brand-hover); }
ul { list-style: none; padding: 0; }
button { font: inherit; color: inherit; }

:focus-visible {
  outline: 3px solid var(--brand);
  outline-offset: 2px;
  border-radius: 4px;
}

.skip {
  position: absolute;
  left: -9999px;
  top: 12px;
  z-index: 100;
  background: var(--surface);
  color: var(--ink);
  padding: 12px 18px;
  border-radius: var(--r);
  box-shadow: var(--shadow-md);
}
.skip:focus { left: 12px; }

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

h1, h2, h3, h4 {
  line-height: 1.12;
  letter-spacing: -0.022em;
  font-weight: 800;
  color: var(--ink);
  text-wrap: balance;
}

h1 { font-size: clamp(2.3rem, 1.25rem + 3.6vw, 3.85rem); letter-spacing: -0.032em; line-height: 1.04; }
h2 { font-size: clamp(1.75rem, 1.15rem + 2.1vw, 2.65rem); }
h3 { font-size: 1.1875rem; letter-spacing: -0.014em; }

p { text-wrap: pretty; }

.lede {
  font-size: clamp(1.0625rem, 1rem + 0.35vw, 1.25rem);
  color: var(--ink-2);
  line-height: 1.6;
  max-width: 56ch;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand);
}

.section-head { max-width: 62ch; margin-bottom: clamp(32px, 4vw, 52px); }
.section-head p { color: var(--ink-2); margin-top: 14px; }
.section-head--center { margin-inline: auto; text-align: center; }

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

section { padding-block: var(--section-y); }
.section--sunken { background: var(--bg-sunken); border-block: 1px solid var(--line); }
.section--surface { background: var(--surface); border-block: 1px solid var(--line); }

.btn {
  --btn-bg: var(--brand);
  --btn-fg: var(--on-brand);
  --btn-bd: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  border: 1px solid var(--btn-bd);
  border-radius: var(--r);
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-size: 0.9875rem;
  font-weight: 650;
  letter-spacing: -0.006em;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.14s ease, box-shadow 0.18s ease, background-color 0.18s ease,
    border-color 0.18s ease, color 0.18s ease;
}
.btn:hover { --btn-bg: var(--brand-hover); color: var(--btn-fg); transform: translateY(-1px); }
.btn:active { --btn-bg: var(--brand-active); transform: translateY(0); }
.btn[disabled], .btn[aria-busy="true"] { opacity: 0.65; pointer-events: none; }

.btn--primary { box-shadow: var(--shadow-brand); }
.btn--primary:hover { box-shadow: 0 16px 34px rgba(29, 78, 216, 0.28); }

.btn--ghost {
  --btn-bg: var(--surface);
  --btn-fg: var(--ink);
  --btn-bd: var(--line-strong);
  box-shadow: var(--shadow-xs);
}
.btn--ghost:hover { --btn-bg: var(--surface); --btn-bd: var(--brand); --btn-fg: var(--brand); }

.btn--soft {
  --btn-bg: var(--brand-50);
  --btn-fg: var(--brand);
  --btn-bd: var(--brand-100);
}
.btn--soft:hover { --btn-bg: var(--brand-100); --btn-fg: var(--brand-hover); }

.btn--onbrand {
  --btn-bg: #ffffff;
  --btn-fg: var(--brand);
}
.btn--onbrand:hover { --btn-bg: #f1f5ff; --btn-fg: var(--brand-hover); }

.btn--lg { padding: 16px 28px; font-size: 1.0375rem; border-radius: var(--r-lg); }
.btn--block { width: 100%; }

.btn .spinner {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid currentColor;
  border-top-color: transparent;
  animation: spin 0.7s linear infinite;
  display: none;
}
.btn[aria-busy="true"] .spinner { display: block; }
.btn[aria-busy="true"] .btn-label { opacity: 0.8; }

@keyframes spin { to { transform: rotate(360deg); } }

.topbar {
  background: linear-gradient(90deg, var(--brand-900), var(--brand));
  color: #dbe6ff;
  font-size: 0.8125rem;
  letter-spacing: 0.01em;
}
.topbar .wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 38px;
  text-align: center;
}
.topbar strong { color: #fff; font-weight: 650; }
.topbar .dot { color: rgba(255, 255, 255, 0.45); }
@media (max-width: 640px) { .topbar .hide-sm { display: none; } }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 70px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  font-weight: 800;
  font-size: 1.28rem;
  letter-spacing: -0.03em;
}
.logo:hover { color: var(--ink); }
.logo svg { flex: none; width: 34px; height: 34px; border-radius: 9px; box-shadow: var(--shadow-sm); }
.logo .accent { color: var(--brand); }

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.nav a {
  padding: 9px 14px;
  border-radius: var(--r-sm);
  color: var(--ink-2);
  font-size: 0.9375rem;
  font-weight: 550;
}
.nav a:hover { background: var(--brand-50); color: var(--brand); }

.header-cta { display: flex; align-items: center; gap: 10px; margin-left: 8px; }

@media (max-width: 900px) {
  .nav { display: none; }
  .header-cta .btn--ghost { display: none; }
}

.hero {
  position: relative;
  padding-block: clamp(48px, 6.5vw, 96px) clamp(52px, 7vw, 104px);
  background:
    radial-gradient(1100px 520px at 12% -10%, rgba(29, 78, 216, 0.10), transparent 62%),
    radial-gradient(760px 420px at 92% 6%, rgba(6, 182, 212, 0.10), transparent 60%);
}
.hero .wrap {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.hero .wrap > * { min-width: 0; }
.hero h1 { margin-top: 18px; }
.hero .lede { margin-top: 20px; }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-note {
  margin-top: 16px;
  font-size: 0.875rem;
  color: var(--muted);
}

.trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
  margin-top: 34px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}
.trust div { display: flex; flex-direction: column; }
.trust dt, .trust .k {
  font-size: 1.32rem;
  font-weight: 800;
  letter-spacing: -0.028em;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.trust dd, .trust .v {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--muted);
}

@media (max-width: 920px) {
  .hero .wrap { grid-template-columns: 1fr; }
  .hero .lede { max-width: none; }
}

.panel {
  min-width: 0;
  max-width: 100%;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  font-size: 0.875rem;
}

.panel-top {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  background: linear-gradient(180deg, var(--surface-alt), var(--surface));
  border-bottom: 1px solid var(--line);
}
.panel-top .addr {
  font-family: var(--mono);
  font-size: 0.8125rem;
  color: var(--ink-2);
  letter-spacing: -0.01em;
}
.panel-top .copy {
  margin-left: auto;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: var(--r-sm);
  padding: 5px 10px;
  font-size: 0.75rem;
  color: var(--muted);
  cursor: default;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 4px 10px;
  border-radius: var(--r-pill);
  background: var(--success-soft);
  color: var(--success);
  font-size: 0.75rem;
  font-weight: 700;
}
.status::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 0 rgba(11, 122, 85, 0.5);
  animation: pulse 2.4s ease-out infinite;
}
@keyframes pulse {
  70% { box-shadow: 0 0 0 7px rgba(11, 122, 85, 0); }
  100% { box-shadow: 0 0 0 0 rgba(11, 122, 85, 0); }
}

.panel-body { padding: 18px; display: grid; gap: 16px; }

.meter-row { display: grid; gap: 7px; }
.meter-row .label {
  display: flex;
  justify-content: space-between;
  font-size: 0.8125rem;
  color: var(--muted);
}
.meter-row .label b {
  color: var(--ink);
  font-weight: 650;
  font-variant-numeric: tabular-nums;
}
.meter {
  height: 7px;
  border-radius: var(--r-pill);
  background: var(--bg-sunken);
  overflow: hidden;
}
.meter i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--brand), var(--accent));
}

.console {
  background: #0b1530;
  border-radius: var(--r);
  padding: 14px 16px;
  font-family: var(--mono);
  font-size: 0.75rem;
  line-height: 1.85;
  color: #b9c8ef;
  overflow: hidden;
}
.console > span { display: block; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.console .ok { color: #5ee9b5; }
.console .hi { color: #7fb4ff; }
.console .dim { color: #64769f; }

.plans {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.plan {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 26px 22px 22px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.18s ease, box-shadow 0.22s ease, border-color 0.18s ease;
}
.plan:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--brand-200); }

.plan--featured {
  border-color: var(--brand);
  box-shadow: var(--shadow-md);
}
.plan--featured::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  border: 1px solid var(--brand);
  pointer-events: none;
}

.plan-badge {
  position: absolute;
  top: -11px;
  left: 22px;
  padding: 4px 12px;
  border-radius: var(--r-pill);
  background: var(--brand);
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: var(--shadow-brand);
}
.plan-badge--alt { background: var(--ink); box-shadow: var(--shadow-sm); }

.plan-name {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-size: 1.0625rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.plan-name span {
  font-size: 0.8125rem;
  font-weight: 650;
  color: var(--brand);
  letter-spacing: 0;
}
.plan-tagline {
  margin-top: 6px;
  font-size: 0.875rem;
  color: var(--muted);
  min-height: 2.6em;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 5px;
  margin-top: 16px;
  font-variant-numeric: tabular-nums;
}
.price .amount {
  font-size: 2.6rem;
  font-weight: 800;
  letter-spacing: -0.042em;
  line-height: 1;
  color: var(--ink);
}
.price .per { font-size: 0.9375rem; color: var(--muted); font-weight: 550; }
.price-sub {
  margin-top: 8px;
  font-size: 0.8125rem;
  color: var(--muted);
}

.plan .btn { margin-top: 20px; }

.specs {
  display: grid;
  gap: 11px;
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: 0.9rem;
  color: var(--ink-2);
}
.specs li {
  position: relative;
  padding-left: 27px;
  line-height: 1.45;
}
.specs li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: var(--brand-50) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%231d4ed8' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3.2 8.6l3.1 3.1 6.5-7'/%3E%3C/svg%3E") center / 13px 13px no-repeat;
}
.specs li b { color: var(--ink); font-weight: 650; }

.plans-foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 22px;
  margin-top: 30px;
  padding: 18px 22px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  font-size: 0.875rem;
  color: var(--ink-2);
  text-align: center;
}
.plans-foot b { color: var(--ink); font-weight: 650; }
.plans-foot .sep { color: var(--line-strong); }

@media (max-width: 1080px) { .plans { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; } }
@media (max-width: 560px) { .plans { grid-template-columns: 1fr; } .plan-tagline { min-height: 0; } }

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 18px;
}
.feature {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 24px;
  box-shadow: var(--shadow-xs);
}
.feature .ico {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--brand-50);
  color: var(--brand);
  margin-bottom: 16px;
}
.feature .ico svg { width: 21px; height: 21px; }
.feature p { margin-top: 8px; font-size: 0.9375rem; color: var(--ink-2); }

.games {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.game-chip {
  padding: 9px 16px;
  border-radius: var(--r-pill);
  background: var(--surface);
  border: 1px solid var(--line);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ink-2);
  box-shadow: var(--shadow-xs);
}
.game-chip.more { background: transparent; border-style: dashed; color: var(--muted); font-weight: 500; }

.faq { display: grid; gap: 12px; max-width: 820px; margin-inline: auto; }
.faq details {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 4px 20px;
  box-shadow: var(--shadow-xs);
}
.faq details[open] { border-color: var(--brand-200); box-shadow: var(--shadow-sm); }
.faq summary {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 0;
  font-weight: 650;
  letter-spacing: -0.012em;
  cursor: pointer;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "";
  flex: none;
  width: 18px;
  height: 18px;
  margin-left: auto;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%231d4ed8' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M8 3v10M3 8h10'/%3E%3C/svg%3E") center / contain no-repeat;
  transition: transform 0.2s ease;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq .answer { padding: 0 0 18px; color: var(--ink-2); font-size: 0.9375rem; max-width: 66ch; }
.faq .answer p + p { margin-top: 10px; }

.cta {
  background: linear-gradient(135deg, var(--brand-900), var(--brand) 55%, #2f6bf0);
  color: #fff;
  border-radius: var(--r-xl);
  padding: clamp(32px, 5vw, 56px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  box-shadow: var(--shadow-lg);
}
.cta h2 { color: #fff; }
.cta p { color: #cfe0ff; margin-top: 10px; max-width: 52ch; }
.cta .cta-copy { flex: 1 1 340px; }
.cta .cta-actions { display: flex; flex-wrap: wrap; gap: 12px; }

.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--line);
  padding-block: clamp(40px, 5vw, 64px) 28px;
  font-size: 0.9rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(240px, 1.4fr) repeat(3, minmax(0, 1fr));
  gap: 36px 24px;
}
.footer-grid h4 {
  font-size: 0.75rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
  margin-bottom: 14px;
}
.footer-grid li + li { margin-top: 9px; }
.footer-grid a { color: var(--ink-2); }
.footer-grid a:hover { color: var(--brand); }
.footer-blurb { color: var(--muted); margin-top: 14px; max-width: 34ch; font-size: 0.875rem; }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 20px;
  margin-top: 40px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.8125rem;
}
.footer-bottom .spacer { margin-left: auto; }
.fineprint { margin-top: 14px; color: var(--muted); font-size: .75rem; max-width: 86ch; }
.footer-bottom .status { background: var(--success-soft); }

@media (max-width: 800px) {
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-grid > :first-child { grid-column: 1 / -1; }
}

dialog.sheet {
  margin: auto;
  width: min(560px, calc(100vw - 32px));
  max-height: calc(100dvh - 48px);
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  background: var(--surface);
  color: var(--ink);
  box-shadow: var(--shadow-lg);
}
dialog.sheet::backdrop { background: rgba(9, 18, 40, 0.45); backdrop-filter: blur(3px); }
.sheet-head {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 24px 24px 0;
}
.sheet-head h3 { font-size: 1.25rem; }
.sheet-head p { color: var(--ink-2); font-size: 0.9375rem; margin-top: 6px; }
.sheet-close {
  margin-left: auto;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: var(--r-sm);
  width: 32px; height: 32px;
  display: grid; place-items: center;
  color: var(--muted);
  cursor: pointer;
  flex: none;
}
.sheet-close:hover { background: var(--bg-sunken); color: var(--ink); }
.sheet-body { padding: 18px 24px 24px; }
.sheet-body ol { padding-left: 20px; color: var(--ink-2); font-size: 0.9375rem; }
.sheet-body li + li { margin-top: 10px; }
.sheet-foot {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  padding: 16px 24px;
  border-top: 1px solid var(--line);
  background: var(--surface-alt);
  border-radius: 0 0 var(--r-xl) var(--r-xl);
}

code, kbd, .mono { font-family: var(--mono); font-size: 0.875em; }
code {
  background: var(--bg-sunken);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 2px 6px;
  color: var(--brand-900);
  overflow-wrap: anywhere;
}
pre.code {
  background: #0b1530;
  color: #cfe0ff;
  border-radius: var(--r);
  padding: 14px 16px;
  overflow-x: auto;
  font-family: var(--mono);
  font-size: 0.8125rem;
  line-height: 1.7;
}
pre.code b { color: #7fe3c8; font-weight: 500; }

.notice {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 16px;
  border-radius: var(--r);
  font-size: 0.9rem;
  border: 1px solid var(--line);
  background: var(--surface-alt);
  color: var(--ink-2);
}
.notice--warn { background: var(--warning-soft); border-color: #f3d9b5; color: #7c3d06; }
.notice--ok { background: var(--success-soft); border-color: #bfe8d8; color: #0b5d43; }
.notice strong { color: inherit; }

.inline-error {
  margin-top: 12px;
  font-size: 0.8125rem;
  color: #b42318;
  min-height: 1px;
}
.inline-error:empty { display: none; }

.page {
  padding-block: clamp(56px, 8vw, 110px);
  min-height: 62vh;
}
.page .wrap { max-width: 780px; }
.page h1 { font-size: clamp(2rem, 1.4rem + 2.2vw, 2.9rem); }
.page h2 { font-size: 1.35rem; margin-top: 38px; }
.page h3 { margin-top: 26px; }
.page p, .page li { color: var(--ink-2); }
.page p { margin-top: 14px; }
.page ul.bullets { list-style: disc; padding-left: 22px; margin-top: 14px; }
.page ul.bullets li { margin-top: 8px; }
.page .updated { color: var(--muted); font-size: 0.875rem; margin-top: 10px; }

.result {
  text-align: center;
  max-width: 620px;
  margin-inline: auto;
}
.result .glyph {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0 auto 26px;
  background: var(--success-soft);
  color: var(--success);
}
.result .glyph--muted { background: var(--bg-sunken); color: var(--muted); }
.result .glyph svg { width: 34px; height: 34px; }
.result p { margin-top: 16px; }
.result .actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 30px;
}
.result .ref {
  display: inline-block;
  margin-top: 22px;
  padding: 10px 16px;
  border-radius: var(--r);
  background: var(--surface);
  border: 1px dashed var(--line-strong);
  font-family: var(--mono);
  font-size: 0.8125rem;
  color: var(--muted);
}
.steps {
  counter-reset: step;
  list-style: none;
  padding: 0;
  text-align: left;
  margin-top: 34px;
  display: grid;
  gap: 14px;
}
.steps li {
  counter-increment: step;
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 16px 18px 16px 56px;
  font-size: 0.9375rem;
  color: var(--ink-2);
}
.steps li::before {
  content: counter(step);
  position: absolute;
  left: 18px;
  top: 17px;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--brand-50);
  color: var(--brand);
  display: grid;
  place-items: center;
  font-size: 0.8125rem;
  font-weight: 750;
}
.steps li b { color: var(--ink); display: block; margin-bottom: 2px; }

.contact-card {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  margin-top: 28px;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
}
.contact-card .ico {
  display: grid;
  place-items: center;
  flex: none;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--brand-50);
  color: var(--brand);
}
.contact-card .ico svg { width: 25px; height: 25px; }
.contact-card .who { flex: 1 1 240px; min-width: 0; }
.contact-card .email {
  display: inline-block;
  font-size: clamp(1.2rem, 1rem + 1vw, 1.55rem);
  font-weight: 800;
  letter-spacing: -0.024em;
  line-height: 1.2;
  overflow-wrap: anywhere;
}
.contact-card .sub { display: block; margin-top: 6px; font-size: 0.875rem; color: var(--muted); }
.contact-card .btn { flex: none; }

.page table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 18px;
  font-size: 0.9375rem;
}
.page th,
.page td {
  text-align: left;
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
  color: var(--ink-2);
}
.page th {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
}
.page td b { color: var(--ink); font-weight: 650; }
.page tr:last-child td { border-bottom: 0; }

.ask {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}
.ask > div {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 16px 18px;
}
.ask b { display: block; color: var(--ink); margin-bottom: 3px; }
.ask p { margin: 0; font-size: 0.9375rem; }
