:root {
    color-scheme: light;
    --navy: #1b3a54;
    --navy-deep: #122840;
    --copper: #a8531f;
    --copper-bright: #b85824;
    --ink: #12181a;
    --graphite: #5c6b66;
    --paper: #f2f4f0;
    --paper-raised: #fff;
    --line: rgba(18, 24, 26, .16);
    --line-strong: rgba(18, 24, 26, .32);
    --radius-sm: 6px;
    --radius-md: 10px;
    --shadow-sm: 0 1px 2px rgba(18, 24, 26, .05), 0 8px 20px rgba(18, 24, 26, .06);
    --shadow-md: 0 2px 4px rgba(18, 24, 26, .06), 0 18px 40px rgba(18, 24, 26, .1);
    --ease: cubic-bezier(.2, .7, .2, 1);
    --font-display: "Space Grotesk", "Arial Narrow", sans-serif;
    --font-body: "IBM Plex Sans", "Helvetica Neue", Arial, sans-serif;
    --font-mono: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
    font: 100%/1.5 var(--font-body);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    min-width: 320px;
    scroll-behavior: smooth;
    background: var(--paper);
}

body {
    min-height: 100vh;
    margin: 0;
    color: var(--ink);
    background:
        radial-gradient(rgba(27, 58, 84, .1) .7px, transparent .7px) 0 0/22px 22px,
        var(--paper);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

a {
    color: var(--navy);
    text-decoration: none;
}

button,
input {
    font: inherit;
}

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

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: fixed;
    z-index: 1000;
    top: .75rem;
    left: .75rem;
    padding: .7rem 1rem;
    border-radius: var(--radius-sm);
    color: #fff;
    background: var(--navy);
    transform: translateY(-150%);
    transition: transform 180ms ease;
}

.skip-link:focus {
    transform: translateY(0);
}

:focus-visible {
    outline: 2px solid var(--copper);
    outline-offset: 2px;
}

.section-shell {
    width: min(1180px, calc(100% - 2.5rem));
    margin-inline: auto;
}

.tag {
    display: inline-flex;
    gap: .5em;
    align-items: center;
    font-family: var(--font-mono);
    font-size: .72rem;
    font-weight: 500;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.tag::before {
    content: "";
    width: 6px;
    height: 6px;
    background: var(--copper);
}

/* Navigation
--------------------------------------------------------- */
.site-nav-shell {
    position: sticky;
    z-index: 100;
    top: 0;
    padding: .9rem 1.1rem .6rem;
    background: linear-gradient(var(--paper) 65%, transparent);
    transition: padding 200ms ease;
}

.site-nav-shell.is-scrolled {
    padding-top: .55rem;
}

.site-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: min(1180px, 100%);
    min-height: 56px;
    margin-inline: auto;
    padding: .5rem .6rem .5rem .75rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: rgba(242, 244, 240, .88);
    box-shadow: var(--shadow-sm);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.site-brand {
    display: flex;
    gap: .65rem;
    align-items: center;
    color: var(--ink);
    font-family: var(--font-display);
    font-weight: 600;
    letter-spacing: -.01em;
}

.site-brand img {
    border-radius: 8px;
}

.site-menu {
    display: flex;
    gap: .15rem;
    align-items: center;
}

.site-menu a {
    padding: .58rem .85rem;
    border-radius: var(--radius-sm);
    color: var(--graphite);
    font-size: .88rem;
    font-weight: 600;
    transition: color 160ms ease, background-color 160ms ease;
}

.site-menu a:hover,
.site-menu a:focus-visible {
    color: var(--ink);
    background: rgba(18, 24, 26, .06);
    outline: none;
}

.nav-toggle {
    display: none;
    width: 40px;
    height: 40px;
    padding: 0 10px;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: transparent;
}

.nav-toggle > span:not(.sr-only) {
    display: block;
    height: 1.5px;
    margin: 5px 0;
    background: var(--ink);
    transition: transform 180ms var(--ease);
}

.nav-toggle[aria-expanded="true"] > span:nth-child(2) {
    transform: translateY(3.25px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] > span:nth-child(3) {
    transform: translateY(-3.25px) rotate(-45deg);
}

/* Buttons
--------------------------------------------------------- */
.button {
    display: inline-flex;
    gap: .65rem;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: .7rem 1.15rem;
    border: 1px solid transparent;
    border-radius: var(--radius-sm);
    font-family: var(--font-mono);
    font-size: .88rem;
    font-weight: 500;
    letter-spacing: .01em;
    transition: transform 100ms ease-out, background-color 180ms ease, border-color 180ms ease;
}

.button:active {
    transform: scale(.98);
}

.button svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
    transition: transform 220ms var(--ease);
}

.button:hover svg {
    transform: translateX(3px);
}

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

.button-primary:hover,
.button-primary:focus-visible {
    background: var(--copper-bright);
    outline: none;
}

.button-secondary {
    border-color: var(--line-strong);
    color: var(--ink);
    background: var(--paper-raised);
}

.button-secondary:hover,
.button-secondary:focus-visible {
    border-color: var(--navy);
    outline: none;
}

/* Hero
--------------------------------------------------------- */
.hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(380px, .92fr);
    gap: clamp(2.5rem, 6vw, 5rem);
    align-items: center;
    padding-block: clamp(2.5rem, 6vw, 4rem) clamp(2rem, 4vw, 3rem);
}

.hero-copy {
    position: relative;
}

.hero-lockup {
    width: min(440px, 84%);
    height: auto;
    margin-bottom: clamp(1.75rem, 4vw, 2.75rem);
}

.eyebrow {
    display: inline-flex;
    gap: .55em;
    align-items: center;
    margin: 0 0 1.1rem;
    padding: .3rem .6rem;
    border: 1px solid var(--line-strong);
    color: var(--navy);
    font-family: var(--font-mono);
    font-size: .72rem;
    font-weight: 500;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.eyebrow::before {
    content: "";
    width: 6px;
    height: 6px;
    background: var(--copper);
}

.card-kicker {
    display: block;
    margin: 0 0 .5rem;
    color: var(--copper);
    font-family: var(--font-mono);
    font-size: .7rem;
    font-weight: 500;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.hero h1 {
    max-width: 680px;
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(2.6rem, 5.2vw, 4.4rem);
    font-weight: 600;
    line-height: 1.04;
    letter-spacing: -.02em;
    text-wrap: balance;
}

.hero h1 em {
    color: var(--copper);
    font-style: normal;
}

.hero-lead {
    max-width: 560px;
    margin: 1.4rem 0 0;
    color: var(--graphite);
    font-size: clamp(1.02rem, 1.5vw, 1.18rem);
    line-height: 1.55;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    margin-top: 2rem;
}

.trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem 1.4rem;
    margin-top: 1.75rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--line);
    color: var(--graphite);
    font-family: var(--font-mono);
    font-size: .76rem;
}

/* Hero signature: a schematic panel with three connected pads
   (Moodle / Comunidad / Recursos) — the real destinations of the site,
   drawn as a circuit trace instead of a decorative process graphic. */
.hero-visual {
    position: relative;
}

.schema-panel {
    position: relative;
    border: 1px solid var(--line-strong);
    border-radius: var(--radius-md);
    background: var(--paper-raised);
    box-shadow: var(--shadow-md);
    clip-path: polygon(0 20px, 20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%);
}

.schema-panel::before {
    position: absolute;
    inset: 0;
    border: 1px solid var(--line);
    clip-path: polygon(0 20px, 20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%);
    content: "";
    pointer-events: none;
}

.schema-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.4rem;
    border-bottom: 1px solid var(--line);
}

.schema-header .tag {
    color: var(--graphite);
}

.status-dot {
    display: inline-flex;
    gap: .45em;
    align-items: center;
    color: var(--graphite);
    font-family: var(--font-mono);
    font-size: .68rem;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.status-dot::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #4a8f5c;
    box-shadow: 0 0 0 3px rgba(74, 143, 92, .18);
}

.schema-list {
    position: relative;
    margin: 0;
    padding: .5rem 1.4rem 1.4rem;
    list-style: none;
}

.schema-list::before {
    position: absolute;
    top: .5rem;
    bottom: 2.6rem;
    left: calc(1.4rem + 15px);
    width: 1px;
    background: var(--line-strong);
    content: "";
}

.schema-list li {
    position: relative;
    display: grid;
    grid-template-columns: 32px 1fr auto;
    gap: 1rem;
    align-items: center;
    padding: 1rem 0;
}

.schema-pad {
    position: relative;
    display: grid;
    place-items: center;
    width: 32px;
    height: 32px;
    border: 1.5px solid var(--navy);
    background: var(--paper-raised);
    font-family: var(--font-mono);
    font-size: .68rem;
    font-weight: 600;
    color: var(--navy);
}

.schema-list li:first-child .schema-pad {
    border-color: var(--copper);
    color: #fff;
    background: var(--copper);
}

.schema-list strong,
.schema-list small {
    display: block;
}

.schema-list strong {
    font-family: var(--font-display);
    font-size: 1.02rem;
    font-weight: 600;
    letter-spacing: -.01em;
}

.schema-list small {
    margin-top: .15rem;
    color: var(--graphite);
    font-size: .8rem;
}

.schema-list a.schema-go {
    display: grid;
    place-items: center;
    width: 30px;
    height: 30px;
    border: 1px solid var(--line);
    color: var(--graphite);
    transition: border-color 160ms ease, color 160ms ease, transform 160ms var(--ease);
}

.schema-list a.schema-go:hover {
    border-color: var(--copper);
    color: var(--copper);
    transform: translate(2px, -2px);
}

.schema-footer {
    display: flex;
    gap: .8rem;
    align-items: center;
    justify-content: space-between;
    padding: .9rem 1.4rem;
    border-top: 1px solid var(--line);
    color: var(--graphite);
    font-family: var(--font-mono);
    font-size: .72rem;
}

/* Experience section
--------------------------------------------------------- */
.experience {
    padding-block: clamp(2.5rem, 5vw, 4rem) clamp(4rem, 8vw, 6.5rem);
}

.section-heading {
    display: grid;
    grid-template-columns: minmax(0, .8fr) minmax(300px, .5fr);
    gap: 1.5rem 4rem;
    align-items: end;
    margin-bottom: 2.2rem;
}

.section-heading .eyebrow {
    grid-column: 1 / -1;
    justify-self: start;
}

.section-heading h2 {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(2.1rem, 3.6vw, 3.2rem);
    font-weight: 600;
    line-height: 1.05;
    letter-spacing: -.015em;
}

.section-heading > p:last-child {
    margin: 0 0 .3rem;
    color: var(--graphite);
    font-size: 1rem;
    line-height: 1.55;
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 1rem;
}

.experience-card {
    position: relative;
    display: flex;
    min-height: 320px;
    padding: 1.6rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--paper-raised);
    box-shadow: var(--shadow-sm);
    transition: border-color 200ms ease, box-shadow 200ms ease, transform 200ms var(--ease);
}

.experience-card:hover,
.experience-card:focus-visible {
    border-color: var(--navy);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
    outline: none;
}

.learning-card {
    grid-column: span 7;
    color: #fff;
    background: var(--navy-deep);
    border-color: var(--navy-deep);
}

.community-card {
    grid-column: span 5;
}

.resources-card {
    grid-column: span 12;
    min-height: 220px;
}

.experience-icon {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line-strong);
    color: var(--navy);
}

.learning-card .experience-icon {
    border-color: rgba(255, 255, 255, .3);
    color: #fff;
}

.experience-icon svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.6;
}

.experience-copy {
    align-self: flex-end;
    max-width: 560px;
    padding-top: 3.5rem;
}

.experience-card h3 {
    max-width: 520px;
    margin: 0 0 .75rem;
    font-family: var(--font-display);
    font-size: clamp(1.55rem, 2.6vw, 2.15rem);
    font-weight: 600;
    line-height: 1.08;
    letter-spacing: -.01em;
}

.experience-card p {
    max-width: 480px;
    margin: 0;
    color: var(--graphite);
    font-size: .95rem;
    line-height: 1.55;
}

.learning-card .card-kicker,
.learning-card p {
    color: rgba(255, 255, 255, .7);
}

.card-link {
    margin-top: 1.1rem;
    display: flex;
    gap: .5rem;
    align-items: center;
    font-family: var(--font-mono);
    font-size: .78rem;
    font-weight: 500;
}

.card-link b {
    display: grid;
    place-items: center;
    width: 24px;
    height: 24px;
    border: 1px solid var(--line-strong);
    font-weight: 400;
    transition: transform 220ms var(--ease);
}

.learning-card .card-link b {
    border-color: rgba(255, 255, 255, .35);
}

.experience-card:hover .card-link b {
    transform: translate(2px, -2px);
}

/* Manifesto
--------------------------------------------------------- */
.manifesto {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: clamp(1.2rem, 4vw, 3rem);
    align-items: center;
    margin-block: 1rem clamp(4rem, 8vw, 6.5rem);
    padding: clamp(1.5rem, 3.5vw, 2.5rem);
    border: 1px solid var(--line);
    border-top: 2px solid var(--copper);
    background: var(--paper-raised);
}

.manifesto-mark {
    display: grid;
    place-items: center;
    width: 60px;
    height: 60px;
}

.manifesto h2 {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 2.8vw, 2.4rem);
    font-weight: 600;
    line-height: 1.08;
    letter-spacing: -.01em;
}

.manifesto p:not(.eyebrow) {
    max-width: 680px;
    margin: .7rem 0 0;
    color: var(--graphite);
}

.text-link {
    display: flex;
    gap: .5rem;
    align-items: center;
    white-space: nowrap;
    color: var(--copper);
    font-family: var(--font-mono);
    font-size: .85rem;
    font-weight: 500;
}

.text-link span {
    transition: transform 220ms var(--ease);
}

.text-link:hover span {
    transform: translateX(4px);
}

/* Footer
--------------------------------------------------------- */
.site-footer {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
    padding-block: 1.75rem 2.5rem;
    border-top: 1px solid var(--line);
    color: var(--graphite);
    font-size: .82rem;
}

.footer-brand {
    display: flex;
    gap: .6rem;
    align-items: center;
}

.footer-brand img {
    border-radius: 8px;
}

.footer-brand strong,
.footer-brand span {
    display: block;
}

.footer-brand strong {
    font-family: var(--font-display);
    color: var(--ink);
}

.site-footer nav {
    display: flex;
    gap: 1.2rem;
}

.site-footer nav a:hover {
    color: var(--ink);
}

.site-footer > p {
    margin: 0;
    text-align: right;
    font-family: var(--font-mono);
    font-size: .76rem;
}

.js .reveal {
    opacity: 1;
    transform: none;
}

.js .reveal.is-visible {
    animation: reveal-in 480ms var(--ease) both;
}

@keyframes reveal-in {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

/* Resource library
--------------------------------------------------------- */
.resource-main {
    padding-block: clamp(2.5rem, 6vw, 5rem) clamp(4rem, 8vw, 6.5rem);
}

.resource-hero {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(280px, .5fr);
    gap: 2.5rem;
    align-items: end;
    padding: clamp(1.75rem, 4vw, 3rem);
    border: 1px solid var(--line);
    border-top: 2px solid var(--copper);
    background: var(--paper-raised);
}

.resource-hero h1 {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(2.3rem, 5vw, 4rem);
    font-weight: 600;
    line-height: 1.03;
    letter-spacing: -.015em;
}

.resource-hero h1 em {
    color: var(--copper);
    font-style: normal;
}

.resource-hero p:not(.eyebrow) {
    max-width: 580px;
    margin: 1.1rem 0 0;
    color: var(--graphite);
    font-size: 1rem;
}

.library-summary {
    justify-self: end;
    width: min(100%, 300px);
    padding: 1.1rem;
    border: 1px solid var(--line);
}

.library-summary strong {
    display: block;
    font-family: var(--font-display);
    font-size: 2.2rem;
    line-height: 1;
    letter-spacing: -.02em;
}

.library-summary span {
    display: block;
    margin-top: .4rem;
    color: var(--graphite);
    font-family: var(--font-mono);
    font-size: .74rem;
}

.resource-toolbar {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
    margin: 1.75rem 0 1rem;
}

.resource-toolbar h2 {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 2.6vw, 2rem);
    font-weight: 600;
    letter-spacing: -.01em;
}

.resource-search {
    position: relative;
    width: min(100%, 340px);
}

.resource-search svg {
    position: absolute;
    top: 50%;
    left: .9rem;
    width: 17px;
    height: 17px;
    fill: none;
    stroke: var(--graphite);
    stroke-width: 2;
    transform: translateY(-50%);
}

.resource-search input {
    width: 100%;
    min-height: 46px;
    padding: .7rem .9rem .7rem 2.6rem;
    border: 1px solid var(--line-strong);
    border-radius: var(--radius-sm);
    color: var(--ink);
    background: var(--paper-raised);
    outline: none;
    transition: border-color 160ms ease;
}

.resource-search input:focus {
    border-color: var(--navy);
}

.search-status {
    min-height: 1.2rem;
    margin: 0 0 .75rem;
    color: var(--graphite);
    font-family: var(--font-mono);
    font-size: .76rem;
}

.resource-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .9rem;
}

.resource-card {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 1rem;
    align-items: center;
    min-height: 130px;
    padding: 1.1rem;
    border: 1px solid var(--line);
    background: var(--paper-raised);
    transition: border-color 200ms ease, transform 200ms var(--ease);
}

.resource-card:hover,
.resource-card:focus-visible {
    border-color: var(--navy);
    transform: translateY(-2px);
    outline: none;
}

.resource-card[hidden] {
    display: none;
}

.file-icon {
    display: grid;
    place-items: center;
    width: 46px;
    height: 56px;
    color: var(--copper);
    background: rgba(181, 101, 46, .1);
    border: 1px solid rgba(181, 101, 46, .3);
}

.file-icon svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.6;
}

.resource-card h3 {
    margin: 0;
    overflow-wrap: anywhere;
    font-family: var(--font-display);
    font-size: clamp(.98rem, 1.8vw, 1.14rem);
    font-weight: 600;
    line-height: 1.2;
}

.resource-meta {
    display: flex;
    flex-wrap: wrap;
    gap: .3rem .7rem;
    margin-top: .55rem;
    color: var(--graphite);
    font-family: var(--font-mono);
    font-size: .72rem;
}

.resource-tag {
    padding: .15rem .4rem;
    color: var(--navy);
    background: rgba(27, 58, 84, .08);
    font-weight: 500;
}

.download-indicator {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border: 1px solid var(--line);
    color: var(--graphite);
    transition: border-color 200ms ease, color 200ms ease, transform 200ms ease;
}

.resource-card:hover .download-indicator {
    border-color: var(--copper);
    color: var(--copper);
    transform: translateY(2px);
}

.resource-empty {
    padding: 3rem;
    border: 1px dashed var(--line-strong);
    color: var(--graphite);
    text-align: center;
}

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

    .section-heading,
    .resource-hero {
        grid-template-columns: 1fr;
    }

    .library-summary {
        justify-self: start;
    }

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

    .site-footer > p {
        grid-column: 1 / -1;
        text-align: left;
    }
}

@media (max-width: 720px) {
    .site-nav-shell {
        padding-inline: .65rem;
    }

    .nav-toggle {
        display: block;
    }

    .site-menu {
        position: absolute;
        top: calc(100% + .4rem);
        right: .65rem;
        left: .65rem;
        display: grid;
        padding: .4rem;
        visibility: hidden;
        border: 1px solid var(--line-strong);
        background: var(--paper-raised);
        box-shadow: var(--shadow-md);
        opacity: 0;
        transform: translateY(-6px);
        transition: opacity 180ms ease, transform 200ms var(--ease), visibility 180ms;
    }

    .site-menu.is-open {
        visibility: visible;
        opacity: 1;
        transform: translateY(0);
    }

    .site-menu a {
        border-radius: var(--radius-sm);
    }

    .hero {
        padding-top: 2.5rem;
    }

    .hero-lockup {
        width: 100%;
        margin-bottom: 2rem;
    }

    .experience-grid,
    .resource-grid {
        grid-template-columns: 1fr;
    }

    .experience-card,
    .learning-card,
    .community-card,
    .resources-card {
        grid-column: auto;
        min-height: 300px;
    }

    .manifesto {
        grid-template-columns: auto 1fr;
    }

    .manifesto .text-link {
        grid-column: 1 / -1;
    }

    .resource-toolbar {
        align-items: stretch;
        flex-direction: column;
    }

    .resource-search {
        width: 100%;
    }
}

@media (max-width: 520px) {
    .section-shell {
        width: min(100% - 1.3rem, 1180px);
    }

    .hero-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .button {
        width: 100%;
    }

    .schema-list li {
        grid-template-columns: 28px 1fr auto;
    }

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

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

    .site-footer nav {
        flex-wrap: wrap;
    }

    .site-footer > p {
        grid-column: auto;
        text-align: left;
    }

    .resource-card {
        grid-template-columns: auto minmax(0, 1fr);
        padding: .9rem;
    }

    .download-indicator {
        display: none;
    }
}

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

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }

    .js .reveal {
        opacity: 1;
        transform: none;
    }
}

@media (prefers-contrast: more) {
    :root {
        --line: rgba(0, 0, 0, .4);
        --line-strong: rgba(0, 0, 0, .55);
        --graphite: #3a4642;
    }
}
