:root {
  --gold: #f9b000;
  --gold-dark: #d79300;
  --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(1140px, calc(100% - 40px));
  margin: 0 auto;
}

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

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

.brand,
.footer-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(118deg, rgba(0, 0, 0, 0.96), rgba(0, 0, 0, 0.82)),
    radial-gradient(circle at 78% 24%, rgba(249, 176, 0, 0.34), transparent 34%),
    var(--black);
  overflow: hidden;
}

.hero-grid {
  min-height: 600px;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(260px, 340px);
  gap: 38px;
  align-items: center;
  padding: 54px 0 66px;
}

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

.hero h1 {
  max-width: 780px;
  margin: 0;
  color: var(--gold);
  font-size: clamp(40px, 5.1vw, 68px);
  line-height: 1;
  letter-spacing: 0;
}

.subhead {
  max-width: 700px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 19px;
  font-weight: 500;
  line-height: 1.48;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.primary-link,
.secondary-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);
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
}

.primary-link {
  background: var(--gold);
  color: var(--black);
  transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.secondary-link {
  background: transparent;
  color: var(--white);
  transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.hero .primary-link:hover,
.hero .primary-link:focus-visible {
  box-shadow: 0 0 0 4px rgba(249, 176, 0, 0.18), 0 0 28px rgba(249, 176, 0, 0.5);
  transform: translateY(-1px);
}

.hero .secondary-link:hover,
.hero .secondary-link:focus-visible {
  color: var(--gold);
  transform: translateY(-1px);
}

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

.report-preview::before {
  content: "";
  width: min(104%, 346px);
  aspect-ratio: 1187 / 1677;
  border: 1.5px solid rgba(249, 176, 0, 0.5);
  border-radius: var(--radius);
  position: absolute;
  transform: rotate(-6deg);
  z-index: 0;
}

.report-preview::after {
  content: "";
  width: min(100%, 334px);
  aspect-ratio: 1187 / 1677;
  border: 1px solid rgba(249, 176, 0, 0.22);
  border-radius: var(--radius);
  position: absolute;
  transform: rotate(5deg);
  z-index: 0;
}

.resource-cover {
  display: block;
  width: min(100%, 326px);
  aspect-ratio: 1187 / 1677;
  border-radius: var(--radius);
  position: relative;
  z-index: 1;
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.44);
}

.report-summary {
  background:
    linear-gradient(180deg, #f3f3f3 0%, #ffffff 100%);
  color: var(--ink);
}

.summary-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.1fr);
  gap: 52px;
  align-items: start;
  padding: 68px 0;
}

.summary-lead {
  position: relative;
  padding: 8px 0 8px 24px;
}

.summary-lead::before {
  content: "";
  width: 6px;
  height: 100%;
  min-height: 148px;
  background: var(--gold);
  border-radius: 999px;
  position: absolute;
  top: 0;
  left: 0;
}

.summary-lead h2 {
  max-width: 440px;
  margin: 0;
  color: var(--black);
  font-size: clamp(30px, 3.6vw, 46px);
  line-height: 1.05;
  letter-spacing: 0;
}

.summary-inner p {
  margin: 0;
}

.summary-copy {
  display: grid;
  gap: 16px;
  padding: 28px 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.06);
}

.summary-copy p {
  color: #252525;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.62;
}

.summary-copy p:first-child {
  font-weight: 700;
}

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

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

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

.message p,
.section-copy p {
  margin: 0 0 22px;
  color: #252525;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.62;
}

.insight-list {
  display: grid;
  gap: 18px;
  margin-top: 34px;
}

.insight-item,
.criteria-list 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);
}

.insight-item h3 {
  margin: 0 0 10px;
  color: var(--black);
  font-size: 24px;
  line-height: 1.25;
}

.insight-item p {
  margin: 0;
  color: #202020;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
}

.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);
}

.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(--black);
  font-size: 15px;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
}

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

.audience-band {
  background: var(--white);
  padding: 86px 0;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(300px, 0.8fr);
  gap: 52px;
  align-items: start;
}

.criteria-list {
  display: grid;
  gap: 16px;
}

.criteria-list .criteria-heading {
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  color: var(--black);
  font-size: 18px;
  font-weight: 800;
}

.criteria-list p:not(.criteria-heading) {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.55;
}

.closing-cta {
  display: grid;
  align-items: center;
  justify-items: center;
  gap: 24px;
  margin-top: 48px;
}

.closing-cta p {
  width: 100%;
  margin: 0;
  color: #252525;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.45;
  text-align: left;
}

.closing-cta .primary-link {
  justify-self: center;
}

.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 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: 960px) {
  .hero-grid,
  .content-grid,
  .two-column {
    grid-template-columns: 1fr;
  }

  .content-grid,
  .two-column {
    gap: 30px;
  }

  .hero-grid {
    min-height: 0;
    gap: 24px;
    padding: 36px 0 42px;
  }

  .report-preview {
    min-height: 0;
    justify-content: center;
    margin-top: 10px;
    padding: 16px 0;
  }

  .report-preview::before {
    width: min(72vw, 288px);
  }

  .report-preview::after {
    width: min(68vw, 276px);
  }

  .resource-cover {
    width: min(66vw, 258px);
  }

  .report-summary,
  .inside-band,
  .audience-band {
    padding: 38px 0;
  }

  .summary-inner {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 0;
  }

  .summary-lead::before {
    min-height: 100%;
  }
}

@media (min-width: 961px) {
  .form-panel {
    align-self: start;
    position: sticky;
    top: 24px;
  }
}

@media (max-width: 620px) {
  .hero,
  .site-header,
  .site-footer {
    overflow-x: clip;
  }

  .container {
    width: min(100% - 28px, 1140px);
  }

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

  .brand img {
    width: 145px;
  }

  .hero-grid {
    gap: 20px;
    padding: 18px 0 34px;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(34px, 9vw, 42px);
    line-height: 1.08;
  }

  .subhead {
    margin-top: 18px;
    max-width: 100%;
    font-size: 15.5px;
    line-height: 1.5;
  }

  .hero-actions {
    gap: 10px;
    margin-top: 18px;
  }

  .hero-actions,
  .primary-link,
  .secondary-link {
    width: 100%;
  }

  .primary-link,
  .secondary-link {
    min-height: 50px;
    font-size: 14px;
  }

  .report-preview {
    margin-top: 12px;
    padding: 12px 0;
  }

  .report-preview::before {
    width: min(62vw, 236px);
  }

  .report-preview::after {
    width: min(58vw, 224px);
  }

  .resource-cover {
    width: min(56vw, 212px);
  }

  .report-summary,
  .inside-band,
  .audience-band {
    padding: 32px 0;
  }

  .summary-inner {
    gap: 20px;
    padding: 0;
  }

  .summary-lead {
    padding: 4px 0 4px 18px;
  }

  .summary-lead h2 {
    font-size: 30px;
  }

  .summary-copy {
    gap: 12px;
    padding: 20px;
  }

  .summary-copy p {
    font-size: 15.5px;
    line-height: 1.55;
  }

  .message h2,
  .section-copy h2 {
    font-size: 30px;
  }

  .message p,
  .section-copy p {
    margin-bottom: 14px;
  }

  .insight-list,
  .criteria-list {
    gap: 10px;
  }

  .insight-item,
  .criteria-list p {
    padding: 18px;
  }

  .closing-cta {
    gap: 16px;
    margin-top: 26px;
  }

  .closing-cta p {
    font-size: 20px;
  }

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

  .form-panel.is-confirmed .form-heading h2 {
    white-space: normal;
  }

  .footer-inner {
    flex-direction: column;
    justify-content: center;
    min-height: 0;
    padding: 14px 0;
    text-align: center;
  }

  .footer-brand img {
    width: 145px;
  }

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

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