/* ---------------------------------------------------------------------- */
/*	Fonts
/* ---------------------------------------------------------------------- */

@font-face {
    font-family: "Inter";
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
    src: url("/fonts/InterVariable.woff2") format("woff2");
}

/* ---------------------------------------------------------------------- */
/*	Tokens
/* ---------------------------------------------------------------------- */

:root {
    --paper: #f5f3ee;
    --ink: #0b0d12;
    --ink-soft: #454b59;
    --rule: rgba(11, 13, 18, 0.18);
    --blue: #26a9e0;
    --blue-dark: #0c6f9c;

    --sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
    --mono: ui-monospace, "SF Mono", SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace;

    --header-height: 60px;
    --gutter: 20px;
}

/* ---------------------------------------------------------------------- */
/*	Base
/* ---------------------------------------------------------------------- */

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + 24px);
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: var(--sans);
    font-size: 1.0625rem;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

::selection {
    background: var(--blue);
    color: var(--ink);
}

h1,
h2,
h3,
h4,
p,
ul,
ol,
dl,
dd {
    margin: 0;
}

ul,
ol {
    padding: 0;
    list-style: none;
}

img,
svg {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

a {
    color: inherit;
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;
}

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

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--gutter);
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
}

.skip-link {
    position: absolute;
    top: -100px;
    left: var(--gutter);
    z-index: 200;
    padding: 10px 16px;
    background: var(--ink);
    color: var(--paper);
    font-family: var(--mono);
    font-size: 0.85rem;
}

.skip-link:focus {
    top: 10px;
}

.icon {
    flex: none;
    width: 1.1em;
    height: 1.1em;
}

/* ---------------------------------------------------------------------- */
/*	Header
/* ---------------------------------------------------------------------- */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    width: 100%;
    border-bottom: 1px solid transparent;
    transition: background-color 0.3s, border-color 0.3s;
}

.site-header.is-scrolled,
.site-header.is-open {
    border-bottom-color: var(--rule);
    background: var(--paper);
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: var(--header-height);
}

.brand {
    font-family: var(--mono);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    text-decoration: none;
}

.brand__tld {
    color: var(--blue-dark);
}

.nav-toggle {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    margin-right: -10px;
    padding: 0;
    border: 0;
    background: none;
    color: var(--ink);
    cursor: pointer;
}

.nav-toggle__bars,
.nav-toggle__bars::before {
    display: block;
    width: 24px;
    height: 2px;
    background: currentColor;
    transition: transform 0.25s;
}

.nav-toggle__bars {
    position: relative;
    transform: translateY(-4px);
}

.nav-toggle__bars::before {
    content: "";
    position: absolute;
    left: 0;
    transform: translateY(8px);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bars {
    transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bars::before {
    transform: rotate(-90deg);
}

.site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: calc(100vh - var(--header-height));
    height: calc(100dvh - var(--header-height));
    padding: 24px var(--gutter) 32px;
    overflow-y: auto;
    background: var(--paper);
}

.js .site-nav {
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.25s, visibility 0.25s;
}

.js .site-header.is-open .site-nav {
    visibility: visible;
    opacity: 1;
}

.site-nav__list {
    counter-reset: nav;
}

.site-nav__link {
    display: flex;
    align-items: baseline;
    gap: 14px;
    padding: 10px 0;
    border-bottom: 1px solid var(--rule);
    font-size: 1.9rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    text-decoration: none;
}

.site-nav__link::before {
    counter-increment: nav;
    content: "0" counter(nav);
    color: var(--blue-dark);
    font-family: var(--mono);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0;
}

.lang-switch {
    display: flex;
    gap: 16px;
    margin-top: 28px;
    font-family: var(--mono);
    font-size: 0.9rem;
}

.lang-switch__link {
    display: block;
    padding: 6px 0;
    color: var(--ink-soft);
    text-decoration: none;
}

.lang-switch__link:hover {
    color: var(--ink);
}

.lang-switch__link.is-active {
    color: var(--ink);
    font-weight: 700;
    text-decoration: underline;
    text-decoration-color: var(--blue);
    text-decoration-thickness: 3px;
}

/* Without JavaScript the menu stays visible in the page flow */
html:not(.js) .site-header {
    position: static;
}

html:not(.js) .site-nav {
    position: static;
    height: auto;
}

html:not(.js) .nav-toggle {
    display: none;
}

html:not(.js) .site-header__inner {
    flex-wrap: wrap;
}

/* ---------------------------------------------------------------------- */
/*	Buttons and links
/* ---------------------------------------------------------------------- */

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 52px;
    padding: 12px 24px;
    border: 2px solid var(--ink);
    background: var(--ink);
    box-shadow: 6px 6px 0 var(--blue);
    color: var(--paper);
    font-weight: 600;
    line-height: 1.2;
    text-decoration: none;
    transition: transform 0.15s, box-shadow 0.15s;
}

.button:hover {
    transform: translate(3px, 3px);
    box-shadow: 3px 3px 0 var(--blue);
}

.button:active {
    transform: translate(6px, 6px);
    box-shadow: 0 0 0 var(--blue);
}

.arrow-link {
    display: inline-block;
    padding: 6px 0;
    font-weight: 600;
    text-decoration: underline;
    text-decoration-color: var(--blue);
    text-decoration-thickness: 2px;
    text-underline-offset: 6px;
}

.arrow-link::after {
    content: "\2197";
    display: inline-block;
    margin-left: 8px;
    font-family: var(--mono);
    transition: transform 0.2s;
}

.arrow-link[href^="#"]::after {
    content: "\2193";
}

.arrow-link:hover::after {
    transform: translate(3px, -3px);
}

.arrow-link[href^="#"]:hover::after {
    transform: translateY(4px);
}

/* ---------------------------------------------------------------------- */
/*	Hero
/* ---------------------------------------------------------------------- */

.hero {
    padding: calc(var(--header-height) + 16px) 0 48px;
}

.hero__meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 4px 24px;
    padding: 12px 0;
    border-top: 2px solid var(--ink);
    border-bottom: 1px solid var(--rule);
    font-family: var(--mono);
    font-size: 0.78rem;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.hero__top {
    position: relative;
    padding-top: 32px;
}

.hero__title {
    font-size: 27vw;
    font-weight: 800;
    line-height: 0.84;
    letter-spacing: -0.06em;
    text-transform: uppercase;
}

.hero__title-accent {
    display: block;
    color: var(--blue);
}

.hero__photo {
    width: 104px;
    margin-bottom: 24px;
}

.hero__photo img {
    display: block;
    width: 100%;
    border-radius: 50%;
    box-shadow: 6px 6px 0 var(--ink);
}

.hero__bottom {
    display: grid;
    gap: 28px;
    margin-top: 36px;
}

.hero__lead {
    max-width: 38em;
    font-size: clamp(1.1rem, 2.2vw, 1.4rem);
    line-height: 1.5;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px 32px;
}

.stats {
    display: grid;
    margin-top: 48px;
    border-top: 2px solid var(--ink);
}

.stats__item {
    display: flex;
    align-items: baseline;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid var(--rule);
}

.stats__value {
    min-width: 1.5em;
    font-size: 2.6rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.05em;
    font-variant-numeric: tabular-nums;
}

.stats__label {
    font-family: var(--mono);
    font-size: 0.8rem;
    text-transform: uppercase;
}

/* ---------------------------------------------------------------------- */
/*	Ticker
/* ---------------------------------------------------------------------- */

.ticker {
    overflow: hidden;
    border-top: 2px solid var(--ink);
    border-bottom: 2px solid var(--ink);
    background: var(--blue);
}

.ticker__track {
    display: flex;
    width: max-content;
    animation: ticker 36s linear infinite;
}

.ticker:hover .ticker__track {
    animation-play-state: paused;
}

.ticker__list {
    display: flex;
    flex: none;
}

.ticker__list li {
    display: flex;
    align-items: center;
    padding: 14px 0;
    font-family: var(--mono);
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    white-space: nowrap;
}

.ticker__list li::after {
    content: "";
    width: 8px;
    height: 8px;
    margin: 0 28px;
    background: var(--ink);
}

@keyframes ticker {
    to {
        transform: translateX(-50%);
    }
}

/* ---------------------------------------------------------------------- */
/*	Sections
/* ---------------------------------------------------------------------- */

.section {
    padding: 64px 0 72px;
}

.section + .section {
    border-top: 1px solid var(--rule);
}

.section__grid {
    display: grid;
    gap: 28px;
}

.section__aside {
    display: flex;
    align-items: baseline;
    gap: 14px;
}

.section__index {
    color: var(--paper);
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 0.9;
    letter-spacing: -0.04em;
    -webkit-text-stroke: 3px var(--ink);
    paint-order: stroke fill;
}

.section__label {
    font-family: var(--mono);
    font-size: 0.8rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.section__label::before {
    content: "/ ";
    color: var(--blue-dark);
}

.section__title {
    max-width: 18em;
    font-size: clamp(1.9rem, 5.4vw, 3.4rem);
    font-weight: 800;
    line-height: 1.04;
    letter-spacing: -0.04em;
    text-wrap: balance;
}

.section__intro {
    max-width: 36em;
    margin-top: 20px;
    color: var(--ink-soft);
    font-size: 1.15rem;
}

/* Inverted closing section */
.section--ink {
    border-top: 0;
    background: var(--ink);
    color: var(--paper);
}

.section--ink .section__index {
    color: var(--ink);
    -webkit-text-stroke-color: var(--paper);
}

.section--ink .section__label::before {
    color: var(--blue);
}

.section--ink .section__intro {
    color: #b9bfcc;
}

/* ---------------------------------------------------------------------- */
/*	About
/* ---------------------------------------------------------------------- */

.prose {
    max-width: 40em;
    margin-top: 28px;
}

.prose p + p {
    margin-top: 1.1em;
}

.facts {
    display: grid;
    margin-top: 40px;
    border-top: 2px solid var(--ink);
}

.facts__item {
    display: grid;
    grid-template-columns: 8.5em 1fr;
    gap: 16px;
    padding: 12px 0;
    border-bottom: 1px solid var(--rule);
}

.facts dt {
    padding-top: 0.3em;
    color: var(--ink-soft);
    font-family: var(--mono);
    font-size: 0.78rem;
    text-transform: uppercase;
}

.facts dd {
    font-weight: 600;
}

/* ---------------------------------------------------------------------- */
/*	Slash separated lists
/* ---------------------------------------------------------------------- */

.slash-list {
    display: flex;
    flex-wrap: wrap;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.slash-list li:not(:last-child)::after {
    content: "/";
    margin: 0 0.55em;
    color: var(--blue);
    font-weight: 400;
}

.slash-list--small {
    font-family: var(--mono);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0;
    text-transform: uppercase;
}

/* ---------------------------------------------------------------------- */
/*	Ventures
/* ---------------------------------------------------------------------- */

.ventures {
    margin-top: 44px;
    border-top: 2px solid var(--ink);
}

.venture {
    position: relative;
    display: grid;
    gap: 16px;
    padding: 28px 0 30px;
    border-bottom: 1px solid var(--rule);
    transition: color 0.3s;
}

/* Ink panel sliding up behind the row on hover */
.venture::before {
    content: "";
    position: absolute;
    inset: 0 calc(var(--gutter) * -1);
    z-index: -1;
    background: var(--ink);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.35s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.venture__name {
    font-size: clamp(2.4rem, 8vw, 3.5rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.05em;
}

.venture__role {
    margin-top: 8px;
    color: var(--blue-dark);
    font-family: var(--mono);
    font-size: 0.8rem;
    text-transform: uppercase;
    transition: color 0.3s;
}

.venture__description {
    max-width: 34em;
    margin-bottom: 14px;
}

.venture__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    justify-self: start;
    font-family: var(--mono);
    font-size: 0.9rem;
    text-decoration: none;
}

/* The whole row is clickable */
.venture__link::after {
    content: "";
    position: absolute;
    inset: 0;
}

.venture__link .icon {
    transition: transform 0.25s;
}

@media (hover: hover) {
    .venture {
        isolation: isolate;
    }

    .venture:hover {
        color: var(--paper);
    }

    .venture:hover::before {
        transform: scaleY(1);
    }

    .venture:hover .venture__role {
        color: var(--blue);
    }

    .venture:hover .venture__link .icon {
        transform: translate(3px, -3px);
    }
}

/* ---------------------------------------------------------------------- */
/*	Journey
/* ---------------------------------------------------------------------- */

.ledger__title {
    margin-top: 48px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--ink);
    font-family: var(--mono);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.ledger__row {
    display: grid;
    gap: 6px;
    padding: 20px 0;
    border-bottom: 1px solid var(--rule);
}

.ledger__date {
    color: var(--blue-dark);
    font-family: var(--mono);
    font-size: 0.8rem;
    text-transform: uppercase;
}

.ledger__heading {
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

.ledger__place {
    font-weight: 500;
}

.ledger__text {
    max-width: 40em;
    margin-top: 6px;
    color: var(--ink-soft);
    font-size: 0.98rem;
}

/* ---------------------------------------------------------------------- */
/*	Skills
/* ---------------------------------------------------------------------- */

.skills {
    margin-top: 44px;
    border-top: 2px solid var(--ink);
}

.skills__row {
    display: grid;
    gap: 8px;
    padding: 20px 0;
    border-bottom: 1px solid var(--rule);
}

.skills__title {
    color: var(--ink-soft);
    font-family: var(--mono);
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
}

/* ---------------------------------------------------------------------- */
/*	Books
/* ---------------------------------------------------------------------- */

.books {
    display: grid;
    gap: 40px;
    margin-top: 48px;
}

.book {
    display: grid;
    grid-template-columns: 104px 1fr;
    gap: 28px;
    align-items: start;
}

.book__cover {
    border: 1px solid var(--ink);
    box-shadow: 8px 8px 0 var(--blue);
    transition: transform 0.25s, box-shadow 0.25s;
}

.book:hover .book__cover {
    transform: translate(-3px, -3px) rotate(-2deg);
    box-shadow: 12px 12px 0 var(--blue);
}

.book__publisher {
    color: var(--ink-soft);
    font-family: var(--mono);
    font-size: 0.76rem;
    text-transform: uppercase;
}

.book__title {
    margin-top: 6px;
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

.book__description {
    margin: 8px 0 10px;
    color: var(--ink-soft);
    font-size: 0.98rem;
}

/* ---------------------------------------------------------------------- */
/*	Contact
/* ---------------------------------------------------------------------- */

.contact__email {
    display: inline-block;
    margin-top: 40px;
    font-size: clamp(1.2rem, 6vw, 2.6rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.05em;
    text-decoration: none;
    overflow-wrap: anywhere;
    background: linear-gradient(var(--blue), var(--blue)) no-repeat 0 100% / 100% 0.08em;
    transition: background-size 0.3s, color 0.3s;
}

.contact__email:hover {
    background-size: 100% 100%;
    color: var(--ink);
}

.contact__details {
    display: grid;
    margin-top: 56px;
    border-top: 1px solid rgba(245, 243, 238, 0.25);
}

.contact__details > div {
    padding: 16px 0;
    border-bottom: 1px solid rgba(245, 243, 238, 0.25);
}

.contact__details dt {
    color: #b9bfcc;
    font-family: var(--mono);
    font-size: 0.76rem;
    text-transform: uppercase;
}

.contact__details dd {
    margin-top: 2px;
    font-weight: 600;
}

.contact__details a {
    text-decoration-color: var(--blue);
}

.contact__details a:hover {
    color: var(--blue);
}

/* ---------------------------------------------------------------------- */
/*	Footer
/* ---------------------------------------------------------------------- */

.site-footer {
    padding: 24px 0 28px;
    background: var(--ink);
    color: #b9bfcc;
    font-family: var(--mono);
    font-size: 0.76rem;
}

.site-footer__inner {
    display: grid;
    gap: 10px;
    padding-top: 24px;
    border-top: 1px solid rgba(245, 243, 238, 0.25);
}

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

.site-footer__top {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
}

/* ---------------------------------------------------------------------- */
/*	Reveal on scroll
/* ---------------------------------------------------------------------- */

.js .reveal {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out, color 0.3s;
}

.js .reveal.is-visible {
    opacity: 1;
    transform: none;
}

/* ---------------------------------------------------------------------- */
/*	Tablet
/* ---------------------------------------------------------------------- */

@media (min-width: 640px) {
    :root {
        --gutter: 32px;
    }

    .hero__title {
        font-size: 19vw;
    }

    .hero__photo {
        position: absolute;
        right: 0;
        bottom: 6%;
        width: 26vw;
        max-width: 200px;
        margin-bottom: 0;
    }

    .stats {
        grid-template-columns: repeat(3, 1fr);
    }

    .stats__item {
        flex-direction: column;
        gap: 8px;
        padding: 18px 24px 4px 0;
        border-bottom: 0;
    }

    .stats__item + .stats__item {
        padding-left: 24px;
        border-left: 1px solid var(--rule);
    }

    .stats__value {
        font-size: 3.6rem;
    }

    .facts {
        grid-template-columns: repeat(2, 1fr);
        column-gap: 40px;
    }

    .venture {
        grid-template-columns: 1fr 1.4fr;
        gap: 16px 40px;
    }

    .venture__link {
        grid-column: 2;
    }

    .ledger__row,
    .skills__row {
        grid-template-columns: 13em 1fr;
        gap: 24px;
    }

    .ledger__date,
    .skills__title {
        padding-top: 0.35em;
    }

    .book {
        grid-template-columns: 136px 1fr;
    }

    .contact__details {
        grid-template-columns: repeat(3, 1fr);
        column-gap: 40px;
    }

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

    .site-footer__froggy {
        grid-column: 1 / -1;
        grid-row: 2;
    }
}

/* ---------------------------------------------------------------------- */
/*	Desktop
/* ---------------------------------------------------------------------- */

@media (min-width: 1024px) {
    :root {
        --header-height: 72px;
        --gutter: 48px;
    }

    /* Header: inline navigation */
    .nav-toggle {
        display: none;
    }

    .site-nav,
    .js .site-nav,
    html:not(.js) .site-nav {
        position: static;
        display: flex;
        align-items: center;
        gap: 36px;
        width: auto;
        height: auto;
        padding: 0;
        overflow: visible;
        background: none;
        visibility: visible;
        opacity: 1;
    }

    .site-nav__list {
        display: flex;
        gap: 28px;
    }

    .site-nav__link {
        gap: 6px;
        padding: 6px 0;
        border: 0;
        font-family: var(--mono);
        font-size: 0.8rem;
        font-weight: 500;
        letter-spacing: 0;
        text-transform: uppercase;
        background: linear-gradient(var(--blue), var(--blue)) no-repeat 0 100% / 0 3px;
        transition: background-size 0.25s;
    }

    .site-nav__link::before {
        font-size: 0.68rem;
    }

    .site-nav__link:hover,
    .site-nav__link.is-active {
        background-size: 100% 3px;
    }

    .lang-switch {
        margin-top: 0;
        font-size: 0.8rem;
    }

    html:not(.js) .site-header {
        position: fixed;
    }

    /* Hero */
    .hero {
        padding: calc(var(--header-height) + 24px) 0 72px;
    }

    .hero__top {
        padding-top: 48px;
    }

    .hero__title {
        font-size: clamp(8rem, 16.5vw, 15rem);
    }

    .hero__photo {
        width: 23vw;
        max-width: 320px;
    }

    .hero__photo img {
        box-shadow: 14px 14px 0 var(--ink);
    }

    .hero__bottom {
        grid-template-columns: 1.5fr 1fr;
        align-items: end;
        gap: 64px;
        margin-top: 56px;
    }

    .hero__actions {
        justify-content: flex-end;
    }

    .stats {
        margin-top: 72px;
    }

    .stats__value {
        font-size: 4.6rem;
    }

    /* Sections: sticky numbered margin + content */
    .section {
        padding: 104px 0 120px;
    }

    .section__grid {
        grid-template-columns: 3fr 9fr;
        gap: 48px;
    }

    .section__aside {
        position: sticky;
        top: calc(var(--header-height) + 32px);
        flex-direction: column;
        align-self: start;
        gap: 12px;
    }

    .section__index {
        font-size: 6.5rem;
        -webkit-text-stroke-width: 4px;
    }

    .venture {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1.25fr) 9.5em;
        align-items: start;
        padding: 40px 0 44px;
    }

    .venture::before {
        inset: 0 -24px;
    }

    .venture__link {
        grid-column: auto;
        justify-self: end;
        padding-top: 0.5em;
    }

    .books {
        grid-template-columns: repeat(2, 1fr);
        gap: 56px;
    }

    .contact__email {
        font-size: clamp(2.4rem, 4.3vw, 3.6rem);
    }

    .site-footer__inner {
        grid-template-columns: auto 1fr auto;
        gap: 32px;
    }

    .site-footer__froggy {
        grid-column: auto;
        grid-row: auto;
        text-align: center;
    }
}

/* ---------------------------------------------------------------------- */
/*	Reduced motion
/* ---------------------------------------------------------------------- */

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

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

    .ticker__track {
        animation: none;
    }

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