:root {
    --bg: #090b0e;
    --bg-raised: #0e1115;
    --surface: #12161b;
    --surface-soft: #0c0f13;
    --line: rgba(233, 239, 244, 0.11);
    --line-strong: rgba(233, 239, 244, 0.2);
    --text: #f4f6f8;
    --muted: #969fa9;
    --muted-dark: #69727b;
    --ember: #ff4d16;
    --ember-light: #ff7140;
    --ember-wash: rgba(255, 77, 22, 0.1);
    --display: "Arial Black", "Helvetica Neue", Arial, sans-serif;
    --body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 6rem;
}

body {
    min-width: 320px;
    margin: 0;
    overflow-x: hidden;
    background: var(--bg);
    color: var(--text);
    font-family: var(--body);
    font-size: 1rem;
    line-height: 1.6;
}

body::selection {
    background: var(--ember);
    color: #fff;
}

a {
    color: inherit;
}

:focus-visible {
    outline: 3px solid var(--ember-light);
    outline-offset: 3px;
}

.skip-link {
    position: fixed;
    top: 1rem;
    left: 1rem;
    z-index: 1200;
    padding: 0.75rem 1rem;
    border-radius: 0.35rem;
    background: #fff;
    color: #000;
    transform: translateY(-180%);
    transition: transform 160ms ease;
}

.skip-link:focus {
    transform: none;
}

.site-shell {
    width: min(calc(100% - 4rem), 110rem);
    margin-inline: auto;
}

.site-header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030;
    border-bottom: 1px solid transparent;
    background: rgba(9, 11, 14, 0.76);
    backdrop-filter: blur(20px);
    transition: border-color 180ms ease, background-color 180ms ease;
}

.site-header.is-scrolled {
    border-color: var(--line);
    background: rgba(9, 11, 14, 0.95);
}

.navbar {
    min-height: 6rem;
    padding: 0;
}

.navbar-brand {
    margin: 0;
    padding: 0;
}

.navbar-brand img,
.site-footer img {
    display: block;
    width: auto;
    object-fit: contain;
}

.navbar-brand img {
    height: 3.3rem;
}

.navbar-nav {
    gap: 0.5rem;
}

.navbar .nav-link {
    padding: 0.65rem 0.8rem !important;
    color: #aeb5bc;
    font-size: 0.9rem;
    font-weight: 700;
    transition: color 160ms ease;
}

.navbar .nav-link:hover,
.navbar .nav-link:focus-visible {
    color: #fff;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.4rem;
}

.sign-in,
.account-link {
    color: #e1e5e8;
    font-size: 0.9rem;
    font-weight: 750;
    text-decoration: none;
}

.sign-in:hover {
    color: #fff;
}

.account-link {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.account-link > span {
    display: grid;
    width: 2.25rem;
    height: 2.25rem;
    place-items: center;
    border: 1px solid rgba(255, 113, 64, 0.38);
    border-radius: 0.35rem;
    background: var(--ember-wash);
    color: var(--ember-light);
}

.navbar-toggler {
    border-color: var(--line-strong);
    box-shadow: none !important;
}

.btn {
    min-height: 2.9rem;
    border-radius: 0.35rem;
    font-weight: 800;
}

.btn-lg {
    min-height: 3.5rem;
    padding: 0.9rem 1.35rem;
    font-size: 1rem;
}

.btn-ember {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    border: 1px solid var(--ember);
    background: var(--ember);
    color: #fff;
    transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.btn-ember:hover,
.btn-ember:focus-visible {
    border-color: var(--ember-light);
    background: var(--ember-light);
    color: #fff;
    transform: translateY(-1px);
}

.section-index {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin: 0 0 1.4rem;
    color: var(--ember-light);
    font-size: 0.76rem;
    font-weight: 850;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.section-index > span {
    color: #626b74;
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
    letter-spacing: 0;
}

.hero {
    position: relative;
    overflow: hidden;
    padding: 10.5rem 0 2.1rem;
    border-bottom: 1px solid var(--line);
    background:
        radial-gradient(circle at 77% 43%, rgba(255, 77, 22, 0.1), transparent 28rem),
        var(--bg);
}

.hero::after {
    position: absolute;
    top: 5.9rem;
    right: -9rem;
    width: 47rem;
    height: 47rem;
    border: 1px solid rgba(255, 113, 64, 0.1);
    content: "";
    transform: rotate(45deg);
    box-shadow: 0 0 0 7rem rgba(255, 77, 22, 0.012), 0 0 0 14rem rgba(255, 77, 22, 0.008);
}

.hero-grid {
    position: absolute;
    inset: 6rem 0 0;
    opacity: 0.55;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 6.5rem 6.5rem;
    mask-image: linear-gradient(to bottom, black, transparent 78%);
}

.hero .site-shell {
    position: relative;
    z-index: 1;
}

.hero-intro {
    margin-bottom: clamp(3rem, 6vw, 6rem);
}

.hero-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.75fr) minmax(20rem, 0.72fr);
    gap: clamp(3rem, 7vw, 9rem);
    align-items: end;
}

.hero h1,
.section h2,
.closing-section h2 {
    margin: 0;
    font-family: var(--display);
    font-weight: 900;
    letter-spacing: -0.057em;
    line-height: 0.97;
}

.hero h1 {
    max-width: 14ch;
    font-size: clamp(4.3rem, 8.2vw, 9.4rem);
}

.hero h1 em,
.section h2 em,
.closing-section h2 em {
    color: var(--ember);
    font-style: normal;
}

.hero-aside {
    padding: 1.5rem 0 0.35rem;
    border-top: 1px solid var(--line-strong);
}

.hero-aside > p {
    margin: 0 0 1.8rem;
    color: #b0b8c0;
    font-size: 1.08rem;
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.4rem;
}

.text-action {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    color: #e7eaed;
    font-size: 0.9rem;
    font-weight: 800;
    text-decoration: none;
}

.text-action span {
    color: var(--ember-light);
    transition: transform 160ms ease;
}

.text-action:hover {
    color: #fff;
}

.text-action:hover span {
    transform: translate(2px, -2px);
}

.record-board {
    display: grid;
    grid-template-columns: 1.05fr 1fr 1.85fr 0.62fr;
    min-height: 10.8rem;
    border: 1px solid var(--line-strong);
    background: rgba(15, 19, 24, 0.94);
    box-shadow: 0 2rem 6rem rgba(0, 0, 0, 0.28);
}

.record-board > div {
    min-width: 0;
    padding: 1.6rem;
    border-right: 1px solid var(--line);
}

.record-board > div:last-child {
    border-right: 0;
}

.record-board small,
.honor-panel small {
    display: block;
    margin-bottom: 0.3rem;
    color: #737d86;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.record-board strong {
    display: block;
    overflow: hidden;
    color: #eef1f3;
    font-size: 1rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.record-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.record-mark {
    display: grid;
    width: 3.6rem;
    height: 3.6rem;
    flex: 0 0 auto;
    place-items: center;
    border: 1px solid rgba(255, 113, 64, 0.35);
    border-radius: 50%;
    background: var(--ember-wash);
    color: var(--ember-light);
    font-size: 0.8rem;
    font-weight: 900;
}

.record-brand div > span {
    display: block;
    margin-top: 0.22rem;
    color: #6f7881;
    font-size: 0.72rem;
}

.record-community {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.record-community > div {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    margin-top: 0.75rem;
}

.record-community > div span {
    padding: 0.22rem 0.42rem;
    border: 1px solid var(--line);
    color: #838d96;
    font-size: 0.65rem;
}

.record-journey {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.record-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.record-heading > span {
    color: #6e7780;
    font-size: 0.68rem;
}

.journey-line {
    display: flex;
    position: relative;
    justify-content: space-between;
    margin: 1.25rem 0 0.65rem;
}

.journey-line::before {
    position: absolute;
    top: 50%;
    right: 0;
    left: 0;
    height: 1px;
    background: linear-gradient(90deg, #555e67, var(--ember));
    content: "";
}

.journey-line i {
    position: relative;
    z-index: 1;
    width: 0.58rem;
    height: 0.58rem;
    border: 2px solid #68727b;
    border-radius: 50%;
    background: var(--surface);
}

.journey-line i:last-child {
    border-color: var(--ember);
    background: var(--ember);
    box-shadow: 0 0 0 5px var(--ember-wash);
}

.journey-labels {
    display: flex;
    justify-content: space-between;
    color: #68717a;
    font-size: 0.64rem;
}

.record-status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    background: rgba(255, 77, 22, 0.035);
}

.status-light {
    width: 0.55rem;
    height: 0.55rem;
    flex: 0 0 auto;
    border-radius: 50%;
    background: var(--ember);
    box-shadow: 0 0 0.9rem rgba(255, 77, 22, 0.55);
}

.hero-principles {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-right: 1px solid var(--line);
    border-left: 1px solid var(--line);
}

.hero-principles span {
    padding: 1rem 1.5rem;
    border-right: 1px solid var(--line);
    color: #69727b;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.hero-principles span:last-child {
    border-right: 0;
}

.section {
    padding: clamp(6.5rem, 10vw, 11rem) 0;
}

.section h2,
.closing-section h2 {
    font-size: clamp(3rem, 5.6vw, 6.6rem);
}

.platform-section {
    background: var(--bg-raised);
}

.section-lead {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(17rem, 0.55fr);
    gap: 5rem;
    align-items: end;
    margin-bottom: clamp(3.5rem, 6vw, 6rem);
}

.section-lead .section-index {
    grid-column: 1 / -1;
    margin-bottom: -1.5rem;
}

.section-lead h2 {
    max-width: 15ch;
}

.section-lead > p:last-child,
.leaders-copy > p:not(.section-index),
.language-panel > p:not(.section-index) {
    margin: 0;
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.75;
}

.pillar-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--line-strong);
    border-bottom: 1px solid var(--line-strong);
}

.pillar-list article {
    position: relative;
    min-height: 20rem;
    padding: 1.6rem;
    border-right: 1px solid var(--line);
    transition: background 180ms ease;
}

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

.pillar-list article:hover {
    background: rgba(255, 255, 255, 0.025);
}

.pillar-id {
    color: #636c75;
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
    font-size: 0.7rem;
}

.pillar-list h3 {
    margin: 5.5rem 0 0.8rem;
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: -0.035em;
}

.pillar-list p {
    max-width: 18rem;
    margin: 0;
    color: #858f98;
    font-size: 0.92rem;
}

.pillar-arrow {
    position: absolute;
    top: 1.4rem;
    right: 1.6rem;
    color: var(--ember-light);
}

.leaders-section {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: var(--bg);
}

.leaders-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(35rem, 1.1fr);
    gap: clamp(4rem, 8vw, 9rem);
    align-items: start;
}

.leaders-copy {
    position: sticky;
    top: 8rem;
}

.leaders-copy h2 {
    max-width: 11ch;
    margin-bottom: 1.5rem;
}

.leaders-copy > p:not(.section-index) {
    max-width: 37rem;
    margin-bottom: 1.7rem;
}

.leadership-ledger {
    border: 1px solid var(--line-strong);
    background: var(--surface-soft);
}

.ledger-head,
.ledger-foot,
.leadership-ledger article {
    display: grid;
    grid-template-columns: 9rem 1fr auto;
    gap: 1rem;
    align-items: center;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--line);
}

.ledger-head {
    display: flex;
    justify-content: space-between;
    color: #737d86;
    font-size: 0.69rem;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.leadership-ledger article {
    min-height: 7.2rem;
}

.leadership-ledger article.is-current {
    border-left: 3px solid var(--ember);
    background: linear-gradient(90deg, rgba(255, 77, 22, 0.08), transparent 48%);
}

.leadership-ledger time {
    color: #68717a;
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
    font-size: 0.7rem;
}

.leadership-ledger strong,
.leadership-ledger article div span {
    display: block;
}

.leadership-ledger strong {
    color: #edf0f2;
    font-size: 1rem;
}

.leadership-ledger article div span {
    margin-top: 0.1rem;
    color: #727c85;
    font-size: 0.76rem;
}

.ledger-state {
    padding: 0.28rem 0.52rem;
    border: 1px solid var(--line);
    border-radius: 2rem;
    color: #818a93;
    font-size: 0.67rem;
}

.is-current .ledger-state {
    border-color: rgba(255, 113, 64, 0.25);
    color: var(--ember-light);
}

.ledger-foot {
    display: flex;
    justify-content: space-between;
    border-bottom: 0;
    color: #68717a;
    font-size: 0.78rem;
}

.ledger-foot strong {
    color: #aeb6bd;
    font-size: 0.78rem;
}

.leader-capabilities {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 5rem;
    border-top: 1px solid var(--line);
}

.leader-capabilities > div {
    padding: 1.5rem;
    border-right: 1px solid var(--line);
}

.leader-capabilities > div:last-child {
    border-right: 0;
}

.leader-capabilities > div > span {
    display: block;
    margin-bottom: 2.2rem;
    color: var(--ember-light);
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
    font-size: 0.68rem;
}

.leader-capabilities strong {
    display: block;
    margin-bottom: 0.4rem;
    font-size: 0.95rem;
}

.leader-capabilities p {
    margin: 0;
    color: #77818a;
    font-size: 0.82rem;
}

.legacy-section {
    overflow: hidden;
    background: var(--bg-raised);
}

.legacy-heading {
    display: grid;
    grid-template-columns: minmax(12rem, 0.55fr) minmax(0, 1.45fr);
    align-items: flex-start;
    gap: 4rem;
    margin-bottom: clamp(4.5rem, 7vw, 7rem);
}

.legacy-heading .section-index {
    flex: 0 0 auto;
}

.legacy-heading h2 {
    max-width: none;
    margin-left: auto;
    font-size: clamp(3.6rem, 4.75vw, 5.9rem);
    text-align: right;
}

.legacy-heading h2 span,
.legacy-heading h2 em {
    display: block;
    white-space: nowrap;
}

.legacy-track {
    display: grid;
    position: relative;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
}

.track-line {
    position: absolute;
    z-index: 0;
    top: 2.35rem;
    right: 0;
    left: 0;
    height: 1px;
    background: linear-gradient(90deg, #535c65 0%, #535c65 56%, var(--ember) 70%, rgba(83, 92, 101, 0.62) 82%, rgba(83, 92, 101, 0.18) 100%);
}

.legacy-track article {
    position: relative;
    display: grid;
    grid-template-rows: 1.25rem 2.2rem auto auto;
}

.legacy-track time {
    display: block;
    margin: 0;
    color: #68727b;
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
    font-size: 0.72rem;
}

.track-dot {
    display: block;
    position: relative;
    z-index: 1;
    align-self: center;
    width: 0.72rem;
    height: 0.72rem;
    margin: 0;
    border: 2px solid #68727b;
    border-radius: 50%;
    background: var(--bg-raised);
}

.track-now .track-dot {
    border-color: var(--ember);
    background: var(--ember);
    box-shadow: 0 0 0 0.45rem var(--ember-wash);
}

.track-future {
    opacity: 0.42;
}

.legacy-track h3 {
    margin: 0 0 0.25rem;
    font-size: 0.92rem;
    font-weight: 800;
}

.legacy-track p {
    margin: 0;
    color: #727b84;
    font-size: 0.78rem;
}

.recognition-section {
    padding-top: 0;
    background: var(--bg-raised);
}

.recognition-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border: 1px solid var(--line-strong);
}

.language-panel,
.honor-panel {
    min-width: 0;
    min-height: 37rem;
    padding: clamp(2rem, 4vw, 4rem);
}

.language-panel {
    border-right: 1px solid var(--line-strong);
    background: var(--bg);
}

.language-panel h2 {
    margin-bottom: 1.4rem;
    font-size: clamp(2.8rem, 4.6vw, 5.2rem);
}

.language-panel > p:not(.section-index) {
    max-width: 38rem;
}

.term-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 4rem;
}

.term-cloud span {
    padding: 0.66rem 0.9rem;
    border: 1px solid var(--line);
    color: #9ba4ac;
    font-size: 0.82rem;
    font-weight: 750;
}

.term-cloud span:nth-child(1),
.term-cloud span:nth-child(4) {
    border-color: rgba(255, 113, 64, 0.28);
    background: var(--ember-wash);
    color: var(--ember-light);
}

.honor-panel {
    display: grid;
    grid-template-columns: 10rem 1fr;
    grid-template-rows: auto 1fr auto;
    column-gap: 3rem;
    align-items: center;
    background:
        radial-gradient(circle at 24% 48%, rgba(255, 77, 22, 0.12), transparent 14rem),
        var(--surface-soft);
}

.honor-top,
.honor-bottom {
    display: flex;
    grid-column: 1 / -1;
    justify-content: space-between;
    color: #6e7780;
    font-size: 0.68rem;
    font-weight: 750;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.honor-top {
    align-self: start;
}

.honor-bottom {
    align-self: end;
    padding-top: 1.2rem;
    border-top: 1px solid var(--line);
}

.honor-symbol {
    display: grid;
    width: 9rem;
    height: 9rem;
    place-items: center;
    border: 1px solid rgba(255, 113, 64, 0.28);
    transform: rotate(45deg);
}

.honor-symbol::before,
.honor-symbol span {
    position: absolute;
    width: 4.2rem;
    height: 5rem;
    background: linear-gradient(var(--ember-light), var(--ember));
    clip-path: polygon(50% 0, 88% 24%, 73% 82%, 50% 100%, 27% 82%, 12% 24%);
    content: "";
    transform: rotate(-45deg);
}

.honor-symbol span {
    width: 2.4rem;
    height: 3rem;
    background: var(--surface-soft);
}

.honor-panel h3 {
    margin: 0.25rem 0 0.75rem;
    font-size: clamp(2rem, 3.5vw, 3.5rem);
    font-weight: 900;
    letter-spacing: -0.05em;
}

.honor-panel p {
    max-width: 30rem;
    margin: 0;
    color: #879099;
    font-size: 0.92rem;
}

.membership-section {
    border-top: 1px solid var(--line);
    background: var(--bg);
}

.membership-intro {
    display: grid;
    grid-template-columns: 0.55fr 1.45fr;
    gap: 3rem;
    align-items: start;
    margin-bottom: 5rem;
}

.membership-intro h2 {
    max-width: 15ch;
}

.membership-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid var(--line-strong);
    border-bottom: 1px solid var(--line-strong);
}

.membership-card {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 2rem;
    align-items: center;
    min-height: 15rem;
    padding: 2rem;
    border-right: 1px solid var(--line-strong);
}

.membership-card:last-child {
    border-right: 0;
}

.membership-card.is-pro {
    background: linear-gradient(110deg, rgba(255, 77, 22, 0.07), transparent 60%);
}

.membership-card > div > span {
    color: #6f7881;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.membership-card h3 {
    margin: 0.25rem 0 0.6rem;
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: -0.045em;
}

.membership-card h3 small {
    margin-left: 0.35rem;
    color: var(--ember-light);
    font-size: 0.65rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.membership-card p {
    margin: 0;
    color: #818b94;
    font-size: 0.82rem;
}

.membership-card ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.membership-card li {
    position: relative;
    margin: 0.55rem 0;
    padding-left: 1rem;
    color: #959ea6;
    font-size: 0.78rem;
}

.membership-card li::before {
    position: absolute;
    top: 0.58rem;
    left: 0;
    width: 0.32rem;
    height: 0.32rem;
    border-radius: 50%;
    background: var(--ember);
    content: "";
}

.membership-card .btn {
    white-space: nowrap;
}

.pricing-status {
    color: #6f7881;
    font-size: 0.72rem;
    text-align: right;
}

.closing-section {
    position: relative;
    overflow: hidden;
    padding: clamp(7rem, 12vw, 13rem) 0;
    background:
        radial-gradient(circle at 72% 50%, rgba(255, 77, 22, 0.12), transparent 25rem),
        var(--bg-raised);
}

.closing-section::after {
    position: absolute;
    top: 50%;
    right: -13rem;
    width: 38rem;
    height: 38rem;
    border: 1px solid rgba(255, 113, 64, 0.12);
    content: "";
    transform: translateY(-50%) rotate(45deg);
    box-shadow: 0 0 0 6rem rgba(255, 77, 22, 0.012);
}

.closing-inner {
    position: relative;
    z-index: 1;
}

.closing-section h2 {
    max-width: 14ch;
    margin-bottom: 2.3rem;
}

.site-footer {
    padding: 4rem 0 1.5rem;
    border-top: 1px solid var(--line);
    background: #07090b;
}

.footer-main {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 3rem;
}

.footer-main img {
    height: 3.2rem;
}

.footer-main p {
    margin: 0.7rem 0 0;
    color: #666f78;
    font-size: 0.8rem;
}

.footer-main nav {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-main nav a {
    color: #848d95;
    font-size: 0.82rem;
    font-weight: 700;
    text-decoration: none;
}

.footer-main nav a:hover {
    color: #fff;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    margin-top: 3.5rem;
    padding-top: 1.2rem;
    border-top: 1px solid var(--line);
    color: #59626a;
    font-size: 0.7rem;
}

@media (max-width: 1399.98px) {
    .record-board {
        grid-template-columns: 1fr 1fr 1.5fr;
    }

    .record-status {
        display: none;
    }

    .record-board > div:nth-child(3) {
        border-right: 0;
    }

    .membership-card {
        grid-template-columns: 1fr 1fr;
    }

    .membership-card .btn,
    .pricing-status {
        grid-column: 1 / -1;
        justify-self: start;
        text-align: left;
    }
}

@media (max-width: 1199.98px) {
    .site-shell {
        width: min(calc(100% - 2.5rem), 110rem);
    }

    .navbar-collapse {
        margin: 0 0 1rem;
        padding: 1rem;
        border: 1px solid var(--line);
        background: var(--bg-raised);
    }

    .nav-actions {
        margin-top: 0.6rem;
        padding-top: 0.9rem;
        border-top: 1px solid var(--line);
    }

    .hero-layout,
    .section-lead,
    .leaders-layout {
        gap: 3.5rem;
    }

    .hero h1 {
        font-size: clamp(4rem, 8vw, 7rem);
    }

    .record-board {
        grid-template-columns: 1fr 1fr;
    }

    .record-board > div:nth-child(2) {
        border-right: 0;
    }

    .record-journey {
        grid-column: 1 / -1;
        border-top: 1px solid var(--line);
    }

    .leaders-layout {
        grid-template-columns: minmax(0, 0.8fr) minmax(31rem, 1.2fr);
    }

    .leader-capabilities {
        grid-template-columns: repeat(2, 1fr);
    }

    .leader-capabilities > div:nth-child(2) {
        border-right: 0;
    }

    .leader-capabilities > div:nth-child(n+3) {
        border-top: 1px solid var(--line);
    }

    .recognition-grid,
    .membership-grid {
        grid-template-columns: 1fr;
    }

    .language-panel,
    .membership-card {
        border-right: 0;
        border-bottom: 1px solid var(--line-strong);
    }
}

@media (max-width: 991.98px) {
    .hero {
        padding-top: 9rem;
    }

    .hero-layout,
    .section-lead,
    .leaders-layout,
    .membership-intro {
        grid-template-columns: 1fr;
    }

    .hero-aside {
        max-width: 42rem;
    }

    .section-lead .section-index {
        margin-bottom: 0;
    }

    .pillar-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .pillar-list article:nth-child(2) {
        border-right: 0;
    }

    .pillar-list article:nth-child(n+3) {
        border-top: 1px solid var(--line);
    }

    .leaders-copy {
        position: static;
    }

    .legacy-heading {
        display: block;
    }

    .legacy-heading h2 {
        margin: 0;
        text-align: left;
    }

    .legacy-heading h2 span,
    .legacy-heading h2 em {
        white-space: normal;
    }

    .legacy-track {
        grid-template-columns: repeat(3, 1fr);
        row-gap: 3.5rem;
    }

    .track-line {
        display: none;
    }

    .honor-panel {
        min-height: 32rem;
    }
}

@media (max-width: 767.98px) {
    .site-shell {
        width: min(calc(100% - 1.5rem), 110rem);
    }

    .navbar {
        min-height: 5.25rem;
    }

    .navbar-brand img {
        height: 2.7rem;
    }

    .hero {
        padding-top: 7.8rem;
    }

    .hero h1 {
        font-size: clamp(3.25rem, 15vw, 5.5rem);
    }

    .hero-intro {
        margin-bottom: 3rem;
    }

    .record-board {
        grid-template-columns: 1fr;
    }

    .record-board > div,
    .record-board > div:nth-child(2),
    .record-board > div:nth-child(3) {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .record-board > div:last-child {
        border-bottom: 0;
    }

    .record-journey {
        grid-column: auto;
    }

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

    .hero-principles span:nth-child(2) {
        border-right: 0;
    }

    .hero-principles span:nth-child(n+3) {
        border-top: 1px solid var(--line);
    }

    .section {
        padding: 6rem 0;
    }

    .section h2,
    .closing-section h2 {
        font-size: clamp(2.7rem, 12vw, 4.5rem);
    }

    .pillar-list {
        grid-template-columns: 1fr;
    }

    .pillar-list article,
    .pillar-list article:nth-child(2) {
        min-height: 15rem;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

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

    .pillar-list h3 {
        margin-top: 3.5rem;
    }

    .leaders-layout {
        gap: 3rem;
    }

    .ledger-head,
    .ledger-foot,
    .leadership-ledger article {
        grid-template-columns: 7rem 1fr;
        padding: 1rem;
    }

    .ledger-state {
        display: none;
    }

    .ledger-foot {
        display: flex;
    }

    .leader-capabilities {
        grid-template-columns: 1fr;
        margin-top: 3rem;
    }

    .leader-capabilities > div,
    .leader-capabilities > div:nth-child(2) {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .leader-capabilities > div:last-child {
        border-bottom: 0;
    }

    .legacy-heading {
        margin-bottom: 4rem;
    }

    .legacy-track {
        grid-template-columns: repeat(2, 1fr);
    }

    .language-panel,
    .honor-panel {
        min-height: auto;
        padding: 2rem 1.25rem;
    }

    .honor-panel {
        grid-template-columns: 1fr;
        gap: 2.2rem;
        text-align: center;
    }

    .honor-symbol {
        margin: 1rem auto;
    }

    .membership-card {
        grid-template-columns: 1fr;
    }

    .membership-card .btn,
    .pricing-status {
        grid-column: auto;
    }

    .closing-section {
        padding: 7rem 0;
    }

    .closing-section .btn {
        width: 100%;
    }

    .footer-main {
        display: block;
    }

    .footer-main nav {
        margin-top: 2rem;
    }
}

@media (max-width: 479.98px) {
    .section-index {
        font-size: 0.66rem;
    }

    .hero-actions,
    .hero-actions .btn {
        width: 100%;
    }

    .hero-actions {
        align-items: flex-start;
    }

    .record-board > div {
        padding: 1.25rem;
    }

    .journey-labels span:nth-child(2) {
        display: none;
    }

    .footer-main nav {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .footer-bottom {
        display: block;
    }

    .footer-bottom span {
        display: block;
        margin-top: 0.25rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
    }
}
