:root {
  color-scheme: light dark;
  --bg: #f8f4ee;
  --surface: #fffdf8;
  --text: #2a2019;
  --muted: #66594e;
  --accent: #2f6a45;
  --accent-strong: #245236;
  --border: #e6d8c8;
  --shadow: 0 18px 40px rgba(53, 33, 10, 0.12);
  --bg-grad-one: #f2e5d6;
  --bg-grad-two: #efe7d2;
  --shape-one: #d6e7d1;
  --shape-two: #f1dfca;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background: radial-gradient(circle at 12% 20%, var(--bg-grad-one) 0%, transparent 40%),
    radial-gradient(circle at 85% 0%, var(--bg-grad-two) 0%, transparent 35%), var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: var(--accent-strong);
}

.bg-shape {
  position: fixed;
  z-index: -1;
  border-radius: 999px;
  filter: blur(8px);
  opacity: 0.65;
}

.bg-shape-one {
  width: 360px;
  height: 360px;
  background: var(--shape-one);
  top: -120px;
  right: -120px;
}

.bg-shape-two {
  width: 280px;
  height: 280px;
  background: var(--shape-two);
  bottom: 10%;
  left: -90px;
}

.site-header,
.section,
.site-footer {
  width: min(860px, calc(100% - 2.5rem));
  margin-inline: auto;
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.1rem 0;
}

.brand {
  font-family: "Fraunces", serif;
  font-weight: 700;
  font-size: clamp(1.1rem, 1.6vw, 1.4rem);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.62rem 1rem;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.01em;
  box-shadow: 0 8px 18px rgba(47, 106, 69, 0.25);
  transition: transform 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.header-cta:hover {
  background: var(--accent-strong);
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(47, 106, 69, 0.3);
}

.section {
  margin: 1.5rem auto 3.2rem;
}

.confirmation {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: clamp(1.2rem, 2.6vw, 2rem);
  box-shadow: var(--shadow);
}

.eyebrow {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin: 0;
}

h1,
h2 {
  font-family: "Fraunces", serif;
  line-height: 1.15;
}

h1 {
  margin: 0.5rem 0 0.8rem;
  font-size: clamp(2rem, 4vw, 2.8rem);
}

h2 {
  margin: 0 0 0.7rem;
  font-size: 1.25rem;
}

.lead {
  margin: 0 0 1.2rem;
  color: var(--muted);
  max-width: 62ch;
}

.status-card,
.next-steps {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1rem;
  background: color-mix(in srgb, var(--surface) 90%, white 10%);
}

.next-steps {
  margin-top: 0.9rem;
}

.next-steps ul {
  margin: 0;
  padding-left: 1.2rem;
}

.status-row {
  margin: 0.3rem 0;
  color: var(--muted);
}

.status-row span {
  color: var(--text);
  font-weight: 600;
}

.hero-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1.1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 600;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease;
  cursor: pointer;
}

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

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-primary:hover {
  background: var(--accent-strong);
}

.btn-secondary {
  background: transparent;
  border-color: var(--border);
  color: var(--text);
}

.small-note {
  margin: 0.95rem 0 0;
  color: var(--muted);
}

.site-footer {
  padding-bottom: 1.5rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  animation: rise 600ms ease forwards;
}

@keyframes rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #111417;
    --surface: #1b2126;
    --text: #edf1e6;
    --muted: #b8c2b3;
    --accent: #5f9f75;
    --accent-strong: #4d8862;
    --border: #2b343c;
    --shadow: 0 18px 40px rgba(0, 0, 0, 0.32);
    --bg-grad-one: #223127;
    --bg-grad-two: #2b2a22;
    --shape-one: #23362a;
    --shape-two: #2d3025;
  }

  .status-card,
  .next-steps {
    background: color-mix(in srgb, var(--surface) 92%, black 8%);
  }
}

@media (max-width: 720px) {
  .site-header {
    padding-top: 0.8rem;
  }

  .header-cta {
    display: none;
  }
}
