:root {
  color-scheme: light;
  --ink: #10231f;
  --navy: #081c34;
  --muted: #586761;
  --paper: #f7f6f1;
  --white: #ffffff;
  --gold: #b88734;
  --gold-bright: #efc66b;
  --line: #d9dfda;
  --forest: #1f4f3c;
  --shadow: 0 24px 70px rgba(8, 28, 52, 0.16);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

@font-face {
  font-display: swap;
  font-family: "STIX Two Text";
  font-style: normal;
  font-weight: 400;
  src: url("assets/fonts/stix-two-text-regular.ttf") format("truetype");
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--paper);
  color: var(--ink);
  margin: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.site-header {
  align-items: center;
  display: flex;
  justify-content: space-between;
  left: 0;
  padding: 18px clamp(18px, 5vw, 72px);
  position: absolute;
  right: 0;
  top: 0;
  transition:
    opacity 680ms ease,
    transform 680ms cubic-bezier(0.2, 0.9, 0.2, 1);
  z-index: 4;
}

.brand img {
  filter: drop-shadow(0 8px 22px rgba(0, 0, 0, 0.16));
  height: 58px;
  object-fit: contain;
  object-position: left center;
  width: 232px;
}

nav {
  align-items: center;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.64);
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(8, 28, 52, 0.12);
  display: flex;
  gap: 6px;
  padding: 6px;
  backdrop-filter: blur(14px);
}

@supports (-webkit-hyphens: none) {
  nav {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: none;
  }
}

nav a {
  border-radius: 999px;
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 850;
  padding: 9px 14px;
}

nav a:hover,
nav a:focus-visible {
  background: rgba(184, 135, 52, 0.16);
}

.hero {
  align-items: stretch;
  background-image:
    linear-gradient(180deg, rgba(8, 28, 52, 0.06) 0%, rgba(255, 255, 255, 0.02) 38%, rgba(8, 28, 52, 0.2) 100%),
    url("assets/hero-chatgpt-102531.png");
  background-position: center;
  background-size: cover;
  display: flex;
  justify-content: center;
  min-height: 92vh;
  overflow: hidden;
  padding: 128px clamp(22px, 6vw, 86px) clamp(60px, 8vw, 104px);
  position: relative;
}

.hero::after {
  background: linear-gradient(90deg, var(--gold-bright), rgba(255, 255, 255, 0), var(--forest));
  bottom: 0;
  content: "";
  height: 7px;
  left: 0;
  position: absolute;
  right: 0;
}

.hero-title {
  align-self: center;
  justify-self: center;
  max-width: min(1180px, 92vw);
  position: relative;
  text-align: center;
  top: 70px;
  transition:
    opacity 460ms ease,
    transform 460ms cubic-bezier(0.18, 0.94, 0.24, 1);
  width: 100%;
  will-change: opacity, transform;
  z-index: 1;
}

.hero-loading .site-header {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-18px);
}

.hero-loading .hero-title {
  opacity: 0;
  transform: translateY(28px) scale(0.985);
}

.hero-ready .site-header {
  transition-delay: 110ms;
}

.hero-ready .hero-title {
  transition-delay: 210ms;
}

.kicker {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  margin: 0 0 16px;
  text-transform: uppercase;
}

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

h1 {
  line-height: 1;
  margin-bottom: 0;
}

.hero-wordmark {
  display: block;
  height: auto;
  margin: 0 auto;
  max-width: 1180px;
  width: 100%;
}

.hero-wordmark text {
  fill: #ffffff;
  font-family: "STIX Two Text", STIXTwoText, serif;
  font-size: 250px;
  font-variation-settings: "wght" 750;
  font-weight: 750;
}

.sr-only {
  clip: rect(0, 0, 0, 0);
  border: 0;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.agent-resource-index {
  clip: rect(0, 0, 0, 0);
  border: 0;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

h2 {
  font-size: clamp(2.2rem, 4.6vw, 4.8rem);
  letter-spacing: 0;
  line-height: 0.98;
  margin-bottom: 0;
}

h3 {
  font-size: 1.35rem;
  letter-spacing: 0;
  line-height: 1.15;
  margin-bottom: 14px;
}

.lead {
  color: rgba(8, 28, 52, 0.82);
  font-size: clamp(1.05rem, 1.8vw, 1.34rem);
  font-weight: 650;
  margin-bottom: 0;
  max-width: 700px;
}

.actions,
.report-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  display: inline-flex;
  font-size: 0.95rem;
  font-weight: 900;
  justify-content: center;
  min-height: 50px;
  min-width: 142px;
  padding: 12px 19px;
}

.primary {
  background: var(--navy);
  color: var(--white);
}

.secondary {
  background: rgba(255, 255, 255, 0.74);
  border-color: rgba(8, 28, 52, 0.16);
  color: var(--navy);
}

.secondary.dark {
  background: rgba(8, 28, 52, 0.06);
}

.strategy {
  padding: clamp(62px, 8vw, 112px) clamp(22px, 6vw, 86px);
}

.section-heading {
  margin-bottom: clamp(30px, 5vw, 58px);
  max-width: none;
}

.section-heading h2 {
  font-size: clamp(2rem, 4.3vw, 4.25rem);
  white-space: nowrap;
}

.section-lead {
  color: var(--muted);
  font-size: clamp(1.2rem, 2.1vw, 1.8rem);
  font-weight: 700;
  line-height: 1.2;
  margin: 18px 0 0;
}

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

.insight-grid article {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 42px rgba(8, 28, 52, 0.07);
  min-height: 286px;
  padding: 28px;
}

.insight-grid span {
  color: var(--gold);
  display: block;
  font-weight: 900;
  margin-bottom: 54px;
}

.insight-grid p,
.contact-copy p {
  color: var(--muted);
  margin-bottom: 0;
}

@media (hover: hover) and (pointer: fine) {
  .insight-grid article {
    transition:
      border-color 190ms ease,
      box-shadow 190ms ease,
      transform 190ms ease;
  }

  .insight-grid article:hover {
    border-color: rgba(184, 135, 52, 0.42);
    box-shadow: 0 22px 54px rgba(8, 28, 52, 0.12);
    transform: translateY(-7px);
  }
}

.report {
  background: #fffdf8;
  color: var(--navy);
  padding: clamp(56px, 8vw, 100px) clamp(22px, 6vw, 86px);
}

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

.report-head {
  align-items: end;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 28px;
}

.report-actions {
  flex-shrink: 0;
  justify-content: flex-end;
  margin-top: 0;
}

.report-note {
  color: rgba(8, 28, 52, 0.72);
  font-size: 0.98rem;
  margin: 18px 0 0;
  max-width: 680px;
}

.report-note strong {
  color: var(--navy);
  font-weight: 900;
}

.pdf-frame {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  margin: 0 auto;
  max-width: 1120px;
  overflow: hidden;
}

.pdf-toolbar {
  align-items: center;
  background: #303331;
  color: var(--white);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  padding: 12px 14px;
}

.pdf-toolbar-group {
  align-items: center;
  display: flex;
  gap: 8px;
}

.pdf-control,
.pdf-link {
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 7px;
  color: var(--white);
  cursor: pointer;
  display: inline-flex;
  font: inherit;
  font-size: 0.86rem;
  font-weight: 850;
  justify-content: center;
  min-height: 38px;
  padding: 8px 12px;
}

.pdf-control:hover,
.pdf-link:hover,
.pdf-control:focus-visible,
.pdf-link:focus-visible {
  background: rgba(255, 255, 255, 0.18);
}

.pdf-control:disabled {
  cursor: not-allowed;
  opacity: 0.42;
}

.icon-control {
  min-width: 40px;
  padding-left: 10px;
  padding-right: 10px;
}

.pdf-page-status,
.pdf-zoom-status {
  background: rgba(0, 0, 0, 0.24);
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 850;
  min-width: 76px;
  padding: 8px 10px;
  text-align: center;
}

.pdf-stage {
  align-items: flex-start;
  background: #f2f1ec;
  display: flex;
  justify-content: flex-start;
  max-height: min(86vh, 920px);
  min-height: min(78vh, 760px);
  overflow: auto;
  padding: clamp(14px, 2vw, 24px);
  position: relative;
  scroll-behavior: smooth;
  width: 100%;
}

.pdf-pages {
  display: grid;
  gap: clamp(14px, 2vw, 22px);
  justify-items: center;
  margin: 0 auto;
  width: max-content;
}

.pdf-page {
  display: block;
}

.pdf-page canvas {
  background: var(--white);
  box-shadow: 0 12px 34px rgba(8, 28, 52, 0.16);
  display: block;
}

.pdf-status {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  font-weight: 850;
  left: 50%;
  margin: 0;
  padding: 12px 16px;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}

.pdf-status.is-hidden {
  display: none;
}

.pdf-error .pdf-stage {
  min-height: 260px;
}

.pdf-error .pdf-pages {
  display: none;
}

.pdf-error .pdf-status {
  color: #8b2f23;
  display: block;
}

.pdf-stage:focus-visible {
  outline: 3px solid rgba(184, 135, 52, 0.46);
  outline-offset: -3px;
}

.contact {
  display: grid;
  gap: clamp(28px, 5vw, 72px);
  grid-template-columns: minmax(280px, 0.8fr) minmax(340px, 1.2fr);
  padding: clamp(62px, 8vw, 112px) clamp(22px, 6vw, 86px);
}

.contact-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 18px;
  padding: clamp(22px, 4vw, 34px);
}

.field-row {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

label {
  display: grid;
  gap: 8px;
}

label span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
}

input,
select,
textarea {
  appearance: none;
  background: #fffdf8;
  border: 1px solid var(--line);
  border-radius: 7px;
  color: var(--navy);
  font: inherit;
  min-height: 50px;
  padding: 12px 14px;
  width: 100%;
}

textarea {
  min-height: 132px;
  resize: vertical;
}

.hidden-field {
  display: none;
}

.verify {
  background: #f5f6f2;
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 14px;
}

.cf-turnstile {
  min-height: 65px;
}

.form-submit {
  width: fit-content;
}

.form-submit:disabled {
  cursor: wait;
  opacity: 0.68;
}

.form-status {
  color: var(--muted);
  margin: 0;
  min-height: 22px;
}

.form-success {
  align-content: center;
  background:
    linear-gradient(135deg, rgba(184, 135, 52, 0.14), rgba(31, 79, 60, 0.08)),
    #fffdf8;
  border: 1px solid rgba(184, 135, 52, 0.28);
  border-radius: 8px;
  min-height: 360px;
  padding: clamp(26px, 5vw, 46px);
}

.form-success h3 {
  font-size: clamp(2.2rem, 4vw, 4.2rem);
  line-height: 0.98;
  margin-bottom: 18px;
}

.form-success p:not(.kicker) {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.55;
  margin-bottom: 28px;
  max-width: 420px;
}

.contact-form.is-sent > :not(.form-success) {
  display: none;
}

footer {
  align-items: center;
  background: #ece9df;
  color: rgba(8, 28, 52, 0.76);
  display: flex;
  font-size: 0.98rem;
  justify-content: center;
  padding: 28px clamp(22px, 6vw, 86px);
}

footer p {
  line-height: 1.55;
  margin: 0;
  max-width: 880px;
}

@media (max-width: 920px) {
  .site-header {
    align-items: flex-start;
    gap: 16px;
  }

  .insight-grid,
  .contact {
    grid-template-columns: 1fr;
  }

  .report-head {
    align-items: start;
    flex-direction: column;
  }

  .report-actions {
    justify-content: flex-start;
  }

  footer {
    align-items: flex-start;
    flex-direction: column;
  }

}

@media (max-width: 620px) {
  .site-header {
    padding-top: 12px;
  }

  .brand img {
    height: 42px;
    width: 172px;
  }

  nav {
    gap: 0;
    padding: 4px;
  }

  nav a {
    font-size: 0.82rem;
    padding: 8px 10px;
  }

  .hero {
    min-height: 90vh;
    padding-top: 118px;
  }

  .section-heading h2 {
    font-size: clamp(1.35rem, 7vw, 2rem);
    line-height: 1.06;
    white-space: normal;
  }

  .actions,
  .report-actions,
  .button,
  .form-submit {
    width: 100%;
  }

  .field-row {
    grid-template-columns: 1fr;
  }

  .contact {
    justify-items: center;
    padding-left: 12px;
    padding-right: 12px;
  }

  .contact-copy,
  .contact-form {
    justify-self: center;
    max-width: 560px;
    min-width: 0;
    width: 100%;
  }

  .contact-form {
    padding: 12px;
  }

  .verify {
    min-width: 0;
    overflow: visible;
    padding: 6px;
  }

  .cf-turnstile {
    min-width: 0;
    width: 100%;
  }

  .cf-turnstile iframe {
    max-width: 100%;
  }

  .pdf-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .pdf-toolbar-group {
    justify-content: space-between;
    width: 100%;
  }

  .pdf-file-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pdf-page-status,
  .pdf-zoom-status {
    flex: 1;
  }

  .pdf-link {
    width: 100%;
  }

  .pdf-stage {
    max-height: 76vh;
    min-height: 560px;
    padding: 10px;
  }
}
