* { box-sizing: border-box; }

html,
body { margin: 0; padding: 0; }

body { min-height: 100vh; }

.page {
  --ink: #111;
  --paper: #f5f1e8;
  --white: #fffdfa;
  --teal: #1f6f62;
  --teal-dark: #185448;
  --muted: #111;
  --line: #d9d3c8;
  min-height: 100vh;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

.checkout-notice {
  position: sticky;
  z-index: 20;
  top: 0;
  display: flex;
  min-height: 68px;
  align-items: center;
  justify-content: center;
  gap: 13px;
  padding: 12px 24px;
  color: white;
  background: var(--ink);
  box-shadow: 0 6px 24px rgba(23, 50, 54, .18);
}

.notice-icon {
  display: inline-flex;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, .55);
  border-radius: 50%;
  font-size: 14px;
  font-weight: 900;
}

.checkout-notice div { display: flex; flex-direction: column; gap: 1px; }
.checkout-notice strong { font-size: 13px; letter-spacing: .01em; }
.checkout-notice div span { color: rgba(255, 255, 255, .74); font-size: 11px; }

.offer {
  position: relative;
  width: 100%;
  min-height: calc(100vh - 68px);
  overflow: hidden;
  padding: 76px 28px 90px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 86% 18%, rgba(31, 111, 98, .14), transparent 27%),
    linear-gradient(180deg, var(--white), var(--paper));
}

.offer-inner { position: relative; z-index: 2; width: min(100%, 900px); margin: 0 auto; }

.orbit-one,
.orbit-two { position: absolute; border: 1px solid rgba(31, 111, 98, .14); border-radius: 50%; pointer-events: none; }

.orbit-one { top: 6%; right: -19vw; width: 52vw; height: 52vw; }
.orbit-two { top: 18%; right: -12vw; width: 35vw; height: 35vw; }

.eyebrow { margin: 0 0 15px; color: var(--ink); font-size: 10px; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }

h1 { max-width: 900px; margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 400; letter-spacing: -.035em; line-height: 1.02; }

.included { max-width: 760px; margin: 38px 0 0; padding: 0; }
.included p { max-width: 720px; margin: 0; color: var(--muted); font-size: 1.02rem; line-height: 1.75; }
.included p + p { margin-top: 20px; }
.included ul { max-width: 720px; margin: 10px 0 24px; padding-left: 0; color: var(--muted); font-size: 1.02rem; line-height: 1.75; list-style: none; }
.included li { position: relative; padding-left: 28px; }
.included li::before { position: absolute; top: 0; left: 0; color: var(--ink); content: "✓"; font-weight: 900; }
.included li + li { margin-top: 3px; }
.included .emphasis { color: var(--ink); font-weight: 700; }

.purchase { max-width: 620px; margin-top: 34px; }

.cta {
  display: flex;
  width: 100%;
  min-height: 60px;
  align-items: center;
  justify-content: center;
  padding: 14px 12px;
  border: 1px solid var(--teal-dark);
  border-radius: 999px;
  color: white;
  background: var(--teal-dark);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: .05em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background .2s ease, transform .2s ease;
}

.cta:hover { background: var(--teal); transform: translateY(-2px); }
.cta:focus-visible,
.decline:focus-visible { outline: 3px solid #c58b3d; outline-offset: 4px; }
.decline { display: block; width: fit-content; margin: 20px auto 0; color: var(--ink); font-size: 13px; text-align: center; text-decoration: underline; text-underline-offset: 4px; }

@media (max-width: 620px) {
  .checkout-notice { justify-content: flex-start; padding: 11px 16px; }
  .checkout-notice strong { font-size: 12px; }
  .checkout-notice div span { font-size: 10px; line-height: 1.35; }
  .offer { min-height: auto; padding: 52px 18px 72px; }
  .orbit-one { top: 7%; right: -46vw; width: 92vw; height: 92vw; }
  .orbit-two { top: 13%; right: -31vw; width: 63vw; height: 63vw; }
  h1 { font-size: 36px; }
  .included { margin-top: 36px; padding: 0; }
  .included p { font-size: .95rem; }
  .cta { width: 100%; padding-right: 10px; padding-left: 10px; font-size: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  .cta { transition: none; }
}
