@font-face {
    font-family: "OpenSans";
    src: url(/assets/OpenSans-Regular.ttf) format("truetype");
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: "OpenSans";
    src: url(/assets/OpenSans-Medium.ttf) format("truetype");
    font-weight: 600 800;
    font-display: swap;
}

@font-face {
    font-family: "Akony";
    src: url(/assets/Akony.ttf) format("truetype");
    font-display: swap;
}

:root {
    color-scheme: dark;
    font-family: "OpenSans", Inter, system-ui, Arial, sans-serif;
    font-synthesis: none;
    --bg: #090909;
    --surface: #121212;
    --line: rgba(255, 255, 255, 0.085);
    --line-soft: rgba(255, 255, 255, 0.05);
    --text: #f2f4f3;
    --muted: #9ba19f;
    --muted-2: #6f7774;
    --mint: rgba(204, 86, 221, 1);
    --radius: 18px;
    --ease: cubic-bezier(0.22, 0.68, 0.32, 1);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background: var(--bg);
    overflow-x: hidden;
}

body {
    margin: 0;
    min-width: 320px;
    background: var(--bg);
    color: var(--text);
    overflow: hidden;
    font-weight: 400;
}

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

button {
    font: inherit;
    color: inherit;
}

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

::selection {
    background: var(--mint);
    color: #06100d;
}

.page-width {
    width: min(1220px, calc(100% - 48px));
    margin-inline: auto;
}

.section-pad {
    padding-block: clamp(72px, 8vw, 112px);
}

.muted {
    color: var(--muted);
}

.grid-lines {
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 46px 46px;
}

header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 100;
    padding: 12px 24px;
    pointer-events: none;
}

.header-inner {
    position: relative;
    isolation: isolate;
    width: min(1450px, 100%);
    min-height: 62px;
    margin: 0 auto;
    padding: 8px 12px 8px 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow:
        0 12px 36px rgba(0, 0, 0, 0.24),
        inset 0 1px rgba(255, 255, 255, 0.045);
    pointer-events: auto;
}

.header-inner::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    border-radius: inherit;
    background: rgba(18, 19, 19, 0.66);
    -webkit-backdrop-filter: blur(22px) saturate(135%);
    backdrop-filter: blur(22px) saturate(135%);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-size: 16px;
    font-weight: 700;
    white-space: nowrap;
}

.brand-mark {
    width: 25px;
    height: 25px;
    display: grid;
    place-items: center;
}

.brand-mark img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.header-inner nav {
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 22px;
}

.header-inner nav a {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #868d8a;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s var(--ease);
}

.header-inner nav a i {
    flex: 0 0 auto;
    color: #6f7774;
    font-size: 16px;
    transition: color 0.2s var(--ease);
}

.header-inner nav a:hover,
.header-inner nav a.active {
    color: #f1f3f2;
}

.header-inner nav a:hover i,
.header-inner nav a.active i {
    color: var(--mint);
}

i.external-arrow {
    font-size: 10px;
    opacity: 0.7;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 7px;
}

.primary {
    min-height: 49px;
    padding: 0 22px;
    border: 0;
    border-radius: 11px;
    background: var(--mint);
    color: #07100e;
    font-size: 14px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    cursor: pointer;
    box-shadow: inset 0 1px rgba(255, 255, 255, 0.5);
    transition:
        transform 0.2s var(--ease),
        filter 0.2s var(--ease),
        box-shadow 0.2s var(--ease);
}

.primary:hover {
    transform: translateY(-2px);
    filter: brightness(1.05);
    box-shadow:
        0 13px 35px rgba(204, 86, 221, 0.14),
        inset 0 1px rgba(255, 255, 255, 0.5);
}

.primary.small {
    min-height: 42px;
    padding: 0 16px;
    border-radius: 9px;
    font-size: 13px;
}

.primary i,
.secondary i {
    font-size: 15px;
}

.secondary {
    min-height: 49px;
    padding: 0 20px;
    border: 1px solid var(--line);
    border-radius: 11px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #c7ccca;
    font-size: 13px;
    font-weight: 600;
    transition:
        border-color 0.2s var(--ease),
        color 0.2s var(--ease),
        background 0.2s var(--ease);
}

.secondary:hover {
    border-color: rgba(204, 86, 221, 0.4);
    background: rgba(255, 255, 255, 0.03);
    color: #fff;
}

.menu-button {
    display: none;
    width: 42px;
    height: 42px;
    margin-left: 6px;
    border: 1px solid var(--line);
    border-radius: 9px;
    background: transparent;
    place-items: center;
    cursor: pointer;
}

.menu-button i {
    font-size: 17px;
}

.hero {
    position: relative;
    min-height: 640px;
    height: calc(100svh - 16px);
    padding: 118px 0 96px;
    display: flex;
    align-items: center;
}

.hero-shader {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    background: var(--bg);
    -webkit-mask-image: radial-gradient(
        130% 105% at 50% 34%,
        #000 34%,
        rgba(0, 0, 0, 0.55) 62%,
        transparent 92%
    );
    mask-image: radial-gradient(
        130% 105% at 50% 34%,
        #000 34%,
        rgba(0, 0, 0, 0.55) 62%,
        transparent 92%
    );
}

.hero-shader canvas {
    opacity: 0;
    transition: opacity 0.9s var(--ease);
}

.hero-shader[data-shader="ready"] canvas {
    opacity: 1;
}

.hero-grid {
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: 0.55;
    -webkit-mask-image: linear-gradient(to bottom, #000 0%, transparent 88%);
    mask-image: linear-gradient(to bottom, #000 0%, transparent 88%);
}

.hero::after {
    content: "";
    position: absolute;
    z-index: 2;
    inset: auto 0 -1px;
    height: 150px;
    background: linear-gradient(to bottom, transparent, var(--bg) 94%);
    pointer-events: none;
}

.hero-inner {
    position: relative;
    z-index: 3;
    display: flex;
    justify-content: center;
}

.hero-copy {
    width: min(100%, 1200px);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.eyebrow,
.section-number {
    color: #9ba29f;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.hero h1 {
    width: 100%;
    margin: 26px auto 24px;
    display: grid;
    justify-items: center;
    gap: 8px;
    font-family: "Akony", "OpenSans", sans-serif;
    font-size: clamp(46px, 8.6vw, 116px);
    font-weight: 400;
    line-height: 0.88;
    letter-spacing: -0.03em;
}

.hero h1 .solid {
    color: #f3f5f4;
}

.hero h1 .outline {
    color: var(--mint);
    text-shadow:
        0 0 22px rgb(204, 86, 221, 0.3),
        0 0 60px rgb(204, 86, 221, 0.2);
}

.hero-copy > p {
    max-width: 660px;
    margin: 0;
    color: #d8dcda;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(17px, 2vw, 22px);
    font-style: italic;
    line-height: 1.42;
}

.section-scroll {
    position: absolute;
    bottom: 26px;
    left: calc(50% - 22px);
    z-index: 3;
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    color: #aeb7b3;
    transition:
        color 0.2s var(--ease),
        border-color 0.2s var(--ease),
        background 0.2s var(--ease);
}

.section-scroll i {
    font-size: 15px;
    transition: transform 0.25s var(--ease);
}

.section-scroll:hover {
    color: var(--mint);
    border-color: rgba(204, 86, 221, 0.45);
    background: rgba(204, 86, 221, 0.07);
}

.section-scroll:hover i {
    transform: translateY(3px);
}

.section-scroll.up:hover i {
    transform: translateY(-3px);
}

.section-pad {
    position: relative;
}

.section-heading {
    margin-bottom: 34px;
}

.section-heading h2 {
    margin: 16px 0 10px;
    font-size: clamp(32px, 4.4vw, 56px);
    font-weight: 500;
    line-height: 1.02;
    letter-spacing: -0.045em;
}

.section-heading h2 em,
.cta-panel h2 em,
.trust-copy h3 em {
    color: var(--mint);
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 400;
    font-style: normal;
}

.section-heading p {
    margin: 0;
    font-size: 15px;
}

.download-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 15px;
}

.download-card {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: var(--surface);
    transition:
        transform 0.3s var(--ease),
        border-color 0.3s var(--ease);
}

.download-card:hover {
    transform: translateY(-5px);
    border-color: rgba(204, 86, 221, 0.25);
}

.download-visual {
    position: relative;
    height: 132px;
    overflow: hidden;
    isolation: isolate;
    border-bottom: 1px solid var(--line);
    display: grid;
    place-items: center;
}

.download-visual::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(5, 7, 7, 0.24);
}

.download-field {
    position: absolute;
    inset: -35%;
    z-index: 0;
    animation: field-turn 13s linear infinite;
}

.download-field i {
    position: absolute;
    width: 58%;
    height: 58%;
    border-radius: 42% 58% 63% 37% / 52% 36% 64% 48%;
    filter: blur(22px);
    opacity: 0.8;
    mix-blend-mode: screen;
    animation: field-float 7s ease-in-out infinite alternate;
}

.download-field i:nth-child(1) {
    left: 5%;
    top: 6%;
    background: #7cf7dd;
}

.download-field i:nth-child(2) {
    right: 3%;
    top: 22%;
    background: rgba(204, 86, 221, 0.15);
    animation-delay: -2s;
}

.download-field i:nth-child(3) {
    left: 28%;
    bottom: 0;
    width: 45%;
    height: 45%;
    background: #b7fff1;
    animation-delay: -4s;
}

.download-card:nth-child(3n + 2) .download-field i:nth-child(1) {
    background: #9286ff;
}
.download-card:nth-child(3n + 2) .download-field i:nth-child(2) {
    background: #29234b;
}
.download-card:nth-child(3n + 2) .download-field i:nth-child(3) {
    background: #c5bdff;
}

.download-card:nth-child(3n) .download-field i:nth-child(1) {
    background: #ffb98a;
}
.download-card:nth-child(3n) .download-field i:nth-child(2) {
    background: #48302d;
}
.download-card:nth-child(3n) .download-field i:nth-child(3) {
    background: #ffe2cc;
}

@keyframes field-turn {
    to {
        transform: rotate(360deg);
    }
}

@keyframes field-float {
    0% {
        transform: translate3d(-8%, -5%, 0) scale(0.9);
    }
    to {
        transform: translate3d(12%, 10%, 0) scale(1.14);
    }
}

.download-visual > i {
    position: relative;
    z-index: 2;
    color: #fff;
    font-size: 34px;
    filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.55));
}

.download-platform {
    position: absolute;
    z-index: 2;
    left: 16px;
    top: 15px;
    padding: 6px 10px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    background: rgba(8, 10, 10, 0.55);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
}

.download-body {
    padding: 20px 21px 22px;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.download-body h3 {
    margin: 0;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.download-meta {
    margin: 0;
    color: var(--muted-2);
    font-size: 12px;
    font-weight: 600;
}

.download-body p {
    margin: 2px 0 0;
    color: #a7adaa;
    font-size: 14px;
    line-height: 1.45;
}

.download-hash {
    margin-top: 4px;
    padding-top: 13px;
    border-top: 1px solid var(--line-soft);
    display: flex;
    align-items: center;
    gap: 9px;
}

.download-hash span {
    color: var(--muted-2);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.12em;
    flex: 0 0 auto;
}

.download-hash code {
    min-width: 0;
    overflow: hidden;
    color: #97a09d;
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
    font-size: 10px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.download-hash button {
    width: 26px;
    height: 26px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: transparent;
    color: var(--muted-2);
    cursor: pointer;
    transition:
        color 0.2s var(--ease),
        border-color 0.2s var(--ease);
}

.download-hash button:hover {
    color: var(--mint);
    border-color: rgba(204, 86, 221, 0.35);
}

.download-hash button i {
    font-size: 11px;
}

.download-action {
    margin-top: 14px;
    min-height: 45px;
    border-radius: 10px;
    width: 100%;
}

.download-action.disabled {
    background: rgba(255, 255, 255, 0.05);
    color: var(--muted-2);
    box-shadow: none;
    cursor: not-allowed;
    pointer-events: none;
}

.home-cta {
    position: relative;
    isolation: isolate;
    padding: 78px 0 108px;
}

.home-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: #1b1b1b;
    clip-path: polygon(0 0, 100% 0, 100% 82%, 0 100%);
}

.cta-panel {
    min-height: 240px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.cta-panel h2 {
    margin: 16px 0 12px;
    font-size: clamp(34px, 5vw, 64px);
    font-weight: 500;
    line-height: 0.98;
    letter-spacing: -0.05em;
}

.cta-panel p {
    margin: 0 0 24px;
    font-size: 16px;
}

.cta-actions {
    display: flex;
    align-items: center;
    gap: 9px;
    flex-wrap: wrap;
    justify-content: center;
}

footer {
    padding-top: 62px;
    background: var(--bg);
}

.footer-top {
    padding-bottom: 52px;
    display: grid;
    grid-template-columns: 0.85fr 1.35fr;
    gap: 70px;
}

.footer-brand .brand {
    font-size: 21px;
}

.footer-brand .brand-mark {
    width: 40px;
    height: 40px;
}

.footer-brand .brand-mark img {
    width: 34px;
    height: 34px;
}

.footer-brand > p {
    margin: 22px 0;
    color: #c0c5c3;
    font-size: 18px;
    line-height: 1.4;
}

.footer-brand > div {
    display: flex;
    gap: 8px;
}

.footer-brand > div a {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    color: #737b78;
    transition:
        color 0.2s var(--ease),
        border-color 0.2s var(--ease);
}

.footer-brand > div a:hover {
    color: var(--mint);
    border-color: rgba(204, 86, 221, 0.35);
}

.footer-brand > div i {
    font-size: 17px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.footer-links > div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.footer-links > div > span {
    margin-bottom: 6px;
    color: #68706d;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.footer-links a {
    color: #a3aaa7;
    font-size: 13px;
    font-weight: 500;
    transition: color 0.2s var(--ease);
}

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

.footer-bottom {
    min-height: 62px;
    border-top: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: #434a47;
    font-size: 9px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.footer-bottom button {
    border: 0;
    background: transparent;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #686f6d;
    cursor: pointer;
    transition: color 0.2s var(--ease);
}

.footer-bottom button:hover {
    color: var(--mint);
}

.footer-bottom i {
    font-size: 12px;
}

.reveal {
    opacity: 0;
    filter: blur(14px);
    transform: translate3d(0, 22px, 0);
    transition:
        opacity 0.72s var(--ease),
        filter 0.78s var(--ease),
        transform 0.78s var(--ease);
}

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

.reveal.is-visible .download-card,
.reveal.is-visible .section-heading > *,
.reveal.is-visible .hero-copy > *,
.reveal.is-visible .cta-panel > * {
    animation: item-reveal 0.62s var(--ease) both;
}

.reveal.is-visible .download-card:nth-child(1),
.reveal.is-visible .section-heading > :nth-child(1),
.reveal.is-visible .hero-copy > :nth-child(1),
.reveal.is-visible .cta-panel > :nth-child(1) {
    animation-delay: 0.06s;
}

.reveal.is-visible .download-card:nth-child(2),
.reveal.is-visible .section-heading > :nth-child(2),
.reveal.is-visible .hero-copy > :nth-child(2),
.reveal.is-visible .cta-panel > :nth-child(2) {
    animation-delay: 0.12s;
}

.reveal.is-visible .download-card:nth-child(3),
.reveal.is-visible .section-heading > :nth-child(3),
.reveal.is-visible .hero-copy > :nth-child(3),
.reveal.is-visible .cta-panel > :nth-child(3) {
    animation-delay: 0.18s;
}

.reveal.is-visible .download-card:nth-child(n + 4),
.reveal.is-visible .cta-panel > :nth-child(n + 4) {
    animation-delay: 0.24s;
}

@keyframes item-reveal {
    0% {
        opacity: 0;
        filter: blur(10px);
    }
    to {
        opacity: 1;
        filter: none;
    }
}

@media (max-width: 1100px) {
    .header-inner nav {
        gap: 12px;
    }

    .header-inner nav a {
        font-size: 12px;
    }
}

@media (max-width: 900px) {
    .page-width {
        width: min(100% - 32px, 760px);
    }

    header {
        padding: 10px 12px;
    }

    .header-inner nav {
        position: absolute;
        inset: calc(100% + 10px) 0 auto;
        margin: 0;
        padding: 10px;
        border: 1px solid var(--line);
        border-radius: 16px;
        background: rgba(18, 19, 19, 0.92);
        -webkit-backdrop-filter: blur(22px) saturate(135%);
        backdrop-filter: blur(22px) saturate(135%);
        box-shadow: 0 22px 50px rgba(0, 0, 0, 0.38);
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 3px;
    }

    .header-inner nav.open {
        display: flex;
    }

    .header-inner nav a {
        min-height: 44px;
        padding: 0 10px;
        font-size: 15px;
    }

    .header-actions {
        margin-left: auto;
    }

    .header-actions .primary.small {
        display: none;
    }

    .menu-button {
        display: grid;
    }

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

@media (max-width: 600px) {
    .page-width {
        width: calc(100% - 24px);
    }

    .section-pad {
        padding-block: 64px;
    }

    .hero {
        min-height: 520px;
        padding: 104px 0 92px;
    }

    .hero h1 {
        margin-block: 22px;
        font-size: clamp(26px, 8vw, 46px);
    }

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

    .verify-card {
        padding: 22px;
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .footer-links {
        grid-template-columns: 1fr 1fr;
        gap: 30px 16px;
    }

    .footer-bottom {
        padding: 18px 0;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

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

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

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

.section-heading.center {
    max-width: 720px;
    margin-inline: auto;
    text-align: center;
}

.section-heading.center p {
    margin-inline: auto;
    max-width: 56ch;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.trust-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: var(--surface);
    transition:
        transform 0.3s var(--ease),
        border-color 0.3s var(--ease);
}

.trust-card:hover {
    transform: translateY(-6px);
    border-color: rgba(204, 86, 221, 0.28);
}

.trust-card.featured {
    border-color: rgba(204, 86, 221, 0.22);
}

.shader-preview {
    position: relative;
    height: 162px;
    overflow: hidden;
    isolation: isolate;
    border-bottom: 1px solid var(--line);
    display: grid;
    place-items: center;
    background: var(--bg);
}

.shader-preview::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to top, rgba(9, 9, 9, 0.55), transparent 62%);
    pointer-events: none;
}

.shader-preview canvas {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.9s var(--ease);
}

.shader-preview[data-shader="ready"] canvas {
    opacity: 0.92;
}

.shader-preview > i {
    position: relative;
    z-index: 2;
    color: #fff;
    font-size: 38px;
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.6));
}

.shader-preview > span {
    position: absolute;
    z-index: 2;
    left: 16px;
    top: 15px;
    padding: 6px 10px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    background: rgba(8, 10, 10, 0.55);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
}

.trust-copy {
    padding: 20px 21px 23px;
}

.trust-copy > span {
    color: var(--muted-2);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.trust-copy h3 {
    margin: 11px 0 9px;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.025em;
}

.trust-copy p {
    margin: 0;
    color: #a7adaa;
    font-size: 14px;
    line-height: 1.5;
}

@media (max-width: 900px) {
    .trust-grid {
        grid-template-columns: 1fr;
        max-width: 560px;
        margin-inline: auto;
    }
}
