:root {
  --bg: #f5f2ea;
  --surface: #fbf9f3;
  --surface-strong: #ffffff;
  --text: #1f2428;
  --muted: #616b73;
  --line: #d9ddd4;
  --accent: #256f67;
  --accent-hover: #1f5e57;
  --accent-ink: #ffffff;
  --error: #b6452c;
  --shadow: 0 12px 28px rgba(22, 30, 26, 0.08);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #f8f5ee 0%, var(--bg) 40%, #f3efe6 100%);
  line-height: 1.5;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(251, 249, 243, 0.95);
  backdrop-filter: blur(6px);
}

.header-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.01em;
}

.brand-wrap {
  display: grid;
  gap: 2px;
}

.brand-subtle {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.2;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.login-link {
  font-size: 0.95rem;
  color: var(--muted);
  text-decoration: none;
}

.login-link:hover {
  color: var(--text);
}

.page-wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 26px 18px 56px;
}

.thank-you-wrap {
  max-width: 860px;
  margin: 0 auto;
  padding: 56px 18px;
}

.section {
  margin-bottom: 22px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.hero {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 24px;
  align-items: center;
}

h1 {
  margin: 0 0 10px;
  font-size: clamp(2rem, 4vw, 3.05rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  max-width: 18ch;
}

h2 {
  margin: 0 0 8px;
  font-size: clamp(1.35rem, 2.3vw, 1.85rem);
  line-height: 1.2;
}

h3 {
  margin: 0 0 6px;
  font-size: 1.08rem;
}

p {
  margin: 0;
}

.eyebrow {
  margin-bottom: 10px;
  color: var(--accent);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-subhead {
  color: var(--muted);
  max-width: 60ch;
  margin-bottom: 16px;
}

.hero-actions,
.offer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.microtext {
  margin-top: 8px;
  font-size: 0.92rem;
  color: var(--muted);
}

.trust-line {
  margin-top: 8px;
  font-size: 0.94rem;
  color: #2f4744;
  font-weight: 600;
}

.hero-shot {
  margin: 0;
}

.hero-shot img {
  width: 100%;
  height: auto;
  aspect-ratio: 2485 / 1380;
  object-fit: contain;
  max-width: 520px;
  border-radius: 14px;
  border: 1px solid var(--line);
  box-shadow: 0 18px 38px rgba(21, 30, 26, 0.14);
  display: block;
  margin-left: auto;
  background: var(--surface-strong);
}

.hero-caption {
  margin-top: 10px;
  color: #47605c;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.35;
}

.recognition-list {
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
  display: grid;
  gap: 8px;
}

.recognition-list li {
  padding: 12px 14px;
  background: var(--surface-strong);
  border: 1px solid var(--line);
  border-radius: 12px;
}

.recognition-close {
  margin-top: 14px;
  font-weight: 700;
  color: #2f4744;
}

.step-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.step-card,
.list-card,
.faq-item,
.quote-card {
  background: var(--surface-strong);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px;
}

.step-card p,
.faq-item p {
  color: var(--muted);
}

.columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

ul {
  margin: 10px 0 0;
  padding-left: 18px;
}

li + li {
  margin-top: 7px;
}

.quote-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.quote-card {
  margin: 0;
  color: #2f4744;
  font-weight: 600;
}

.beta-cta p {
  color: var(--muted);
  margin-bottom: 12px;
  max-width: 68ch;
}

.offer-list {
  margin-top: 0;
}

.disclaimer {
  padding: 12px 14px;
  border: 1px solid #d6dbd0;
  border-radius: 12px;
  background: #fffdf7;
}

.faq {
  display: grid;
  gap: 10px;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 700;
}

.faq-item p {
  margin-top: 10px;
}

.thank-you-card {
  margin-bottom: 0;
}

.thank-you-steps {
  display: grid;
  gap: 10px;
  margin: 18px 0;
}

.thank-you-form {
  display: grid;
  gap: 12px;
  margin: 22px 0 12px;
}

.thank-you-form label {
  display: grid;
  gap: 6px;
  font-weight: 600;
}

.thank-you-form input,
.thank-you-form textarea {
  width: 100%;
  border: 1px solid #cdd4ca;
  border-radius: 10px;
  padding: 10px 12px;
  background: #fff;
  color: var(--text);
  font: inherit;
}

.thank-you-form textarea {
  resize: vertical;
}

.thank-you-form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

input,
textarea,
select,
button {
  font: inherit;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: 0;
  border-radius: 999px;
  padding: 10px 17px;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 120ms ease, transform 120ms ease;
}

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

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--accent-hover);
}

.btn-secondary {
  border: 1px solid #a8c0bd;
  color: #24514f;
  background: #eef5f4;
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  background: #e2edeb;
}

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

.status {
  margin-top: 9px;
  color: var(--accent);
  font-weight: 700;
}

.error {
  margin-top: 7px;
  color: var(--error);
  min-height: 1.25em;
}

.site-footer {
  padding: 0 18px 26px;
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
}

.hidden {
  display: none !important;
}

@media (max-width: 920px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-shot img {
    margin-left: 0;
  }

  .step-grid,
  .columns,
  .quote-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .header-inner,
  .header-actions {
    flex-direction: column;
    align-items: flex-start;
  }
}
