:root {
  --ink: #2a2325;
  --muted: #735f64;
  --paper: #fff8f5;
  --surface: #ffffff;
  --clay: #a76045;
  --clay-dark: #7d412f;
  --rose: #d9aaa3;
  --sage: #657a69;
  --gold: #c08a3d;
  --plum: #3a2630;
  --border: #ead7d1;
  --shadow: 0 24px 70px rgba(42, 35, 37, 0.22);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

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

body {
  min-height: 100%;
  margin: 0;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  letter-spacing: 0;
}

button,
input {
  font: inherit;
}

a {
  color: inherit;
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 92svh;
}

.hero__image,
.hero__shade {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero__image {
  background:
    linear-gradient(90deg, rgba(42, 35, 37, 0.06), rgba(42, 35, 37, 0.18)),
    url("hero-bg") center / cover;
  transform: scale(1.02);
}

.hero__shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(45, 31, 35, 0.66) 0%, rgba(71, 42, 39, 0.42) 48%, rgba(255, 248, 245, 0.18) 100%),
    linear-gradient(180deg, rgba(42, 35, 37, 0.26), rgba(42, 35, 37, 0.05) 42%, rgba(58, 38, 48, 0.48));
}

.hero__shade--reward {
  background:
    linear-gradient(90deg, rgba(58, 38, 48, 0.72), rgba(97, 55, 48, 0.4), rgba(255, 248, 245, 0.14)),
    linear-gradient(180deg, rgba(42, 35, 37, 0.2), rgba(42, 35, 37, 0.56));
}

.site-header {
  position: absolute;
  top: 28px;
  left: 32px;
  right: 32px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  max-width: calc(100vw - 64px);
  padding: 8px 12px;
  border: 1px solid rgba(255, 248, 245, 0.62);
  border-radius: 8px;
  background: rgba(255, 248, 245, 0.92);
  box-shadow: 0 14px 36px rgba(42, 35, 37, 0.14);
  text-decoration: none;
}

.brand__logo {
  display: block;
  width: min(164px, calc(100vw - 88px));
  height: auto;
  max-height: 56px;
  object-fit: contain;
}

.hero__content {
  width: min(1120px, calc(100% - 48px));
  min-height: 92svh;
  margin: 0 auto;
  padding: 112px 0 42px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 440px);
  gap: 38px;
  align-items: center;
}

.hero__copy {
  max-width: 700px;
  color: #fffaf7;
  text-shadow: 0 2px 18px rgba(42, 35, 37, 0.42);
  text-wrap: balance;
}

.eyebrow {
  margin: 0 0 18px;
  color: #f2d9cc;
  font-size: 0.78rem;
  font-weight: 780;
  text-transform: uppercase;
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3.7rem;
  line-height: 1.04;
  font-weight: 540;
  letter-spacing: 0;
}

.hero__intro {
  max-width: 560px;
  margin-bottom: 0;
  color: rgba(255, 248, 245, 0.88);
  font-size: 1.12rem;
  line-height: 1.65;
}

.lead-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  border: 1px solid rgba(234, 215, 209, 0.86);
  border-radius: var(--radius);
  background: rgba(255, 248, 245, 0.96);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.lead-form__header {
  display: grid;
  gap: 6px;
  margin-bottom: 4px;
}

.lead-form__kicker,
.reward-card__label {
  color: var(--sage);
  font-size: 0.74rem;
  font-weight: 780;
  text-transform: uppercase;
}

.lead-form h2 {
  margin-bottom: 0;
  color: var(--plum);
  font-size: 1.42rem;
  line-height: 1.2;
}

.field {
  display: grid;
  gap: 7px;
}

.field label {
  color: var(--plum);
  font-size: 0.9rem;
  font-weight: 720;
}

.field input {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid #dac4bd;
  border-radius: 6px;
  color: var(--ink);
  background: #fff;
  outline: 2px solid transparent;
  outline-offset: 2px;
  transition:
    border-color 160ms ease,
    outline-color 160ms ease,
    box-shadow 160ms ease;
}

.field input:focus {
  border-color: var(--clay);
  outline-color: rgba(167, 96, 69, 0.18);
  box-shadow: 0 0 0 4px rgba(167, 96, 69, 0.08);
}

.field input[aria-invalid="true"] {
  border-color: #b33636;
}

.field__error {
  min-height: 16px;
  color: #9f2f2f;
  font-size: 0.78rem;
  line-height: 1.3;
}

.field--trap {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 20px;
  border: 0;
  border-radius: 7px;
  text-decoration: none;
  color: #fffaf7;
  cursor: pointer;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease,
    opacity 160ms ease;
}

.button--primary {
  background: linear-gradient(135deg, var(--clay), var(--clay-dark));
  box-shadow: 0 16px 32px rgba(125, 65, 47, 0.25);
  font-weight: 820;
}

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

.button:active {
  transform: translateY(0);
}

.button:disabled,
.button--disabled {
  cursor: not-allowed;
  opacity: 0.62;
  transform: none;
}

.button__icon {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 248, 245, 0.16);
}

.button--wide {
  width: min(100%, 360px);
}

.form-status {
  min-height: 18px;
  margin: -2px 0 0;
  color: var(--plum);
  font-size: 0.84rem;
  font-weight: 700;
}

.form-note {
  margin: -4px 0 0;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.55;
  text-align: center;
}

.promise-band {
  background: var(--paper);
}

.promise-band__inner {
  width: min(1120px, calc(100% - 48px));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 760;
  text-transform: uppercase;
}

.promise-band p {
  margin: 0;
}

.promise-band span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.reward-page .hero {
  min-height: 100svh;
}

.reward {
  width: min(760px, calc(100% - 48px));
  min-height: 100svh;
  margin: 0 auto;
  padding: 118px 0 54px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  color: #fffaf7;
}

.reward h1 {
  max-width: 680px;
  margin-bottom: 28px;
}

.reward-card {
  width: min(100%, 580px);
  margin-bottom: 24px;
  padding: 28px;
  border: 1px solid rgba(255, 248, 245, 0.28);
  border-radius: var(--radius);
  background: rgba(255, 248, 245, 0.94);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.reward-card h2 {
  margin: 10px 0 14px;
  color: var(--plum);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.25rem;
  line-height: 1.08;
  font-weight: 540;
}

.reward-prize {
  text-align: center;
}

.reward-prize span {
  position: relative;
  display: inline-block;
  padding: 0 8px 8px;
  color: var(--clay-dark);
  font-size: clamp(2.35rem, 5vw, 4rem);
  animation: prizePulse 3.2s ease-in-out infinite;
}

.reward-prize span::after {
  content: "";
  position: absolute;
  left: 4px;
  right: 4px;
  bottom: 0;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(192, 138, 61, 0.25), rgba(217, 170, 163, 0.72));
  z-index: -1;
}

@keyframes prizePulse {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-3px);
  }
}

.reward__note {
  margin-bottom: 0;
  line-height: 1.6;
}

.reward-card > p {
  color: var(--muted);
  line-height: 1.6;
}

.benefits {
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.benefits h3 {
  margin: 0 0 12px;
  color: var(--plum);
  font-size: 0.82rem;
  line-height: 1.25;
  text-transform: uppercase;
}

.benefits ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.benefits li {
  position: relative;
  padding-left: 20px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.benefits li::before {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--sage);
}

.reward__note {
  max-width: 460px;
  margin-top: 16px;
  color: rgba(255, 248, 245, 0.82);
  font-size: 0.92rem;
}

@media (max-width: 920px) {
  .site-header {
    left: 24px;
    right: 24px;
  }

  .hero__content {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-top: 108px;
  }

  .hero__copy {
    max-width: 620px;
  }

  h1 {
    font-size: 2.75rem;
  }

  .hero__intro {
    font-size: 1.02rem;
  }

  .lead-form {
    max-width: 520px;
  }

  .promise-band__inner {
    flex-wrap: wrap;
    padding: 22px 0;
    text-align: center;
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: auto;
  }

  .hero__shade {
    background:
      linear-gradient(180deg, rgba(58, 38, 48, 0.38), rgba(97, 55, 48, 0.32) 38%, rgba(58, 38, 48, 0.56));
  }

  .hero__image {
    background:
      linear-gradient(180deg, rgba(42, 35, 37, 0.08), rgba(42, 35, 37, 0.22)),
      url("hero-bg") 56% top / cover;
  }

  .site-header {
    top: 20px;
    left: 18px;
    right: 18px;
  }

  .brand {
    max-width: calc(100vw - 36px);
    padding: 7px 10px;
  }

  .brand__logo {
    width: min(132px, calc(100vw - 60px));
    max-height: 46px;
  }

  .hero__content {
    width: min(560px, calc(100% - 32px));
    min-height: 100svh;
    padding: 92px 0 34px;
  }

  .eyebrow {
    margin-bottom: 14px;
  }

  h1 {
    font-size: 2.18rem;
    line-height: 1.08;
  }

  .lead-form {
    padding: 22px;
  }

  .lead-form h2 {
    font-size: 1.22rem;
  }

  .promise-band__inner {
    width: min(560px, calc(100% - 32px));
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
    font-size: 0.78rem;
  }

  .promise-band span {
    display: none;
  }

  .reward {
    width: min(560px, calc(100% - 32px));
    min-height: 100svh;
    padding-top: 98px;
  }

  .reward-card {
    padding: 22px;
  }

  .reward-card h2 {
    font-size: 1.82rem;
  }

  .reward-prize span {
    font-size: clamp(2.2rem, 12vw, 3.1rem);
  }
}
