:root {
  color-scheme: dark;
  --bg: #070b14;
  --bg-soft: #0c1220;
  --bg-elevated: #11192a;
  --panel: rgba(11, 17, 30, 0.86);
  --panel-strong: #111827;
  --panel-dark: #0a101d;
  --panel-dark-soft: #172033;
  --ink: #f3f6fb;
  --muted: #8c9ab3;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.16);
  --accent: #f6c24d;
  --accent-strong: #ffb92c;
  --accent-soft: rgba(246, 194, 77, 0.16);
  --success: #30c784;
  --danger: #f16f61;
  --shadow-lg: 0 30px 70px rgba(0, 0, 0, 0.38);
  --shadow-sm: 0 16px 34px rgba(0, 0, 0, 0.24);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 18px;
  --radius-sm: 14px;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top, rgba(49, 77, 130, 0.34) 0%, rgba(16, 23, 40, 0.12) 30%, transparent 56%),
    radial-gradient(circle at 80% 10%, rgba(246, 194, 77, 0.12) 0%, transparent 28%),
    linear-gradient(180deg, #0f1728 0%, #0a0f1a 28%, var(--bg) 100%),
    var(--bg);
  color: var(--ink);
  font-family: "Avenir Next", "Manrope", "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

button,
input,
select,
textarea {
  font: inherit;
}

a {
  color: inherit;
}

.page-shell {
  max-width: 560px;
  margin: 0 auto;
  padding: 18px 16px 132px;
}

.hero {
  padding: 18px 4px 28px;
  color: #fff;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.hero-title {
  margin: 14px 0 8px;
  font-size: 36px;
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.hero-copy {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.58;
  font-size: 15px;
}

.user-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
}

.hero-grid {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.hero-card {
  padding: 16px 18px;
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.03) 100%);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.hero-card strong {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
}

.hero-card span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  line-height: 1.45;
}

.content-card,
.status-card {
  background: var(--panel);
  border-radius: var(--radius-xl);
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(18px);
}

.section + .section {
  margin-top: 26px;
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-end;
  margin-bottom: 14px;
}

.section-title {
  margin: 0;
  font-size: 18px;
  line-height: 1.15;
}

.section-subtitle {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.badge-note {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: #f5cd76;
  font-size: 12px;
  font-weight: 700;
}

.chip-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.tier-chip,
.region-chip {
  position: relative;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(23, 32, 51, 0.94) 0%, rgba(13, 18, 31, 0.94) 100%);
  border-radius: 20px;
  padding: 16px;
  text-align: left;
  color: var(--ink);
  cursor: pointer;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease,
    background 0.18s ease;
}

.tier-chip:hover,
.region-chip:hover,
.plan-card:hover,
.cta-button:hover,
.button-secondary:hover,
.status-button:hover {
  transform: translateY(-1px);
}

.tier-chip.is-active,
.region-chip.is-active {
  border-color: rgba(246, 194, 77, 0.62);
  background:
    linear-gradient(180deg, rgba(246, 194, 77, 0.14) 0%, rgba(23, 32, 51, 0.96) 100%);
  box-shadow: var(--shadow-sm);
}

.chip-title {
  display: block;
  font-size: 15px;
  font-weight: 800;
}

.chip-copy {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.plan-grid {
  display: grid;
  gap: 12px;
}

.receipt-card {
  padding: 16px;
  border-radius: 22px;
  border: 1px solid var(--border);
  background:
    linear-gradient(180deg, rgba(17, 25, 42, 0.96) 0%, rgba(10, 16, 29, 0.96) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.receipt-delivery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.receipt-option {
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(20, 29, 46, 0.96) 0%, rgba(10, 16, 29, 0.96) 100%);
  border-radius: 20px;
  padding: 16px;
  text-align: left;
  color: var(--ink);
  cursor: pointer;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease,
    background 0.18s ease;
}

.receipt-option:hover {
  transform: translateY(-1px);
}

.receipt-option.is-active {
  border-color: rgba(246, 194, 77, 0.68);
  background: linear-gradient(180deg, rgba(246, 194, 77, 0.14) 0%, rgba(20, 29, 46, 0.98) 100%);
  box-shadow: var(--shadow-sm);
}

.receipt-option__title {
  display: block;
  font-size: 15px;
  font-weight: 800;
}

.receipt-option__copy {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.receipt-delivery-hint {
  margin: 12px 2px 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.form-field {
  display: grid;
  gap: 10px;
}

.form-field__label {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}

.form-input {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 15px 16px;
  background: rgba(6, 10, 19, 0.78);
  color: var(--ink);
  outline: none;
  transition:
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease;
}

.form-input::placeholder {
  color: rgba(140, 154, 179, 0.72);
}

.form-input:focus {
  border-color: rgba(246, 194, 77, 0.72);
  box-shadow: 0 0 0 4px rgba(246, 194, 77, 0.12);
  background: rgba(9, 14, 24, 0.92);
}

.form-field__hint {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.form-field.is-valid .form-input {
  border-color: rgba(48, 199, 132, 0.46);
}

.form-field.is-invalid .form-input {
  border-color: rgba(241, 111, 97, 0.58);
  box-shadow: 0 0 0 4px rgba(241, 111, 97, 0.08);
}

.form-field__hint.is-error {
  color: #ffb1a8;
}

.plan-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  background:
    linear-gradient(180deg, rgba(22, 31, 49, 0.98) 0%, rgba(10, 16, 29, 0.98) 100%);
  border-radius: 24px;
  padding: 18px;
  text-align: left;
  cursor: pointer;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease;
}

.plan-card:disabled {
  cursor: not-allowed;
}

.plan-card:disabled:hover {
  transform: none;
}

.plan-card.is-active {
  border-color: rgba(246, 194, 77, 0.78);
  box-shadow: 0 18px 38px rgba(246, 194, 77, 0.18);
}

.plan-card.is-disabled {
  opacity: 0.72;
  box-shadow: none;
  border-color: rgba(255, 255, 255, 0.06);
}

.plan-card--addon {
  background:
    linear-gradient(180deg, rgba(31, 38, 59, 0.98) 0%, rgba(11, 18, 31, 0.98) 100%);
}

.plan-card__badge {
  position: absolute;
  top: 14px;
  right: 14px;
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: #f7d788;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.plan-card__top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
}

.plan-card__title {
  margin: 0;
  font-size: 18px;
}

.plan-card__period {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.plan-card__price {
  margin-top: 18px;
  font-size: 34px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
}

.plan-card__monthly {
  margin-top: 8px;
  color: #d3dcf0;
  font-size: 14px;
  font-weight: 700;
}

.plan-card__copy {
  margin-top: 14px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.plan-card__foot {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.plan-card__foot-label {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.plan-card__foot-value {
  text-align: right;
  font-size: 13px;
  line-height: 1.45;
}

.info-list {
  display: grid;
  gap: 10px;
}

.info-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: rgba(18, 26, 42, 0.88);
}

.info-dot {
  width: 10px;
  height: 10px;
  margin-top: 6px;
  border-radius: 999px;
  background: var(--accent-strong);
  box-shadow: 0 0 0 6px rgba(245, 195, 77, 0.14);
}

.info-item strong {
  display: block;
  margin-bottom: 4px;
  font-size: 14px;
}

.info-item span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.inline-alert {
  display: none;
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(241, 111, 97, 0.12);
  color: #ffb1a8;
  border: 1px solid rgba(241, 111, 97, 0.22);
  font-size: 13px;
  line-height: 1.5;
}

.inline-alert.is-visible {
  display: block;
}

.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 12;
  padding: 12px 12px calc(12px + env(safe-area-inset-bottom));
  background: transparent;
  pointer-events: none;
}

.sticky-cta__inner {
  max-width: 560px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
  border-radius: 24px;
  padding: 14px;
  background:
    linear-gradient(180deg, rgba(17, 25, 42, 0.98) 0%, rgba(8, 12, 22, 0.98) 100%);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 44px rgba(0, 0, 0, 0.34);
  pointer-events: auto;
}

.sticky-cta .sticky-cta__inner--single {
  grid-template-columns: 1fr;
}

.sticky-cta__meta {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
}

.sticky-cta__label {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sticky-cta__label strong {
  font-size: 16px;
}

.sticky-cta__label span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
}

.sticky-cta__price {
  text-align: right;
}

.sticky-cta__price-line {
  display: inline-flex;
  align-items: baseline;
  justify-content: flex-end;
  gap: 8px;
  flex-wrap: wrap;
}

.sticky-cta__price strong {
  font-size: 24px;
  line-height: 1;
}

.sticky-cta__discount {
  color: #f7d788;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.sticky-cta__price > span {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
}

.sticky-cta__actions {
  width: 100%;
}

.cta-button,
.button-secondary,
.status-button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: 100%;
  border: 0;
  border-radius: 18px;
  padding: 16px 18px;
  cursor: pointer;
  text-decoration: none;
  transition:
    transform 0.18s ease,
    opacity 0.18s ease,
    box-shadow 0.18s ease;
}

.cta-button {
  background: var(--accent);
  color: #211605;
  font-weight: 800;
  box-shadow: 0 14px 28px rgba(245, 195, 77, 0.3);
}

.cta-button[disabled] {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.button-secondary[disabled] {
  cursor: not-allowed;
  opacity: 0.88;
  transform: none;
}

.button-secondary,
.status-button.secondary {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.button-spinner {
  display: none;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(33, 22, 5, 0.18);
  border-top-color: rgba(33, 22, 5, 0.9);
  border-radius: 999px;
  animation: spin 0.9s linear infinite;
}

.cta-button.is-busy .button-spinner {
  display: inline-block;
}

.cta-button.is-busy .cta-button__text {
  opacity: 0.82;
}

.legal-note {
  grid-column: 1 / -1;
  margin: 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  line-height: 1.55;
}

.legal-link {
  color: #f7d788;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(246, 194, 77, 0.58);
  text-underline-offset: 3px;
}

.legal-link:hover,
.legal-link:focus-visible {
  color: #fff3cd;
  text-decoration-color: currentColor;
}

.device-addon-card {
  padding: 18px;
}

.device-addon-range {
  width: 100%;
  height: 8px;
  appearance: none;
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(246, 194, 77, 0.96) 0%, rgba(246, 194, 77, 0.78) 100%);
  outline: none;
  cursor: pointer;
}

.device-addon-range::-webkit-slider-thumb {
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.95);
  background: #111a2c;
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.28);
}

.device-addon-range::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.95);
  background: #111a2c;
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.28);
}

.device-addon-range::-moz-range-track {
  height: 8px;
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(246, 194, 77, 0.96) 0%, rgba(246, 194, 77, 0.78) 100%);
}

.device-addon-meta {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.device-addon-meta__value {
  font-size: 20px;
  line-height: 1.1;
}

.device-addon-meta__copy {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.device-addon-warning {
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(241, 111, 97, 0.24);
  background: rgba(241, 111, 97, 0.1);
  color: #ffb1a8;
  font-size: 13px;
  line-height: 1.5;
}

.page-shell--document {
  max-width: 920px;
  padding-bottom: 40px;
}

.install-shell {
  padding-bottom: 168px;
}

.hero--document {
  padding-bottom: 24px;
}

.content-card--document {
  padding: 22px;
  background: rgba(10, 15, 26, 0.92);
}

.offer-intro-card {
  margin-top: 24px;
  padding: 22px 24px;
  border-radius: 24px;
  border: 1px solid var(--border);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(17, 25, 42, 0.92) 100%);
  box-shadow: var(--shadow-sm);
}

.offer-copy {
  margin: 0;
  color: #dbe4f7;
  font-size: 15px;
  line-height: 1.78;
}

.offer-copy + .offer-copy {
  margin-top: 14px;
}

.offer-sections {
  display: grid;
  gap: 16px;
}

.offer-block {
  padding: 22px;
  border-radius: 24px;
  border: 1px solid var(--border);
  background:
    linear-gradient(180deg, rgba(17, 25, 42, 0.94) 0%, rgba(9, 14, 25, 0.94) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.offer-block__head {
  margin-bottom: 16px;
}

.offer-block__title {
  margin: 0;
  font-size: 20px;
  line-height: 1.2;
}

.offer-block__subtitle {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

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

.offer-list li {
  color: #dbe4f7;
  font-size: 15px;
  line-height: 1.72;
}

.offer-list strong {
  color: #fff;
  font-weight: 800;
}

.offer-details {
  display: grid;
  gap: 10px;
  margin: 0;
}

.offer-details div {
  display: grid;
  gap: 6px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.04);
}

.offer-details dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.offer-details dd {
  margin: 0;
  color: #fff;
  font-size: 15px;
  line-height: 1.65;
}

.offer-placeholder {
  display: inline;
  padding: 2px 8px;
  border-radius: 999px;
  border: 1px solid rgba(246, 194, 77, 0.2);
  background: rgba(246, 194, 77, 0.12);
  color: #f8d88a;
}

.toast-stack {
  position: fixed;
  inset: 14px 14px auto;
  z-index: 24;
  display: grid;
  gap: 10px;
  pointer-events: none;
}

.toast {
  border-radius: 18px;
  padding: 14px 16px;
  box-shadow: var(--shadow-sm);
  color: #fff;
  font-size: 13px;
  line-height: 1.45;
  pointer-events: auto;
  animation: toast-in 0.24s ease;
}

.toast.error {
  background: rgba(169, 42, 29, 0.96);
}

.toast.success {
  background: rgba(26, 155, 97, 0.96);
}

.status-page {
  display: flex;
  align-items: flex-start;
  min-height: 100vh;
}

.status-shell {
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
  padding: 24px 16px 40px;
}

.status-card {
  margin-top: 34px;
}

.status-eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: #c8d3e7;
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 12px;
  font-weight: 700;
}

.state-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 74px;
  height: 74px;
  margin-top: 18px;
  border-radius: 22px;
  font-size: 30px;
  font-weight: 800;
}

.state-icon.success {
  background: rgba(48, 199, 132, 0.12);
  color: var(--success);
}

.state-icon.pending {
  background: rgba(112, 142, 190, 0.12);
  color: #cbd8f4;
}

.state-icon.fail {
  background: rgba(241, 111, 97, 0.12);
  color: var(--danger);
}

.status-title {
  margin: 20px 0 8px;
  font-size: 30px;
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.status-copy {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 15px;
}

.status-chip {
  display: inline-flex;
  align-items: center;
  margin-top: 18px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: #d3ddf1;
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 13px;
  font-weight: 700;
}

.detail-grid {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.detail-item {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(18, 26, 42, 0.92);
  border: 1px solid var(--border);
}

.detail-item span {
  color: var(--muted);
  font-size: 13px;
}

.detail-item strong {
  text-align: right;
  font-size: 14px;
}

.status-actions {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.status-button {
  background: var(--accent);
  color: #211605;
  font-weight: 800;
  box-shadow: 0 12px 24px rgba(245, 195, 77, 0.26);
}

.status-footnote {
  margin-top: 16px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.install-hero-grid {
  margin-top: 24px;
}

.install-hero-card {
  min-height: 116px;
}

.install-hero-card--success {
  border-color: rgba(48, 199, 132, 0.2);
  background:
    linear-gradient(180deg, rgba(48, 199, 132, 0.14) 0%, rgba(17, 25, 42, 0.92) 100%);
}

.install-card {
  background: rgba(10, 15, 26, 0.92);
}

.install-banner {
  display: block;
  padding: 18px 20px;
  border-radius: 22px;
  font-size: 30px;
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.04em;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.hidden {
  display: none !important;
}

.install-banner--success {
  background: rgba(48, 199, 132, 0.14);
  color: #7fe2b1;
  border: 1px solid rgba(48, 199, 132, 0.3);
}

.install-banner--error {
  background: rgba(241, 111, 97, 0.12);
  color: #ffb1a8;
  border: 1px solid rgba(241, 111, 97, 0.26);
}

.install-copy {
  margin: 14px 0 0;
  color: #dbe4f7;
  line-height: 1.66;
  font-size: 15px;
}

.install-stat-grid {
  display: grid;
  gap: 12px;
}

.install-stat-card {
  min-height: 148px;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid var(--border);
  background:
    linear-gradient(180deg, rgba(17, 25, 42, 0.98) 0%, rgba(10, 16, 29, 0.98) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.install-stat-card__label {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.install-stat-card__value {
  display: block;
  margin-top: 18px;
  color: #fff;
  font-size: 26px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.install-stat-card__meta {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.install-cta-meta strong {
  font-size: 22px;
}

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

@keyframes toast-in {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (min-width: 720px) {
  .page-shell {
    max-width: 980px;
    padding-top: 34px;
  }

  .page-shell--document {
    max-width: 920px;
  }

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

  .content-card {
    padding: 28px;
  }

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

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

  .sticky-cta__inner {
    grid-template-columns: minmax(0, 1fr) 220px;
    align-items: center;
  }

  .sticky-cta .sticky-cta__inner--single {
    grid-template-columns: 1fr;
  }

  .status-shell {
    max-width: 640px;
    padding-top: 40px;
  }
}

@media (max-width: 640px) {
  .page-shell--document {
    padding-bottom: 32px;
  }

  .content-card--document,
  .offer-intro-card,
  .offer-block {
    padding: 18px;
  }

  .offer-copy,
  .offer-list li,
  .offer-details dd {
    font-size: 14px;
  }

  .offer-block__title {
    font-size: 18px;
  }

  .install-banner {
    font-size: 24px;
  }

  .install-stat-card__value {
    font-size: 22px;
  }
}
