/*
Theme Name: FranLaunch USA Refresh
Description: Standalone theme for the approved non-Divi FranLaunch USA site.
Version: 1.0.4
Text Domain: franlaunch-usa-refresh
*/
:root {
  --ink: #171717;
  --muted: #646464;
  --line: #ded9d2;
  --paper: #fbfaf7;
  --white: #ffffff;
  --red: #b51f24;
  --red-dark: #86171b;
  --flusa-blue: #3d4084;
  --charcoal: #252525;
  --brass: #b08d57;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  align-items: center;
  background: rgba(251, 250, 247, 0.94);
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  min-height: 78px;
  padding: 16px clamp(20px, 5vw, 72px);
  position: sticky;
  top: 0;
  z-index: 20;
}

.brand {
  align-items: center;
  display: flex;
  gap: 12px;
}

.brand-symbol {
  align-items: center;
  background: var(--white);
  border: 1px solid var(--red);
  border-left-width: 5px;
  color: var(--flusa-blue);
  display: grid;
  height: 44px;
  place-items: center;
  width: 46px;
}

.star-motif {
  display: block;
  height: 18px;
  position: relative;
  width: 18px;
}

.star-motif::before,
.star-motif::after {
  background: currentColor;
  content: "";
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}

.star-motif::before {
  height: 100%;
  width: 2px;
}

.star-motif::after {
  height: 2px;
  width: 100%;
}

.full-star {
  background: currentColor;
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 56%, 79% 91%, 50% 70%, 21% 91%, 32% 56%, 2% 35%, 39% 35%);
  display: block;
  height: 32px;
  width: 32px;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1;
}

.brand strong {
  font-size: 20px;
}

.brand small {
  color: var(--flusa-blue);
  font-size: 12px;
  font-weight: 800;
  margin-top: 4px;
  text-transform: uppercase;
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-end;
}

nav a {
  color: #333;
  font-size: 14px;
  font-weight: 700;
  padding-bottom: 6px;
  position: relative;
}

nav a.active::after {
  background: var(--red);
  bottom: 0;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  width: 100%;
}

.hero {
  background:
    linear-gradient(100deg, rgba(23, 23, 23, 0.96) 0%, rgba(23, 23, 23, 0.89) 44%, rgba(181, 31, 36, 0.28) 100%),
    url("./assets/hero-consulting-entry.png");
  background-position: center;
  background-size: cover;
  color: var(--white);
  display: grid;
  gap: 42px;
  grid-template-columns: minmax(0, 1.3fr) minmax(320px, 0.7fr);
  min-height: 680px;
  padding: clamp(64px, 9vw, 120px) clamp(20px, 5vw, 72px);
  position: relative;
}

.hero::after {
  border: 1px solid rgba(176, 141, 87, 0.45);
  content: "";
  height: 86px;
  opacity: 0.82;
  position: absolute;
  right: clamp(24px, 5vw, 72px);
  top: 38px;
  transform: rotate(45deg);
  width: 86px;
}

.hero::before {
  background: rgba(176, 141, 87, 0.72);
  content: "";
  height: 1px;
  opacity: 0.75;
  position: absolute;
  right: clamp(24px, 5vw, 72px);
  top: 81px;
  width: 86px;
}

.hero-copy {
  align-self: center;
  max-width: 900px;
}

.eyebrow {
  color: var(--red);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  margin: 0 0 16px;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffb7b9;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-size: clamp(44px, 7vw, 86px);
  line-height: 0.98;
  margin-bottom: 24px;
  max-width: 980px;
}

h2 {
  font-size: clamp(32px, 4vw, 58px);
  line-height: 1.02;
  margin-bottom: 18px;
}

h3 {
  font-size: 22px;
  line-height: 1.2;
  margin-bottom: 12px;
}

.hero-lede {
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.55;
  max-width: 780px;
}

.hero-actions,
.button {
  align-items: center;
  display: flex;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  border: 2px solid transparent;
  font-size: 14px;
  font-weight: 800;
  justify-content: center;
  min-height: 48px;
  padding: 14px 18px;
}

.button.primary {
  background: var(--red);
  color: var(--white);
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.42);
  color: var(--white);
}

.hero-panel {
  align-self: end;
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  padding: 28px;
}

.hero-panel > p {
  font-size: 28px;
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: 26px;
}

dl,
dd {
  margin: 0;
}

.hero-panel dl {
  display: grid;
  gap: 16px;
}

.hero-panel div {
  border-top: 1px solid var(--line);
  padding-top: 16px;
}

dt {
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 5px;
  text-transform: uppercase;
}

dd {
  color: #333;
  font-size: 16px;
  font-weight: 700;
}

.problem,
.legacy {
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 980px);
  padding: 58px clamp(20px, 5vw, 72px);
}

.problem {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.problem p,
.legacy p {
  color: #3d3d3d;
  font-size: 19px;
  line-height: 1.65;
  max-width: 860px;
}

.section {
  padding: 86px clamp(20px, 5vw, 72px);
}

.section-heading {
  max-width: 860px;
}

.stage-grid,
.region-grid,
.proof-grid {
  display: grid;
  gap: 18px;
  margin-top: 34px;
}

.stage-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.stage-card,
.region-grid article,
figure,
.score-card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 26px;
}

.menu-toggle {
  align-items: center;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ink);
  cursor: pointer;
  display: none;
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  gap: 10px;
  justify-content: center;
  letter-spacing: 0.04em;
  padding: 10px 12px;
  text-transform: uppercase;
}

.menu-toggle:hover,
.menu-toggle:focus-visible {
  border-color: var(--red);
  color: var(--red);
}

.menu-toggle-icon {
  display: grid;
  gap: 4px;
  width: 18px;
}

.menu-toggle-icon span {
  background: currentColor;
  display: block;
  height: 2px;
  transition: transform .2s ease, opacity .2s ease;
  width: 18px;
}

.site-header.menu-open .menu-toggle-icon span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.site-header.menu-open .menu-toggle-icon span:nth-child(2) {
  opacity: 0;
}

.site-header.menu-open .menu-toggle-icon span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.stage-card,
.region-grid article,
.score-card,
.number-list article,
.matrix article,
.quiet-card,
.partner-card,
.criterion-row,
.strategy-strip > div,
figure,
.score-list p {
  transition: border-color .22s ease, box-shadow .22s ease, transform .22s ease;
}

.region-grid article:hover,
.region-grid article:focus-within,
.stage-card:hover,
.stage-card:focus-within,
.score-card:hover,
.score-card:focus-within,
.number-list article:hover,
.number-list article:focus-within,
.matrix article:hover,
.matrix article:focus-within,
.quiet-card:hover,
.quiet-card:focus-within,
.partner-card:hover,
.partner-card:focus-within,
.criterion-row:hover,
.criterion-row:focus-within,
.strategy-strip > div:hover,
.strategy-strip > div:focus-within,
figure:hover,
figure:focus-within,
.score-list p:hover,
.score-list p:focus-within {
  border-color: var(--red);
  box-shadow: 0 16px 30px rgba(20, 20, 20, .14);
  transform: translateY(-8px);
  position: relative;
  z-index: 1;
}

.strategy-strip > div:hover,
.strategy-strip > div:focus-within,
.score-list p:hover,
.score-list p:focus-within {
  outline: 1px solid var(--red);
}

.stage-card span {
  color: var(--red);
  display: block;
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 34px;
}

.stage-card p,
.region-grid p,
figure blockquote {
  color: #4d4d4d;
  line-height: 1.55;
}

.price {
  color: var(--ink) !important;
  font-weight: 800;
  margin-bottom: 14px;
}

.assessment {
  align-items: center;
  background: #efebe5;
  display: grid;
  gap: 48px;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
}

.assessment-copy p {
  color: #3d3d3d;
  font-size: 19px;
  line-height: 1.6;
  max-width: 720px;
}

.assessment .button {
  display: inline-flex;
  margin-top: 12px;
}

.score-card {
  box-shadow: 12px 12px 0 var(--red);
}

.score-top {
  align-items: end;
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 12px;
  justify-content: flex-start;
  margin-bottom: 18px;
  padding-bottom: 18px;
}

.score-top span {
  color: var(--muted);
  font-weight: 800;
}

.score-top strong {
  color: var(--red);
  font-size: 52px;
  line-height: 0.9;
}

.score-list {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.score-list p {
  background: var(--paper);
  font-size: 14px;
  font-weight: 800;
  margin: 0;
  padding: 12px;
}

.regions {
  background: var(--white);
}

.region-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.proof-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

figure {
  margin: 0;
}

blockquote {
  font-size: 18px;
  margin: 0 0 28px;
}

figcaption strong,
figcaption span {
  display: block;
}

figcaption strong {
  color: var(--red);
}

figcaption span {
  color: var(--muted);
  line-height: 1.45;
  margin-top: 5px;
}

.legacy {
  background: var(--white);
  border-top: 1px solid var(--line);
}

.site-footer {
  background: #121f2d;
  color: var(--white);
  padding: 22px clamp(20px, 5vw, 72px);
}

.footer-shell {
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  margin: 0 auto;
  max-width: 1180px;
}

.footer-top {
  display: grid;
  gap: 58px;
  grid-template-columns: minmax(300px, 1.05fr) minmax(300px, 0.9fr) minmax(240px, 0.65fr);
  padding: 42px 0 30px;
}

.footer-logo {
  align-items: center;
  display: inline-flex;
  gap: 12px;
}

.footer-brand {
  align-items: start;
  column-gap: 28px;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(150px, 0.52fr);
}

.footer-logo-mark {
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-left: 5px solid var(--red);
  color: var(--white);
  display: grid;
  height: 44px;
  place-items: center;
  width: 46px;
}

.footer-logo-mark .full-star {
  height: 30px;
  width: 30px;
}

.footer-logo strong,
.footer-logo small {
  display: block;
  line-height: 1;
}

.footer-logo strong {
  color: var(--white);
  font-size: 24px;
}

.footer-logo small {
  color: #ffb7b9;
  font-size: 12px;
  font-weight: 900;
  margin-top: 5px;
  text-transform: uppercase;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  line-height: 1.55;
  margin-bottom: 0;
  margin-top: 18px;
  max-width: 420px;
}

.footer-ifa {
  display: block;
  margin-top: 4px;
  max-width: 190px;
  opacity: 0.9;
  width: 100%;
}

.footer-ifa-wrap {
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  padding-left: 28px;
}

.footer-nav {
  display: grid;
  align-content: start;
  gap: 10px;
  justify-content: start;
}

.footer-nav h3 {
  color: var(--white);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  margin: 0 0 6px;
  text-transform: uppercase;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.84);
  font-size: 14px;
  font-weight: 800;
}

.footer-nav a:hover {
  color: var(--white);
}

.footer-link-grid {
  column-gap: 28px;
  display: grid;
  grid-template-columns: repeat(2, minmax(110px, 1fr));
  row-gap: 10px;
}

.footer-disclosure {
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  padding: 24px 0 0;
}

.footer-disclosure p {
  color: rgba(255, 255, 255, 0.84);
  font-size: 12px;
  line-height: 1.5;
  margin: 0;
}

.footer-disclosure strong {
  color: var(--white);
}

.footer-copyright {
  margin-top: 24px !important;
}

.page-hero {
  background:
    linear-gradient(100deg, rgba(23, 23, 23, 0.95), rgba(23, 23, 23, 0.82)),
    url("./assets/hero-consulting-entry.png");
  background-position: center;
  background-size: cover;
  color: var(--white);
  padding: clamp(76px, 10vw, 128px) clamp(20px, 5vw, 72px);
  position: relative;
}

.page-hero .eyebrow {
  color: #ffb7b9;
}

.page-hero h1 {
  max-width: 1000px;
}

.page-hero p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.55;
  max-width: 760px;
}

.content-band {
  padding: 76px clamp(20px, 5vw, 72px);
}

.two-column {
  display: grid;
  gap: 36px;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
}

.copy p,
.copy li {
  color: #444;
  font-size: 18px;
  line-height: 1.65;
}

.copy h2 {
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.16;
  margin-bottom: 12px;
  margin-top: 28px;
}

.copy h2:first-child {
  margin-top: 0;
}

.copy-divider {
  background: var(--line);
  border: 0;
  height: 1px;
  margin: 26px 0;
  width: 100%;
}

.copy ul,
.copy ol {
  padding-left: 22px;
}

.quiet-card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 26px;
}

.number-list {
  counter-reset: item;
  display: grid;
  gap: 16px;
  margin: 34px 0 0;
}

.number-list article {
  background: var(--white);
  border: 1px solid var(--line);
  counter-increment: item;
  padding: 24px;
}

.number-list article::before {
  color: var(--red);
  content: counter(item, decimal-leading-zero);
  display: block;
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 18px;
}

.matrix {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 30px;
}

.matrix article {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 24px;
}

.strategy-strip {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.strategy-strip div {
  background: var(--paper);
  padding: 26px clamp(20px, 4vw, 42px);
}

.strategy-strip span {
  color: var(--brass);
  display: block;
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.strategy-strip strong {
  display: block;
  font-size: 18px;
  line-height: 1.25;
}

.score-tool {
  display: grid;
  gap: 30px;
  grid-template-columns: minmax(320px, 0.55fr) minmax(0, 1fr);
  padding: 76px clamp(20px, 5vw, 72px);
}

.score-tool-panel,
.check-row {
  background: var(--white);
  border: 1px solid var(--line);
}

.score-tool-panel {
  align-self: start;
  padding: 30px;
}

.score-tool-panel p {
  color: #444;
  line-height: 1.6;
}

.live-score {
  align-items: end;
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  display: flex;
  gap: 8px;
  margin: 24px 0 16px;
  padding: 24px 0 14px;
}

.live-score span {
  color: var(--red);
  font-size: 78px;
  font-weight: 900;
  line-height: 0.8;
}

.live-score strong {
  color: var(--muted);
  font-size: 24px;
}

.score-recommendation {
  color: var(--ink) !important;
  font-size: 20px;
  font-weight: 900;
}

.question-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.check-row {
  align-items: center;
  cursor: pointer;
  display: grid;
  gap: 14px;
  grid-template-columns: auto 1fr auto;
  min-height: 70px;
  padding: 16px;
}

.check-row input {
  accent-color: var(--red);
  height: 20px;
  width: 20px;
}

.check-row span {
  color: #333;
  font-weight: 800;
  line-height: 1.35;
}

.check-row small {
  color: var(--brass);
  font-weight: 900;
}

.readiness-assessment {
  background: var(--white);
  border-top: 1px solid var(--line);
  padding: 82px clamp(20px, 5vw, 72px);
}

.readiness-assessment .section-heading p:not(.eyebrow) {
  color: #444;
  font-size: 19px;
  line-height: 1.62;
  max-width: 860px;
}

.readiness-shell {
  align-items: start;
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.38fr);
  margin-top: 34px;
}

.readiness-form {
  display: grid;
  gap: 14px;
}

.criterion-row {
  background: var(--paper);
  border: 1px solid var(--line);
  display: grid;
  gap: 22px;
  grid-template-columns: minmax(260px, 0.62fr) minmax(360px, 1fr);
  padding: 22px;
}

.criterion-row span {
  color: var(--red);
  display: block;
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 12px;
}

.criterion-row h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.criterion-row p {
  color: #4a4a4a;
  line-height: 1.55;
  margin-bottom: 0;
}

.rating-group {
  align-items: stretch;
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.rating-group button {
  background: var(--white);
  border: 1px solid var(--line);
  color: #343434;
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 850;
  min-height: 58px;
  padding: 10px 8px;
}

.rating-group button:hover,
.rating-group button.selected {
  border-color: var(--red);
}

.rating-group button.selected {
  background: var(--red);
  color: var(--white);
}

.diagnostic-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 5px solid var(--red);
  position: sticky;
  top: 100px;
  padding: 26px;
}

.diagnostic-panel h3 {
  font-size: 26px;
}

.progress-line {
  background: #ece7df;
  height: 8px;
  margin: 22px 0 10px;
  overflow: hidden;
}

.progress-line span {
  background: var(--flusa-blue);
  display: block;
  height: 100%;
  transition: width 180ms ease;
}

.progress-copy {
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.unlock-form {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.unlock-form p,
.score-result p {
  color: #444;
  line-height: 1.58;
}

.unlock-form label {
  color: var(--ink);
  display: grid;
  font-size: 14px;
  font-weight: 800;
  gap: 8px;
}

.unlock-form input {
  background: #f7f7f5;
  border: 1px solid var(--line);
  color: var(--ink);
  font: inherit;
  padding: 12px 13px;
  width: 100%;
}

.field-note {
  color: var(--red) !important;
  font-size: 13px;
  font-weight: 800;
  margin: 0;
}

.button:disabled {
  background: #c9c3bb;
  color: rgba(255, 255, 255, 0.74);
  cursor: not-allowed;
}

.score-result {
  margin-top: 20px;
}

.result-score {
  align-items: end;
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  display: flex;
  gap: 7px;
  margin: 18px 0;
  padding: 18px 0 12px;
}

.result-score strong {
  color: var(--red);
  font-size: 72px;
  font-weight: 900;
  line-height: 0.8;
}

.result-score span {
  color: var(--muted);
  font-size: 24px;
  font-weight: 900;
}

.result-divider {
  background: var(--line);
  height: 1px;
  margin: 20px 0;
}

.score-result h4 {
  font-size: 14px;
  font-weight: 900;
  margin: 0 0 10px;
  text-transform: uppercase;
}

.score-result ul {
  color: #444;
  line-height: 1.55;
  margin-bottom: 22px;
  padding-left: 20px;
}

.report-status {
  border-top: 1px solid var(--line);
  font-size: 14px;
  font-weight: 800;
  margin: 16px 0 0;
  padding-top: 14px;
}

.report-status.sent {
  color: var(--flusa-blue);
}

.report-status.error {
  color: var(--red);
}

.text-link {
  color: var(--red);
  display: inline-block;
  font-size: 14px;
  font-weight: 900;
  margin-top: 14px;
}

.text-link::after {
  content: ">";
  margin-left: 8px;
}

.quiet-card ul,
.number-list ul {
  color: #444;
  line-height: 1.6;
  padding-left: 20px;
}

.quiet-card li {
  padding: 14px 0;
}

.quiet-card li + li {
  border-top: 1px solid var(--line);
}

.quiet-card li:first-child {
  padding-top: 4px;
}

.quiet-card li:last-child {
  padding-bottom: 0;
}

.quiet-card .button {
  display: inline-flex;
  margin-top: 18px;
}

.contact-card p {
  color: #444;
  line-height: 1.6;
}

.contact-form {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}

.contact-form label {
  color: var(--ink);
  display: grid;
  font-size: 14px;
  font-weight: 800;
  gap: 8px;
}

.contact-form input,
.contact-form textarea {
  background: #f7f7f5;
  border: 1px solid var(--line);
  color: var(--ink);
  font: inherit;
  padding: 13px 14px;
  width: 100%;
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-form .button {
  cursor: pointer;
  justify-self: start;
}

.core-questions-card ul {
  list-style-position: outside;
  margin-bottom: 0;
}

.image-band {
  align-items: stretch;
  background: var(--white);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.7fr);
}

.image-band.dark {
  background: var(--charcoal);
  color: var(--white);
}

.image-band img {
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  width: 100%;
}

.image-band > div {
  align-self: center;
  padding: clamp(36px, 6vw, 76px);
}

.image-band h2 {
  font-size: clamp(30px, 4vw, 54px);
}

.image-band p:not(.eyebrow) {
  color: #444;
  font-size: 19px;
  line-height: 1.65;
}

.image-band.dark .eyebrow {
  color: #ffb7b9;
}

.image-band.dark p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.78);
}

.partner-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 34px;
}

.partner-card {
  background: var(--white);
  border: 1px solid var(--line);
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
}

.partner-card img {
  align-self: end;
  aspect-ratio: 4 / 5;
  background: #e6e6e3;
  display: block;
  filter: grayscale(100%);
  object-fit: cover;
  object-position: center center;
  transition: filter 180ms ease;
  width: 100%;
}

.partner-card:hover img,
.partner-card:focus-within img {
  filter: grayscale(0%);
}

.partner-card div {
  padding: 24px;
}

.partner-card h3 {
  margin-bottom: 10px;
}

.partner-card p:not(.eyebrow) {
  color: #444;
  line-height: 1.58;
}

.capability-row {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 34px;
}

.capability-row div {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 22px;
}

.capability-row span {
  color: var(--brass);
  display: block;
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 12px;
  text-transform: uppercase;
}

@media (max-width: 1050px) {
  .hero,
  .assessment,
  .problem,
  .legacy,
  .footer-top,
  .two-column,
  .image-band {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-brand {
    grid-column: 1 / -1;
    grid-template-columns: minmax(220px, 1fr) minmax(150px, 0.45fr);
  }

  .stage-grid,
  .region-grid,
  .proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .matrix,
  .strategy-strip,
  .score-tool,
  .readiness-shell,
  .criterion-row,
  .capability-row,
  .partner-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .criterion-row,
  .readiness-shell {
    grid-template-columns: 1fr;
  }

  .diagnostic-panel {
    position: static;
  }

  .footer-link-grid {
    grid-template-columns: repeat(2, minmax(110px, 1fr));
  }
}

@media (max-width: 720px) {
  .site-header {
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .hero {
    min-height: auto;
  }

  .hero::before,
  .hero::after {
    display: none;
  }

  .hero-actions,
  .button {
    align-items: stretch;
    width: 100%;
  }

  .stage-grid,
  .region-grid,
  .proof-grid,
  .score-list {
    grid-template-columns: 1fr;
  }

  .hero-panel,
  .score-card {
    box-shadow: none;
  }

  .matrix,
  .strategy-strip,
  .score-tool,
  .readiness-shell,
  .criterion-row,
  .question-grid,
  .rating-group,
  .capability-row,
  .partner-grid {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .footer-ifa-wrap {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 20px;
    padding-left: 0;
    padding-top: 20px;
  }

  .footer-link-grid {
    grid-template-columns: 1fr;
  }
}

/* Collapse the eight-item primary navigation at the tablet breakpoint. */
@media (max-width: 960px) {
  .site-header {
    flex-wrap: wrap;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-header > .primary-nav {
    display: none;
    flex-direction: column;
    gap: 0;
    justify-content: flex-start;
    padding-top: 10px;
    width: 100%;
  }

  .site-header.menu-open > .primary-nav {
    display: flex;
  }

  .site-header > .primary-nav a {
    border-top: 1px solid var(--line);
    padding: 13px 0 12px;
    width: 100%;
  }

  .site-header > .primary-nav a.active::after {
    bottom: 0;
    width: 54px;
  }
}



[hidden] { display: none !important; }
.form-honey { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.logged-in .site-header { top: 32px; }
@media (max-width: 782px) { .logged-in .site-header { top: 46px; } }
.rating-group button.selected { background: var(--charcoal); border-color: var(--charcoal); color: var(--white); }
.contact-form .report-status { margin-top: 12px; }
