:root {
  color-scheme: light;
  --ink: #17130f;
  --muted: #5d554c;
  --paper: #fbf8f2;
  --cream: #f3eadb;
  --clay: #b95f35;
  --clay-dark: #7f351d;
  --forest: #18463a;
  --mint: #d9efe7;
  --line: rgba(23, 19, 15, 0.14);
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(30, 22, 12, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.hero {
  position: relative;
  min-height: 92svh;
  display: grid;
  align-items: center;
  background:
    radial-gradient(circle at 84% 18%, rgba(242, 184, 74, 0.2), transparent 34%),
    linear-gradient(135deg, #17130f 0%, #2a1d14 48%, #18463a 100%);
  overflow: hidden;
  isolation: isolate;
}

.hero__content,
.section__inner {
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
}

.hero__content {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(320px, 0.74fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
  padding: 72px 0 96px;
  color: var(--white);
}

.hero__copy {
  min-width: 0;
}

.hero__portrait {
  position: relative;
  margin: 0;
  justify-self: end;
  width: min(100%, 440px);
  aspect-ratio: 4 / 5;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.42);
  overflow: hidden;
}

.hero__portrait > img:not(.hero__seal) {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__seal {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: clamp(148px, 18vw, 214px);
  aspect-ratio: 1;
  border-radius: 50%;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.42);
}

.eyebrow {
  margin: 0 0 14px;
  color: #f2c46e;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow--dark {
  color: var(--clay-dark);
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.04;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  font-size: clamp(3rem, 7vw, 5.8rem);
}

h2 {
  max-width: 720px;
  font-size: clamp(2rem, 5vw, 4.2rem);
}

h3 {
  font-size: 1.32rem;
}

p {
  line-height: 1.65;
}

.hero__text {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.hero__hint {
  max-width: 610px;
  margin: 18px 0 0;
  padding-left: 16px;
  border-left: 4px solid #f2b84a;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.02rem;
  font-weight: 700;
}

.hero__actions,
.cta__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.hero__actions {
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 14px 20px;
  border: 1px solid transparent;
  font-weight: 800;
  text-decoration: none;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

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

.button--primary {
  background: #f2b84a;
  color: #211203;
  box-shadow: 0 18px 38px rgba(242, 184, 74, 0.28);
}

.button--ghost {
  border-color: rgba(255, 255, 255, 0.34);
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.button--light {
  background: var(--white);
  color: var(--forest);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.14);
}

.section {
  padding: 86px 0;
}

.section--intro {
  background: var(--paper);
}

.intro {
  display: grid;
  gap: 10px;
  margin-bottom: 34px;
}

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

.step {
  min-height: 300px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.step__number {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 34px;
  border-radius: 50%;
  background: var(--forest);
  color: var(--white);
  font-weight: 900;
}

.step p {
  margin: 14px 0 0;
  color: var(--muted);
}

.email-preview {
  margin: 22px 0 0;
  padding: 10px;
  border: 1px solid rgba(23, 19, 15, 0.1);
  border-radius: 8px;
  background: #f7f9fc;
}

.email-preview img {
  width: 100%;
  max-height: 360px;
  object-fit: contain;
  border-radius: 6px;
}

.section--support {
  background: var(--cream);
}

.support-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
  gap: 40px;
  align-items: start;
}

.support-copy p {
  max-width: 590px;
  color: var(--muted);
  font-size: 1.08rem;
}

.checklist {
  display: grid;
  gap: 12px;
}

.check {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 14px;
  align-items: start;
  min-height: 72px;
  padding: 18px;
  border: 1px solid rgba(24, 70, 58, 0.17);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.64);
}

.check span {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  background: var(--mint);
  color: var(--forest);
  font-weight: 900;
}

.check p {
  margin: 4px 0 0;
  color: var(--ink);
}

.cta {
  background: var(--forest);
  color: var(--white);
}

.cta__inner {
  justify-content: space-between;
}

.cta h2 {
  max-width: 780px;
  font-size: clamp(2rem, 4vw, 3.5rem);
}

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

  .hero__content {
    grid-template-columns: 1fr;
    padding: 56px 0 70px;
  }

  .hero__portrait {
    justify-self: start;
    width: min(100%, 360px);
  }

  .hero__seal {
    top: 12px;
    right: 12px;
    width: clamp(168px, 48vw, 214px);
  }

  .steps,
  .support-grid {
    grid-template-columns: 1fr;
  }

  .step {
    min-height: auto;
  }
}

@media (max-width: 560px) {
  .hero__content,
  .section__inner {
    width: min(100% - 28px, 1120px);
  }

  .hero__content {
    padding: 64px 0 96px;
  }

  .section {
    padding: 62px 0;
  }

  h1 {
    font-size: clamp(2.6rem, 12vw, 3.5rem);
  }

  .button {
    width: 100%;
  }

  .step {
    padding: 22px;
  }
}
