:root {
  color-scheme: light;
  --bg: #f7f8f4;
  --ink: #1d2430;
  --muted: #5b6472;
  --line: #d7dddf;
  --panel: #ffffff;
  --sky: #77b8df;
  --sky-deep: #246a9f;
  --sun: #f2c35b;
  --leaf: #2d7c67;
  --danger: #b94b4b;
  --shadow: 0 16px 36px rgba(22, 33, 44, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  min-height: 100%;
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

button,
a,
input {
  font: inherit;
}

.shell {
  width: min(100%, 760px);
  margin: 0 auto;
  padding: 16px;
}

.hero,
.section {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero {
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 32px 20px;
}

.event-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.event-strip span {
  border: 1px solid #bdd7e8;
  border-radius: 999px;
  color: #164d76;
  background: #eaf5fb;
  padding: 7px 10px;
  font-size: 0.78rem;
  font-weight: 700;
}

h1,
h2,
p {
  margin-block-start: 0;
}

h1 {
  max-width: 11ch;
  margin-block-end: 14px;
  font-size: clamp(2.45rem, 14vw, 4.8rem);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  margin-block-end: 0;
  font-size: 1.28rem;
  letter-spacing: 0;
}

.promise {
  max-width: 34rem;
  color: #334354;
  font-size: 1.15rem;
  font-weight: 650;
}

.disclaimer {
  border-left: 4px solid var(--danger);
  margin: 14px 0 22px;
  padding: 10px 12px;
  background: #fff2ee;
  color: #7b2b2b;
  font-weight: 700;
}

.service-status {
  display: grid;
  gap: 4px;
  margin: 0 0 22px;
  padding: 10px 12px;
  border: 1px solid #e2cf87;
  border-radius: 8px;
  background: #fff8df;
  color: #5b4a14;
  font-size: 0.92rem;
}

.service-status strong {
  font-weight: 850;
}

.hero-actions,
.summary-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.button,
.issue-button,
.price-button {
  min-height: 46px;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  transition: transform 120ms ease, border-color 120ms ease, background 120ms ease;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 14px;
  font-weight: 800;
}

.button.primary {
  background: var(--sky-deep);
  color: #ffffff;
}

.button.secondary {
  background: #f5fbf2;
  border-color: #bcddc9;
  color: #235a48;
}

.section {
  margin-top: 14px;
  padding: 20px;
}

.section.compact,
.section.capture {
  padding-bottom: 22px;
}

.section.muted {
  background: #fbfbf7;
  box-shadow: none;
}

.section-heading {
  margin-bottom: 14px;
}

.kicker {
  margin-bottom: 4px;
  color: var(--sky-deep);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.checklist {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.checklist li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 10px;
  align-items: start;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fcfdfb;
}

.checklist input {
  width: 22px;
  height: 22px;
  margin: 1px 0 0;
  accent-color: var(--leaf);
}

.check-content,
.checklist label {
  display: grid;
  gap: 6px;
  font-weight: 700;
}

.check-content {
  gap: 8px;
}

.check-topline {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
}

.check-main {
  font-weight: 850;
}

.confidence {
  display: inline-flex;
  width: fit-content;
  border-radius: 999px;
  padding: 3px 7px;
  font-size: 0.68rem;
  font-weight: 850;
  line-height: 1.2;
  text-transform: uppercase;
}

.confidence-official {
  background: #e6f5ee;
  color: #1c604e;
}

.confidence-best {
  background: #fff8df;
  color: #735b11;
}

.confidence-high {
  background: #fff0e7;
  color: #8a3b16;
}

.check-detail {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 600;
}

.check-warning {
  color: #7b2b2b;
  font-size: 0.9rem;
  font-weight: 750;
}

.source-links,
.section-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 650;
}

.source-links a {
  color: var(--sky-deep);
  font-weight: 850;
}

.issue-grid,
.price-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.issue-button,
.price-button {
  width: 100%;
  padding: 12px;
  background: #ffffff;
  border-color: var(--line);
  color: var(--ink);
  font-weight: 800;
  text-align: left;
}

.price-button {
  text-align: center;
}

.issue-button:hover,
.issue-button.active,
.price-button:hover,
.price-button.active,
.button:hover {
  transform: translateY(-1px);
}

.issue-button.active,
.price-button.active {
  border-color: var(--sky-deep);
  background: #e9f5fc;
  color: #123f61;
}

.price-button.wide {
  text-align: center;
}

.summary {
  display: grid;
  gap: 10px;
  margin: 0 0 14px;
}

.summary div {
  display: grid;
  grid-template-columns: minmax(84px, 0.35fr) 1fr;
  gap: 10px;
  align-items: center;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f9fbfc;
}

.summary dt {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.summary dd {
  margin: 0;
  overflow-wrap: anywhere;
  font-weight: 800;
}

.status,
.small {
  color: var(--muted);
  font-size: 0.92rem;
}

.status {
  min-height: 1.4em;
  margin: 10px 0 0;
}

.small {
  margin-bottom: 0;
}

@media (min-width: 620px) {
  .shell {
    padding: 24px;
  }

  .hero {
    min-height: 86vh;
    padding: 52px 42px;
  }

  .section {
    padding: 26px;
  }

  .issue-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .price-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .price-button.wide {
    grid-column: span 4;
  }
}

@media print {
  body {
    background: #ffffff;
  }

  .shell {
    max-width: none;
    padding: 0;
  }

  .hero,
  .section {
    box-shadow: none;
    break-inside: avoid;
  }

  .hero {
    min-height: auto;
  }
}
