/* One School — self-serve enrolment.
   Tokens deliberately match public/igcse-parent-navigator/styles.css so a
   campaign landing page and this checkout read as one product. No @import and
   no webfont link: every byte is local. */

:root {
  --paper: #f4f2ec;
  --surface: #fbfaf6;
  --surface-strong: #ffffff;
  --ink: #15181a;
  --ink-soft: #50575a;
  --ink-faint: #7c8386;
  --line: rgba(21, 24, 26, 0.14);
  --accent: #0abab5;
  --accent-strong: #0a9f9a;
  --accent-deep: #066b67;
  --success: #25755e;
  --danger: #a33a2a;
  --warning: #a76c16;
  --radius-sm: 10px;
  --radius: 20px;
  --shadow: 0 18px 55px rgba(21, 24, 26, 0.09);
  --shell: 720px;
  --font-sans: "PingFang SC", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-serif: Georgia, "Songti SC", "STSong", serif;
}

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

body {
  margin: 0;
  padding: 0 20px 64px;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.shell {
  max-width: var(--shell);
  margin: 0 auto;
}

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

/* ---------- header ---------- */

.masthead {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 28px 0 22px;
}

.brand__mark {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: var(--accent-deep);
  display: inline-block;
}

.brand__name {
  font-weight: 650;
  letter-spacing: -0.01em;
}

/* ---------- cards ---------- */

.card {
  background: var(--surface-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px;
  margin-bottom: 20px;
}

.card__eyebrow {
  font-size: 12px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin: 0 0 8px;
}

h1 {
  font-family: var(--font-serif);
  font-size: clamp(26px, 5vw, 36px);
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin: 0 0 12px;
}

h2 {
  font-size: 17px;
  margin: 0 0 4px;
}

.lede {
  color: var(--ink-soft);
  margin: 0 0 20px;
}

/* ---------- price ---------- */

.price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 16px 0 4px;
  border-top: 1px solid var(--line);
  margin-top: 20px;
}

.price__amount {
  font-size: 30px;
  font-weight: 640;
  letter-spacing: -0.02em;
}

.price__meta {
  color: var(--ink-faint);
  font-size: 14px;
}

.facts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.fact {
  font-size: 13px;
  padding: 5px 11px;
  border-radius: 999px;
  background: var(--paper);
  border: 1px solid var(--line);
  color: var(--ink-soft);
}

.fact--warn {
  color: var(--warning);
  border-color: rgba(167, 108, 22, 0.35);
}

/* ---------- form ---------- */

.field {
  margin-bottom: 18px;
}

.field__label {
  display: block;
  font-size: 14px;
  font-weight: 560;
  margin-bottom: 6px;
}

.field__hint {
  font-size: 13px;
  color: var(--ink-faint);
  margin: 5px 0 0;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
input[type="password"] {
  width: 100%;
  padding: 12px 14px;
  font: inherit;
  font-size: 16px; /* 16px stops iOS zooming the page on focus */
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

input:focus-visible,
button:focus-visible {
  outline: 2px solid var(--accent-strong);
  outline-offset: 2px;
}

.choice {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.choice__input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.choice__body {
  display: block;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
  cursor: pointer;
  text-align: center;
  font-weight: 560;
}

.choice__input:checked + .choice__body {
  border-color: var(--accent-strong);
  background: rgba(10, 186, 181, 0.09);
  box-shadow: inset 0 0 0 1px var(--accent-strong);
}

.choice__input:focus-visible + .choice__body {
  outline: 2px solid var(--accent-strong);
  outline-offset: 2px;
}

.learner {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 16px;
  margin-bottom: 12px;
  background: var(--surface);
}

.learner__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.learner__title {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-soft);
}

.row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

@media (max-width: 520px) {
  .row,
  .choice {
    grid-template-columns: 1fr;
  }
  .card {
    padding: 22px 18px;
  }
}

.consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 12px 0;
  font-size: 14px;
  color: var(--ink-soft);
}

.consent input {
  margin-top: 4px;
  width: 18px;
  height: 18px;
  flex: none;
}

/* ---------- buttons ---------- */

.btn {
  font: inherit;
  font-weight: 600;
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  background: var(--accent-deep);
  color: #fff;
}

.btn:hover:not(:disabled) {
  background: var(--accent-strong);
}

.btn:disabled {
  opacity: 0.55;
  cursor: default;
}

.btn--block {
  display: block;
  width: 100%;
}

.btn--quiet {
  background: transparent;
  color: var(--accent-deep);
  border-color: var(--line);
  padding: 8px 14px;
  font-size: 14px;
  border-radius: var(--radius-sm);
}

/* ---------- payment methods ---------- */

.methods {
  border: 0;
  padding: 0;
  margin: 0 0 20px;
  display: grid;
  gap: 10px;
}

.method {
  display: block;
}

.method__body {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
  cursor: pointer;
}

.method__input:checked + .method__body {
  border-color: var(--accent-strong);
  box-shadow: inset 0 0 0 1px var(--accent-strong);
}

.method__input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.method__name {
  font-weight: 560;
}

.method__hint {
  display: block;
  font-size: 13px;
  color: var(--ink-faint);
}

/* ---------- states ---------- */

.notice {
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  margin-bottom: 18px;
}

.notice--error {
  background: rgba(163, 58, 42, 0.08);
  border: 1px solid rgba(163, 58, 42, 0.3);
  color: var(--danger);
}

.notice--info {
  background: rgba(10, 186, 181, 0.08);
  border: 1px solid rgba(10, 186, 181, 0.3);
  color: var(--accent-deep);
}

.skeleton {
  height: 14px;
  border-radius: 6px;
  background: linear-gradient(90deg, var(--line), rgba(21, 24, 26, 0.05), var(--line));
  margin-bottom: 10px;
}

.skeleton--title {
  height: 26px;
  width: 62%;
}

.skeleton--short {
  width: 40%;
}

[hidden] {
  display: none !important;
}

.done {
  text-align: center;
  padding: 12px 0 4px;
}

.done__mark {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(37, 117, 94, 0.12);
  color: var(--success);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 12px;
}

.steps {
  text-align: left;
  margin: 20px 0 0;
  padding-left: 20px;
  color: var(--ink-soft);
}

.steps li {
  margin-bottom: 8px;
}

.foot {
  text-align: center;
  color: var(--ink-faint);
  font-size: 13px;
  padding-top: 8px;
}

.spinner {
  display: inline-block;
  width: 15px;
  height: 15px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  vertical-align: -2px;
  margin-right: 8px;
}

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

@media (prefers-reduced-motion: reduce) {
  .spinner {
    animation: none;
  }
  html {
    scroll-behavior: auto;
  }
}

/* =====================================================================
   THE CAMPAIGN PAGE

   Full-bleed sections at a wider measure than the checkout flow, which
   stays a narrow card column. Same tokens throughout: a campaign page and
   the checkout it leads into have to read as one product, and they are one
   deployable.

   Every selector here is driven by a `content` block type in
   docs/offer-content-schema.md. Nothing is per-campaign.
   ===================================================================== */

.landing {
  --measure: 1080px;
}

.sec {
  padding: 64px 0;
}

.sec__inner {
  max-width: var(--measure);
  margin: 0 auto;
  padding: 0 32px;
}

.sec + .sec {
  border-top: 1px solid var(--line);
}

.sec__title {
  font-family: var(--font-serif);
  font-size: 30px;
  line-height: 1.2;
  margin: 0 0 12px;
}

.sec__lede {
  font-size: 18px;
  color: var(--ink-soft);
  margin: 0 0 28px;
  max-width: 62ch;
}

.sec__note {
  font-size: 14px;
  color: var(--ink-faint);
  margin: 20px 0 0;
}

/* ---------- sticky bar ---------- */

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(251, 250, 246, 0.93);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.topbar__inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 10px 32px;
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 600;
}

.topbar__right {
  display: inline-flex;
  align-items: center;
  gap: 16px;
}

.topbar__note {
  font-size: 14px;
  color: var(--ink-soft);
}

.btn--sm {
  padding: 9px 18px;
  font-size: 14px;
}

.btn--lg {
  padding: 15px 30px;
  font-size: 17px;
}

/* ---------- hero ---------- */

.sec--hero {
  padding: 72px 0 56px;
}

.hero__eyebrow {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-deep);
  font-weight: 600;
  margin: 0 0 18px;
}

.hero__title {
  font-family: var(--font-serif);
  font-size: 46px;
  line-height: 1.08;
  margin: 0 0 20px;
  max-width: 18ch;
}

.hero__lede {
  font-size: 21px;
  line-height: 1.45;
  color: var(--ink-soft);
  margin: 0 0 16px;
  max-width: 54ch;
}

.hero__body {
  font-size: 17px;
  color: var(--ink-soft);
  margin: 0 0 32px;
  max-width: 62ch;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.hero__note {
  font-size: 14px;
  color: var(--ink-faint);
}

/* ---------- stat row ---------- */

.sec--stats {
  padding: 0 0 56px;
}

.stats {
  display: flex;
  flex-wrap: wrap;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stat {
  flex: 1 1 0;
  min-width: 160px;
  padding: 22px 24px 22px 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.stat + .stat {
  padding-left: 24px;
  border-left: 1px solid var(--line);
}

.stat__label {
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

.stat__value {
  font-size: 18px;
  font-weight: 600;
}

/* ---------- prose ---------- */

.prose__p {
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0 0 16px;
  max-width: 68ch;
}

/* ---------- grids ---------- */

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
}

.card-lite {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
}

.card-lite__title {
  font-size: 17px;
  margin: 0 0 9px;
}

.card-lite__body {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0;
}

/* ---------- tick list ---------- */

.ticks {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 12px 26px;
}

.ticks__item {
  position: relative;
  padding-left: 26px;
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.5;
}

.ticks__item::before {
  content: "›";
  position: absolute;
  left: 6px;
  color: var(--accent-deep);
  font-weight: 700;
}

/* ---------- teacher ---------- */

.person {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px;
  max-width: 70ch;
}

.person__name {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 4px;
}

.person__role {
  font-size: 14px;
  color: var(--ink-faint);
  margin: 0 0 16px;
}

.person__body {
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0;
}

/* ---------- testimonials ---------- */

.grid--quotes {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.quote {
  margin: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
}

.quote__text {
  margin: 0 0 14px;
  font-family: var(--font-serif);
  font-size: 17px;
  line-height: 1.55;
}

.quote__by {
  font-size: 13px;
  color: var(--ink-faint);
}

/* ---------- course details ---------- */

.details {
  margin: 0;
  border-top: 1px solid var(--line);
  max-width: 72ch;
}

.details__row {
  display: flex;
  gap: 24px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}

.details__label {
  flex: 0 0 34%;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

.details__value {
  margin: 0;
  flex: 1 1 auto;
  font-size: 16px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.details__note {
  font-size: 13px;
  color: var(--ink-faint);
}

/* ---------- price panel ---------- */

.price-panel {
  background: var(--surface-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 36px 32px;
  text-align: center;
  max-width: 520px;
  margin: 0 auto;
}

.price-panel__title {
  font-family: var(--font-serif);
  font-size: 24px;
  margin: 0 0 18px;
}

.price-panel__amounts {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.price-panel__now {
  font-size: 42px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.price-panel__was {
  font-size: 22px;
  color: var(--ink-faint);
  text-decoration: line-through;
}

.price-panel__saving {
  font-size: 14px;
  color: var(--success);
  margin: 10px 0 0;
}

.price-panel__note {
  font-size: 15px;
  color: var(--ink-soft);
  margin: 16px 0 22px;
}

.price-panel__footnote {
  font-size: 13px;
  color: var(--ink-faint);
  margin: 16px 0 0;
}

/* ---------- FAQ ---------- */

.faq {
  border-top: 1px solid var(--line);
  max-width: 76ch;
}

.faq__item {
  border-bottom: 1px solid var(--line);
}

.faq__q {
  cursor: pointer;
  list-style: none;
  padding: 17px 30px 17px 0;
  font-size: 17px;
  font-weight: 600;
  position: relative;
}

.faq__q::-webkit-details-marker {
  display: none;
}

.faq__q::after {
  content: "+";
  position: absolute;
  right: 4px;
  top: 15px;
  font-size: 20px;
  font-weight: 400;
  color: var(--accent-deep);
}

.faq__item[open] .faq__q::after {
  content: "–";
}

.faq__a {
  margin: 0;
  padding: 0 30px 20px 0;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-soft);
}

/* ---------- closing call to action ---------- */

.sec--cta {
  background: var(--surface);
  text-align: center;
}

.sec--cta .sec__lede {
  margin-left: auto;
  margin-right: auto;
}

/* ---------- narrow screens ---------- */

@media (max-width: 860px) {
  .sec {
    padding: 44px 0;
  }

  .sec__inner,
  .topbar__inner {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero__title {
    font-size: 33px;
    max-width: none;
  }

  .hero__lede {
    font-size: 18px;
  }

  .sec__title {
    font-size: 25px;
  }

  /* One fact per row, divided by a rule rather than by a column edge. */
  .stat {
    flex: 1 1 100%;
    padding: 15px 0;
    border-bottom: 1px solid var(--line);
  }

  .stat + .stat {
    padding-left: 0;
    border-left: 0;
  }

  .details__row {
    flex-direction: column;
    gap: 4px;
  }

  .details__label {
    flex: none;
  }

  .price-panel {
    padding: 28px 22px;
  }

  .price-panel__now {
    font-size: 36px;
  }

  /* A full-width CTA is easier to hit than a pill floated next to a note. */
  .hero__actions .btn,
  .sec--cta .btn,
  .price-panel .btn {
    width: 100%;
  }

  /* The bar keeps one row: its note repeats the hero eyebrow immediately below
     it, so on a narrow screen it costs a line of height to say nothing new. */
  .topbar__note {
    display: none;
  }

  .topbar__inner {
    flex-wrap: nowrap;
    min-height: 56px;
  }

  .topbar .btn {
    white-space: nowrap;
  }
}

.pay-saving {
  font-size: 14px;
  color: var(--success);
  margin: -8px 0 18px;
}

/* =====================================================================
   THE REGISTRATION STEP

   Two columns: the form, and what is being bought kept beside it. The rest
   of the flow stays a narrow reading column — only this step is wide.
   ===================================================================== */

.shell--wide {
  max-width: 1080px;
}

/* ---------- progress ---------- */

.steps-bar {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  margin: 0 0 22px;
  padding: 0;
  font-size: 14px;
  color: var(--ink-faint);
}

.steps-bar__step {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.steps-bar__n {
  width: 23px;
  height: 23px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
}

.steps-bar__step.is-current {
  color: var(--ink);
  font-weight: 600;
}

.steps-bar__step.is-current .steps-bar__n {
  background: var(--accent-deep);
  border-color: var(--accent-deep);
  color: #fff;
}

.steps-bar__step.is-done .steps-bar__n {
  background: var(--accent-wash, rgba(10, 186, 181, 0.12));
  border-color: var(--accent-strong);
  color: var(--accent-deep);
}

/* ---------- two columns ---------- */

.reg {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.reg__aside {
  position: sticky;
  top: 20px;
}

/* ---------- what they are buying ---------- */

.summary {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 22px;
}

.summary__eyebrow {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin: 0 0 6px;
}

.summary__title {
  font-family: var(--font-serif);
  font-size: 20px;
  line-height: 1.25;
  margin: 0 0 18px;
}

.summary__facts {
  margin: 0;
  border-top: 1px solid var(--line);
}

.summary__row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
}

.summary__label {
  font-size: 13px;
  color: var(--ink-faint);
  flex: none;
}

.summary__value {
  margin: 0;
  font-size: 14px;
  text-align: right;
}

.summary__total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 14px;
  padding: 16px 0 0;
}

.summary__total-label {
  font-size: 14px;
  color: var(--ink-soft);
}

.summary__total-value {
  font-size: 26px;
  font-weight: 650;
  letter-spacing: -0.02em;
}

.summary__saving {
  font-size: 13px;
  color: var(--success);
  margin: 6px 0 0;
}

.summary__note {
  font-size: 13px;
  color: var(--ink-faint);
  margin: 14px 0 0;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

/* ---------- schema-driven fields ---------- */

textarea {
  width: 100%;
  padding: 12px 14px;
  font: inherit;
  font-size: 16px; /* 16px stops iOS zooming the page on focus */
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  resize: vertical;
}

select {
  width: 100%;
  padding: 12px 14px;
  font: inherit;
  font-size: 16px;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--accent-strong);
  outline-offset: 2px;
}

/* A radio group reads as a stack once there are more than two choices. */
.choice--stack {
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .choice--stack {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  }
}

@media (max-width: 860px) {
  /* The rail moves above the form: on a phone, what you are buying should be
     the first thing you see, not something below a long form. */
  .reg {
    grid-template-columns: minmax(0, 1fr);
  }

  .reg__aside {
    position: static;
    order: -1;
  }

  .steps-bar {
    font-size: 13px;
    gap: 6px 14px;
  }
}

/* ---------- order summary ---------- */

/* A discount in a column of positive numbers reads as another charge unless it
   is visibly a credit. */
.summary__value--credit {
  color: var(--success);
}

/* ---------- receipt ---------- */

.receipt {
  margin: 20px 0 0;
  text-align: left;
  border-top: 1px solid var(--line);
}

.receipt__row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
}

.receipt__label {
  font-size: 13px;
  color: var(--ink-faint);
  flex: none;
}

.receipt__value {
  margin: 0;
  font-size: 14px;
  font-weight: 560;
  text-align: right;
}

/* =====================================================================
   SPACING UTILITIES

   These exist because the payment host serves a strict Content-Security-
   Policy with `style-src 'self'` and no `'unsafe-inline'`, which blocks
   inline `style` attributes outright — verified against the real header,
   where nine of them were being dropped and the layout collapsed.

   Weakening the policy would have been the easier fix and the wrong one:
   `'unsafe-inline'` on a page that performs a payment hand-off gives an
   injected style free rein to reskin the page over a payment form.
   ===================================================================== */

.mt-10 { margin-top: 10px; }
.mt-14 { margin-top: 14px; }
.mt-16 { margin-top: 16px; }
.mt-22 { margin-top: 22px; }
.mt-24 { margin-top: 24px; }
.mt-26 { margin-top: 26px; }
.mb-12 { margin-bottom: 12px; }
.mb-14 { margin-bottom: 14px; }
