/* Trias Revolution public website design system. */
:root {
  --ink: #142f33;
  --muted: #526b68;
  --line: #bdc9c1;
  --paper: #edf2ef;
  --white: #fbfdfb;
  --mist: #e2ebe6;
  --night: #062532;
  --forest: #346059;
  --forest-deep: #07333d;
  --mineral: #114b53;
  --teal: #396d68;
  --aqua: #88d1c1;
  --gold: #bfa157;
  --gold-deep: #81663c;
  --sunlight: #fdeea4;
  --plum: #754a8d;
  --olive: #899672;
  --focus: #fdeea4;
  --shadow: 0 18px 50px rgba(6, 37, 50, 0.16);
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

h1,
h2,
h3,
blockquote {
  margin-top: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: 0;
}

h1 {
  font-size: 4.4rem;
  line-height: 0.98;
}

h2 {
  font-size: 2.7rem;
  line-height: 1.08;
}

h3 {
  font-size: 1.35rem;
  line-height: 1.2;
}

p {
  margin-top: 0;
}

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

.container {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  background: var(--white);
  color: var(--forest-deep);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-top: 3px solid var(--gold);
  border-bottom: 1px solid rgba(17, 75, 83, 0.28);
  background: rgba(237, 242, 239, 0.96);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  min-height: 78px;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 212px;
  gap: 12px;
  color: var(--ink);
  text-decoration: none;
}

.brand img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.brand span {
  display: grid;
  line-height: 1.12;
}

.brand strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.12rem;
  font-weight: 600;
}

.brand small {
  margin-top: 5px;
  color: var(--teal);
  font-size: 0.68rem;
}

.primary-nav {
  display: flex;
  justify-content: center;
  gap: 19px;
}

.primary-nav a {
  font-size: 0.87rem;
  font-weight: 700;
  text-decoration: none;
}

.primary-nav a {
  padding-block: 12px;
  color: var(--ink);
}
.primary-nav a:hover {
  color: var(--plum);
}

.home-hero {
  position: relative;
  display: grid;
  min-height: min(650px, calc(100svh - 110px));
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid rgba(191, 161, 87, 0.72);
  background-color: var(--night);
  background-image: url("/brand/trias-hero.webp");
  background-position: center;
  background-size: cover;
  color: var(--white);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background: rgba(6, 37, 50, 0.58);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-block: 84px 100px;
}

.hero-content h1 {
  max-width: 770px;
  margin-bottom: 16px;
  text-wrap: balance;
}

.hero-tagline {
  max-width: 790px;
  margin-bottom: 22px;
  color: var(--sunlight);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  line-height: 1.25;
}

.hero-lead {
  max-width: 680px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.27rem;
  line-height: 1.55;
}

.hero-note {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.93rem;
}

.coaching-hero {
  position: relative;
  display: grid;
  min-height: min(650px, calc(100svh - 110px));
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid rgba(191, 161, 87, 0.72);
  background-color: var(--night);
  background-image: url("/brand/trias-hero.webp");
  background-position: center;
  background-size: cover;
  color: var(--white);
}

.coaching-hero-shade {
  position: absolute;
  inset: 0;
  background: rgba(6, 37, 50, 0.68);
}

.coaching-hero-content {
  position: relative;
  z-index: 1;
  padding-block: 84px 100px;
}

.coaching-hero-content h1 {
  max-width: 790px;
  margin-bottom: 16px;
  text-wrap: balance;
}

.eyebrow,
.card-kicker {
  margin-bottom: 13px;
  color: var(--teal);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.eyebrow.light {
  color: var(--sunlight);
}

.hero-actions,
.invitation-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 11px 18px;
  font-weight: 800;
  text-decoration: none;
}

.button.primary {
  background: var(--gold);
  color: var(--night);
}

.button.secondary {
  border-color: var(--teal);
  color: var(--mineral);
}

.button.gold {
  background: var(--sunlight);
  color: var(--night);
}

.button.light-button {
  border-color: rgba(255, 255, 255, 0.62);
  color: var(--white);
}

.button:hover {
  filter: brightness(1.06);
}

.principle-strip {
  border-bottom: 1px solid rgba(191, 161, 87, 0.72);
  background: var(--mineral);
}

.principle-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.principle-grid span {
  padding: 22px 18px;
  border-right: 1px solid rgba(136, 209, 193, 0.24);
  color: rgba(251, 253, 251, 0.86);
  font-size: 0.82rem;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
}

.principle-grid span:last-child {
  border-right: 0;
}

.brand-banner-band {
  overflow: hidden;
  border-bottom: 1px solid rgba(191, 161, 87, 0.72);
  background: var(--night);
}

.brand-banner-band img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  max-height: 720px;
  object-fit: contain;
}

.section-band {
  padding-block: 94px;
}

.section-band.white {
  background: var(--white);
}

.section-heading {
  max-width: 750px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading.left {
  margin: 0;
  text-align: left;
}

.section-heading > p:last-child {
  color: var(--muted);
  font-size: 1.08rem;
}

.division-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.division-card {
  display: grid;
  min-height: 390px;
  grid-template-rows: 152px 1fr;
  overflow: hidden;
  border: 1px solid rgba(17, 75, 83, 0.26);
  border-top: 4px solid var(--teal);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.division-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.division-card > img {
  width: 100%;
  height: 152px;
  padding: 20px;
  object-fit: contain;
  background: var(--mist);
}

.division-card.collective {
  border-top-color: var(--plum);
}

.division-card.docuserve {
  border-top-color: var(--gold);
}

.division-card > div:last-child {
  padding: 27px;
}

.division-card h3 {
  margin-bottom: 12px;
  font-size: 1.65rem;
}

.division-card .pathway-tagline {
  margin-bottom: 12px;
  color: var(--gold-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.02rem;
  font-weight: 600;
}

.division-card p {
  color: var(--muted);
}

.division-mark {
  display: grid;
  place-items: center;
  background: var(--mineral);
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3rem;
}

.text-link {
  color: var(--teal);
  font-size: 0.9rem;
  font-weight: 800;
}

.meps-band {
  border-top: 1px solid rgba(191, 161, 87, 0.52);
  border-bottom: 1px solid rgba(191, 161, 87, 0.52);
  background: var(--night);
  color: var(--white);
}

.framework-overview {
  scroll-margin-top: 96px;
}

.light-link {
  color: var(--sunlight);
}

.frameworks-intro {
  max-width: 790px;
  margin-bottom: 52px;
}

.frameworks-intro h2 {
  margin-bottom: 18px;
  color: #fff;
}

.frameworks-intro > p:last-child,
.framework-panel > p:not(.framework-label) {
  color: rgba(255, 255, 255, 0.78);
}

.framework-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(280px, 0.75fr);
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.framework-panel {
  padding: 40px 48px 42px 0;
}

.framework-panel + .framework-panel {
  border-left: 1px solid rgba(191, 161, 87, 0.58);
  padding-right: 0;
  padding-left: 48px;
}

.framework-label {
  margin-bottom: 10px;
  color: var(--sunlight);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.framework-panel h3 {
  margin-bottom: 16px;
  color: #fff;
  font-size: 1.72rem;
}

.framework-panel-meps {
  min-width: 0;
}

.framework-panel-arca {
  align-self: stretch;
}

.framework-sequence {
  display: grid;
  margin: 28px 0 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  list-style: none;
}

.framework-sequence li {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  align-items: center;
  min-height: 52px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.framework-sequence span {
  color: var(--sunlight);
  font-size: 0.76rem;
  font-weight: 800;
}

.framework-sequence strong {
  color: #fff;
  font-size: 0.98rem;
}

.meps-overview-list li {
  grid-template-columns: 106px minmax(0, 1fr);
  align-items: start;
  gap: 18px;
  padding: 18px 20px;
}

.meps-overview-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 0;
}

.meps-overview-list li:nth-child(odd) {
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  padding-left: 0;
}

.meps-overview-list li:nth-child(even) {
  padding-right: 0;
}

.meps-overview-image {
  width: 106px;
  height: 132px;
  border: 1px solid rgba(191, 161, 87, 0.58);
  border-radius: 6px;
  object-fit: cover;
}

.meps-overview-copy {
  display: grid;
  gap: 7px;
}

.meps-overview-title {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin: 0;
}

.meps-overview-title span {
  min-width: 18px;
}

.meps-overview-copy > p:not(.meps-overview-title) {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.86rem;
  line-height: 1.55;
}

.framework-action {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-top: 28px;
}

.site-access-status {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  margin: 18px 0 0;
  padding: 8px 13px;
  border: 1px solid rgba(17, 75, 83, 0.32);
  border-radius: 6px;
  color: var(--forest-deep);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0;
}

.site-access-status.light-status {
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}

.founder-band {
  background: var(--white);
}

.founder-layout {
  display: grid;
  grid-template-columns: minmax(260px, 430px) 1fr;
  align-items: center;
  gap: 72px;
}

.founder-portrait {
  margin: 0;
}

.founder-portrait img {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 8px;
  object-fit: cover;
  object-position: center top;
  box-shadow: 14px 14px 0 var(--mineral);
}

.founder-copy {
  max-width: 640px;
}

.founder-copy > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.08rem;
}

.credential-list {
  margin: 0 0 30px;
  padding-left: 22px;
  color: var(--muted);
}

.credential-list li + li {
  margin-top: 8px;
}

blockquote {
  margin: 30px 0;
  padding-left: 24px;
  border-left: 3px solid var(--gold);
  color: var(--mineral);
  font-size: 1.55rem;
  line-height: 1.42;
}

.invitation-band {
  padding-block: 68px;
  border-top: 1px solid rgba(253, 238, 164, 0.44);
  background: var(--plum);
  color: var(--white);
}

.invitation-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.invitation-layout h2 {
  max-width: 720px;
  margin-bottom: 0;
}

.page-intro {
  padding-block: 92px 82px;
  border-bottom: 1px solid rgba(191, 161, 87, 0.72);
  background: var(--night);
  color: var(--white);
}

.page-intro .container {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(230px, 310px);
  align-items: end;
  gap: 70px;
}

.page-intro h1 {
  max-width: 900px;
  margin-bottom: 20px;
  font-size: 3.7rem;
}

.page-intro h1 + p {
  max-width: 750px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.2rem;
}

.page-intro-aside {
  padding: 4px 0 4px 22px;
  border-left: 2px solid rgba(253, 238, 164, 0.72);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.content-band {
  padding-block: 78px;
}

.content-band.white {
  background: var(--white);
}

.content-band:not(.white) {
  border-top: 1px solid rgba(17, 75, 83, 0.1);
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 70px;
}

.content-copy {
  max-width: 760px;
}

.statement {
  color: var(--ink) !important;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.42rem;
  line-height: 1.55;
}

.coaching-lockup {
  display: grid;
  min-height: 360px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.coaching-lockup img {
  width: min(410px, 86%);
}

.content-copy p,
.prose p,
.service-list p,
.plain-list p {
  color: var(--muted);
}

.brand-feature > img {
  width: min(280px, 74%);
  margin-bottom: 34px;
}

.framework-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.framework-steps article {
  min-height: 215px;
  padding: 25px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.framework-steps span {
  display: inline-grid;
  width: 32px;
  height: 32px;
  place-items: center;
  margin-bottom: 28px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--mineral);
  font-weight: 800;
}

.framework-steps p {
  color: var(--muted);
  font-size: 0.92rem;
}

.meps-domain-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.meps-domain {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
}

.meps-domain > img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.meps-domain-copy {
  padding: 30px;
}

.meps-domain-copy h3 {
  margin-bottom: 14px;
  font-size: 1.7rem;
}

.meps-domain-copy > p:not(.framework-label) {
  color: var(--muted);
}

.content-actions,
.page-intro-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
}

.content-actions {
  margin-top: 26px;
}

.page-intro-actions {
  align-items: flex-start;
  flex-direction: column;
}

.coaching-topics-band {
  scroll-margin-top: 96px;
  background: #e8efeb;
}

.coaching-topic-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.coaching-topic-group {
  padding: 28px;
  border: 1px solid rgba(17, 75, 83, 0.24);
  border-radius: 8px;
  background: var(--white);
}

.coaching-topic-heading {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}

.coaching-topic-heading > span {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--mineral);
  font-size: 0.78rem;
  font-weight: 800;
}

.coaching-topic-heading h3 {
  margin: 0;
  font-size: 1.55rem;
}

.coaching-topic-group ul {
  display: grid;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.coaching-topic-group li {
  display: grid;
  gap: 4px;
  padding-block: 13px;
  border-bottom: 1px solid var(--line);
}

.coaching-topic-group li strong {
  color: var(--forest-deep);
  font-size: 0.92rem;
}

.coaching-topic-group li span {
  color: var(--muted);
  font-size: 0.83rem;
  line-height: 1.5;
}

.coaching-framework-visual {
  margin: 0 0 34px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--night);
}

.coaching-framework-visual img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 7;
  object-fit: cover;
  object-position: center;
}

.meps-domain details {
  margin-top: 24px;
  border-top: 1px solid var(--line);
}

.meps-domain summary {
  padding-block: 18px;
  color: var(--teal);
  cursor: pointer;
  font-weight: 800;
}

.meps-topic-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.meps-topic-list li {
  display: grid;
  gap: 5px;
  padding-block: 15px;
  border-bottom: 1px solid var(--line);
}

.meps-topic-list strong {
  color: var(--forest-deep);
  font-size: 0.93rem;
}

.meps-topic-list span {
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.55;
}

.meps-integration {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  align-items: center;
  margin-top: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--night);
  color: var(--white);
}

.meps-integration img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.meps-integration div {
  padding: 38px;
}

.meps-integration h3 {
  margin-bottom: 12px;
  color: var(--white);
  font-size: 2rem;
}

.meps-integration p:last-child {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
}

.service-list,
.plain-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.service-list article,
.plain-list article {
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.service-list h3,
.plain-list h3 {
  margin-bottom: 8px;
}

.notice {
  padding: 22px 24px;
  border-left: 4px solid var(--gold);
  background: var(--mist);
}

.notice strong {
  display: block;
  margin-bottom: 6px;
}

.coaching-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.coaching-card {
  min-height: 250px;
  padding: 28px;
  border: 1px solid var(--line);
  border-top: 4px solid var(--teal);
  border-radius: 8px;
  background: var(--white);
}

.coaching-card:nth-child(3n + 2) {
  border-top-color: var(--gold);
}

.coaching-card:nth-child(3n + 3) {
  border-top-color: var(--plum);
}

.coaching-card > span {
  display: block;
  margin-bottom: 42px;
  color: var(--mineral);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
}

.coaching-card h3 {
  margin-bottom: 10px;
  font-size: 1.48rem;
}

.coaching-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.meps-coaching-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.centered-action {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

.coaching-cta {
  padding-block: 68px;
  background: var(--plum);
  color: var(--white);
}

.coaching-cta-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 42px;
}

.coaching-cta-layout > div {
  max-width: 760px;
}

.coaching-cta-layout h2 {
  margin-bottom: 14px;
}

.coaching-cta-layout p:not(.eyebrow) {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.8);
}

.coaching-cta-layout > .button {
  flex: 0 0 auto;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.inquiry-form {
  display: grid;
  gap: 18px;
  align-self: start;
  padding: 30px;
  border: 1px solid var(--line);
  border-top: 4px solid var(--gold);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  gap: 7px;
}

.form-row label,
.consent-row label {
  color: var(--ink);
  font-weight: 750;
}

.form-row label span,
.form-help {
  color: var(--muted);
  font-size: 0.9rem;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
}

.form-row input,
.form-row select {
  padding: 9px 11px;
}

.form-row textarea {
  min-height: 150px;
  padding: 11px;
  resize: vertical;
}

.form-row input[aria-invalid="true"],
.form-row select[aria-invalid="true"],
.form-row textarea[aria-invalid="true"] {
  border-color: #9a342f;
}

.consent-row {
  display: grid;
  grid-template-columns: 22px 1fr;
  align-items: start;
  gap: 10px;
}

.consent-row input {
  width: 18px;
  height: 18px;
  margin: 4px 0 0;
}

.field-error {
  min-height: 1.25em;
  color: #8b2e2a;
  font-size: 0.84rem;
  font-weight: 700;
}

.honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
}

.submit-button {
  justify-self: start;
  min-width: 150px;
}

.submit-button:disabled {
  cursor: wait;
  opacity: 0.65;
}

.form-status {
  min-height: 1.6em;
  margin: 0;
  font-weight: 750;
}

.form-status[data-state="success"] {
  color: #246547;
}

.form-status[data-state="error"] {
  color: #8b2e2a;
}

.sensitive-notice {
  margin-bottom: 20px;
}

.application-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 64px;
  align-items: start;
}

.application-shell {
  max-width: 1040px;
}

.coaching-application-form {
  display: grid;
  gap: 28px;
}

.application-section {
  margin: 0;
  padding: 34px;
  border: 1px solid var(--line);
  border-top: 4px solid var(--gold);
  border-radius: 8px;
  background: var(--white);
}

.application-section legend {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 10px;
  color: var(--forest-deep);
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
}

.application-section legend span {
  display: inline-grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--mineral);
  font-family: var(--font-body);
  font-size: 0.82rem;
}

.fieldset-intro {
  margin-bottom: 24px;
  color: var(--muted);
}

.application-grid,
.readiness-grid {
  display: grid;
  gap: 22px;
}

.application-grid.two-column,
.readiness-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.full-span {
  grid-column: 1 / -1;
}

.acknowledgement-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 28px;
  border-top: 1px solid var(--line);
}

.acknowledgement-item {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  align-items: start;
  gap: 10px;
  padding-block: 15px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: 0.94rem;
  line-height: 1.5;
}

.acknowledgement-item input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
}

.application-submit {
  display: flex;
  align-items: center;
  gap: 20px;
}

.empty-library {
  display: grid;
  min-height: 310px;
  place-items: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: center;
}

.empty-library > div {
  max-width: 620px;
  padding: 40px 20px;
}

.app-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.app-card {
  min-height: 260px;
  padding: 28px;
  border: 1px solid var(--line);
  border-top: 4px solid var(--aqua);
  border-radius: 8px;
  background: var(--white);
}

.app-card:nth-child(2) {
  border-top-color: var(--gold);
}

.app-card:nth-child(3) {
  border-top-color: var(--plum);
}

.app-card:nth-child(4) {
  border-top-color: #a84f48;
}

.app-card > span {
  display: block;
  margin-bottom: 48px;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 800;
}

.app-card h2 {
  margin-bottom: 12px;
  font-size: 1.55rem;
}

.app-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.app-link {
  color: var(--ink);
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.app-link:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.price-line {
  display: flex;
  align-items: baseline;
  gap: 10px;
  color: var(--mineral);
}

.price-line strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3.4rem;
  font-weight: 500;
  line-height: 1;
}

.price-line span {
  color: var(--muted);
  font-weight: 700;
}

.site-footer {
  border-top: 1px solid rgba(191, 161, 87, 0.72);
  background: var(--night);
  color: rgba(255, 255, 255, 0.8);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.7fr repeat(3, 1fr);
  gap: 48px;
  padding-block: 62px 48px;
}

.footer-brand img {
  width: 76px;
  height: 76px;
  object-fit: contain;
  border: 1px solid rgba(191, 161, 87, 0.52);
  background: var(--white);
}

.footer-brand p {
  max-width: 380px;
  margin-top: 18px;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 9px;
}

.footer-column h2 {
  margin-bottom: 8px;
  color: var(--white);
  font-family: inherit;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.footer-column a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}

.footer-column a:hover {
  color: var(--sunlight);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-block: 20px 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.78rem;
}

/* Founder design correction preview: immersive Trias public experience. */
body {
  background: #f3efe6;
}

.site-header {
  border-top: 2px solid var(--gold);
  border-bottom-color: rgba(253, 238, 164, 0.24);
  background: rgba(6, 37, 50, 0.96);
  box-shadow: 0 10px 32px rgba(3, 21, 29, 0.18);
}

.header-inner {
  min-height: 92px;
  grid-template-columns: auto 1fr auto;
}

.brand {
  min-width: 330px;
  gap: 16px;
  color: var(--white);
}

.brand img {
  width: 70px;
  height: 70px;
  border: 1px solid rgba(253, 238, 164, 0.48);
  background: #fff;
}

.brand strong {
  color: #fff;
  font-size: 1.28rem;
}

.brand small {
  max-width: 310px;
  color: var(--sunlight);
  font-size: 0.7rem;
}

.primary-nav {
  justify-content: flex-end;
  gap: 25px;
}

.primary-nav a {
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.84rem;
}

.primary-nav a:hover,
.primary-nav a[aria-current="page"] {
  color: var(--sunlight);
}

.primary-nav a[href="/account/"] {
  align-self: center;
  padding: 9px 15px;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 999px;
  color: #fff;
}

.primary-nav a[href="/account/"]:hover,
.primary-nav a[href="/account/"][aria-current="page"] {
  border-color: var(--sunlight);
  background: var(--sunlight);
  color: var(--night);
}

.mobile-nav {
  display: none;
}

.home-hero {
  min-height: clamp(540px, calc(100svh - 160px), 760px);
  background-position: center;
}

.home-hero .hero-shade,
.about-hero .hero-shade {
  background: linear-gradient(90deg, rgba(4, 27, 36, 0.9) 0%, rgba(4, 27, 36, 0.68) 48%, rgba(4, 27, 36, 0.2) 76%, rgba(4, 27, 36, 0.46) 100%);
}

.hero-content {
  padding-block: 66px 86px;
}

.hero-brand-mark {
  width: 82px;
  height: 82px;
  margin-bottom: 24px;
  border: 1px solid rgba(253, 238, 164, 0.58);
  background: #fff;
  box-shadow: 0 12px 38px rgba(3, 21, 29, 0.32);
  object-fit: contain;
}

.hero-content h1 {
  max-width: 760px;
  margin-bottom: 14px;
  color: #fff;
  font-size: clamp(3.75rem, 7vw, 5.4rem);
  line-height: 0.94;
}

.hero-tagline {
  max-width: 740px;
  margin-bottom: 24px;
  color: var(--sunlight);
  font-size: clamp(1.2rem, 2.1vw, 1.65rem);
}

.hero-lead {
  max-width: 760px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.13rem;
  line-height: 1.65;
}

.vision-intro-band {
  padding-block: 62px;
  border-top: 1px solid rgba(253, 238, 164, 0.34);
  border-bottom: 1px solid rgba(17, 75, 83, 0.18);
  background: #f3efe6;
}

.vision-intro-layout {
  display: grid;
  grid-template-columns: minmax(180px, 0.38fr) minmax(0, 1.62fr);
  align-items: start;
  gap: 56px;
}

.vision-intro-layout .eyebrow {
  margin-top: 9px;
}

.vision-intro-statement {
  max-width: 940px;
  margin: 0;
  color: var(--forest-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  line-height: 1.38;
}

.brand-banner-band {
  border-bottom-color: rgba(191, 161, 87, 0.72);
  background: #062532;
}

.brand-banner-band img {
  max-height: none;
  aspect-ratio: 1672 / 941;
  object-fit: contain;
}

.pathways-band {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(17, 75, 83, 0.16);
  background: #e8efeb;
}

.pathways-band::before {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(17, 75, 83, 0.045) 1px, transparent 1px), linear-gradient(90deg, rgba(17, 75, 83, 0.045) 1px, transparent 1px);
  background-size: 64px 64px;
  content: "";
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.62), transparent 86%);
  pointer-events: none;
}

.pathways-band > .container {
  position: relative;
}

.pathways-band .section-heading h2 {
  color: var(--forest-deep);
}

.division-grid {
  gap: 24px;
}

.division-card {
  min-height: 540px;
  grid-template-rows: 250px 1fr;
  border-color: rgba(17, 75, 83, 0.2);
  border-top-width: 3px;
  background: rgba(251, 253, 251, 0.98);
  box-shadow: 0 16px 40px rgba(6, 37, 50, 0.08);
}

.division-card > img {
  height: 250px;
  padding: 28px;
  background: #fff;
}

.division-card > div:last-child {
  display: flex;
  flex-direction: column;
  padding: 30px;
}

.division-card h3 {
  color: var(--forest-deep);
}

.division-card .text-link {
  margin-top: auto;
  padding-top: 18px;
}

.meps-band {
  position: relative;
  background: linear-gradient(115deg, #052c36 0%, #0b4b50 68%, #19384d 100%);
}

.meps-band::after {
  position: absolute;
  right: 5%;
  bottom: 0;
  width: 280px;
  height: 1px;
  background: var(--gold);
  content: "";
  opacity: 0.7;
}

.meps-band .section-heading h2,
.meps-band .frameworks-intro h2 {
  color: #fff;
}

.founder-band {
  border-top: 1px solid rgba(191, 161, 87, 0.4);
  background: #f7f2e8;
}

.founder-portrait img {
  border: 1px solid rgba(191, 161, 87, 0.52);
  border-radius: 2px;
  box-shadow: 18px 18px 0 #0b4b50;
}

.founder-copy h2 {
  color: var(--forest-deep);
  font-size: clamp(2.7rem, 5vw, 4rem);
}

.invitation-band {
  background: #4e2767;
}

.about-hero {
  position: relative;
  display: grid;
  min-height: 590px;
  align-items: end;
  overflow: hidden;
  border-bottom: 1px solid rgba(191, 161, 87, 0.72);
  background-color: var(--night);
  background-image: url("/brand/trias-hero.webp");
  background-position: center;
  background-size: cover;
  color: #fff;
}

.about-hero-content {
  position: relative;
  z-index: 1;
  padding-block: 100px 86px;
}

.about-hero-content h1 {
  max-width: 820px;
  margin-bottom: 24px;
  color: #fff;
  font-size: clamp(3.4rem, 6vw, 5rem);
}

.about-hero-content > p:last-child {
  max-width: 740px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.18rem;
}

.about-vision-band {
  padding-block: 80px;
  background: #07333d;
  color: #fff;
}

.about-vision-layout {
  max-width: 1000px;
}

.about-vision-statement {
  margin: 18px 0 0;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 3.8vw, 3rem);
  line-height: 1.35;
}

.about-pathways-band {
  background: #e8efeb;
}

.about-pathway-list {
  border-top: 1px solid rgba(17, 75, 83, 0.28);
}

.about-pathway-list > a {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr) 40px;
  align-items: center;
  gap: 30px;
  padding-block: 28px;
  border-bottom: 1px solid rgba(17, 75, 83, 0.28);
  color: var(--ink);
  text-decoration: none;
}

.about-pathway-list img {
  width: 112px;
  height: 86px;
  padding: 8px;
  background: #fff;
  object-fit: contain;
}

.about-pathway-list h3 {
  margin-bottom: 6px;
  color: var(--forest-deep);
  font-size: 1.65rem;
}

.about-pathway-list p {
  margin-bottom: 0;
  color: var(--muted);
}

.about-pathway-list > a > span {
  color: var(--gold-deep);
  font-size: 1.6rem;
  transition: transform 180ms ease;
}

.about-pathway-list > a:hover > span {
  transform: translateX(5px);
}

.about-founder-band {
  background: #f7f2e8;
}

.about-founder-band,
.about-story-band,
.about-credentials-band,
.about-why-band,
.meps-overview-list li {
  scroll-margin-top: 96px;
}

.about-story-band {
  background: #e8efeb;
}

.about-story-layout,
.about-credentials-layout,
.about-why-layout {
  display: grid;
  grid-template-columns: minmax(250px, 0.72fr) minmax(0, 1.28fr);
  gap: 72px;
}

.about-story-layout h2,
.about-credentials-layout h2,
.about-why-layout h2 {
  margin: 0;
  color: var(--forest-deep);
  font-size: 2.35rem;
}

.about-founder-pathways {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(17, 75, 83, 0.28);
  list-style: none;
}

.about-founder-pathways li {
  padding-block: 22px;
  border-bottom: 1px solid rgba(17, 75, 83, 0.28);
  color: var(--muted);
  line-height: 1.7;
}

.about-founder-pathways strong {
  color: var(--forest-deep);
}

.about-prose {
  grid-column: 2;
}

.about-prose-wide {
  max-width: 900px;
  margin-inline: auto;
}

.about-prose p,
.about-credentials-layout > div:last-child > p {
  color: var(--muted);
  line-height: 1.78;
}

.about-credentials-band {
  background: #07333d;
  color: #fff;
}

.about-credentials-layout h2,
.about-credentials-layout > div:last-child > p,
.about-credential-list {
  color: #fff;
}

.about-credential-list {
  margin-bottom: 26px;
}

.about-credential-list li {
  margin-bottom: 9px;
}

.about-credential-list .credential-feature {
  margin-bottom: 18px;
}

.credential-feature > span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.91rem;
  line-height: 1.65;
}

.about-why-band {
  background: #f7f2e8;
}

.about-vision-quote {
  margin: 28px 0;
  padding: 6px 0 6px 24px;
  border-left: 3px solid var(--gold);
  color: var(--forest-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  line-height: 1.5;
}

.about-founder-principle {
  margin-top: 30px;
  color: var(--forest-deep) !important;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
}

.about-founder-signature {
  color: var(--forest-deep) !important;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.06rem;
}

@media (max-width: 1080px) {
  .header-inner {
    grid-template-columns: auto 1fr auto;
  }

  .primary-nav {
    display: none;
  }

  .site-header {
    position: sticky;
  }

  .mobile-nav {
    position: relative;
    display: block;
    justify-self: end;
  }

  .mobile-nav summary {
    display: grid;
    width: 46px;
    height: 46px;
    cursor: pointer;
    list-style: none;
    place-items: center;
    border: 1px solid rgba(253, 238, 164, 0.52);
  }

  .mobile-nav summary::-webkit-details-marker {
    display: none;
  }

  .menu-icon,
  .menu-icon::before,
  .menu-icon::after {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--sunlight);
    content: "";
  }

  .menu-icon {
    position: relative;
  }

  .menu-icon::before {
    position: absolute;
    top: -6px;
  }

  .menu-icon::after {
    position: absolute;
    top: 6px;
  }

  .mobile-nav nav {
    position: absolute;
    z-index: 70;
    top: calc(100% + 17px);
    right: 0;
    display: grid;
    width: min(320px, calc(100vw - 32px));
    border: 1px solid rgba(253, 238, 164, 0.42);
    background: #062532;
    box-shadow: 0 18px 44px rgba(3, 21, 29, 0.32);
  }

  .mobile-nav nav a {
    padding: 13px 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.11);
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
  }

  .mobile-nav nav a:last-child {
    border-bottom: 0;
  }

  .mobile-nav nav a[aria-current="page"] {
    color: var(--sunlight);
  }

  .division-grid,
  .coaching-grid,
  .app-grid,
  .footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .meps-coaching-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .framework-showcase {
    grid-template-columns: 1fr;
  }

  .application-intro {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .meps-domain-grid {
    grid-template-columns: 1fr;
  }

  .framework-panel {
    padding-right: 0;
  }

  .framework-panel + .framework-panel {
    border-top: 1px solid rgba(191, 161, 87, 0.58);
    border-left: 0;
    padding-left: 0;
  }

  .meps-overview-list li:nth-child(even) {
    padding-right: 20px;
  }

  .vision-intro-layout {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

@media (max-width: 760px) {
  h1,
  .page-intro h1 {
    font-size: 2.8rem;
  }

  h2 {
    font-size: 2.1rem;
  }

  .container {
    width: min(100% - 32px, 1180px);
  }

  .header-inner {
    gap: 10px;
  }

  .brand {
    min-width: 0;
  }

  .brand img {
    width: 54px;
    height: 54px;
  }

  .brand strong {
    font-size: 1.02rem;
  }

  .brand small {
    display: none;
  }

  .home-hero {
    min-height: min(600px, calc(100svh - 102px));
    background-position: 66% center;
  }

  .home-hero .hero-shade,
  .about-hero .hero-shade {
    background: rgba(4, 27, 36, 0.76);
  }

  .coaching-hero {
    min-height: min(600px, calc(100svh - 102px));
    background-position: 60% center;
  }

  .coaching-hero-shade {
    background: rgba(6, 37, 50, 0.76);
  }

  .hero-content {
    align-self: end;
    padding-block: 40px 44px;
  }

  .hero-brand-mark {
    display: none;
  }

  .hero-content h1 {
    font-size: 3.15rem;
  }

  .coaching-hero-content {
    align-self: end;
    padding-block: 70px 68px;
  }

  .hero-tagline {
    font-size: 1.25rem;
  }

  .hero-lead {
    font-size: 0.98rem;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
    gap: 10px;
  }

  .hero-actions .button {
    min-width: 0;
    padding-inline: 10px;
    font-size: 0.88rem;
  }

  .principle-grid,
  .division-grid,
  .coaching-grid,
  .coaching-topic-grid,
  .meps-coaching-grid,
  .app-grid,
  .framework-steps,
  .footer-main,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .principle-grid span {
    border-right: 0;
    border-bottom: 1px solid rgba(136, 209, 193, 0.24);
    padding: 14px;
  }

  .principle-grid span:last-child {
    border-bottom: 0;
  }

  .frameworks-intro {
    margin-bottom: 34px;
  }

  .framework-panel {
    padding-block: 30px;
  }

  .meps-overview-list {
    grid-template-columns: 1fr;
  }

  .meps-overview-list li,
  .meps-overview-list li:nth-child(odd),
  .meps-overview-list li:nth-child(even) {
    grid-template-columns: 92px minmax(0, 1fr);
    border-right: 0;
    padding-inline: 0;
  }

  .meps-overview-image {
    width: 92px;
    height: 114px;
  }

  .framework-action {
    justify-content: flex-start;
  }

  .meps-domain-copy {
    padding: 24px;
  }

  .meps-integration {
    grid-template-columns: 1fr;
  }

  .coaching-framework-visual img {
    aspect-ratio: 4 / 3;
  }

  .content-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .meps-integration div {
    padding: 28px 24px;
  }

  .section-band,
  .content-band {
    padding-block: 64px;
  }

  .vision-intro-band,
  .about-vision-band {
    padding-block: 52px;
  }

  .division-card {
    min-height: 500px;
    grid-template-rows: 210px 1fr;
  }

  .division-card > img {
    height: 210px;
  }

  .about-hero {
    min-height: 520px;
  }

  .about-hero-content {
    padding-block: 74px 58px;
  }

  .about-pathway-list > a {
    grid-template-columns: 82px minmax(0, 1fr) 28px;
    gap: 18px;
  }

  .about-pathway-list img {
    width: 82px;
    height: 72px;
  }

  .founder-layout,
  .content-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .about-story-layout,
  .about-credentials-layout,
  .about-why-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .about-prose {
    grid-column: auto;
  }

  .founder-portrait {
    max-width: 430px;
    padding-right: 14px;
    padding-bottom: 14px;
  }

  .invitation-layout,
  .coaching-cta-layout,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .page-intro {
    padding-block: 68px 62px;
  }

  .page-intro .container {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-main {
    gap: 35px;
  }

  .inquiry-form {
    padding: 22px 18px;
  }

  .application-section {
    padding: 26px 20px;
  }

  .application-grid.two-column,
  .readiness-grid,
  .acknowledgement-list {
    grid-template-columns: 1fr;
  }

  .application-submit {
    align-items: stretch;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
.trias-hub-shell { min-height:70vh; background:#eef3ef; }
.trias-hub-header { display:flex; justify-content:space-between; align-items:flex-start; gap:2rem; margin-bottom:2rem; }
.trias-hub-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:1rem; }
.trias-hub-card { display:flex; min-height:260px; flex-direction:column; padding:1.6rem; border:1px solid rgba(17,75,83,.2); border-top:4px solid var(--gold); border-radius:.7rem; background:#fff; color:var(--ink); text-decoration:none; box-shadow:0 12px 30px rgba(6,37,50,.06); }
.trias-hub-card:nth-child(3n+2) { border-top-color:var(--aqua); }
.trias-hub-card:nth-child(3n+3) { border-top-color:var(--plum); }
.trias-hub-card h2 { color:var(--forest-deep); font-size:1.6rem; }
.trias-hub-card .text-link,.trias-hub-card .workflow-state { margin-top:auto; padding-top:1rem; }
.portal-mode-notice { display:grid; gap:.2rem; padding:.85rem 1rem; border:1px solid rgba(191,161,87,.5); background:#fff; }
@media(max-width:900px){.trias-hub-grid{grid-template-columns:repeat(2,minmax(0,1fr));}}
@media(max-width:620px){.trias-hub-grid{grid-template-columns:1fr}.trias-hub-header{flex-direction:column}}
