


@property --border-angle {
    syntax: "<angle>";
    initial-value: 0deg;
    inherits: false;
}

:root {
    --bg: #05070B;
    --bg-alt: #11141C;
    --accent: #c3152b;
    --accent-bright: #ff2d45;
    --accent-soft: rgba(195, 21, 43, 0.35);
    --text: #f5f5f5;
    --muted: #9ca3af;
    --border: #272a35;
}


* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}


::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg);
}

::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-bright);
}

html {
    scrollbar-width: thin;
    scrollbar-color: var(--accent) var(--bg);
    scroll-behavior: smooth;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
}


.noise {
    position: fixed;
    inset: 0;
    pointer-events: none;
    opacity: 0.06;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n' x='0' y='0'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.2' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.9'/%3E%3C/svg%3E");
    z-index: 9999;
}



.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 24px;
    background: rgba(5, 7, 11, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: var(--text);
    line-height: 1;
}

.logo-text {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}


.logo-laser {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    background: transparent;
    border-radius: 10px;
}

.logo-laser::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 10px;
    padding: 1px;
    background: conic-gradient(
        from var(--border-angle),
        transparent 0deg,
        transparent 340deg,
        rgba(255, 45, 69, 0.5) 350deg,
        rgba(255, 107, 122, 0.8) 355deg,
        rgba(255, 45, 69, 0.5) 360deg
    );
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: rotateBorder 4s linear infinite;
}

.logo-laser-text {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: var(--text);
    position: relative;
    z-index: 1;
    line-height: 1;
}

.logo-laser-text .dot {
    color: var(--accent-bright);
}

.logo-laser-text .separator-blink {
    color: var(--accent-bright);
    margin: 0 1px;
    animation: blink 1s step-end infinite;
}

.nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    color: var(--muted);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: var(--text);
}


.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.dropdown-arrow {
    transition: transform 0.2s ease;
}

.nav-dropdown:hover .dropdown-arrow,
.nav-dropdown.active .dropdown-arrow {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 8px 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    z-index: 1001;
}

.nav-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid var(--border);
}

.nav-dropdown-menu::after {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid var(--bg-alt);
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.active .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown-item {
    display: block;
    padding: 12px 20px;
    color: var(--muted);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.15s ease;
}

.nav-dropdown-item:hover {
    background: rgba(195, 21, 43, 0.1);
    color: var(--text);
}

.nav-cta {
    padding: 8px 16px;
    background: var(--accent);
    color: var(--text);
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: background 0.2s ease, transform 0.2s ease;
}

.nav-cta:hover {
    background: var(--accent-bright);
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text);
    cursor: pointer;
    padding: 8px;
}

@media (max-width: 768px) {
    .nav {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--bg);
        border-top: 1px solid var(--border);
        padding: 20px;
        flex-direction: column;
        gap: 0;
        z-index: 1000;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    }

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

    .nav-link,
    .nav-cta {
        width: 100%;
        text-align: left;
        padding: 16px 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .nav-link:last-of-type {
        border-bottom: none;
    }

    
    .nav-dropdown {
        width: 100%;
    }

    .nav-dropdown-toggle {
        width: 100%;
        justify-content: space-between;
        padding: 16px 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .nav-dropdown-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        background: rgba(0, 0, 0, 0.2);
        border: none;
        border-radius: 0;
        box-shadow: none;
        padding: 0;
        min-width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-dropdown-menu::before,
    .nav-dropdown-menu::after {
        display: none;
    }

    .nav-dropdown.active .nav-dropdown-menu {
        max-height: 200px;
        transform: none;
    }

    .nav-dropdown-item {
        padding: 14px 40px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    }

    .nav-dropdown-item:last-child {
        border-bottom: none;
    }

    .nav-cta {
        margin-top: 12px;
        text-align: center;
    }

    .nav-toggle {
        display: block;
    }

    .nav-toggle.active svg {
        transform: rotate(90deg);
    }

    .nav-toggle svg {
        transition: transform 0.3s ease;
    }
}



.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: radial-gradient(ellipse at top, #151824 0%, #05070B 50%, #000 100%);
}

.hero::before {
    content: "";
    position: absolute;
    top: -20%;
    left: -10%;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(195, 21, 43, 0.15) 0%, transparent 70%);
    pointer-events: none;
    animation: floatGlow 15s ease-in-out infinite;
    z-index: 0;
}

.hero::after {
    content: "";
    position: absolute;
    bottom: -10%;
    right: -5%;
    width: 40%;
    height: 40%;
    background: radial-gradient(circle, rgba(195, 21, 43, 0.1) 0%, transparent 70%);
    pointer-events: none;
    animation: floatGlow 12s ease-in-out infinite reverse;
    z-index: 0;
}


.hero-orbs {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 3em;
    height: 3em;
    font-size: 52px;
    color: transparent;
    pointer-events: none;
    z-index: 1;
}

.hero-orbs::before,
.hero-orbs::after,
.hero-orbs .orb-layer-1,
.hero-orbs .orb-layer-2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 3em;
    height: 3em;
    content: '.';
    color: transparent;
    mix-blend-mode: screen;
}

.hero-orbs::before {
    text-shadow:
        0.8em 1.2em 25px hsla(352, 85%, 45%, 0.35),
        -1.2em 2.1em 20px hsla(358, 90%, 50%, 0.3),
        1.8em -0.8em 28px hsla(345, 80%, 40%, 0.4),
        -2.1em 0.4em 22px hsla(355, 95%, 55%, 0.25),
        2.5em 1.8em 25px hsla(350, 85%, 48%, 0.35),
        -0.5em -1.8em 20px hsla(360, 90%, 52%, 0.3),
        1.4em -2.2em 28px hsla(348, 82%, 42%, 0.4),
        -2.6em -0.9em 22px hsla(356, 88%, 58%, 0.25);
    animation: heroOrbsMove 44s -27s ease-in-out infinite alternate;
}

.hero-orbs::after {
    text-shadow:
        -0.9em 1.8em 22px hsla(355, 88%, 48%, 0.35),
        1.6em -1.4em 25px hsla(349, 82%, 42%, 0.3),
        -2.2em 0.6em 20px hsla(358, 94%, 54%, 0.4),
        0.4em 2.4em 28px hsla(352, 78%, 38%, 0.25),
        2.3em 0.2em 22px hsla(346, 90%, 52%, 0.35),
        -1.5em -1.9em 25px hsla(360, 84%, 46%, 0.3),
        0.7em -2.5em 20px hsla(354, 86%, 56%, 0.4),
        -2.7em 1.3em 28px hsla(348, 80%, 40%, 0.25);
    animation: heroOrbsMove 43s -32s ease-in-out infinite alternate;
}

.hero-orbs .orb-layer-1 {
    text-shadow:
        1.2em 0.6em 25px hsla(350, 86%, 44%, 0.35),
        -1.8em 2.0em 20px hsla(356, 80%, 50%, 0.3),
        2.4em -1.2em 28px hsla(344, 92%, 38%, 0.4),
        -0.3em -1.7em 22px hsla(352, 88%, 56%, 0.25),
        1.9em 1.6em 25px hsla(358, 82%, 42%, 0.35),
        -2.5em -0.4em 20px hsla(348, 94%, 48%, 0.3),
        0.6em -2.3em 28px hsla(354, 78%, 54%, 0.4),
        2.7em 0.9em 22px hsla(360, 84%, 40%, 0.25);
    animation: heroOrbsMove 42s -23s ease-in-out infinite alternate;
}

.hero-orbs .orb-layer-2 {
    text-shadow:
        -1.5em 0.8em 22px hsla(354, 84%, 46%, 0.35),
        1.1em -2.1em 25px hsla(348, 90%, 40%, 0.3),
        2.3em 1.3em 20px hsla(360, 80%, 54%, 0.4),
        -0.6em 2.2em 28px hsla(352, 86%, 48%, 0.25),
        1.7em -0.5em 22px hsla(346, 92%, 52%, 0.35),
        -2.6em -1.5em 25px hsla(358, 78%, 38%, 0.3),
        0.3em -2.6em 20px hsla(350, 88%, 56%, 0.4),
        -1.9em 1.9em 28px hsla(356, 82%, 42%, 0.25);
    animation: heroOrbsMove 41s -19s ease-in-out infinite alternate;
}

@keyframes heroOrbsMove {
    from {
        transform: rotate(0deg) scale(12) translateX(-20px);
    }
    to {
        transform: rotate(360deg) scale(18) translateX(20px);
    }
}

@media (max-width: 768px) {
    .hero-orbs {
        font-size: 30px;
    }

    .hero-orbs::before,
    .hero-orbs::after,
    .hero-orbs .orb-layer-1,
    .hero-orbs .orb-layer-2 {
        animation-name: heroOrbsMoveMobile;
    }
}

@keyframes heroOrbsMoveMobile {
    from {
        transform: rotate(0deg) scale(6) translateX(-10px);
    }
    to {
        transform: rotate(360deg) scale(10) translateX(10px);
    }
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 24px 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-centered .hero-container {
    grid-template-columns: 1fr;
    max-width: 1000px;
    text-align: center;
}

.hero-centered .hero-content {
    align-items: center;
}

.hero-centered .hero-cta-group {
    justify-content: center;
}

@media (max-width: 960px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 999px;
    padding: 6px 14px 6px 6px;
    background: rgba(0, 0, 0, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--muted);
    font-size: 12px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    width: fit-content;
}

@media (max-width: 960px) {
    .hero-pill {
        margin: 0 auto;
    }
}

.hero-pill-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: radial-gradient(circle at 30% 30%, #fff 0%, var(--accent) 45%, rgba(195, 21, 43, 0.15) 100%);
    box-shadow: 0 0 16px var(--accent-soft);
    animation: pulse 2s ease-in-out infinite;
}

.hero-title {
    font-size: clamp(36px, 5vw, 56px);
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.hero-title .accent {
    color: var(--accent-bright);
    text-shadow: 0 0 30px rgba(255, 45, 69, 0.4);
    background: linear-gradient(
        90deg,
        var(--accent-bright) 0%,
        #ff6b7a 25%,
        var(--accent-bright) 50%,
        #ff6b7a 75%,
        var(--accent-bright) 100%
    );
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 4s ease-in-out infinite;
}

.hero-description {
    font-size: 18px;
    color: var(--muted);
    line-height: 1.7;
    max-width: 520px;
}

@media (max-width: 960px) {
    .hero-description {
        margin: 0 auto;
    }
}

.hero-cta-group {
    display: flex;
    gap: 16px;
    margin-top: 32px;
}

@media (max-width: 960px) {
    .hero-cta-group {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-cta-group {
        flex-direction: column;
    }
}


.hero.hero--short {
    min-height: 80vh;
}

.hero--short .hero-container {
    padding: 140px 24px 100px;
    text-align: center;
}

.hero--short .hero-title {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 24px;
}

.hero--short .hero-description {
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
}

.hero--short .hero-cta-group {
    justify-content: center;
}

@media (max-width: 480px) {
    .hero--short .hero-cta-group {
        flex-direction: column;
        align-items: center;
    }
}

.hero-terminal {
    position: relative;
    background: #0d1117;
    border-radius: 16px;
    overflow: hidden;
    min-width: 380px;
    z-index: 2;
}

.hero-terminal::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 1px;
    background: conic-gradient(
        from var(--border-angle),
        transparent 0deg,
        transparent 340deg,
        rgba(255, 45, 69, 0.5) 350deg,
        rgba(255, 107, 122, 0.8) 355deg,
        rgba(255, 45, 69, 0.5) 360deg
    );
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: rotateBorder 4s linear infinite;
    pointer-events: none;
}

.hero-terminal-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: rgba(0, 0, 0, 0.4);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.hero-terminal-title {
    margin-left: auto;
    font-size: 12px;
    color: var(--muted);
    font-family: 'SF Mono', 'Fira Code', 'Consolas', monospace;
}

.hero-terminal-body {
    padding: 20px;
    height: 320px;
    overflow-y: auto;
    overflow-x: hidden;
    font-family: 'SF Mono', 'Fira Code', 'Consolas', monospace;
    font-size: 13px;
    line-height: 1.7;
}

.term-line {
    margin-bottom: 4px;
    word-break: break-word;
}

.hero-terminal-body::-webkit-scrollbar {
    width: 6px;
}

.hero-terminal-body::-webkit-scrollbar-track {
    background: transparent;
}

.hero-terminal-body::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 3px;
}

.term-cmd {
    color: var(--accent-bright);
}

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

.term-success {
    color: #22c55e;
}

.term-warning {
    color: #eab308;
}

.term-info {
    color: #3b82f6;
}

@media (max-width: 768px) {
    .hero-terminal {
        min-width: unset;
        width: 100%;
    }

    .hero-terminal-body {
        height: 280px;
        font-size: 11px;
        padding: 16px;
    }
}

@media (max-width: 480px) {
    .hero-terminal-body {
        height: 240px;
        font-size: 10px;
        padding: 12px;
        line-height: 1.5;
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
    position: relative;
    z-index: 3;
}

.btn-primary {
    background: var(--accent);
    color: #ffffff;
    box-shadow: 0 4px 24px rgba(195, 21, 43, 0.3);
    position: relative;
    overflow: visible;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.btn-primary::before {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(255, 45, 69, 0.15), rgba(255, 107, 122, 0.15), rgba(255, 45, 69, 0.15));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
    filter: blur(4px);
}

.btn-primary:hover {
    background: var(--accent-bright);
    color: #ffffff;
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 40px rgba(255, 45, 69, 0.5);
    border-color: rgba(255, 107, 122, 0.5);
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-primary:active {
    transform: translateY(0) scale(1);
}

.btn-secondary {
    background: #12161d;
    color: var(--text);
    border: 2px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: visible;
    transition: all 0.3s ease;
}

.btn-secondary::before {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.08));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
    filter: blur(4px);
}

.btn-secondary:hover {
    background: #1a1f2a;
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 32px rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover::before {
    opacity: 1;
}

.btn-secondary:active {
    transform: translateY(0) scale(1);
}

.btn-full {
    width: 100%;
}



.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-container {
    position: relative;
    width: 100%;
    max-width: 480px;
    aspect-ratio: 1;
    animation: floatMap 6s ease-in-out infinite;
}

.map-border {
    position: absolute;
    inset: -2px;
    border-radius: 24px;
    padding: 2px;
    background:
        linear-gradient(var(--bg), var(--bg)) padding-box,
        conic-gradient(
            from var(--border-angle),
            transparent 0deg,
            transparent 345deg,
            rgba(255, 45, 69, 0.4) 350deg,
            rgba(255, 107, 122, 0.5) 355deg,
            rgba(255, 45, 69, 0.4) 360deg
        ) border-box;
    border: 1px solid transparent;
    animation: rotateBorder 4s linear infinite;
}

.map-frame {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 22px;
    overflow: hidden;
    background:
        radial-gradient(circle at 30% 20%, rgba(195, 21, 43, 0.1) 0%, transparent 50%),
        linear-gradient(135deg, rgba(17, 20, 28, 0.95), rgba(5, 7, 11, 0.98));
    border: 1px solid var(--border);
}

.map-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 24px;
    opacity: 0.9;
}

.map-image-base {
    position: relative;
    z-index: 1;
}

.map-image-glow {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    opacity: 0;
    animation: heartbeatGlow 4s ease-in-out infinite;
}

@keyframes heartbeatGlow {
    0%, 100% {
        opacity: 0;
    }
    14% {
        opacity: 0.85;
    }
    28% {
        opacity: 0.2;
    }
    42% {
        opacity: 0.7;
    }
    70% {
        opacity: 0;
    }
}

.map-stat {
    position: absolute;
    z-index: 10;
    padding: 10px 14px;
    background: rgba(5, 7, 11, 0.9);
    border: 1px solid var(--border);
    border-radius: 12px;
    backdrop-filter: blur(8px);
    font-size: 12px;
    white-space: nowrap;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.map-stat:hover {
    border-color: rgba(255, 45, 69, 0.4);
}

.map-stat-label {
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 2px;
}

.map-stat-value {
    color: var(--text);
    font-weight: 600;
    font-size: 14px;
}

.map-stat-1 {
    top: 10%;
    right: -10%;
    animation: floatStat1 5s ease-in-out infinite;
}

.map-stat-2 {
    bottom: 20%;
    left: -12%;
    animation: floatStat2 6s ease-in-out infinite;
}

.map-stat-3 {
    bottom: 5%;
    right: 5%;
    animation: floatStat3 5.5s ease-in-out infinite;
}

@media (max-width: 960px) {
    .map-stat-1 { right: 0; }
    .map-stat-2 { left: 0; }
}



.scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--muted);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.6;
    animation: bounce 2s ease-in-out infinite;
    text-decoration: none;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.scroll-indicator:hover {
    opacity: 1;
}

.scroll-indicator svg {
    width: 20px;
    height: 20px;
}

@media (max-width: 768px) {
    .scroll-indicator {
        display: none;
    }
}



.section {
    padding: 120px 24px;
    position: relative;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

@media (max-width: 960px) {
    .section-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

.section-container-full {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.section-container-narrow {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    position: relative;
    z-index: 2;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.section-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent-bright);
    font-weight: 500;
}

.section-header .section-label {
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 18px;
    color: var(--muted);
    margin-top: 16px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-text {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.section-text p {
    font-size: 17px;
    color: var(--muted);
    line-height: 1.75;
}


.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

@media (max-width: 960px) {
    .two-col {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

.two-col-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.two-col-text p {
    font-size: 17px;
    color: var(--muted);
    line-height: 1.75;
}


.requirements-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.requirement-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.requirement-item:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(195, 21, 43, 0.3);
    transform: translateX(4px);
}

.requirement-check {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(195, 21, 43, 0.2), rgba(195, 21, 43, 0.1));
    border: 1px solid rgba(195, 21, 43, 0.4);
    border-radius: 8px;
    color: var(--accent-bright);
    font-size: 18px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.requirement-item:hover .requirement-check {
    background: linear-gradient(135deg, rgba(195, 21, 43, 0.3), rgba(195, 21, 43, 0.15));
    border-color: var(--accent);
    box-shadow: 0 0 12px rgba(255, 45, 69, 0.3);
}

.requirement-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.requirement-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text);
    line-height: 1.3;
}

.requirement-content p {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.6;
}



.section-bug-bounty {
    background:
        radial-gradient(ellipse at bottom right, rgba(195, 21, 43, 0.08) 0%, transparent 50%),
        linear-gradient(180deg, var(--bg) 0%, #0a0d14 100%);
    position: relative;
    overflow: hidden;
}

.section-bug-bounty::before {
    content: "";
    position: absolute;
    top: 10%;
    left: -10%;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(195, 21, 43, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: orbFloatLeft 18s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

.section-bug-bounty::after {
    content: "";
    position: absolute;
    bottom: 10%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(195, 21, 43, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    animation: orbFloatRight 15s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}



.section-what-is {
    background:
        radial-gradient(ellipse at center, rgba(195, 21, 43, 0.04) 0%, transparent 50%),
        linear-gradient(180deg, #0a0d14 0%, var(--bg) 50%, #0a0d14 100%);
    position: relative;
    overflow: hidden;
}

.section-what-is::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 45, 69, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 45, 69, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridMove 20s linear infinite;
    pointer-events: none;
    z-index: 0;
}

.what-is-header {
    text-align: center;
    margin-bottom: 64px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.what-is-intro {
    font-size: 18px;
    color: var(--muted);
    line-height: 1.75;
    margin-top: 20px;
}



.section-membership {
    background:
        radial-gradient(ellipse at top left, rgba(195, 21, 43, 0.06) 0%, transparent 40%),
        radial-gradient(ellipse at bottom right, rgba(195, 21, 43, 0.06) 0%, transparent 40%),
        linear-gradient(180deg, #0a0d14 0%, var(--bg) 100%);
}

.section-membership .membership-benefits {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 8px;
}

.section-membership .membership-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    color: var(--muted);
    line-height: 1.6;
}

.section-membership .membership-benefits li strong {
    color: var(--text);
    font-weight: 600;
}

.benefit-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(195, 21, 43, 0.2);
    border: 1px solid rgba(255, 45, 69, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -2px;
}

.benefit-icon svg {
    width: 16px;
    height: 16px;
    color: var(--accent-bright);
}



.section-why {
    background:
        radial-gradient(ellipse at bottom left, rgba(195, 21, 43, 0.06) 0%, transparent 40%),
        linear-gradient(180deg, var(--bg) 0%, #0a0d14 100%);
    position: relative;
}


.why-header {
    text-align: center;
    margin-bottom: 56px;
}

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

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

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

.why-card {
    background:
        linear-gradient(135deg, rgba(17, 20, 28, 0.8), rgba(5, 7, 11, 0.9));
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: border-color 0.3s ease;
}

.why-card:hover {
    border-color: rgba(195, 21, 43, 0.3);
}

.why-number {
    font-size: 32px;
    font-weight: 700;
    color: var(--accent-bright);
    opacity: 0.25;
    line-height: 1;
    text-shadow: 0 0 0 transparent;
    animation: numberGlow 4s ease-in-out infinite;
}

.why-card:nth-child(1) .why-number { animation-delay: 0s; }
.why-card:nth-child(2) .why-number { animation-delay: 1s; }
.why-card:nth-child(3) .why-number { animation-delay: 2s; }
.why-card:nth-child(4) .why-number { animation-delay: 3s; }

.why-card-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text);
}

.why-card-desc {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.7;
}

.why-statement {
    margin-top: 56px;
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    padding: 32px;
    background: rgba(195, 21, 43, 0.06);
    border: 1px solid rgba(255, 45, 69, 0.15);
    border-radius: 16px;
}

.why-statement p {
    font-size: 18px;
    color: var(--muted);
    line-height: 1.7;
    font-style: italic;
}



.section-hackers {
    background:
        radial-gradient(ellipse at top right, rgba(195, 21, 43, 0.08) 0%, transparent 50%),
        linear-gradient(180deg, #0a0d14 0%, var(--bg) 100%);
    position: relative;
    overflow: hidden;
}

.section-hackers::before {
    content: "";
    position: absolute;
    top: 10%;
    left: -5%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(195, 21, 43, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatGlow 15s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

.section-hackers::after {
    content: "";
    position: absolute;
    bottom: 15%;
    right: -8%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(195, 21, 43, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatGlow 18s ease-in-out infinite reverse;
    pointer-events: none;
    z-index: 0;
}

.section-hackers .section-container {
    direction: rtl;
}

.section-hackers .section-container > * {
    direction: ltr;
}

.hackers-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: relative;
    z-index: 2;
}

.hackers-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 8px;
    position: relative;
    z-index: 2;
}

@media (max-width: 600px) {
    .hackers-benefits {
        grid-template-columns: 1fr;
    }
}

.hacker-benefit {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    background: #0d1016;
    border: 1px solid var(--border);
    border-radius: 12px;
    transition: border-color 0.2s ease;
    position: relative;
    z-index: 2;
}

.hacker-benefit:hover {
    border-color: rgba(195, 21, 43, 0.3);
}

.hacker-benefit-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(195, 21, 43, 0.15);
    border: 1px solid rgba(255, 45, 69, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hacker-benefit-icon svg {
    width: 18px;
    height: 18px;
    color: var(--accent-bright);
}

.hacker-benefit-text h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 4px;
}

.hacker-benefit-text p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.5;
}

.hackers-cta-group {
    display: flex;
    gap: 16px;
    margin-top: 16px;
    position: relative;
    z-index: 3;
}

@media (max-width: 600px) {
    .hackers-cta-group {
        flex-direction: column;
    }
}



.section-fund {
    background:
        radial-gradient(ellipse at center, rgba(195, 21, 43, 0.1) 0%, transparent 50%),
        linear-gradient(180deg, var(--bg) 0%, #0a0d14 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.section-fund::before,
.section-fund::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(195, 21, 43, 0.1) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.section-fund::before {
    top: 10%;
    left: -5%;
    animation: floatOrb 12s ease-in-out infinite;
}

.section-fund::after {
    bottom: 10%;
    right: -5%;
    animation: floatOrb 15s ease-in-out infinite reverse;
}

.fund-badge {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(195, 21, 43, 0.15);
    border: 1px solid rgba(255, 45, 69, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    animation: heartPulse 3s ease-in-out infinite;
}

.fund-badge svg {
    width: 32px;
    height: 32px;
    color: var(--accent-bright);
}

.fund-description {
    font-size: 18px;
    color: var(--muted);
    line-height: 1.75;
}

.section-fund .btn {
    margin-top: 16px;
}



.section-how-it-works {
    background: radial-gradient(ellipse at top left, rgba(195, 21, 43, 0.06) 0%, transparent 40%), linear-gradient(180deg, var(--bg) 0%, #0a0d14 100%);
}

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

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

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

.step-card {
    background: #0a0d12;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    position: relative;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.step-card:hover {
    border-color: rgba(195, 21, 43, 0.4);
    transform: translateY(-4px);
}

.step-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(195, 21, 43, 0.15);
    border: 1px solid rgba(255, 45, 69, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 20px;
    font-weight: 700;
    color: var(--accent-bright);
}

.step-card:nth-child(1) .step-number { animation: stepPulse 4s ease-in-out infinite 0s; }
.step-card:nth-child(2) .step-number { animation: stepPulse 4s ease-in-out infinite 1s; }
.step-card:nth-child(3) .step-number { animation: stepPulse 4s ease-in-out infinite 2s; }
.step-card:nth-child(4) .step-number { animation: stepPulse 4s ease-in-out infinite 3s; }

.step-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
}

.step-desc {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.6;
}



.section-benefits {
    background: radial-gradient(ellipse at bottom right, rgba(195, 21, 43, 0.08) 0%, transparent 50%), linear-gradient(180deg, #0a0d14 0%, var(--bg) 100%);
    overflow: hidden;
}

.section-benefits::before {
    content: "";
    position: absolute;
    top: 10%;
    left: -10%;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(195, 21, 43, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    animation: orbFloatLeft 18s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

.section-benefits::after {
    content: "";
    position: absolute;
    bottom: 10%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(195, 21, 43, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: orbFloatRight 15s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 48px;
    max-width: 900px;
    margin: 0 auto;
}

.benefit-item {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 28px;
    align-items: start;
}

@media (max-width: 600px) {
    .benefit-item {
        grid-template-columns: 56px 1fr;
        gap: 20px;
    }
}

.benefit-icon {
    width: 72px;
    height: 72px;
    border-radius: 16px;
    background: rgba(195, 21, 43, 0.1);
    border: 1px solid rgba(255, 45, 69, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

@media (max-width: 600px) {
    .benefit-icon {
        width: 56px;
        height: 56px;
    }
}

.benefit-item:hover .benefit-icon {
    transform: scale(1.05);
    background: rgba(195, 21, 43, 0.15);
    box-shadow: 0 0 30px rgba(255, 45, 69, 0.2);
}

.benefit-icon svg {
    width: 32px;
    height: 32px;
    color: var(--accent-bright);
}

@media (max-width: 600px) {
    .benefit-icon svg {
        width: 24px;
        height: 24px;
    }
}

.benefit-content {
    padding-top: 4px;
}

.benefit-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}

.benefit-desc {
    font-size: 16px;
    color: var(--muted);
    line-height: 1.7;
}



.section-community {
    background: radial-gradient(ellipse at center, rgba(195, 21, 43, 0.06) 0%, transparent 50%), linear-gradient(180deg, var(--bg) 0%, #0a0d14 100%);
}

.community-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.community-text {
    margin-bottom: 48px;
}

.community-text p {
    font-size: 18px;
    color: var(--muted);
    line-height: 1.8;
    margin-top: 20px;
}

.community-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 48px;
}

@media (max-width: 600px) {
    .community-stats {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

.community-stat {
    padding: 32px 24px;
    background: rgba(195, 21, 43, 0.06);
    border: 1px solid rgba(255, 45, 69, 0.15);
    border-radius: 16px;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.community-stat:hover {
    border-color: rgba(255, 45, 69, 0.3);
    transform: translateY(-4px);
}

.community-stat-value {
    font-size: 42px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
}

.community-stat-label {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.5;
}

.community-highlight {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    background: rgba(195, 21, 43, 0.1);
    border: 1px solid rgba(255, 45, 69, 0.2);
    border-radius: 12px;
    font-size: 15px;
    color: var(--muted);
}

.community-highlight svg {
    width: 24px;
    height: 24px;
    color: var(--accent-bright);
    flex-shrink: 0;
}

.community-highlight strong {
    color: var(--text);
}



.section-pricing {
    background: radial-gradient(ellipse at top right, rgba(195, 21, 43, 0.08) 0%, transparent 50%), linear-gradient(180deg, #0a0d14 0%, var(--bg) 100%);
}

.pricing-benefits {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 8px;
}

.pricing-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    color: var(--muted);
    line-height: 1.6;
}

.pricing-benefits li strong {
    color: var(--text);
    font-weight: 600;
}

.pricing-check {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    margin-top: 3px;
    border-radius: 50%;
    background: rgba(195, 21, 43, 0.2);
    border: 1px solid rgba(255, 45, 69, 0.3);
    position: relative;
}

.pricing-check::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent-bright);
}

.pricing-card {
    position: relative;
    background:
        radial-gradient(circle at top right, rgba(195, 21, 43, 0.12) 0%, transparent 50%),
        linear-gradient(135deg, rgba(17, 20, 28, 0.95), rgba(5, 7, 11, 0.98));
    border-radius: 20px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.pricing-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 1px;
    background: conic-gradient(
        from var(--border-angle),
        transparent 0deg,
        transparent 340deg,
        rgba(255, 45, 69, 0.5) 350deg,
        rgba(255, 107, 122, 0.6) 355deg,
        rgba(255, 45, 69, 0.5) 360deg
    );
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: rotateBorder 6s linear infinite;
}

.pricing-header {
    text-align: center;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
}

.pricing-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent-bright);
    font-weight: 500;
}

.pricing-amount {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    margin-top: 12px;
}

.pricing-currency {
    font-size: 18px;
    color: var(--muted);
    font-weight: 500;
}

.pricing-value {
    font-size: 56px;
    font-weight: 700;
    color: var(--text);
    line-height: 1;
}

.pricing-period {
    font-size: 18px;
    color: var(--muted);
}

.pricing-note {
    font-size: 14px;
    color: var(--muted);
    margin-top: 8px;
}

.pricing-features {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.pricing-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--muted);
}

.pricing-feature svg {
    width: 18px;
    height: 18px;
    color: var(--accent-bright);
    flex-shrink: 0;
}

.pricing-fund {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px;
    background: rgba(195, 21, 43, 0.08);
    border: 1px solid rgba(255, 45, 69, 0.2);
    border-radius: 12px;
}

.fund-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(195, 21, 43, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.fund-icon svg {
    width: 20px;
    height: 20px;
    color: var(--accent-bright);
}

.pricing-fund p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.5;
}

.pricing-fund p strong {
    color: var(--text);
}


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

.pricing-tier {
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.pricing-tier:hover {
    transform: translateY(-4px);
    border-color: rgba(195, 21, 43, 0.3);
}

.pricing-tier-featured {
    border-color: var(--accent);
    background: linear-gradient(180deg, rgba(195, 21, 43, 0.08) 0%, var(--bg-alt) 100%);
}

.pricing-tier-featured:hover {
    border-color: var(--accent-bright);
}

.pricing-tier-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: white;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 6px 16px;
    border-radius: 20px;
}

.pricing-tier-header {
    text-align: center;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 24px;
}

.pricing-tier-name {
    font-size: 18px;
    font-weight: 600;
    color: var(--text);
    display: block;
    margin-bottom: 12px;
}

.pricing-tier-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    margin-bottom: 12px;
}

.pricing-tier-price .pricing-currency {
    font-size: 14px;
    color: var(--muted);
}

.pricing-tier-price .pricing-value {
    font-size: 42px;
    font-weight: 700;
    color: var(--text);
    line-height: 1;
}

.pricing-tier-price .pricing-period {
    font-size: 14px;
    color: var(--muted);
}

.pricing-tier-desc {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.5;
    margin: 0;
}

.pricing-tier-features {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.pricing-tier-features .pricing-feature {
    padding: 0;
}

.pricing-feature-disabled {
    opacity: 0.4;
}

.pricing-feature-disabled svg {
    stroke: var(--muted);
}

.pricing-note-box {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: rgba(195, 21, 43, 0.08);
    border: 1px solid rgba(195, 21, 43, 0.2);
    border-radius: 12px;
    padding: 20px 24px;
    margin-top: 32px;
}

.pricing-note-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pricing-note-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--accent);
}

.pricing-note-content {
    flex: 1;
}

.pricing-note-content strong {
    display: block;
    color: var(--text);
    margin-bottom: 4px;
}

.pricing-note-content p {
    font-size: 14px;
    color: var(--muted);
    margin: 0;
    line-height: 1.5;
}

@media (max-width: 960px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .pricing-tier-featured {
        order: -1;
    }
}


.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.service-card {
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    border-color: rgba(195, 21, 43, 0.3);
}

.service-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(195, 21, 43, 0.1);
    border-radius: 12px;
    margin-bottom: 20px;
}

.service-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--accent);
}

.service-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 12px;
}

.service-desc {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 16px;
}

.service-price {
    font-size: 18px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}

.service-includes {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-includes li {
    font-size: 13px;
    color: var(--muted);
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
}

.service-includes li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c3152b' stroke-width='2'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") no-repeat center;
    background-size: contain;
}


.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.benefit-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.benefit-icon-small {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(195, 21, 43, 0.1);
    border-radius: 8px;
}

.benefit-icon-small svg {
    width: 16px;
    height: 16px;
    stroke: var(--accent);
}

.benefit-item strong {
    display: block;
    color: var(--text);
    margin-bottom: 4px;
}

.benefit-item p {
    font-size: 14px;
    color: var(--muted);
    margin: 0;
    line-height: 1.5;
}

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


.comparison-table {
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
}

.comparison-row {
    display: grid;
    grid-template-columns: 1fr 100px 100px;
    gap: 16px;
    padding: 16px 24px;
    border-bottom: 1px solid var(--border);
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-header {
    background: rgba(195, 21, 43, 0.05);
    font-weight: 600;
}

.comparison-feature {
    font-size: 14px;
    color: var(--text);
}

.comparison-option {
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
}

.comparison-check,
.comparison-x {
    display: flex;
    justify-content: center;
    align-items: center;
}

.comparison-check svg {
    width: 20px;
    height: 20px;
    stroke: var(--accent);
}

.comparison-x svg {
    width: 20px;
    height: 20px;
    stroke: var(--muted);
    opacity: 0.5;
}

.comparison-value {
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    color: var(--accent);
}


.pricing-grid-2 {
    grid-template-columns: repeat(2, 1fr);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .comparison-row {
        grid-template-columns: 1fr 80px 80px;
        gap: 8px;
        padding: 12px 16px;
    }

    .comparison-feature {
        font-size: 13px;
    }

    .pricing-grid-2 {
        grid-template-columns: 1fr;
    }
}

.section-cta {
    background: radial-gradient(ellipse at center, rgba(195, 21, 43, 0.1) 0%, transparent 50%), linear-gradient(180deg, var(--bg) 0%, #0a0d14 100%);
    text-align: center;
    overflow: hidden;
}

.section-cta::before,
.section-cta::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(195, 21, 43, 0.1) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.section-cta::before {
    top: 10%;
    left: -5%;
    animation: floatOrb 12s ease-in-out infinite;
}

.section-cta::after {
    bottom: 10%;
    right: -5%;
    animation: floatOrb 15s ease-in-out infinite reverse;
}

.cta-container {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-desc {
    font-size: 18px;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
}

@media (max-width: 480px) {
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}



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

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

.feature-card {
    background:
        linear-gradient(135deg, rgba(17, 20, 28, 0.9), rgba(5, 7, 11, 0.95));
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.feature-card:hover {
    border-color: rgba(195, 21, 43, 0.3);
    transform: translateY(-2px);
}

.feature-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(195, 21, 43, 0.12);
    border: 1px solid rgba(255, 45, 69, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, background 0.3s ease;
}

.feature-card:hover .feature-card-icon {
    transform: scale(1.1) rotate(-5deg);
    background: rgba(195, 21, 43, 0.2);
}

.feature-card-icon svg {
    width: 24px;
    height: 24px;
    color: var(--accent-bright);
}

.feature-card-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--text);
}

.feature-card-desc {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.7;
}



.visual-card {
    position: relative;
    background: #0a0d12;
    border-radius: 20px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.visual-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 20px;
    background: radial-gradient(circle at top left, rgba(195, 21, 43, 0.12) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.visual-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 1px;
    background: conic-gradient(
        from var(--border-angle),
        transparent 0deg,
        transparent 340deg,
        rgba(255, 45, 69, 0.4) 350deg,
        rgba(255, 107, 122, 0.5) 355deg,
        rgba(255, 45, 69, 0.4) 360deg
    );
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: rotateBorder 8s linear infinite;
    z-index: 3;
}

.visual-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: rgba(195, 21, 43, 0.15);
    border: 1px solid rgba(255, 45, 69, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: iconPulse 4s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

.visual-icon svg {
    width: 32px;
    height: 32px;
    color: var(--accent-bright);
}

.visual-stats {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    z-index: 2;
}

.visual-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
    position: relative;
}

.visual-stat::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 1px;
    width: 0;
    background: linear-gradient(90deg, var(--accent-bright), transparent);
    animation: statLine 3s ease-out forwards;
}

.visual-stat:nth-child(1)::before { animation-delay: 0.2s; }
.visual-stat:nth-child(2)::before { animation-delay: 0.4s; }
.visual-stat:nth-child(3)::before { animation-delay: 0.6s; }

.visual-stat:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.visual-stat-value {
    font-size: 28px;
    font-weight: 700;
    color: var(--text);
}

.visual-stat-label {
    font-size: 14px;
    color: var(--muted);
}


.laser-card {
    position: relative;
    background: #0a0d12;
    border-radius: 20px;
    padding: 40px;
}

.laser-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 1px;
    background: conic-gradient(from var(--border-angle), transparent 0deg, transparent 340deg, rgba(255, 45, 69, 0.5) 350deg, rgba(255, 107, 122, 0.6) 355deg, rgba(255, 45, 69, 0.5) 360deg);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: rotateBorder 6s linear infinite;
}



.terminal-card {
    position: relative;
    background: #0d1117;
    border-radius: 16px;
    overflow: hidden;
    z-index: 2;
}

.terminal-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 1px;
    background: conic-gradient(
        from var(--border-angle),
        transparent 0deg,
        transparent 340deg,
        rgba(255, 45, 69, 0.5) 350deg,
        rgba(255, 107, 122, 0.8) 355deg,
        rgba(255, 45, 69, 0.5) 360deg
    );
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: rotateBorder 5s linear infinite;
    z-index: 0;
}

.terminal-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: rgba(0, 0, 0, 0.4);
    border-bottom: 1px solid var(--border);
}

.terminal-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.terminal-dot-red { background: #ff5f57; }
.terminal-dot-yellow { background: #febc2e; }
.terminal-dot-green { background: #28c840; }

.terminal-title {
    flex: 1;
    text-align: center;
    font-size: 12px;
    color: var(--muted);
    margin-right: 52px;
}

.terminal-body {
    padding: 24px;
    font-family: 'SF Mono', 'Fira Code', 'Consolas', monospace;
    font-size: 13px;
    line-height: 1.7;
    height: 380px;
    overflow-y: auto;
    scroll-behavior: smooth;
}

.terminal-body::-webkit-scrollbar {
    width: 6px;
}

.terminal-body::-webkit-scrollbar-track {
    background: transparent;
}

.terminal-body::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 3px;
}

.terminal-line {
    display: flex;
    gap: 8px;
}

.terminal-prompt {
    color: var(--accent-bright);
}

.terminal-command {
    color: var(--text);
}

.terminal-output {
    color: var(--muted);
    padding-left: 20px;
}

.terminal-success {
    color: #28c840;
}

.terminal-warning {
    color: #febc2e;
}

.terminal-muted {
    color: #6b7280;
}

.terminal-bounty {
    color: #28c840;
    font-weight: 600;
}

.terminal-highlight {
    color: #58a6ff;
}

.terminal-cursor {
    display: inline-block;
    width: 8px;
    height: 16px;
    background: var(--accent-bright);
    animation: blink 1s step-end infinite;
    vertical-align: middle;
    margin-left: 4px;
}



.site-footer {
    background: #030508;
    border-top: 1px solid var(--border);
    padding: 64px 24px 32px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 64px;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--border);
}

@media (max-width: 768px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-logo {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--text);
}


.footer-logo-laser {
    position: relative;
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 12px 22px;
    background: transparent;
    border-radius: 10px;
}

.footer-logo-laser::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 10px;
    padding: 1px;
    background: conic-gradient(
        from var(--border-angle),
        transparent 0deg,
        transparent 340deg,
        rgba(255, 45, 69, 0.5) 350deg,
        rgba(255, 107, 122, 0.8) 355deg,
        rgba(255, 45, 69, 0.5) 360deg
    );
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: rotateBorder 4s linear infinite;
}

.footer-logo-laser .logo-laser-text {
    font-size: 22px;
}

.footer-tagline {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.7;
    max-width: 280px;
    margin-left: 22px;
}

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

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

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

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col-title {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text);
    margin-bottom: 4px;
}

.footer-nav-link {
    font-size: 14px;
    color: var(--muted);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-nav-link:hover {
    color: var(--text);
}

.footer-bottom {
    padding-top: 32px;
    text-align: center;
}

.footer-copyright {
    font-size: 13px;
    color: #6b7280;
}

.footer-copyright strong {
    color: var(--muted);
    font-weight: 500;
}



@keyframes pulse {
    0%, 100% { opacity: 0.8; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

@keyframes shimmer {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes floatGlow {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.7;
    }
    33% {
        transform: translate(30px, -20px) scale(1.1);
        opacity: 1;
    }
    66% {
        transform: translate(-20px, 20px) scale(0.95);
        opacity: 0.6;
    }
}

@keyframes floatMap {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes rotateBorder {
    to {
        --border-angle: 360deg;
    }
}

@keyframes rotateBorderReverse {
    from {
        --border-angle: 360deg;
    }
    to {
        --border-angle: 0deg;
    }
}

@keyframes floatStat1 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@keyframes floatStat2 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}

@keyframes floatStat3 {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(-6px); }
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(6px); }
}

@keyframes orbFloatLeft {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.7;
    }
    33% {
        transform: translate(80px, 40px) scale(1.2);
        opacity: 1;
    }
    66% {
        transform: translate(40px, -30px) scale(0.9);
        opacity: 0.6;
    }
}

@keyframes orbFloatRight {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.6;
    }
    33% {
        transform: translate(-60px, -40px) scale(1.1);
        opacity: 0.9;
    }
    66% {
        transform: translate(-30px, 30px) scale(0.95);
        opacity: 0.5;
    }
}

@keyframes gridMove {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(60px);
    }
}

@keyframes statLine {
    to {
        width: 60%;
    }
}

@keyframes iconPulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(255, 45, 69, 0.1);
    }
    50% {
        box-shadow: 0 0 20px 5px rgba(255, 45, 69, 0.15);
    }
}

@keyframes gradientMove {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

@keyframes numberGlow {
    0%, 100% {
        opacity: 0.25;
        text-shadow: 0 0 0 transparent;
    }
    25% {
        opacity: 1;
        text-shadow: 0 0 20px rgba(255, 45, 69, 0.8), 0 0 40px rgba(255, 45, 69, 0.4);
    }
    50% {
        opacity: 0.25;
        text-shadow: 0 0 0 transparent;
    }
}

@keyframes timelineGlow {
    0%, 100% {
        opacity: 0.25;
        text-shadow: 0 0 0 transparent;
    }
    15% {
        opacity: 1;
        text-shadow: 0 0 20px rgba(255, 45, 69, 0.8), 0 0 40px rgba(255, 45, 69, 0.4);
    }
    30%, 100% {
        opacity: 0.25;
        text-shadow: 0 0 0 transparent;
    }
}

@keyframes scanLine {
    0% {
        top: 0;
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        top: 100%;
        opacity: 0;
    }
}

@keyframes floatOrb {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.8;
    }
    33% {
        transform: translate(20px, -30px) scale(1.1);
        opacity: 1;
    }
    66% {
        transform: translate(-15px, 15px) scale(0.9);
        opacity: 0.7;
    }
}

@keyframes heartPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 45, 69, 0.2);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 30px 10px rgba(255, 45, 69, 0.15);
    }
}

@keyframes stepPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255, 45, 69, 0.1); }
    25% { box-shadow: 0 0 20px 5px rgba(255, 45, 69, 0.3); }
    50% { box-shadow: 0 0 0 0 rgba(255, 45, 69, 0.1); }
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}




.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.process-card {
    position: relative;
    background: linear-gradient(135deg, rgba(15, 18, 25, 0.8), rgba(20, 25, 35, 0.6));
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px 24px;
    transition: all 0.3s ease;
}

.process-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent);
    box-shadow: 0 8px 32px rgba(255, 45, 69, 0.15);
    animation: processPulsate 1.5s ease-in-out infinite;
}

.process-number {
    font-size: 48px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent), rgba(195, 21, 43, 0.8));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
    line-height: 1;
    transition: background 0.3s ease;
}

.process-card:hover .process-number {
    background: linear-gradient(135deg, var(--accent-bright), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.process-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--text);
    margin: 0 0 12px 0;
}

.process-desc {
    font-size: 15px;
    line-height: 1.6;
    color: var(--muted);
    margin: 0;
}


.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

.comparison-card {
    position: relative;
    background: rgba(15, 18, 25, 0.6);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 32px;
    transition: all 0.3s ease;
}

.comparison-traditional {
    opacity: 0.75;
}

.comparison-traditional:hover {
    opacity: 1;
}

.comparison-bounty {
    background: #0a0d12;
    border: none;
}

.comparison-bounty::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 1px;
    background: conic-gradient(from calc(var(--border-angle) + 45deg), transparent 0deg, transparent 320deg, rgba(255, 45, 69, 0.5) 340deg, rgba(255, 107, 122, 0.6) 350deg, rgba(255, 45, 69, 0.5) 360deg);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: rotateBorder 6s linear infinite;
}

.comparison-bounty::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 1px;
    background: conic-gradient(from calc(225deg - var(--border-angle)), transparent 0deg, transparent 320deg, rgba(255, 45, 69, 0.5) 340deg, rgba(255, 107, 122, 0.6) 350deg, rgba(255, 45, 69, 0.5) 360deg);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: rotateBorder 6s linear infinite;
}

.comparison-bounty:hover {
    box-shadow: 0 12px 48px rgba(255, 45, 69, 0.2);
}

.comparison-header {
    position: relative;
    z-index: 1;
    margin-bottom: 24px;
}

.comparison-badge {
    display: inline-block;
    padding: 6px 14px;
    background: var(--accent);
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 20px;
    margin-bottom: 12px;
}

.comparison-header h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--text);
    margin: 0;
}

.comparison-features {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.comparison-feature {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    line-height: 1.5;
    color: var(--muted);
}

.comparison-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    border-radius: 50%;
    margin-top: 2px;
}

.comparison-icon-positive {
    background: rgba(0, 255, 150, 0.15);
    color: #00ff96;
}

.comparison-icon-negative {
    background: rgba(255, 45, 69, 0.15);
    color: var(--accent);
}


.why-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 45, 69, 0.15), rgba(195, 21, 43, 0.1));
    border: 1px solid rgba(255, 45, 69, 0.3);
    border-radius: 14px;
    transition: all 0.3s ease;
}

.why-card:hover .why-icon {
    border-color: var(--accent);
    background: linear-gradient(135deg, rgba(255, 45, 69, 0.25), rgba(195, 21, 43, 0.15));
    box-shadow: 0 0 20px rgba(255, 45, 69, 0.2);
    transform: scale(1.05);
}

.why-icon svg {
    width: 28px;
    height: 28px;
    color: var(--accent-bright);
    transition: color 0.3s ease;
}

.why-card:hover .why-icon svg {
    color: #ff4d6a;
}


@keyframes processPulsate {
    0%, 100% {
        border-color: var(--accent);
        box-shadow: 0 8px 32px rgba(255, 45, 69, 0.15),
                    0 0 0 0 rgba(255, 45, 69, 0.3);
    }
    50% {
        border-color: rgba(255, 107, 122, 0.8);
        box-shadow: 0 8px 32px rgba(255, 45, 69, 0.25),
                    0 0 15px 3px rgba(255, 45, 69, 0.4);
    }
}


.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.timeline-item {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 32px;
    position: relative;
    padding-bottom: 48px;
}


.timeline-number {
    font-size: 48px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent), rgba(195, 21, 43, 0.8));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    opacity: 0.25;
    text-shadow: 0 0 0 transparent;
    animation: timelineGlow 8s ease-in-out infinite;
}

.timeline-item:nth-child(1) .timeline-number { animation-delay: 0s; }
.timeline-item:nth-child(2) .timeline-number { animation-delay: 1.6s; }
.timeline-item:nth-child(3) .timeline-number { animation-delay: 3.2s; }
.timeline-item:nth-child(4) .timeline-number { animation-delay: 4.8s; }
.timeline-item:nth-child(5) .timeline-number { animation-delay: 6.4s; }

.timeline-item:hover .timeline-number {
    background: linear-gradient(135deg, var(--accent-bright), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.timeline-content {
    padding-top: 4px;
}

.timeline-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--text);
    margin: 0 0 12px 0;
}

.timeline-desc {
    font-size: 16px;
    line-height: 1.6;
    color: var(--muted);
    margin: 0;
}


@media (max-width: 600px) {
    .timeline-item {
        grid-template-columns: 60px 1fr;
        gap: 20px;
    }

    .timeline-number {
        font-size: 36px;
    }

    .timeline-title {
        font-size: 20px;
    }
}


.benefits-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 48px;
    align-items: start;
}

.benefits-main {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.benefit-highlight {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.benefit-highlight-icon {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 45, 69, 0.15), rgba(195, 21, 43, 0.1));
    border: 1px solid rgba(255, 45, 69, 0.3);
    border-radius: 14px;
    transition: all 0.3s ease;
}

.benefit-highlight:hover .benefit-highlight-icon {
    border-color: var(--accent);
    background: linear-gradient(135deg, rgba(255, 45, 69, 0.25), rgba(195, 21, 43, 0.15));
    box-shadow: 0 0 20px rgba(255, 45, 69, 0.2);
    transform: scale(1.05);
}

.benefit-highlight-icon svg {
    width: 28px;
    height: 28px;
    color: var(--accent-bright);
}

.benefit-highlight-content h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--text);
    margin: 0 0 8px 0;
}

.benefit-highlight-content p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--muted);
    margin: 0;
}

.benefits-side {
    display: flex;
    flex-direction: column;
    gap: 32px;
    position: sticky;
    top: 100px;
}

.benefit-stat-card {
    background: linear-gradient(135deg, rgba(15, 18, 25, 0.8), rgba(20, 25, 35, 0.6));
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
}

.benefit-stat-number {
    font-size: 72px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent-bright), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 12px;
}

.benefit-stat-label {
    font-size: 16px;
    font-weight: 600;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.4;
}

.benefit-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.benefit-list-item {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 15px;
    color: var(--text);
    transition: all 0.3s ease;
}

.benefit-list-item svg {
    width: 24px;
    height: 24px;
    color: var(--accent);
    flex-shrink: 0;
}

.benefit-list-item:hover {
    color: var(--accent-bright);
    transform: translateX(4px);
}

@media (max-width: 960px) {
    .benefits-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .benefits-side {
        position: static;
    }
}


.requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.requirement-card {
    background: linear-gradient(135deg, rgba(15, 18, 25, 0.8), rgba(20, 25, 35, 0.6));
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.requirement-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 255, 150, 0.3);
    box-shadow: 0 8px 32px rgba(0, 255, 150, 0.1);
}

.requirement-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    border-radius: 14px;
    transition: all 0.3s ease;
}

.requirement-icon-check {
    background: linear-gradient(135deg, rgba(0, 255, 150, 0.15), rgba(0, 200, 120, 0.1));
    border: 1px solid rgba(0, 255, 150, 0.3);
}

.requirement-card:hover .requirement-icon-check {
    border-color: rgba(0, 255, 150, 0.5);
    background: linear-gradient(135deg, rgba(0, 255, 150, 0.25), rgba(0, 200, 120, 0.15));
    box-shadow: 0 0 20px rgba(0, 255, 150, 0.2);
    transform: scale(1.05);
}

.requirement-icon svg {
    width: 28px;
    height: 28px;
    color: #00ff96;
    transition: color 0.3s ease;
}

.requirement-card:hover .requirement-icon svg {
    color: #00ffaa;
}

.requirement-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--text);
    margin: 0 0 12px 0;
}

.requirement-desc {
    font-size: 15px;
    line-height: 1.6;
    color: var(--muted);
    margin: 0;
}


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

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

    .process-number {
        font-size: 36px;
    }

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




.section-flowchart {
    background:
        radial-gradient(ellipse at top left, rgba(195, 21, 43, 0.08) 0%, transparent 50%),
        linear-gradient(180deg, var(--bg) 0%, #0a0d14 100%);
    position: relative;
    overflow: hidden;
}

.section-flowchart::before {
    content: "";
    position: absolute;
    top: 10%;
    left: -10%;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(195, 21, 43, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: orbFloatLeft 18s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

.section-fund-benefits {
    background:
        radial-gradient(ellipse at bottom right, rgba(195, 21, 43, 0.08) 0%, transparent 50%),
        linear-gradient(180deg, #0a0d14 0%, var(--bg) 100%);
    position: relative;
    overflow: hidden;
}

.section-fund-benefits::before {
    content: "";
    position: absolute;
    bottom: 10%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(195, 21, 43, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    animation: orbFloatRight 15s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}


.flowchart-container {
    margin: 80px auto 0;
    max-width: 900px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: 20px;
    position: relative;
}

.fund-flowchart {
    width: 100%;
    height: auto;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease;
}

.fund-flowchart.visible {
    opacity: 1;
    transform: translateY(0);
}

.fund-flowchart text {
    font-family: system-ui, -apple-system, sans-serif;
}

.flow-node {
    transition: all 0.3s ease;
    cursor: default;
}

.flow-node:hover rect:first-child {
    fill: rgba(255, 255, 255, 0.06);
    stroke: rgba(195, 21, 43, 0.4);
}

.flow-node-highlight rect {
    stroke-width: 2;
}

.flow-node-highlight:hover rect:first-child {
    stroke: var(--accent-bright);
    filter: drop-shadow(0 0 12px rgba(255, 45, 69, 0.3));
}


.funding-breakdown {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.funding-source {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 32px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.funding-source:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(195, 21, 43, 0.3);
    transform: translateX(4px);
}

.funding-icon {
    width: 64px;
    height: 64px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(195, 21, 43, 0.1);
    border: 1px solid rgba(195, 21, 43, 0.3);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.funding-source:hover .funding-icon {
    background: rgba(195, 21, 43, 0.15);
    border-color: var(--accent);
    box-shadow: 0 0 16px rgba(255, 45, 69, 0.2);
}

.funding-icon svg {
    width: 32px;
    height: 32px;
    color: var(--accent-bright);
}

.funding-source-content {
    flex: 1;
}

.funding-source h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text);
    margin: 0 0 8px 0;
    display: flex;
    align-items: center;
}

.funding-amount {
    font-size: 28px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent-bright), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 0 8px;
    display: inline-block;
    vertical-align: middle;
    line-height: 1;
}

.funding-source p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.6;
    margin: 0;
}



.hero-compact {
    padding: 120px 0 60px;
}

.hero-compact .hero-description {
    max-width: 800px;
}

.hero-centered .hero-description {
    max-width: 800px;
}

.section-container-form {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

.form-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 48px;
    align-items: start;
}


.form-card {
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    border: none;
    border-radius: 16px;
    padding: 48px;
}

.form-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 1px;
    background: conic-gradient(from calc(var(--border-angle) - 28deg), transparent 0deg, transparent 320deg, rgba(255, 45, 69, 0.5) 340deg, rgba(255, 107, 122, 0.6) 350deg, rgba(255, 45, 69, 0.5) 360deg);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: rotateBorder 8s linear infinite;
    pointer-events: none;
}

.form-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 1px;
    background: conic-gradient(from calc(152deg - var(--border-angle)), transparent 0deg, transparent 320deg, rgba(255, 45, 69, 0.5) 340deg, rgba(255, 107, 122, 0.6) 350deg, rgba(255, 45, 69, 0.5) 360deg);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: rotateBorder 8s linear infinite;
    pointer-events: none;
}

.form-header {
    margin-bottom: 40px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
}

.form-header h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text);
    margin: 0 0 12px 0;
}

.form-header p {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.6;
    margin: 0;
}


.form-section {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.form-section:last-of-type {
    border-bottom: none;
    margin-bottom: 32px;
    padding-bottom: 0;
}

.form-section-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 20px;
    font-weight: 600;
    color: var(--text);
    margin: 0 0 24px 0;
}

.form-section-title svg {
    width: 24px;
    height: 24px;
    color: var(--accent-bright);
}


.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 8px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text);
    font-size: 15px;
    font-family: inherit;
    transition: all 0.2s ease;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group input[type="tel"]:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 0 3px rgba(195, 21, 43, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23ffffff' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
    line-height: 1.6;
}

.form-hint {
    display: block;
    font-size: 13px;
    color: var(--muted);
    margin-top: 6px;
}


.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    user-select: none;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    cursor: pointer;
    accent-color: var(--accent);
}

.checkbox-label span {
    font-size: 14px;
    color: var(--text);
    line-height: 1.5;
}


.form-actions {
    display: flex;
    gap: 16px;
    padding-top: 24px;
}

.btn-large {
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-large svg {
    width: 20px;
    height: 20px;
}


.form-sidebar {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.sidebar-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px;
}

.sidebar-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text);
    margin: 0 0 16px 0;
}

.sidebar-card p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.6;
    margin: 0 0 12px 0;
}

.sidebar-card p:last-child {
    margin-bottom: 0;
}

.sidebar-card-accent {
    background: rgba(195, 21, 43, 0.05);
    border-color: rgba(195, 21, 43, 0.2);
}


.guideline-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.guideline-item {
    display: flex;
    gap: 12px;
}

.guideline-item svg {
    width: 24px;
    height: 24px;
    color: var(--accent-bright);
    flex-shrink: 0;
    margin-top: 2px;
}

.guideline-item strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 4px;
}

.guideline-item p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.5;
    margin: 0;
}


.safe-harbor-list {
    list-style: none;
    padding: 0;
    margin: 12px 0 0 0;
}

.safe-harbor-list li {
    font-size: 14px;
    color: var(--muted);
    padding-left: 24px;
    margin-bottom: 8px;
    position: relative;
}

.safe-harbor-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-bright);
    font-weight: 700;
}


.sidebar-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--accent-bright);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
    margin-top: 12px;
}

.sidebar-link:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--accent);
    transform: translateX(4px);
}

.sidebar-link svg {
    width: 18px;
    height: 18px;
}


@media (max-width: 1024px) {
    .form-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .form-sidebar {
        position: static;
    }
}

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

    .form-card {
        padding: 32px 24px;
    }

    .hero-compact {
        padding: 100px 0 40px;
    }

    .form-actions {
        flex-direction: column;
    }

    .form-actions .btn {
        width: 100%;
        justify-content: center;
    }
}

.funding-divider {
    font-size: 32px;
    font-weight: 700;
    color: var(--accent);
    flex-shrink: 0;
}


.benefits-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 60px;
}

.benefit-card {
    padding: 32px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(195, 21, 43, 0.3);
    transform: translateY(-4px);
}

.benefit-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(195, 21, 43, 0.1);
    border: 1px solid rgba(195, 21, 43, 0.3);
    border-radius: 12px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    background: rgba(195, 21, 43, 0.15);
    border-color: var(--accent);
    box-shadow: 0 0 16px rgba(255, 45, 69, 0.2);
}

.benefit-icon svg {
    width: 28px;
    height: 28px;
    color: var(--accent-bright);
    transition: color 0.3s ease;
}

.benefit-card:hover .benefit-icon svg {
    color: var(--accent-bright);
}

.benefit-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text);
    margin: 0 0 12px 0;
}

.benefit-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--muted);
    margin: 0;
}


.fund-status-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.fund-status-desc {
    font-size: 18px;
    color: var(--muted);
    margin: 16px 0 48px;
}

.section-fund-about {
    background:
        radial-gradient(ellipse at top right, rgba(195, 21, 43, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at bottom left, rgba(195, 21, 43, 0.06) 0%, transparent 40%),
        linear-gradient(180deg, #0a0d14 0%, var(--bg) 100%);
    position: relative;
    overflow: hidden;
}

.section-fund-about::before {
    content: "";
    position: absolute;
    top: 20%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(195, 21, 43, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    animation: orbFloatRight 20s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

.section-fund-about::after {
    content: "";
    position: absolute;
    bottom: 10%;
    left: -5%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(195, 21, 43, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: orbFloatLeft 18s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

.section-fund-about .section-container,
.section-fund-about .section-header {
    position: relative;
    z-index: 2;
}

.fund-explanation {
    max-width: 900px;
    margin: 0 auto 64px;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.fund-section h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 16px;
    text-align: left;
}

.fund-section p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--muted);
    margin-bottom: 12px;
    text-align: left;
}

.fund-section p:last-child {
    margin-bottom: 0;
}

.fund-section strong {
    color: var(--text);
    font-weight: 600;
}

@media (max-width: 768px) {
    .fund-explanation {
        gap: 32px;
        margin-bottom: 48px;
    }

    .fund-section h3 {
        font-size: 20px;
    }

    .fund-section p {
        font-size: 15px;
    }
}


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

.fund-about-card {
    position: relative;
    padding: 32px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.fund-about-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(195, 21, 43, 0.3);
    transform: translateY(-2px);
}

.fund-about-card-featured {
    grid-column: 1 / -1;
    display: flex;
    gap: 32px;
    align-items: flex-start;
    background: linear-gradient(135deg, rgba(195, 21, 43, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
    border-color: rgba(195, 21, 43, 0.2);
}

.fund-about-card-payout {
    grid-column: 1 / -1;
    background: rgba(255, 255, 255, 0.02);
}

.fund-about-card-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 6px 12px;
    background: rgba(195, 21, 43, 0.15);
    border: 1px solid rgba(195, 21, 43, 0.3);
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    color: var(--accent-bright);
    display: flex;
    align-items: center;
    justify-content: center;
}

.fund-about-card-badge svg {
    stroke: var(--accent-bright);
}

.fund-about-card-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(195, 21, 43, 0.1);
    border: 1px solid rgba(195, 21, 43, 0.2);
    border-radius: 12px;
    flex-shrink: 0;
    margin-bottom: 20px;
}

.fund-about-card-featured .fund-about-card-icon {
    margin-bottom: 0;
}

.fund-about-card-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--accent-bright);
}

.fund-about-card-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 12px;
}

.fund-about-card-content p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--muted);
    margin-bottom: 12px;
}

.fund-about-card-content p:last-child {
    margin-bottom: 0;
}

.fund-about-highlight {
    padding: 16px;
    background: rgba(195, 21, 43, 0.08);
    border-left: 3px solid var(--accent);
    border-radius: 0 8px 8px 0;
    color: var(--text) !important;
    font-weight: 500;
}


.fund-payout-factors {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    padding: 24px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: 12px;
    margin: 20px 0;
}

.fund-payout-factor {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
}

.fund-payout-factor-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--muted);
}

.fund-payout-factor-value {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    text-align: center;
}

.fund-payout-factor-divider {
    font-size: 20px;
    font-weight: 300;
    color: var(--muted);
}

.fund-payout-factor-result {
    background: rgba(195, 21, 43, 0.1);
    border: 1px solid rgba(195, 21, 43, 0.2);
}

.fund-payout-factor-result .fund-payout-factor-value {
    color: var(--accent-bright);
}

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

    .fund-about-card-featured {
        flex-direction: column;
        gap: 20px;
    }

    .fund-about-card-featured .fund-about-card-icon {
        margin-bottom: 0;
    }

    .fund-payout-factors {
        flex-direction: column;
        gap: 12px;
    }

    .fund-payout-factor-divider {
        transform: rotate(90deg);
    }
}

@media (max-width: 600px) {
    .fund-about-card {
        padding: 24px;
    }

    .fund-about-card-content h3 {
        font-size: 18px;
    }

    .fund-about-card-icon {
        width: 48px;
        height: 48px;
    }

    .fund-about-card-icon svg {
        width: 24px;
        height: 24px;
    }
}

.fund-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    margin: 48px 0;
}

.fund-stat-card {
    flex: 1;
    max-width: 280px;
    padding: 32px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 16px;
}

.fund-stat-label {
    font-size: 14px;
    font-weight: 500;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.fund-stat-value {
    font-size: 24px;
    font-weight: 600;
    color: var(--text);
    margin-top: 8px;
}

.fund-stat-divider {
    width: 1px;
    height: 80px;
    background: var(--border);
}

.fund-status-note {
    font-size: 14px;
    color: var(--muted);
    font-style: italic;
    margin-top: 32px;
}


@media (max-width: 960px) {
    .flowchart-container {
        padding: 20px;
    }

    .funding-breakdown {
        flex-direction: column;
        gap: 16px;
    }

    .funding-divider {
        transform: rotate(90deg);
    }

    .benefits-grid-3 {
        grid-template-columns: 1fr;
    }

    .fund-stats {
        flex-direction: column;
        gap: 24px;
    }

    .fund-stat-divider {
        width: 80px;
        height: 1px;
    }
}





.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.stat-card {
    text-align: center;
    padding: 40px 24px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: 16px;
}

.stat-number {
    font-size: 56px;
    font-weight: 700;
    color: var(--accent-bright);
    line-height: 1;
    margin-bottom: 12px;
}

.stat-label {
    font-size: 16px;
    color: var(--muted);
    line-height: 1.5;
}


.course-track {
    margin-bottom: 64px;
}

.course-track:last-child {
    margin-bottom: 0;
}

.course-track-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
}

.course-track-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(195, 21, 43, 0.1);
    border: 1px solid rgba(195, 21, 43, 0.2);
    border-radius: 12px;
    flex-shrink: 0;
}

.course-track-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--accent-bright);
}

.course-track-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 4px;
}

.course-track-subtitle {
    font-size: 15px;
    color: var(--muted);
}


.course-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.course-card {
    position: relative;
    padding: 28px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.course-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(195, 21, 43, 0.3);
    transform: translateY(-2px);
}

.course-card-management {
    border-color: rgba(195, 21, 43, 0.15);
    background: linear-gradient(135deg, rgba(195, 21, 43, 0.03) 0%, transparent 100%);
}

.course-card-duration {
    display: inline-block;
    padding: 4px 10px;
    background: rgba(195, 21, 43, 0.12);
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    color: var(--accent-bright);
    margin-bottom: 16px;
}

.course-card h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 12px;
}

.course-card p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 16px;
}

.course-card-topics {
    list-style: none;
    padding: 0;
    margin: 0;
}

.course-card-topics li {
    position: relative;
    padding-left: 16px;
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 6px;
}

.course-card-topics li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 4px;
    height: 4px;
    background: var(--accent);
    border-radius: 50%;
}


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

.delivery-format-card {
    position: relative;
    padding: 32px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.delivery-format-card:hover {
    background: rgba(255, 255, 255, 0.04);
}

.delivery-format-card-featured {
    border-color: rgba(195, 21, 43, 0.3);
    background: linear-gradient(135deg, rgba(195, 21, 43, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
}

.delivery-format-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    padding: 4px 12px;
    background: var(--accent);
    color: white;
    font-size: 12px;
    font-weight: 600;
    border-radius: 4px;
}

.delivery-format-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(195, 21, 43, 0.1);
    border: 1px solid rgba(195, 21, 43, 0.2);
    border-radius: 10px;
    margin-bottom: 20px;
}

.delivery-format-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--accent-bright);
}

.delivery-format-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 12px;
}

.delivery-format-desc {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 24px;
}

.delivery-format-pricing {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    margin-bottom: 16px;
}

.delivery-format-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-label {
    font-size: 14px;
    color: var(--muted);
}

.price-value {
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
}

.delivery-format-note {
    font-size: 13px;
    color: var(--muted);
    font-style: italic;
}


.phishing-pricing-card {
    padding: 32px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: 16px;
}

.phishing-pricing-card h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 24px;
}

.phishing-pricing-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

.phishing-pricing-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
}

.phishing-pricing-item-featured {
    background: rgba(195, 21, 43, 0.1);
    border: 1px solid rgba(195, 21, 43, 0.2);
}

.phishing-pricing-label {
    font-size: 14px;
    color: var(--text);
}

.phishing-pricing-price {
    font-size: 16px;
    font-weight: 600;
    color: var(--accent-bright);
}

.btn-full {
    width: 100%;
    text-align: center;
}


@media (max-width: 960px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .stat-card {
        padding: 32px 20px;
    }

    .stat-number {
        font-size: 42px;
    }

    .delivery-formats-grid {
        grid-template-columns: 1fr;
    }

    .course-cards-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .course-track-header {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .course-track-title {
        font-size: 20px;
    }

    .delivery-format-card {
        padding: 24px;
    }

    .phishing-pricing-item {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}


.section-404 {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(ellipse at top left, rgba(195, 21, 43, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse at bottom right, rgba(195, 21, 43, 0.08) 0%, transparent 50%),
        linear-gradient(180deg, var(--bg) 0%, #0a0d14 100%);
    position: relative;
    overflow: hidden;
    padding: 120px 24px 80px;
}

.section-404::before {
    content: "";
    position: absolute;
    top: 10%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(195, 21, 43, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: orbFloatLeft 20s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

.section-404::after {
    content: "";
    position: absolute;
    bottom: 10%;
    right: -10%;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(195, 21, 43, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    animation: orbFloatRight 18s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

.error-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.error-code {
    position: relative;
    margin-bottom: 40px;
}

.error-number {
    font-size: clamp(120px, 20vw, 200px);
    font-weight: 900;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-bright) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    display: block;
    position: relative;
    z-index: 2;
}

.error-glitch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    font-size: clamp(120px, 20vw, 200px);
    font-weight: 900;
    color: rgba(195, 21, 43, 0.3);
    z-index: 1;
    animation: glitch 3s ease-in-out infinite;
}

@keyframes glitch {
    0%, 100% {
        transform: translateX(-50%) translate(0, 0);
        opacity: 0.5;
    }
    10% {
        transform: translateX(-50%) translate(-5px, 2px);
        opacity: 0.8;
    }
    20% {
        transform: translateX(-50%) translate(3px, -3px);
        opacity: 0.6;
    }
    30% {
        transform: translateX(-50%) translate(0, 0);
        opacity: 0.5;
    }
}

.error-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.error-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    color: var(--text);
    line-height: 1.2;
}

.error-description {
    font-size: 18px;
    color: var(--muted);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
}

.error-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 16px;
}

.error-links {
    margin-top: 48px;
    padding-top: 48px;
    border-top: 1px solid var(--border);
}

.error-links-label {
    font-size: 14px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
}

.error-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
    max-width: 600px;
    margin: 0 auto;
}

.error-link {
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text);
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
}

.error-link:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(195, 21, 43, 0.4);
    color: var(--accent-bright);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .section-404 {
        padding: 100px 20px 60px;
    }

    .error-code {
        margin-bottom: 32px;
    }

    .error-actions {
        flex-direction: column;
    }

    .error-actions .btn {
        width: 100%;
    }

    .error-links-grid {
        grid-template-columns: 1fr;
    }

    .error-links {
        margin-top: 40px;
        padding-top: 40px;
    }
}



.section-safe-harbor-intro {
    background:
        radial-gradient(ellipse at top left, rgba(195, 21, 43, 0.08) 0%, transparent 50%),
        linear-gradient(180deg, var(--bg) 0%, #0a0d14 100%);
    position: relative;
    overflow: hidden;
}

.section-safe-harbor-intro::before {
    content: "";
    position: absolute;
    top: 15%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(195, 21, 43, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    animation: orbFloatLeft 20s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

.section-safe-harbor-guidelines {
    background:
        radial-gradient(ellipse at bottom right, rgba(195, 21, 43, 0.06) 0%, transparent 50%),
        linear-gradient(180deg, #0a0d14 0%, var(--bg) 100%);
    position: relative;
    overflow: hidden;
}

.section-safe-harbor-guidelines::after {
    content: "";
    position: absolute;
    bottom: 10%;
    right: -10%;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(195, 21, 43, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: orbFloatRight 18s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

.section-safe-harbor-legal {
    background:
        radial-gradient(ellipse at top right, rgba(195, 21, 43, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at bottom left, rgba(195, 21, 43, 0.05) 0%, transparent 40%),
        linear-gradient(180deg, var(--bg) 0%, #0a0d14 100%);
    position: relative;
    overflow: hidden;
}

.section-safe-harbor-legal::before {
    content: "";
    position: absolute;
    top: 20%;
    right: -8%;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(195, 21, 43, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: orbFloatRight 22s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

.section-safe-harbor-legal::after {
    content: "";
    position: absolute;
    bottom: 15%;
    left: -5%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(195, 21, 43, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: orbFloatLeft 19s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}



.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-category {
    margin-bottom: 48px;
}

.faq-category-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-bright);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: 12px;
    margin-bottom: 12px;
    background: rgba(15, 18, 25, 0.5);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(195, 21, 43, 0.3);
}

.faq-item[open] {
    border-color: rgba(195, 21, 43, 0.4);
    background: rgba(15, 18, 25, 0.8);
}

.faq-question {
    padding: 20px 24px;
    font-size: 16px;
    font-weight: 500;
    color: var(--text);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    list-style: none;
    transition: all 0.3s ease;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question::after {
    content: "";
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--accent-bright);
    border-bottom: 2px solid var(--accent-bright);
    transform: rotate(45deg);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item[open] .faq-question::after {
    transform: rotate(-135deg);
}

.faq-question:hover {
    color: var(--accent-bright);
}

.faq-answer {
    padding: 0 24px 20px;
    color: var(--muted);
    line-height: 1.7;
    font-size: 15px;
}

.faq-answer p {
    margin-bottom: 12px;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer a {
    color: var(--accent-bright);
    text-decoration: none;
}

.faq-answer a:hover {
    text-decoration: underline;
}

.faq-answer ul {
    margin: 12px 0;
    padding-left: 20px;
}

.faq-answer li {
    margin-bottom: 8px;
}

.faq-answer code {
    background: rgba(195, 21, 43, 0.15);
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 14px;
    color: var(--accent-bright);
}



.section-privacy-intro {
    background:
        radial-gradient(ellipse at top left, rgba(195, 21, 43, 0.08) 0%, transparent 50%),
        linear-gradient(180deg, var(--bg) 0%, #0a0d14 100%);
    position: relative;
    overflow: hidden;
}

.section-privacy-intro::before {
    content: "";
    position: absolute;
    top: 10%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(195, 21, 43, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    animation: orbFloatLeft 20s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

.section-privacy-intro::after {
    content: "";
    position: absolute;
    bottom: 15%;
    right: -8%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(195, 21, 43, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: orbFloatRight 18s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

.section-privacy-rights {
    position: relative;
    overflow: hidden;
}

.section-privacy-rights::before {
    content: "";
    position: absolute;
    top: 20%;
    right: -5%;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(195, 21, 43, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: orbFloatRight 22s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

.section-privacy-rights::after {
    content: "";
    position: absolute;
    bottom: 10%;
    left: -8%;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(195, 21, 43, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: orbFloatLeft 19s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

.section-privacy-security {
    position: relative;
    overflow: hidden;
}

.section-privacy-security::before {
    content: "";
    position: absolute;
    top: 15%;
    left: -6%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(195, 21, 43, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: orbFloatLeft 21s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

.section-privacy-sharing {
    position: relative;
    overflow: hidden;
}

.section-privacy-sharing::before {
    content: "";
    position: absolute;
    bottom: 20%;
    right: -8%;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(195, 21, 43, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: orbFloatRight 19s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}


.sidebar-card-laser {
    position: relative;
    border: none;
    border-radius: 12px;
}

.sidebar-card-laser::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 12px;
    padding: 1px;
    background: conic-gradient(
        from var(--border-angle),
        transparent 0deg,
        transparent 340deg,
        rgba(255, 45, 69, 0.5) 350deg,
        rgba(255, 107, 122, 0.6) 355deg,
        rgba(255, 45, 69, 0.5) 360deg
    );
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: rotateBorder 6s linear infinite;
    pointer-events: none;
}



.section-terms-intro {
    background: radial-gradient(ellipse at top left, rgba(195, 21, 43, 0.08) 0%, transparent 50%),
                radial-gradient(ellipse at bottom right, rgba(195, 21, 43, 0.05) 0%, transparent 50%),
                var(--bg-alt);
    position: relative;
    overflow: hidden;
}

.section-terms-intro::before {
    content: "";
    position: absolute;
    top: 20%;
    right: -15%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(195, 21, 43, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: orbFloatRight 22s ease-in-out infinite;
    pointer-events: none;
}

.section-terms-platform {
    background: var(--bg);
    position: relative;
    overflow: hidden;
}

.section-terms-platform::after {
    content: "";
    position: absolute;
    bottom: 10%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(195, 21, 43, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: orbFloatLeft 18s ease-in-out infinite;
    pointer-events: none;
}

.section-terms-bounty {
    background: radial-gradient(ellipse at center, rgba(195, 21, 43, 0.06) 0%, transparent 60%),
                var(--bg-alt);
    position: relative;
    overflow: hidden;
}

.section-terms-bounty::before {
    content: "";
    position: absolute;
    top: 30%;
    left: -10%;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(195, 21, 43, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: orbFloatLeft 20s ease-in-out infinite;
    pointer-events: none;
}

.section-terms-payments {
    background: var(--bg);
    position: relative;
    overflow: hidden;
}

.section-terms-payments::after {
    content: "";
    position: absolute;
    top: 20%;
    right: -12%;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(195, 21, 43, 0.09) 0%, transparent 70%);
    border-radius: 50%;
    animation: orbFloatRight 19s ease-in-out infinite;
    pointer-events: none;
}

.section-terms-liability {
    background: radial-gradient(ellipse at top right, rgba(195, 21, 43, 0.07) 0%, transparent 50%),
                var(--bg-alt);
    position: relative;
    overflow: hidden;
}

.section-terms-termination {
    background: var(--bg);
    position: relative;
    overflow: hidden;
}

.section-terms-termination::before {
    content: "";
    position: absolute;
    bottom: 15%;
    right: -8%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(195, 21, 43, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: orbFloatRight 17s ease-in-out infinite;
    pointer-events: none;
}

.section-terms-legal {
    background: radial-gradient(ellipse at bottom left, rgba(195, 21, 43, 0.08) 0%, transparent 50%),
                var(--bg-alt);
    position: relative;
    overflow: hidden;
}

.section-terms-legal::after {
    content: "";
    position: absolute;
    top: 10%;
    left: -10%;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(195, 21, 43, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: orbFloatLeft 21s ease-in-out infinite;
    pointer-events: none;
}


.hero-meta {
    font-size: 14px;
    color: var(--muted);
    margin-top: 1rem;
}



.section-about-mission {
    background: radial-gradient(ellipse at top left, rgba(195, 21, 43, 0.08) 0%, transparent 50%),
                var(--bg-alt);
    position: relative;
    overflow: hidden;
}

.section-about-mission::before {
    content: "";
    position: absolute;
    top: 20%;
    right: -10%;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(195, 21, 43, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: orbFloatRight 20s ease-in-out infinite;
    pointer-events: none;
}

.section-about-why {
    background: var(--bg);
    position: relative;
    overflow: hidden;
}

.section-about-why::after {
    content: "";
    position: absolute;
    bottom: 15%;
    left: -8%;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(195, 21, 43, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: orbFloatLeft 18s ease-in-out infinite;
    pointer-events: none;
}

.section-about-fund {
    background: radial-gradient(ellipse at center, rgba(195, 21, 43, 0.06) 0%, transparent 60%),
                var(--bg-alt);
    position: relative;
    overflow: hidden;
}

.section-about-fund::before {
    content: "";
    position: absolute;
    top: 30%;
    left: -12%;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(195, 21, 43, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: orbFloatLeft 22s ease-in-out infinite;
    pointer-events: none;
}

.section-about-company {
    background: var(--bg);
    position: relative;
    overflow: hidden;
}

.section-about-company::after {
    content: "";
    position: absolute;
    top: 20%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(195, 21, 43, 0.09) 0%, transparent 70%);
    border-radius: 50%;
    animation: orbFloatRight 19s ease-in-out infinite;
    pointer-events: none;
}

.section-about-cta {
    background: radial-gradient(ellipse at bottom, rgba(195, 21, 43, 0.1) 0%, transparent 50%),
                var(--bg-alt);
    position: relative;
    overflow: hidden;
}



.mobile-bottom-nav {
    display: none;
}


.more-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.more-menu-overlay.active {
    opacity: 1;
    pointer-events: auto;
}


.more-menu-panel {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-height: calc(70vh + 70px + env(safe-area-inset-bottom));
    overflow-y: auto;
    background: var(--bg-alt);
    border-radius: 20px 20px 0 0;
    border: 1px solid var(--border);
    border-bottom: none;
    z-index: 999;
    transform: translateY(100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s cubic-bezier(0.32, 0.72, 0, 1), opacity 0.2s ease;
    padding: 0 0 calc(120px + env(safe-area-inset-bottom)) 0;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.5);
}

.more-menu-panel.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}


.more-menu-panel::before {
    content: "";
    display: block;
    width: 40px;
    height: 4px;
    background: var(--border);
    border-radius: 2px;
    margin: 12px auto 8px;
}

.more-menu-header {
    display: none;
}

.more-menu-title {
    display: none;
}

.more-menu-close {
    display: none;
}

.more-menu-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4px 8px;
    padding: 8px 16px 16px;
}

.more-menu-link {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    text-decoration: none;
    color: var(--muted);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.02);
    transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease;
}

.more-menu-link:hover,
.more-menu-link:active {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text);
    transform: scale(0.98);
}

.more-menu-link svg {
    width: 20px;
    height: 20px;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
    color: var(--accent);
}

.more-menu-link span {
    font-size: 13px;
    font-weight: 500;
    text-align: left;
}


.more-menu-section-header {
    grid-column: 1 / -1;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent);
    padding: 16px 4px 8px 4px;
    margin-top: 8px;
    border-bottom: 1px solid var(--border);
}

.more-menu-section-header:first-child {
    margin-top: 0;
    padding-top: 8px;
}



@media (max-width: 768px) {
    
    .nav-toggle {
        display: none !important;
    }

    .nav {
        display: none !important;
    }

    
    .header-inner {
        justify-content: center;
    }

    .more-menu-overlay,
    .more-menu-panel {
        display: block;
    }

    .mobile-bottom-nav {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        background: transparent;
        border-top: none;
        padding: 8px 0 calc(8px + env(safe-area-inset-bottom));
        align-items: flex-end;
    }

    .mobile-bottom-nav .bottom-nav-item {
        justify-self: center;
    }

    
    .mobile-bottom-nav::before {
        content: "";
        position: absolute;
        top: -35px;
        left: 0;
        right: 0;
        bottom: 0;
        background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 750 135' preserveAspectRatio='none'%3E%3Cpath d='M0,35 L240,35 C290,35 320,8 375,8 C430,8 460,35 510,35 L750,35 L750,135 L0,135 Z' fill='%2305070B'/%3E%3Cpath d='M0,35 L240,35 C290,35 320,8 375,8 C430,8 460,35 510,35 L750,35' stroke='%23272a35' stroke-width='1' fill='none'/%3E%3C/svg%3E") center top / 100% 100% no-repeat;
        z-index: -1;
        filter: drop-shadow(0 -8px 12px rgba(0, 0, 0, 0.7));
    }

    .mobile-bottom-nav::after {
        display: none;
    }

    .bottom-nav-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        color: var(--muted);
        padding: 8px 8px;
        gap: 4px;
        transition: color 0.2s ease;
        position: relative;
        z-index: 1;
        
        background: none;
        border: none;
        cursor: pointer;
        font-family: inherit;
    }

    .bottom-nav-item:hover,
    .bottom-nav-item.active {
        color: var(--text);
    }

    .bottom-nav-item.active .bottom-nav-icon {
        stroke: var(--accent);
    }

    .bottom-nav-item.active .bottom-nav-label {
        color: var(--accent);
    }

    .bottom-nav-icon {
        width: 22px;
        height: 22px;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

    .bottom-nav-label {
        font-size: 10px;
        font-weight: 500;
        letter-spacing: 0.02em;
    }

    
    .bottom-nav-item-center {
        position: relative;
        margin-top: -28px;
        z-index: 2;
    }

    .bottom-nav-center-circle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 53px;
        height: 53px;
        background: transparent;
        border: 2px solid rgba(195, 21, 43, 0.5);
        border-radius: 50%;
        box-shadow:
            inset 0 0 8px 2px rgba(195, 21, 43, 0.5),
            inset 0 0 12px 4px rgba(195, 21, 43, 0.2),
            0 0 15px rgba(195, 21, 43, 0.2);
        animation: centerPulse 2.5s ease-in-out infinite;
    }

    @keyframes centerPulse {
        0%, 100% {
            box-shadow:
                inset 0 0 8px 2px rgba(195, 21, 43, 0.5),
                inset 0 0 12px 4px rgba(195, 21, 43, 0.2),
                0 0 15px rgba(195, 21, 43, 0.2);
            border-color: rgba(195, 21, 43, 0.5);
        }
        50% {
            box-shadow:
                inset 0 0 12px 4px rgba(195, 21, 43, 0.7),
                inset 0 0 18px 6px rgba(195, 21, 43, 0.4),
                0 0 25px rgba(195, 21, 43, 0.5),
                0 0 40px rgba(195, 21, 43, 0.2);
            border-color: rgba(195, 21, 43, 0.8);
        }
    }

    .bottom-nav-item-center:hover .bottom-nav-center-circle,
    .bottom-nav-item-center.active .bottom-nav-center-circle {
        transform: scale(1.05);
        box-shadow: 0 6px 25px rgba(195, 21, 43, 0.5);
    }

    .bottom-nav-item-center .bottom-nav-icon {
        width: 24px;
        height: 24px;
        stroke: white;
    }

    .bottom-nav-item-center .bottom-nav-label {
        color: var(--accent);
        margin-top: 6px;
    }

    
    .bottom-nav-more {
        position: relative;
    }

    .bottom-nav-more.active .bottom-nav-icon {
        stroke: var(--accent);
    }

    .bottom-nav-more.active .bottom-nav-label {
        color: var(--accent);
    }

    
    body {
        padding-bottom: 80px;
    }

    
    .site-footer {
        display: none;
    }
}
