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

:root {
    color-scheme: dark;
    --bg: #040b14;
    --bg-soft: #091426;
    --bg-elevated: rgba(10, 20, 36, 0.82);
    --bg-elevated-strong: rgba(8, 17, 32, 0.94);
    --line: rgba(255, 255, 255, 0.08);
    --line-strong: rgba(139, 92, 246, 0.24);
    --text: #f5fbff;
    --muted: #9eb6cc;
    --accent: #8b5cf6;
    --accent-2: #d946ef;
    --accent-3: #a78bfa;
    --shadow: 0 24px 90px rgba(0, 0, 0, 0.35);
    --shadow-soft: 0 18px 50px rgba(0, 0, 0, 0.25);
    --radius-xl: 30px;
    --radius-lg: 22px;
    --radius-md: 18px;
    --radius-sm: 14px;
    --container-max: 1200px;
    --header-height: 88px;
    --transition: 220ms ease;
}

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

html {
    scroll-behavior: smooth;
}

body.site-body {
    margin: 0;
    min-height: 100vh;
    font-family: 'Manrope', 'Avenir Next', 'Segoe UI Variable', sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at 15% 20%, rgba(139, 92, 246, 0.18), transparent 28%),
        radial-gradient(circle at 85% 15%, rgba(217, 70, 239, 0.14), transparent 24%),
        linear-gradient(180deg, #050d17 0%, #03070f 100%);
    overflow-x: hidden;
}

body.site-body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 32px 32px;
    opacity: 0.12;
    pointer-events: none;
    z-index: -2;
}

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

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

.container {
    max-width: var(--container-max);
}

.site-bg-orb {
    position: fixed;
    border-radius: 999px;
    filter: blur(24px);
    opacity: 0.28;
    pointer-events: none;
    z-index: -1;
}

.orb-one {
    top: 120px;
    left: -120px;
    width: 340px;
    height: 340px;
    background: rgba(139, 92, 246, 0.28);
}

.orb-two {
    right: -120px;
    bottom: 120px;
    width: 380px;
    height: 380px;
    background: rgba(217, 70, 239, 0.18);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1100;
    padding: 16px 0;
    transition: padding var(--transition), background var(--transition), box-shadow var(--transition), backdrop-filter var(--transition);
}

.site-header.is-scrolled {
    padding: 8px 0;
    background: rgba(3, 8, 16, 0.72);
    backdrop-filter: blur(18px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.16);
}

.site-header .navbar {
    padding: 0;
}

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

.brand-mark {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    display: inline-grid;
    place-items: center;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #05111d;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    box-shadow: 0 12px 34px rgba(139, 92, 246, 0.35);
}

.brand-copy {
    display: grid;
    gap: 2px;
}

.site-logo-image {
    display: block;
    width: auto;
    max-width: 220px;
    max-height: 56px;
    object-fit: contain;
}

.footer-logo-image {
    max-height: 52px;
}

.brand-copy strong,
.section-heading h1,
.section-heading h2,
.hero-copy h1,
.glass-card h2,
.glass-card h3 {
    font-family: 'Space Grotesk', 'Manrope', sans-serif;
    letter-spacing: -0.03em;
}

.brand-copy strong {
    font-size: 1.15rem;
    line-height: 1;
}

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

.site-toggler {
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 8px 10px;
}

.site-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(139, 92, 246, 0.18);
}

.navbar-collapse {
    align-items: center;
}

.navbar-nav {
    gap: 10px;
}

.nav-link {
    position: relative;
    color: rgba(245, 251, 255, 0.78);
    font-weight: 600;
    padding: 10px 14px !important;
    border-radius: 999px;
    transition: color var(--transition), background var(--transition), transform var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--text);
    background: rgba(255, 255, 255, 0.05);
}

.site-nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.lang-switch {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.03);
    color: var(--muted);
}

.lang-option {
    color: var(--muted);
    font-weight: 700;
    font-size: 0.88rem;
    transition: color var(--transition);
}

.lang-option.active,
.lang-option:hover {
    color: var(--text);
}

.btn {
    border-radius: 999px;
    font-weight: 700;
    letter-spacing: -0.01em;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition), border-color var(--transition), color var(--transition);
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-brand {
    color: #031018;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    border: 0;
    box-shadow: 0 12px 34px rgba(139, 92, 246, 0.28);
}

.btn-brand:hover,
.btn-brand:focus {
    color: #031018;
    box-shadow: 0 16px 40px rgba(139, 92, 246, 0.34);
}

.btn-outline-brand {
    color: var(--text);
    border: 1px solid var(--line-strong);
    background: rgba(255, 255, 255, 0.03);
}

.btn-outline-brand:hover,
.btn-outline-brand:focus {
    color: var(--text);
    border-color: rgba(139, 92, 246, 0.5);
    background: rgba(139, 92, 246, 0.12);
}

.btn-login {
    color: var(--text);
    border: 1px solid rgba(139, 92, 246, 0.32);
    background: rgba(139, 92, 246, 0.1);
    padding: 12px 18px;
}

.btn-login:hover,
.btn-login:focus {
    color: var(--text);
    background: rgba(139, 92, 246, 0.18);
    border-color: rgba(139, 92, 246, 0.5);
}

.hero-section,
.page-hero {
    padding: 44px 0 32px;
}

.hero-section {
    min-height: calc(100vh - var(--header-height));
    display: flex;
    align-items: center;
}

.page-hero .eyebrow-badge {
    display: none;
}

.page-hero .section-heading h1 {
    margin-top: 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 38px;
    align-items: center;
}

.eyebrow-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #c8f7ff;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.eyebrow-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    box-shadow: 0 0 0 6px rgba(139, 92, 246, 0.12);
}

.eyebrow-badge.small {
    font-size: 0.72rem;
    padding: 7px 12px;
}

.hero-copy h1,
.page-hero h1 {
    margin: 18px 0 18px;
    font-size: clamp(2.8rem, 5vw, 5rem);
    line-height: 0.98;
}

.hero-copy h1 {
    max-width: 12ch;
}

.page-hero h1 {
    max-width: none;
    margin-left: auto;
    margin-right: auto;
}

.hero-subtitle,
.page-hero p,
.section-heading p,
.glass-card p,
.showcase-copy {
    color: var(--muted);
    font-size: 1.04rem;
    line-height: 1.75;
}

.hero-subtitle {
    max-width: 620px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.hero-metrics {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.metric-chip {
    min-width: 145px;
    padding: 16px 18px;
    border-radius: 20px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.04);
    box-shadow: var(--shadow-soft);
}

.metric-chip strong,
.mini-stat strong,
.demo-panel strong {
    display: block;
    font-size: 1.3rem;
    font-family: 'Space Grotesk', sans-serif;
}

.metric-chip span,
.mini-stat span,
.demo-panel span,
.setup-box span,
.contact-list span {
    display: block;
    color: var(--muted);
    font-size: 0.82rem;
}

.glass-card {
    position: relative;
    overflow: hidden;
    padding: 28px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--line);
    background: linear-gradient(180deg, rgba(13, 26, 46, 0.76), rgba(7, 15, 28, 0.9));
    backdrop-filter: blur(18px);
    box-shadow: var(--shadow);
}

.glass-card::after {
    content: '';
    position: absolute;
    inset: 1px;
    border-radius: calc(var(--radius-xl) - 1px);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0));
    opacity: 0.55;
    pointer-events: none;
}

.map-stage {
    min-height: 100%;
}

.map-stage-header,
.map-stage-footer,
.split-showcase {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.map-stage-header p {
    margin: 10px 0 0;
}

.status-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.84rem;
    background: rgba(217, 70, 239, 0.12);
    border: 1px solid rgba(217, 70, 239, 0.28);
}

.status-pill::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #d946ef;
    box-shadow: 0 0 0 8px rgba(217, 70, 239, 0.12);
}

.map-placeholder {
    position: relative;
    height: 400px;
    margin: 26px 0;
    border-radius: 26px;
    overflow: hidden;
    background:
        radial-gradient(circle at 20% 25%, rgba(139, 92, 246, 0.2), transparent 22%),
        radial-gradient(circle at 80% 70%, rgba(217, 70, 239, 0.14), transparent 20%),
        linear-gradient(180deg, rgba(5, 11, 21, 0.98), rgba(11, 23, 39, 0.96));
    border: 1px solid rgba(255, 255, 255, 0.07);
}

.map-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 46px 46px;
    mask-image: radial-gradient(circle at center, black 60%, transparent 100%);
}

.map-path {
    position: absolute;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(139, 92, 246, 0), rgba(139, 92, 246, 0.95), rgba(217, 70, 239, 0));
}

.path-one {
    left: 16%;
    top: 38%;
    width: 56%;
    transform: rotate(16deg);
}

.path-two {
    left: 24%;
    top: 62%;
    width: 42%;
    transform: rotate(-18deg);
}

.map-point {
    position: absolute;
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.95), rgba(217, 70, 239, 0.85));
    color: #031018;
    font-weight: 800;
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.25);
}

.point-a { top: 22%; left: 18%; }
.point-b { top: 54%; right: 18%; }
.point-c { bottom: 18%; left: 42%; }

.pulse-ring {
    position: absolute;
    inset: -10px;
    border-radius: inherit;
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: pulse 2.6s ease-out infinite;
}

.map-stage-footer {
    flex-wrap: wrap;
}

.mini-stat {
    min-width: 130px;
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.section-block {
    padding: 54px 0;
}

.section-alt {
    position: relative;
}

.section-heading {
    max-width: 760px;
    margin-bottom: 26px;
}

.section-heading.narrow {
    margin: 0 auto;
    text-align: center;
}

.section-heading h1,
.section-heading h2 {
    margin: 18px 0 0;
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1.04;
}

.icon-badge {
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.18), rgba(217, 70, 239, 0.16));
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.icon-badge.large {
    width: 68px;
    height: 68px;
    border-radius: 22px;
}

.icon-badge svg,
.floating-whatsapp svg {
    width: 26px;
    height: 26px;
    fill: currentColor;
}

.icon-badge svg {
    color: #d2fbff;
}

.feature-preview-card,
.feature-detail-card,
.device-card,
.info-card,
.value-card,
.contact-card,
.form-card {
    height: 100%;
}

.feature-preview-card h3,
.feature-detail-card h2,
.device-copy h2,
.info-card h2,
.value-card h3,
.contact-card h2,
.form-card h2,
.footer-cta h3 {
    margin: 0 0 12px;
    font-size: 1.45rem;
}

.feature-banner {
    display: flex;
    align-items: center;
    gap: 22px;
}

.split-showcase {
    min-height: 100%;
}

.demo-stack {
    display: grid;
    gap: 14px;
    min-width: 320px;
}

.demo-panel {
    padding: 18px 20px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.demo-panel p {
    margin: 8px 0 0;
    font-size: 0.95rem;
}

.logo-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 16px;
}

.logo-tile {
    display: grid;
    place-items: center;
    min-height: 92px;
    padding: 20px;
    border-radius: 20px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.04);
    color: #e3f5ff;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.device-media {
    min-height: 220px;
    display: grid;
    place-items: center;
    margin-bottom: 24px;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(139, 92, 246, 0.08));
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 22px;
}

.device-copy p,
.setup-box strong,
.contact-list strong {
    line-height: 1.7;
}

.setup-box {
    margin-top: 18px;
    padding: 18px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.contact-list,
.footer-links {
    list-style: none;
    padding: 0;
    margin: 24px 0 0;
}

.contact-list li,
.footer-links li {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-links li:last-child,
.contact-list li:last-child {
    border-bottom: 0;
}

.site-control {
    min-height: 56px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text);
    padding: 14px 18px;
}

.site-control:focus {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text);
    border-color: rgba(139, 92, 246, 0.45);
    box-shadow: 0 0 0 0.2rem rgba(139, 92, 246, 0.16);
}

.site-control::placeholder {
    color: #8aa3bb;
}

.site-textarea {
    min-height: 180px;
    resize: vertical;
}

.form-label {
    margin-bottom: 10px;
    font-weight: 700;
    color: #dff6ff;
}

.site-alert {
    border-radius: 18px;
    border: 1px solid transparent;
    background: rgba(255, 255, 255, 0.04);
}

.site-alert.alert-success {
    color: #d7fff1;
    border-color: rgba(24, 242, 178, 0.25);
    background: rgba(24, 242, 178, 0.1);
}

.site-alert.alert-danger {
    color: #ffe5ea;
    border-color: rgba(255, 92, 124, 0.25);
    background: rgba(255, 92, 124, 0.1);
}

.site-footer {
    padding: 46px 0 28px;
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(2, 6, 12, 0.72);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.85fr 1fr;
    gap: 24px;
    align-items: start;
}

.footer-brand p {
    max-width: 340px;
    margin: 18px 0 0;
    color: var(--muted);
}

.site-footer h3 {
    margin: 0 0 12px;
    font-size: 1rem;
    color: #dff6ff;
}

.footer-cta {
    padding: 24px;
}

.footer-bottom {
    margin-top: 26px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--muted);
    font-size: 0.92rem;
}

.floating-whatsapp {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 1200;
    width: 62px;
    height: 62px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    color: #031018;
    background: linear-gradient(135deg, #25d366, #15f1ab);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.32);
}

.floating-whatsapp:hover {
    color: #031018;
}

.reveal {
    opacity: 1;
    transform: none;
}

.site-body.has-reveal .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 650ms ease, transform 650ms ease;
    transition-delay: var(--reveal-delay, 0ms);
}

.site-body.has-reveal .reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.pt-0 {
    padding-top: 0;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

:focus-visible {
    outline: 2px solid rgba(139, 92, 246, 0.7);
    outline-offset: 3px;
}

@keyframes pulse {
    0% {
        transform: scale(0.92);
        opacity: 0.9;
    }
    70% {
        transform: scale(1.3);
        opacity: 0;
    }
    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

@media (max-width: 1199.98px) {
    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

@media (max-width: 991.98px) {
    .site-header .container {
        background: rgba(7, 15, 29, 0.92);
        border: 1px solid rgba(255, 255, 255, 0.07);
        border-radius: 24px;
        padding: 12px 16px;
        backdrop-filter: blur(18px);
    }

    .navbar-collapse {
        padding-top: 18px;
    }

    .navbar-nav {
        padding-bottom: 12px;
    }

    .site-nav-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
        padding-top: 8px;
    }

    .btn-login {
        width: 100%;
        text-align: center;
    }

    .hero-section {
        min-height: auto;
        padding-top: 18px;
    }

    .hero-grid,
    .split-showcase,
    .feature-banner {
        grid-template-columns: 1fr;
        display: grid;
    }

    .hero-copy h1,
    .page-hero h1 {
        max-width: none;
    }

    .map-placeholder {
        height: 340px;
    }

    .demo-stack {
        min-width: 0;
    }
}

@media (max-width: 767.98px) {
    .site-header {
        padding: 12px 0;
    }

    .hero-section,
    .page-hero {
        padding: 28px 0 18px;
    }

    .section-block {
        padding: 36px 0;
    }

    .glass-card {
        padding: 22px;
        border-radius: 24px;
    }

    .hero-copy h1,
    .page-hero h1 {
        font-size: clamp(2.3rem, 10vw, 3rem);
    }

    .section-heading h2 {
        font-size: 2rem;
    }

    .hero-metrics,
    .hero-actions,
    .map-stage-header,
    .map-stage-footer {
        gap: 12px;
    }

    .metric-chip,
    .mini-stat {
        width: 100%;
    }

    .logo-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .floating-whatsapp {
        right: 16px;
        bottom: 16px;
        width: 56px;
        height: 56px;
    }
}
