:root {
    --forest: #0B3326;
    --forest2: #102A20;
    --leaf: #2F7D4B;
    --mint: #A7F3D0;
    --cream: #F8F4E8;
    --sage: #E4EEDC;
    --ink: #102018;
    --gold: #D8B45B;
    --white: #ffffff;

    --shadow-soft: 0 24px 80px rgba(15, 61, 46, .16);
    --shadow-glow: 0 18px 55px rgba(47, 125, 75, .28);
    --shadow-card: 0 18px 50px rgba(16, 32, 24, .10);
}

[x-cloak] {
    display: none !important
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Sora', 'Noto Sans Georgian', sans-serif;
    background:
        radial-gradient(circle at 12% 4%, rgba(167, 243, 208, .42), transparent 32%),
        radial-gradient(circle at 90% 15%, rgba(216, 180, 91, .18), transparent 28%),
        var(--cream);
    color: var(--ink);
    cursor: default;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Manrope', 'Sora', 'Noto Sans Georgian', sans-serif;
}

a {
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}



.brand-font {
    font-family: 'Sora', 'Manrope', 'Noto Sans Georgian', sans-serif
}

.glass {
    background: rgba(255, 255, 255, .68);
    backdrop-filter: blur(18px)
}

.hero-grid {
    background-image: linear-gradient(rgba(11, 51, 38, .06) 1px, transparent 1px), linear-gradient(90deg, rgba(11, 51, 38, .06) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: linear-gradient(to bottom, black, transparent)
}

.reveal {
    opacity: 0;
    filter: blur(var(--reveal-blur, 0px));

    transform:
        translate3d(var(--reveal-x, 0),
            var(--reveal-y, 0),
            0) scale(var(--reveal-scale, 1));

    transition:
        opacity var(--reveal-duration, 800ms) ease,
        transform var(--reveal-duration, 800ms) cubic-bezier(0.22, 1, 0.36, 1),
        filter var(--reveal-duration, 800ms) ease;

    transition-delay: var(--reveal-delay, 0ms);

    will-change: opacity, transform, filter;
}

.reveal.is-visible {
    opacity: 1;
    filter: blur(0);

    transform:
        translate3d(0, 0, 0) scale(1);
}

/* მოძრაობის შემცირების სისტემური პარამეტრი */
@media (prefers-reduced-motion: reduce) {

    .reveal,
    .reveal.is-visible {
        opacity: 1;
        filter: none;
        transform: none;
        transition: none;
    }
}

.btn-primary {
    position: relative;
    overflow: hidden
}

.btn-primary:before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, .28), transparent);
    transform: translateX(-110%);
    transition: .6s
}

.btn-primary:hover:before {
    transform: translateX(110%)
}

.magnetic-card {
    position: relative;
    overflow: hidden
}

.magnetic-card:before {
    content: '';
    position: absolute;
    inset: -1px;
    background: radial-gradient(420px circle at var(--mx, 50%) var(--my, 50%), rgba(167, 243, 208, .35), transparent 42%);
    opacity: 0;
    transition: .25s
}

.magnetic-card:hover:before {
    opacity: 1
}

.magnetic-card>* {
    position: relative;
    z-index: 1
}

.hero-float {
    animation: heroFloat 7s ease-in-out infinite
}

@keyframes heroFloat {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-12px)
    }
}

.code-logo {
    --logo-forest: #14342B;
    --logo-forest-hover: #0F2D25;
    --logo-gold: #D6B25E;

    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: var(--logo-forest);
}

.code-logo svg {
    display: block;
    overflow: visible;
}

.code-stroke {
    fill: none;
    stroke: var(--logo-forest);
    stroke-width: 5;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 90;
    stroke-dashoffset: 90;
    animation: logoDraw 1.2s ease forwards;
    transition: stroke 0.3s ease;
}

.left-code {
    animation-delay: 0.1s;
}

.slash-code {
    animation-delay: 0.35s;
}

.right-code {
    animation-delay: 0.6s;
}

.cursor {
    stroke: var(--logo-gold);
    stroke-width: 4;
    stroke-linecap: round;
    opacity: 0;
    animation: cursorBlink 1s steps(2, start) infinite;
    animation-delay: 1.35s;
}

.code-word {
    font-family: "Plus Jakarta Sans", "Inter", "Noto Sans Georgian", system-ui, sans-serif;
    font-size: 33px;
    font-weight: 800;
    letter-spacing: -1.3px;
    fill: #123524;
    opacity: 0;
    transform: translateX(-8px);
    animation: logoWordIn 0.7s ease forwards;
    animation-delay: 0.95s;
}

.code-word tspan {
    fill: #6f9f75;
}


@keyframes logoDraw {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes logoWordIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes cursorBlink {

    0%,
    45% {
        opacity: 1;
    }

    46%,
    100% {
        opacity: 0;
    }
}

@media (prefers-reduced-motion:reduce) {

    .reveal,
    .hero-float,
    .btn-primary:before {
        transition: none !important;
        animation: none !important
    }
}

.site-footer {
    position: relative;
    overflow: hidden;
    background: #0B3326;
    color: #fff;
}

.footer-glow {
    position: absolute;
    top: -96px;
    left: 50%;
    width: 288px;
    height: 288px;
    transform: translateX(-50%);
    border-radius: 999px;
    background: rgba(52, 211, 153, .20);
    filter: blur(64px);
}

.footer-container {
    position: relative;
    width: min(100% - 48px, 1280px);
    margin-inline: auto;
    padding: 64px 0;
}

.footer-grid {
    display: grid;
    gap: 40px;
}

.footer-brand {
    max-width: 560px;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    color: #fff;
    text-decoration: none;
}

.footer-logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 18px;
    background: rgba(255, 255, 255, .10);
    font-size: 20px;
    font-weight: 800;
}

.footer-logo-text {
    font-family: 'Sora', 'Manrope', 'Noto Sans Georgian', sans-serif;
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.04em;
}

.footer-logo-text span {
    color: #6ee7b7;
}

.footer-description {
    max-width: 440px;
    margin: 0;
    line-height: 1.75;
    color: rgba(255, 255, 255, .70);
}

.footer-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.footer-socials a {
    display: inline-flex;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .10);
    color: rgba(255, 255, 255, .80);
    font-size: 14px;
    text-decoration: none;
    transition: .2s ease;
}

.footer-socials a:hover {
    background: rgba(255, 255, 255, .20);
    color: #fff;
}

.footer-nav h2,
.footer-contact h2 {
    margin: 0 0 16px;
    color: #a7f3d0;
    font-size: 16px;
    font-weight: 700;
}

.footer-nav ul,
.footer-contact ul {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-contact address {
    font-style: normal;
}

.footer-nav a,
.footer-contact a,
.footer-bottom a {
    color: rgba(255, 255, 255, .70);
    text-decoration: none;
    transition: .2s ease;
}

.footer-nav a:hover,
.footer-contact a:hover,
.footer-bottom a:hover {
    color: #fff;
}

.footer-contact li {
    color: rgba(255, 255, 255, .70);
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 48px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, .10);
    color: rgba(255, 255, 255, .50);
    font-size: 14px;
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom nav {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-bottom a {
    color: rgba(255, 255, 255, .50);
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
    }

    .footer-bottom {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

.skip-link {
    position: fixed;
    left: 16px;
    top: 16px;
    z-index: 9999;
    padding: 12px 18px;
    border-radius: 999px;
    background: #fff;
    color: #0B3326;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .12);

    transform: translateY(-140%);
    opacity: 0;
    pointer-events: none;
}

.skip-link:focus {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}






.gravity-grid-bg {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.gravity-grid-canvas {
    width: 100%;
    height: 100%;
    opacity: .6;
}

header,
main,
footer {
    position: relative;
    z-index: 10;
}