@font-face {
    font-family: "Medium";
    src: url("/static/fonts/Medium.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;

    unicode-range: U+0041-005A, U+0061-007A, U+0400-04FF, U+0030-0039, U+002E, U+003F, U+0021;
}

@font-face {
    font-family: "Goldman";
    src: url("/static/fonts/Goldman-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;

    unicode-range: U+002C, U+0025, U+0028-0029;
}


@font-face {
    font-family: "Manrope";
    src: url("/static/fonts/Manrope.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Manrope";
    src: url("/static/fonts/Manrope.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}


:root {
    --bg-light: #F1F7F7;
    --dark: #0F1F1C;
    --accent: #2CC295;
    --text: #000000;
    --white: #FFFFFF;
    --danger: rgba(199, 108, 108, 1);
    --border: rgba(0, 0, 0, 0.3);
    --accent-dark: #162F2B;
    --accent-dark-10: rgba(25, 53, 48, 0.1);

    --font-heading: "Goldman", "Medium", Roboto, sans-serif;
    --font-subheading: "Manrope", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    --font-body: "Manrope", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    --header-h: 56px;
}


* {
    box-sizing: border-box;
}

html, body {
    height: 100%;
}

body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--text);
    background: var(--bg-light);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.1;
}

.container {
    width: min(1120px, 100% - 2rem);
    margin-inline: auto;
}

.section {
    padding: 48px 0;
}

.section.alt {
    background: var(--white);
}

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

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

.row {
    display: flex;
    align-items: center;
}

.gap {
    gap: 12px;
}

.stack {
    display: grid;
    gap: 16px;
}

@media (min-width: 800px) {
    .grid-2 {
        grid-template-columns: 1.2fr 1fr;
    }

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


.kicker {
    font-family: var(--font-subheading);
    font-weight: 700;
    color: var(--accent-dark);
    letter-spacing: .06em;
    text-transform: uppercase;
    font-size: 12px;
}

.h1 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: clamp(16px, 3vw, 24px);
    color: var(--white);
    display: block;
}

@media (max-width: 340px) {
    .h1 {
        font-size: 14px;
    }
}

.h2 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 22px;
    color: var(--dark);
    margin-bottom: 16px;
}

.h3 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 18px;
    color: var(--dark);
    margin: 0 0 6px;
}

.muted {
    color: #3b3b3b;
}

.fine {
    color: #666;
    font-size: 12px;
}


.site-header {
    background: rgba(241, 247, 247, 0.9);
    backdrop-filter: blur(6px);
    border-bottom: 1px solid var(--border);
    position: relative;
    z-index: 3000;
}


.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    position: relative;
    overflow: visible;
}

.brand {
    font-family: var(--font-heading);
    font-weight: 700;
    -webkit-background-clip: text;
    background-clip: text;
    font-size: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand span {
    margin-top: 6px;
}

.brand-img {
    height: 44px;
}

@media (max-width: 1100px) {
    .brand {
        font-size: 22px;
    }

    .brand span {
        margin-bottom: 6px;
    }

    .brand-img {
        height: 32px;
    }
}


.nav-links {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    z-index: 3001;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 20px 24px;
    background: rgba(241, 247, 247, 0.98);
    border-bottom: 1px solid var(--border);


    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    pointer-events: none;
    transition: transform .25s ease, opacity .25s ease, visibility 0s linear .25s;
}


.nav-links.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
    transition: transform .25s ease, opacity .25s ease;
}

.nav-links a {
    width: 100%;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    color: var(--dark);
    padding: 10px 4px;
    text-decoration: none;
}

.nav-links a:hover {
    color: var(--accent-dark);
}


.hamburger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 0;
    background: transparent;
    padding: 0;
    cursor: pointer;
}

.hamburger-box {
    position: relative;
    width: 24px;
    height: 18px;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
    position: absolute;
    left: 0;
    width: 24px;
    height: 2px;
    background: var(--dark);
    transition: transform .25s ease, opacity .2s ease, top .25s ease, bottom .25s ease;
    content: "";
}

.hamburger-inner {
    top: 8px;
}

.hamburger-inner::before {
    top: -6px;
}

.hamburger-inner::after {
    top: 6px;
}


.hamburger.is-open .hamburger-inner {
    transform: rotate(45deg);
}

.hamburger.is-open .hamburger-inner::before {
    opacity: 0;
}

.hamburger.is-open .hamburger-inner::after {
    transform: rotate(-90deg);
    top: 0;
}


.site-header {
    position: sticky;
    top: 0;
    z-index: 3000;
}


@media (min-width: 900px) {
    .site-header {
        position: sticky;
        top: 0;
        z-index: 3000;
    }

    .nav-links {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        pointer-events: auto;
        flex-direction: row;
        align-items: center;
        gap: 12px;
        padding: 0;
        border: 0;
        background: transparent;
    }

    .nav-links a {
        width: auto;
        text-align: left;
        font-size: 16px;
        padding: 8px 4px;
    }

    .nav-links a.btn {
        padding: 8px 14px;
    }

    .hamburger {
        display: none;
    }
}


.card {
    background: var(--white);
    border: 1px solid var(--border);
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .04);
}

.glass {
    background: linear-gradient(180deg, rgba(255, 255, 255, .7), rgba(255, 255, 255, .9));
    border: 1px solid rgba(0, 0, 0, .08);
}

.stats {
    display: grid;
    gap: 12px;
}

.stat {
    padding: 12px;
    background: var(--accent-dark-10);
    font-family: var(--font-heading);
    color: var(--bg-light);

}

.stat-value {
    font-family: var(--font-heading);
    font-size: 28px;
    color: var(--accent-dark);
}

.stat-label {
    font-size: 13px;
    color: #2b2b2b;
}

.feature p {
    color: #333;
}

.feature-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 12px;
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 6px 10px;
    font-size: 12px;
}

.pills {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 0;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    border: 1px solid var(--border);
    background: var(--white);
    color: var(--white);
    transition: transform .06s ease, box-shadow .2s ease, background .2s ease;
    box-shadow: 0 4px 14px rgba(0, 0, 0, .06);
    position: relative;
    clip-path: polygon(15px 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%, 0 15px);
    padding: 14px 24px;
    font-size: 16px;
}

.btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, .08);
}

.btn:active {
    transform: translateY(0);
}

.btn-accent {
    background: var(--accent);
    color: var(--white) !important;
    border-color: transparent;
}

.btn-secondary {
    background: var(--dark);
    color: var(--white);
    border-color: transparent;
}

.btn-outline {
    background: transparent;
    color: var(--accent-dark);
    border-color: var(--accent-dark);
}

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

.list {
    margin: 0;
    padding-left: 18px;
}

.list li {
    margin: 6px 0;
}

.form .field {
    display: grid;
    gap: 6px;
    margin: 10px 0;
}


.form input, .form textarea, .form select {
    padding: 12px 14px;
    border: 1px solid var(--border);
    outline: none;
    background: #fff;
}

.form input:focus, .form textarea:focus, .form select:focus {
    border-color: var(--accent-dark);
    box-shadow: 0 0 0 4px var(--accent-dark-10);
}


.animate-fade {
    opacity: 0;
    transform: translateY(10px);
    transition: all .6s ease;
}

.animate-up {
    opacity: 0;
    transform: translateY(16px);
    transition: all .6s ease;
}

.visible {
    opacity: 1 !important;
    transform: none !important;
}


.site-footer {
    background: var(--accent-dark);
    color: var(--white);
    border-top: 1px solid rgba(44, 194, 149, 0.2);
}

.footer-content {
    display: grid;
    gap: 48px;
    grid-template-columns: 1fr;
    padding: 60px 0 40px;
}

@media (min-width: 1100px) {
    .footer-content {
        grid-template-columns: 1.5fr 2fr;
        gap: 80px;
    }
}


.footer-brand {
    display: grid;
    gap: 24px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.footer-logo-img {
    height: 40px;
    width: auto;
}

.footer-brand-name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 20px;
    color: var(--accent);
}

.footer-description {
    color: rgba(241, 247, 247, 0.8);
    line-height: 1.5;
    margin: 0;
    max-width: 360px;
}

.footer-social {
    display: flex;
    gap: 16px;
    margin-top: 8px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(44, 194, 149, 0.1);
    border-radius: 8px;
    color: var(--accent);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(44, 194, 149, 0.2);
    color: var(--white);
    transform: translateY(-2px);
}


.footer-nav {
    display: grid;
    gap: 40px;
    grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 800px) {
    .footer-nav {
        grid-template-columns: repeat(4, 1fr);
        gap: 32px;
    }
}

.footer-column-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 16px;
    color: var(--accent);
    margin: 0 0 16px 0;
}

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 12px;
}

.footer-links a {
    color: rgba(241, 247, 247, 0.8);
    text-decoration: none;
    font-size: 14px;
    line-height: 1.4;
    transition: color 0.3s ease;
}

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


.footer-contact {
    display: grid;
    gap: 12px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(241, 247, 247, 0.8);
    font-size: 14px;
}

.contact-item svg {
    flex-shrink: 0;
    color: var(--accent);
}

.contact-item a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--accent);
}


.footer-legal {
    padding: 32px 0;
    border-top: 1px solid rgba(44, 194, 149, 0.2);
    border-bottom: 1px solid rgba(44, 194, 149, 0.2);
}

.legal-content {
    display: grid;
    gap: 24px;
    grid-template-columns: 1fr;
}

@media (min-width: 900px) {
    .legal-content {
        grid-template-columns: 2fr 1fr;
        gap: 40px;
        align-items: center;
    }
}

.legal-info {
    display: grid;
    gap: 16px;
}

.patent-info,
.registry-info {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 13px;
    line-height: 1.4;
    color: rgba(241, 247, 247, 0.9);
}

.patent-info svg,
.registry-info svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--accent);
}

.patent-info strong,
.registry-info strong {
    color: var(--accent);
    font-weight: 600;
}

.legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: flex-start;
}

@media (min-width: 900px) {
    .legal-links {
        justify-content: flex-end;
    }
}

.legal-links a {
    color: rgba(241, 247, 247, 0.7);
    text-decoration: none;
    font-size: 12px;
    transition: color 0.3s ease;
}

.legal-links a:hover {
    color: var(--accent);
}


.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 20px 0;
    align-items: center;
    text-align: center;
}

@media (min-width: 600px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.footer-copyright,
.footer-made {
    font-size: 12px;
    color: rgba(241, 247, 247, 0.6);
}

.footer-made {
    font-weight: 500;
}


@media (max-width: 480px) {
    .footer-content {
        padding: 40px 0 32px;
        gap: 36px;
    }

    .footer-nav {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-brand-name {
        font-size: 18px;
    }

    .footer-description {
        font-size: 14px;
    }

    .legal-content {
        gap: 20px;
    }

    .patent-info,
    .registry-info {
        font-size: 12px;
    }

    .legal-links {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}

@media (max-width: 360px) {
    .footer-social {
        gap: 12px;
    }

    .social-link {
        width: 36px;
        height: 36px;
    }

    .contact-item {
        font-size: 13px;
    }
}


.hero-section {
    background: linear-gradient(135deg, var(--accent-dark) 46%, #1A443E 100%);
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    gap: 40px;
    align-items: center;
    grid-template-columns: 1fr;
    position: relative;
}

.hero-title {
    margin-bottom: 24px;
    max-width: 540px;
}

.text-gradient {
    font-family: var(--font-heading), sans-serif;
    color: var(--accent);
    -webkit-background-clip: text;
    background-clip: text;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 0.05em;
    display: block;
    margin-bottom: 8px;
}

.hero-description {
    margin-bottom: 32px;
    max-width: 500px;
    color: var(--bg-light);
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-content {
    z-index: 10;
    padding: 60px 0;
    position: relative;
}


.hero-visual {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    pointer-events: none;
}

.wallet-animation {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}

.wallet-bg {
    position: absolute;
    bottom: -20%;
    right: 50%;
    transform: translateX(50%);
    width: 90%;
    max-width: 400px;
    z-index: 2;
}

.wallet-bg-image {
    width: 100%;
    height: auto;
    opacity: 0.4;
}

.icons-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 3;
}

.floating-icon {
    position: absolute;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
}

.floating-icon svg {
    width: 32px;
    height: 32px;
}


@media (min-width: 900px) {
    .hero-content {
        padding: 120px 0;
        max-width: 50%;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        align-items: flex-start;
    }

    .hero-actions {
        justify-content: flex-start;
    }

    .wallet-bg {
        bottom: -25%;
        right: 0;
        transform: none;
        width: 45%;
        max-width: none;
    }

    .floating-icon {
        width: 52px;
        height: 52px;
    }

    .floating-icon svg {
        width: 52px;
        height: 52px;
    }
}

@media (min-width: 1200px) {
    .hero-content {
        max-width: 55%;
    }

    .floating-icon {
        width: 52px;
        height: 52px;
    }

    .floating-icon svg {
        width: 52px;
        height: 52px;
    }
}

.text-white {
    color: var(--white) !important;
}

.text-accent {
    color: var(--accent) !important;
}

.text-focus {
    font-family: var(--font-heading);
    margin-right: 4px;
}

input[type="checkbox"] {
    accent-color: var(--accent);
    color: var(--white);
    width: 16px;
    height: 16px;
}