.technical-page {
    --tech-bg: #f3f6f8;
    --tech-surface: #ffffff;
    --tech-surface-soft: #e9eef2;
    --tech-ink: #122033;
    --tech-muted: #5d6a78;
    --tech-line: rgba(18, 32, 51, 0.14);
    --tech-brass: #a66f27;
    --tech-brass-bright: #ce9140;
    --tech-navy: #0b1829;
    padding-top: 5rem;
    overflow: clip;
    background: var(--tech-bg);
    color: var(--tech-ink);
}

html.dark .technical-page {
    --tech-bg: #0b1422;
    --tech-surface: #111e2f;
    --tech-surface-soft: #15263a;
    --tech-ink: #f2f5f7;
    --tech-muted: #a8b4c2;
    --tech-line: rgba(255, 255, 255, 0.12);
    --tech-brass: #d0a25e;
    --tech-brass-bright: #edbd75;
}

.tech-shell {
    width: min(100% - 2rem, 78rem);
    margin-inline: auto;
}

.tech-hero {
    position: relative;
    min-height: 43rem;
    isolation: isolate;
    display: flex;
    align-items: stretch;
    border-bottom: 1px solid var(--tech-line);
    background-position: center;
    background-size: cover;
}

.tech-hero--systems {
    background-image: url('../assets/technical/propulsion-systems-hero.webp');
}

.tech-hero--data {
    background-image: url('../assets/images/propeller_details.png');
}

.tech-hero::before,
.tech-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.tech-hero::before {
    z-index: -2;
    background: linear-gradient(90deg, rgba(247, 250, 252, 0.99) 0%, rgba(247, 250, 252, 0.94) 47%, rgba(247, 250, 252, 0.58) 72%, rgba(247, 250, 252, 0.2) 100%);
}

.tech-hero::after {
    z-index: -1;
    opacity: 0.42;
    background-image: linear-gradient(rgba(18, 32, 51, 0.08) 1px, transparent 1px), linear-gradient(90deg, rgba(18, 32, 51, 0.08) 1px, transparent 1px);
    background-size: 4rem 4rem;
    mask-image: linear-gradient(90deg, #000, transparent 72%);
}

html.dark .tech-hero::before {
    background: linear-gradient(90deg, rgba(7, 15, 27, 0.99) 0%, rgba(7, 15, 27, 0.94) 49%, rgba(7, 15, 27, 0.58) 75%, rgba(7, 15, 27, 0.24) 100%);
}

html.dark .tech-hero::after {
    opacity: 0.55;
    background-image: linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
}

.tech-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 22rem;
    align-items: end;
    gap: clamp(2rem, 6vw, 7rem);
    padding-block: clamp(7rem, 12vw, 11rem) clamp(4rem, 8vw, 6rem);
}

.tech-hero__content {
    max-width: 48rem;
}

.tech-eyebrow {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 0 0 1.2rem;
    color: var(--tech-brass);
    font-family: 'Barlow Condensed', 'Montserrat', sans-serif;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.21em;
    line-height: 1.2;
}

.tech-eyebrow span {
    width: 2.75rem;
    height: 1px;
    flex: none;
    background: currentColor;
}

.tech-hero h1,
.tech-section h2,
.tech-project-cta h2 {
    margin: 0;
    color: var(--tech-ink);
    font-family: 'Barlow Condensed', 'Montserrat', sans-serif;
    font-weight: 750;
    letter-spacing: -0.03em;
    text-wrap: balance;
}

.tech-hero h1 {
    max-width: 11ch;
    font-size: clamp(4rem, 8vw, 7.6rem);
    line-height: 0.84;
}

.tech-hero__lead {
    max-width: 42rem;
    margin: 2rem 0 0;
    color: var(--tech-muted);
    font-size: clamp(1rem, 1.8vw, 1.28rem);
    line-height: 1.7;
}

.tech-hero__actions,
.tech-project-cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 2rem;
}

.tech-button {
    min-height: 3.2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    padding: 0.75rem 1.35rem;
    border: 1px solid transparent;
    border-radius: 0.2rem;
    font-size: 0.86rem;
    font-weight: 800;
    letter-spacing: 0.015em;
    text-decoration: none;
    transition: transform 0.25s ease, background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.tech-button:hover {
    transform: translateY(-2px);
}

.tech-button--primary {
    background: var(--tech-brass);
    color: #fff;
}

html.dark .tech-button--primary {
    color: #0a1421;
}

.tech-button--primary:hover {
    background: var(--tech-brass-bright);
}

.tech-button--ghost {
    border-color: var(--tech-line);
    background: color-mix(in srgb, var(--tech-surface) 75%, transparent);
    color: var(--tech-ink);
    backdrop-filter: blur(12px);
}

.tech-button--ghost:hover {
    border-color: var(--tech-brass);
}

.tech-hero__metrics {
    margin: 0;
    border: 1px solid var(--tech-line);
    background: color-mix(in srgb, var(--tech-surface) 82%, transparent);
    box-shadow: 0 2rem 5rem rgba(3, 10, 20, 0.13);
    backdrop-filter: blur(18px);
}

.tech-hero__metrics > div {
    display: grid;
    grid-template-columns: 7rem 1fr;
    align-items: center;
    gap: 1rem;
    min-height: 6.8rem;
    padding: 1.1rem 1.3rem;
    border-bottom: 1px solid var(--tech-line);
}

.tech-hero__metrics > div:last-child {
    border-bottom: 0;
}

.tech-hero__metrics dt {
    color: var(--tech-brass);
    font-family: 'Barlow Condensed', 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.tech-hero__metrics dd {
    margin: 0;
    color: var(--tech-muted);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    line-height: 1.4;
    text-transform: uppercase;
}

.tech-section-nav {
    position: sticky;
    top: 5rem;
    z-index: 20;
    overflow-x: auto;
    border-bottom: 1px solid var(--tech-line);
    background: color-mix(in srgb, var(--tech-bg) 90%, transparent);
    backdrop-filter: blur(18px);
    scrollbar-width: none;
}

.tech-section-nav::-webkit-scrollbar {
    display: none;
}

.tech-section-nav .tech-shell {
    display: flex;
    width: max-content;
    min-width: min(100% - 2rem, 78rem);
}

.tech-section-nav a {
    position: relative;
    padding: 1.15rem 1.25rem;
    color: var(--tech-muted);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-decoration: none;
    text-transform: uppercase;
    white-space: nowrap;
}

.tech-section-nav a::after {
    content: '';
    position: absolute;
    right: 1.25rem;
    bottom: 0;
    left: 1.25rem;
    height: 2px;
    transform: scaleX(0);
    background: var(--tech-brass);
    transition: transform 0.25s ease;
}

.tech-section-nav a:hover,
.tech-section-nav a:focus-visible {
    color: var(--tech-ink);
}

.tech-section-nav a:hover::after,
.tech-section-nav a:focus-visible::after {
    transform: scaleX(1);
}

.tech-section {
    padding-block: clamp(5rem, 9vw, 9rem);
    scroll-margin-top: 8rem;
}

.tech-section--tint,
.tech-section--anodes {
    border-block: 1px solid var(--tech-line);
    background: var(--tech-surface-soft);
}

.tech-split {
    display: grid;
    grid-template-columns: minmax(0, 1.03fr) minmax(0, 0.97fr);
    gap: clamp(2rem, 6vw, 6rem);
    align-items: center;
}

.tech-media-card {
    position: relative;
    min-height: 38rem;
    overflow: hidden;
    background: var(--tech-navy);
    box-shadow: 0 2rem 5rem rgba(4, 14, 26, 0.18);
}

.tech-media-card::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(180deg, transparent 45%, rgba(4, 13, 23, 0.94));
}

.tech-media-card img {
    width: 100%;
    height: 100%;
    min-height: 38rem;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.tech-media-card:hover img {
    transform: scale(1.035);
}

.tech-media-card__caption {
    position: absolute;
    right: 2rem;
    bottom: 2rem;
    left: 2rem;
    z-index: 2;
    display: grid;
    grid-template-columns: 3rem 1fr;
    align-items: start;
    gap: 1rem;
    color: #fff;
}

.tech-media-card__caption span {
    padding-top: 0.2rem;
    border-top: 2px solid var(--tech-brass-bright);
    color: var(--tech-brass-bright);
    font-weight: 800;
}

.tech-media-card__caption p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.55;
}

.tech-section h2 {
    max-width: 15ch;
    font-size: clamp(2.65rem, 5vw, 4.7rem);
    line-height: 0.98;
}

.tech-copy > .tech-richtext,
.tech-heading-row > p,
.tech-heading-row .tech-richtext,
.tech-bow-copy > p,
.tech-capability-grid > div > p {
    color: var(--tech-muted);
    line-height: 1.75;
}

.tech-copy > .tech-richtext {
    margin-top: 1.5rem;
    font-size: 1.02rem;
}

.tech-grade-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.65rem;
    margin-top: 2rem;
}

.tech-grade-grid article {
    min-width: 0;
    padding: 1rem;
    border: 1px solid var(--tech-line);
    background: var(--tech-surface);
}

.tech-grade-grid strong {
    display: block;
    color: var(--tech-brass);
    font-family: 'Barlow Condensed', 'Montserrat', sans-serif;
    font-size: 1.8rem;
}

.tech-grade-grid span {
    display: block;
    margin-top: 0.35rem;
    color: var(--tech-muted);
    font-size: 0.68rem;
    line-height: 1.4;
}

.tech-component-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.25rem;
}

.tech-component-list span {
    padding: 0.5rem 0.7rem;
    border: 1px solid var(--tech-line);
    border-radius: 99rem;
    color: var(--tech-muted);
    font-size: 0.7rem;
    font-weight: 700;
}

.tech-inline-link {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    margin-top: 1.7rem;
    color: var(--tech-brass);
    font-size: 0.83rem;
    font-weight: 800;
    text-decoration: none;
}

.tech-inline-link i {
    transition: transform 0.25s ease;
}

.tech-inline-link:hover i {
    transform: translateX(0.3rem);
}

.tech-heading-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(17rem, 25rem);
    gap: 2rem;
    align-items: end;
    margin-bottom: 3rem;
}

.tech-heading-row--wide {
    grid-template-columns: minmax(0, 1fr) minmax(18rem, 34rem);
}

.tech-heading-row > p,
.tech-heading-row .tech-richtext {
    margin: 0;
    font-size: 0.94rem;
}

.tech-steering-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 1px solid var(--tech-line);
    border-left: 1px solid var(--tech-line);
}

.tech-steering-grid article {
    position: relative;
    min-height: 19rem;
    padding: 1.5rem;
    border-right: 1px solid var(--tech-line);
    border-bottom: 1px solid var(--tech-line);
    background: var(--tech-surface);
    transition: transform 0.25s ease, background-color 0.25s ease;
}

.tech-steering-grid article:hover {
    z-index: 2;
    transform: translateY(-0.4rem);
}

.tech-steering-grid .tech-index {
    color: var(--tech-muted);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.tech-steering-grid i {
    display: block;
    margin-top: 3.5rem;
    color: var(--tech-brass);
    font-size: 1.5rem;
}

.tech-steering-grid h3 {
    margin: 1.2rem 0 0;
    color: var(--tech-ink);
    font-size: 1rem;
    line-height: 1.35;
}

.tech-steering-grid p {
    margin: 0.7rem 0 0;
    color: var(--tech-muted);
    font-size: 0.78rem;
    line-height: 1.55;
}

.tech-bow-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: clamp(2rem, 6vw, 6rem);
    align-items: center;
}

.tech-check-list {
    display: grid;
    gap: 0.8rem;
    margin: 1.7rem 0 0;
    padding: 0;
    list-style: none;
}

.tech-check-list li {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    color: var(--tech-ink);
    font-size: 0.85rem;
    font-weight: 700;
}

.tech-check-list i {
    color: var(--tech-brass);
}

.tech-thruster-panel {
    padding: 1rem;
    border: 1px solid var(--tech-line);
    background: var(--tech-surface);
    box-shadow: 0 2rem 5rem rgba(4, 14, 26, 0.12);
}

.tech-thruster-panel__image {
    height: 19rem;
    overflow: hidden;
    background: #d9dde0;
}

.tech-thruster-panel__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tech-thruster-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 1rem;
    border-top: 1px solid var(--tech-line);
    border-left: 1px solid var(--tech-line);
}

.tech-thruster-grid article {
    padding: 1rem;
    border-right: 1px solid var(--tech-line);
    border-bottom: 1px solid var(--tech-line);
}

.tech-thruster-grid h3 {
    margin: 0 0 0.9rem;
    color: var(--tech-brass);
    font-family: 'Barlow Condensed', 'Montserrat', sans-serif;
    font-size: 1.55rem;
}

.tech-thruster-grid dl,
.tech-thruster-grid dl div {
    margin: 0;
}

.tech-thruster-grid dl div {
    display: flex;
    justify-content: space-between;
    gap: 0.5rem;
    padding-block: 0.35rem;
    border-top: 1px solid var(--tech-line);
    font-size: 0.68rem;
}

.tech-thruster-grid dt {
    color: var(--tech-muted);
}

.tech-thruster-grid dd {
    margin: 0;
    color: var(--tech-ink);
    font-weight: 800;
}

.tech-data-note {
    margin: 1rem 0 0;
    color: var(--tech-muted);
    font-size: 0.72rem;
    line-height: 1.55;
}

.tech-thruster-panel > .tech-data-note {
    padding-inline: 0.2rem;
}

.tech-filter {
    display: grid;
    grid-template-columns: minmax(16rem, 24rem) 1fr;
    gap: 1rem;
    align-items: start;
    margin-bottom: 2rem;
}

.tech-search {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    min-height: 3.25rem;
    padding-inline: 1rem;
    border: 1px solid var(--tech-line);
    background: var(--tech-surface);
    color: var(--tech-muted);
}

.tech-search:focus-within {
    border-color: var(--tech-brass);
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--tech-brass) 18%, transparent);
}

.tech-search input {
    width: 100%;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--tech-ink);
    font-size: 0.82rem;
}

.tech-search input::placeholder {
    color: var(--tech-muted);
}

.tech-filter__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tech-filter__buttons button {
    min-height: 3.25rem;
    padding: 0.6rem 0.8rem;
    border: 1px solid var(--tech-line);
    background: var(--tech-surface);
    color: var(--tech-muted);
    cursor: pointer;
    font-size: 0.69rem;
    font-weight: 800;
    transition: border-color 0.2s ease, color 0.2s ease, background-color 0.2s ease;
}

.tech-filter__buttons button span {
    margin-left: 0.35rem;
    color: var(--tech-brass);
}

.tech-filter__buttons button:hover,
.tech-filter__buttons button.is-active {
    border-color: var(--tech-brass);
    background: color-mix(in srgb, var(--tech-brass) 10%, var(--tech-surface));
    color: var(--tech-ink);
}

.tech-anode-groups {
    display: grid;
    gap: 1rem;
}

.tech-anode-group {
    border: 1px solid var(--tech-line);
    background: var(--tech-surface);
}

.tech-anode-group > header {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
    padding: 1.1rem 1.25rem;
    border-bottom: 1px solid var(--tech-line);
}

.tech-anode-group > header > div {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.tech-anode-group > header span {
    color: var(--tech-brass);
    font-size: 0.62rem;
    font-weight: 900;
    letter-spacing: 0.14em;
}

.tech-anode-group h3 {
    margin: 0;
    color: var(--tech-ink);
    font-size: 1rem;
}

.tech-anode-group small {
    color: var(--tech-muted);
    font-size: 0.68rem;
}

.tech-anode-grid {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
}

.tech-anode-grid article {
    min-width: 0;
    padding: 1rem;
    border-right: 1px solid var(--tech-line);
    border-bottom: 1px solid var(--tech-line);
}

.tech-anode-grid strong,
.tech-anode-grid span {
    display: block;
    overflow-wrap: anywhere;
}

.tech-anode-grid strong {
    color: var(--tech-ink);
    font-family: 'Barlow Condensed', 'Montserrat', sans-serif;
    font-size: 1.05rem;
}

.tech-anode-grid span {
    margin-top: 0.25rem;
    color: var(--tech-brass);
    font-size: 0.7rem;
    font-weight: 800;
}

.tech-empty {
    margin: 0;
    padding: 3rem;
    border: 1px dashed var(--tech-line);
    color: var(--tech-muted);
    text-align: center;
}

.tech-project-cta {
    padding-block: clamp(4rem, 8vw, 7rem);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    background: #07111f;
}

.tech-project-cta__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 2rem;
    align-items: center;
}

.tech-project-cta h2 {
    max-width: 22ch;
    color: #f6f8fb;
    font-size: clamp(2.2rem, 4vw, 3.8rem);
    line-height: 1;
}

.tech-project-cta__actions {
    justify-content: flex-end;
    margin-top: 0;
}

.tech-project-cta .tech-button--ghost {
    border-color: rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
}

/* Technical data page */
.tech-hub-layout {
    display: grid;
    grid-template-columns: minmax(18rem, 0.72fr) minmax(0, 1.28fr);
    gap: 2rem;
    align-items: start;
}

.tech-hub-diagram {
    position: sticky;
    top: 9rem;
    margin: 0;
    padding: 1.4rem;
    border: 1px solid var(--tech-line);
    background: var(--tech-surface);
}

.tech-hub-diagram svg {
    width: 100%;
    height: auto;
    color: var(--tech-ink);
}

.tech-hub-diagram figcaption {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
    margin-top: 1rem;
}

.tech-hub-diagram figcaption span {
    display: grid;
    grid-template-columns: 2rem 1fr;
    gap: 0.4rem;
    color: var(--tech-muted);
    font-size: 0.7rem;
}

.tech-hub-diagram figcaption strong {
    color: var(--tech-brass);
}

.tech-table-wrap {
    max-width: 100%;
    overflow-x: auto;
    border: 1px solid var(--tech-line);
    background: var(--tech-surface);
    outline: none;
}

.tech-table-wrap:focus-visible {
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--tech-brass) 20%, transparent);
}

.tech-table-wrap--spaced {
    margin-top: 1rem;
}

.tech-table {
    width: 100%;
    min-width: 48rem;
    border-collapse: collapse;
    color: var(--tech-ink);
    font-size: 0.76rem;
}

.tech-table caption {
    padding: 1rem;
    border-bottom: 1px solid var(--tech-line);
    color: var(--tech-brass);
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-align: left;
    text-transform: uppercase;
}

.tech-table th,
.tech-table td {
    padding: 0.75rem 0.85rem;
    border-right: 1px solid var(--tech-line);
    border-bottom: 1px solid var(--tech-line);
    text-align: center;
    white-space: nowrap;
}

.tech-table thead th {
    background: var(--tech-navy);
    color: #f5f7f9;
    font-size: 0.67rem;
    letter-spacing: 0.025em;
}

.tech-table tbody th {
    position: sticky;
    left: 0;
    z-index: 1;
    background: var(--tech-surface);
    color: var(--tech-ink);
    text-align: left;
}

.tech-table tbody tr:nth-child(even) td,
.tech-table tbody tr:nth-child(even) th {
    background: color-mix(in srgb, var(--tech-surface-soft) 58%, var(--tech-surface));
}

.tech-table .is-highlight,
.tech-table tbody tr:nth-child(even) .is-highlight {
    background: color-mix(in srgb, var(--tech-brass) 17%, var(--tech-surface));
    color: var(--tech-ink);
    font-weight: 800;
}

.tech-table--hub {
    min-width: 40rem;
}

.tech-class-legend {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.65rem;
    margin-bottom: 1rem;
}

.tech-class-legend div {
    display: grid;
    grid-template-columns: 3.5rem 1fr;
    align-items: center;
    gap: 0.75rem;
    min-height: 5rem;
    padding: 0.85rem;
    border: 1px solid var(--tech-line);
    background: var(--tech-surface);
}

.tech-class-legend strong {
    color: var(--tech-brass);
    font-family: 'Barlow Condensed', 'Montserrat', sans-serif;
    font-size: 2rem;
    text-align: center;
}

.tech-class-legend span {
    color: var(--tech-muted);
    font-size: 0.72rem;
    line-height: 1.4;
}

.tech-class-legend .is-highlight {
    border-color: var(--tech-brass);
    background: color-mix(in srgb, var(--tech-brass) 11%, var(--tech-surface));
}

.tech-alloy-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin-bottom: 1rem;
}

.tech-alloy-cards article {
    display: grid;
    grid-template-columns: 5rem 1fr;
    grid-template-rows: auto auto;
    column-gap: 1rem;
    padding: 1.2rem;
    border: 1px solid var(--tech-line);
    background: var(--tech-surface);
}

.tech-alloy-mark {
    grid-row: 1 / span 2;
    display: grid;
    place-items: center;
    width: 5rem;
    aspect-ratio: 1;
    border-radius: 50%;
    background: radial-gradient(circle at 34% 30%, #f0cf91, #a9702f 58%, #72451d);
    color: #fff7e7;
    font-family: 'Barlow Condensed', 'Montserrat', sans-serif;
    font-size: 1.25rem;
    font-weight: 900;
    box-shadow: inset -0.6rem -0.7rem 1rem rgba(50, 20, 2, 0.28);
}

.tech-alloy-cards h3 {
    align-self: end;
    margin: 0;
    color: var(--tech-ink);
    font-size: 1rem;
}

.tech-alloy-cards p {
    margin: 0.35rem 0 0;
    color: var(--tech-muted);
    font-size: 0.74rem;
}

.tech-section--capability {
    position: relative;
    background: #07111f;
    color: #f5f7f9;
}

.tech-section--capability::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.36;
    background-image: linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
    background-size: 4rem 4rem;
    mask-image: linear-gradient(90deg, #000, transparent);
}

.tech-capability-grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: clamp(2rem, 6vw, 6rem);
    align-items: center;
}

.tech-section--capability h2,
.tech-section--capability .tech-inline-link {
    color: #f5f7f9;
}

.tech-section--capability .tech-inline-link {
    color: #e4b976;
}

.tech-section--capability .tech-capability-grid > div > p {
    color: #aeb9c6;
}

.tech-capability-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.tech-capability-stats div {
    min-height: 10rem;
    padding: 1.4rem;
    border-right: 1px solid rgba(255, 255, 255, 0.14);
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.tech-capability-stats dt {
    color: #e4b976;
    font-family: 'Barlow Condensed', 'Montserrat', sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 800;
    letter-spacing: -0.02em;
}

.tech-capability-stats dd {
    margin: 0.8rem 0 0;
    color: #aeb9c6;
    font-size: 0.75rem;
    line-height: 1.5;
}

@media (max-width: 1024px) {
    .tech-hero__grid {
        grid-template-columns: minmax(0, 1fr) 19rem;
        gap: 2rem;
    }

    .tech-steering-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .tech-anode-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .tech-filter {
        grid-template-columns: 1fr;
    }

    .tech-hub-layout {
        grid-template-columns: 1fr;
    }

    .tech-hub-diagram {
        position: static;
        max-width: 42rem;
    }
}

@media (max-width: 780px) {
    .technical-page {
        padding-top: 5rem;
    }

    .tech-hero {
        min-height: auto;
        background-position: 66% center;
    }

    .tech-hero::before,
    html.dark .tech-hero::before {
        background: linear-gradient(180deg, color-mix(in srgb, var(--tech-bg) 96%, transparent) 0%, color-mix(in srgb, var(--tech-bg) 91%, transparent) 66%, color-mix(in srgb, var(--tech-bg) 98%, transparent) 100%);
    }

    .tech-hero__grid {
        grid-template-columns: 1fr;
        align-items: end;
        padding-block: 6.5rem 3rem;
    }

    .tech-hero h1 {
        max-width: 10ch;
        font-size: clamp(3.5rem, 18vw, 5.4rem);
    }

    .tech-hero__metrics {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .tech-hero__metrics > div {
        display: block;
        min-height: 7.5rem;
        border-right: 1px solid var(--tech-line);
        padding: 1rem;
    }

    .tech-hero__metrics dt {
        font-size: 1.65rem;
    }

    .tech-hero__metrics dd {
        margin-top: 0.4rem;
        font-size: 0.64rem;
    }

    .tech-split,
    .tech-bow-layout,
    .tech-capability-grid,
    .tech-project-cta__inner,
    .tech-heading-row,
    .tech-heading-row--wide {
        grid-template-columns: 1fr;
    }

    .tech-media-card,
    .tech-media-card img {
        min-height: 28rem;
    }

    .tech-heading-row {
        align-items: start;
    }

    .tech-steering-grid {
        grid-template-columns: 1fr;
    }

    .tech-steering-grid article {
        min-height: 15rem;
    }

    .tech-steering-grid i {
        margin-top: 2rem;
    }

    .tech-thruster-grid {
        grid-template-columns: 1fr;
    }

    .tech-thruster-panel__image {
        height: 15rem;
    }

    .tech-anode-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .tech-project-cta__actions {
        justify-content: flex-start;
    }

    .tech-class-legend {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .tech-alloy-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 520px) {
    .tech-shell {
        width: min(100% - 1.25rem, 78rem);
    }

    .tech-hero__actions,
    .tech-project-cta__actions {
        align-items: stretch;
        flex-direction: column;
    }

    .tech-button {
        width: 100%;
    }

    .tech-section {
        padding-block: 4rem;
    }

    .tech-section h2 {
        font-size: 2.55rem;
    }

    .tech-grade-grid,
    .tech-class-legend,
    .tech-capability-stats {
        grid-template-columns: 1fr;
    }

    .tech-media-card,
    .tech-media-card img {
        min-height: 22rem;
    }

    .tech-media-card__caption {
        right: 1rem;
        bottom: 1rem;
        left: 1rem;
    }

    .tech-thruster-panel {
        padding: 0.65rem;
    }

    .tech-filter__buttons {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .tech-filter__buttons button {
        min-width: 0;
        overflow-wrap: anywhere;
    }

    .tech-anode-group > header {
        align-items: flex-start;
    }

    .tech-anode-group > header > div {
        align-items: flex-start;
        flex-direction: column;
        gap: 0.35rem;
    }

    .tech-anode-grid article {
        padding: 0.8rem;
    }

    .tech-hub-diagram {
        padding: 0.75rem;
    }

    .tech-hub-diagram figcaption {
        grid-template-columns: 1fr;
    }

    .tech-alloy-cards article {
        grid-template-columns: 4rem 1fr;
    }

    .tech-alloy-mark {
        width: 4rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .tech-button,
    .tech-media-card img,
    .tech-inline-link i,
    .tech-steering-grid article {
        transition: none;
    }
}
