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

:root {

    --bg: #050A12;
    --bg-footer: #04070D;
    --blue: #2E7BFF;
    --blue-light: #3E8BFF;
    --blue-sky: #4B96FF;
    --blue-deep: #143264;
    --blue-black: #0A1628;
    --green: #00FF80;
    --green-dark: #2bd07f;
    --card: #101726;
    --card-alt: #0F1628;
    --icon-bg: #101B34;
    --gray: #B9B9B9;
    --gray-soft: #C7C7C7;
    --gray-dim: #A8B9D6;
    --star: #FFB300;
}

html {
    scroll-behavior: smooth;
    background: var(--bg);
}

body {
    font-family: Poppins, sans-serif;
    background-color: #050A12;
    background-image: radial-gradient(circle at 50% 15%, #0C192E 0%, #071120 42%, #040910 78%);
    color: #fff;
    overflow-x: hidden;
}

section[id] {
    scroll-margin-top: 110px;
}

.ic {
    font-family: 'Material Symbols Outlined';
    font-weight: normal;
    font-style: normal;
    font-size: 1.15em;
    line-height: 1;
    display: inline-block;
    white-space: nowrap;
    vertical-align: -0.2em;
    margin-right: 6px;
    -webkit-font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
}

.bg-grid {
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, .02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .02) 1px, transparent 1px);
    background-size: 70px 70px;
    z-index: -3;
    pointer-events: none;
}

.blur-circle {
    position: fixed;
    border-radius: 50%;
    filter: blur(120px);
    z-index: -2;
    opacity: .22;
    pointer-events: none;
}

.circle1 {
    width: 420px;
    height: 420px;
    background: #0051B8;
    top: 80px;
    left: -120px;
}

.circle2 {
    width: 500px;
    height: 500px;
    background: #003A8A;
    bottom: -180px;
    right: -150px;
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 8%;
    background: rgba(0, 0, 0, .35);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    z-index: 999;
    border-bottom: 1px solid rgba(255, 255, 255, .05);
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-img {
    width: 42px;
    height: 42px;
    object-fit: contain;
    border-radius: 8px;
    filter: drop-shadow(0 0 12px rgba(62, 139, 255, .35));
}

.logo h1 {
    color: var(--blue-light);
    font-size: 30px;
    font-weight: 700;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    transition: .3s;
}

.nav-links a:hover {
    color: var(--blue-light);
}

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

.discord-btn {
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
    background: rgba(17, 24, 39, .8);
    border: 1px solid rgba(120, 169, 245, .26);
    color: #fff;
    font-size: 20px;
    text-decoration: none;
    transition: .3s;
}

.discord-btn:hover {
    background-image: linear-gradient(120deg, var(--blue-sky), var(--blue-deep));
    transform: translateY(-2px);
}

.panel-btn {
    padding: 13px 26px;
    background: linear-gradient(120deg, var(--blue-sky) 0%, var(--blue) 40%, var(--blue-deep) 100%);
    border: 1px solid rgba(150, 199, 255, .5);
    border-radius: 14px;
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    box-shadow: 0 12px 30px -12px rgba(46, 123, 255, .72), inset 0 1px 0 rgba(255, 255, 255, .28);
    transition: .3s;
}

.panel-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 44px -14px rgba(46, 123, 255, .9), inset 0 1px 0 rgba(255, 255, 255, .35);
}

.hamburger {
    display: none;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border: 1px solid rgba(120, 169, 245, .26);
    border-radius: 12px;
    background: rgba(17, 24, 39, .8);
    color: #fff;
    cursor: pointer;
    font-size: 28px;
    transition: .3s;
}

.hamburger:hover {
    background: var(--blue-light);
}

.primary-btn,
.order-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 17px 36px;
    border-radius: 14px;
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    background: linear-gradient(120deg, var(--blue-sky) 0%, var(--blue) 40%, var(--blue-deep) 76%, var(--blue-black) 100%);
    background-size: 180% 180%;
    background-position: 0% 50%;
    border: 1px solid rgba(150, 199, 255, .5);
    box-shadow: 0 12px 30px -12px rgba(46, 123, 255, .72), inset 0 1px 0 rgba(255, 255, 255, .28);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: transform .3s cubic-bezier(.22, 1, .36, 1), box-shadow .3s ease, background-position .6s ease;
}

.primary-btn::after,
.order-btn::after {
    content: "";
    position: absolute;
    top: -60%;
    left: -130%;
    width: 55%;
    height: 320%;
    background: linear-gradient(100deg, transparent 15%, rgba(255, 255, 255, .5) 50%, transparent 85%);
    transform: rotate(18deg);
    transition: left .55s ease;
}

.primary-btn:hover,
.order-btn:hover {
    background-position: 100% 50%;
    transform: translateY(-3px);
    box-shadow: 0 22px 44px -14px rgba(46, 123, 255, .9), inset 0 1px 0 rgba(255, 255, 255, .35);
}

.primary-btn:hover::after,
.order-btn:hover::after {
    left: 140%;
}

.secondary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 34px;
    border-radius: 14px;
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    background: rgba(46, 123, 255, .06);
    border: 1px solid rgba(96, 160, 255, .45);
    backdrop-filter: blur(10px);
    transition: .3s;
}

.secondary-btn:hover {
    background: rgba(46, 123, 255, .16);
    border-color: rgba(150, 199, 255, .85);
    transform: translateY(-3px);
}

.hero {
    min-height: 100vh;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
    padding: 140px 10% 90px;
    position: relative;
    overflow: hidden;
}

.hero-waves {
    position: absolute;
    top: -250px;
    right: -150px;
    width: 700px;
    height: 700px;
    pointer-events: none;
}

.hero-waves span {
    position: absolute;
    border: 1px solid rgba(60, 140, 255, .18);
    border-radius: 50%;
    animation: rotateWave 20s linear infinite;
}

.hero-waves span:nth-child(1) { width: 700px; height: 700px; }
.hero-waves span:nth-child(2) { width: 560px; height: 560px; top: 70px; left: 70px; animation-duration: 16s; }
.hero-waves span:nth-child(3) { width: 420px; height: 420px; top: 140px; left: 140px; animation-duration: 12s; }

@keyframes rotateWave {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.hero-content {
    max-width: 640px;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 22px;
    background: rgba(0, 255, 128, .07);
    border: 1px solid rgba(0, 255, 128, .3);
    border-radius: 999px;
    color: #7dffb0;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 28px;
}

.dot-live {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 12px var(--green);
    display: inline-block;
    animation: pulseDot 1.8s ease-in-out infinite;
}

@keyframes pulseDot {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.3); opacity: .8; }
}

.hero-content h1 {
    font-size: 58px;
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 24px;
}

.grad-text {
    background: linear-gradient(90deg, var(--blue-sky), var(--blue-light) 45%, #9ED2FF);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content > p {
    font-size: 18px;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 38px;
}

.hero-content > p strong {
    color: #fff;
}

.hero-buttons {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    margin-bottom: 44px;
}

.hero-proof {
    display: flex;
    align-items: center;
    gap: 26px;
    flex-wrap: wrap;
}

.proof-item {
    display: flex;
    flex-direction: column;
}

.proof-item strong {
    font-size: 26px;
    font-weight: 800;
    color: #fff;
}

.proof-item strong.green {
    color: var(--green);
    text-shadow: 0 0 18px rgba(0, 255, 128, .4);
}

.proof-item span {
    color: var(--gray-dim);
    font-size: 13px;
    letter-spacing: .5px;
}

.proof-sep {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, .12);
}

.hero-visual {
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}

.rocket-stage {
    position: relative;
    width: 460px;
    height: 460px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.rocket-glow {
    position: absolute;
    width: 340px;
    height: 340px;
    background: radial-gradient(circle at 40% 35%, #4B96FF 0%, #2E7BFF 22%, #143264 52%, #050A12 78%);
    filter: blur(40px);
    opacity: .45;
    border-radius: 50%;
    will-change: transform;
    animation: glowPulse 4.5s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { transform: scale(1); opacity: .40; }
    50% { transform: scale(1.14); opacity: .55; }
}

.orbit-ring {
    position: absolute;
    border: 1px solid rgba(60, 140, 255, .22);
    border-radius: 50%;
    will-change: transform;
    animation: rotateWave 22s linear infinite;
}

.ring1 { width: 430px; height: 430px; }
.ring2 { width: 330px; height: 330px; animation-duration: 15s; animation-direction: reverse; }

.rocket-img {
    width: 220px;
    height: 220px;
    object-fit: contain;
    filter: drop-shadow(0 24px 40px rgba(46, 123, 255, .45));
    will-change: transform;
    animation: rocketFloat 5s ease-in-out infinite;
}

@keyframes rocketFloat {
    0%, 100% { transform: translateY(0) rotate(-4deg); }
    50% { transform: translateY(-22px) rotate(2deg); }
}

.float-card {
    position: absolute;
    padding: 16px 24px;
    border-radius: 18px;
    background: linear-gradient(145deg, rgba(22, 32, 56, .96), rgba(14, 21, 38, .92));
    border: 1px solid rgba(120, 169, 245, .18);
    box-shadow: 0 12px 32px rgba(0, 0, 0, .35), 0 0 24px rgba(46, 123, 255, .18);
    will-change: transform;
}

.float-card h4 {
    font-size: 24px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 8px;
}

.float-card p {
    color: var(--gray-dim);
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.card-ping {
    left: -12px;
    top: 90px;
    border-left: 2px solid var(--blue);
    animation: floatY1 5.2s ease-in-out infinite;
}

.card-ping h4 { color: #7FB5FF; text-shadow: 0 0 12px rgba(75, 150, 255, .55); }

.card-uptime {
    right: -12px;
    bottom: 90px;
    border-left: 2px solid var(--green);
    animation: floatY2 5.8s ease-in-out infinite;
}

.card-uptime h4 { color: #7DFFB0; text-shadow: 0 0 12px rgba(57, 255, 160, .5); }

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

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

.marquee-bar {
    background: #0E1525;
    border-top: 1px solid rgba(255, 255, 255, .05);
    border-bottom: 1px solid rgba(255, 255, 255, .05);
    overflow: hidden;
    padding: 18px 0;
}

.marquee-track {
    display: flex;
    gap: 60px;
    width: max-content;
    will-change: transform;
    animation: marquee 26s linear infinite;
}

.marquee-track span {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    color: #D0D0D0;
    font-size: 16px;
    font-weight: 500;
    white-space: nowrap;
}

.marquee-track .ic {
    color: var(--blue-sky);
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

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

.section-title span {
    color: var(--blue-light);
    font-weight: 700;
    letter-spacing: 3px;
    font-size: 14px;
}

.section-title h2 {
    font-size: 44px;
    margin: 15px 0;
    letter-spacing: -0.5px;
}

.section-title p {
    color: #BFBFBF;
    font-size: 17px;
}

.services {
    padding: 120px 8% 110px;
}

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

.service-card {
    display: flex;
    flex-direction: column;
    padding: 44px 36px;
    border-radius: 28px;
    background: rgba(16, 23, 38, .88);
    border: 1px solid rgba(255, 255, 255, .06);
    text-decoration: none;
    color: #fff;
    position: relative;
    overflow: hidden;
    transition: .35s;
}

.service-card::before {
    content: "";
    position: absolute;
    top: -80px;
    right: -80px;
    width: 200px;
    height: 200px;
    background: #2E7BFF22;
    border-radius: 50%;
    transition: .4s;
}

.service-card:hover {
    transform: translateY(-12px);
    border-color: var(--blue);
    box-shadow: 0 24px 60px rgba(46, 123, 255, .25);
}

.service-card:hover::before {
    transform: scale(1.9);
}

.service-icon {
    width: 78px;
    height: 78px;
    background: var(--icon-bg);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 26px;
    position: relative;
}

.service-icon i {
    font-size: 32px;
    color: var(--blue-sky);
}

.service-card h3 {
    font-size: 26px;
    margin-bottom: 12px;
}

.service-card > p {
    color: var(--gray);
    line-height: 1.75;
    font-size: 15px;
    margin-bottom: 22px;
}

.service-card ul {
    list-style: none;
    margin-bottom: 28px;
}

.service-card li {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--gray-soft);
    font-size: 14.5px;
    margin: 10px 0;
}

.service-card li .ic {
    color: var(--green-dark);
    font-size: 20px;
}

.service-go {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: var(--blue-sky);
    font-weight: 700;
    font-size: 15px;
    transition: .3s;
}

.service-card:hover .service-go {
    gap: 12px;
    color: #9ED2FF;
}

.steps {
    padding: 110px 8%;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1150px;
    margin: 0 auto;
}

.step-card {
    padding: 46px 38px;
    border-radius: 28px;
    background: rgba(15, 22, 40, .8);
    border: 1px solid rgba(255, 255, 255, .05);
    text-align: center;
    position: relative;
    transition: .35s;
}

.step-card:hover {
    transform: translateY(-10px);
    border-color: var(--blue);
    box-shadow: 0 18px 50px rgba(0, 108, 255, .20);
}

.step-num {
    position: absolute;
    top: 22px;
    right: 28px;
    font-size: 52px;
    font-weight: 800;
    color: rgba(62, 139, 255, .14);
    line-height: 1;
}

.step-icon {
    width: 84px;
    height: 84px;
    margin: 0 auto 26px;
    border-radius: 24px;
    background: linear-gradient(145deg, rgba(58, 133, 255, .28), rgba(46, 123, 255, .07));
    border: 1px solid rgba(119, 177, 255, .26);
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .14), 0 8px 24px rgba(0, 57, 158, .2);
}

.step-icon .ic {
    font-size: 38px;
    color: #82B8FF;
    margin-right: 0;
}

.step-card h3 {
    font-size: 23px;
    margin-bottom: 12px;
}

.step-card p {
    color: var(--gray);
    line-height: 1.75;
    font-size: 15px;
}

.stats {
    padding: 60px 8% 110px;
}

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

.stat-card {
    background: var(--card-alt);
    padding: 42px 24px;
    border-radius: 25px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, .05);
    transition: .35s;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0, 108, 255, .20);
    border-color: var(--blue);
}

.stat-card h3 {
    font-size: 48px;
    color: var(--blue-light);
    margin-bottom: 8px;
    font-weight: 800;
    font-variant-numeric: tabular-nums;
}

.stat-card p {
    color: #BEBEBE;
    font-size: 16px;
}

.reviews {
    padding: 110px 8%;
}

.review-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1150px;
    margin: 0 auto;
}

.review-card {
    padding: 38px;
    background: var(--card);
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, .06);
    transition: .35s;
}

.review-card:hover {
    transform: translateY(-10px);
    border-color: var(--blue);
    box-shadow: 0 18px 50px rgba(0, 108, 255, .18);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.review-avatar {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--blue);
    flex-shrink: 0;
}

.review-header h4 {
    font-size: 17px;
    margin-bottom: 4px;
}

.review-stars {
    color: var(--star);
    font-size: 16px;
    letter-spacing: 2px;
}

.review-card > p {
    color: #C8C8C8;
    line-height: 1.8;
}

.faq {
    padding: 110px 8%;
}

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

.faq-item {
    background: var(--card-alt);
    border-radius: 20px;
    margin-bottom: 18px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .05);
    transition: .3s;
}

.faq-item.open {
    border-color: rgba(62, 139, 255, .4);
    box-shadow: 0 12px 34px rgba(0, 108, 255, .12);
}

.faq-question {
    width: 100%;
    padding: 24px 26px;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    color: #fff;
    font-family: Poppins, sans-serif;
    font-size: 18px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
}

.faq-question i {
    color: var(--blue-sky);
    transition: .3s;
    flex-shrink: 0;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease;
}

.faq-answer p {
    padding: 0 26px 26px;
    color: #bdbdbd;
    line-height: 1.8;
}

.final-cta {
    padding: 60px 8% 130px;
}

.final-card {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    padding: 80px 40px;
    border-radius: 36px;
    background: radial-gradient(circle at 50% -20%, rgba(35, 101, 214, .5) 0%, rgba(13, 25, 46, .95) 55%, rgba(5, 10, 18, .98) 100%);
    border: 1px solid rgba(151, 195, 255, .25);
    box-shadow: 0 34px 90px rgba(0, 0, 0, .5), 0 0 70px rgba(46, 123, 255, .14), inset 0 1px 0 rgba(255, 255, 255, .1);
    position: relative;
    overflow: hidden;
}

.final-rocket {
    width: 110px;
    height: 110px;
    object-fit: contain;
    margin-bottom: 26px;
    filter: drop-shadow(0 16px 30px rgba(46, 123, 255, .5));
    animation: rocketFloat 5s ease-in-out infinite;
}

.final-card h2 {
    font-size: 50px;
    letter-spacing: -1px;
    margin-bottom: 18px;
}

.rocket-emoji {
    display: inline-block;
    animation: rocketFloat 3.5s ease-in-out infinite;
}

.final-card > p {
    color: var(--gray);
    font-size: 18px;
    line-height: 1.8;
    max-width: 620px;
    margin: 0 auto 42px;
}

.final-buttons {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

.final-buttons .order-btn {
    padding: 19px 44px;
    font-size: 17px;
}

footer {
    padding: 64px 8% 36px;
    background: var(--bg-footer);
    border-top: 1px solid rgba(255, 255, 255, .05);
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

.footer-brand strong {
    font-size: 22px;
    color: var(--blue);
}

.footer-brand p {
    color: #AFAFAF;
    font-size: 14px;
    max-width: 340px;
    line-height: 1.6;
    margin-top: 4px;
}

.footer-links {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #AFAFAF;
    text-decoration: none;
    font-size: 15px;
    transition: .3s;
}

.footer-links a:hover {
    color: var(--blue);
}

.copyright {
    margin-top: 42px;
    text-align: center;
    color: #8D8D8D;
    font-size: 14px;
}

.reveal {
    opacity: 0;
    transform: translateY(34px);
    transition: opacity .8s cubic-bezier(.22, 1, .36, 1), transform .8s cubic-bezier(.22, 1, .36, 1);
}

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

.reveal-delay-1 { transition-delay: .12s; }
.reveal-delay-2 { transition-delay: .24s; }
.reveal-delay-3 { transition-delay: .36s; }
.reveal-delay-4 { transition-delay: .48s; }

@media (prefers-reduced-motion: reduce) {
    .reveal {
        transition: none;
        opacity: 1;
        transform: none;
    }
    .rocket-img, .final-rocket, .rocket-emoji, .rocket-glow,
    .card-ping, .card-uptime, .dot-live,
    .orbit-ring, .hero-waves span, .marquee-track {
        animation: none !important;
    }
}

@media (max-width: 1100px) {
    .hero {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        gap: 70px;
        padding-top: 150px;
    }

    .hero-content {
        max-width: 700px;
    }

    .hero-buttons,
    .hero-proof {
        justify-content: center;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: min(320px, 80vw);
        height: 100vh;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 36px;
        background: rgba(5, 10, 18, .97);
        backdrop-filter: blur(20px);
        transition: right .4s cubic-bezier(.22, 1, .36, 1);
        z-index: 998;
    }

    .nav-links.open {
        right: 0;
    }

    .nav-links a {
        font-size: 20px;
    }

    .hamburger {
        display: flex;
        z-index: 999;
    }

    .panel-btn {
        display: none;
    }

    .services-grid,
    .steps-grid,
    .review-grid {
        grid-template-columns: 1fr;
        max-width: 560px;
        margin-inline: auto;
    }

    .section-title h2 {
        font-size: 34px;
    }

    .hero-content h1 {
        font-size: 42px;
    }

    .rocket-stage {
        width: 340px;
        height: 340px;
    }

    .rocket-img {
        width: 165px;
        height: 165px;
    }

    .orbit-ring.ring1 { width: 320px; height: 320px; }
    .orbit-ring.ring2 { width: 250px; height: 250px; }

    .card-ping { left: -6px; top: 60px; }
    .card-uptime { right: -6px; bottom: 60px; }

    .final-card h2 {
        font-size: 34px;
    }
}

@media (max-width: 520px) {
    .hero {
        padding: 130px 6% 70px;
    }

    .hero-content h1 {
        font-size: 33px;
    }

    .hero-content > p {
        font-size: 16px;
    }

    .primary-btn,
    .secondary-btn,
    .order-btn {
        width: 100%;
        padding: 16px 20px;
    }

    .proof-sep {
        display: none;
    }

    .hero-proof {
        gap: 20px 30px;
    }

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

    .stat-card {
        padding: 28px 14px;
    }

    .stat-card h3 {
        font-size: 32px;
    }

    .final-cta {
        padding: 40px 5% 90px;
    }

    .final-card {
        padding: 56px 22px;
    }

    .footer-inner {
        flex-direction: column;
        text-align: center;
        justify-content: center;
    }

    .footer-links {
        justify-content: center;
    }
}
