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

html {
    scroll-behavior: smooth
}

body {
    font-family: 'Inter', sans-serif;
    background: #000;
    color: #fff;
    overflow-x: hidden;
    transition: opacity .5s ease;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-user-drag: none
}

body.loading {
    opacity: 0
}

body::after {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9999;
    opacity: .025;
    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.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E")
}

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

::-webkit-scrollbar-track {
    background: #000
}

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

::-webkit-scrollbar-thumb:hover {
    background: #555
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
    position: relative;
    z-index: 10
}

@media(min-width:640px) {
    .container {
        padding: 0 24px
    }
}

@media(min-width:1024px) {
    .container {
        padding: 0 32px
    }
}

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, #3B82F6, #a855f7);
    z-index: 10000;
    width: 0%;
    transition: width .1s
}

.custom-cursor {
    width: 8px;
    height: 8px;
    background: #3B82F6;
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 10002;
    transform: translate(-50%, -50%);
    transition: transform .1s, opacity .3s;
    box-shadow: 0 0 10px #3B82F6;
    opacity: 0
}

.custom-cursor-follower {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(59, 130, 246, .5);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 10001;
    transform: translate(-50%, -50%);
    transition: width .3s, height .3s, background .3s, border .3s, opacity .3s;
    opacity: 0
}

body.has-custom-cursor,
body.has-custom-cursor * {
    cursor: none !important
}

.hovering .custom-cursor {
    transform: translate(-50%, -50%) scale(0);
    opacity: 0
}

.hovering .custom-cursor-follower {
    width: 60px;
    height: 60px;
    background: rgba(59, 130, 246, .15);
    border-color: rgba(59, 130, 246, 1);
    backdrop-filter: blur(4px)
}

@media(pointer:coarse) {

    .custom-cursor,
    .custom-cursor-follower {
        display: none !important
    }
}

.ambient-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(120px);
    opacity: .15;
    pointer-events: none;
    z-index: 0
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #3B82F6, transparent);
    top: -200px;
    left: -200px;
    animation: orbFloat1 20s ease-in-out infinite
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #8b5cf6, transparent);
    bottom: -200px;
    right: -200px;
    animation: orbFloat2 25s ease-in-out infinite
}

.orb-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #06b6d4, transparent);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: orbFloat3 18s ease-in-out infinite
}

@keyframes orbFloat1 {

    0%,
    100% {
        transform: translate(0, 0)
    }

    50% {
        transform: translate(100px, 80px)
    }
}

@keyframes orbFloat2 {

    0%,
    100% {
        transform: translate(0, 0)
    }

    50% {
        transform: translate(-80px, -60px)
    }
}

@keyframes orbFloat3 {

    0%,
    100% {
        transform: translate(-50%, -50%)
    }

    50% {
        transform: translate(-40%, -60%)
    }
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity .8s cubic-bezier(.16, 1, .3, 1), transform .8s cubic-bezier(.16, 1, .3, 1);
    transition-delay: var(--delay, 0s)
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0)
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    transition: all .4s cubic-bezier(.16, 1, .3, 1);
    background: transparent
}

.navbar.scrolled {
    background: rgba(0, 0, 0, .85);
    backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, .06);
    box-shadow: 0 4px 30px rgba(0, 0, 0, .5)
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 56px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px
}

@media(min-width:640px) {
    .nav-container {
        padding: 0 24px
    }
}

.nav-logo {
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: transform .2s;
    transform-origin: left center
}

.nav-logo:hover {
    transform: scale(1.05)
}

.nav-logo-img {
    height: 38px;
    width: auto;
    object-fit: contain;
    display: block;
    transform-origin: left center;
}

.logo-icon {
    width: 28px;
    height: 28px;
    background: #fff;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 12px rgba(255, 255, 255, .2)
}

.logo-text {
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: -.3px
}

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

#language-select {
    background: rgba(255, 255, 255, .08);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .15);
    padding: 6px 12px;
    border-radius: 8px;
    cursor: pointer;
    outline: none;
    font-size: 13px;
    transition: all .2s
}

#language-select:hover {
    border-color: rgba(255, 255, 255, .3);
    background: rgba(255, 255, 255, .12)
}

#language-select option {
    background: #111
}

.nav-icon-btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, .15);
    transition: all .3s
}

.nav-icon-btn:hover {
    border-color: #5865F2;
    background: rgba(88, 101, 242, .15);
    box-shadow: 0 0 20px rgba(88, 101, 242, .2)
}

.nav-cta-btn {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, .25);
    text-decoration: none;
    transition: all .3s;
    position: relative;
    overflow: hidden
}

.nav-cta-btn:hover {
    background: rgba(255, 255, 255, .1);
    border-color: rgba(255, 255, 255, .4);
    box-shadow: 0 0 20px rgba(255, 255, 255, .1)
}

.hero-section {
    position: relative;
    min-height: 100vh;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden
}

#hero-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: .6
}

.hero-gradient-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, .3), transparent 40%, transparent 60%, rgba(0, 0, 0, .8))
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 80px 16px 0;
    max-width: 900px;
    margin: 0 auto
}

.hero-title {
    font-size: clamp(40px, 7vw, 80px);
    font-weight: 900;
    color: #fff;
    line-height: 1.05;
    margin-bottom: 4px;
    text-shadow: 0 4px 40px rgba(0, 0, 0, .5)
}

.hero-subtitle {
    font-size: clamp(40px, 7vw, 80px);
    font-weight: 900;
    font-style: italic;
    line-height: 1.05;
    margin-bottom: 32px;
    background: linear-gradient(135deg, #60A5FA, #3B82F6, #818CF8, #93C5FD);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 4s ease infinite
}

@keyframes gradientShift {

    0%,
    100% {
        background-position: 0% 50%
    }

    50% {
        background-position: 100% 50%
    }
}

.hero-desc {
    color: rgba(255, 255, 255, .55);
    font-size: clamp(16px, 2vw, 20px);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.7
}

.hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-bottom: 48px
}

.btn-outline-white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, .25);
    text-decoration: none;
    transition: all .3s;
    font-size: 16px;
    position: relative;
    overflow: hidden
}

.btn-outline-white::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, .1), rgba(139, 92, 246, .1));
    opacity: 0;
    transition: opacity .3s
}

.btn-outline-white:hover {
    border-color: rgba(255, 255, 255, .5);
    box-shadow: 0 0 30px rgba(59, 130, 246, .2)
}

.btn-outline-white:hover::before {
    opacity: 1
}

.scroll-indicator {
    display: flex;
    justify-content: center;
    animation: scrollBounce 2s ease-in-out infinite
}

.scroll-mouse {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, .3);
    border-radius: 12px;
    position: relative
}

.scroll-dot {
    width: 4px;
    height: 8px;
    background: rgba(255, 255, 255, .5);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollDot 2s ease-in-out infinite
}

@keyframes scrollBounce {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(8px)
    }
}

@keyframes scrollDot {
    0% {
        opacity: 1;
        top: 8px
    }

    100% {
        opacity: 0;
        top: 24px
    }
}

.hero-bottom-fade {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 160px;
    background: linear-gradient(to top, #000, transparent)
}

.features-section {
    background: #000;
    padding: 96px 0;
    position: relative;
    z-index: 1
}

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

.big-title {
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 900;
    color: #fff;
    margin-bottom: 8px
}

.big-title.dark {
    color: #000
}

.big-subtitle {
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 300;
    font-style: italic;
    color: rgba(255, 255, 255, .35);
    margin-bottom: 24px
}

.big-subtitle.dark {
    color: rgba(0, 0, 0, .5)
}

.section-desc {
    color: rgba(255, 255, 255, .45);
    font-size: 18px;
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.7
}

.section-desc.dark {
    color: rgba(0, 0, 0, .65)
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px
}

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

.feature-card {
    background: #0a0a0a;
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: 20px;
    padding: 28px;
    transition: all .4s cubic-bezier(.16, 1, .3, 1);
    position: relative;
    overflow: hidden
}

.feature-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 20px;
    padding: 1px;
    background: linear-gradient(135deg, transparent, rgba(59, 130, 246, .3), transparent, rgba(139, 92, 246, .3), transparent);
    background-size: 300% 300%;
    -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;
    opacity: 0;
    transition: opacity .4s;
    animation: borderShimmer 3s linear infinite paused
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, .5), 0 0 40px rgba(59, 130, 246, .08)
}

.feature-card:hover::before {
    opacity: 1;
    animation-play-state: running
}

@keyframes borderShimmer {
    0% {
        background-position: 0% 0%
    }

    100% {
        background-position: 300% 300%
    }
}

.feature-card h4 {
    color: #fff;
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 8px
}

.feature-card p {
    color: rgba(255, 255, 255, .45);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 16px
}

.card-mockup {
    background: linear-gradient(145deg, #111, #0d0d0d);
    border-radius: 12px;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, .08)
}

.analytics-mockup .analytics-label {
    color: rgba(255, 255, 255, .4);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px
}

.analytics-mockup .analytics-value {
    color: #22c55e;
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 12px;
    text-shadow: 0 0 20px rgba(34, 197, 94, .3)
}

.analytics-bars {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    height: 64px
}

.analytics-bars span {
    flex: 1;
    background: linear-gradient(to top, rgba(34, 197, 94, .2), rgba(34, 197, 94, .5));
    border-radius: 3px;
    min-width: 0;
    transition: height .6s cubic-bezier(.16, 1, .3, 1)
}

.feature-card:hover .analytics-bars span {
    animation: barPulse 1.5s ease-in-out infinite
}

@keyframes barPulse {

    0%,
    100% {
        opacity: .7
    }

    50% {
        opacity: 1
    }
}

.notif-mockup {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.notif-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(26, 26, 26, .8);
    border-radius: 10px;
    padding: 12px;
    transition: transform .3s, box-shadow .3s
}

.feature-card:hover .notif-item:first-child {
    transform: translateX(4px)
}

.feature-card:hover .notif-item:last-child {
    transform: translateX(4px);
    transition-delay: .1s
}

.notif-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0
}

.notif-icon.blue {
    background: linear-gradient(135deg, #3B82F6, #2563EB)
}

.notif-icon.green {
    background: linear-gradient(135deg, #22c55e, #16a34a)
}

.notif-title {
    color: #fff;
    font-size: 12px;
    font-weight: 600
}

.notif-sub {
    color: rgba(255, 255, 255, .5);
    font-size: 12px
}

.role-mockup,
.product-mockup {
    background: rgba(26, 26, 26, .8);
    border-radius: 10px;
    padding: 12px
}

.role-tabs {
    display: flex;
    gap: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    padding-bottom: 8px;
    margin-bottom: 12px
}

.role-tabs span {
    font-size: 12px;
    color: rgba(255, 255, 255, .4);
    cursor: pointer;
    transition: color .2s
}

.role-tabs span.active {
    color: #fff;
    border-bottom: 2px solid #3B82F6;
    padding-bottom: 4px
}

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

.role-avatar {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #555, #333);
    border-radius: 50%
}

.role-badge {
    background: linear-gradient(135deg, #F97316, #EA580C);
    color: #fff;
    font-size: 11px;
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 700
}

.role-name {
    color: #fff;
    font-size: 12px
}

.role-field {
    margin-bottom: 8px
}

.role-label {
    color: rgba(255, 255, 255, .4);
    font-size: 11px;
    margin-bottom: 4px
}

.role-input {
    background: rgba(17, 17, 17, .8);
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 6px;
    padding: 6px 10px;
    color: #fff;
    font-size: 12px;
    transition: border-color .2s
}

.feature-card:hover .role-input {
    border-color: rgba(59, 130, 246, .3)
}

.role-colors {
    display: flex;
    gap: 6px
}

.role-colors span {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: block;
    transition: transform .2s;
    cursor: pointer
}

.role-colors span:hover {
    transform: scale(1.3)
}

.product-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px
}

.product-label {
    color: #fff;
    font-size: 12px;
    font-weight: 600
}

.product-remove {
    color: #ef4444;
    font-size: 11px;
    border: 1px solid rgba(239, 68, 68, .3);
    padding: 2px 8px;
    border-radius: 4px;
    transition: all .2s
}

.product-remove:hover {
    background: rgba(239, 68, 68, .1)
}

.product-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 12px
}

.product-tabs span {
    font-size: 11px;
    color: rgba(255, 255, 255, .4)
}

.tag-row {
    display: flex;
    gap: 4px
}

.tag {
    font-size: 11px;
    padding: 3px 10px;
    border-radius: 6px;
    transition: transform .2s
}

.tag:hover {
    transform: scale(1.05)
}

.tag.blue {
    background: rgba(59, 130, 246, .15);
    color: #60a5fa;
    border: 1px solid rgba(59, 130, 246, .2)
}

.tag.dim {
    background: rgba(255, 255, 255, .06);
    color: rgba(255, 255, 255, .6);
    border: 1px solid rgba(255, 255, 255, .08)
}

.rev-row {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    padding: 6px 0
}

.rev-label {
    color: rgba(255, 255, 255, .5)
}

.rev-val {
    color: #fff;
    font-weight: 600
}

.rev-row.total {
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding-top: 8px;
    margin-top: 4px;
    font-weight: 700
}

.rev-btn {
    background: linear-gradient(135deg, #3B82F6, #2563EB);
    color: #fff;
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    padding: 10px;
    border-radius: 8px;
    margin-top: 12px;
    cursor: pointer;
    transition: all .3s;
    box-shadow: 0 4px 15px rgba(59, 130, 246, .3)
}

.rev-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(59, 130, 246, .4)
}

.rev-confirm {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin-top: 8px;
    font-size: 12px
}

.rev-check {
    width: 16px;
    height: 16px;
    background: #22c55e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 10px;
    box-shadow: 0 0 8px rgba(34, 197, 94, .4);
    animation: statusPulse 2s ease-in-out infinite
}

@keyframes statusPulse {

    0%,
    100% {
        box-shadow: 0 0 8px rgba(34, 197, 94, .3)
    }

    50% {
        box-shadow: 0 0 20px rgba(34, 197, 94, .6)
    }
}

.announce-mockup {
    border-radius: 12px;
    overflow: hidden
}

.announce-banner {
    background: linear-gradient(135deg, #f97316, #ec4899, #8b5cf6);
    padding: 20px;
    border-radius: 12px;
    transition: transform .3s
}

.feature-card:hover .announce-banner {
    transform: scale(1.02)
}

.announce-tag {
    color: rgba(255, 255, 255, .8);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px
}

.announce-title {
    color: #fff;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 10px
}

.announce-lines div {
    height: 8px;
    background: rgba(255, 255, 255, .2);
    border-radius: 99px;
    margin-bottom: 4px
}

.announce-lines div:nth-child(2) {
    width: 75%
}

.announce-lines div:nth-child(3) {
    width: 50%
}

.setup-section {
    background: #000;
    padding: 96px 0;
    position: relative;
    z-index: 1
}

.setup-quote {
    font-size: clamp(24px, 3.5vw, 36px);
    font-weight: 700;
    color: rgba(255, 255, 255, .75);
    max-width: 800px;
    line-height: 1.35;
    margin-bottom: 48px
}

.terminal-mockup {
    background: linear-gradient(160deg, #0d1117, #0a0f16);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, .08);
    padding: 24px;
    margin-bottom: 48px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 14px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .5)
}

.terminal-dots {
    display: flex;
    gap: 8px;
    margin-bottom: 16px
}

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

.dot.red {
    background: rgba(255, 95, 86, .8)
}

.dot.yellow {
    background: rgba(255, 189, 46, .8)
}

.dot.green {
    background: rgba(39, 202, 64, .8);
    box-shadow: 0 0 6px rgba(39, 202, 64, .4)
}

.terminal-body {
    color: #22c55e;
    font-size: 13px;
    line-height: 1.7
}

.terminal-body>div {
    opacity: 0;
    animation: termLine .3s ease forwards
}

.terminal-body>div:nth-child(1) {
    animation-delay: .1s
}

.terminal-body>div:nth-child(2) {
    animation-delay: .3s
}

.terminal-body>div:nth-child(3) {
    animation-delay: .5s
}

.terminal-body>div:nth-child(4) {
    animation-delay: .7s
}

.terminal-body>div:nth-child(5) {
    animation-delay: .9s
}

.terminal-body>div:nth-child(6) {
    animation-delay: 1.1s
}

.terminal-body>div:nth-child(7) {
    animation-delay: 1.3s
}

.terminal-body>div:nth-child(8) {
    animation-delay: 1.5s
}

.terminal-body>div:nth-child(9) {
    animation-delay: 1.7s
}

.terminal-body>div:nth-child(10) {
    animation-delay: 1.9s
}

.terminal-body>div:nth-child(11) {
    animation-delay: 2.1s
}

.terminal-body>div:nth-child(12) {
    animation-delay: 2.3s
}

@keyframes termLine {
    to {
        opacity: 1
    }
}

.term-brand {
    color: #86efac;
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 4px;
    text-shadow: 0 0 10px rgba(134, 239, 172, .3)
}

.term-sub {
    color: rgba(34, 197, 94, .5);
    font-size: 12px;
    margin-bottom: 4px
}

.term-divider {
    border-top: 1px solid rgba(34, 197, 94, .15);
    margin: 12px 0
}

.term-highlight {
    color: #86efac;
    margin-bottom: 4px
}

.term-dim {
    color: rgba(34, 197, 94, .5);
    font-size: 11px;
    margin-bottom: 8px
}

.term-selected {
    color: #86efac;
    position: relative;
    padding-left: 4px
}

.term-selected::before {
    content: '▶';
    color: #3B82F6;
    margin-right: 6px;
    font-size: 10px
}

.term-option {
    color: rgba(34, 197, 94, .35);
    margin-left: 20px
}

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

@media(min-width:640px) {
    .steps-grid {
        grid-template-columns: repeat(3, 1fr)
    }
}

@media(min-width:768px) {
    .steps-grid {
        grid-template-columns: repeat(5, 1fr)
    }
}

.step-card {
    background: #0a0a0a;
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: 16px;
    padding: 20px;
    transition: all .4s cubic-bezier(.16, 1, .3, 1);
    position: relative;
    overflow: hidden
}

.step-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #3B82F6, #8b5cf6);
    transition: all .4s;
    transform: translateX(-50%)
}

.step-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, .12)
}

.step-card:hover::after {
    width: 80%
}

.step-num {
    color: #3B82F6;
    font-weight: 900;
    font-size: 28px;
    margin-bottom: 8px;
    text-shadow: 0 0 15px rgba(59, 130, 246, .3)
}

.step-card p {
    color: rgba(255, 255, 255, .6);
    font-size: 14px;
    line-height: 1.4
}

.modules-section {
    background: #f8f8f8;
    padding: 96px 0;
    position: relative;
    z-index: 1
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 640px;
    margin: 0 auto 64px;
    text-align: center
}

.stat-val {
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 900;
    color: #3B82F6;
    margin-bottom: 4px
}

.stat-label {
    color: rgba(0, 0, 0, .65);
    font-size: 14px;
    font-weight: 500
}

.faq-section {
    background: #f8f8f8;
    padding: 96px 0;
    position: relative;
    z-index: 1
}

.faq-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 64px;
    align-items: start
}

@media(min-width:768px) {
    .faq-layout {
        grid-template-columns: 1fr 1fr
    }
}

.faq-big-title {
    font-size: clamp(48px, 7vw, 80px);
    font-weight: 900;
    color: #000;
    line-height: 1
}

.faq-italic {
    font-weight: 300;
    font-style: italic;
    color: rgba(0, 0, 0, .5)
}

.faq-right {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.faq-item {
    border: 1px solid rgba(0, 0, 0, .08);
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    transition: all .3s
}

.faq-item:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, .06)
}

.faq-item.open {
    border-color: rgba(59, 130, 246, .2);
    box-shadow: 0 4px 20px rgba(59, 130, 246, .06)
}

.faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    text-align: left;
    background: none;
    border: none;
    font-size: 14px;
    font-weight: 500;
    color: #000;
    cursor: pointer;
    transition: background .2s;
    font-family: inherit
}

.faq-q:hover {
    background: rgba(0, 0, 0, .02)
}

.faq-icon {
    color: rgba(0, 0, 0, .4);
    font-size: 18px;
    flex-shrink: 0;
    transition: transform .3s
}

.faq-item.open .faq-icon {
    transform: rotate(45deg)
}

.faq-a {
    padding: 0 20px;
    color: rgba(0, 0, 0, .6);
    font-size: 14px;
    line-height: 1.7;
    max-height: 0;
    overflow: hidden;
    transition: max-height .5s cubic-bezier(.16, 1, .3, 1), padding .5s cubic-bezier(.16, 1, .3, 1)
}

.faq-item.open .faq-a {
    max-height: 200px;
    padding: 0 20px 20px
}

.testimonials-section {
    background: #000;
    padding: 96px 0;
    position: relative;
    z-index: 1
}

.testi-slider {
    max-width: 700px;
    margin: 0 auto;
    position: relative
}

.testi-track {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    min-height: 280px
}

.testi-slide {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    border-radius: 20px;
    padding: 48px 40px;
    opacity: 0;
    transform: translateX(60px);
    transition: opacity .6s cubic-bezier(.16, 1, .3, 1), transform .6s cubic-bezier(.16, 1, .3, 1);
    pointer-events: none
}

.testi-slide.active {
    position: relative;
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto
}

.testi-blur {
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, .05);
    border-radius: 50%;
    filter: blur(60px);
    transform: translate(50%, -50%)
}

.testi-inner {
    position: relative;
    z-index: 1;
    text-align: center
}

.testi-stars {
    color: #fbbf24;
    font-size: 22px;
    letter-spacing: 6px;
    margin-bottom: 24px;
    text-shadow: 0 0 10px rgba(251, 191, 36, .4)
}

.testi-quote {
    color: #fff;
    font-size: clamp(16px, 2.5vw, 22px);
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 24px
}

.testi-author {
    color: rgba(255, 255, 255, .85);
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px
}

.testi-server {
    color: rgba(255, 255, 255, .35);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px
}

.testi-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 36px
}

.testi-btn {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .12);
    color: #fff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    transition: all .3s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: inherit
}

.testi-btn:hover {
    background: rgba(255, 255, 255, .15);
    border-color: rgba(255, 255, 255, .3);
    box-shadow: 0 0 20px rgba(255, 255, 255, .05)
}

.testi-dots {
    display: flex;
    gap: 10px
}

.testi-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .15);
    cursor: pointer;
    transition: all .4s
}

.testi-dot.active {
    background: #fff;
    transform: scale(1.3);
    box-shadow: 0 0 10px rgba(255, 255, 255, .4)
}

.cta-section {
    background: #000;
    padding: 96px 0;
    overflow: hidden;
    position: relative;
    z-index: 1
}

.marquee-wrapper {
    overflow: hidden;
    margin-bottom: 64px
}

.marquee-track {
    display: flex;
    white-space: nowrap;
    animation: marquee 40s linear infinite
}

.mq-solid,
.mq-outline {
    font-size: clamp(48px, 8vw, 96px);
    font-weight: 900;
    margin-right: 32px;
    flex-shrink: 0
}

.mq-solid {
    color: #fff;
    text-shadow: 0 0 40px rgba(255, 255, 255, .1)
}

.mq-outline {
    color: rgba(255, 255, 255, .1)
}

@keyframes marquee {
    0% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(-50%)
    }
}

.cta-content {
    text-align: center
}

.cta-title {
    font-size: clamp(48px, 8vw, 96px);
    font-weight: 900;
    color: #fff;
    margin-bottom: 4px
}

.cta-subtitle {
    font-size: clamp(48px, 8vw, 96px);
    font-weight: 300;
    font-style: italic;
    color: rgba(255, 255, 255, .25);
    margin-bottom: 48px
}

.btn-white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: #000;
    font-weight: 700;
    padding: 18px 36px;
    border-radius: 14px;
    text-decoration: none;
    font-size: 18px;
    transition: all .3s;
    box-shadow: 0 8px 30px rgba(255, 255, 255, .1)
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(255, 255, 255, .2)
}

.pulse-glow {
    animation: pulseGlow 3s ease-in-out infinite
}

@keyframes pulseGlow {

    0%,
    100% {
        box-shadow: 0 8px 30px rgba(255, 255, 255, .1)
    }

    50% {
        box-shadow: 0 8px 50px rgba(255, 255, 255, .25)
    }
}

.footer-section {
    background: #000;
    border-top: 1px solid rgba(255, 255, 255, .06);
    padding: 32px 0;
    position: relative;
    z-index: 1
}

.footer-section::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200vw;
    height: 500px;
    background: radial-gradient(ellipse at 50% 100%, rgba(59, 130, 246, .22), rgba(139, 92, 246, .12) 30%, transparent 60%);
    pointer-events: none;
    border-radius: 50% 50% 0 0
}

.footer-bottom {
    text-align: center
}

.footer-bottom p {
    color: rgba(255, 255, 255, .25);
    font-size: 12px;
    letter-spacing: .5px
}

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

    .faq-big-title {
        font-size: 48px
    }

    .testi-slide {
        padding: 32px 24px
    }
}