:root {
  color-scheme: light;
  --launch-bg-top: #9aa8ad;
  --launch-bg-bottom: #d7c3a5;
  --launch-ink: #151312;
  --launch-muted: rgba(21, 19, 18, 0.66);
  --launch-panel: rgba(255, 255, 255, 0.36);
  --launch-border: rgba(255, 255, 255, 0.28);
  --launch-dark: #151312;
  --launch-cream: #f4eee4;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  min-height: 100svh;
  overflow-x: hidden;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.28), transparent 28%),
    linear-gradient(180deg, var(--launch-bg-top), var(--launch-bg-bottom));
  color: var(--launch-ink);
  font-family: "Outfit", "Trebuchet MS", Arial, sans-serif;
}

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

button,
input,
textarea {
  font: inherit;
}

.launch-page .brand,
.launch-page .nav-links-group a,
.launch-page .nav-auth {
  color: rgba(5, 5, 5, 0.9);
}

.launch-page .menu-toggle span {
  background: rgba(5, 5, 5, 0.86);
}

.launch-shell {
  position: relative;
  z-index: 1;
  width: min(92vw, 72rem);
  margin: 0 auto;
  padding:
    calc(env(safe-area-inset-top, 0px) + 7.2rem)
    0
    calc(env(safe-area-inset-bottom, 0px) + 3rem);
}

.launch-hero,
.launch-panel,
.confirmation-card {
  border: 1px solid var(--launch-border);
  border-radius: 1.6rem;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0.14)),
    var(--launch-panel);
  box-shadow:
    0 1.25rem 3rem rgba(68, 47, 29, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.32);
  backdrop-filter: blur(18px) saturate(130%);
  -webkit-backdrop-filter: blur(18px) saturate(130%);
}

.launch-hero {
  display: grid;
  gap: 1rem;
  padding: clamp(1.4rem, 4vw, 2.4rem);
}

.launch-kicker,
.policy-card h2,
.support-card h2,
.confirmation-label {
  margin: 0;
  color: var(--launch-muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.launch-title {
  margin: 0;
  max-width: 12ch;
  font-size: clamp(2.7rem, 8vw, 6.8rem);
  font-weight: 700;
  line-height: 0.92;
}

.launch-lead {
  max-width: 42rem;
  margin: 0;
  color: var(--launch-muted);
  font-size: 1.05rem;
  line-height: 1.55;
}

.launch-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.launch-panel {
  padding: clamp(1.1rem, 3vw, 1.6rem);
}

.policy-card,
.support-card {
  display: grid;
  gap: 0.7rem;
}

.policy-card p,
.policy-card li,
.support-card p,
.confirmation-copy,
.confirmation-meta {
  color: var(--launch-muted);
  line-height: 1.52;
}

.policy-card h2,
.support-card h2 {
  color: var(--launch-ink);
  font-size: 1rem;
}

.policy-card ul {
  margin: 0;
  padding-left: 1.1rem;
}

.launch-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.1rem;
}

.launch-pill,
.confirmation-button {
  min-height: 2.9rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 1rem;
  border: 1px solid rgba(21, 19, 18, 0.12);
  border-radius: 999px;
  background: rgba(244, 238, 228, 0.46);
  color: var(--launch-ink);
  font-weight: 800;
}

.launch-pill.is-primary,
.confirmation-button.is-primary {
  background: var(--launch-dark);
  color: var(--launch-cream);
}

.confirmation-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.72fr);
  gap: 1rem;
}

.confirmation-card {
  padding: clamp(1.4rem, 4vw, 2rem);
}

.confirmation-title {
  margin: 0.5rem 0 0;
  font-size: clamp(2.4rem, 7vw, 5.4rem);
  line-height: 0.95;
}

.confirmation-list,
.order-line-list {
  display: grid;
  gap: 0.65rem;
  margin-top: 1rem;
}

.confirmation-row,
.order-line {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(21, 19, 18, 0.1);
}

.confirmation-row span,
.order-line span {
  color: var(--launch-muted);
}

.confirmation-total {
  margin-top: 1rem;
  font-size: 2.4rem;
  font-weight: 700;
}

.support-card a {
  font-weight: 800;
}

@media (max-width: 820px) {
  .launch-shell {
    width: min(92vw, 100%);
    padding-top: calc(env(safe-area-inset-top, 0px) + 6.1rem);
  }

  .launch-grid,
  .confirmation-layout {
    grid-template-columns: 1fr;
  }

  .launch-hero,
  .launch-panel,
  .confirmation-card {
    border-radius: 1.25rem;
  }
}
