:root {
  --navy: #1a3c5e;
  --navy-900: #0d2236;
  --green: #2e7d52;
  --green-900: #16462f;
  --gold: #c9a84c;
  --cream: #f5f5f5;
  --white: #ffffff;
  --ink: #172433;
  --muted: #607080;
  --line: #d9e1e7;
  --shadow: 0 16px 40px rgba(13, 34, 54, 0.12);
  --heading: "Montserrat", "Aptos Display", "Segoe UI", sans-serif;
  --body: "Open Sans", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--body);
  line-height: 1.6;
}

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

a {
  color: inherit;
  text-decoration-color: rgba(46, 125, 82, 0.45);
  text-underline-offset: 0.22em;
}

a:hover {
  color: var(--green);
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--navy-900);
  font-family: var(--heading);
  line-height: 1.08;
}

h1 {
  max-width: 840px;
  color: var(--white);
  font-size: 58px;
  letter-spacing: 0;
}

h2 {
  font-size: 38px;
  letter-spacing: 0;
}

h3 {
  font-size: 21px;
  letter-spacing: 0;
}

p {
  margin: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 78px;
  padding: 14px 5vw;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(217, 225, 231, 0.85);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--navy-900);
  text-decoration: none;
}

.brand-mark {
  height: 70px;
  width: auto;
  display: block;
  margin-right: 10px;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-family: var(--heading);
  font-size: 17px;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav > a,
.nav-item > a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 12px;
  color: var(--navy-900);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 6px;
}

.site-nav > a:hover,
.nav-item:hover > a,
.nav-item:focus-within > a {
  background: rgba(46, 125, 82, 0.08);
  color: var(--green-900);
}

.nav-item {
  position: relative;
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  display: none;
  min-width: 230px;
  padding: 8px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: 8px;
}

.dropdown a {
  display: block;
  padding: 10px 12px;
  color: var(--ink);
  font-size: 14px;
  text-decoration: none;
  border-radius: 6px;
}

.dropdown a:hover {
  background: rgba(26, 60, 94, 0.08);
}

.nav-item:hover .dropdown,
.nav-item:focus-within .dropdown {
  display: block;
}

.nav-toggle,
.nav-toggle-label {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  min-height: 760px;
  padding: 150px 5vw 36px;
  overflow: hidden;
  background-image: url("./assets/phoenix-hero-placeholder.jpg");
  background-position: center;
  background-size: cover;
  color: var(--white);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 20, 32, 0.9) 0%, rgba(9, 27, 43, 0.76) 34%, rgba(9, 27, 43, 0.28) 68%, rgba(9, 27, 43, 0.08) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  align-self: center;
  max-width: 940px;
}

.hero-lede {
  max-width: 760px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 23px;
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

.button,
button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  color: var(--navy-900);
  font-weight: 800;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 6px;
  cursor: pointer;
}

.button.primary,
button {
  background: var(--gold);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}

.button:hover,
button:hover {
  transform: translateY(-1px);
}

.dark-button {
  background: var(--white);
  color: var(--navy-900);
  border-color: rgba(255, 255, 255, 0.2);
}

.award-badge {
  position: absolute;
  top: 110px;
  right: 5vw;
  z-index: 2;

  width: 180px;
  height: auto;
  display: block;

  background: transparent;   /* no white background */
  border: none;              /* no border */
  border-radius: 0;          /* no circle */
  box-shadow: none;          /* optional: clean look */

  transition: transform 0.3s ease;
}

.award-badge img {
  width: 100%;
  height: auto;
  display: block;

  border-radius: 0;          /* prevents circular crop */
  object-fit: contain;
}

/* Optional subtle hover (premium feel) */
.award-badge:hover {
  transform: translateY(-3px);
}

.hero-stats {
  position: relative;
  z-index: 1;
  align-self: end;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin: 88px 0 0;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  overflow: hidden;
}

.hero-stats div {
  padding: 20px;
  background: rgba(5, 18, 30, 0.5);
}

.hero-stats dt {
  color: var(--white);
  font-family: var(--heading);
  font-size: 28px;
  font-weight: 900;
}

.hero-stats dd {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

.section {
  padding: 90px 5vw;
  background: var(--white);
}

.section.light {
  background: var(--cream);
}

.section.dark {
  background: var(--navy-900);
  color: var(--white);
}

.section.dark h2,
.section.dark h3 {
  color: var(--white);
}
.news-card h3 {
  color: var(--navy-900) !important;
}

.section-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

.section-heading p:not(.eyebrow) {
  margin-top: 16px;
  color: var(--muted);
  font-size: 18px;
}

.section.dark .section-heading p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.78);
}

.section-heading.compact {
  margin-bottom: 24px;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(240px, 0.75fr) minmax(0, 1.35fr);
  gap: 64px;
  align-items: start;
}

.story-copy {
  display: grid;
  gap: 18px;
  color: #304253;
  font-size: 17px;
}

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

.roadmap-band h2 {
  color: var(--white);
}

.roadmap-band .section-heading p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.76);
}

.roadmap-band .check-list li {
  color: rgba(255, 255, 255, 0.85);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  list-style: none;
}

.timeline a {
  display: grid;
  gap: 10px;
  min-height: 170px;
  padding: 20px;
  color: var(--white);
  text-decoration: none;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
}

.timeline a:hover {
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
}

.timeline span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.timeline strong {
  font-family: var(--heading);
  font-size: 24px;
  line-height: 1.1;
}

.timeline small {
  align-self: end;
  color: rgba(255, 255, 255, 0.72);
}

.news-grid,
.people-grid,
.recognition-grid,
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.news-card,
.people-grid article,
.value-grid article,
.recognition-grid article,
.finance-steps article {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}
/* TEAM MEMBER PHOTOS */

.person-card {
  display: flex;
  align-items: center;
  gap: 18px;
}

.person-card img {
  width: 82px;
  height: 82px;
  object-fit: cover;
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid rgba(201, 168, 76, 0.35);
}

.person-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.person-info h3,
.person-info p,
.person-info strong {
  margin: 0;
}
.news-card {
  box-shadow: 0 12px 30px rgba(13, 34, 54, 0.08);
}

.news-card span {
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.news-card h3 {
  margin-top: 12px;
  color: var(--navy-900);
}

.news-card p,
.value-grid p,
.people-grid p,
.finance-steps p,
.recognition-grid li {
  margin-top: 12px;
  color: var(--muted);
}

.news-card a {
  display: inline-block;
  margin-top: 18px;
  color: var(--green-900);
  font-weight: 800;
}

.logo-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.logo-strip span {
  display: grid;
  min-height: 88px;
  place-items: center;
  padding: 16px;
  text-align: center;
  background: var(--white);
  color: var(--navy);
  font-family: var(--heading);
  font-weight: 800;
}
.diagram-frame {
  margin: 0;
  padding: 12px; /* optional: adds breathing space inside */
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden; /* prevents overflow while keeping clean edges */
}

.diagram-frame img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;

  cursor: zoom-in;
  transition: transform 0.25s ease;
}

.diagram-frame img:hover {
  transform: scale(1.01);
}

.storyline {
  position: relative;
  display: grid;
  gap: 0;
  list-style: none;
  border-left: 3px solid rgba(46, 125, 82, 0.3);
}

.storyline li {
  position: relative;
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 28px;
  padding: 0 0 26px 30px;
}

.storyline li::before {
  content: "";
  position: absolute;
  left: -10px;
  top: 4px;
  width: 17px;
  height: 17px;
  background: #83681f; /* brown/gold future colour */
  border: 3px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 0 0 2px rgba(131, 104, 31, 0.35);
}

/* GREEN historical milestones */
.storyline li:nth-child(-n+14)::before {
  background: var(--green);
  box-shadow: 0 0 0 2px rgba(46, 125, 82, 0.35);
}

.storyline time {
  color: var(--navy);
  font-family: var(--heading);
  font-weight: 900;
}

.storyline span {
  color: #304253;
}

.founders {
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: 18px;
}

.portrait-placeholder {
  display: grid;
  width: 86px;
  height: 86px;
  margin-bottom: 18px;
  place-items: center;
  background: var(--navy);
  color: var(--white);
  font-family: var(--heading);
  font-size: 26px;
  font-weight: 900;
  border: 3px solid rgba(201, 168, 76, 0.55);
  border-radius: 50%;
}

.compact-grid {
  margin-bottom: 18px;
}

.advisor-list {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.advisor-list ul {
  columns: 2;
  column-gap: 42px;
  margin-top: 18px;
  list-style: none;
}

.advisor-list li {
  break-inside: avoid;
  margin-bottom: 12px;
  color: var(--muted);
}

.values-section {
  background: var(--white);
}

.value-grid {
  grid-template-columns: 1fr;
}

.phase-flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr auto 1fr;
  gap: 12px;
  align-items: center;
}

.phase-flow a,
.phase-flow span {
  display: grid;
  min-height: 86px;
  place-items: center;
  padding: 16px;
  text-align: center;
  border-radius: 8px;
}

.phase-flow a {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-weight: 900;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.phase-flow span {
  color: var(--gold);
  font-size: 28px;
  font-weight: 900;
}

.phase-layout {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 48px;
}
.phase-side {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
}
.phase-image img {
  width: 100%;
  max-width: 190px;
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow: var(--shadow);
}
.transparent-logo img {
  box-shadow: none !important;
  border-radius: 0 !important;
  background: transparent !important;
}

.transparent-logo a {
  display: block;
  background: transparent !important;
}
.phase-meta {
  width: 100%;
  max-width: 190px;

  align-self: start;
  display: grid;
  gap: 8px;
  padding: 24px;

  background: var(--navy);
  color: var(--white);

  border-radius: 12px;
}

.phase-meta.green {
  background: var(--green);
}

.phase-meta.gold {
  background: #83681f;
}

.phase-meta span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.phase-meta strong {
  font-family: var(--heading);
  font-size: 28px;
  line-height: 1.05;
  text-transform: uppercase;
}
.about-logo {
  margin-top: 32px;
}

.about-logo img {
  max-width: 260px;
  height: auto;
}
.phase-subtitle {
  margin-top: 10px;
  color: var(--green);
  font-weight: 800;
}

.check-list {
  display: grid;
  gap: 10px;
  margin-top: 24px;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 26px;
  color: #304253;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 9px;
  height: 9px;
  background: var(--gold);
  border-radius: 50%;
}

.link-list,
.media-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.link-list a,
.media-links a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 12px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  background: rgba(46, 125, 82, 0.08);
  border: 1px solid rgba(46, 125, 82, 0.16);
  border-radius: 6px;
}

.link-list a:hover,
.media-links a:hover {
  background: rgba(46, 125, 82, 0.14);
  color: var(--green-900);
}

.circular-section {
  background: var(--navy-900);
  color: var(--white);
}

.circular-section h2,
.circular-section h3 {
  color: var(--white);
}

.circular-section .section-heading p {
  color: rgba(255, 255, 255, 0.78);
}

.finance-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.finance-steps article {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
}

.finance-steps span {
  color: var(--gold);
  font-family: var(--heading);
  font-weight: 900;
}

.finance-steps p {
  color: rgba(255, 255, 255, 0.74);
}

.principle-panel {
  max-width: 790px;
  margin-top: 34px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
}

.principle-panel p {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.78);
}

.principle-panel .button {
  margin-top: 22px;
}

.form-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(320px, 1fr);
  gap: 60px;
  align-items: start;
}

.form-layout p {
  margin-top: 18px;
  color: #304253;
  font-size: 17px;
}
.form-layout .eyebrow {
  margin-top: 0;
  color: var(--gold);
  font-size: 13px;
}
.contact-form {
  display: grid;
  gap: 16px;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(13, 34, 54, 0.08);
}

.contact-form label {
  display: grid;
  gap: 6px;
  color: var(--navy-900);
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #c8d3dc;
  padding: 12px;
  color: var(--ink);
  background: #fbfcfd;
  border-radius: 6px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(201, 168, 76, 0.32);
  border-color: var(--gold);
}

.table-wrap {
  overflow-x: auto;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

caption {
  padding: 18px 20px;
  color: var(--navy-900);
  font-family: var(--heading);
  font-size: 22px;
  font-weight: 900;
  text-align: left;
}

th,
td {
  padding: 14px 20px;
  text-align: left;
  border-top: 1px solid var(--line);
}

th {
  color: var(--navy);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

td {
  color: #304253;
}

.badge-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 26px;
}

@media (max-width: 900px) {
  .badge-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .badge-grid {
    grid-template-columns: 1fr;
  }
}
.badge-grid span {
  display: grid;
  min-height: 84px;
  place-items: center;
  padding: 14px;
  text-align: center;
  color: var(--navy);
  font-family: var(--heading);
  font-weight: 900;
  background: #f7f2e3;
  border: 1px solid rgba(201, 168, 76, 0.42);
  border-radius: 8px;
}

.recognition-grid {
  grid-template-columns: repeat(2, 1fr);
  margin-top: 26px;
}

.recognition-grid ul {
  margin-top: 10px;
  padding-left: 20px;
}

.media-links {
  margin-top: 30px;
}

.media-links h3 {
  flex-basis: 100%;
}

.partner-category + .partner-category {
  margin-top: 34px;
}

.partner-category h3 {
  margin-bottom: 14px;
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.partner-grid span,
.partner-grid a {
  display: grid;
  min-height: 82px;
  place-items: center;
  padding: 16px;
  text-align: center;
  color: var(--navy);
  font-family: var(--heading);
  font-weight: 800;
  text-decoration: none;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.partner-grid a:hover {
  border-color: rgba(46, 125, 82, 0.4);
}

.partner-grid a strong {
  display: block;
  margin-bottom: 8px;

  color: var(--navy-900);
  font-size: 16px;
  font-weight: 900;
  line-height: 1.35;
}

.partner-grid a span {
  display: block;

  color: #5f6f7f;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.45;
}
.contact-section {
  background: var(--white);
}

.contact-list {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}

.contact-list div {
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.contact-list dt {
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact-list dd {
  margin: 4px 0 0;
  color: #304253;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 40px;
  padding: 52px 5vw;
  background: var(--navy-900);
  color: rgba(255, 255, 255, 0.76);
}

.footer-brand {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--white);
  font-family: var(--heading);
  font-size: 22px;
  font-weight: 900;
  text-decoration: none;
}

.site-footer nav,
.footer-links {
  display: grid;
  gap: 8px;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.88);
}

.footer-links span {
  color: var(--gold);
  font-weight: 800;
}
.footer-award {
  margin-top: 18px;
}

.footer-award img {
  width: 120px;
  height: auto;
  display: block;
}

@media (max-width: 1120px) {
  h1 {
    max-width: 680px;
    font-size: 46px;
  }

  .hero-lede {
    max-width: 620px;
    font-size: 20px;
  }

  .site-header {
    align-items: flex-start;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    padding: 12px 5vw 20px;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .site-nav > a,
  .nav-item > a {
    display: flex;
    width: 100%;
  }

  .nav-item,
  .dropdown {
    position: static;
  }

  .dropdown {
    display: grid;
    min-width: 0;
    padding: 0 0 8px 18px;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .nav-toggle-label {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    padding: 8px 14px;
    color: var(--navy);
    font-weight: 900;
    border: 1px solid var(--line);
    border-radius: 6px;
  }

  .nav-toggle:checked ~ .site-nav {
    display: grid;
    gap: 4px;
  }

  .hero-stats {
    grid-template-columns: repeat(4, 1fr);
  }

  .timeline,
  .finance-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .phase-flow {
    grid-template-columns: 1fr;
  }

  .phase-flow span {
    min-height: auto;
    transform: rotate(90deg);
  }

  .logo-strip,
  .partner-grid,
  .badge-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@keyframes badge-float {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }

  100% {
    transform: translateY(0);
  }
}

@media (max-width: 900px) {
  .badge-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  body {
    overflow-x: hidden;
  }

  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 30px;
  }

  .site-header {
    min-height: 70px;
    align-items: center;
    gap: 18px;
    padding: 12px 5vw;
  }

  .brand {
    gap: 10px;
    max-width: calc(100% - 90px);
  }

  .brand-mark {
    height: 54px;
    margin-right: 6px;
  }

  .brand strong {
    font-size: 15px;
  }

  .brand small {
    display: none;
  }

  .nav-toggle-label {
    margin-left: auto;
    white-space: nowrap;
  }

  .hero {
    min-height: auto;
    padding: 120px 5vw 48px;
  }

  .hero-overlay {
    background: rgba(7, 20, 32, 0.76);
  }

  .hero-content {
    align-self: start;
  }

  .hero h1 {
    max-width: 100%;
  }

  .hero-lede {
    max-width: 100%;
    font-size: 18px;
  }

  .award-badge {
    position: relative;
    top: auto;
    right: auto;
    width: 105px;
    height: auto;
    margin: 24px 0 0;
    z-index: 1;
  }

  .hero-stats {
    width: 100%;
    grid-template-columns: 1fr;
    margin-top: 32px;
  }

  .hero-stats div {
    padding: 18px;
  }

  .hero-stats dt {
    font-size: 24px;
  }

  .hero-stats dd {
    font-size: 13px;
  }

  .timeline,
  .news-grid,
  .people-grid,
  .recognition-grid,
  .finance-steps,
  .form-layout,
  .two-column,
  .phase-layout,
  .badge-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 64px 5vw;
  }

  .logo-strip,
  .partner-grid {
    grid-template-columns: 1fr;
  }

  .partner-grid {
    gap: 10px;
  }

  .partner-grid span,
  .partner-grid a {
    min-height: 72px;
    padding: 12px;
    font-size: 13px;
  }

  .storyline li {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .phase-side {
    align-items: flex-start;
  }

  .phase-meta,
  .phase-image img {
    margin-left: 0;
  }

  .advisor-list ul {
    columns: 1;
  }

  .two-column {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .about-logo {
    margin-top: 20px;
  }

  .person-card {
    align-items: flex-start;
  }

  .person-card img {
    width: 72px;
    height: 72px;
  }
}

@media (max-width: 600px) {
  .badge-grid {
    grid-template-columns: 1fr;
  }
}