:root {
    --paper: #f5f2e9;
    --surface: #fffdf8;
    --ink: #102f30;
    --deep: #102f30;
    --muted: #4b6662;
    --line: #cbd6cb;
    --teal: #0a716c;
    --teal-soft: #d7ebe1;
    --coral: #e46550;
    --coral-text: #a84336;
    --coral-on-dark: #ffae96;
    --yellow: #efc85b;
    --blue: #4d72d6;
    --blue-on-dark: #9bb0f2;
    --teal-on-dark: #8cd8c1;
    --white: #fffdf8;
    --code: #173d3e;
    --shadow: 0 18px 44px rgba(16, 47, 48, 0.12);
}

html[data-theme="dark"] {
    --paper: #102020;
    --surface: #173637;
    --ink: #edf3e9;
    --deep: #0b2021;
    --muted: #b8ccc1;
    --line: #365b59;
    --teal: #8cd8c1;
    --teal-soft: #224c4b;
    --coral: #f48c75;
    --coral-text: #ffae96;
    --yellow: #f3d16c;
    --blue: #9bb0f2;
    --white: #faf7ec;
    --code: #102b2c;
    --shadow: 0 18px 44px rgba(0, 0, 0, 0.25);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background-color: var(--paper);
    background-image: repeating-linear-gradient(
        0deg,
        rgba(16, 47, 48, 0.035) 0,
        rgba(16, 47, 48, 0.035) 1px,
        transparent 1px,
        transparent 36px
    );
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    line-height: 1.6;
}

html[data-theme="dark"] body {
    background-image: repeating-linear-gradient(
        0deg,
        rgba(237, 243, 233, 0.035) 0,
        rgba(237, 243, 233, 0.035) 1px,
        transparent 1px,
        transparent 36px
    );
}

a {
    color: inherit;
}

code,
pre,
.eyebrow,
.version,
.source-link {
    font-family: "Space Mono", monospace;
}

code {
    padding: 0.12rem 0.3rem;
    color: var(--teal);
    background: var(--teal-soft);
    border-radius: 2px;
    font-size: 0.9em;
}

pre {
    margin: 0;
    overflow-x: auto;
    color: #f7f4ea;
    background: var(--code);
    border: 1px solid rgba(255, 253, 248, 0.12);
    border-radius: 3px;
    font-size: 0.83rem;
    line-height: 1.75;
    tab-size: 4;
}

pre code {
    display: block;
    padding: 1.2rem 1.35rem;
    color: inherit;
    background: transparent;
    border-radius: 0;
    font-size: inherit;
}

.code-example {
    display: grid;
    gap: 14px;
}

.example-output {
    display: grid;
    gap: 7px;
    margin-top: 14px;
}

.code-example .example-output,
.quickstart .example-output,
.resolution-args-context .example-output {
    margin-top: 0;
}

.example-output-label {
    display: block;
    color: var(--coral-text);
    font-family: "Space Mono", monospace;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.example-output pre {
    color: var(--ink);
    background: var(--surface);
    border-color: var(--line);
}

.example-output pre code {
    color: inherit;
}

.wrap {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    border-bottom: 1px solid rgba(203, 214, 203, 0.9);
    background: rgba(245, 242, 233, 0.96);
    backdrop-filter: blur(14px);
}

html[data-theme="dark"] .site-header {
    border-bottom-color: rgba(54, 91, 89, 0.9);
    background: rgba(16, 32, 32, 0.96);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 72px;
    gap: 24px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 24px;
    min-width: 0;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--ink);
    text-decoration: none;
}

.brand-mark {
    display: block;
    width: 38px;
    height: 38px;
    flex: 0 0 auto;
    overflow: visible;
}

.injector-input,
.injector-arrow,
.injector-rail,
.injector-output {
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 3.5;
}

.injector-input,
.injector-arrow {
    stroke: var(--coral);
}

.injector-rail {
    stroke: var(--teal);
}

.injector-output-one,
.injector-node-one {
    stroke: var(--blue);
    fill: var(--blue);
}

.injector-output-two,
.injector-node-two {
    stroke: var(--yellow);
    fill: var(--yellow);
}

.brand-copy {
    display: inline-flex;
    align-items: baseline;
    gap: 8px;
}

.brand-name {
    font-family: "DM Sans", sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1;
}

.brand-prefix {
    color: var(--teal);
    font-family: "Space Mono", monospace;
    font-size: 0.86em;
}

.version {
    margin-left: 2px;
    color: var(--muted);
    font-size: 0.68rem;
    font-weight: 400;
}

.nav-tools,
.nav-links {
    display: flex;
    align-items: center;
}

.nav-tools {
    gap: 8px;
    flex-shrink: 0;
}

.theme-toggle {
    display: inline-flex;
    align-items: center;
    margin: 0;
    padding: 3px;
    border: 1px solid var(--line);
    border-radius: 3px;
    background: var(--surface);
}

.theme-button {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    min-height: 30px;
    padding: 4px 8px;
    color: var(--muted);
    background: transparent;
    border: 0;
    border-radius: 2px;
    cursor: pointer;
    font: 600 0.72rem "DM Sans", sans-serif;
}

.theme-button[aria-pressed="true"] {
    color: var(--surface);
    background: var(--ink);
}

.theme-button:hover,
.theme-button:focus-visible {
    color: var(--coral);
}

.theme-button[aria-pressed="true"]:hover,
.theme-button[aria-pressed="true"]:focus-visible {
    color: var(--surface);
}

.theme-icon {
    font-size: 0.9rem;
    line-height: 1;
}

.language-picker {
    display: inline-flex;
    align-items: center;
}

.language-picker select {
    min-height: 38px;
    max-width: 100%;
    padding: 5px 28px 5px 9px;
    color: var(--ink);
    background-color: var(--surface);
    border: 1px solid var(--line);
    border-radius: 3px;
    cursor: pointer;
    font: 600 0.72rem "Space Mono", monospace;
}

.language-picker select:focus-visible,
.theme-button:focus-visible,
.button-link:focus-visible,
a:focus-visible {
    outline: 3px solid var(--coral);
    outline-offset: 3px;
}

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

.nav-links {
    gap: 22px;
    color: var(--muted);
    font-size: 0.92rem;
    font-weight: 600;
}

.nav-links a {
    text-decoration: none;
}

.nav-links a:hover,
.nav-links a:focus-visible {
    color: var(--coral-text);
}

.nav-github {
    color: var(--ink);
    border-bottom: 2px solid var(--coral);
}

.hero {
    color: var(--white);
    background-color: var(--deep);
    background-image: repeating-linear-gradient(
        90deg,
        rgba(255, 253, 248, 0.055) 0,
        rgba(255, 253, 248, 0.055) 1px,
        transparent 1px,
        transparent 88px
    );
    border-bottom: 8px solid var(--yellow);
}

.hero-inner {
    padding: 84px 0 72px;
}

.eyebrow {
    margin: 0 0 18px;
    color: var(--yellow);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2,
h3 {
    line-height: 1.08;
    letter-spacing: 0;
    overflow-wrap: anywhere;
}

h1 {
    max-width: 900px;
    margin-bottom: 20px;
    color: var(--white);
    font-size: 5.75rem;
    font-weight: 700;
}

.hero-lede {
    max-width: 720px;
    margin-bottom: 30px;
    color: #d9e8df;
    font-size: 1.25rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 48px;
}

.button-link {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 9px 16px;
    border: 1px solid var(--yellow);
    border-radius: 2px;
    color: var(--deep);
    background: var(--yellow);
    font-weight: 700;
    text-decoration: none;
}

.button-link:hover,
.button-link:focus-visible {
    background: #f8d77b;
}

.button-link.secondary {
    color: var(--white);
    background: transparent;
    border-color: rgba(255, 253, 248, 0.4);
}

.button-link.secondary:hover,
.button-link.secondary:focus-visible {
    background: rgba(255, 253, 248, 0.1);
}

.quickstart {
    max-width: 920px;
    border-left: 5px solid var(--coral);
    background: var(--code);
    box-shadow: var(--shadow);
}

.quickstart-label {
    display: block;
    padding: 12px 20px 0;
    color: #f4d487;
    font-family: "Space Mono", monospace;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.quickstart > pre {
    border: 0;
    background: transparent;
}

.quickstart .example-output {
    padding: 0 20px 20px;
}

.quickstart .example-output-label {
    color: #f4d487;
}

.section {
    padding: 82px 0;
    scroll-margin-top: 92px;
    border-bottom: 1px solid var(--line);
}

.section.mint {
    background: var(--teal-soft);
}

.section.ink {
    --coral-text: var(--coral-on-dark);
    color: var(--white);
    background: var(--deep);
    border-bottom-color: #285455;
}

.section-heading {
    display: grid;
    grid-template-columns: minmax(220px, 0.72fr) minmax(0, 1.28fr);
    gap: 60px;
    align-items: start;
    margin-bottom: 42px;
}

.section-heading > *,
.guide-grid > *,
.targets-grid > *,
.development-grid > *,
.api-column {
    min-width: 0;
}

.section-heading h2 {
    margin-bottom: 0;
    font-size: 2.8rem;
    font-weight: 700;
}

.section-heading p {
    max-width: 620px;
    margin-bottom: 0;
    color: var(--muted);
    font-size: 1.07rem;
}

.ink .section-heading p,
.ink .muted {
    color: #bdd2c8;
}

.section-number {
    display: block;
    margin-bottom: 12px;
    color: var(--coral-text);
    font-family: "Space Mono", monospace;
    font-size: 0.75rem;
    font-weight: 700;
}

.guide-grid,
.lifecycle-grid,
.targets-grid,
.api-grid,
.development-grid {
    display: grid;
    align-items: start;
}

.guide-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 46px;
}

.guide-block {
    padding-top: 18px;
    border-top: 3px solid var(--ink);
}

.guide-block h3,
.development-grid h3 {
    margin-bottom: 10px;
    font-size: 1.45rem;
}

.guide-block p {
    margin-bottom: 22px;
    color: var(--muted);
}

.guide-block pre {
    box-shadow: 0 10px 22px rgba(16, 47, 48, 0.1);
}

.provider-table-wrap {
    width: 100%;
    margin-top: 46px;
    overflow-x: auto;
    background: var(--surface);
    box-shadow: var(--shadow);
}

.provider-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--surface);
}

.provider-table th,
.provider-table td {
    padding: 18px 20px;
    border-bottom: 1px solid var(--line);
    text-align: left;
    vertical-align: top;
}

.provider-table th {
    color: var(--muted);
    background: #e9eee6;
    font-family: "Space Mono", monospace;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

html[data-theme="dark"] .provider-table th {
    background: #214344;
}

.provider-table tr:last-child td {
    border-bottom: 0;
}

.provider-table td:first-child {
    width: 33%;
    color: var(--teal);
    font-family: "Space Mono", monospace;
    font-size: 0.86rem;
}

.callout,
.api-note {
    background: var(--surface);
}

.callout {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 16px;
    align-items: start;
    margin-top: 28px;
    padding: 18px 20px;
    border-left: 5px solid var(--coral);
}

.callout strong {
    display: block;
    margin-bottom: 3px;
}

.callout p {
    margin-bottom: 0;
    color: var(--muted);
}

.callout-mark {
    display: grid;
    place-items: center;
    width: 24px;
    height: 24px;
    color: var(--deep);
    background: var(--yellow);
    border-radius: 50%;
    font-family: "Space Mono", monospace;
    font-size: 0.75rem;
    font-weight: 700;
}

.lifecycle-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.lifecycle-item {
    min-height: 260px;
    padding: 26px 24px 24px;
    color: var(--ink);
    background: var(--surface);
    border-top: 6px solid var(--teal);
}

.lifecycle-item:nth-child(2) {
    border-top-color: var(--coral);
}

.lifecycle-item:nth-child(3) {
    border-top-color: var(--blue);
}

.lifecycle-code {
    margin-top: 30px;
}

.lifecycle-item h3 {
    margin-bottom: 12px;
    font-size: 1.35rem;
}

.lifecycle-item p {
    margin-bottom: 0;
    color: var(--muted);
}

.lifecycle-item code {
    color: var(--ink);
    background: #e7eee7;
}

html[data-theme="dark"] .lifecycle-item code {
    background: #254c4c;
}

.resolution-diagram {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 260px;
    gap: 24px;
    align-items: start;
    margin-top: 36px;
}

.resolution-flow {
    display: grid;
    gap: 0;
    min-width: 0;
}

.resolution-stage {
    display: grid;
    grid-template-columns: 78px minmax(0, 1fr);
    gap: 24px;
    padding: 24px;
    border: 1px solid #396666;
    border-left: 4px solid var(--yellow);
    background: rgba(23, 54, 55, 0.72);
}

.resolution-stage-attribute {
    border-left-color: var(--coral);
}

.resolution-stage-typed {
    border-left-color: var(--blue);
}

.resolution-stage-default {
    border-left-color: var(--teal);
}

.resolution-stage-exception {
    border-left-color: var(--coral);
    background: rgba(91, 48, 45, 0.35);
}

.resolution-stage-marker {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.resolution-index {
    color: var(--yellow);
    font-family: "Space Mono", monospace;
    font-size: 0.76rem;
    font-weight: 700;
}

.resolution-stage-attribute .resolution-index,
.resolution-stage-exception .resolution-index {
    color: var(--coral-on-dark);
}

.resolution-stage-typed .resolution-index {
    color: var(--blue-on-dark);
}

.resolution-stage-default .resolution-index {
    color: var(--teal-on-dark);
}

.resolution-kind,
.resolution-stage-tag,
.resolution-lane-label {
    color: #8eb5aa;
    font-family: "Space Mono", monospace;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
}

.resolution-stage-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
}

.resolution-stage h3 {
    margin-bottom: 8px;
    color: var(--white);
    font-size: 1.15rem;
}

.resolution-stage p {
    margin-bottom: 0;
    color: #bdd2c8;
    font-size: 0.92rem;
}

.resolution-stage-tag {
    flex: 0 0 auto;
    padding: 4px 7px;
    color: var(--yellow);
    border: 1px solid #557c70;
}

.resolution-choices {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
}

.resolution-choice {
    display: grid;
    gap: 8px;
    min-width: 0;
    padding: 12px;
    border: 1px solid #396666;
    background: #153a3a;
}

.resolution-choice-index {
    color: var(--yellow);
    font-family: "Space Mono", monospace;
    font-size: 0.68rem;
    font-weight: 700;
}

.resolution-choice code {
    overflow-wrap: anywhere;
    color: var(--yellow);
    background: #254c4c;
}

.resolution-choice p,
.resolution-args-context p,
.resolution-variadic-note span {
    color: #9ebdb2;
    font-size: 0.84rem;
}

.resolution-args-context,
.resolution-variadic-note {
    display: grid;
    gap: 10px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #396666;
}

.resolution-args-context strong,
.resolution-variadic-note strong {
    color: var(--white);
    font-size: 0.84rem;
}

.resolution-args-context pre {
    font-size: 0.72rem;
}

.resolution-variadic-note {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 10px;
    margin-top: 14px;
    padding-top: 14px;
}

.resolution-connector {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 44px;
    padding-left: 30px;
    color: #9ebdb2;
    font-family: "Space Mono", monospace;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
}

.resolution-connector::before {
    content: "\2193";
    color: var(--yellow);
    font-size: 1.25rem;
    line-height: 1;
}

.resolution-provider-lane {
    position: sticky;
    top: 96px;
    padding: 22px;
    border: 1px solid #396666;
    background: #153a3a;
}

.resolution-provider-lane h3 {
    margin: 10px 0 8px;
    color: var(--white);
    font-size: 1.15rem;
}

.resolution-provider-lane > p {
    margin-bottom: 0;
    color: #bdd2c8;
    font-size: 0.86rem;
}

.provider-chain {
    display: grid;
    gap: 0;
    margin-top: 18px;
}

.provider-node {
    padding: 11px 12px;
    color: var(--white);
    border: 1px solid #557c70;
    background: #1d4848;
    font-family: "Space Mono", monospace;
    font-size: 0.74rem;
}

.provider-node:last-child {
    color: #9ebdb2;
    border-style: dashed;
    background: transparent;
}

.provider-chain-arrow {
    padding: 5px 0;
    color: var(--yellow);
    font-family: "Space Mono", monospace;
    font-size: 0.9rem;
    line-height: 1;
    text-align: center;
}

.resolution-provider-footnote {
    margin-top: 16px !important;
    padding-top: 14px;
    border-top: 1px solid #396666;
    font-size: 0.78rem !important;
}

.resolution-note,
.resolution-types {
    max-width: 980px;
}

.resolution-note {
    margin: 24px 0 0;
}

.resolution-types {
    margin: 12px 0 0;
}

.targets-grid {
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: 40px;
}

.target-list,
.link-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.target-list {
    border-top: 1px solid var(--line);
}

.target-list li {
    display: grid;
    grid-template-columns: minmax(130px, 0.6fr) minmax(0, 1.4fr);
    gap: 20px;
    padding: 17px 0;
    border-bottom: 1px solid var(--line);
}

.target-list strong {
    font-size: 0.96rem;
}

.target-list span {
    color: var(--muted);
}

.targets-variadic {
    margin-top: 44px;
}

.targets-variadic h3 {
    margin-bottom: 10px;
    font-size: 1.35rem;
}

.targets-variadic p {
    max-width: 760px;
    margin-bottom: 16px;
    color: var(--muted);
}

.api-note {
    margin-bottom: 32px;
    padding: 20px 22px;
    color: var(--deep);
    background: var(--yellow);
    border-left: 5px solid var(--coral);
}

.api-note p {
    margin-bottom: 0;
}

.api-note code {
    overflow-wrap: anywhere;
}

.api-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 42px;
}

details {
    padding: 17px 0;
    border-top: 1px solid var(--line);
}

details:last-child {
    border-bottom: 1px solid var(--line);
}

summary {
    cursor: pointer;
    color: var(--ink);
    font-weight: 700;
}

summary::marker {
    color: var(--coral);
}

details p {
    margin: 12px 0 0;
    color: var(--muted);
}

.source-link {
    display: inline-block;
    margin-top: 10px;
    color: var(--teal);
    font-size: 0.74rem;
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
}

.development-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
    gap: 48px;
}

.development-grid h3 {
    margin-bottom: 14px;
}

.link-list {
    display: grid;
    gap: 10px;
}

.link-list a {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
    color: var(--teal);
    font-weight: 600;
    text-decoration: none;
}

.link-list a::after {
    content: "\2197";
    color: var(--coral);
    font-family: "Space Mono", monospace;
}

.link-list a:hover,
.link-list a:focus-visible {
    color: var(--coral);
}

footer {
    padding: 34px 0 44px;
    color: var(--muted);
    font-size: 0.9rem;
}

footer .wrap {
    display: flex;
    justify-content: space-between;
    gap: 24px;
}

footer p {
    margin-bottom: 0;
}

@media (max-width: 900px) {
    .nav-links {
        gap: 13px;
        font-size: 0.82rem;
    }

    h1 {
        font-size: 4.5rem;
    }

    .section-heading,
    .targets-grid,
    .development-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .resolution-diagram {
        grid-template-columns: 1fr;
    }

    .resolution-provider-lane {
        position: static;
    }

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

    .lifecycle-item {
        min-height: auto;
    }
}

@media (max-width: 620px) {
    .wrap {
        width: min(100% - 28px, 1180px);
    }

    .site-header {
        position: static;
    }

    .nav {
        align-items: flex-start;
        flex-direction: column;
        gap: 11px;
        padding: 15px 0;
    }

    .nav-brand {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }

    .nav-tools {
        flex-wrap: wrap;
        width: 100%;
    }

    .nav-links {
        flex-wrap: wrap;
        gap: 8px 16px;
    }

    .hero-inner {
        padding: 58px 0 52px;
    }

    h1 {
        font-size: 3.45rem;
    }

    .hero-lede {
        font-size: 1.06rem;
    }

    .section {
        padding: 58px 0;
    }

    .section-heading h2 {
        font-size: 2.25rem;
    }

    .guide-grid,
    .api-grid {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .provider-table th,
    .provider-table td {
        min-width: 190px;
    }

    .resolution-stage {
        grid-template-columns: 1fr;
        gap: 14px;
        padding: 18px;
    }

    .resolution-stage-marker {
        flex-direction: row;
        align-items: center;
        gap: 10px;
    }

    .resolution-stage-head {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }

    .resolution-choices {
        grid-template-columns: 1fr;
    }

    .resolution-variadic-note {
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .target-list li {
        grid-template-columns: 1fr;
        gap: 4px;
    }

    footer .wrap {
        flex-direction: column;
        gap: 8px;
    }
}

@media (max-width: 300px) {
    h1 {
        font-size: 2.4rem;
    }

    .section-heading h2 {
        font-size: 2rem;
    }
}

@media (prefers-reduced-motion: no-preference) {
    .hero-inner,
    .section-heading,
    .guide-grid,
    .resolution-stage,
    .targets-grid,
    .api-grid {
        animation: reveal 500ms ease both;
    }

    .guide-grid,
    .resolution-stage,
    .targets-grid,
    .api-grid {
        animation-delay: 80ms;
    }
}

@keyframes reveal {
    from {
        transform: translateY(10px);
    }

    to {
        transform: translateY(0);
    }
}
