:root {
  color-scheme: dark;
  --bg: #05070c;
  --panel: rgba(5, 13, 25, 0.86);
  --panel-strong: rgba(7, 17, 31, 0.96);
  --line: rgba(169, 220, 255, 0.24);
  --line-hot: rgba(84, 188, 255, 0.72);
  --text: #f5f9ff;
  --muted: #aeb8c7;
  --blue: #087dff;
  --cyan: #5ee7ff;
  --violet: #9bd8ff;
  --lime: #f6fbff;
  --pink: #2aa7ff;
  --shadow: 0 18px 60px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

body.modal-open {
  overflow: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(180deg, rgba(5, 7, 12, 0) 0%, rgba(5, 7, 12, 0.92) 68%, #05070c 100%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 72px),
    repeating-linear-gradient(180deg, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px 72px);
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 56px;
  border-bottom: 1px solid transparent;
  transition: background 180ms ease, border-color 180ms ease, padding 180ms ease;
}

.site-header.scrolled {
  padding-block: 12px;
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(5, 7, 12, 0.82);
  backdrop-filter: blur(18px);
}

.brand,
.main-nav,
.hero-actions,
.hero-metrics,
.product-topline,
.contact-actions,
.site-footer,
.launch-strip,
.ad-header,
.ad-actions,
.modal-actions {
  display: flex;
  align-items: center;
}

.brand {
  gap: 12px;
  font-family: Orbitron, Inter, sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(98, 231, 255, 0.58);
  border-radius: 50%;
  color: var(--bg);
  background: #f7fbff;
  box-shadow: 0 0 22px rgba(16, 140, 255, 0.72);
}

.main-nav {
  gap: 24px;
  font-size: 0.9rem;
  color: var(--muted);
}

.main-nav a {
  transition: color 180ms ease;
}

.main-nav a:hover {
  color: var(--text);
}

.icon-button {
  display: none;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}

.menu-button {
  gap: 5px;
}

.menu-button span,
.modal-close span {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
}

.hero {
  position: relative;
  display: grid;
  min-height: 86svh;
  overflow: hidden;
  padding: 128px 80px 72px;
  isolation: isolate;
}

.hero-bg,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-bg {
  z-index: -3;
  background-image: url("pluto-preview.png");
  background-position: center;
  background-size: cover;
  filter: brightness(1.08) saturate(1.12) contrast(1.04);
  transform: scale(1.02);
}

.hero-shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(5, 7, 12, 0.91) 0%, rgba(5, 7, 12, 0.58) 42%, rgba(5, 7, 12, 0.12) 100%),
    linear-gradient(180deg, rgba(5, 7, 12, 0.24) 0%, rgba(5, 7, 12, 0.08) 48%, #05070c 100%);
}

.hero-content {
  align-self: end;
  width: min(720px, 100%);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--cyan);
  font-family: Orbitron, Inter, sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.02;
}

h1 {
  max-width: 10ch;
  margin-bottom: 22px;
  font-family: Orbitron, Inter, sans-serif;
  font-size: 5.75rem;
  font-weight: 800;
  text-transform: uppercase;
  text-shadow: 0 0 28px rgba(16, 140, 255, 0.9), 0 0 64px rgba(98, 231, 255, 0.35);
}

h2 {
  margin-bottom: 0;
  font-family: Orbitron, Inter, sans-serif;
  font-size: 3rem;
  text-transform: uppercase;
}

h3 {
  margin-bottom: 14px;
  font-size: 1.3rem;
}

.hero-copy {
  max-width: 690px;
  margin-bottom: 28px;
  color: #d9e9ff;
  font-size: 1.1rem;
  line-height: 1.7;
}

.hero-actions,
.contact-actions,
.ad-actions,
.modal-actions {
  gap: 12px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.button:hover,
.price-option:hover,
.payment-pill:hover,
.payment-option:hover,
.coin-option:hover,
.feature-card:hover,
.strip-action:hover {
  transform: translateY(-2px);
}

.button.primary {
  color: #02111f;
  background: linear-gradient(135deg, #ffffff, #c8f7ff 42%, #5ee7ff 72%, #087dff);
  box-shadow: 0 0 30px rgba(94, 231, 255, 0.46);
}

.button.secondary {
  border-color: rgba(98, 231, 255, 0.48);
  color: var(--text);
  background: rgba(8, 14, 24, 0.64);
}

.button.wide {
  width: 100%;
}

.hero-metrics {
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.hero-metrics a {
  min-width: 132px;
  padding: 12px 14px;
  border: 1px solid rgba(98, 231, 255, 0.22);
  border-radius: 8px;
  background: rgba(5, 7, 12, 0.54);
  color: var(--muted);
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.hero-metrics a:hover {
  border-color: var(--cyan);
  background: rgba(8, 14, 24, 0.82);
  transform: translateY(-2px);
}

.hero-metrics strong {
  display: block;
  color: var(--text);
  font-family: Orbitron, Inter, sans-serif;
}

.launch-strip {
  justify-content: space-between;
  gap: 16px;
  padding: 18px 80px;
  border-block: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(90deg, rgba(8, 125, 255, 0.22), rgba(94, 231, 255, 0.11), rgba(246, 251, 255, 0.08));
  color: #eaf6ff;
}

.launch-strip div {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.launch-strip p {
  margin: 0;
  color: var(--muted);
}

.strip-action {
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid rgba(98, 231, 255, 0.28);
  border-radius: 8px;
  color: var(--cyan);
  background: rgba(5, 7, 12, 0.4);
  font-weight: 800;
  transition: transform 180ms ease, border-color 180ms ease;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 18px rgba(94, 231, 255, 0.82);
}

.section {
  padding: 96px 80px;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin: 0 auto 34px;
  max-width: 1180px;
}

.section-heading.compact {
  display: block;
}

.product-grid,
.feature-grid,
.review-grid,
.faq-grid,
.vouch-board {
  display: grid;
  max-width: 1180px;
  margin: 0 auto;
  gap: 18px;
}

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

.product-card,
.feature-card,
.review-grid figure,
.contact-panel,
.faq-grid details,
.vouch-board {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.product-card {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  padding: 30px;
}

.product-card::before,
.ad-board::before {
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  content: "";
  background: linear-gradient(90deg, #087dff, #5ee7ff, #ffffff);
}

.product-card.featured {
  border-color: var(--line-hot);
  background:
    linear-gradient(135deg, rgba(16, 140, 255, 0.18), transparent 42%),
    var(--panel-strong);
}

.product-card.is-selected {
  border-color: rgba(98, 231, 255, 0.76);
  box-shadow: 0 0 34px rgba(16, 140, 255, 0.24), var(--shadow);
}

.product-topline {
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 28px;
}

.product-code {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(98, 231, 255, 0.52);
  border-radius: 8px;
  color: var(--cyan);
  font-family: Orbitron, Inter, sans-serif;
  font-weight: 800;
}

.tag {
  padding: 8px 10px;
  border-radius: 999px;
  color: #03101b;
  background: #f6fbff;
  font-size: 0.78rem;
  font-weight: 900;
}

.tag.quiet {
  color: var(--text);
  background: rgba(154, 124, 255, 0.28);
}

.product-card p,
.feature-card p,
.contact-panel p,
.ad-copy p,
.faq-grid p {
  color: var(--muted);
  line-height: 1.68;
}

.price-list {
  display: grid;
  gap: 10px;
  min-height: 176px;
  margin: 26px 0 24px;
}

.price-list.single {
  min-height: 176px;
  align-content: start;
}

.price-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid rgba(98, 231, 255, 0.18);
  border-radius: 8px;
  color: inherit;
  background: rgba(255, 255, 255, 0.035);
  text-align: left;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.price-option.active {
  border-color: rgba(98, 231, 255, 0.72);
  background: rgba(98, 231, 255, 0.12);
}

.price-option span {
  color: var(--muted);
  font-weight: 700;
}

.price-option strong {
  color: var(--text);
  white-space: nowrap;
}

.check-list {
  display: grid;
  gap: 12px;
  min-height: 112px;
  margin: 0 0 26px;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  gap: 10px;
  color: #dce9f9;
}

.check-list li::before {
  flex: 0 0 auto;
  width: 10px;
  height: 10px;
  margin-top: 7px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 16px rgba(98, 231, 255, 0.72);
  content: "";
}

.ad-section {
  padding-top: 20px;
}

.ad-board {
  position: relative;
  overflow: hidden;
  max-width: 1180px;
  margin: 0 auto;
  padding: 34px;
  border: 1px solid rgba(98, 231, 255, 0.26);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(94, 231, 255, 0.14), rgba(8, 125, 255, 0.08) 48%, rgba(246, 251, 255, 0.06)),
    rgba(13, 24, 31, 0.92);
  box-shadow: var(--shadow);
}

.ad-header {
  align-items: start;
  gap: 16px;
  margin-bottom: 20px;
}

.ad-header h2 {
  font-family: Inter, system-ui, sans-serif;
  font-size: 2rem;
  text-transform: none;
}

.ad-mark {
  display: grid;
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  margin-top: 3px;
  border-radius: 50%;
  background:
    linear-gradient(180deg, transparent 0 33%, #12202b 33% 45%, transparent 45% 67%, #12202b 67% 78%, transparent 78%),
    #f2f8ff;
  box-shadow: 0 0 18px rgba(98, 231, 255, 0.52);
}

.ad-copy {
  display: grid;
  gap: 16px;
  margin-bottom: 34px;
}

.ad-copy p {
  margin-bottom: 0;
  font-size: 1.04rem;
}

.ultimate-ad {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  max-width: 760px;
  margin-bottom: 28px;
}

.diamond {
  width: 38px;
  height: 38px;
  margin-top: 4px;
  clip-path: polygon(50% 0, 100% 35%, 50% 100%, 0 35%);
  background: linear-gradient(135deg, #d7fbff, #62e7ff 52%, #108cff);
  box-shadow: 0 0 18px rgba(98, 231, 255, 0.52);
}

.ultimate-ad p {
  margin-bottom: 10px;
  color: var(--muted);
}

.ultimate-ad ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #dce9f9;
}

.ultimate-ad li::before {
  color: var(--cyan);
  content: "+ ";
  font-weight: 900;
}

.discord-code {
  color: var(--cyan);
  font-weight: 800;
}

.vouches {
  padding-top: 20px;
}

.vouch-board {
  gap: 0;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(94, 231, 255, 0.1), rgba(8, 125, 255, 0.05)),
    rgba(16, 20, 28, 0.92);
}

.vouch-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  padding: 20px 22px;
  border-bottom: 1px solid rgba(158, 210, 255, 0.12);
}

.vouch-card:last-child {
  border-bottom: 0;
}

.avatar {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  color: #06111c;
  font-weight: 900;
}

.avatar-one {
  background: linear-gradient(135deg, #f5f9ff, #8ea0b9);
}

.avatar-two {
  background: linear-gradient(135deg, #f6fbff, #62e7ff);
}

.avatar-three {
  background: linear-gradient(135deg, #f4f9ff, #72caff);
}

.avatar-four {
  color: #f5f9ff;
  background: #05070c;
}

.avatar-five {
  background: linear-gradient(135deg, #d8e3ff, #8596aa);
}

.avatar-six {
  color: #f5f9ff;
  background: linear-gradient(135deg, #10151f, #108cff);
}

.avatar-seven {
  background: linear-gradient(135deg, #f7fbff, #9bd8ff);
}

.avatar-eight {
  color: #f5f9ff;
  background: linear-gradient(135deg, #108cff, #1e2632);
}

.avatar-nine {
  background: linear-gradient(135deg, #c8d5e8, #737f91);
}

.vouch-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 4px;
}

.vouch-meta strong {
  color: var(--cyan);
}

.vouch-meta span {
  color: #708198;
  font-size: 0.85rem;
}

.vouch-card p {
  margin-bottom: 10px;
  color: #aebbd0;
  line-height: 1.5;
}

.vouch-reactions {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.vouch-reactions span {
  padding: 6px 10px;
  border-radius: 8px;
  color: #d8e4f7;
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.82rem;
  font-weight: 800;
}

.feature-band {
  background: linear-gradient(180deg, rgba(11, 16, 28, 0.86), rgba(5, 7, 12, 0.8));
}

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

.feature-card {
  margin: 0;
  padding: 26px;
  color: inherit;
  text-align: left;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.feature-card.active {
  border-color: rgba(98, 231, 255, 0.72);
  background:
    linear-gradient(135deg, rgba(98, 231, 255, 0.12), transparent 60%),
    var(--panel);
}

.feature-index {
  display: inline-block;
  margin-bottom: 46px;
  color: var(--cyan);
  font-family: Orbitron, Inter, sans-serif;
  font-weight: 800;
}

.faq-grid details {
  padding: 20px 22px;
}

.faq-grid summary {
  color: var(--text);
  font-weight: 900;
  cursor: pointer;
}

.faq-grid p {
  margin: 14px 0 0;
}

.review-grid figure {
  margin: 0;
  padding: 26px;
}

blockquote {
  margin: 0 0 22px;
  color: #f2f7ff;
  font-size: 1rem;
  line-height: 1.65;
}

figcaption {
  color: var(--cyan);
  font-weight: 800;
}

.contact-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 46px;
  background:
    linear-gradient(100deg, rgba(8, 125, 255, 0.28), rgba(94, 231, 255, 0.12) 52%, rgba(246, 251, 255, 0.08)),
    var(--panel-strong);
}

.contact-panel h2 {
  margin-bottom: 16px;
}

.payment-list,
.modal-payment {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0 0;
}

.payment-pill,
.payment-option,
.coin-option {
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid rgba(98, 231, 255, 0.22);
  border-radius: 999px;
  color: #eaf6ff;
  background: rgba(5, 7, 12, 0.34);
  font-size: 0.9rem;
  font-weight: 800;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.payment-pill.active,
.payment-option.active,
.coin-option.active {
  border-color: transparent;
  color: #02111f;
  background: var(--cyan);
}

.payment-note {
  margin: 12px 0 0;
  color: var(--cyan);
  font-weight: 800;
}

.site-footer {
  justify-content: space-between;
  gap: 16px;
  padding: 28px 80px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
}

.site-footer span:first-child {
  color: var(--text);
  font-family: Orbitron, Inter, sans-serif;
  font-weight: 800;
  text-transform: uppercase;
}

.modal[hidden] {
  display: none;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 20px;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.68);
  backdrop-filter: blur(10px);
}

.checkout-modal {
  position: relative;
  width: min(720px, 100%);
  max-height: min(760px, calc(100svh - 40px));
  overflow: auto;
  padding: 30px;
  border: 1px solid rgba(98, 231, 255, 0.34);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(8, 125, 255, 0.2), rgba(94, 231, 255, 0.08)),
    #07101b;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.7);
}

.checkout-modal h2 {
  margin-bottom: 18px;
  font-size: 2rem;
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
}

.modal-close span {
  grid-area: 1 / 1;
}

.modal-close span:first-child {
  transform: rotate(45deg);
}

.modal-close span:last-child {
  transform: rotate(-45deg);
}

.checkout-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 20px;
  padding: 16px;
  border: 1px solid rgba(98, 231, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.checkout-summary span {
  color: var(--muted);
  font-weight: 800;
}

.checkout-summary strong {
  color: var(--cyan);
  font-family: Orbitron, Inter, sans-serif;
}

.checkout-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
}

.checkout-steps li {
  padding: 14px;
  border: 1px solid rgba(94, 231, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.checkout-steps strong,
.checkout-steps span {
  display: block;
}

.checkout-steps strong {
  margin-bottom: 6px;
  color: #ffffff;
}

.checkout-steps span {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.modal-label {
  margin: 18px 0 0;
  color: #dce9f9;
  font-weight: 900;
}

.crypto-panel[hidden] {
  display: none;
}

.crypto-panel {
  margin-top: 16px;
  padding: 14px;
  border: 1px solid rgba(98, 231, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.crypto-panel p {
  margin: 0 0 10px;
  color: #dce9f9;
  font-weight: 900;
}

.coin-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.checkout-instruction {
  margin: 16px 0 0;
  padding: 12px 14px;
  border: 1px solid rgba(94, 231, 255, 0.3);
  border-radius: 8px;
  color: #e8fbff;
  background: rgba(94, 231, 255, 0.1);
  font-weight: 800;
  line-height: 1.5;
}

.order-field {
  display: grid;
  gap: 8px;
  margin-top: 16px;
  color: #dce9f9;
  font-weight: 800;
}

.order-field input,
.order-field textarea {
  width: 100%;
  border: 1px solid rgba(98, 231, 255, 0.24);
  border-radius: 8px;
  color: var(--text);
  background: rgba(5, 7, 12, 0.6);
}

.order-field input {
  min-height: 46px;
  padding: 0 12px;
}

.order-field textarea {
  min-height: 220px;
  resize: vertical;
  padding: 12px;
  line-height: 1.55;
}

.toast {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 80;
  max-width: 320px;
  padding: 14px 16px;
  border: 1px solid rgba(98, 231, 255, 0.3);
  border-radius: 8px;
  color: var(--text);
  background: rgba(5, 7, 12, 0.92);
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(14px);
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .product-grid,
  .feature-grid,
  .review-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .product-card {
    min-height: auto;
  }
}

@media (max-width: 860px) {
  .site-header {
    padding: 18px;
  }

  .icon-button {
    display: grid;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 18px;
    display: none;
    width: min(260px, calc(100vw - 36px));
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(5, 7, 12, 0.94);
    box-shadow: var(--shadow);
  }

  .main-nav.open {
    display: grid;
  }

  .main-nav a {
    padding: 12px;
  }

  .hero {
    min-height: 84svh;
    padding: 112px 18px 56px;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(5, 7, 12, 0.92) 0%, rgba(5, 7, 12, 0.62) 100%),
      linear-gradient(180deg, rgba(5, 7, 12, 0.15) 0%, #05070c 100%);
  }

  h1 {
    font-size: 4.2rem;
  }

  h2 {
    font-size: 2.1rem;
  }

  .launch-strip,
  .site-footer,
  .contact-panel,
  .section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .launch-strip,
  .section,
  .site-footer {
    padding-left: 18px;
    padding-right: 18px;
  }

  .section {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .contact-panel,
  .ad-board {
    padding: 26px;
  }

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

  .ultimate-ad {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .brand span:last-child {
    max-width: 160px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  h1 {
    font-size: 3rem;
  }

  .hero-actions .button,
  .contact-actions .button,
  .ad-actions .button,
  .modal-actions .button {
    width: 100%;
  }

  .hero-metrics a {
    width: 100%;
  }

  .price-option,
  .checkout-summary {
    align-items: flex-start;
    flex-direction: column;
  }
}
