:root {
  color-scheme: dark;
  --bg: #07020f;
  --bg-2: #0d061a;
  --panel: #160a28;
  --panel-2: #21103b;
  --panel-3: #10071d;
  --cyan: #56f6ff;
  --cyan-soft: rgba(86, 246, 255, .18);
  --pink: #ff4fd8;
  --pink-soft: rgba(255, 79, 216, .16);
  --yellow: #ffe45c;
  --green: #65ff93;
  --red: #ff5b6d;
  --orange: #ff9f43;
  --text: #fbf7ff;
  --muted: #b9a9c8;
  --line: rgba(86, 246, 255, .42);
  --shadow: 0 22px 60px rgba(0, 0, 0, .52);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--bg);
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--text);
  font-family: "Courier New", Courier, monospace;
  background:
    radial-gradient(circle at 50% -12%, rgba(255, 79, 216, .24), transparent 34%),
    radial-gradient(circle at 18% 22%, rgba(86, 246, 255, .09), transparent 24%),
    linear-gradient(180deg, #10041d 0, var(--bg) 34%, #050109 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -3;
  background:
    linear-gradient(135deg, rgba(86, 246, 255, .035) 25%, transparent 25%) 0 0 / 30px 30px,
    linear-gradient(225deg, rgba(86, 246, 255, .025) 25%, transparent 25%) 0 0 / 30px 30px;
}

a {
  color: var(--cyan);
  text-underline-offset: 3px;
}

a:hover {
  color: var(--yellow);
}

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

button:focus-visible,
input:focus-visible,
summary:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(255, 228, 92, .72);
  outline-offset: 3px;
}

[hidden] {
  display: none !important;
}

.scanlines {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 50;
  opacity: .12;
  background: repeating-linear-gradient(
    to bottom,
    transparent 0,
    transparent 3px,
    rgba(0, 0, 0, .48) 4px
  );
}

.ambient-grid {
  position: fixed;
  inset: 52% -12% -18%;
  pointer-events: none;
  z-index: -2;
  opacity: .34;
  transform: perspective(500px) rotateX(59deg);
  transform-origin: center top;
  background-image:
    linear-gradient(rgba(86, 246, 255, .24) 1px, transparent 1px),
    linear-gradient(90deg, rgba(86, 246, 255, .24) 1px, transparent 1px);
  background-size: 80px 46px;
  mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 78%, transparent);
}

.shell {
  width: min(1180px, calc(100% - 28px));
  margin: 26px auto;
  position: relative;
}

.masthead {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 18px 20px 24px;
  border-bottom: 1px solid rgba(86, 246, 255, .38);
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 20px;
  color: inherit;
  text-decoration: none;
}

.pixel-logo {
  display: grid;
  place-items: center;
  width: 84px;
  height: 84px;
  flex: 0 0 auto;
  border: 3px solid var(--pink);
  color: var(--yellow);
  font-size: 27px;
  font-weight: 900;
  letter-spacing: 2px;
  transform: rotate(-2deg);
  text-shadow: 3px 3px 0 #5b145f;
  box-shadow:
    6px 6px 0 rgba(86, 246, 255, .72),
    0 0 26px rgba(255, 79, 216, .34);
}

.eyebrow,
.panel-kicker {
  display: block;
  margin: 0 0 5px;
  color: var(--cyan);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.brand-title {
  display: block;
  color: var(--pink);
  font-size: clamp(29px, 4vw, 46px);
  font-weight: 900;
  letter-spacing: .04em;
  line-height: .92;
  text-shadow: 3px 3px 0 #5c144d;
}

.subtitle {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
}

.mode-badge {
  align-self: flex-start;
  padding: 8px 11px;
  border: 1px solid var(--yellow);
  color: var(--yellow);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1px;
  white-space: nowrap;
  box-shadow: 0 0 12px rgba(255, 228, 92, .24);
}

.mode-badge.live {
  color: var(--green);
  border-color: var(--green);
}

.mode-badge.test {
  color: var(--yellow);
  border-color: var(--yellow);
}

.panel {
  position: relative;
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .025), transparent 35%),
    linear-gradient(180deg, rgba(33, 16, 59, .96), rgba(16, 7, 29, .98));
  box-shadow: var(--shadow), inset 0 0 24px rgba(86, 246, 255, .035);
}

.panel::after {
  content: "";
  position: absolute;
  inset: 7px;
  pointer-events: none;
  border: 1px solid rgba(86, 246, 255, .09);
}

.access-panel {
  width: min(720px, 100%);
  margin: 72px auto;
  padding: clamp(28px, 5vw, 54px);
}

.access-title {
  margin: 0;
  color: var(--yellow);
  font-size: clamp(34px, 7vw, 62px);
  line-height: 1;
}

.access-copy {
  max-width: 560px;
  margin: 14px 0 28px;
  color: var(--muted);
  line-height: 1.6;
}

label {
  color: var(--muted);
  font-weight: 700;
}

input[type="text"],
input[type="password"] {
  width: 100%;
  min-height: 52px;
  padding: 13px 15px;
  border: 1px solid rgba(86, 246, 255, .55);
  border-radius: 2px;
  outline: 0;
  color: var(--text);
  background: #080312;
  box-shadow: inset 0 0 12px rgba(86, 246, 255, .08);
}

input:focus {
  border-color: var(--pink);
  box-shadow: 0 0 0 2px rgba(255, 79, 216, .18);
}

.input-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  margin-top: 9px;
}

button,
.button-link {
  min-height: 48px;
  padding: 12px 18px;
  border: 1px solid var(--cyan);
  color: #07020f;
  background: var(--cyan);
  font-weight: 900;
  letter-spacing: 1px;
  box-shadow: 4px 4px 0 rgba(255, 79, 216, .62);
}

button:hover {
  filter: brightness(1.12);
  transform: translateY(-1px);
}

button:active {
  transform: translate(2px, 2px);
  box-shadow: none;
}

button:disabled {
  cursor: wait;
  opacity: .55;
  transform: none;
}

button.primary {
  border-color: var(--pink);
  background: var(--pink);
  box-shadow: 4px 4px 0 rgba(86, 246, 255, .72);
}

button.ghost {
  color: var(--cyan);
  background: transparent;
  box-shadow: none;
}

button.button-small {
  min-height: auto;
  padding: 8px 11px;
  font-size: 11px;
}

button.wide {
  width: 100%;
}

.message {
  min-height: 1.3em;
  margin: 14px 0 0;
}

.error {
  color: var(--red);
}

.storefront {
  display: grid;
  gap: 20px;
  margin-top: 28px;
}

.hero {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: clamp(20px, 5vw, 70px);
  min-height: 330px;
  padding: clamp(34px, 6vw, 74px);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  width: 380px;
  height: 380px;
  right: -120px;
  top: -125px;
  border: 1px solid rgba(255, 79, 216, .28);
  border-radius: 50%;
  box-shadow:
    0 0 0 38px rgba(86, 246, 255, .035),
    0 0 0 78px rgba(255, 79, 216, .025);
}

.hero-copy,
.hero-value {
  position: relative;
  z-index: 2;
}

.hero h1 {
  margin: 0;
  font-size: clamp(42px, 7vw, 82px);
  letter-spacing: -.05em;
  line-height: .9;
}

.hero h1 span {
  color: var(--pink);
  text-shadow: 4px 4px 0 #5c144d;
}

.hero-copy > p:last-child {
  max-width: 680px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(14px, 2vw, 18px);
  line-height: 1.6;
}

.hero-value {
  display: grid;
  place-items: center;
  min-width: 205px;
  min-height: 205px;
  padding: 24px;
  border: 2px solid var(--yellow);
  transform: rotate(2deg);
  color: var(--yellow);
  text-align: center;
  box-shadow:
    8px 8px 0 rgba(255, 79, 216, .55),
    0 0 32px rgba(255, 228, 92, .15);
}

.hero-value span {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 2px;
}

.hero-value strong {
  display: block;
  margin: -6px 0;
  font-size: 66px;
  line-height: 1;
}

.machine-warning {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  border: 1px solid rgba(255, 228, 92, .55);
  color: var(--yellow);
  background: rgba(255, 228, 92, .075);
}

.warning-icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 2px solid currentColor;
  border-radius: 50%;
  font-size: 24px;
  font-weight: 900;
}

.machine-warning strong {
  letter-spacing: 1px;
}

.machine-warning p {
  margin: 5px 0 0;
  color: var(--text);
  font-size: 13px;
  line-height: 1.5;
}

.purchase-form {
  display: grid;
  gap: 20px;
}

.package-section,
.player-section,
.checkout-panel,
.success-panel,
.how-it-works,
.faq-panel {
  padding: clamp(24px, 4vw, 42px);
}

.section-heading {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
}

.section-heading.compact {
  margin-bottom: 20px;
}

.section-heading h2,
.confirm-block h2,
.faq-panel h2 {
  margin: 0;
  font-size: clamp(20px, 3vw, 31px);
  letter-spacing: .04em;
}

.step-number {
  display: grid;
  place-items: center;
  min-width: 48px;
  height: 48px;
  padding: 0 8px;
  border: 1px solid var(--pink);
  color: var(--pink);
  font-size: 15px;
  font-weight: 900;
  box-shadow: 3px 3px 0 rgba(86, 246, 255, .45);
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  position: relative;
  z-index: 3;
}

.package-card {
  min-width: 0;
  min-height: 218px;
  padding: 22px 13px 17px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(86, 246, 255, .35);
  color: var(--text);
  background:
    linear-gradient(180deg, rgba(86, 246, 255, .06), transparent 45%),
    var(--panel-3);
  box-shadow: none;
  text-align: center;
}

.package-card:hover {
  border-color: var(--cyan);
  background:
    linear-gradient(180deg, rgba(86, 246, 255, .12), transparent 52%),
    #130822;
}

.package-card.is-selected {
  border: 2px solid var(--yellow);
  background:
    linear-gradient(180deg, rgba(255, 228, 92, .15), transparent 48%),
    #170924;
  box-shadow:
    5px 5px 0 rgba(255, 79, 216, .62),
    0 0 22px rgba(255, 228, 92, .12);
  transform: translateY(-5px);
}

.package-badge {
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  padding: 5px 4px;
  color: #120713;
  background: var(--yellow);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 1px;
}

.package-name {
  color: var(--cyan);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.package-pay,
.package-get {
  display: grid;
  gap: 2px;
  margin-top: 16px;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 1px;
}

.package-pay strong {
  color: var(--text);
  font-size: clamp(20px, 2.2vw, 28px);
}

.package-get {
  margin-top: 8px;
}

.package-get strong {
  color: var(--yellow);
  font-size: clamp(27px, 3vw, 38px);
  line-height: 1;
}

.package-divider {
  width: 46px;
  height: 1px;
  margin-top: 13px;
  background: rgba(86, 246, 255, .4);
}

.package-bonus {
  margin-top: 12px;
  color: var(--green);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .6px;
}

.package-bonus.no-bonus {
  color: var(--muted);
}

.package-note {
  margin: 18px 0 0;
  position: relative;
  z-index: 2;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.55;
  text-align: center;
}

.player-section {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(250px, .7fr);
  column-gap: 24px;
}

.player-section .section-heading,
.player-section .acknowledgements,
.player-section .primary,
.player-section .message {
  grid-column: 1 / -1;
}

.persona-label {
  display: grid;
  gap: 9px;
  position: relative;
  z-index: 2;
}

.persona-label > span {
  color: var(--cyan);
  font-size: 12px;
  letter-spacing: 1px;
}

.selected-package {
  padding: 14px 16px;
  display: grid;
  gap: 4px;
  position: relative;
  z-index: 2;
  border: 1px solid rgba(255, 228, 92, .35);
  background: rgba(255, 228, 92, .06);
}

.selected-package > span:first-child {
  color: var(--muted);
  font-size: 10px;
  text-transform: uppercase;
}

.selected-package strong {
  color: var(--yellow);
}

.selected-package > span:last-child {
  color: var(--text);
  font-size: 12px;
}

.acknowledgements {
  display: grid;
  gap: 11px;
  margin: 24px 0;
  position: relative;
  z-index: 2;
}

.check-row {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 11px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.check-row input {
  width: 18px;
  height: 18px;
  margin: 1px 0 0;
  accent-color: var(--pink);
}

.checkout-panel {
  margin-top: 28px;
}

.panel-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  position: relative;
  z-index: 2;
}

.checkout-title {
  margin: 0;
  color: var(--yellow);
  font-size: clamp(34px, 6vw, 58px);
  line-height: 1;
}

.confirmation-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 28px;
  position: relative;
  z-index: 2;
}

.confirm-block {
  padding: 20px;
  border: 1px solid rgba(86, 246, 255, .24);
  background: rgba(7, 2, 15, .56);
}

.confirm-block h2 {
  margin-bottom: 16px;
  color: var(--cyan);
  font-size: 16px;
  letter-spacing: 1px;
}

.review-grid,
.order-summary dl,
.receipt-grid {
  margin: 0;
}

.review-grid div,
.order-summary dl div,
.receipt-grid div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 11px 0;
  border-bottom: 1px solid rgba(86, 246, 255, .13);
}

dt {
  color: var(--muted);
  font-size: 11px;
  letter-spacing: .6px;
}

dd {
  margin: 0;
  color: var(--text);
  font-weight: 900;
  text-align: right;
  word-break: break-word;
}

.portal-summary {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.55;
}

.order-summary .bonus-text {
  color: var(--green);
}

.order-summary .summary-total {
  margin-top: 5px;
  padding-top: 15px;
  border-bottom: 0;
}

.summary-total dt {
  color: var(--yellow);
}

.summary-total dd {
  color: var(--yellow);
  font-size: 28px;
}

.payment-box {
  margin-top: 20px;
  padding: 22px;
  position: relative;
  z-index: 2;
  border: 1px solid rgba(86, 246, 255, .34);
  background: rgba(8, 3, 18, .76);
}

.payment-title {
  color: var(--cyan);
  font-weight: 900;
  letter-spacing: 2px;
}

.payment-notice,
.payment-status,
.processor-note {
  margin: 10px 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
}

.payment-notice {
  color: var(--yellow);
}

.wallet-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  align-items: start;
  margin-top: 15px;
}

.wallet-container {
  min-height: 48px;
  position: relative;
  z-index: 11;
}

.wallet-container:empty {
  display: none;
}

.google-pay-container > div,
.google-pay-container button {
  width: 100% !important;
  min-width: 100% !important;
  height: 48px !important;
}

.processor-note {
  margin-bottom: 0;
  text-align: center;
}

.success-panel {
  margin-top: 28px;
  text-align: center;
}

.success-icon {
  display: grid;
  place-items: center;
  width: 92px;
  height: 92px;
  margin: 0 auto 20px;
  border: 2px solid var(--green);
  border-radius: 50%;
  color: var(--green);
  font-size: 60px;
  text-shadow: 0 0 20px rgba(101, 255, 147, .45);
  box-shadow: 0 0 32px rgba(101, 255, 147, .14);
}

.success-panel h1 {
  margin: 0;
  color: var(--green);
  font-size: clamp(34px, 6vw, 62px);
}

.result-message {
  color: var(--text);
  font-size: 17px;
  font-weight: 900;
}

.receipt-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 28px auto;
  max-width: 860px;
  border: 1px solid rgba(86, 246, 255, .25);
  text-align: left;
}

.receipt-grid div {
  padding: 13px 16px;
}

.receipt-grid div:nth-child(odd) {
  border-right: 1px solid rgba(86, 246, 255, .13);
}

.receipt-help {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

.info-stack {
  display: grid;
  gap: 20px;
  margin-top: 20px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  position: relative;
  z-index: 2;
}

.steps-grid div {
  display: grid;
  gap: 9px;
  padding: 18px;
  border: 1px solid rgba(86, 246, 255, .2);
  background: rgba(7, 2, 15, .52);
}

.steps-grid strong {
  color: var(--pink);
  font-size: 27px;
}

.steps-grid span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
}

.faq-panel details {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(86, 246, 255, .2);
}

.faq-panel details:last-child {
  border-bottom: 1px solid rgba(86, 246, 255, .2);
}

.faq-panel summary {
  padding: 17px 4px;
  cursor: pointer;
  color: var(--text);
  font-weight: 900;
}

.faq-panel details[open] summary {
  color: var(--yellow);
}

.faq-panel details p {
  margin: -4px 0 18px;
  padding-right: 24px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.contact-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 26px;
  border: 1px solid var(--pink);
  background: rgba(255, 79, 216, .08);
}

.contact-strip div {
  display: grid;
  gap: 4px;
}

.contact-strip span,
.contact-strip small {
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 1px;
}

.contact-strip strong {
  color: var(--pink);
}

.contact-strip > a {
  font-weight: 900;
}

footer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 8px 8px;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: .7px;
}

footer > div {
  display: grid;
  gap: 7px;
}

footer nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-lock {
  min-height: 0;
  padding: 0;
  border: 0;
  color: var(--yellow);
  background: transparent;
  font-size: 10px;
  box-shadow: none;
}

/* Legal pages */
.legal-shell {
  width: min(900px, calc(100% - 28px));
  margin: 26px auto;
}

.legal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0 25px;
  border-bottom: 1px solid var(--line);
}

.legal-brand {
  color: var(--pink);
  font-size: 22px;
  font-weight: 900;
  text-decoration: none;
}

.legal-back {
  font-size: 12px;
  font-weight: 900;
}

.legal-document {
  margin-top: 24px;
  padding: clamp(24px, 5vw, 50px);
}

.legal-document > * {
  position: relative;
  z-index: 2;
}

.legal-document h1 {
  margin: 0 0 8px;
  color: var(--yellow);
  font-size: clamp(34px, 7vw, 58px);
  line-height: 1;
}

.legal-updated {
  margin: 0 0 30px;
  color: var(--muted);
  font-size: 11px;
}

.legal-document h2 {
  margin: 30px 0 9px;
  color: var(--cyan);
  font-size: 18px;
  letter-spacing: .04em;
}

.legal-document p,
.legal-document li {
  color: #d5cadf;
  font-size: 13px;
  line-height: 1.75;
}

.legal-document ul {
  padding-left: 22px;
}

.legal-callout {
  margin: 22px 0;
  padding: 16px 18px;
  border: 1px solid rgba(255, 228, 92, .45);
  color: var(--yellow) !important;
  background: rgba(255, 228, 92, .06);
}

@media (max-width: 980px) {
  .package-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .package-card:nth-child(4),
  .package-card:nth-child(5) {
    min-height: 205px;
  }
}

@media (max-width: 720px) {
  .shell,
  .legal-shell {
    width: min(100% - 20px, 1180px);
    margin-top: 10px;
  }

  .masthead {
    align-items: flex-start;
    padding: 14px 8px 20px;
  }

  .brand-lockup {
    gap: 13px;
  }

  .pixel-logo {
    width: 62px;
    height: 62px;
    font-size: 20px;
    box-shadow: 4px 4px 0 rgba(86, 246, 255, .72);
  }

  .eyebrow {
    font-size: 8px;
    letter-spacing: 1.5px;
  }

  .brand-title {
    font-size: 26px;
  }

  .subtitle {
    display: none;
  }

  .mode-badge {
    padding: 6px 7px;
    font-size: 8px;
  }

  .hero {
    grid-template-columns: 1fr;
    padding: 34px 24px;
  }

  .hero-value {
    min-width: 0;
    min-height: 0;
    width: 100%;
    grid-template-columns: auto auto auto;
    gap: 8px;
    padding: 16px;
    transform: none;
  }

  .hero-value strong {
    font-size: 44px;
  }

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

  .package-card {
    min-height: 210px;
  }

  .player-section,
  .confirmation-layout,
  .wallet-grid,
  .receipt-grid {
    grid-template-columns: 1fr;
  }

  .receipt-grid div:nth-child(odd) {
    border-right: 0;
  }

  .steps-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-strip,
  footer {
    align-items: flex-start;
    flex-direction: column;
  }

  footer nav {
    justify-content: flex-start;
  }
}

@media (max-width: 460px) {
  .masthead {
    gap: 8px;
  }

  .pixel-logo {
    width: 50px;
    height: 50px;
    font-size: 16px;
  }

  .brand-title {
    font-size: 21px;
  }

  .mode-badge {
    max-width: 72px;
    white-space: normal;
    text-align: center;
  }

  .access-panel {
    margin: 30px auto;
  }

  .input-row,
  .package-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .package-card {
    min-height: 188px;
  }

  .machine-warning {
    align-items: start;
  }

  .section-heading {
    align-items: flex-start;
  }

  .panel-title-row {
    align-items: flex-start;
  }

  .hero h1 {
    font-size: 40px;
  }

  .hero-value {
    grid-template-columns: 1fr;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}
