:root {
    --text: #0b0b0b;
    --muted: #5b5f66;
    --dot: #fef3bd;
    --border: #eceff3;
    font: 16px/1.55 system-ui, -apple-system, Segoe UI, Inter, Roboto;
}

html {
    scroll-behavior: smooth;
}

* {
    box-sizing: border-box
}

body {
    margin: 0;
    font: 16px/1.55 system-ui, -apple-system, Segoe UI, Inter, Roboto;
    background: #fff;
    color: var(--text)
}

.hero {
    position: relative;
    min-height: 72vh;
    display: grid;
    place-items: center;
    text-align: center;
    overflow: hidden;
    border-bottom: 1px solid var(--border);
}

.hero-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: transparent
}

.hero-inner {
    position: relative;
    z-index: 2;
    padding: 80px 16px
}

.display {
    font-family: "Lora", serif;
    font-weight: 100;
    line-height: 1.1;
    font-size: clamp(34px, 6vw, 50px);
    margin: 0 0 18px
}

.lead {
    color: var(--muted);
    max-width: 820px;
    margin: 0 auto;
    font-size: 18px
}
.stellar_logo{
    font-size: 22px;
    font-weight: 500;
    font-family: inter;
}
:root {
    --hdr-bg: rgba(255, 255, 255, .9);
    --hdr-border: #eceff3;
    --text: #0b0b0b;
    --muted: #5b5f66;
    --max: 1280px;
}

.hdr {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: saturate(180%) blur(10px);
    background: var(--hdr-bg);
    border-bottom: 1px solid var(--hdr-border);
}

.hdr__wrap {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 20px;
    height: 72px;
    display: flex;
    align-items: center;
    gap: 18px;
}
.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text)
}

.brand__icon {
    width: auto;
    height: 32px
}

.brand__text {
    font-weight: 700;
    letter-spacing: .2px
}

.menu {
    display: flex;
    align-items: center;
    gap: 26px;
    margin-left: 32px
}

.menu a {
    color: var(--text);
    text-decoration: none;
    font-size: 14px;
    opacity: .9
}

.menu a:hover {
    opacity: 1
}

.hdr__actions {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 14px
}

.hdr__docs {
    color: var(--text);
    text-decoration: none;
    font-size: 14px;
    opacity: .9
}

.hdr__docs:hover {
    opacity: 1
}

.search {
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid var(--hdr-border);
    border-radius: 999px;
    padding: 6px 10px;
    background: #fff;
}

.search__icon {
    width: 18px;
    height: 18px;
    opacity: .7
}

.search__input {
    border: 0;
    outline: 0;
    background: transparent;
    width: 160px;
    font-size: 14px;
    color: var(--text)
}

.burger {
    display: none;
    width: 36px;
    height: 36px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--hdr-border);
    border-radius: 10px;
    background: #fff;
    cursor: pointer;
}

.burger span,
.burger::before,
.burger::after {
    content: "";
    display: block;
    width: 18px;
    height: 2px;
    background: #111;
    transition: .25s;
}

.burger::before {
    transform: translateY(-6px)
}

.burger::after {
    transform: translateY(6px)
}

.burger.active::before {
    transform: translateY(0) rotate(45deg)
}

.burger.active span {
    opacity: 0
}

.burger.active::after {
    transform: translateY(0) rotate(-45deg)
}

.drawer {
    display: none;
    position: fixed;
    inset: 72px 0 auto 0;
    background: #fff;
    border-bottom: 1px solid var(--hdr-border);
    z-index: 49;
}

.drawer a {
    display: block;
    padding: 14px 20px;
    color: #111;
    text-decoration: none;
    border-top: 1px solid var(--hdr-border)
}

.drawer.open {
    display: block
}

@media (max-width: 980px) {
    .menu {
        display: none
    }

    .search__input {
        width: 110px
    }

    .burger {
        display: flex
    }
}

#hero-rotator {
    margin-top: 18px;
    font-weight: 600;
    font-size: clamp(18px, 2.4vw, 28px);
    line-height: 1.15;
    color: #0b0b0b;
}

#hero-rotator .rotator {
    display: inline-flex;
    font-family: "Lora", serif;
    font-weight: 100;
    align-items: center;
    gap: .35ch;
}

#hero-rotator .rotator__fixed {
    opacity: .92;
    font-size: 40px;
}

#hero-rotator .flip-viewport {
    position: relative;
    display: inline-flex;
    align-items: center;
    height: 40px;
    font-size: 40px;
    overflow: hidden;
    perspective: 1200px;
    perspective-origin: 50% 58%;
    vertical-align: middle;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

#hero-rotator .flip-cube {
    position: relative;
    display: inline-block;
    transform-style: preserve-3d;
    transition: transform 650ms cubic-bezier(.22, .61, .36, 1);
    will-change: transform;
}

#hero-rotator .flip-viewport.is-flip .flip-cube {
    transform: rotateX(-90deg);
}

#hero-rotator .face {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    white-space: nowrap;
    transform-origin: center center;
    backface-visibility: hidden;
}

.media-six {
    --gap: 24px;
    --card-h-desktop: 180px;
    --card-h-tablet: 160px;
    --card-h-mobile: 150px;
    --radius: 16px;
    --item-br: #eceff3;
}

.media-six__track {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--gap);
}

@media (min-width:1200px) {
    .media-six__track {
        grid-template-columns: repeat(6, minmax(0, 1fr));
    }
}

.media-six__item {
    height: var(--card-h-desktop);
    background: #fff;
    border: 1px solid var(--item-br);
    border-radius: var(--radius);
    padding: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.media-six__item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    image-rendering: -webkit-optimize-contrast;
    filter: grayscale(100%);
    opacity: .95;
    transition: opacity .15s ease, filter .15s ease;
}

.media-six__item:hover img {
    opacity: 1;
    filter: grayscale(60%);
}

@media (max-width:1024px) {
    .media-six__track {
        display: flex;
        overflow-x: auto;
        gap: var(--gap);
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 8px;
    }

    .media-six__item {
        flex: 0 0 clamp(78%, 82vw, 88%);
        height: var(--card-h-tablet);
        scroll-snap-align: start;
    }
}

@media (max-width:560px) {
    .media-six {
        --gap: 16px;
    }

    .media-six__item {
        padding: 18px;
        height: var(--card-h-mobile);
    }
}
.wallet-segs {
    background-color: #111111;
    padding: 50px 20px;
    color: #fff;
}

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

.wallet-card {
    background-color: #1f1f1f;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.wallet-card:hover {
    transform: scale(1.05);
}

.card-ico {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fef3bd;
    border-radius: 50%;
}

.card-ttl {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.card-txt {
    font-size: 1rem;
    margin-bottom: 20px;
}

.card-cta {
    font-size: 1rem;
    color: #fef3bd;
    text-decoration: none;
    font-weight: bold;
    border: 1px solid #fef3bd;
    padding: 10px;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

.card-cta:hover {
    background-color: #fef3bd;
    color: #111;
}

@media (max-width: 768px) {
    .wallet-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.perf {
    background: #fff;
    color: #111
}

.perf__wrap {
    max-width: 1280px;
    margin: 0 auto;
    padding: 56px 20px 48px
}

.perf__title {
    margin: .1em 0 .5em;
    font: 600 clamp(32px, 5vw, 56px)/1.08 "Georgia", serif
}

.perf__lead {
    max-width: 860px;
    margin: 0 0 28px;
    color: #5b6068;
    font: 16px/1.7 Inter, system-ui
}

.perf__lead_sub {
    max-width: 860px;
    margin: 0 0 28px;
    color: #5b6068;
    font-family: "Lora", serif;
}

.perf__rule {
    border: 0;
    border-top: 1px solid #dadde3;
    margin: 24px 0 22px
}

.perf__grid {
    display: grid;
    gap: 0;
    border: 1px solid #dfe3ea;
    border-left: 0;
    border-top: 0;
    grid-template-columns: repeat(4, 1fr);
}

@media (max-width:1100px) {
    .perf__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.kpi {
    position: relative;
    min-height: 240px;
    background: #fff;
    overflow: hidden;
    border-left: 1px solid #dfe3ea;
    border-top: 1px solid #dfe3ea;
    display: grid;
    grid-template-rows: auto 1fr;
    padding: 18px 18px 16px;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity .5s ease, transform .5s ease;
}

.kpi.is-in {
    opacity: 1;
    transform: none
}

.kpi__eyebrow {
    font: 600 14px/1.2 Inter, system-ui;
    color: #535861;
    margin: 6px 6px 0
}

.kpi__eyebrow--accent {
    color: #f3c800;
    letter-spacing: .5px
}

.kpi__main {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 6px
}

.kpi__small {
    margin: 10px 0 0;
    color: #6a6f78;
    font: 14px/1.4 Inter, system-ui
}

.kpi__big {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: clamp(120px, 18vw, 170px);
    line-height: 1;
    font-family: "Impact", "Anton", system-ui;
    font-weight: 700;
    font-variant-numeric: tabular-nums lining-nums;
    letter-spacing: .5px;
    transform: translate3d(0, 0, 0);
    will-change: transform;
}

.kpi__big--money {
    letter-spacing: .25px
}

.kpi__plus {
    font: 700 clamp(40px, 6vw, 56px)/1 "Impact", "Anton", system-ui;
    margin-left: 6px
}

.kpi__caption {
    margin-top: 10px;
    font: 900 22px/1.1 "Impact", "Anton", system-ui;
    letter-spacing: .5px
}

.kpi__caption .label {
    display: inline-block;
    transform: translateY(1px)
}

.kpi__caption .label--bold {
    font-weight: 900
}

@media (max-width:640px) {
    .kpi__big {
        height: clamp(90px, 25vw, 120px);
    }
}
.kpi__media {
    position: absolute;
    left: 22px;
    top: 26px;
    width: 96px;
    height: 96px;
    opacity: .95
}

.kpi__media svg {
    width: 100%;
    height: 100%
}

.kpi:hover .kpi__bg {
    transform: scale(1.04) translateY(-2px)
}

.kpi__bg--yellow {
    background: linear-gradient(180deg, #ffe27a 0%, #ffdc58 100%)
}

.kpi__bg--swash-yellow {
    background:
        radial-gradient(120% 100% at 50% 10%, rgba(0, 0, 0, .12) 0 6%, transparent 6%),
        linear-gradient(0deg, #ffd84f, #ffe27a);
}

.kpi__bg--swash-purple {
    background:
        radial-gradient(120% 100% at 40% 10%, rgba(0, 0, 0, .1) 0 8%, transparent 8%),
        linear-gradient(0deg, #c7b3ff, #a88eff);
}
:root {
    --brand-yellow: #F5CF00;
    --brand-yellow-2: #FFD84F;
    --brand-purple: #AE98FF;
}

.kpi__bg--swash {
    position: absolute;
    inset: auto 0 0 0;
    height: 66%;
    pointer-events: none;
}

.kpi__bg--swash .swash {
    width: 100%;
    height: 100%;
    display: block;
}

.kpi__bg--swash .swash .swash-fill {
    fill: var(--brand-yellow);
}

.kpi[data-color] .kpi__bg--swash .swash .swash-fill {
    fill: attr(data-color color, var(--brand-yellow));
}

.kpi {
    --kpi-color: var(--brand-yellow);
}

.kpi[data-color] {
    --kpi-color: attr(data-color color, var(--brand-yellow));
}

.kpi .kpi__bg--swash .swash .swash-fill {
    fill: var(--kpi-color);
}

.perf {
    background: #fff;
}

.perf__wrap {
    max-width: 1280px;
    margin: 0 auto;
    padding: 56px 20px 48px;
}

.perf__title {
    margin: .1em 0 .5em;
    font: 600 clamp(32px, 5vw, 56px)/1.08 "Georgia", serif;
}

.perf__lead {
    max-width: 860px;
    margin: 0 0 28px;
    color: #5b6068;
    font: 16px/1.7 Inter, system-ui;
}

.perf__rule {
    border: 0;
    border-top: 1px solid #dadde3;
    margin: 24px 0 22px;
}

.perf__grid {
    display: grid;
    gap: 0;
    border: 1px solid var(--grid-border);
    border-left: 0;
    border-top: 0;
    grid-template-columns: repeat(4, 1fr);
}

@media (max-width:1100px) {
    .perf__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.kpi {
    position: relative;
    min-height: 240px;
    background: #fff;
    overflow: hidden;
    border-left: 1px solid var(--grid-border);
    border-top: 1px solid var(--grid-border);
    display: grid;
    grid-template-rows: auto 1fr;
    padding: 18px 18px 16px;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity .5s ease, transform .5s ease;
}

.kpi.is-in {
    opacity: 1;

}

.kpi__eyebrow {
    font: 600 14px/1.2 Inter, system-ui;
    color: #535861;
    margin: 6px 6px 0;
}

.kpi__eyebrow--accent {
    color: #f3c800;
    letter-spacing: .5px;
}

.kpi__main {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 6px;
}

.kpi__small {
    margin: 10px 0 0;
    color: #6a6f78;
    font: 14px/1.4 Inter, system-ui;
}

.kpi__caption {
    margin-top: 10px;
    font: 900 22px/1.1 "Impact", "Anton", system-ui;
    letter-spacing: .5px;
}

.kpi__caption .label {
    display: inline-block;
    transform: translateY(1px)
}

.kpi__caption .label--bold {
    font-weight: 900;
}

.kpi__media {
    position: absolute;
    left: 22px;
    top: 26px;
    width: 96px;
    height: 96px;
    opacity: .95;
}

.kpi__media svg {
    width: 100%;
    height: 100%;
}

.kpi__big {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: clamp(120px, 18vw, 170px);
    line-height: 1;
    font-size: 78px;
    font-family: "Impact", "Anton", system-ui;
    font-weight: 700;
    font-variant-numeric: tabular-nums lining-nums;
    letter-spacing: .5px;
    transform: translate3d(0, 0, 0);
    will-change: transform;
}

.kpi__big--money {
    letter-spacing: .25px;
}

.kpi__plus {
    font: 700 clamp(40px, 6vw, 56px)/1 "Impact", "Anton", system-ui;
    margin-left: 6px;
}

@media (max-width:640px) {
    .kpi__big {
        height: clamp(90px, 25vw, 120px);
    }
}

.kpi__bg {
    position: absolute;

    place-self: center;
    pointer-events: none;
    mix-blend-mode: multiply;
    transform: translate3d(0, 0, 0) scale(1);
    transition: transform .6s cubic-bezier(.22, .61, .36, 1);
    will-change: transform;
}

.kpi:hover .kpi__bg {
    transform: scale(1.04) translateY(-2px);
}

.kpi__bg--swash .swash {
    width: 100%;
    height: 100%;
    display: block;
}

.kpi__bg--swash .swash .swash-fill {
    fill: var(--kpi-color, #FFD84F);
}

.perf__grid .kpi__bg,
.perf__grid .kpi__big {
    will-change: transform;
    transform: translate3d(0, 0, 0);
}

.wrap {
    position: relative;
    min-height: 60vh;
    margin-top: 32px;
    overflow: hidden;
    display: grid;
    place-items: center;
    background: #0c0d10;
    border-radius: 12px;
}

.wrap .bg {
    position: absolute;
    inset: -4% -4%;
    background: url("https://s3-us-west-2.amazonaws.com/s.cdpn.io/167792/mountains_copy.jpg") center/cover no-repeat;
    transform: translate3d(0, 0, 0) scale(1.08);
    will-change: transform;
    filter: saturate(1.05) contrast(1.02);
}

.wrap__title {
    position: relative;
    z-index: 1;
    color: #fff;
    margin: 0;
    font: 700 clamp(28px, 6vw, 64px)/1.05 Inter, system-ui;
    text-align: center;
    transform: translate3d(0, 0, 0);
    will-change: transform;
}

:root {
    --bg: #0d0f12;
    --text: #e7eaee;
    --muted: #a7b0bd;
    --card: #15181d;
    --card-2: #1b2026;
    --accent: #f3c800;
}

.usecases {
    background: var(--bg);
    color: var(--text);
}

.usecases__wrap {
    max-width: 1280px;
    margin: 0 auto;
    padding: 72px 20px 64px;
}

.usecases__title {
    margin: .2em 0 .4em;
    font: 600 clamp(36px, 5vw, 64px)/1.05 "Georgia", serif;
}

.usecases__lead {
    max-width: 980px;
    margin: 0 0 32px;
    color: var(--muted);
    font: 16px/1.7 Inter, system-ui
}

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

@media (max-width:1100px) {
    .usecases__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.ucard {
    position: relative;
    display: flex;
    flex-direction: column;
    border-radius: 18px;
    overflow: hidden;
    isolation: isolate;
    transform: translateY(10px);
    opacity: 0;

    transition: transform .6s cubic-bezier(.22, .61, .36, 1), opacity .6s ease, box-shadow .4s ease;
    will-change: transform;
    -webkit-transition: transform .6s cubic-bezier(.22, .61, .36, 1), opacity .6s ease, box-shadow .4s ease;
    -moz-transition: transform .6s cubic-bezier(.22, .61, .36, 1), opacity .6s ease, box-shadow .4s ease;
    -ms-transition: transform .6s cubic-bezier(.22, .61, .36, 1), opacity .6s ease, box-shadow .4s ease;
    -o-transition: transform .6s cubic-bezier(.22, .61, .36, 1), opacity .6s ease, box-shadow .4s ease;
}

.ucard.is-in {
    transform: none;
    opacity: 1;
}

.ucard__art {
    position: relative;
    aspect-ratio: 3 / 2;
    overflow: hidden;
    perspective: 900px;
}

.ucard__img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(1);
    transition: transform .2s ease-out;
    will-change: transform;
    filter: contrast(1.02) saturate(1.02);
}

.ucard__body {
    color: #fff;
    padding: 20px 22px 22px;
    display: grid;
    gap: 10px;
}

.ucard__title {
    margin: 0;
    font: 700 clamp(18px, 2.3vw, 26px)/1.2 Inter, system-ui;
}

.ucard__text {
    margin: 0;
    color: var(--muted);
    font: 16px/1.6 Inter, system-ui;
}

.ucard__cta {
    color: #ffffff;
    margin-top: 8px;
    display: inline-flex;
    align-items: center;
    gap: 10px;

    text-decoration: none;
    font-weight: 600;
}

.ucard__cta:hover .ucard__arrow {
    transform: translateX(4px);
}

.ucard__arrow {
    width: 18px;
    height: 18px;
    fill: #fff;
    transition: transform .25s ease;
}

@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Georgia:ital,wght@0,700;1,700&display=swap");

:root {
    --nl-bg: #f3f4f6;
    --card-bg: #fff;
    --text: #111827;
    --muted: #6b7280;
    --accent: #111;
    --brand: #f3c800;
    --ring: #c7cdd6;
    --ok: #12b886;
    --err: #ef4444;
}

.nl {
    background: var(--nl-bg)
}

.nl__wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 56px 20px;
    display: grid;
    gap: 32px;
    grid-template-columns: 1fr 1fr;
}

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

.nl__intro {
    padding: 24px 12px
}

.nl__eyebrow {
    margin: 0 0 10px;
    color: var(--muted);
    font: 500 14px/1 Inter, system-ui
}

.nl__title {
    margin: .1em 0 .4em;
    font: 700 clamp(32px, 5vw, 56px)/1.05 "Georgia", serif;
    color: var(--text)
}

.nl__lead {
    margin: 0;
    color: var(--muted);
    font: 16px/1.7 Inter, system-ui;
    max-width: 620px
}

.nl__card {
    background: var(--card-bg);
    border-radius: 12px;
    box-shadow: 0 6px 30px rgba(0, 0, 0, .06);
    padding: 28px;
    align-self: start;
}

.nl__form {
    display: grid;
    gap: 24px
}

.nl__lists {
    margin: 0;
    padding: 0;
    border: 0;
    display: grid;
    gap: 18px
}

.chk {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 14px;
    align-items: start;
    cursor: pointer;
    user-select: none
}

.chk input {
    position: absolute;
    opacity: 0;
    pointer-events: none
}

.chk__box {
    width: 18px;
    height: 18px;
    border: 2px solid var(--ring);
    border-radius: 4px;
    display: inline-block;
    position: relative;
    top: 2px;
    transition: border-color .2s, background .2s;
}

.chk input:checked+.chk__box {
    background: var(--accent);
    border-color: var(--accent);
}

.chk input:checked+.chk__box::after {
    content: "";
    position: absolute;
    left: 4px;
    top: 0px;
    width: 6px;
    height: 12px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(45deg);
}

.chk__title {
    display: block;
    font: 600 16px/1.3 Inter, system-ui;
    color: var(--text)
}

.chk__desc {
    display: block;
    margin-top: 6px;
    color: var(--muted);
    font: 14px/1.6 Inter, system-ui
}

.nl__label {
    display: block;
    margin: 0 0 10px;
    color: var(--text);
    font: 600 14px/1 Inter, system-ui
}

.nl__control {
    position: relative;
    display: flex;
    align-items: center
}

.nl__control input {
    width: 100%;
    height: 56px;
    padding: 0 60px 0 18px;
    border: 1px solid var(--ring);
    border-radius: 999px;
    font: 16px/1 Inter, system-ui;
    color: var(--text);
    outline: none;
    background: #fff;
}

.nl__control input:focus {
    border-color: #9aa3b2;
    box-shadow: 0 0 0 3px rgba(153, 161, 179, .25);
}

.nl__submit {
    position: absolute;
    right: 6px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 0;
    display: grid;
    place-items: center;
    background: #111;
    color: #fff;
    cursor: pointer;
    transition: transform .15s ease, background .2s;
}

.nl__submit:hover {
    transform: scale(1.04);
    background: #000;
}

.nl__arrow {
    width: 18px;
    height: 18px;
    fill: #fff
}

.nl__hint,
.nl__captcha {
    margin: 10px 0 0;
    color: #6b7280;
    font: 12px/1.6 Inter, system-ui
}

.nl__hint a,
.nl__captcha a {
    color: #111;
    text-decoration: underline;
}

.nl__msg {
    margin-top: 10px;
    font: 14px/1.4 Inter, system-ui;
    display: none
}

.nl__msg.is-ok {
    display: block;
    color: var(--ok);
}

.nl__msg.is-err {
    display: block;
    color: var(--err);
}

.ft {
    background: #0d1117;
    color: #c9d1d9;
}

.ft__wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px 28px;
    display: flex;
    justify-content: space-between;
}

.ft__brand {


    gap: 4px;
    margin-bottom: 18px;
}

.ft__logo {
    width: 28px;
    height: 28px
}

.ft__tag {
    margin: 0;
    color: #fff;
    font: 23px/1.4 Inter, system-ui
}

.ft__grid {
    display: grid;
    gap: 22px;
    grid-template-columns: repeat(3, 1fr);

}

@media (max-width:900px) {
    .ft__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.ft__col {
    display: grid;
    gap: 8px;
    align-content: start
}

.ft__hd {
    margin: 0 0 8px;
    color: #e6edf3;
    font: 600 14px/1 Inter, system-ui;
    letter-spacing: .3px;
    text-transform: uppercase
}

.ft__col a {
    color: #9fb2c8;
    text-decoration: none;
    font: 14px/1.6 Inter, system-ui
}

.ft__col a:hover {
    color: #e6edf3;
}

.ft__bottom {
    margin-top: 18px;
    padding: 16px;
    border-top: 1px solid #1f2630;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

@media (max-width:700px) {
    .ft__bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

.ft__social {
    display: flex;
    gap: 12px
}

.ft__soc {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    color: #c9d1d9;
    background: #11161d;
    border-radius: 8px;
    text-decoration: none;
    transition: transform .15s ease, background .2s
}

.ft__soc:hover {
    transform: translateY(-2px);
    background: #161b22
}

.ft__soc svg {
    width: 18px;
    height: 18px;
}

.ft__copy {
    margin: 0;
    color: #8b97a6;
    font: 13px/1.6 Inter, system-ui
}

.faq {
    font-family: "Lora", serif;
    padding: 50px 20px;
    background-color: #fff;
    color: #111;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.faq__title {
    font-family: "Lora", serif;
    font-size: 2.5rem;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 100;
    color: #333;
}

.faq__grid {
    font-family: "Lora", serif;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.faq__item {
    font-family: "Lora", serif;
    background-color: #f9f9f9;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease;
}

.faq__item:hover {
    background-color: #f1f1f1;
}

.faq__question {
    font-family: "Lora", serif;
    background-color: transparent;
    border: none;
    color: #333;
    font-size: 17px;
    text-align: left;
    width: 100%;
    padding: 10px;
    cursor: pointer;
    text-transform: capitalize;
    font-weight: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq__question:focus {
    outline: none;
}

.faq__question:hover {
    color: #fef3bd;
}

.faq__answer {
    display: none;
    padding-top: 10px;
    font-size: 1rem;
    line-height: 1.6;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.5s ease-out, opacity 0.5s ease-out;
}

.faq__answer p {
    margin: 0;
}

.faq__item.open .faq__answer {
    display: block;
    opacity: 1;
    max-height: 200px;
}

.faq__item.open .faq__question {
    color: #ffd91e;
}

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

.download {
    background: linear-gradient(135deg, #f3f3f3, #dcdcdc);
    padding: 60px 20px;
    color: #333;
}

.download__wrap {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.download__title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #222;
}

.download__description {
    font-size: 1rem;
    color: #666;
    margin-bottom: 40px;
}

.download__grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
}

.download__card {
    background-color: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.download__card:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.download__card-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.download__icon {
    width: 50px;
    height: 50px;
    margin-bottom: 20px;
}

.download__card-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #222;
    margin-bottom: 15px;
}

.download__card-description {
    font-size: 1rem;
    color: #666;
    margin-bottom: 20px;
}

.download__cta {
    font-size: 1.1rem;
    text-decoration: none;
    color: #fff;
    background-color: #fef3bd;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.download__cta:hover {
    background-color: #f3c800;
}

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

.dl-btn {
    position: relative;
    display: inline-grid;
    grid-auto-flow: column;
    gap: 10px;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 14px;
    color: #0d0e12;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 0.2px;
    background: linear-gradient(135deg, #fef3bd, #fff4b7);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.4),
        0 10px 30px rgba(254, 243, 189, 0.15);
    transform: translateZ(0);
    transition: transform 0.18s ease, box-shadow 0.25s ease, filter 0.25s ease;
    isolation: isolate;
}

.dl-btn__icon {
    display: grid;
    place-items: center;
    color: #000;
    opacity: 0.85;
}

.dl-btn__label {
    position: relative;
    z-index: 2;
    white-space: nowrap;
}

.dl-btn__arrow {
    display: grid;
    place-items: center;
    color: #000;
    opacity: 0.9;
    transform: translateX(0);
    transition: transform 0.25s ease;
}

.dl-btn__shine {
    position: absolute;
    inset: -2px;
    z-index: 1;
    border-radius: 14px;
    background: linear-gradient(120deg, transparent 35%, rgba(255, 255, 255, 0.7) 50%, transparent 65%) no-repeat;
    background-size: 250% 250%;
    filter: blur(0.3px);
    mix-blend-mode: soft-light;
    opacity: 0;
    transition: opacity 0.2s ease, background-position 0.6s ease;
}

.dl-btn:hover {
    transform: translateY(-2px);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5),
        0 16px 50px rgba(254, 243, 189, 0.25);
    filter: saturate(1.05) contrast(1.03);
}

.dl-btn:hover .dl-btn__arrow {
    transform: translateX(4px);
}

.dl-btn:hover .dl-btn__shine {
    opacity: 0.9;
    background-position: 120% 0;
    transition: opacity 0.2s ease, background-position 0.8s cubic-bezier(.22, .61, .36, 1);
}

.dl-btn:active {
    transform: translateY(0) scale(0.99);
}

.dl-btn::after {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: 14px;
    z-index: 0;
    box-shadow: 0 25px 40px rgba(0, 0, 0, 0.22);
    opacity: 0;
    transition: opacity 0.25s ease;
}

.dl-btn:hover::after {
    opacity: 1;
}

.dl-btn:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(254, 243, 189, 0.35),
        inset 0 0 0 1px rgba(0, 0, 0, 0.05),
        0 16px 50px rgba(254, 243, 189, 0.25);
}