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

html {
    scroll-behavior: smooth
}

body {
    background: var(--navy);
    color: var(--slate-l);
    font-family: var(--fb);
    font-size: 16px;
    line-height: 1.7;
    overflow-x: hidden
}

::selection {
    background: var(--green);
    color: var(--navy)
}

::-webkit-scrollbar {
    width: 6px
}

::-webkit-scrollbar-track {
    background: var(--navy)
}

::-webkit-scrollbar-thumb {
    background: #233554;
    border-radius: 3px
}

::-webkit-scrollbar-thumb:hover {
    background: var(--green)
}

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

ul {
    list-style: none
}

img {
    max-width: 100%;
    display: block
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
    opacity: 0.5
}

.grid-bg {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(0, 245, 160, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 245, 160, 0.025) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%)
}

#canvas-bg {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none
}

.container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px
}

.section {
    position: relative;
    z-index: 1;
    padding: 80px 0
}

.eyebrow {
    font-family: var(--fm);
    font-size: 0.72rem;
    color: var(--green);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px
}

.eyebrow::before {
    content: '';
    width: 30px;
    height: 1px;
    background: var(--green);
    flex-shrink: 0
}

.stitle {
    font-family: var(--fd);
    font-size: clamp(1.8rem, 5vw, 3rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 40px
}

.divider {
    width: 100%;
    max-width: 900px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 245, 160, 0.1), transparent);
    position: relative;
    z-index: 1;
    margin: 0 auto
}

.btn-primary {
    background: var(--green);
    color: var(--navy);
    font-family: var(--fm);
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    padding: 14px 28px;
    border-radius: var(--r);
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all var(--tr);
    text-transform: uppercase
}

.btn-primary:hover {
    background: #00e090;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 245, 160, 0.3)
}

.btn-outline {
    background: transparent;
    color: var(--green);
    font-family: var(--fm);
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    padding: 14px 28px;
    border-radius: var(--r);
    border: 1.5px solid var(--green);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all var(--tr);
    text-transform: uppercase
}

.btn-outline:hover {
    background: var(--green-dim);
    transform: translateY(-2px)
}

footer {
    position: relative;
    z-index: 1;
    padding: 28px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center
}

.foot-txt {
    font-family: var(--fm);
    font-size: 0.7rem;
    color: var(--slate);
    letter-spacing: 0.05em
}

.foot-txt span {
    color: var(--green)
}

@media(min-width:768px) {
    .section {
        padding: 100px 0
    }
}

@media(min-width:1024px) {
    .section {
        padding: 120px 0
    }
}