*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

:root {
    --black: #000000;
    --bg-primary: #0a0a0a;
    --bg-secondary: #111111;
    --bg-card: #1b1b1b;
    --bg-card-hover: #2d2d2d;
    --border: rgba(255, 255, 255, 0.06);
    --border-hover: rgba(255, 255, 255, 0.12);
    --white: #ffffff;
    --text-primary: #ffffff;
    --text-secondary: #d9d9d9;
    --text-muted: rgba(255, 255, 255, 0.5);
    --font-display: 'Orbitron', sans-serif;
    --font-body: 'Inter', sans-serif;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --transition: 0.3s ease;
    --transition-slow: 0.5s ease;
    --glow: 0 0 20px rgba(255, 255, 255, 0.08);
    --glow-hover: 0 0 40px rgba(255, 255, 255, 0.15)
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

body {
    font-family: var(--font-body);
    background: var(--bg-primary);
    color: var(--text-secondary);
    line-height: 1.7;
    overflow-x: hidden
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition)
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
    color: inherit
}

img {
    display: block;
    max-width: 100%;
    height: auto
}

ul,
ol {
    list-style: none
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px
}

.spotlight {
    position: fixed;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: left 0.1s ease, top 0.1s ease;
    will-change: left, top
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 24px;
    transition: all var(--transition)
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border)
}

.navbar-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px
}

.navbar-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1001
}

.logo-icon {
    font-size: 14px;
    color: var(--white)
}

.logo-text {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 2px;
    text-transform: uppercase
}

.navbar-menu {
    display: flex;
    align-items: center;
    gap: 32px
}

.nav-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    transition: color var(--transition);
    position: relative
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--white);
    transition: width var(--transition)
}

.nav-link:hover,
.nav-link.active {
    color: var(--white)
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%
}

.nav-discord {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.06);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    transition: all var(--transition)
}

.nav-discord:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--border-hover);
    box-shadow: var(--glow)
}

.nav-discord::after {
    display: none
}

.navbar-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--black);
    background: var(--white);
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    box-shadow: var(--glow)
}

.navbar-cta:hover {
    box-shadow: var(--glow-hover);
    transform: translateY(-1px)
}

.navbar-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    z-index: 1001;
    padding: 4px
}

.toggle-bar {
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all var(--transition)
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 24px 80px;
    overflow: hidden
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%)
}

.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 800px;
    height: 800px;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(255, 255, 255, 0.04) 0%, transparent 60%);
    pointer-events: none
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.04);
    pointer-events: none
}

.hero-shape-1 {
    width: 500px;
    height: 500px;
    top: 10%;
    right: -10%;
    animation: floatSlow 20s ease-in-out infinite
}

.hero-shape-2 {
    width: 300px;
    height: 300px;
    bottom: 15%;
    left: -5%;
    animation: floatSlow 15s ease-in-out infinite reverse
}

.hero-shape-3 {
    width: 150px;
    height: 150px;
    top: 25%;
    left: 15%;
    animation: floatSlow 12s ease-in-out infinite 2s
}

.hero-shape-4 {
    width: 80px;
    height: 80px;
    bottom: 30%;
    right: 20%;
    animation: floatSlow 10s ease-in-out infinite 4s
}

.hero-line {
    position: absolute;
    pointer-events: none
}

.hero-line-1 {
    width: 1px;
    height: 200px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.06), transparent);
    top: 0;
    left: 20%;
    animation: linePulse 4s ease-in-out infinite
}

.hero-line-2 {
    width: 200px;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.06), transparent);
    bottom: 20%;
    right: 10%;
    animation: linePulse 4s ease-in-out infinite 2s
}

@keyframes floatSlow {

    0%,
    100% {
        transform: translateY(0) rotate(0deg)
    }

    50% {
        transform: translateY(-30px) rotate(5deg)
    }
}

@keyframes linePulse {

    0%,
    100% {
        opacity: 0.3
    }

    50% {
        opacity: 1
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    padding: 8px 20px;
    border-radius: 100px;
    margin-bottom: 32px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px)
}

.badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--white);
    animation: dotPulse 2s ease-in-out infinite
}

@keyframes dotPulse {

    0%,
    100% {
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4)
    }

    50% {
        opacity: 0.7;
        box-shadow: 0 0 0 6px rgba(255, 255, 255, 0)
    }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(36px, 7vw, 80px);
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 24px
}

.hero-highlight {
    background: linear-gradient(135deg, var(--white) 0%, rgba(255, 255, 255, 0.6) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.hero-subtitle {
    font-size: clamp(16px, 2vw, 20px);
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.7
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 16px 32px;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    position: relative;
    overflow: hidden
}

.btn-primary {
    color: var(--black);
    background: var(--white);
    box-shadow: var(--glow)
}

.btn-primary:hover {
    box-shadow: var(--glow-hover);
    transform: translateY(-2px)
}

.btn-secondary {
    color: var(--white);
    background: transparent;
    border: 1px solid var(--border)
}

.btn-secondary:hover {
    border-color: var(--border-hover);
    background: rgba(255, 255, 255, 0.04);
    transform: translateY(-2px)
}

.btn-cta {
    color: var(--black);
    background: var(--white);
    padding: 20px 48px;
    font-size: 15px;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.1), 0 0 60px rgba(255, 255, 255, 0.05)
}

.btn-cta:hover {
    box-shadow: 0 0 40px rgba(255, 255, 255, 0.2), 0 0 80px rgba(255, 255, 255, 0.1);
    transform: translateY(-3px)
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.3), transparent);
    animation: scrollDown 2s ease-in-out infinite
}

@keyframes scrollDown {
    0% {
        transform: scaleY(0);
        transform-origin: top
    }

    50% {
        transform: scaleY(1);
        transform-origin: top
    }

    51% {
        transform-origin: bottom
    }

    100% {
        transform: scaleY(0);
        transform-origin: bottom
    }
}

.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 64px
}

.section-label {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 16px;
    padding: 6px 16px;
    border: 1px solid var(--border);
    border-radius: 100px
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: -0.5px
}

.section-desc {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.7
}

.services {
    padding: 120px 0;
    position: relative
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 80px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.06))
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px
}

.service-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px;
    transition: all var(--transition-slow);
    position: relative;
    overflow: hidden
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255, 255, 255, 0.04), transparent 40%);
    opacity: 0;
    transition: opacity var(--transition-slow);
    pointer-events: none
}

.service-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
    box-shadow: var(--glow)
}

.service-card:hover::before {
    opacity: 1
}

.service-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    margin-bottom: 24px;
    font-size: 20px;
    color: var(--white);
    transition: all var(--transition)
}

.service-card:hover .service-icon {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--border-hover);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1)
}

.service-title {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 12px;
    letter-spacing: 0.5px
}

.service-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7
}

.service-arrow {
    position: absolute;
    top: 36px;
    right: 36px;
    font-size: 14px;
    color: var(--text-muted);
    transform: translateX(-8px);
    opacity: 0;
    transition: all var(--transition)
}

.service-card:hover .service-arrow {
    transform: translateX(0);
    opacity: 1;
    color: var(--white)
}

.portfolio {
    padding: 120px 0;
    background: var(--bg-secondary);
    position: relative
}

.portfolio::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    position: relative;
    z-index: 1
}

.portfolio-img {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 3/2;
    border: 1px solid var(--border);
    cursor: pointer
}

.portfolio-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.3) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px;
    opacity: 0;
    transition: opacity var(--transition-slow)
}

.portfolio-category {
    font-family: var(--font-display);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 8px
}

.portfolio-title {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 0.5px;
    transform: translateY(10px);
    transition: transform var(--transition-slow)
}

.portfolio-img:hover img {
    transform: scale(1.08)
}

.portfolio-img:hover .portfolio-overlay {
    opacity: 1
}

.portfolio-img:hover .portfolio-title {
    transform: translateY(0)
}

.why-us {
    padding: 120px 0;
    position: relative
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px
}

.why-card {
    text-align: center;
    padding: 40px 28px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.02);
    transition: all var(--transition-slow);
    position: relative;
    overflow: hidden
}

.why-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: var(--white);
    opacity: 0;
    transition: all var(--transition)
}

.why-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
    box-shadow: var(--glow)
}

.why-card:hover::after {
    opacity: 1;
    width: 60px
}

.why-icon {
    width: 56px;
    height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    margin-bottom: 24px;
    font-size: 22px;
    color: var(--white);
    transition: all var(--transition)
}

.why-card:hover .why-icon {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--border-hover);
    box-shadow: 0 0 24px rgba(255, 255, 255, 0.1)
}

.why-title {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 12px;
    letter-spacing: 0.5px
}

.why-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7
}

.how-it-works {
    padding: 120px 0;
    background: var(--bg-secondary);
    position: relative
}

.how-it-works::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none
}

.timeline {
    position: relative;
    max-width: 600px;
    margin: 0 auto 64px
}

.timeline-line {
    position: absolute;
    left: 28px;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom, transparent, var(--border), var(--border), transparent)
}

.timeline-item {
    display: flex;
    gap: 32px;
    padding: 28px 0;
    position: relative
}

.timeline-number {
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 700;
    color: var(--text-muted);
    min-width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: var(--bg-primary);
    position: relative;
    z-index: 2;
    transition: all var(--transition)
}

.timeline-item:hover .timeline-number {
    border-color: var(--border-hover);
    color: var(--white);
    box-shadow: var(--glow)
}

.timeline-content {
    padding-top: 4px
}

.timeline-icon {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 12px;
    transition: color var(--transition)
}

.timeline-item:hover .timeline-icon {
    color: var(--white)
}

.timeline-title {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 8px;
    letter-spacing: 0.5px
}

.timeline-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7
}

.timeline-cta {
    text-align: center
}

.numbers {
    padding: 100px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border)
}

.numbers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center
}

.number-item {
    padding: 32px 16px
}

.number-value {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    letter-spacing: -1px
}

.number-suffix {
    font-family: var(--font-display);
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 700;
    color: var(--white)
}

.number-label {
    display: block;
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 12px;
    font-weight: 500
}

.faq {
    padding: 120px 0
}

.faq-list {
    max-width: 760px;
    margin: 0 auto
}

.faq-item {
    border-bottom: 1px solid var(--border)
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    font-size: 16px;
    font-weight: 500;
    color: var(--white);
    text-align: left;
    transition: color var(--transition);
    gap: 16px
}

.faq-question:hover {
    color: rgba(255, 255, 255, 0.8)
}

.faq-question i {
    font-size: 14px;
    color: var(--text-muted);
    transition: all var(--transition);
    min-width: 20px;
    text-align: center
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
    color: var(--white)
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease
}

.faq-item.active .faq-answer {
    max-height: 300px
}

.faq-answer p {
    padding: 0 0 24px;
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.8
}

.cta-final {
    padding: 140px 0;
    text-align: center;
    position: relative;
    overflow: hidden
}

.cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 600px;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 60%);
    pointer-events: none
}

.cta-content {
    position: relative;
    z-index: 1
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(28px, 5vw, 52px);
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -0.5px
}

.cta-desc {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 500px;
    margin: 0 auto 40px;
    line-height: 1.7
}

.footer {
    padding: 80px 0 0;
    border-top: 1px solid var(--border);
    background: var(--bg-secondary)
}

.footer-inner {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 64px;
    padding-bottom: 64px
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px
}

.footer-tagline {
    font-size: 14px;
    color: var(--text-muted);
    max-width: 280px;
    line-height: 1.7
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px
}

.footer-heading {
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 20px
}

.footer-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-muted);
    padding: 6px 0;
    transition: color var(--transition)
}

.footer-link:hover {
    color: var(--white)
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding: 24px 0
}

.footer-copy {
    font-size: 13px;
    color: var(--text-muted);
    text-align: center
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0)
}

.reveal:nth-child(2) {
    transition-delay: 0.1s
}

.reveal:nth-child(3) {
    transition-delay: 0.2s
}

.reveal:nth-child(4) {
    transition-delay: 0.3s
}

.reveal:nth-child(5) {
    transition-delay: 0.3s
}

.reveal:nth-child(6) {
    transition-delay: 0.4s
}

.reveal:nth-child(7) {
    transition-delay: 0.4s
}

@media(max-width:1024px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .numbers-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(max-width:768px) {
    .navbar-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        height: 100dvh;
        background: rgba(10, 10, 10, 0.97);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        flex-direction: column;
        justify-content: center;
        gap: 28px;
        transition: right 0.4s ease;
        z-index: 1000
    }

    .navbar-menu.open {
        right: 0
    }

    .nav-link {
        font-size: 20px
    }

    .nav-discord {
        font-size: 18px;
        padding: 12px 24px
    }

    .navbar-cta {
        display: none
    }

    .navbar-toggle {
        display: flex
    }

    .navbar-toggle.active .toggle-bar:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px)
    }

    .navbar-toggle.active .toggle-bar:nth-child(2) {
        opacity: 0
    }

    .navbar-toggle.active .toggle-bar:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px)
    }

    .hero-title {
        letter-spacing: -0.5px
    }

    .services-grid {
        grid-template-columns: 1fr
    }

    .portfolio-grid {
        grid-template-columns: 1fr
    }

    .why-grid {
        grid-template-columns: 1fr
    }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 48px
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr)
    }

    .timeline-item {
        gap: 20px
    }

    .timeline-number {
        min-width: 48px;
        height: 48px;
        font-size: 11px
    }

    .timeline-line {
        left: 24px
    }

    .numbers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0
    }
}

@media(max-width:480px) {
    .hero {
        padding: 100px 20px 60px
    }

    .hero-actions {
        flex-direction: column;
        width: 100%
    }

    .hero-actions .btn {
        width: 100%;
        justify-content: center
    }

    .container {
        padding: 0 16px
    }

    .services,
    .portfolio,
    .why-us,
    .how-it-works,
    .faq {
        padding: 80px 0
    }

    .cta-final {
        padding: 100px 0
    }

    .footer-links {
        grid-template-columns: 1fr
    }

    .btn-cta {
        padding: 18px 36px;
        font-size: 13px
    }
}

@media(prefers-reduced-motion:reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important
    }

    .reveal {
        opacity: 1;
        transform: none
    }
}

:focus-visible {
    outline: 2px solid var(--white);
    outline-offset: 2px;
    border-radius: 4px
}