@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&family=Space+Grotesk:wght@500;700&display=swap');

:root {
    --bg: #03111e;
    --bg-soft: #081a2d;
    --surface: rgba(7, 20, 37, 0.78);
    --surface-strong: rgba(4, 11, 21, 0.94);
    --surface-light: rgba(255, 255, 255, 0.04);
    --line: rgba(125, 211, 252, 0.15);
    --text: #edf7ff;
    --muted: #95adc7;
    --brand-primary: #00d9ff;
    --brand-secondary: #42ffb3;
    --brand-violet: #7e5eff;
    --shadow: 0 30px 80px rgba(1, 7, 18, 0.48);
    --radius-xl: 28px;
    --radius-lg: 22px;
    --radius-md: 16px;
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    background:
        radial-gradient(circle at top left, rgba(0, 217, 255, 0.12), transparent 28%),
        radial-gradient(circle at top right, rgba(126, 94, 255, 0.12), transparent 24%),
        radial-gradient(circle at bottom center, rgba(66, 255, 179, 0.1), transparent 24%),
        linear-gradient(180deg, #020812 0, #071527 42%, #0b1e33 100%);
    color: var(--text);
    font: 16px/1.65 "Outfit", "Segoe UI", sans-serif;
}

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

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

.container {
    width: min(var(--container), calc(100% - 32px));
    margin: 0 auto;
}

.site-shell {
    position: relative;
    overflow: hidden;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    background: rgba(2, 10, 18, 0.72);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.header-row {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 18px;
    min-height: 88px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}

.brand-media {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 52px;
}

.brand-logo {
    max-height: 48px;
    object-fit: contain;
}

.brand-logo-compact {
    display: none;
    max-height: 42px;
}

.brand-mark {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
    color: #041321;
    font-family: "Space Grotesk", sans-serif;
    font-weight: 700;
}

.brand-copy {
    display: grid;
    gap: 3px;
    min-width: 0;
}

.brand-copy strong {
    font-family: "Space Grotesk", sans-serif;
    font-size: 18px;
}

.brand-copy small {
    color: var(--muted);
    font-size: 13px;
}

.site-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.site-nav-link,
.header-link,
.footer-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 999px;
    color: var(--muted);
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.site-nav-link:hover,
.site-nav-link.is-active,
.header-link:hover,
.footer-link:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
}

.site-nav-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 18px;
    font-size: 12px;
    color: var(--brand-primary);
}

.header-actions {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}

.header-cta,
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 20px;
    border-radius: 16px;
    border: 1px solid transparent;
    font: inherit;
    font-weight: 700;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.header-cta,
.button-primary {
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
    color: #041321;
    box-shadow: 0 14px 34px rgba(0, 217, 255, 0.24);
}

.button-secondary {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.button-ghost {
    background: rgba(126, 94, 255, 0.12);
    border-color: rgba(126, 94, 255, 0.24);
    color: #efe6ff;
}

.button:hover,
.header-cta:hover {
    transform: translateY(-1px);
}

.menu-toggle {
    display: none;
    width: 48px;
    height: 48px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.04);
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    margin: 5px auto;
    background: #fff;
}

.hero-section {
    position: relative;
}

.hero-slider-full {
    position: relative;
    min-height: 80vh;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(110deg, rgba(2, 8, 18, 0.86) 0%, rgba(2, 8, 18, 0.52) 42%, rgba(2, 8, 18, 0.82) 100%),
        linear-gradient(180deg, rgba(0, 217, 255, 0.06), rgba(126, 94, 255, 0.18)),
        var(--surface-strong);
    background-size: cover;
    background-position: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.45s ease;
}

.hero-slide.is-active {
    opacity: 1;
    pointer-events: auto;
}

.hero-slide-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(1, 6, 15, 0.28) 0%, rgba(1, 6, 15, 0.76) 100%),
        linear-gradient(90deg, rgba(1, 6, 15, 0.72) 0%, rgba(1, 6, 15, 0.22) 55%, rgba(1, 6, 15, 0.6) 100%);
}

.hero-slide-shell {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-end;
    min-height: 80vh;
    padding: 104px 0 72px;
}

.hero-slide-content {
    width: min(700px, 100%);
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.section-kicker {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(0, 217, 255, 0.12);
    color: var(--brand-primary);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.hero-slide-content h1,
.hero-slide-content h2,
.section-head h1,
.section-head h2,
.detail-card h1 {
    margin: 0;
    font-family: "Space Grotesk", sans-serif;
    line-height: 1.02;
}

.hero-slide-content h1 {
    font-size: clamp(42px, 6vw, 78px);
}

.hero-slide-content p,
.section-head p,
.plan-card p,
.server-card p,
.benefit-card p,
.faq-item div,
.detail-card p,
.footer-copy p {
    color: var(--muted);
}

.hero-slide-content p {
    margin: 0;
    max-width: 640px;
    font-size: 18px;
    color: #deefff;
}

.hero-actions,
.plan-actions,
.server-actions,
.detail-actions,
.footer-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-actions {
    margin-top: 10px;
}

.hero-dots-full {
    position: absolute;
    left: 50%;
    bottom: 28px;
    z-index: 2;
    display: flex;
    gap: 8px;
    transform: translateX(-50%);
}

.hero-dot {
    width: 12px;
    height: 12px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
}

.hero-dot.is-active {
    background: var(--brand-secondary);
}

.section {
    position: relative;
    padding: 42px 0;
}

.section-top {
    padding-top: 72px;
}

.section-head {
    margin-bottom: 24px;
    display: grid;
    gap: 10px;
}

.section-head h1 {
    font-size: clamp(34px, 5vw, 56px);
}

.section-head h2 {
    font-size: clamp(30px, 4vw, 46px);
}

.section-head p {
    margin: 0;
    max-width: 760px;
}

.card-grid {
    display: grid;
    gap: 20px;
}

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

.card-grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card-grid-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.glass-card {
    padding: 24px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
}

.plan-card,
.server-card,
.detail-card {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.plan-card.is-featured {
    border-color: rgba(66, 255, 179, 0.34);
    box-shadow: 0 28px 70px rgba(66, 255, 179, 0.1);
}

.plan-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.pill,
.plan-badge {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    color: #d8edff;
    font-size: 13px;
    font-weight: 600;
}

.plan-badge {
    background: rgba(66, 255, 179, 0.14);
    color: var(--brand-secondary);
}

.plan-card h3,
.server-card h3,
.benefit-card h3 {
    margin: 0;
    font-family: "Space Grotesk", sans-serif;
}

.plan-price {
    display: block;
    font-size: 34px;
    line-height: 1;
    color: #fff;
}

.feature-list {
    margin: 0;
    padding-left: 18px;
    color: #dcebff;
}

.feature-list li + li {
    margin-top: 6px;
}

.linked-group {
    display: grid;
    gap: 10px;
}

.linked-title {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
}

.linked-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.logo-chip {
    width: 58px;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    overflow: hidden;
}

.logo-chip img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 10px;
}

.app-inline-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.app-inline-card {
    min-width: 0;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    color: #def0ff;
}

.app-inline-card img {
    width: 34px;
    height: 34px;
    object-fit: contain;
    border-radius: 10px;
}

.server-cover {
    margin: -24px -24px 0;
    overflow: hidden;
    border-radius: 28px 28px 0 0;
}

.server-cover img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.server-card-head {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.server-logo {
    max-width: 180px;
    max-height: 64px;
    object-fit: contain;
}

.server-meta,
.server-detail-list {
    display: grid;
    gap: 10px;
    margin: 0;
}

.server-meta div,
.server-detail-list div {
    display: grid;
    gap: 4px;
    padding: 12px 14px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.server-meta dt,
.server-detail-list dt {
    font-size: 12px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.server-meta dd,
.server-detail-list dd {
    margin: 0;
    font-weight: 600;
}

.benefit-card {
    min-height: 100%;
}

.benefit-icon {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    margin-bottom: 14px;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.18), rgba(66, 255, 179, 0.18));
    color: var(--brand-primary);
    font-family: "Space Grotesk", sans-serif;
    font-weight: 700;
}

.faq-list {
    display: grid;
    gap: 12px;
}

.faq-item {
    padding: 18px 20px;
    border-radius: 18px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.04);
}

.faq-item summary {
    cursor: pointer;
    font-weight: 700;
}

.faq-item div {
    margin-top: 12px;
}

.detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 22px;
}

.detail-media img {
    width: 100%;
    border-radius: 20px;
}

.detail-top {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.site-footer {
    padding: 48px 0 60px;
}

.footer-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 22px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-copy p {
    margin: 8px 0 0;
    max-width: 680px;
}

.floating-whatsapp {
    position: fixed;
    z-index: 50;
    bottom: 22px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 56px;
    padding: 0 18px 0 12px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--whatsapp-primary), var(--whatsapp-secondary));
    color: #052033;
    box-shadow: 0 18px 40px rgba(2, 6, 23, 0.32);
    font-weight: 800;
}

.floating-whatsapp-left {
    left: 22px;
}

.floating-whatsapp-right {
    right: 22px;
}

.floating-whatsapp span {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.24);
}

@media (max-width: 1080px) {
    .card-grid-3,
    .card-grid-4,
    .detail-grid {
        grid-template-columns: 1fr;
    }

    .header-row {
        grid-template-columns: auto auto;
        grid-template-areas:
            "brand toggle"
            "nav nav"
            "actions actions";
    }

    .brand {
        grid-area: brand;
    }

    .menu-toggle {
        grid-area: toggle;
        justify-self: end;
        display: block;
    }

    .site-nav {
        grid-area: nav;
        display: none;
        align-items: stretch;
        flex-direction: column;
        padding: 12px;
        border-radius: 18px;
        background: rgba(255, 255, 255, 0.04);
    }

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

    .header-actions {
        grid-area: actions;
        flex-wrap: wrap;
        justify-content: flex-start;
    }

    .hero-slide-shell {
        padding-top: 110px;
    }
}

@media (max-width: 760px) {
    .card-grid-2 {
        grid-template-columns: 1fr;
    }

    .glass-card {
        padding: 22px;
    }

    .hero-slider-full,
    .hero-slide-shell {
        min-height: 65vh;
    }

    .hero-slide-shell {
        padding: 96px 0 56px;
    }

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

    .brand-logo-full {
        display: none;
    }

    .brand-logo-compact {
        display: block;
    }

    .footer-row {
        flex-direction: column;
    }

    .floating-whatsapp {
        left: 16px;
        right: 16px;
        justify-content: center;
    }
}
