:root {
  color-scheme: light;
  --background: #f8f8f6;
  --text: #151515;
  --muted: #676a63;
  --line: rgba(21, 21, 21, 0.14);
  --accent: #236354;
  --accent-strong: #17473c;
  --surface: rgba(255, 255, 255, 0.64);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--background);
}

body {
  min-height: 100vh;
  margin: 0;
  display: flex;
  flex-direction: column;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #ffffff 0%, var(--background) 52%, #efefeb 100%);
  line-height: 1.5;
}

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.page-shell {
  width: 100%;
  min-height: calc(100vh - 9.5rem);
  display: grid;
  place-items: center;
  padding: 4rem 1.25rem 2rem;
}

.sale-panel {
  width: min(100%, 45rem);
  padding: clamp(1.5rem, 5vw, 3.5rem) 0;
  text-align: center;
}

.eyebrow {
  margin: 0 0 1.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

h1 {
  margin: 0;
  font-size: clamp(3.4rem, 13vw, 7.4rem);
  line-height: 0.95;
  font-weight: 650;
}

.lead {
  margin: 1.55rem auto 0;
  max-width: 34rem;
  font-size: clamp(1.18rem, 3vw, 1.6rem);
  color: rgba(21, 21, 21, 0.84);
}

.support {
  margin: 0.75rem auto 0;
  max-width: 33rem;
  font-size: 1rem;
  color: var(--muted);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 2.2rem;
}

.primary-action,
.secondary-action {
  min-height: 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  padding: 0.85rem 1.15rem;
  font: inherit;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease, color 180ms ease;
}

.primary-action {
  border: 1px solid var(--accent-strong);
  background: var(--accent-strong);
  color: #ffffff;
}

.secondary-action {
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text);
}

.primary-action:hover,
.secondary-action:hover {
  transform: translateY(-1px);
}

.primary-action:focus-visible,
.secondary-action:focus-visible,
.email-line a:focus-visible {
  outline: 2px solid var(--accent-strong);
  outline-offset: 4px;
}

.secondary-action:hover {
  border-color: rgba(23, 71, 60, 0.36);
  background: rgba(255, 255, 255, 0.9);
}

.email-line {
  margin: 1.6rem 0 0;
  color: var(--muted);
  overflow-wrap: anywhere;
}

.email-line a {
  text-decoration-thickness: 1px;
  text-underline-offset: 0.22em;
}

.copy-status {
  min-height: 1.5rem;
  margin: 0.7rem 0 0;
  color: var(--accent);
  font-size: 0.9rem;
}

.site-footer {
  width: min(100%, 58rem);
  margin: 0 auto;
  padding: 1.5rem 1.25rem 2rem;
  color: rgba(103, 106, 99, 0.9);
  font-size: 0.78rem;
  text-align: center;
}

.site-footer p {
  margin: 0.35rem 0;
}

@media (max-width: 40rem) {
  .page-shell {
    min-height: calc(100vh - 12rem);
    padding-top: 2.5rem;
  }

  .sale-panel {
    padding: 2rem 1.2rem;
  }

  .actions {
    display: grid;
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
