.page {
  --ink: #212722;
  --muted: #62685f;
  --paper: #faf9f5;
  --gold: #dcc299;
  --line: #dedfd6;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow: clip;
}
.page * {
  box-sizing: border-box;
}
.page a {
  color: inherit;
  text-decoration: none;
}
.page button {
  font: inherit;
  cursor: pointer;
}
.page h1,
.page h2,
.page h3,
.page h4,
.page p,
.page ol,
.page ul {
  margin: 0;
}
.page a,
.page button,
.page summary {
  -webkit-tap-highlight-color: transparent;
}
.page a:focus-visible,
.page button:focus-visible,
.page summary:focus-visible,
.previewPanel:focus-visible {
  outline: 2px solid #b3813d;
  outline-offset: 6px;
}
.page section[id] {
  scroll-margin-top: 88px;
}
.page svg {
  flex-shrink: 0;
}
.page em {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}
.skipLink {
  position: fixed;
  left: 18px;
  top: -70px;
  padding: 10px 18px;
  background: white;
  z-index: 100;
}
.skipLink:focus {
  top: 12px;
}
.header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(250, 249, 245, 0.97);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}
.headerInner {
  max-width: 1440px;
  margin: auto;
  padding: 0 5%;
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.wordmark {
  display: inline-flex;
  align-items: baseline;
  font-size: 29px;
  font-weight: 700;
  letter-spacing: -1.5px;
  line-height: 1;
  white-space: nowrap;
}
.wordmark > span {
  color: #a7804c;
  font-weight: 400;
}
.wordmark .wordmarkDot {
  font-size: 36px;
  font-weight: 700;
}
.desktopNav {
  display: flex;
  gap: 32px;
  font-size: 12px;
  font-weight: 500;
}
.desktopNav a {
  position: relative;
  padding: 12px 0;
}
.desktopNav a:after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--ink);
  transition: width 0.2s;
}
.desktopNav a:hover:after {
  width: 100%;
}
.headerActions {
  display: flex;
  gap: 22px;
  align-items: center;
  font-size: 12px;
}
.languageLink {
  display: flex;
  gap: 7px;
  align-items: center;
}
.headerContact {
  display: flex;
  align-items: center;
  gap: 17px;
  border: 1px solid #a7afa1;
  padding: 10px 16px;
}
.headerContact:hover {
  background: #e9ece3;
}
.menuToggle {
  display: none;
  border: 0;
  background: none;
  padding: 8px;
  color: var(--ink);
}
.mobileNav {
  padding: 0 6% 22px;
}
.mobileNav[hidden] {
  display: none;
}
.mobileNav a {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-top: 1px solid var(--line);
}
.hero {
  position: relative;
  background: #161816;
  min-height: 700px;
  height: min(780px, calc(100svh - 82px));
  color: #fffaf1;
  isolation: isolate;
}
.heroImage {
  object-fit: cover;
  object-position: center 54%;
  z-index: -3;
}
.heroShade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(12, 17, 14, 0.83),
      rgba(12, 17, 14, 0.33) 43%,
      transparent 73%
    ),
    linear-gradient(0deg, rgba(12, 17, 14, 0.62), transparent 22%);
  z-index: -2;
}
.heroInner {
  max-width: 1440px;
  margin: auto;
  padding: 98px 5% 115px;
}
.heroEyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #e6ceb0;
  font-size: 10px;
  letter-spacing: 2.1px;
  font-weight: 600;
}
.heroEyebrow > span {
  width: 6px;
  height: 6px;
  background: #dec399;
  border-radius: 50%;
}
.hero h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -5px;
  font-size: clamp(68px, 7.9vw, 116px);
  line-height: 0.99;
  margin: 30px 0 28px;
}
.hero h1 em {
  color: #dec49f;
}
.heroDescription {
  max-width: 560px;
  font-size: 15px;
  line-height: 1.85;
  color: #e0e1d9;
}
.heroActions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 34px;
}
.goldButton {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  background: var(--gold);
  color: #23281f !important;
  font-size: 12px;
  font-weight: 600;
  padding: 16px 23px;
  min-height: 51px;
  transition:
    background 0.2s,
    transform 0.2s;
}
.goldButton:hover {
  background: #efdbb9;
  transform: translateY(-2px);
}
.heroSecondary {
  display: inline-flex;
  gap: 13px;
  align-items: center;
  font-size: 12px;
  border-bottom: 1px solid #828477;
  padding: 10px 0;
}
.heroSecondary:hover {
  color: var(--gold);
}
.heroFoot {
  position: absolute;
  bottom: 29px;
  left: 5%;
  right: 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 9px;
  letter-spacing: 1.65px;
  color: #d5d8cc;
}
.heroFoot a {
  display: flex;
  gap: 15px;
  align-items: center;
  letter-spacing: 0.3px;
  font-size: 11px;
}
.disciplines {
  padding: 28px 5%;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}
.disciplines > span:first-child {
  font-size: 9px;
  letter-spacing: 1.2px;
  color: var(--muted);
}
.disciplines > div {
  display: flex;
  gap: 26px;
  align-items: center;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
}
.disciplines i {
  height: 3px;
  width: 3px;
  border-radius: 50%;
  background: #b3946b;
}
.disciplineEnd {
  font-size: 11px;
  color: var(--muted);
}
.section {
  max-width: 1440px;
  margin: auto;
  padding: 105px 5%;
}
.sectionHeading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 50px;
  margin-bottom: 56px;
}
.eyebrow {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.85px;
  color: #7d694b;
  margin-bottom: 22px !important;
}
.page h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(40px, 4.2vw, 62px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -2.2px;
}
.page h2 em {
  color: #7b8270;
}
.sectionHeading > p {
  font-size: 13px;
  line-height: 1.9;
  color: var(--muted);
  padding-bottom: 4px;
  max-width: 430px;
}
.featureGrid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.feature {
  padding: 32px 30px 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  transition: background 0.2s;
}
.feature:hover {
  background: #f0f1e9;
}
.featureTop {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
  color: #747d66;
}
.featureTop > span {
  font-size: 10px;
  color: #8e9487;
}
.feature h3 {
  font-size: 18px;
  letter-spacing: -0.5px;
  line-height: 1.3;
  margin-bottom: 14px;
}
.feature > p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.9;
  flex: 1;
  max-width: 320px;
}
.feature > a {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  align-items: center;
  margin-top: 28px;
  font-size: 11px;
  font-weight: 600;
}
.feature > a:hover {
  color: #8b693c;
}
.scoring {
  background: #20271f;
  color: #f6f5ed;
  padding: 98px 5%;
}
.scoringInner {
  max-width: 1296px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8%;
  align-items: center;
}
.scoring .eyebrow {
  color: #c6b392;
}
.scoring h2 em {
  color: #d9c49f;
}
.scoringIntro {
  max-width: 430px;
  font-size: 13px;
  line-height: 1.9;
  color: #c5cbbf;
  margin-top: 24px !important;
}
.scoringFeatures {
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 21px;
  margin: 31px 0 35px !important;
  max-width: 450px;
}
.scoringFeatures li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #c7cbbb;
  font-size: 12px;
  line-height: 1.8;
}
.scoringFeatures li > svg {
  color: #dcc299;
  margin-top: 3px;
}
.scoringFeatures strong {
  display: block;
  color: #f2f1e6;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 2px;
}
.scoringVisual {
  min-width: 0;
  padding-top: 30px;
}
.preview {
  background: #f8f9f4;
  color: var(--ink);
  border: 1px solid #b9c0ae;
  border-radius: 8px;
  box-shadow: 0 25px 60px #0b100f40;
  overflow: hidden;
  transform: rotate(-1.5deg);
}
.previewTop {
  display: flex;
  align-items: center;
  padding: 18px 22px;
  gap: 11px;
  font-size: 12px;
  border-bottom: 1px solid #dce0d4;
  font-weight: 600;
}
.previewLogo {
  background: #283328;
  color: #f1eedb;
  font-size: 11px;
  letter-spacing: -1px;
  padding: 5px 7px;
  border-radius: 4px;
}
.previewLogo span {
  color: #d4bb8e;
}
.demoBadge {
  margin-left: auto;
  font-size: 7px;
  letter-spacing: 0.7px;
  font-weight: 500;
  color: #627457;
  border: 1px solid #d5ddcd;
  border-radius: 3px;
  padding: 3px 6px;
}
.previewTabs {
  display: flex;
  gap: 22px;
  padding: 0 23px;
  border-bottom: 1px solid #dce0d4;
}
.previewTabs button {
  border: 0;
  border-bottom: 2px solid transparent;
  color: #717a69;
  background: transparent;
  padding: 16px 0 13px;
  font-size: 10px;
}
.previewTabs button[aria-selected="true"] {
  border-bottom-color: #647455;
  color: #263920;
  font-weight: 600;
}
.previewPanel {
  padding: 28px 24px 20px;
  min-height: 343px;
}
.panelHeading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.microLabel {
  font-size: 8px;
  letter-spacing: 1.4px;
  color: #728064;
}
.panelHeading h3 {
  font-size: 22px;
  letter-spacing: -0.8px;
  margin-top: 6px;
  line-height: 1.25;
}
.statusBadge {
  border: 1px solid #d5ddcc;
  border-radius: 20px;
  padding: 5px 8px;
  color: #607350;
  font-size: 8px;
  white-space: nowrap;
}
.roundInfo {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 9px;
  color: #75816e;
  margin-top: 23px;
  border-bottom: 1px solid #e0e4d9;
  padding-bottom: 12px;
}
.roundInfo span:first-child {
  font-weight: 600;
  color: #43523b;
}
.bibs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 15px;
}
.bib,
.bibSelected {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 10px;
  border: 1px solid #dce2d3;
  border-radius: 4px;
  font-size: 20px;
  line-height: 1.4;
}
.bibSelected {
  background: #e7ecd9;
  color: #3d5930;
  border-color: #9daf8d;
}
.emptyCheck {
  display: block;
  width: 13px;
  height: 13px;
  border: 1px solid #c7d0bd;
  border-radius: 3px;
}
.previewBottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: 23px;
  font-size: 8px;
  line-height: 1.7;
  color: #7a8371;
}
.previewNote {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #4d643d;
}
.previewCaption {
  border-top: 1px solid #e1e4da;
  padding: 10px;
  text-align: center;
  font-size: 8px;
  color: #7c8474;
  background: #f0f2e9;
}
.scoringVisualNote {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 34px;
  justify-content: center;
  font-size: 11px;
  color: #aeb8a4;
  line-height: 1.8;
}
.noteLine {
  width: 26px;
  height: 1px;
  background: #a3987b;
}
.scoringVisualNote strong {
  color: #d2d8c7;
  font-weight: 400;
}
.floorCurrent {
  padding: 18px;
  background: #e9eedf;
  border: 1px solid #d5dfc9;
  margin-top: 20px;
  border-radius: 4px;
}
.floorCurrent h4 {
  font-size: 22px;
  line-height: 1.3;
  margin: 8px 0;
}
.floorCurrent p {
  font-size: 11px;
  color: #677858;
}
.floorCurrent > div {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #d2ddc6;
  margin-top: 15px;
  padding-top: 10px;
  font-size: 9px;
  color: #617353;
}
.nextRound {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 10px;
  margin-top: 16px;
}
.nextRound > span:first-child {
  font-size: 7px;
  color: #7f8a70;
  letter-spacing: 1px;
}
.nextRound > span:last-child {
  margin-left: auto;
  color: #7f8a70;
  font-size: 9px;
}
.resultTable {
  margin-top: 20px;
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 10px;
}
.resultTable caption {
  text-align: left;
  font-size: 9px;
  color: #78866c;
  padding-bottom: 10px;
}
.resultTable th {
  font-size: 8px;
  color: #7a876f;
  font-weight: 500;
  background: #eef1e5;
}
.resultTable th,
.resultTable td {
  padding: 12px 9px;
  border-bottom: 1px solid #dce3d3;
}
.resultTable tbody tr:first-child {
  background: #edf0e2;
  color: #56753c;
}
.resultTable td:first-child {
  font-family: Georgia, serif;
  font-size: 19px;
}
.workflowGrid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 32px;
  list-style: none;
  padding: 0;
}
.stepNumber {
  border-bottom: 1px solid #cbd0c1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 36px;
  font-style: italic;
  color: #7f886f;
}
.stepNumber svg {
  color: #a7ac9e;
}
.workflowGrid li:last-child .stepNumber svg {
  visibility: hidden;
}
.workflowGrid h3 {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.3px;
  margin: 24px 0 13px;
}
.workflowGrid p {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.9;
  max-width: 255px;
}
.community {
  background: #e9ece2;
  text-align: center;
  padding: 80px 5%;
}
.communityInner {
  max-width: 1296px;
  margin: auto;
}
.community h2 {
  font-size: 53px;
}
.audiences {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 50px;
  text-align: left;
}
.audiences article {
  padding: 0 36px;
  border-left: 1px solid #c8cfbc;
}
.audiences article:first-child {
  border: 0;
  padding-left: 0;
}
.audiences article:last-child {
  padding-right: 0;
}
.audiences h3 {
  font-size: 18px;
  letter-spacing: -0.4px;
  margin-bottom: 14px;
}
.audiences p {
  font-size: 12px;
  line-height: 1.9;
  color: #68715f;
  max-width: 330px;
}
.audiences a {
  display: inline-flex;
  gap: 18px;
  align-items: center;
  font-size: 11px;
  font-weight: 600;
  margin-top: 24px;
}
.audiences a:hover {
  color: #917344;
}
.faq {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 10%;
  padding-top: 95px;
  padding-bottom: 95px;
}
.faq > div > p:last-child {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.9;
  margin-top: 25px;
}
.faqList {
  border-top: 1px solid var(--line);
}
.faq details {
  border-bottom: 1px solid var(--line);
}
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 23px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-size: 13px;
  font-weight: 500;
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary svg {
  color: #7d856f;
  transition: transform 0.2s;
}
.faq details[open] summary svg {
  transform: rotate(180deg);
}
.faq details > p {
  font-size: 12px;
  line-height: 1.9;
  color: var(--muted);
  padding: 0 30px 24px 0;
}
.contact {
  position: relative;
  isolation: isolate;
  background: #232b23;
  color: #f7f4e9;
  padding: 85px 5% 55px;
  overflow: hidden;
}
.contactInner {
  max-width: 1296px;
  margin: auto;
  position: relative;
  z-index: 1;
}
.contact .eyebrow {
  color: #c9b697;
}
.contact h2 {
  font-size: clamp(44px, 5.6vw, 80px);
}
.contact h2 em {
  color: #dac6a4;
}
.contactInner > p:not(.eyebrow) {
  font-size: 13px;
  color: #bcc5b5;
  line-height: 1.9;
  margin-top: 26px;
}
.contactActions {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 30px;
}
.contactEmail {
  font-size: 12px;
  color: #d7dbce !important;
  border-bottom: 1px solid #66715d;
  padding-bottom: 3px;
}
.contactOrigin {
  display: flex;
  gap: 10px;
  align-items: center;
  border-top: 1px solid #485040;
  margin-top: 62px;
  padding-top: 25px;
  font-size: 10px;
  color: #b1baa5;
}
.contactWatermark {
  position: absolute;
  right: -40px;
  bottom: 15px;
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-size: 430px;
  line-height: 0.9;
  letter-spacing: -35px;
  color: #85927814;
  z-index: 0;
  pointer-events: none;
}
.footer {
  max-width: 1440px;
  margin: auto;
  padding: 45px 5% 24px;
}
.footerTop {
  display: flex;
  align-items: center;
  gap: 28px;
}
.footerTop .wordmark {
  font-size: 26px;
}
.footerTop > p {
  font-family: Georgia, serif;
  font-size: 14px;
  font-style: italic;
  color: #747b69;
}
.footerTop nav {
  margin-left: auto;
  display: flex;
  gap: 25px;
  font-size: 10px;
}
.footerTop nav a {
  display: flex;
  align-items: center;
  gap: 7px;
}
.footerBottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 9px;
  color: #7d8475;
  gap: 20px;
  border-top: 1px solid var(--line);
  padding-top: 22px;
  margin-top: 35px;
}
@media (min-width: 1600px) {
  .heroImage {
    object-position: center 57%;
  }
  .heroInner {
    padding-top: 115px;
  }
}
@media (max-width: 1100px) {
  .headerInner {
    gap: 20px;
  }
  .desktopNav {
    gap: 22px;
  }
  .headerActions {
    gap: 15px;
  }
  .hero {
    min-height: 650px;
  }
  .heroInner {
    padding-top: 105px;
  }
  .hero h1 {
    font-size: 86px;
  }
  .heroDescription {
    font-size: 13px;
    max-width: 440px;
  }
  .heroActions {
    gap: 20px;
  }
  .heroSecondary {
    font-size: 10px;
  }
  .disciplineEnd {
    display: none;
  }
  .disciplines {
    justify-content: space-around;
  }
  .section {
    padding-top: 85px;
    padding-bottom: 85px;
  }
  .sectionHeading {
    gap: 30px;
  }
  .sectionHeading > p {
    max-width: 360px;
    font-size: 12px;
  }
  .feature {
    padding: 27px 24px;
  }
  .feature h3 {
    font-size: 16px;
  }
  .scoringInner {
    gap: 5%;
  }
  .scoring h2 {
    font-size: 45px;
  }
  .scoring {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .previewTop {
    padding: 17px;
  }
  .previewTabs {
    padding: 0 17px;
    gap: 20px;
  }
  .previewPanel {
    padding: 24px 17px 17px;
    min-height: 320px;
  }
  .panelHeading h3 {
    font-size: 20px;
  }
  .bibs {
    gap: 6px;
  }
  .bib,
  .bibSelected {
    padding: 10px 7px;
    font-size: 17px;
  }
  .bib svg {
    width: 12px;
  }
  .previewNote {
    font-size: 7px;
  }
  .statusBadge {
    font-size: 7px;
  }
  .workflowGrid {
    gap: 25px;
  }
  .workflowGrid h3 {
    font-size: 14px;
  }
}
@media (max-width: 800px) {
  .headerInner {
    height: 72px;
  }
  .desktopNav {
    gap: 17px;
    font-size: 10px;
  }
  .headerContact {
    padding: 8px 12px;
    gap: 10px;
  }
  .wordmark {
    font-size: 25px;
  }
  .hero {
    min-height: 680px;
    max-height: 760px;
  }
  .heroImage {
    object-position: 61% center;
  }
  .hero h1 {
    font-size: 80px;
  }
  .heroShade {
    background:
      linear-gradient(
        90deg,
        rgba(12, 17, 14, 0.87),
        rgba(12, 17, 14, 0.4) 63%,
        rgba(12, 17, 14, 0.04)
      ),
      linear-gradient(0deg, rgba(12, 17, 14, 0.6), transparent 35%);
  }
  .heroActions {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }
  .heroEyebrow {
    font-size: 8px;
    letter-spacing: 1.3px;
  }
  .sectionHeading {
    align-items: flex-start;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 38px;
  }
  .page h2 {
    font-size: 48px;
  }
  .featureGrid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .scoringInner {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .scoringCopy {
    max-width: 580px;
  }
  .scoringIntro {
    max-width: 530px;
  }
  .scoringFeatures {
    max-width: 600px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
  }
  .scoringVisual {
    width: 100%;
    max-width: 550px;
    margin: 0 auto;
    padding: 15px 5px 0;
  }
  .previewTop {
    padding: 18px 22px;
  }
  .previewPanel {
    padding: 28px 24px 20px;
    min-height: 343px;
  }
  .previewTabs {
    padding: 0 24px;
    gap: 28px;
  }
  .bib,
  .bibSelected {
    padding: 12px 13px;
    font-size: 23px;
  }
  .panelHeading h3 {
    font-size: 24px;
  }
  .previewNote {
    font-size: 8px;
  }
  .workflowGrid {
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
  }
  .workflowGrid p {
    max-width: 300px;
  }
  .audiences article {
    padding: 0 23px;
  }
  .audiences h3 {
    font-size: 16px;
  }
  .community {
    padding: 70px 5%;
  }
  .faq {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .faq > div > p:last-child {
    display: none;
  }
  .footerTop {
    flex-wrap: wrap;
    gap: 18px;
  }
  .footerTop nav {
    width: 100%;
    margin: 15px 0 0;
  }
  .footerBottom > span:nth-child(2) {
    display: none;
  }
}
@media (max-width: 600px) {
  .headerInner {
    height: 68px;
    padding: 0 6%;
    gap: 14px;
  }
  .wordmark {
    font-size: 25px;
  }
  .desktopNav,
  .headerContact {
    display: none;
  }
  .headerActions {
    gap: 12px;
  }
  .languageLink {
    font-size: 11px;
  }
  .menuToggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .page section[id] {
    scroll-margin-top: 82px;
  }
  .hero {
    min-height: 720px;
    height: calc(100svh - 68px);
    max-height: 850px;
  }
  .heroImage {
    object-position: 63% center;
  }
  .heroShade {
    background:
      linear-gradient(90deg, rgba(12, 17, 14, 0.65), rgba(12, 17, 14, 0.1)),
      linear-gradient(
        0deg,
        rgba(12, 17, 14, 0.97) 8%,
        rgba(12, 17, 14, 0.3) 60%,
        rgba(12, 17, 14, 0.22)
      );
  }
  .heroInner {
    padding: 245px 6% 90px;
  }
  .heroEyebrow {
    font-size: 7px;
    letter-spacing: 1.2px;
    gap: 8px;
  }
  .heroEyebrow > span {
    width: 4px;
    height: 4px;
  }
  .hero h1 {
    font-size: clamp(61px, 14vw, 81px);
    letter-spacing: -3.7px;
    margin: 24px 0 23px;
  }
  .heroDescription {
    font-size: 12px;
    line-height: 1.9;
    max-width: 340px;
  }
  .desktopBreak {
    display: none;
  }
  .heroActions {
    margin-top: 26px;
    gap: 11px;
  }
  .goldButton {
    font-size: 11px;
    min-height: 49px;
    padding: 14px 20px;
    gap: 25px;
  }
  .heroSecondary {
    font-size: 10px;
    padding: 9px 0;
  }
  .heroFoot {
    left: 6%;
    right: 6%;
    bottom: 22px;
    font-size: 6.5px;
    letter-spacing: 1px;
  }
  .heroFoot > a {
    font-size: 8px;
    gap: 7px;
  }
  .heroFoot svg {
    width: 12px;
  }
  .disciplines {
    flex-direction: column;
    gap: 12px;
    padding: 24px 6%;
  }
  .disciplines > span:first-child {
    font-size: 7px;
    letter-spacing: 1.8px;
  }
  .disciplines > div {
    font-size: clamp(18px, 5.2vw, 23px);
    gap: clamp(9px, 3vw, 18px);
  }
  .section {
    padding: 65px 6%;
  }
  .eyebrow {
    font-size: 8px;
    letter-spacing: 1.6px;
    margin-bottom: 20px !important;
  }
  .page h2 {
    font-size: 42px;
    letter-spacing: -1.8px;
  }
  .sectionHeading {
    gap: 23px;
    margin-bottom: 32px;
  }
  .sectionHeading > p {
    font-size: 12px;
    line-height: 1.9;
  }
  .featureGrid {
    grid-template-columns: 1fr;
    border-left: 0;
  }
  .feature {
    border-right: 0;
    padding: 27px 0;
  }
  .featureTop {
    margin-bottom: 19px;
  }
  .featureTop svg {
    width: 23px;
    height: 23px;
  }
  .feature h3 {
    font-size: 19px;
    margin-bottom: 10px;
  }
  .feature > p {
    max-width: none;
    font-size: 12px;
  }
  .feature > a {
    margin-top: 20px;
    font-size: 10px;
  }
  .scoring {
    padding: 65px 6%;
  }
  .scoring h2 {
    font-size: 42px;
  }
  .scoringIntro {
    font-size: 12px;
    line-height: 1.9;
  }
  .scoringFeatures {
    display: flex;
    gap: 20px;
    margin-top: 27px !important;
  }
  .scoringFeatures li {
    font-size: 11px;
  }
  .scoringFeatures strong {
    font-size: 12px;
  }
  .scoringVisual {
    padding-top: 6px;
  }
  .preview {
    transform: rotate(-1deg);
  }
  .previewTop {
    padding: 15px;
    gap: 8px;
    font-size: 11px;
  }
  .demoBadge {
    font-size: 6px;
    letter-spacing: 0.4px;
    padding: 3px 5px;
  }
  .previewTabs {
    padding: 0 15px;
    gap: 25px;
  }
  .previewTabs button {
    font-size: 9px;
    padding: 14px 0 11px;
  }
  .previewPanel {
    padding: 22px 15px 17px;
    min-height: 324px;
  }
  .microLabel {
    font-size: 7px;
    letter-spacing: 1.1px;
  }
  .panelHeading h3 {
    font-size: 21px;
  }
  .statusBadge {
    font-size: 7px;
    padding: 4px 7px;
  }
  .roundInfo {
    font-size: 8px;
    margin-top: 20px;
  }
  .bibs {
    gap: 6px;
    margin-top: 13px;
  }
  .bib,
  .bibSelected {
    padding: 12px 6px;
    font-size: clamp(16px, 5vw, 20px);
  }
  .bib svg {
    width: 12px;
  }
  .emptyCheck {
    height: 11px;
    width: 11px;
  }
  .previewBottom {
    font-size: 7px;
    margin-top: 19px;
    gap: 5px;
  }
  .previewNote {
    font-size: 6px;
    gap: 4px;
  }
  .previewNote svg {
    width: 11px;
  }
  .previewCaption {
    font-size: 7px;
  }
  .scoringVisualNote {
    font-size: 10px;
    margin-top: 24px;
  }
  .floorCurrent {
    padding: 15px;
  }
  .floorCurrent h4 {
    font-size: 21px;
  }
  .nextRound {
    font-size: 9px;
    gap: 8px;
  }
  .nextRound > span:last-child {
    font-size: 8px;
  }
  .resultTable {
    font-size: 9px;
  }
  .resultTable th,
  .resultTable td {
    padding: 12px 6px;
  }
  .workflowGrid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .stepNumber {
    font-size: 32px;
    padding-bottom: 13px;
  }
  .workflowGrid h3 {
    font-size: 17px;
    margin-top: 18px;
    margin-bottom: 10px;
  }
  .workflowGrid p {
    max-width: none;
    font-size: 12px;
  }
  .community {
    padding: 60px 6%;
    text-align: left;
  }
  .community h2 {
    font-size: 43px;
  }
  .audiences {
    grid-template-columns: 1fr;
    gap: 27px;
    margin-top: 34px;
  }
  .audiences article,
  .audiences article:first-child,
  .audiences article:last-child {
    padding: 0 0 26px;
    border: 0;
    border-bottom: 1px solid #c8cfbc;
  }
  .audiences article:last-child {
    border-bottom: 0;
    padding-bottom: 0;
  }
  .audiences h3 {
    font-size: 18px;
    margin-bottom: 10px;
  }
  .audiences p {
    max-width: none;
  }
  .audiences a {
    font-size: 10px;
    margin-top: 18px;
  }
  .faq {
    gap: 29px;
  }
  .faq summary {
    font-size: 12px;
    padding: 20px 0;
    gap: 20px;
  }
  .faq details > p {
    font-size: 11px;
    padding-right: 10px;
  }
  .contact {
    padding: 60px 6% 35px;
  }
  .contact .eyebrow {
    font-size: 7px;
    letter-spacing: 1.2px;
  }
  .contact h2 {
    font-size: 42px;
    letter-spacing: -1.9px;
  }
  .contactInner > p:not(.eyebrow) {
    font-size: 11px;
    max-width: 330px;
  }
  .contactActions {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
    margin-top: 27px;
  }
  .contactEmail {
    font-size: 11px;
  }
  .contactOrigin {
    font-size: 8px;
    margin-top: 38px;
    padding-top: 23px;
    gap: 8px;
  }
  .contactWatermark {
    font-size: 260px;
    letter-spacing: -20px;
    right: -30px;
    bottom: 72px;
  }
  .footer {
    padding: 34px 6% 22px;
  }
  .footerTop {
    gap: 18px;
  }
  .footerTop .wordmark {
    font-size: 24px;
  }
  .footerTop > p {
    font-size: 12px;
  }
  .footerTop nav {
    gap: 18px;
    font-size: 9px;
    flex-wrap: wrap;
    margin-top: 10px;
  }
  .footerBottom {
    font-size: 8px;
    margin-top: 25px;
    gap: 15px;
  }
  .page a:focus-visible,
  .page button:focus-visible,
  .page summary:focus-visible {
    outline-offset: 3px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .page * {
    transition: none !important;
    scroll-behavior: auto !important;
  }
  .goldButton:hover {
    transform: none;
  }
}

/* The brand site is a static document, separate from the application shell. */
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
}
.heroImage {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
[hidden] {
  display: none !important;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
