:root {
    color-scheme: dark;
    --site-bg: #06110f;
    --site-bg-soft: #0a1b17;
    --site-panel: rgba(15, 37, 31, 0.72);
    --site-panel-strong: #102a23;
    --site-line: rgba(189, 255, 232, 0.12);
    --site-line-strong: rgba(189, 255, 232, 0.22);
    --site-text: #f0fff9;
    --site-muted: #9bb8ae;
    --site-green: #5eead4;
    --site-lime: #c7f36b;
    --site-pink: #ff7eb6;
    --site-orange: #ffb86b;
    --site-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
    --site-radius-lg: 28px;
    --site-radius-md: 20px;
    --site-radius-sm: 13px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    min-width: 320px;
    margin: 0;
    overflow-x: hidden;
    background:
        radial-gradient(circle at 50% -10%, rgba(30, 92, 75, 0.24), transparent 40%),
        var(--site-bg);
    color: var(--site-text);
    font-family: "DM Sans", sans-serif;
    line-height: 1.6;
}

button,
input {
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

a {
    color: inherit;
    text-decoration: none;
}

code,
pre {
    font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

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

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

.page-glow {
    position: fixed;
    z-index: -1;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.08;
    pointer-events: none;
}

.page-glow-one {
    top: 18%;
    right: -220px;
    background: var(--site-green);
}

.page-glow-two {
    bottom: 8%;
    left: -240px;
    background: var(--site-pink);
}

/* Thanh dieu huong */

.topbar {
    position: sticky;
    top: 0;
    z-index: 50;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    width: min(1240px, calc(100% - 32px));
    min-height: 72px;
    margin: 16px auto 0;
    padding: 0 18px;
    background: rgba(6, 17, 15, 0.76);
    border: 1px solid var(--site-line);
    border-radius: 18px;
    box-shadow: 0 12px 44px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(18px);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: max-content;
    color: var(--site-text);
    font-family: "Manrope", sans-serif;
    font-weight: 700;
    letter-spacing: -0.03em;
}

.brand strong {
    color: var(--site-green);
}

.brand-mark {
    position: relative;
    display: grid;
    width: 30px;
    height: 30px;
    place-items: center;
    border: 1px solid rgba(94, 234, 212, 0.45);
    border-radius: 50%;
}

.brand-mark::before,
.brand-mark::after,
.brand-mark span {
    content: "";
    position: absolute;
    border-radius: 50%;
}

.brand-mark::before {
    width: 20px;
    height: 20px;
    border: 1px solid rgba(94, 234, 212, 0.3);
}

.brand-mark::after {
    width: 4px;
    height: 4px;
    background: var(--site-lime);
    box-shadow: 0 0 10px var(--site-lime);
}

.brand-mark span {
    width: 100%;
    height: 8px;
    border-block: 1px solid rgba(94, 234, 212, 0.35);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
    color: var(--site-muted);
    font-size: 0.9rem;
    font-weight: 600;
}

.nav-links a,
.github-link {
    transition: color 180ms ease;
}

.nav-links a:hover,
.github-link:hover {
    color: var(--site-green);
}

.github-link {
    justify-self: end;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--site-text);
    font-size: 0.9rem;
    font-weight: 600;
}

/* Khu vuc gioi thieu */

.hero {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
    align-items: center;
    min-height: 720px;
    padding-block: 86px 92px;
}

.hero-copy {
    position: relative;
    z-index: 2;
}

.eyebrow,
.section-kicker {
    color: var(--site-green);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 8px 12px;
    background: rgba(94, 234, 212, 0.07);
    border: 1px solid rgba(94, 234, 212, 0.16);
    border-radius: 999px;
}

.status-dot {
    width: 7px;
    height: 7px;
    background: var(--site-lime);
    border-radius: 50%;
    box-shadow: 0 0 0 5px rgba(199, 243, 107, 0.1);
}

.hero h1 {
    max-width: 760px;
    margin: 24px 0 20px;
    font-family: "Manrope", sans-serif;
    font-size: clamp(3.6rem, 7vw, 6.7rem);
    font-weight: 700;
    letter-spacing: -0.075em;
    line-height: 0.98;
}

.hero h1 em {
    color: transparent;
    font-style: normal;
    background: linear-gradient(100deg, var(--site-green), var(--site-lime));
    -webkit-background-clip: text;
    background-clip: text;
}

.hero-lead {
    max-width: 640px;
    margin: 0;
    color: var(--site-muted);
    font-size: 1.1rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
}

.button {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    border: 1px solid transparent;
    border-radius: 13px;
    cursor: pointer;
    font-weight: 700;
    transition:
        transform 180ms ease,
        background 180ms ease,
        border-color 180ms ease;
}

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

.button-primary {
    background: var(--site-green);
    color: #06201a;
    box-shadow: 0 12px 32px rgba(94, 234, 212, 0.2);
}

.button-primary:hover {
    background: #7af0dc;
}

.button-secondary {
    background: rgba(255, 255, 255, 0.03);
    border-color: var(--site-line-strong);
    color: var(--site-text);
}

.button-secondary:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(94, 234, 212, 0.36);
}

.hero-stats {
    display: flex;
    gap: 36px;
    margin: 48px 0 0;
}

.hero-stats div {
    position: relative;
    padding-right: 36px;
}

.hero-stats div:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 6px;
    right: 0;
    width: 1px;
    height: 34px;
    background: var(--site-line-strong);
}

.hero-stats dt {
    font-family: "Manrope", sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
}

.hero-stats dd {
    margin: 7px 0 0;
    color: var(--site-muted);
    font-size: 0.76rem;
    text-transform: uppercase;
}

.hero-demo {
    position: relative;
    display: grid;
    min-height: 480px;
    place-items: center;
    perspective: 1200px;
}

.demo-orbit {
    position: absolute;
    border: 1px solid rgba(94, 234, 212, 0.14);
    border-radius: 50%;
}

.demo-orbit-outer {
    width: 430px;
    height: 430px;
}

.demo-orbit-inner {
    width: 310px;
    height: 310px;
    border-style: dashed;
    animation: site-kf-spin 28s linear infinite;
}

.hero-demo-card {
    position: relative;
    z-index: 2;
    width: min(340px, 78vw);
    padding: 14px;
    background: rgba(16, 42, 35, 0.86);
    border: 1px solid rgba(189, 255, 232, 0.18);
    border-radius: 24px;
    box-shadow: var(--site-shadow);
    backdrop-filter: blur(16px);
}

.demo-card-label {
    display: inline-block;
    margin: 2px 4px 12px;
    color: var(--site-green);
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.14em;
}

.hero-panorama {
    position: relative;
    height: 220px;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(88, 185, 165, 0.75), rgba(9, 36, 31, 0.9)),
        #123f36;
    border-radius: 16px;
}

.hero-sun {
    position: absolute;
    top: 34px;
    right: 52px;
    width: 46px;
    height: 46px;
    background: var(--site-lime);
    border-radius: 50%;
    box-shadow: 0 0 50px rgba(199, 243, 107, 0.42);
}

.hero-mountain {
    position: absolute;
    bottom: -32px;
    width: 220px;
    height: 170px;
    border-radius: 58% 42% 0 0;
    transform: rotate(14deg);
}

.hero-mountain-back {
    left: -38px;
    background: #1e6352;
}

.hero-mountain-front {
    right: -48px;
    bottom: -52px;
    width: 260px;
    background: #0a2d26;
    transform: rotate(-12deg);
}

.hero-hotspot {
    position: absolute !important;
    right: 37%;
    bottom: 37%;
    z-index: 5;
}

.demo-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 4px 2px;
}

.demo-card-footer code {
    color: var(--site-green);
    font-size: 0.78rem;
}

.demo-card-footer span {
    color: var(--site-muted);
    font-size: 0.72rem;
}

.demo-card-footer span::before {
    content: "";
    display: inline-block;
    width: 6px;
    height: 6px;
    margin-right: 6px;
    background: var(--site-lime);
    border-radius: 50%;
}

.hero-chip {
    position: absolute;
    z-index: 3;
    display: grid;
    width: 56px;
    height: 56px;
    place-items: center;
    background: rgba(10, 27, 23, 0.92);
    border: 1px solid var(--site-line-strong);
    border-radius: 17px;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.25);
    font-family: "Manrope", sans-serif;
    font-size: 0.72rem;
    font-weight: 800;
}

.hero-chip-css {
    top: 78px;
    left: 25px;
    color: var(--site-green);
    transform: rotate(-8deg);
}

.hero-chip-js {
    right: 22px;
    bottom: 82px;
    color: var(--site-orange);
    transform: rotate(7deg);
}

@keyframes site-kf-spin {
    to {
        transform: rotate(360deg);
    }
}

/* Tieu de khu vuc */

.section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 34px;
}

.section-kicker {
    margin: 0 0 10px;
}

.section-heading h2,
.api-copy h2 {
    margin: 0;
    font-family: "Manrope", sans-serif;
    font-size: clamp(2.1rem, 4vw, 3.4rem);
    letter-spacing: -0.055em;
    line-height: 1.08;
}

.section-heading > p {
    max-width: 470px;
    margin: 0;
    color: var(--site-muted);
}

/* Thu vien hieu ung */

.library-section {
    padding-block: 74px 120px;
}

.catalog-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 28px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid var(--site-line);
    border-radius: 16px;
}

.filter-group {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

.filter-button {
    min-height: 38px;
    padding: 0 14px;
    background: transparent;
    border: 0;
    border-radius: 10px;
    color: var(--site-muted);
    cursor: pointer;
    font-size: 0.82rem;
    font-weight: 600;
    transition:
        background 160ms ease,
        color 160ms ease;
}

.filter-button:hover,
.filter-button.is-active {
    background: rgba(94, 234, 212, 0.11);
    color: var(--site-green);
}

.search-box {
    display: flex;
    width: min(280px, 100%);
    min-height: 40px;
    align-items: center;
    gap: 9px;
    padding: 0 12px;
    background: rgba(0, 0, 0, 0.16);
    border: 1px solid var(--site-line);
    border-radius: 11px;
}

.search-box svg {
    width: 17px;
    fill: none;
    stroke: var(--site-muted);
    stroke-linecap: round;
    stroke-width: 1.8;
}

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

.search-box input::placeholder {
    color: #6f8e84;
}

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

.effect-card {
    min-width: 0;
    overflow: hidden;
    background: var(--site-panel);
    border: 1px solid var(--site-line);
    border-radius: var(--site-radius-md);
    box-shadow: 0 18px 52px rgba(0, 0, 0, 0.12);
    transition:
        border-color 200ms ease,
        transform 200ms ease,
        box-shadow 200ms ease;
}

.effect-card:hover {
    border-color: rgba(94, 234, 212, 0.28);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.2);
    transform: translateY(-4px);
}

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

.preview-stage {
    position: relative;
    display: grid;
    min-height: 220px;
    overflow: hidden;
    place-items: center;
    background:
        linear-gradient(rgba(189, 255, 232, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(189, 255, 232, 0.035) 1px, transparent 1px),
        radial-gradient(circle at 50% 48%, rgba(94, 234, 212, 0.12), transparent 52%),
        #0a1c18;
    background-size: 24px 24px, 24px 24px, auto, auto;
    border-bottom: 1px solid var(--site-line);
    cursor: pointer;
}

.preview-stage::after {
    content: "BẤM ĐỂ PHÁT LẠI";
    position: absolute;
    right: 12px;
    bottom: 10px;
    color: rgba(255, 255, 255, 0.34);
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.09em;
}

.preview-object {
    position: relative;
    z-index: 2;
}

.preview-text {
    color: var(--site-text);
    font-family: "Manrope", sans-serif;
    font-size: 1.55rem;
    font-weight: 800;
    letter-spacing: -0.04em;
}

.preview-text span {
    color: var(--site-green);
}

.preview-rectangle {
    display: grid;
    width: 132px;
    height: 78px;
    place-items: center;
    background: linear-gradient(145deg, #173e34, #0e2822);
    border: 1px solid rgba(94, 234, 212, 0.35);
    border-radius: 16px;
    color: var(--site-green);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
}

.preview-image {
    display: grid;
    width: 128px;
    height: 96px;
    overflow: hidden;
    place-items: center;
    background: linear-gradient(145deg, #306f5f, #12362e);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 17px;
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.24);
}

.preview-image svg {
    width: 70%;
    fill: none;
    stroke: rgba(240, 255, 249, 0.88);
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.5;
}

.preview-button {
    min-width: 126px;
    min-height: 46px;
    padding: 0 20px;
    background: var(--site-green);
    border: 0;
    border-radius: 999px;
    color: #06201a;
    font-weight: 800;
    box-shadow: 0 12px 28px rgba(94, 234, 212, 0.18);
}

.preview-pin {
    display: grid;
    width: 54px;
    height: 72px;
    place-items: center;
}

.preview-pin svg {
    width: 40px;
    overflow: visible;
    fill: var(--site-pink);
    filter: drop-shadow(0 8px 12px rgba(0, 0, 0, 0.3));
}

.preview-dot-wrap {
    position: relative;
    display: grid;
    width: 100px;
    height: 100px;
    place-items: center;
}

.effect-body {
    padding: 18px;
}

.effect-topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.effect-topline h3 {
    margin: 0;
    font-family: "Manrope", sans-serif;
    font-size: 1.05rem;
    letter-spacing: -0.03em;
}

.effect-number {
    color: #5e7a71;
    font-family: "SFMono-Regular", Consolas, monospace;
    font-size: 0.68rem;
}

.effect-description {
    min-height: 44px;
    margin: 8px 0 14px;
    color: var(--site-muted);
    font-size: 0.82rem;
    line-height: 1.5;
}

.effect-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 16px;
}

.effect-tag {
    padding: 4px 8px;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid var(--site-line);
    border-radius: 999px;
    color: #7fa095;
    font-size: 0.64rem;
    font-weight: 600;
    text-transform: uppercase;
}

.class-row {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 7px 7px 7px 12px;
    background: rgba(0, 0, 0, 0.18);
    border: 1px solid var(--site-line);
    border-radius: 11px;
}

.class-row code {
    min-width: 0;
    flex: 1;
    overflow: hidden;
    color: var(--site-green);
    font-size: 0.76rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.copy-button,
.code-panel-top button {
    min-height: 31px;
    padding: 0 11px;
    background: rgba(94, 234, 212, 0.1);
    border: 1px solid rgba(94, 234, 212, 0.16);
    border-radius: 8px;
    color: var(--site-green);
    cursor: pointer;
    font-size: 0.7rem;
    font-weight: 700;
    transition:
        background 160ms ease,
        color 160ms ease;
}

.copy-button:hover,
.code-panel-top button:hover {
    background: var(--site-green);
    color: #06201a;
}

.empty-state {
    padding: 64px 20px;
    color: var(--site-muted);
    text-align: center;
}

/* Khu vuc cai dat */

.install-section {
    padding-block: 110px;
    background:
        radial-gradient(circle at 15% 20%, rgba(94, 234, 212, 0.08), transparent 32%),
        #081713;
    border-block: 1px solid var(--site-line);
}

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

.code-panel {
    min-width: 0;
    overflow: hidden;
    background: #06110f;
    border: 1px solid var(--site-line-strong);
    border-radius: var(--site-radius-md);
    box-shadow: 0 20px 54px rgba(0, 0, 0, 0.2);
}

.code-panel-top {
    display: flex;
    min-height: 52px;
    align-items: center;
    justify-content: space-between;
    padding: 0 13px 0 17px;
    border-bottom: 1px solid var(--site-line);
}

.code-panel-top > div {
    display: flex;
    align-items: center;
    gap: 9px;
}

.code-panel-top strong {
    font-size: 0.78rem;
}

.file-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
}

.file-dot-css {
    background: var(--site-green);
    box-shadow: 0 0 10px rgba(94, 234, 212, 0.4);
}

.file-dot-js {
    background: var(--site-orange);
    box-shadow: 0 0 10px rgba(255, 184, 107, 0.35);
}

.code-panel pre {
    min-height: 116px;
    margin: 0;
    padding: 22px;
    overflow-x: auto;
    color: #b9d7cc;
    font-size: 0.78rem;
    line-height: 1.8;
    white-space: pre-wrap;
    word-break: break-all;
}

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

.step-card {
    padding: 25px;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid var(--site-line);
    border-radius: var(--site-radius-md);
}

.step-card > span {
    display: block;
    margin-bottom: 24px;
    color: var(--site-green);
    font-family: "SFMono-Regular", Consolas, monospace;
    font-size: 0.72rem;
}

.step-card h3 {
    margin: 0 0 8px;
    font-family: "Manrope", sans-serif;
    font-size: 1rem;
}

.step-card p {
    margin: 0;
    color: var(--site-muted);
    font-size: 0.82rem;
}

/* Khu vuc API */

.api-section {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
    align-items: center;
    gap: 80px;
    padding-block: 120px;
}

.api-copy > p:not(.section-kicker) {
    max-width: 560px;
    margin: 20px 0 24px;
    color: var(--site-muted);
}

.api-copy p code {
    color: var(--site-green);
}

.api-methods {
    display: grid;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.api-methods li {
    padding: 9px 12px;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid var(--site-line);
    border-radius: 9px;
}

.api-methods code {
    color: #b9d7cc;
    font-size: 0.76rem;
}

.api-code-panel pre {
    min-height: 180px;
    display: flex;
    align-items: center;
}

/* Chan trang va thong bao */

.footer {
    display: flex;
    min-height: 112px;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    border-top: 1px solid var(--site-line);
    color: var(--site-muted);
    font-size: 0.78rem;
}

.footer-brand {
    color: var(--site-text);
}

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

.toast {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 100;
    padding: 11px 16px;
    background: var(--site-text);
    border-radius: 11px;
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
    color: #06201a;
    font-size: 0.8rem;
    font-weight: 700;
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
    transition:
        opacity 180ms ease,
        transform 180ms ease;
}

.toast.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Giao dien may tinh bang */

@media (max-width: 960px) {
    .topbar {
        grid-template-columns: 1fr auto;
    }

    .nav-links {
        display: none;
    }

    .hero {
        grid-template-columns: 1fr;
        padding-top: 82px;
        text-align: center;
    }

    .hero-copy {
        display: grid;
        justify-items: center;
    }

    .hero-demo {
        min-height: 530px;
    }

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

    .api-section {
        grid-template-columns: 1fr;
        gap: 42px;
    }
}

/* Giao dien dien thoai */

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

    .topbar {
        width: calc(100% - 20px);
        min-height: 62px;
        margin-top: 10px;
        padding-inline: 14px;
    }

    .github-link {
        font-size: 0.78rem;
    }

    .hero {
        min-height: auto;
        padding-block: 64px 70px;
    }

    .hero h1 {
        font-size: clamp(3.15rem, 16vw, 4.8rem);
    }

    .hero-lead {
        font-size: 0.98rem;
    }

    .hero-actions {
        display: grid;
        width: 100%;
    }

    .hero-stats {
        width: 100%;
        gap: 12px;
        justify-content: space-between;
    }

    .hero-stats div {
        flex: 1;
        padding-right: 12px;
    }

    .hero-demo {
        min-height: 440px;
    }

    .demo-orbit-outer {
        width: 340px;
        height: 340px;
    }

    .demo-orbit-inner {
        width: 250px;
        height: 250px;
    }

    .hero-chip-css {
        left: 0;
    }

    .hero-chip-js {
        right: 0;
    }

    .section-heading {
        display: grid;
        gap: 16px;
    }

    .catalog-toolbar {
        display: grid;
    }

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

    .search-box {
        width: 100%;
    }

    .effect-grid,
    .install-grid,
    .steps {
        grid-template-columns: 1fr;
    }

    .library-section,
    .install-section,
    .api-section {
        padding-block: 80px;
    }

    .api-section {
        gap: 32px;
    }

    .footer {
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        padding-block: 28px;
    }
}

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

    .demo-orbit-inner {
        animation: none;
    }

    .effect-card,
    .button,
    .toast {
        transition: none;
    }
}
