:root {
  color-scheme: light;
  --ink: #050505;
  --muted: #5d5965;
  --line: #e9e3f4;
  --paper: #ffffff;
  --soft: #f7f3ff;
  --accent: #6d28d9;
  --accent-dark: #3b0764;
  --shadow: 0 26px 80px rgba(37, 17, 68, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

.is-locked body {
  overflow: hidden;
}

a {
  color: inherit;
}

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

.password-gate {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: white;
}

.is-locked .password-gate {
  display: flex;
}

.is-locked .site-header,
.is-locked main,
.is-locked .footer {
  visibility: hidden;
}

.password-card {
  display: grid;
  width: min(100%, 520px);
  gap: 18px;
}

.password-card h1 {
  font-size: clamp(2.7rem, 8vw, 5rem);
}

.password-card p:not(.section-label) {
  margin: 0;
  color: var(--muted);
}

.password-card label {
  font-weight: 760;
}

.password-card input {
  width: 100%;
  min-height: 52px;
  padding: 12px 14px;
  border: 1px solid var(--ink);
  border-radius: 0;
  font: inherit;
}

.password-card .button {
  width: 100%;
  cursor: pointer;
}

.password-error {
  color: #b91c1c;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(22px, 6vw, 88px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  font-size: 0.98rem;
  font-weight: 760;
  text-decoration: none;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  color: var(--muted);
  font-size: 0.9rem;
}

.nav a,
.footer a,
.reference-card a {
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(360px, 1.08fr) minmax(320px, 0.92fr);
  gap: clamp(40px, 8vw, 120px);
  align-items: center;
  padding: clamp(52px, 8vw, 108px) clamp(22px, 6vw, 88px) clamp(72px, 9vw, 132px);
}

.hero-copy {
  max-width: 760px;
}

.hero > *,
.section-intro > *,
.section-heading > *,
.executive-profile > *,
.contact > * {
  min-width: 0;
}

.kicker,
.section-label,
.tag {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 820;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  overflow-wrap: normal;
}

h1 {
  margin: 0;
  max-width: 13ch;
  font-size: clamp(3.2rem, 5.5vw, 5.9rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  max-width: 15ch;
  font-size: clamp(2.15rem, 4.2vw, 4.4rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: clamp(1.16rem, 1.45vw, 1.36rem);
  line-height: 1.2;
}

.subline {
  max-width: 47ch;
  margin: 28px 0 0;
  color: var(--ink);
  font-size: clamp(1.16rem, 1.7vw, 1.42rem);
  line-height: 1.42;
}

.intro {
  max-width: 52ch;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.hero-actions {
  margin-top: 34px;
}

.button,
.download-card {
  transition:
    background-color 160ms ease,
    border-color 160ms ease,
    color 160ms ease;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 19px;
  border: 1px solid var(--ink);
  border-radius: 0;
  font-weight: 780;
  text-decoration: none;
}

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

.button.primary:hover,
.download-card:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
}

.hero-media {
  min-height: 610px;
  overflow: hidden;
  background: var(--soft);
  box-shadow: var(--shadow);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section {
  padding: clamp(78px, 10vw, 140px) clamp(22px, 6vw, 88px);
  border-top: 1px solid var(--line);
}

.section-intro,
.section-heading,
.executive-profile,
.contact {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(360px, 1.22fr);
  gap: clamp(32px, 7vw, 96px);
}

.section-intro {
  align-items: end;
  margin-bottom: clamp(36px, 5vw, 64px);
}

.section-heading {
  align-items: end;
  margin-bottom: clamp(34px, 5vw, 58px);
}

.section-intro p:not(.section-label),
.section-heading > p,
.executive-profile > div p {
  max-width: 47ch;
  margin: 0;
  color: var(--muted);
}

.value-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--ink);
}

.value-list article {
  min-height: 300px;
  padding: clamp(24px, 3vw, 36px) clamp(18px, 2.4vw, 30px);
  border-right: 1px solid var(--line);
}

.value-list article:last-child {
  border-right: 0;
}

.value-list span,
.profile-grid strong,
.download-card span {
  color: var(--accent);
  font-weight: 860;
}

.value-list h3 {
  margin: 72px 0 16px;
}

.value-list p,
.reference-card p,
.profile-grid span {
  margin: 0;
  color: var(--muted);
}

.profile-section,
.executive-profile {
  background: var(--soft);
}

.profile-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.profile-grid article {
  display: grid;
  gap: 12px;
  min-height: 170px;
  padding: clamp(24px, 3vw, 34px);
  background: white;
}

.profile-grid strong {
  color: var(--ink);
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  line-height: 1.08;
}

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

.reference-card {
  display: grid;
  grid-template-rows: auto 1fr;
  background: white;
  border: 1px solid var(--line);
}

.reference-card.large {
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 1.12fr) minmax(340px, 0.88fr);
  grid-template-rows: auto;
}

.reference-card img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.reference-card div {
  display: flex;
  min-height: 260px;
  flex-direction: column;
  padding: clamp(24px, 3vw, 38px);
}

.reference-card h3 {
  margin-bottom: 14px;
}

.reference-card a {
  width: fit-content;
  margin-top: auto;
  color: var(--accent-dark);
  font-weight: 800;
}

.reference-card.text-only {
  background: var(--ink);
  color: white;
}

.reference-card.text-only p {
  color: rgba(255, 255, 255, 0.72);
}

.reference-card.text-only a {
  color: white;
}

.executive-profile {
  align-items: center;
}

.download-card {
  display: grid;
  gap: 10px;
  min-height: 260px;
  padding: clamp(28px, 5vw, 48px);
  background: var(--ink);
  color: white;
  border: 1px solid var(--ink);
  text-decoration: none;
}

.download-card strong {
  max-width: 14ch;
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 0.98;
}

.download-card small {
  align-self: end;
  color: rgba(255, 255, 255, 0.68);
  font-size: 1rem;
}

address {
  display: grid;
  gap: 14px;
  font-style: normal;
  font-size: clamp(1.32rem, 3vw, 2.2rem);
  line-height: 1.16;
}

address strong {
  font-size: clamp(1rem, 1.2vw, 1.1rem);
}

address a {
  width: fit-content;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 24px clamp(22px, 6vw, 88px);
  color: var(--muted);
  border-top: 1px solid var(--line);
}

@media (max-width: 980px) {
  .hero,
  .section-intro,
  .section-heading,
  .executive-profile,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 38px;
  }

  .hero-media {
    min-height: 420px;
  }

  h1,
  h2 {
    max-width: 100%;
  }

  .value-list,
  .profile-grid,
  .reference-grid,
  .reference-card.large {
    grid-template-columns: 1fr;
  }

  .value-list article {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .value-list article:last-child {
    border-bottom: 0;
  }

  .value-list h3 {
    margin-top: 38px;
  }
}

@media (max-width: 620px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .nav {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 18px;
  }

  .hero,
  .section {
    padding-right: 20px;
    padding-left: 20px;
  }

  .hero-media {
    min-height: 340px;
  }

  h1 {
    font-size: clamp(2.25rem, 9.2vw, 2.8rem);
  }

  h2 {
    font-size: clamp(2.05rem, 10vw, 3rem);
  }

  .subline {
    font-size: 1.08rem;
  }

  .button,
  .download-card {
    width: 100%;
  }

  .reference-card img {
    min-height: 240px;
  }

  .download-card strong {
    max-width: 100%;
  }

  .footer {
    flex-direction: column;
    padding-right: 20px;
    padding-left: 20px;
  }
}
