:root {
  --gold: #f9b000;
  --black: #000000;
  --white: #ffffff;
  --ink: #171717;
  --muted: #5f5f5f;
  --line: #dedede;
  --soft: #f6f6f6;
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Montserrat", Arial, sans-serif;
}

body.modal-open {
  overflow: hidden;
}

a {
  color: inherit;
}

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

.site-header {
  background: var(--black);
  color: var(--white);
}

.header-inner {
  display: flex;
  align-items: center;
  min-height: 76px;
}

.brand {
  display: inline-block;
  text-decoration: none;
}

.brand img {
  display: block;
  width: 230px;
  max-width: 62vw;
  height: auto;
}

.hero {
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(0, 0, 0, 0.94), rgba(0, 0, 0, 0.78)),
    radial-gradient(circle at 84% 18%, rgba(249, 176, 0, 0.38), transparent 34%),
    var(--black);
  overflow: hidden;
}

.hero-grid {
  min-height: 620px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.72fr);
  gap: 56px;
  align-items: center;
  padding: 70px 0 82px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  color: var(--gold);
  font-size: clamp(42px, 5.45vw, 72px);
  line-height: 0.95;
  letter-spacing: 0;
}

.nowrap {
  white-space: nowrap;
}

.subhead {
  max-width: 660px;
  margin: 26px 0 34px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.45;
}

.primary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  background: var(--gold);
  color: var(--black);
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
}

.report-preview {
  min-height: 430px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  isolation: isolate;
}

.report-preview::before {
  content: "";
  width: min(108%, 520px);
  aspect-ratio: 2550 / 3300;
  border: 1.5px solid rgba(249, 176, 0, 0.56);
  border-radius: 8px;
  position: absolute;
  transform: rotate(-7deg);
  z-index: 0;
}

.report-preview::after {
  content: "";
  width: min(102%, 495px);
  aspect-ratio: 2550 / 3300;
  border: 1px solid rgba(249, 176, 0, 0.22);
  border-radius: 8px;
  position: absolute;
  transform: rotate(5deg);
  z-index: 0;
}

.resource-cover {
  display: block;
  width: min(100%, 445px);
  height: auto;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 28px 42px rgba(0, 0, 0, 0.3));
}

.content-band {
  background: var(--soft);
  padding: 84px 0;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  gap: 52px;
  align-items: start;
}

.message h2 {
  margin: 0 0 24px;
  color: var(--black);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.04;
  letter-spacing: 0;
}

.message p {
  margin: 0 0 22px;
  color: #252525;
  font-size: 19px;
  font-weight: 500;
  line-height: 1.6;
}

.proof-points {
  display: grid;
  gap: 18px;
  margin: 34px 0;
}

.proof-points p {
  margin: 0;
  padding: 24px;
  border-left: 6px solid var(--gold);
  background: var(--white);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.06);
}

.form-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--black);
  color: var(--white);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
  position: sticky;
  top: 24px;
}

.form-heading {
  padding: 34px 34px 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.form-heading h2 {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 34px;
  line-height: 1.1;
}

.form-panel.is-confirmed .form-heading h2 {
  font-size: 24px;
  white-space: nowrap;
}

.form-panel.is-confirmed .form-heading {
  border-bottom: 0;
  padding-bottom: 8px;
}

.form-heading p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  line-height: 1.5;
}

form {
  display: grid;
  gap: 18px;
  padding: 28px 34px 34px;
}

.progressive-fields {
  display: grid;
  gap: 18px;
}

.is-hidden {
  display: none;
}

.field-row {
  display: grid;
  gap: 8px;
}

label,
legend {
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  font-weight: 700;
}

label span,
legend span {
  color: var(--gold);
}

input {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 6px;
  background: var(--white);
  color: var(--black);
  font: 500 15px "Montserrat", Arial, sans-serif;
  padding: 0 13px;
}

.checkbox-field,
.radio-field {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.checkbox-field.is-hidden,
.radio-field.is-hidden {
  display: none;
}

.checkbox-field input,
.radio-field input {
  width: 18px;
  min-height: 18px;
  accent-color: var(--gold);
}

.checkbox-field span,
.radio-field span {
  color: rgba(255, 255, 255, 0.88);
}

.owner-question {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
}

.owner-question.is-hidden {
  display: none;
}

.owner-question legend {
  padding: 0 6px;
}

.fit-note {
  margin: 4px 0 0;
  padding: 12px;
  border-left: 4px solid var(--gold);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  line-height: 1.5;
}

button {
  min-height: 56px;
  margin-top: 6px;
  border: 0;
  border-radius: var(--radius);
  background: var(--gold);
  color: var(--black);
  cursor: pointer;
  font: 800 15px "Montserrat", Arial, sans-serif;
  text-transform: uppercase;
}

button:disabled {
  cursor: not-allowed;
  opacity: 0.48;
}

.consent {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 11px;
  line-height: 1.5;
}

.text-link {
  display: inline;
  min-height: 0;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font: inherit;
  text-align: inherit;
  text-decoration: none;
  text-transform: none;
}

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

.confirmation-state {
  display: grid;
  gap: 10px;
  padding: 6px 34px 34px;
}

.confirmation-state.is-hidden {
  display: none;
}

.status-label {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 15px;
  font-weight: 700;
}

.sending-status {
  display: grid;
  gap: 16px;
  overflow: hidden;
}

.sending-status.is-complete {
  max-height: 0;
  opacity: 0;
  margin: 0;
  transition: max-height 0.35s ease, opacity 0.25s ease, margin 0.35s ease;
}

.progress-track {
  width: 100%;
  height: 12px;
  overflow: hidden;
  border: 1px solid rgba(249, 176, 0, 0.34);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
}

.progress-fill {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: var(--gold);
}

.confirmation-state.is-active .progress-fill {
  animation: fill-progress 25s ease-out forwards;
}

.strategy-call {
  display: grid;
  gap: 12px;
}

.strategy-call h3 {
  margin: 0;
  color: var(--gold);
  font-size: 24px;
  line-height: 1.15;
}

.strategy-call p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  line-height: 1.6;
}

.strategy-call .button-note {
  margin-top: -4px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
  line-height: 1.45;
  text-align: center;
}

.strategy-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  margin-top: 6px;
  border-radius: var(--radius);
  background: var(--gold);
  color: var(--white);
  font-size: 15px;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
}

@keyframes fill-progress {
  to {
    width: 100%;
  }
}

.site-footer {
  background: var(--black);
  color: var(--white);
}

.footer-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-brand {
  display: inline-block;
  text-decoration: none;
}

.footer-brand img {
  display: block;
  width: 188px;
  max-width: 54vw;
  height: auto;
}

.footer-legal {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.footer-legal .text-link {
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 700;
}

.site-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
}

.privacy-modal {
  position: fixed;
  inset: 0;
  z-index: 20;
  display: grid;
  place-items: center;
  padding: 22px;
}

.privacy-modal.is-hidden {
  display: none;
}

.privacy-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
}

.privacy-dialog {
  width: min(720px, 100%);
  max-height: min(760px, calc(100vh - 44px));
  overflow: auto;
  padding: 34px;
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
  position: relative;
}

.privacy-close {
  width: 38px;
  min-height: 38px;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  color: var(--black);
  font-size: 28px;
  line-height: 1;
  position: absolute;
  top: 18px;
  right: 18px;
}

.privacy-dialog h2 {
  margin: 0 48px 8px 0;
  color: var(--black);
  font-size: 34px;
  line-height: 1.1;
}

.privacy-updated {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.privacy-dialog h3 {
  margin: 24px 0 8px;
  color: var(--black);
  font-size: 18px;
  line-height: 1.25;
}

.privacy-dialog p {
  margin: 0 0 12px;
  color: #2a2a2a;
  font-size: 14px;
  line-height: 1.65;
}

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

  .hero-grid {
    min-height: 0;
    gap: 44px;
    padding: 54px 0 64px;
  }

  .report-preview {
    min-height: 0;
    justify-content: center;
  }

  .resource-cover {
    width: min(100%, 390px);
  }

  .form-panel {
    position: static;
  }
}

@media (max-width: 600px) {
  .container {
    width: min(100% - 28px, 1120px);
  }

  .header-inner {
    justify-content: center;
    min-height: 66px;
  }

  .brand img {
    width: 136px;
  }

  .hero h1 {
    font-size: 38px;
    line-height: 1;
  }

  .hero-grid {
    padding-top: 30px;
  }

  .hero-copy,
  .message,
  .site-footer {
    text-align: center;
  }

  .form-heading {
    text-align: left;
  }

  .primary-link {
    margin-left: auto;
    margin-right: auto;
  }

  .subhead {
    font-size: 18px;
  }

  .content-band {
    padding: 58px 0;
  }

  .message p {
    font-size: 16px;
  }

  .proof-points p {
    padding: 20px;
    text-align: left;
  }

  .form-heading,
  form,
  .confirmation-state {
    padding-left: 22px;
    padding-right: 22px;
  }

  .strategy-call h3 {
    font-size: 22px;
  }

  .form-panel.is-confirmed .form-heading h2 {
    font-size: 20px;
  }

  .resource-cover {
    width: min(74vw, 275px);
  }

  .report-preview {
    max-width: 315px;
    margin: 0 auto;
    padding: 4px 0 14px;
  }

  .report-preview::before {
    width: min(82vw, 310px);
    transform: rotate(-5deg);
  }

  .report-preview::after {
    width: min(78vw, 295px);
    transform: rotate(4deg);
  }

  .footer-inner {
    min-height: 112px;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    gap: 14px;
  }

  .footer-legal {
    align-items: center;
    gap: 8px;
  }

  .privacy-dialog {
    padding: 28px 22px;
  }

  .privacy-dialog h2 {
    font-size: 28px;
  }
}
