:root {
    --wrench-navy: #0b1b2b;
    --wrench-slate: #2f3a4a;
    --wrench-muted: #6d7c91;
    --wrench-ocean: #2b6df6;
    --wrench-aurora: #35c0a3;
    --wrench-ember: #f26b4c;
    --wrench-gold: #e5b355;
    --wrench-cloud: #f4f7fb;
    --wrench-surface: #ffffff;
    --wrench-border: #dbe3ee;
    --wrench-shadow: rgba(11, 27, 43, 0.12);
    --wrench-glow: rgba(43, 109, 246, 0.12);
}

body {
    font-family: 'Space Grotesk', 'Segoe UI', sans-serif;
    color: var(--wrench-navy);
    background: linear-gradient(135deg, #f7f9ff 0%, #eef3ff 45%, #f7f4ec 100%);
    position: relative;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background:
        radial-gradient(circle at 20% 10%, rgba(43, 109, 246, 0.12), transparent 45%),
        radial-gradient(circle at 90% 15%, rgba(53, 192, 163, 0.12), transparent 40%),
        repeating-linear-gradient(90deg, rgba(11, 27, 43, 0.03) 0 1px, transparent 1px 70px),
        repeating-linear-gradient(0deg, rgba(11, 27, 43, 0.03) 0 1px, transparent 1px 70px);
    opacity: 0.75;
    pointer-events: none;
    z-index: 0;
}

#wrapper {
    background: transparent;
    position: relative;
    z-index: 1;
}

p,
li,
a,
button,
input,
textarea,
select {
    font-family: 'Space Grotesk', 'Segoe UI', sans-serif;
}

a {
    color: var(--wrench-ocean);
}

a:hover {
    color: var(--wrench-ember);
    opacity: 1;
}

h1,
h2,
h3,
h4,
.section-title {
    font-family: 'Newsreader', 'Georgia', serif;
    color: var(--wrench-navy);
}

#banner h1,
#banner h2 {
    font-family: 'Newsreader', 'Georgia', serif;
}

.section-heading h3 {
    letter-spacing: 0.3em;
    font-size: 0.75em;
    font-weight: 600;
    color: var(--wrench-muted);
    text-transform: uppercase;
}

.section-heading {
    text-align: left;
}

.section-subtitle {
    color: var(--wrench-muted);
    font-size: 1.05em;
}

.page-border .bottom-border,
.page-border .left-border,
.page-border .right-border,
.page-border .top-border {
    background: rgba(219, 227, 238, 0.55);
}

.page-border > .top-border,
.page-border > .right-border,
.page-border > .bottom-border,
.page-border > .left-border {
    padding: 6px;
    background: rgba(219, 227, 238, 0.8);
}

#header.nav-solid,
#header.nav-solid a,
#header.nav-solid i,
#nav-mobile ul li a {
    color: var(--wrench-navy);
}

#header.nav-solid {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 18px 40px rgba(11, 27, 43, 0.08);
}

#header nav a {
    font-weight: 600;
    letter-spacing: 0.02em;
}

#banner {
    background: linear-gradient(140deg, rgba(255, 255, 255, 0.7) 0%, rgba(236, 243, 255, 0.8) 50%, rgba(247, 244, 236, 0.9) 100%);
    position: relative;
    overflow: hidden;
}

#banner::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 12% 20%, rgba(43, 109, 246, 0.18), transparent 55%),
        radial-gradient(circle at 80% 0%, rgba(53, 192, 163, 0.18), transparent 45%);
    pointer-events: none;
}

#banner-content {
    background: none;
    position: relative;
    z-index: 1;
}

#banner h1 {
    font-size: 3.1em;
    line-height: 1.05em;
    font-weight: 700;
}

#banner h2 {
    font-size: 1.05em;
    font-weight: 400;
    color: var(--wrench-muted);
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 3.6em;
    align-items: center;
}

.hero-copy {
    padding-right: 1em;
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.6em;
    padding: 0.35em 0.9em;
    border-radius: 999px;
    border: 1px solid rgba(43, 109, 246, 0.25);
    background: rgba(255, 255, 255, 0.75);
    font-size: 0.78em;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--wrench-slate);
}

.hero-kicker-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--wrench-aurora);
    box-shadow: 0 0 12px rgba(53, 192, 163, 0.6);
}

.hero-lede {
    font-size: 1.1em;
    color: var(--wrench-muted);
    margin-top: 1em;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8em;
    margin-top: 1.8em;
}

.hero-metrics {
    margin-top: 2.2em;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1em;
}

.metric-card {
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid var(--wrench-border);
    border-radius: 16px;
    padding: 0.9em 1em;
    box-shadow: 0 12px 28px rgba(11, 27, 43, 0.08);
}

.metric-value {
    display: block;
    font-size: 1.2em;
    font-weight: 700;
}

.metric-label {
    display: block;
    font-size: 0.85em;
    color: var(--wrench-muted);
    margin-top: 0.3em;
}

.hero-visual {
    display: grid;
    gap: 1.2em;
}

.hero-figure {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid var(--wrench-border);
    border-radius: 22px;
    padding: 1.4em;
    box-shadow: 0 20px 50px rgba(11, 27, 43, 0.1);
    position: relative;
    overflow: hidden;
}

.hero-figure::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(43, 109, 246, 0.14), transparent 55%);
    pointer-events: none;
}

.hero-figure img {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    z-index: 1;
}

.hero-figure-caption {
    margin-top: 0.8em;
    font-size: 0.85em;
    color: var(--wrench-muted);
}

.signal-grid {
    display: grid;
    gap: 1em;
}

.signal-card {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid var(--wrench-border);
    border-radius: 18px;
    padding: 1.3em 1.4em;
    box-shadow: 0 16px 36px rgba(11, 27, 43, 0.08);
}

.signal-primary {
    border-color: rgba(43, 109, 246, 0.4);
    background: linear-gradient(150deg, rgba(43, 109, 246, 0.1) 0%, rgba(53, 192, 163, 0.08) 55%, #ffffff 100%);
}

.signal-title {
    display: inline-flex;
    align-items: center;
    gap: 0.4em;
    font-size: 0.75em;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--wrench-ocean);
}

.signal-card h3 {
    font-size: 1.3em;
    margin: 0.4em 0 0.5em;
}

.signal-card p {
    margin: 0 0 0.8em;
    color: var(--wrench-muted);
}

.signal-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8em 1.2em;
    color: var(--wrench-slate);
    font-weight: 600;
    font-size: 0.9em;
}

.signal-meta i {
    color: var(--wrench-ocean);
}

.signal-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.6em;
}

.signal-links a {
    display: inline-flex;
    align-items: center;
    gap: 0.5em;
    color: var(--wrench-navy);
    font-weight: 600;
}

.signal-links a:hover {
    color: var(--wrench-ember);
}

.button {
    background: var(--wrench-ember);
    border-color: var(--wrench-ember);
    color: #fff;
    border-radius: 999px;
    padding: 0.85em 1.8em;
    font-weight: 600;
    letter-spacing: 0.02em;
    box-shadow: 0 14px 30px rgba(242, 107, 76, 0.22);
    font-family: 'Space Grotesk', 'Segoe UI', sans-serif;
}

.button:hover {
    background: #e5573f;
    border-color: #e5573f;
    color: #fff;
}

.button.ghost {
    background: transparent;
    color: var(--wrench-ember);
    border: 1.5px solid var(--wrench-ember);
    box-shadow: none;
}

.button.ghost:hover {
    background: rgba(242, 107, 76, 0.12);
    color: var(--wrench-ember);
}

#banner .button {
    background: var(--wrench-ember);
    color: #fff;
    border-color: var(--wrench-ember);
}

#banner .button:hover {
    background: #e5573f;
    border-color: #e5573f;
}

#banner .button.ghost {
    background: transparent;
    color: var(--wrench-ember);
    border-color: var(--wrench-ember);
}

#banner .button.ghost:hover {
    background: rgba(242, 107, 76, 0.12);
    color: var(--wrench-ember);
}

.section-slab {
    position: relative;
}

.section-slab::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(244, 247, 251, 0.6), rgba(244, 247, 251, 0.95));
    opacity: 0.95;
    pointer-events: none;
}

.section-slab > .row {
    position: relative;
    z-index: 1;
}

.secondary-color {
    background-color: rgba(244, 247, 251, 0.92);
}

section {
    position: relative;
}

section::after {
    content: "";
    position: absolute;
    left: 6%;
    right: 6%;
    bottom: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(11, 27, 43, 0.12) 20%, rgba(11, 27, 43, 0.12) 80%, transparent 100%);
    opacity: 0.6;
}

#framework {
    background: rgba(255, 255, 255, 0.92);
}

#publications {
    background: linear-gradient(135deg, rgba(236, 243, 255, 0.85) 0%, rgba(255, 255, 255, 0.95) 100%);
}

#usage {
    background: linear-gradient(135deg, rgba(247, 244, 236, 0.7) 0%, rgba(255, 255, 255, 0.95) 100%);
}

#about {
    background: linear-gradient(135deg, rgba(235, 247, 244, 0.8) 0%, rgba(255, 255, 255, 0.96) 100%);
}

#dev-corner {
    background: linear-gradient(135deg, rgba(236, 243, 255, 0.75) 0%, rgba(255, 255, 255, 0.98) 100%);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.4em;
    margin-top: 2.2em;
}

.framework-feature-stack .feature-grid {
    margin-top: 0;
}

.framework-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 2.6em;
    align-items: center;
}

.framework-copy {
    max-width: 540px;
}

.framework-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6em;
    margin-top: 1.2em;
}

.framework-tags span {
    background: rgba(43, 109, 246, 0.12);
    color: var(--wrench-ocean);
    border-radius: 999px;
    padding: 0.35em 0.8em;
    font-size: 0.85em;
    font-weight: 600;
}

.framework-steps {
    display: grid;
    gap: 0.9em;
    margin-top: 1.4em;
}

.framework-step {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--wrench-border);
    border-radius: 14px;
    padding: 0.9em 1em;
    box-shadow: 0 12px 24px rgba(11, 27, 43, 0.06);
}

.framework-step p {
    margin: 0.3em 0 0;
    color: var(--wrench-muted);
}

.step-label {
    display: inline-flex;
    align-items: center;
    gap: 0.4em;
    font-size: 0.75em;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--wrench-aurora);
}

.framework-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8em;
    margin-top: 1.6em;
}

.framework-figure {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid var(--wrench-border);
    border-radius: 22px;
    padding: 1.4em;
    box-shadow: 0 20px 40px rgba(11, 27, 43, 0.08);
    max-width: 480px;
    justify-self: end;
}

.framework-figure img {
    width: 100%;
    height: auto;
    display: block;
}

.figure-caption {
    margin-top: 0.8em;
    font-size: 0.85em;
    color: var(--wrench-muted);
}

.feature-card {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid var(--wrench-border);
    border-radius: 18px;
    padding: 1.5em;
    box-shadow: 0 18px 40px rgba(11, 27, 43, 0.06);
}

.feature-card h4 {
    font-size: 1.05em;
    letter-spacing: 0.02em;
}

.feature-card i {
    color: var(--wrench-ocean);
    font-size: 1.2em;
}

.feature-card.accent-teal i {
    color: var(--wrench-aurora);
}

.feature-card.accent-gold i {
    color: var(--wrench-gold);
}

.feature-card.accent-orange i {
    color: var(--wrench-ember);
}

.feature-card.accent-ink i {
    color: var(--wrench-navy);
}

.content-card {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid var(--wrench-border);
    border-radius: 18px;
    padding: 1.6em;
    box-shadow: 0 18px 40px rgba(11, 27, 43, 0.06);
    max-width: 820px;
    margin: 1.5em auto;
    text-align: left;
}

.content-card .card-title {
    font-size: 1.2em;
    display: block;
    margin-bottom: 0.4em;
}

.publication-highlight {
    margin: 1.4em 0;
    padding: 1.2em 1.4em;
    border-radius: 18px;
    border: 1px dashed rgba(43, 109, 246, 0.4);
    background: rgba(255, 255, 255, 0.85);
}

.publication-highlight h4 {
    margin-bottom: 0.6em;
}

.publication-highlight ul {
    margin: 0;
    padding-left: 1.2em;
    color: var(--wrench-muted);
}

.about-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 1.6em;
    width: 100%;
    margin: 1.5em auto 0;
}

.about-intro,
.about-card {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid var(--wrench-border);
    border-radius: 18px;
    padding: 1.4em 1.6em;
    box-shadow: 0 18px 36px rgba(11, 27, 43, 0.06);
    text-align: left;
}

.about-single {
    max-width: none;
    width: 100%;
    margin: 1.5em 0 0;
}

.about-intro p,
.about-card p {
    color: var(--wrench-muted);
}

.about-highlights {
    display: grid;
    gap: 1em;
}

.about-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6em;
}

.about-tags span {
    background: rgba(53, 192, 163, 0.12);
    color: var(--wrench-aurora);
    border-radius: 999px;
    padding: 0.35em 0.8em;
    font-size: 0.85em;
    font-weight: 600;
}

.contributors-panel {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid var(--wrench-border);
    border-radius: 22px;
    padding: 1.8em;
    box-shadow: 0 20px 40px rgba(11, 27, 43, 0.08);
    width: 100%;
    margin-top: 1.6em;
    text-align: left;
}

.contributors-header p {
    margin: 0 0 1.4em;
    color: var(--wrench-muted);
}

.contributors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.6em;
}

.contributors-list {
    display: grid;
    gap: 0.9em;
}

.contributors-list.is-alumni {
    max-height: 382px;
    overflow-y: auto;
    border: 1px solid var(--wrench-border);
    border-radius: 14px;
    background: rgba(244, 247, 251, 0.8);
    padding: 0.6em 0.8em;
}

.contributors-compact {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.5em;
}

.contributors-compact li {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 0.6em;
    align-items: center;
    padding: 0.5em 0.6em;
    border-radius: 12px;
    background: #fff;
    border: 1px solid var(--wrench-border);
}

.contributors-compact img {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    object-fit: cover;
}

.contributors-compact.is-alumni img {
    filter: grayscale(1);
}

.contributors-compact .contributor-name {
    font-weight: 600;
}

.contributors-compact .contributor-role {
    display: block;
    font-size: 0.85em;
    color: var(--wrench-muted);
}

.contributors-compact a {
    color: var(--wrench-navy);
    font-size: 0.9em;
}

.contributors-compact a:hover {
    color: var(--wrench-ember);
}

.contributors-current {
    background: rgba(244, 247, 251, 0.8);
    border: 1px solid var(--wrench-border);
    border-radius: 14px;
    padding: 0.6em 0.8em;
}

.contributors-current li {
    background: #fff;
}

.contributors-current .contributor-links {
    display: flex;
    gap: 0.5em;
}

.citation-card pre {
    margin-top: 1em;
}

.citation-card {
    margin: 1.4em 0 0;
    max-width: none;
}

.publications-panel {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 22px;
    border: 1px solid var(--wrench-border);
    padding: 1.6em 1.8em;
    box-shadow: 0 20px 40px rgba(11, 27, 43, 0.08);
    text-align: left;
}

.publications-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1em;
}

.publications-header p {
    margin: 0;
    color: var(--wrench-muted);
}

.publications-badge {
    background: rgba(43, 109, 246, 0.12);
    color: var(--wrench-ocean);
    border-radius: 999px;
    padding: 0.4em 0.9em;
    font-weight: 600;
    font-size: 0.85em;
    white-space: nowrap;
}

.publications-list {
    margin-top: 1.2em;
    padding-right: 0.5em;
    max-height: 485px;
    overflow-y: auto;
    border: 1px solid var(--wrench-border);
    border-radius: 14px;
    background: rgba(244, 247, 251, 0.8);
}

.publication-item {
    padding: 1em 1.1em;
    border-bottom: 1px solid var(--wrench-border);
}

.publication-item:last-child {
    border-bottom: none;
}

.publication-item p {
    margin: 0;
    color: var(--wrench-muted);
}

.publication-item a {
    color: var(--wrench-navy);
    font-weight: 600;
}

#publications .col-3 {
    width: 46%;
}

#publications .col-2-3 {
    width: 54%;
}

.usage-panel {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid var(--wrench-border);
    border-radius: 22px;
    padding: 1.6em 1.8em;
    box-shadow: 0 20px 40px rgba(11, 27, 43, 0.08);
    clear: both;
}

.usage-header p {
    margin: 0 0 1em;
    color: var(--wrench-muted);
}

.usage-insights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1em;
    width: 100%;
    margin: 1.6em 0 0;
    clear: both;
}

.insight-card {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid var(--wrench-border);
    border-radius: 18px;
    padding: 1.2em 1.4em;
    box-shadow: 0 16px 30px rgba(11, 27, 43, 0.06);
}

.insight-card p {
    margin: 0.6em 0 0;
    color: var(--wrench-muted);
}

.insight-label {
    display: block;
    font-size: 0.75em;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 700;
    color: var(--wrench-aurora);
}

.usage-list {
    margin-top: 1.2em;
    max-height: 360px;
    overflow-y: auto;
    border: 1px solid var(--wrench-border);
    border-radius: 14px;
    background: rgba(244, 247, 251, 0.8);
}

.usage-item {
    padding: 0.9em 1.1em;
    border-bottom: 1px solid var(--wrench-border);
}

.usage-item:last-child {
    border-bottom: none;
}

.usage-item p {
    margin: 0;
    color: var(--wrench-muted);
}

.chart-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 22px;
    border: 1px solid var(--wrench-border);
    padding: 1.2em;
    box-shadow: 0 20px 40px rgba(11, 27, 43, 0.08);
    min-height: 320px;
}

.chart-card canvas {
    width: 100% !important;
    height: auto !important;
}

.dev-grid {
    display: grid;
    gap: 1.2em;
}

.dev-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 2.4em;
    align-items: start;
}

.dev-intro {
    display: grid;
    gap: 1.6em;
}

.dev-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8em;
}

.dev-quick {
    display: grid;
    gap: 1em;
}

.dev-cta-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 18px;
    border: 1px solid var(--wrench-border);
    padding: 1.2em 1.4em;
    box-shadow: 0 16px 30px rgba(11, 27, 43, 0.06);
}

.dev-cta-label {
    display: inline-flex;
    align-items: center;
    gap: 0.4em;
    font-size: 0.72em;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--wrench-aurora);
}

.dev-cta-card p {
    margin: 0.6em 0 0.9em;
    color: var(--wrench-muted);
}

.dev-resource-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.2em;
}

.dev-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 18px;
    border: 1px solid var(--wrench-border);
    padding: 1.2em 1.4em;
    box-shadow: 0 16px 30px rgba(11, 27, 43, 0.06);
}

.dev-card i {
    color: var(--wrench-ocean);
}

.dev-card-header {
    display: flex;
    align-items: center;
    gap: 0.7em;
    margin-bottom: 0.6em;
}

.dev-card-header h4 {
    margin: 0;
}

.dev-icon {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    background: rgba(43, 109, 246, 0.12);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.dev-card p {
    margin: 0 0 0.8em;
    color: var(--wrench-muted);
}

.dev-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4em;
    font-weight: 600;
    color: var(--wrench-navy);
}

.dev-link:hover {
    color: var(--wrench-ember);
}

pre {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--wrench-border);
    border-radius: 12px;
    padding: 1em 1.2em;
    overflow-x: auto;
    font-family: 'Courier New', monospace;
    font-size: 0.92em;
    color: var(--wrench-navy);
}

#landing-footer {
    background: rgba(255, 255, 255, 0.95);
    border-top: 1px solid var(--wrench-border);
    padding: 2.5em 0 2em;
}

#landing-footer,
#landing-footer p,
#landing-footer a,
#landing-footer h4 {
    font-family: 'Space Grotesk', 'Segoe UI', sans-serif;
}

.footer-top {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) repeat(2, minmax(0, 0.7fr)) minmax(0, 1fr);
    gap: 2em;
    align-items: start;
}

.footer-brand img {
    max-width: 200px;
    height: auto;
}

.footer-brand p {
    margin: 0.8em 0 1em;
    color: var(--wrench-muted);
}

.footer-actions {
    display: grid;
    gap: 0.5em;
}

.footer-actions a {
    display: inline-flex;
    align-items: center;
    gap: 0.5em;
    color: var(--wrench-navy);
    font-weight: 600;
}

.footer-actions a:hover {
    color: var(--wrench-ember);
}

.footer-links h4 {
    margin-bottom: 0.6em;
}

.footer-links a {
    display: block;
    color: var(--wrench-muted);
    margin-bottom: 0.4em;
}

.footer-links a:hover {
    color: var(--wrench-ember);
}

.footer-institutions span {
    display: block;
    font-size: 0.85em;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--wrench-muted);
    margin-bottom: 0.8em;
}

.footer-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 1em;
    align-items: center;
}

.footer-logos img {
    height: 36px;
    width: auto;
    filter: grayscale(0.1);
}

.footer-bottom {
    margin-top: 2em;
    display: grid;
    grid-template-columns: minmax(0, 3fr) minmax(0, 1fr);
    gap: 1.5em;
    border-top: 1px solid var(--wrench-border);
    padding-top: 1.5em;
    color: var(--wrench-muted);
    font-size: 0.9em;
}

.footer-meta {
    text-align: right;
}

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

    #banner h1 {
        font-size: 2.4em;
    }

    .hero-actions {
        justify-content: flex-start;
    }

    #banner-content {
        background: none;
    }

    .framework-hero {
        grid-template-columns: 1fr;
    }

    .framework-figure {
        justify-self: center;
    }

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

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

    #publications .col-3,
    #publications .col-2-3 {
        width: 100%;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
    }

    .footer-bottom {
        grid-template-columns: 1fr;
    }

    .footer-meta {
        text-align: left;
    }
}

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

    #banner h1 {
        font-size: 2em;
    }

    .footer-top {
        grid-template-columns: 1fr;
    }
}
