:root {
  --ink: #16212a;
  --paper: #f7f1e6;
  --soft: #fff9ef;
  --clay: #806f62;
  --rule: #d8ccbd;
  --green: #14845f;
  --blue: #3157d5;
  --orange: #e75e2e;
  --gold: #e3b33c;
  --white: #ffffff;
  --shadow: rgba(22, 33, 42, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: inherit;
}

.hero {
  position: relative;
  min-height: 92vh;
  overflow: hidden;
  background: var(--ink);
  color: var(--paper);
}

.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(22, 33, 42, 0.55);
  pointer-events: none;
}

.topbar,
.hero-content {
  position: relative;
  z-index: 1;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 26px 0;
}

.mark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.mark-rule {
  width: 38px;
  height: 2px;
  background: var(--gold);
}

.nav-cta {
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--gold);
}

.hero-content {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 74px 0 96px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 780px;
  margin-bottom: 22px;
  font-size: clamp(3rem, 8vw, 6.8rem);
  line-height: 0.94;
}

.hero-copy {
  max-width: 660px;
  margin-bottom: 34px;
  color: #d9d2c7;
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  line-height: 1.35;
}

.lead-form {
  display: grid;
  grid-template-columns: minmax(160px, 220px) minmax(240px, 320px) auto;
  align-items: end;
  gap: 12px;
  max-width: 790px;
}

.lead-form label {
  display: grid;
  gap: 7px;
  color: #d9d2c7;
  font-size: 0.82rem;
  font-weight: 800;
}

.lead-form input {
  width: 100%;
  min-height: 52px;
  border: 1px solid #50606d;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font: inherit;
  padding: 0 14px;
  outline: none;
}

.lead-form input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(227, 179, 60, 0.2);
}

.lead-form input::placeholder {
  color: #bfb7aa;
}

.lead-form button,
.button-link,
.download-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border: 0;
  border-radius: 6px;
  background: var(--gold);
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  text-decoration: none;
  padding: 0 20px;
}

.lead-form button:disabled {
  cursor: wait;
  opacity: 0.74;
}

.field-decoy {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.form-message {
  grid-column: 1 / -1;
  min-height: 22px;
  margin: 0;
  color: var(--gold);
  font-size: 0.95rem;
  font-weight: 800;
}

.success-panel {
  max-width: 790px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid #50606d;
}

.success-panel p {
  margin-bottom: 14px;
  color: #d9d2c7;
}

.section {
  padding: 86px 0;
}

.section-inner {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(320px, 1fr);
  gap: 72px;
  align-items: start;
}

.section h2 {
  max-width: 830px;
  margin-bottom: 20px;
  font-size: clamp(2.1rem, 4vw, 4.4rem);
  line-height: 1;
}

.section p,
.audience-list {
  color: var(--clay);
  font-size: 1.15rem;
  line-height: 1.55;
}

.included {
  background: var(--soft);
}

.item-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-top: 34px;
}

.item-grid article {
  min-height: 190px;
  border: 1px solid var(--rule);
  border-top: 5px solid var(--green);
  border-radius: 6px;
  background: var(--white);
  padding: 22px;
  box-shadow: 0 8px 20px var(--shadow);
}

.item-grid article:nth-child(2) {
  border-top-color: var(--blue);
}

.item-grid article:nth-child(3) {
  border-top-color: var(--gold);
}

.item-grid article:nth-child(4) {
  border-top-color: var(--orange);
}

.item-grid article:nth-child(5) {
  border-top-color: var(--blue);
}

.item-grid h3 {
  margin-bottom: 12px;
  font-size: 1.15rem;
}

.item-grid p {
  margin: 0;
  font-size: 0.98rem;
}

.flow {
  background: var(--ink);
  color: var(--paper);
}

.flow .section-kicker {
  color: var(--gold);
}

.flow h2 {
  color: var(--paper);
}

.flow-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  margin: 36px 0 0;
  padding: 0;
  list-style: none;
}

.flow-steps li {
  min-height: 184px;
  border: 1px solid #42505c;
  border-top: 5px solid var(--green);
  border-radius: 6px;
  background: #202d38;
  padding: 22px 18px;
}

.flow-steps li:nth-child(2) {
  border-top-color: var(--gold);
}

.flow-steps li:nth-child(3) {
  border-top-color: var(--orange);
}

.flow-steps li:nth-child(4) {
  border-top-color: var(--blue);
}

.flow-steps li:nth-child(5) {
  border-top-color: #9f7aea;
}

.flow-steps span {
  display: block;
  margin-bottom: 20px;
  color: var(--gold);
  font-weight: 900;
}

.flow-steps strong {
  display: block;
  margin-bottom: 14px;
  font-size: 1.08rem;
}

.flow-steps p {
  margin: 0;
  color: #c8c0b3;
  font-size: 0.95rem;
}

.audience-list {
  margin: 0;
  padding-left: 1.15em;
}

.audience-list li + li {
  margin-top: 12px;
}

.final-cta {
  padding: 72px 0 100px;
}

.cta-band {
  border: 1px solid var(--rule);
  border-radius: 6px;
  background: var(--white);
  padding: 44px;
  box-shadow: 0 10px 28px var(--shadow);
}

.cta-band h2 {
  max-width: 760px;
}

@media (max-width: 980px) {
  .lead-form,
  .two-column,
  .item-grid,
  .flow-steps {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    padding-top: 50px;
  }

  .item-grid article,
  .flow-steps li {
    min-height: auto;
  }
}

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

  .hero-content {
    width: min(100% - 28px, 1120px);
    padding-bottom: 70px;
  }

  .section {
    padding: 64px 0;
  }

  .section-inner {
    width: min(100% - 28px, 1120px);
  }

  h1 {
    font-size: clamp(2.8rem, 17vw, 4.2rem);
  }

  .lead-form button,
  .button-link,
  .download-link {
    width: 100%;
  }

  .cta-band {
    padding: 28px;
  }
}
