:root {
    --astra-bg: #030407;
    --astra-surface: #080a10;
    --astra-border: rgba(255, 255, 255, 0.12);

    --astra-text: #ffffff;
    --astra-muted: #9ca3af;

    --astra-cyan: #00e5ff;
    --astra-pink: #ff007f;
    --astra-green: #00ff66;

    --astra-font-main: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --astra-font-tech: "Courier New", monospace;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 85vh;
    background: var(--astra-bg);
    color: var(--astra-text);
    font-family: var(--astra-font-main);
    overflow-x: hidden;
}

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

.astra-main {
    position: relative;
    z-index: 2;
}

.astra-bg-grid {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(0, 229, 255, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 229, 255, 0.045) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: linear-gradient(to bottom, black, transparent 90%);
}

.astra-glow {
    position: fixed;
    width: 420px;
    height: 420px;
    border-radius: 999px;
    filter: blur(120px);
    opacity: 0.25;
    z-index: 0;
    pointer-events: none;
}

.astra-glow-cyan {
    top: 10%;
    right: 8%;
    background: var(--astra-cyan);
}

.astra-glow-pink {
    top: 25%;
    left: -10%;
    background: var(--astra-pink);
}

/* =========================
   NAVBAR FINAL
========================= */

.astra-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;

    height: 92px;
    padding: 0 40px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    background: rgba(3, 4, 7, 0.82);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255,255,255,.08);

    transition: transform .35s ease, background .35s ease;
}

.astra-navbar.nav-hidden {
    transform: translateY(-110%);
}

.astra-navbar::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, var(--astra-pink), var(--astra-cyan), var(--astra-green));
    opacity: .45;
}

/* Brand */

.astra-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    z-index: 2;
}

.astra-brand-text {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.astra-brand-text strong {
    color: white;
    font-size: 1.45rem;
    letter-spacing: -0.05em;
}

.astra-brand-text strong span {
    color: var(--astra-cyan);
}

.astra-brand-text small {
    color: var(--astra-muted);
    font-family: var(--astra-font-tech);
    letter-spacing: .42em;
    font-size: .72rem;
}

/* Links desktop */

.astra-nav-links {
    display: flex;
    align-items: center;
    gap: 42px;
    z-index: 2;
}

.astra-nav-links a {
    color: #d1d5db;
    font-family: var(--astra-font-tech);
    text-transform: uppercase;
    letter-spacing: .34em;
    font-size: .78rem;
}

.astra-nav-links a:hover {
    color: var(--astra-cyan);
    text-shadow: 0 0 14px rgba(0,229,255,.7);
}

.astra-nav-cta {
    z-index: 2;
    padding: 17px 24px;
    border: 1px solid var(--astra-pink);
    color: var(--astra-pink);
    font-family: var(--astra-font-tech);
    text-transform: uppercase;
    letter-spacing: .18em;
    font-size: .82rem;
}

.astra-nav-cta:hover {
    background: var(--astra-pink);
    color: white;
    box-shadow: 0 0 28px rgba(255,0,127,.55);
}

.astra-menu-toggle {
    display: none;
}


/* =========================
   MOBILE NAVBAR
========================= */

@media (max-width: 900px) {
    .astra-navbar {
        height: auto;
        min-height: 86px;
        padding: 18px 22px;
        flex-wrap: wrap;
        gap: 18px;
    }

    .astra-logo-mark {
        width: 38px;
        height: 38px;
        border-width: 3px;
    }

    .astra-logo-mark span {
        width: 10px;
        height: 10px;
    }

    .astra-brand-text {
        flex-wrap: wrap;
        max-width: 230px;
    }

    .astra-brand-text strong {
        font-size: 1.25rem;
    }

    .astra-brand-text small {
        font-size: .6rem;
        letter-spacing: .32em;
    }

    .astra-menu-toggle {
        display: block;
        margin-left: auto;
        background: none;
        border: 0;
        color: white;
        font-size: 2rem;
        cursor: pointer;
        z-index: 3;
    }

    .astra-nav-links {
        position: absolute;
        top: 100%;
        left: 0;

        width: 100%;
        padding: 24px 22px;

        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 18px 28px;

        background: rgba(3,4,7,.96);
        border-bottom: 1px solid rgba(0,229,255,.35);
        backdrop-filter: blur(18px);

        opacity: 0;
        pointer-events: none;
        transform: translateY(-12px);
        transition: .25s ease;
    }

    .astra-nav-links.active {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .astra-nav-links a {
        font-size: .72rem;
        letter-spacing: .22em;
    }

    .astra-nav-cta {
        display: none;
    }
}

.astra-main {
    padding-top: 92px;
}

@media (max-width: 900px) {
    .astra-main {
        padding-top: 86px;
    }
}

/* =========================
   FOOTER / HRBAR
========================= */

.astra-footer {
    position: relative;
    z-index: 2;
    padding: 56px 32px 28px;
    border-top: 1px solid rgba(255,255,255,.08);
    background:
        radial-gradient(circle at 15% 20%, rgba(255,0,127,.08), transparent 28%),
        radial-gradient(circle at 85% 40%, rgba(0,229,255,.08), transparent 30%),
        rgba(3,4,7,.94);
}

.astra-footer-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 42px;
    align-items: start;
}

.astra-footer-brand strong {
    color: white;
    font-size: 1.7rem;
    letter-spacing: -0.05em;
}

.astra-footer-brand strong span {
    color: var(--astra-cyan);
}

.astra-footer-brand p,
.astra-footer-made p,
.astra-footer-bottom p {
    color: var(--astra-muted);
    font-family: var(--astra-font-tech);
    letter-spacing: .16em;
    font-size: .78rem;
    line-height: 1.7;
}

.astra-footer-made span {
    display: block;
    margin-bottom: 10px;
    color: var(--astra-pink);
    font-family: var(--astra-font-tech);
    letter-spacing: .28em;
    font-size: .72rem;
}

.astra-footer-made strong {
    color: white;
    font-size: 1.35rem;
}

.astra-footer-links {
    margin-top: 44px;
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    font-family: var(--astra-font-tech);
    text-transform: uppercase;
    letter-spacing: .22em;
    font-size: .76rem;
}

.astra-footer-links a {
    color: #d1d5db;
    transition: .25s ease;
}

.astra-footer-links a:hover {
    color: var(--astra-cyan);
    text-shadow: 0 0 14px rgba(0,229,255,.7);
}

.astra-footer-bottom {
    margin-top: 44px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,.08);
    display: flex;
    justify-content: space-between;
    gap: 24px;
}

@media (max-width: 760px) {
    .astra-footer {
        padding: 44px 22px 26px;
    }

    .astra-footer-main {
        grid-template-columns: 1fr;
    }

    .astra-footer-links {
        gap: 18px;
        font-size: .68rem;
    }

    .astra-footer-bottom {
        flex-direction: column;
    }
}



/* =========================
   HERO ASTRA CORE
========================= */

.astra-hero-section {
    position: relative;
    min-height: calc(100vh - 92px);
    padding: 90px 32px 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 48px;
    overflow: hidden;
}

.astra-hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 12% 20%, rgba(255, 0, 127, 0.24), transparent 34%),
        radial-gradient(circle at 80% 40%, rgba(0, 229, 255, 0.16), transparent 38%);
    pointer-events: none;
}

.astra-hero-content,
.astra-hero-panel {
    position: relative;
    z-index: 2;
}

.astra-hero-badge {
    width: fit-content;
    margin-bottom: 34px;
    padding: 12px 18px;
    border: 1px solid rgba(0, 229, 255, 0.45);
    color: var(--astra-cyan);
    font-family: var(--astra-font-tech);
    letter-spacing: 0.28em;
    font-size: 0.78rem;
    background: rgba(3, 4, 7, 0.55);
    box-shadow: 0 0 22px rgba(0, 229, 255, 0.08);
}

.astra-hero-badge span {
    width: 9px;
    height: 9px;
    display: inline-block;
    margin-right: 10px;
    border-radius: 50%;
    background: var(--astra-green);
    box-shadow: 0 0 14px rgba(0, 255, 102, 0.9);
}

.astra-hero-title {
    margin: 0;
    max-width: 850px;
    color: #fff;
    font-size: clamp(3.3rem, 8vw, 8.5rem);
    line-height: 0.86;
    letter-spacing: -0.08em;
    font-weight: 950;
}

.pink-glow {
    color: var(--astra-pink);
    text-shadow:
        0 0 14px rgba(255, 0, 127, 0.85),
        0 0 34px rgba(255, 0, 127, 0.55);
}

.cyan-glow {
    color: var(--astra-cyan);
    text-shadow:
        0 0 14px rgba(0, 229, 255, 0.85),
        0 0 34px rgba(0, 229, 255, 0.55);
}

.green-glow {
    color: var(--astra-green);
    text-shadow:
        0 0 14px rgba(0, 255, 102, 0.85),
        0 0 34px rgba(0, 255, 102, 0.55);
}

.astra-hero-description {
    max-width: 680px;
    margin: 34px 0 0;
    color: var(--astra-muted);
    font-size: clamp(1rem, 1.4vw, 1.35rem);
    line-height: 1.75;
}

.astra-hero-actions {
    margin-top: 42px;
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.astra-btn {
    min-width: 230px;
    padding: 20px 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    text-transform: uppercase;
    font-family: var(--astra-font-tech);
    font-size: 0.82rem;
    letter-spacing: 0.22em;
    transition: 0.28s ease;
}

.astra-btn-primary {
    background: var(--astra-pink);
    color: white;
    box-shadow: 0 0 32px rgba(255, 0, 127, 0.5);
}

.astra-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 46px rgba(255, 0, 127, 0.75);
}

.astra-btn-secondary {
    border: 1px solid rgba(0, 229, 255, 0.6);
    color: var(--astra-cyan);
    background: rgba(0, 229, 255, 0.03);
}

.astra-btn-secondary:hover {
    background: rgba(0, 229, 255, 0.12);
    transform: translateY(-3px);
    box-shadow: 0 0 28px rgba(0, 229, 255, 0.25);
}

/* Panel derecho */

.astra-hero-panel {
    min-height: 620px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.astra-hero-stats {
    display: flex;
    justify-content: space-between;
    gap: 22px;
    margin-bottom: 38px;
}

.astra-hero-stats div {
    min-width: 150px;
}

.astra-hero-stats strong {
    display: block;
    font-size: clamp(2rem, 4vw, 4rem);
    line-height: 1;
    letter-spacing: -0.05em;
}

.astra-hero-stats span {
    display: block;
    margin-top: 10px;
    color: var(--astra-muted);
    font-family: var(--astra-font-tech);
    text-transform: uppercase;
    letter-spacing: 0.28em;
    font-size: 0.72rem;
}

/* Holograma */

.astra-dashboard-hologram {
    position: relative;
    min-height: 430px;
    padding: 28px;
    border: 1px solid rgba(0, 229, 255, 0.32);
    background:
        linear-gradient(180deg, rgba(0, 229, 255, 0.11), rgba(0, 229, 255, 0.015)),
        rgba(4, 10, 14, 0.52);
    box-shadow:
        inset 0 0 80px rgba(0, 229, 255, 0.08),
        0 0 70px rgba(0, 229, 255, 0.14);
    backdrop-filter: blur(10px);
    animation: floatUI 6s ease-in-out infinite;
}

.astra-dashboard-hologram::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 229, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 229, 255, 0.05) 1px, transparent 1px);
    background-size: 48px 48px;
    opacity: 0.55;
    pointer-events: none;
}

.holo-corner {
    position: absolute;
    width: 42px;
    height: 42px;
    border-color: var(--astra-pink);
}

.corner-tl {
    top: -1px;
    left: -1px;
    border-top: 2px solid;
    border-left: 2px solid;
}

.corner-tr {
    top: -1px;
    right: -1px;
    border-top: 2px solid;
    border-right: 2px solid;
}

.corner-bl {
    bottom: -1px;
    left: -1px;
    border-bottom: 2px solid;
    border-left: 2px solid;
}

.corner-br {
    bottom: -1px;
    right: -1px;
    border-bottom: 2px solid;
    border-right: 2px solid;
}

.holo-header {
    position: relative;
    z-index: 2;
    margin-bottom: 26px;
    color: var(--astra-cyan);
    font-family: var(--astra-font-tech);
    letter-spacing: 0.22em;
    font-size: 0.78rem;
}

.holo-header span {
    width: 10px;
    height: 10px;
    display: inline-block;
    margin-right: 10px;
    border-radius: 50%;
    background: var(--astra-green);
    box-shadow: 0 0 14px var(--astra-green);
}

.holo-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.holo-card {
    min-height: 112px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(3, 4, 7, 0.58);
}

.holo-card.large {
    grid-column: span 2;
}

.holo-card small {
    color: var(--astra-muted);
    font-family: var(--astra-font-tech);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.68rem;
}

.holo-card strong {
    display: block;
    margin-top: 12px;
    font-size: 2rem;
    color: white;
}

.holo-line {
    margin-top: 24px;
    height: 8px;
    border-radius: 999px;
    background:
        linear-gradient(
            90deg,
            var(--astra-cyan),
            var(--astra-pink),
            var(--astra-green)
        );
    box-shadow: 0 0 22px rgba(0, 229, 255, 0.45);
}

/* Animaciones */

@keyframes floatUI {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-18px);
    }
}

/* Responsive */

@media (max-width: 1100px) {
    .astra-hero-section {
        grid-template-columns: 1fr;
    }

    .astra-hero-panel {
        min-height: auto;
    }
}

@media (max-width: 720px) {
    .astra-hero-section {
        padding: 72px 20px 60px;
    }

    .astra-hero-title {
        font-size: clamp(3rem, 16vw, 5rem);
    }

    .astra-hero-stats {
        flex-direction: column;
    }

    .astra-dashboard-hologram {
        min-height: auto;
        padding: 22px;
    }

    .holo-grid {
        grid-template-columns: 1fr;
    }

    .holo-card.large {
        grid-column: span 1;
    }

    .astra-btn {
        width: 100%;
    }
}

@keyframes neonPulse {
    0% {
        text-shadow:
            0 0 14px rgba(255, 0, 127, 0.75),
            0 0 34px rgba(255, 0, 127, 0.45);
    }

    50% {
        text-shadow:
            0 0 20px rgba(255, 0, 127, 1),
            0 0 50px rgba(255, 0, 127, 0.75);
    }

    100% {
        text-shadow:
            0 0 14px rgba(255, 0, 127, 0.75),
            0 0 34px rgba(255, 0, 127, 0.45);
    }
}

/* =========================
   PROOF STRIP
========================= */

.astra-proof-strip {
    position: relative;
    z-index: 2;
    padding: 28px 0;
    overflow: hidden;
    border-top: 1px solid rgba(255,255,255,0.08);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    background:
        linear-gradient(90deg, rgba(255,0,127,0.08), transparent 22%, rgba(0,229,255,0.08));
}

.astra-proof-strip::before,
.astra-proof-strip::after {
    content: "";
    position: absolute;
    top: 0;
    width: 120px;
    height: 100%;
    z-index: 3;
    pointer-events: none;
}

.astra-proof-strip::before {
    left: 0;
    background: linear-gradient(90deg, var(--astra-bg), transparent);
}

.astra-proof-strip::after {
    right: 0;
    background: linear-gradient(-90deg, var(--astra-bg), transparent);
}

.proof-track {
    display: flex;
    gap: 20px;
    width: max-content;
    padding: 0 32px;
    animation: proofMarquee 38s linear infinite;
}

.astra-proof-strip:hover .proof-track {
    animation-play-state: paused;
}

.proof-pill {
    width: 330px;
    min-height: 185px;
    padding: 24px;
    flex: 0 0 auto;
    border: 1px solid rgba(255,255,255,0.12);
    background:
        linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.01)),
        rgba(3,4,7,0.72);
    backdrop-filter: blur(12px);
    transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.proof-pill:hover {
    transform: translateY(-8px);
}

.proof-code {
    display: block;
    margin-bottom: 28px;
    font-family: var(--astra-font-tech);
    font-size: .72rem;
    letter-spacing: .28em;
}

.proof-pill h3 {
    margin: 0;
    color: white;
    font-size: 1.55rem;
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.proof-pill p {
    margin: 16px 0 0;
    color: var(--astra-muted);
    font-size: .98rem;
    line-height: 1.6;
}

.proof-pink {
    border-color: rgba(255,0,127,.38);
}

.proof-pink .proof-code {
    color: var(--astra-pink);
}

.proof-pink:hover {
    box-shadow: 0 0 32px rgba(255,0,127,.22);
}

.proof-cyan {
    border-color: rgba(0,229,255,.38);
}

.proof-cyan .proof-code {
    color: var(--astra-cyan);
}

.proof-cyan:hover {
    box-shadow: 0 0 32px rgba(0,229,255,.22);
}

.proof-green {
    border-color: rgba(0,255,102,.32);
}

.proof-green .proof-code {
    color: var(--astra-green);
}

.proof-green:hover {
    box-shadow: 0 0 32px rgba(0,255,102,.18);
}

@keyframes proofMarquee {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

@media (max-width: 760px) {
    .proof-track {
        width: auto;
        padding: 0 20px;
        overflow-x: auto;
        animation: none;
        scroll-snap-type: x mandatory;
    }

    .proof-pill {
        width: 280px;
        scroll-snap-align: start;
    }
}

/* =========================
   PROBLEM / SOLUTION
========================= */

.astra-problem-solution {
    position: relative;
    z-index: 2;
    padding: 110px 32px;
    display: grid;
    grid-template-columns: 1fr 90px 1fr;
    gap: 32px;
    overflow: hidden;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.astra-problem-solution::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 42%, rgba(255,0,127,0.12), transparent 32%),
        radial-gradient(circle at 82% 48%, rgba(0,229,255,0.12), transparent 34%);
    pointer-events: none;
}

.astra-chaos-card,
.astra-solution-card {
    position: relative;
    min-height: 620px;
    padding: 46px;
    border: 1px solid rgba(255,255,255,0.12);
    background:
        linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.008)),
        rgba(3,4,7,0.68);
    backdrop-filter: blur(14px);
    overflow: hidden;
}

.astra-chaos-card {
    border-color: rgba(255,0,127,0.32);
    box-shadow: inset 0 0 80px rgba(255,0,127,0.035);
}

.astra-solution-card {
    border-color: rgba(0,229,255,0.34);
    box-shadow: inset 0 0 80px rgba(0,229,255,0.04);
}

.astra-chaos-card::before,
.astra-solution-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
    background-size: 54px 54px;
    opacity: 0.35;
    pointer-events: none;
}

.astra-section-tag {
    position: relative;
    z-index: 2;
    display: inline-flex;
    margin-bottom: 34px;
    font-family: var(--astra-font-tech);
    font-size: .78rem;
    letter-spacing: .32em;
}

.astra-section-tag.pink {
    color: var(--astra-pink);
}

.astra-section-tag.cyan {
    color: var(--astra-cyan);
}

.astra-chaos-card h2,
.astra-solution-card h2 {
    position: relative;
    z-index: 2;
    margin: 0;
    color: white;
    font-size: clamp(2.2rem, 4vw, 4.6rem);
    line-height: .92;
    letter-spacing: -0.07em;
    font-weight: 950;
}

.astra-chaos-card h2 span {
    display: block;
    margin-top: 14px;
    color: var(--astra-pink);
    text-shadow:
        0 0 18px rgba(255,0,127,.65),
        0 0 42px rgba(255,0,127,.35);
}

.astra-solution-card h2 span {
    display: block;
    margin-top: 14px;
    color: var(--astra-cyan);
    text-shadow:
        0 0 18px rgba(0,229,255,.65),
        0 0 42px rgba(0,229,255,.35);
}

.astra-chaos-card p,
.astra-solution-card p {
    position: relative;
    z-index: 2;
    margin: 28px 0 0;
    max-width: 620px;
    color: var(--astra-muted);
    font-size: 1.1rem;
    line-height: 1.75;
}

.astra-issue-list,
.astra-solution-list {
    position: relative;
    z-index: 2;
    margin-top: 42px;
    display: grid;
    gap: 16px;
}

.astra-issue-list div,
.astra-solution-list div {
    position: relative;
    padding: 18px 20px 18px 54px;
    border: 1px solid rgba(255,255,255,0.10);
    background: rgba(0,0,0,0.28);
    color: #e5e7eb;
    font-size: 1rem;
    line-height: 1.45;
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.astra-issue-list div::before,
.astra-solution-list div::before {
    position: absolute;
    left: 20px;
    top: 18px;
    font-family: var(--astra-font-tech);
    font-weight: 700;
}

.astra-issue-list div::before {
    content: "×";
    color: var(--astra-pink);
    text-shadow: 0 0 14px rgba(255,0,127,.7);
}

.astra-solution-list div::before {
    content: "✓";
    color: var(--astra-green);
    text-shadow: 0 0 14px rgba(0,255,102,.7);
}

.astra-issue-list div:hover {
    transform: translateX(8px);
    border-color: rgba(255,0,127,0.42);
    box-shadow: 0 0 26px rgba(255,0,127,0.14);
}

.astra-solution-list div:hover {
    transform: translateX(8px);
    border-color: rgba(0,229,255,0.42);
    box-shadow: 0 0 26px rgba(0,229,255,0.14);
}

/* Divider */

.astra-core-divider {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.astra-core-divider::before {
    content: "";
    width: 1px;
    height: 100%;
    background: linear-gradient(
        transparent,
        rgba(255,0,127,0.65),
        rgba(0,229,255,0.75),
        transparent
    );
    box-shadow: 0 0 28px rgba(0,229,255,0.45);
}

.astra-core-divider span {
    position: absolute;
    width: 52px;
    height: 52px;
    border: 2px solid var(--astra-cyan);
    background: var(--astra-bg);
    transform: rotate(45deg);
    box-shadow:
        0 0 22px rgba(0,229,255,.45),
        inset 0 0 20px rgba(0,229,255,.12);
}

.astra-core-divider span::before {
    content: "";
    position: absolute;
    inset: 15px;
    border-radius: 50%;
    background: var(--astra-pink);
    box-shadow: 0 0 18px rgba(255,0,127,.85);
}

/* Reveal básico */

.reveal-left,
.reveal-right {
    opacity: 0;
    animation: revealUp .9s ease forwards;
}

.reveal-right {
    animation-delay: .18s;
}

@keyframes revealUp {
    from {
        opacity: 0;
        transform: translateY(36px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */

@media (max-width: 1100px) {
    .astra-problem-solution {
        grid-template-columns: 1fr;
        padding: 80px 22px;
    }

    .astra-core-divider {
        height: 90px;
    }

    .astra-core-divider::before {
        width: 100%;
        height: 1px;
    }

    .astra-chaos-card,
    .astra-solution-card {
        min-height: auto;
        padding: 34px 26px;
    }
}

@media (max-width: 640px) {
    .astra-chaos-card h2,
    .astra-solution-card h2 {
        font-size: clamp(2.3rem, 13vw, 3.8rem);
    }

    .astra-section-tag {
        font-size: .68rem;
        letter-spacing: .22em;
    }

    .astra-issue-list div,
    .astra-solution-list div {
        padding: 16px 16px 16px 46px;
    }
}

/* =========================
   MODULES
========================= */

.astra-modules {
    position: relative;
    z-index: 2;
    padding: 120px 32px;
    overflow: hidden;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.astra-modules::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 22% 18%, rgba(0,229,255,0.12), transparent 28%),
        radial-gradient(circle at 78% 45%, rgba(255,0,127,0.12), transparent 30%);
    pointer-events: none;
}

.astra-modules-header {
    position: relative;
    z-index: 2;
    max-width: 920px;
    margin-bottom: 64px;
}

.astra-modules-header h2 {
    margin: 0;
    color: white;
    font-size: clamp(2.7rem, 6vw, 6.8rem);
    line-height: .9;
    letter-spacing: -0.075em;
    font-weight: 950;
}

.astra-modules-header h2 span {
    display: block;
    color: var(--astra-cyan);
    text-shadow:
        0 0 18px rgba(0,229,255,.75),
        0 0 42px rgba(0,229,255,.38);
}

.astra-modules-header p {
    max-width: 760px;
    margin: 28px 0 0;
    color: var(--astra-muted);
    font-size: 1.15rem;
    line-height: 1.75;
}

.astra-modules-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.astra-module-card {
    position: relative;
    min-height: 360px;
    padding: 36px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.12);
    background:
        linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.008)),
        rgba(3,4,7,0.72);
    backdrop-filter: blur(14px);
    transition:
        transform .28s ease,
        border-color .28s ease,
        box-shadow .28s ease;
}

.astra-module-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.032) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.032) 1px, transparent 1px);
    background-size: 48px 48px;
    opacity: .35;
    pointer-events: none;
}

.astra-module-card::after {
    content: "";
    position: absolute;
    width: 160px;
    height: 160px;
    right: -60px;
    bottom: -60px;
    border-radius: 50%;
    filter: blur(28px);
    opacity: .16;
    transition: opacity .28s ease, transform .28s ease;
}

.astra-module-card:hover {
    transform: translateY(-10px);
}

.astra-module-card:hover::after {
    opacity: .34;
    transform: scale(1.15);
}

.astra-module-card span,
.astra-module-card h3,
.astra-module-card p,
.module-mini-preview {
    position: relative;
    z-index: 2;
}

.astra-module-card > span {
    display: block;
    margin-bottom: 34px;
    font-family: var(--astra-font-tech);
    font-size: .76rem;
    letter-spacing: .32em;
}

.astra-module-card h3 {
    margin: 0;
    color: white;
    font-size: clamp(2rem, 3vw, 3.2rem);
    line-height: .98;
    letter-spacing: -0.065em;
    font-weight: 950;
}

.astra-module-card p {
    margin: 22px 0 0;
    max-width: 420px;
    color: var(--astra-muted);
    font-size: 1.02rem;
    line-height: 1.65;
}

/* Colores */

.module-pink {
    border-color: rgba(255,0,127,.35);
}

.module-pink > span {
    color: var(--astra-pink);
}

.module-pink::after {
    background: var(--astra-pink);
}

.module-pink:hover {
    box-shadow: 0 0 36px rgba(255,0,127,.18);
}

.module-cyan {
    border-color: rgba(0,229,255,.35);
}

.module-cyan > span {
    color: var(--astra-cyan);
}

.module-cyan::after {
    background: var(--astra-cyan);
}

.module-cyan:hover {
    box-shadow: 0 0 36px rgba(0,229,255,.18);
}

.module-green {
    border-color: rgba(0,255,102,.28);
}

.module-green > span {
    color: var(--astra-green);
}

.module-green::after {
    background: var(--astra-green);
}

.module-green:hover {
    box-shadow: 0 0 36px rgba(0,255,102,.14);
}

/* Recetas destacada */

.featured-module {
    min-height: 440px;
}

.module-mini-preview {
    margin-top: 34px;
    padding: 22px;
    border: 1px solid rgba(0,229,255,.28);
    background: rgba(0,0,0,.35);
    box-shadow: inset 0 0 35px rgba(0,229,255,.05);
}

.module-mini-preview strong {
    display: block;
    color: white;
    font-size: 1.15rem;
}

.module-mini-preview small {
    display: inline-block;
    margin-top: 12px;
    padding: 7px 10px;
    color: white;
    background: rgba(0,255,102,.7);
    font-weight: 800;
    border-radius: 4px;
}

.module-mini-preview div {
    margin-top: 20px;
    height: 7px;
    border-radius: 999px;
    background: linear-gradient(
        90deg,
        var(--astra-cyan),
        var(--astra-pink),
        var(--astra-green)
    );
    box-shadow: 0 0 18px rgba(0,229,255,.5);
}

/* Responsive */

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

@media (max-width: 720px) {
    .astra-modules {
        padding: 82px 20px;
    }

    .astra-modules-grid {
        grid-template-columns: 1fr;
    }

    .astra-module-card,
    .featured-module {
        min-height: auto;
        padding: 30px 24px;
    }
}

.module-3d-icon {
    width: 120px;
    position: absolute;
    bottom: 20px;
    right: 20px;
    animation: floatIcon 4s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(0,229,255,.4));
}

@keyframes floatIcon {
    0% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-12px) rotate(3deg);
    }
    100% {
        transform: translateY(0px) rotate(0deg);
    }
}

/* =========================
   LIVE PREVIEW
========================= */

.astra-live-preview {
    position: relative;
    z-index: 2;
    padding: 120px 32px;
    overflow: hidden;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.astra-live-preview::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 70% 35%, rgba(0,229,255,0.14), transparent 34%),
        radial-gradient(circle at 20% 80%, rgba(255,0,127,0.10), transparent 32%);
    pointer-events: none;
}

.astra-live-header {
    position: relative;
    z-index: 2;
    max-width: 980px;
    margin-bottom: 70px;
}

.astra-live-header h2 {
    margin: 0;
    color: white;
    font-size: clamp(3rem, 7vw, 7rem);
    line-height: .9;
    letter-spacing: -0.075em;
    font-weight: 950;
}

.astra-live-header h2 span {
    color: var(--astra-cyan);
    text-shadow:
        0 0 18px rgba(0,229,255,.75),
        0 0 42px rgba(0,229,255,.38);
}

.astra-live-header p {
    max-width: 760px;
    margin: 28px 0 0;
    color: var(--astra-muted);
    font-size: 1.15rem;
    line-height: 1.75;
}

.astra-demo-stage {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 34px;
    align-items: stretch;
}

.astra-demo-info {
    padding: 34px;
    border: 1px solid rgba(255,0,127,.28);
    background: rgba(3,4,7,.72);
    backdrop-filter: blur(14px);
}

.astra-demo-info > span {
    color: var(--astra-pink);
    font-family: var(--astra-font-tech);
    letter-spacing: .32em;
    font-size: .76rem;
}

.astra-demo-info h3 {
    margin: 32px 0 0;
    color: white;
    font-size: 3rem;
    line-height: .95;
    letter-spacing: -0.06em;
}

.astra-demo-info p {
    margin: 24px 0 0;
    color: var(--astra-muted);
    font-size: 1.05rem;
    line-height: 1.7;
}

.astra-demo-actions {
    margin-top: 38px;
    display: grid;
    gap: 14px;
}

.astra-demo-screen {
    position: relative;
    min-height: 520px;
    padding: 20px;
    border: 1px solid rgba(0,229,255,.38);
    background:
        linear-gradient(180deg, rgba(0,229,255,.08), rgba(0,229,255,.015)),
        rgba(3,4,7,.6);
    box-shadow:
        0 0 60px rgba(0,229,255,.16),
        inset 0 0 80px rgba(0,229,255,.06);
}

.astra-demo-screen img {
    width: 100%;
    height: 100%;
    min-height: 480px;
    display: block;
    filter: saturate(1.05) contrast(1.05);
    opacity: 1;
    transition: opacity .28s ease, transform .28s ease;
}

.astra-demo-screen img.is-changing {
    opacity: 0;
    transform: scale(.985);
}

.demo-corner {
    position: absolute;
    width: 40px;
    height: 40px;
    z-index: 3;
    color: var(--astra-cyan);
}

.demo-corner.corner-tl {
    top: -1px;
    left: -1px;
    border-top: 2px solid;
    border-left: 2px solid;
}

.demo-corner.corner-tr {
    top: -1px;
    right: -1px;
    border-top: 2px solid;
    border-right: 2px solid;
}

.demo-corner.corner-bl {
    bottom: -1px;
    left: -1px;
    border-bottom: 2px solid;
    border-left: 2px solid;
}

.demo-corner.corner-br {
    bottom: -1px;
    right: -1px;
    border-bottom: 2px solid;
    border-right: 2px solid;
}

.astra-demo-controls {
    position: relative;
    z-index: 2;
    margin-top: 34px;
    display: flex;
    gap: 16px;
}

.demo-dot {
    width: 70px;
    height: 6px;
    border: 0;
    cursor: pointer;
    background: rgba(255,255,255,.18);
    transition: .25s ease;
}

.demo-dot.active {
    width: 110px;
    background: var(--astra-pink);
    box-shadow: 0 0 18px rgba(255,0,127,.75);
}

.demo-dot:hover {
    background: var(--astra-cyan);
    box-shadow: 0 0 18px rgba(0,229,255,.65);
}

.demo-screen img{
    border-radius: 18px;
    box-shadow:
        0 0 40px rgba(0,255,255,.08),
        0 0 80px rgba(255,0,140,.05);
}

@media (max-width: 1050px) {
    .astra-demo-stage {
        grid-template-columns: 1fr;
    }

    .astra-demo-info {
        order: 2;
    }

    .astra-demo-screen {
        order: 1;
    }
}

@media (max-width: 700px) {
    .astra-live-preview {
        padding: 82px 20px;
    }

    .astra-demo-screen {
        min-height: auto;
        padding: 12px;
    }

    .astra-demo-screen img {
        min-height: 260px;
    }

    .astra-demo-info h3 {
        font-size: 2.4rem;
    }

    .astra-demo-controls {
        overflow-x: auto;
    }
}

/* =========================
   POWER SECTION
========================= */

.astra-power-section {
    position: relative;
    padding: 130px 32px;
    overflow: hidden;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* fondo glow */
.astra-power-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(255,0,127,0.12), transparent 30%),
        radial-gradient(circle at 80% 50%, rgba(0,229,255,0.12), transparent 30%);
    pointer-events: none;
}

/* header */
.power-header {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto 80px;
    text-align: center;
}

.power-header h2 {
    margin-top: 20px;
    font-size: clamp(3rem, 7vw, 6rem);
    color: white;
    line-height: .9;
    font-weight: 900;
    letter-spacing: -0.07em;
}

.power-header h2 span {
    color: var(--astra-pink);
    text-shadow:
        0 0 15px rgba(255,0,127,.8),
        0 0 35px rgba(255,0,127,.5);
}

.power-header p {
    margin-top: 25px;
    color: var(--astra-muted);
    font-size: 1.1rem;
    line-height: 1.8;
}

/* comparación */
.power-comparison {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 80px 1fr;
    gap: 30px;
    align-items: center;
}

/* cajas */
.power-box {
    padding: 50px;
    min-height: 520px;
    background: rgba(5,5,10,0.7);
    backdrop-filter: blur(10px);
    transition: .4s ease;
}

.power-box h3 {
    margin-top: 25px;
    font-size: 2.4rem;
    color: white;
    line-height: 1;
}

.power-box ul {
    margin-top: 40px;
    list-style: none;
    padding: 0;
}

.power-box ul li {
    padding: 18px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    color: var(--astra-muted);
    font-size: 1.05rem;
}

/* legacy */
.legacy-box {
    border: 1px solid rgba(255,0,127,0.25);
}

.legacy-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 30px rgba(255,0,127,0.15);
}

.legacy-label {
    color: var(--astra-pink);
}

/* astra */
.astra-box {
    border: 1px solid rgba(0,229,255,0.25);
}

.astra-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 35px rgba(0,229,255,0.18);
}

.astra-label {
    color: var(--astra-cyan);
}

/* etiquetas */
.power-label {
    font-size: .75rem;
    letter-spacing: .35em;
    font-family: var(--astra-font-tech);
}

/* línea central */
.power-divider {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.divider-core {
    width: 2px;
    height: 300px;
    background: linear-gradient(
        to bottom,
        transparent,
        var(--astra-cyan),
        var(--astra-pink),
        transparent
    );
    position: relative;
}

.divider-core::after {
    content: "";
    width: 20px;
    height: 20px;
    background: var(--astra-pink);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: -9px;
    transform: translateY(-50%);
    box-shadow:
        0 0 20px rgba(255,0,127,.9),
        0 0 50px rgba(255,0,127,.5);
    animation: pulseCore 2s infinite;
}

@keyframes pulseCore {
    0% { transform: translateY(-50%) scale(1); }
    50% { transform: translateY(-50%) scale(1.2); }
    100% { transform: translateY(-50%) scale(1); }
}

/* easter egg */
.power-easter {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-top: 70px;
}

.power-easter p {
    color: var(--astra-green);
    font-family: var(--astra-font-tech);
    letter-spacing: .25em;
    font-size: .9rem;
    opacity: 0.8;
}

/* responsive */
@media (max-width: 1000px) {
    .power-comparison {
        grid-template-columns: 1fr;
    }

    .power-divider {
        display: none;
    }

    .power-box {
        min-height: auto;
    }
}

@media (max-width: 700px) {
    .astra-power-section {
        padding: 90px 20px;
    }

    .power-header h2 {
        font-size: 3rem;
    }

    .power-box {
        padding: 30px;
    }
}

/* =========================
   ACCESSIBILITY BOX
========================= */

.astra-accessibility-box {
    margin-top: 90px;
    padding: 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    position: relative;
    z-index: 2;
    border: 1px solid rgba(255,255,255,0.08);
    background:
        linear-gradient(
            135deg,
            rgba(0,229,255,0.05),
            rgba(255,0,127,0.05)
        );
    backdrop-filter: blur(12px);
}

.access-left span {
    color: var(--astra-green);
    font-family: var(--astra-font-tech);
    letter-spacing: .35em;
    font-size: .75rem;
}

.access-left h3 {
    margin-top: 20px;
    font-size: clamp(2rem, 5vw, 4rem);
    color: white;
    line-height: .95;
    font-weight: 900;
    letter-spacing: -0.05em;
}

.access-left p {
    margin-top: 25px;
    color: var(--astra-muted);
    font-size: 1.1rem;
    line-height: 1.8;
}

/* lado derecho */
.access-right {
    display: grid;
    gap: 20px;
}

.access-card {
    padding: 28px;
    background: rgba(0,0,0,0.45);
    border: 1px solid rgba(255,255,255,0.06);
    transition: .3s ease;
}

.access-card:hover {
    transform: translateX(10px);
    border-color: rgba(0,229,255,0.4);
    box-shadow: 0 0 20px rgba(0,229,255,0.15);
}

.access-card h4 {
    color: var(--astra-cyan);
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.access-card p {
    color: var(--astra-muted);
    line-height: 1.6;
}

/* =========================
   PRICING
========================= */

.astra-pricing {
    position: relative;
    z-index: 2;
    padding: 125px 32px;
    overflow: hidden;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.astra-pricing::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 50% 20%, rgba(255,0,127,0.18), transparent 34%),
        radial-gradient(circle at 75% 70%, rgba(0,255,102,0.10), transparent 30%);
    pointer-events: none;
}

.astra-pricing-header {
    position: relative;
    z-index: 2;
    max-width: 920px;
    margin: 0 auto 70px;
    text-align: center;
}

.astra-pricing-header h2 {
    margin: 20px 0 0;
    color: white;
    font-size: clamp(3rem, 7vw, 6.8rem);
    line-height: .9;
    letter-spacing: -0.075em;
    font-weight: 950;
}

.astra-pricing-header h2 span {
    display: block;
    color: var(--astra-pink);
    text-shadow:
        0 0 18px rgba(255,0,127,.75),
        0 0 42px rgba(255,0,127,.38);
}

.astra-pricing-header p {
    max-width: 760px;
    margin: 28px auto 0;
    color: var(--astra-muted);
    font-size: 1.15rem;
    line-height: 1.75;
}

.astra-pricing-card {
    position: relative;
    z-index: 2;
    max-width: 920px;
    margin: 0 auto;
    padding: 58px;
    border: 1px solid rgba(255,0,127,.45);
    background:
        linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01)),
        rgba(3,4,7,.78);
    box-shadow:
        0 0 60px rgba(255,0,127,.18),
        inset 0 0 90px rgba(255,0,127,.035);
    backdrop-filter: blur(16px);
}

.astra-pricing-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
    background-size: 54px 54px;
    opacity: .35;
    pointer-events: none;
}

.pricing-badge {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    padding: 12px 28px;
    background: var(--astra-pink);
    color: white;
    font-family: var(--astra-font-tech);
    font-size: .75rem;
    letter-spacing: .32em;
    box-shadow: 0 0 28px rgba(255,0,127,.7);
}

.pricing-code,
.astra-pricing-card h3,
.pricing-subtitle,
.pricing-price,
.pricing-note,
.pricing-features,
.pricing-cta {
    position: relative;
    z-index: 2;
}

.pricing-code {
    display: block;
    color: var(--astra-cyan);
    font-family: var(--astra-font-tech);
    letter-spacing: .35em;
    font-size: .78rem;
}

.astra-pricing-card h3 {
    margin: 24px 0 0;
    color: white;
    font-size: clamp(3rem, 6vw, 6rem);
    line-height: .9;
    letter-spacing: -0.075em;
    font-weight: 950;
}

.pricing-subtitle {
    max-width: 720px;
    margin: 26px 0 0;
    color: var(--astra-muted);
    font-size: 1.12rem;
    line-height: 1.75;
}

.pricing-price {
    margin-top: 42px;
    display: flex;
    align-items: flex-end;
    gap: 16px;
}

.pricing-price strong {
    color: white;
    font-size: clamp(4rem, 9vw, 8rem);
    line-height: .8;
    letter-spacing: -0.08em;
    text-shadow:
        0 0 18px rgba(255,255,255,.25),
        0 0 34px rgba(255,0,127,.28);
}

.pricing-price span {
    color: var(--astra-muted);
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.pricing-note {
    margin-top: 26px;
    color: var(--astra-green);
    font-family: var(--astra-font-tech);
    letter-spacing: .18em;
    font-size: .82rem;
}

.pricing-features {
    margin-top: 44px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.pricing-features div {
    padding: 16px 18px;
    border: 1px solid rgba(255,255,255,.10);
    background: rgba(0,0,0,.28);
    color: #e5e7eb;
    font-size: 1rem;
}

.pricing-features div::before {
    content: "✓";
    margin-right: 12px;
    color: var(--astra-green);
    text-shadow: 0 0 12px rgba(0,255,102,.8);
}

.pricing-cta {
    margin-top: 46px;
    width: fit-content;
}

@media (max-width: 720px) {
    .astra-pricing {
        padding: 90px 20px;
    }

    .astra-pricing-card {
        padding: 42px 24px;
    }

    .pricing-features {
        grid-template-columns: 1fr;
    }

    .pricing-price {
        flex-direction: column;
        align-items: flex-start;
    }

    .pricing-cta {
        width: 100%;
    }
}

/* =========================
   CONTACT
========================= */

.astra-contact {
    position: relative;
    z-index: 2;
    padding: 130px 32px;
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 48px;
    overflow: hidden;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.astra-contact::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 25%, rgba(255,0,127,.16), transparent 32%),
        radial-gradient(circle at 82% 45%, rgba(0,229,255,.14), transparent 34%);
    pointer-events: none;
}

.astra-contact-info,
.astra-contact-form {
    position: relative;
    z-index: 2;
}

.astra-contact-info h2 {
    margin: 24px 0 0;
    color: white;
    font-size: clamp(3.2rem, 7vw, 7rem);
    line-height: .9;
    letter-spacing: -0.075em;
    font-weight: 950;
}

.astra-contact-info h2 span {
    color: var(--astra-pink);
    text-shadow:
        0 0 18px rgba(255,0,127,.75),
        0 0 42px rgba(255,0,127,.38);
}

.astra-contact-info p {
    max-width: 680px;
    margin: 30px 0 0;
    color: var(--astra-muted);
    font-size: 1.15rem;
    line-height: 1.8;
}

.contact-metrics {
    margin-top: 60px;
    display: grid;
    gap: 24px;
}

.contact-metrics div {
    padding-bottom: 22px;
    border-bottom: 1px solid rgba(255,255,255,.12);
    display: flex;
    justify-content: space-between;
    gap: 24px;
}

.contact-metrics span {
    color: var(--astra-muted);
    font-family: var(--astra-font-tech);
    text-transform: uppercase;
    letter-spacing: .32em;
    font-size: .75rem;
}

.contact-metrics strong {
    color: var(--astra-green);
    font-size: 1.25rem;
    text-shadow: 0 0 16px rgba(0,255,102,.55);
}

/* Form */

.astra-contact-form {
    padding: 50px;
    border: 1px solid rgba(255,0,127,.38);
    background:
        linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.01)),
        rgba(3,4,7,.75);
    backdrop-filter: blur(16px);
    box-shadow:
        0 0 60px rgba(255,0,127,.12),
        inset 0 0 80px rgba(0,229,255,.035);
}

.astra-contact-form::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
    background-size: 54px 54px;
    opacity: .35;
    pointer-events: none;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.form-group {
    position: relative;
    z-index: 2;
    margin-bottom: 26px;
}

.form-group label {
    display: block;
    margin-bottom: 12px;
    color: var(--astra-cyan);
    font-family: var(--astra-font-tech);
    text-transform: uppercase;
    letter-spacing: .3em;
    font-size: .72rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 20px 22px;
    border: 1px solid rgba(255,255,255,.14);
    background: rgba(0,0,0,.38);
    color: white;
    font-size: 1rem;
    outline: none;
    transition: .25s ease;
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--astra-cyan);
    box-shadow: 0 0 22px rgba(0,229,255,.18);
}

.operation-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.operation-options label {
    margin: 0;
}

.operation-options input {
    display: none;
}

.operation-options span {
    display: block;
    padding: 17px;
    border: 1px solid rgba(255,255,255,.14);
    color: var(--astra-muted);
    text-align: center;
    font-family: var(--astra-font-tech);
    text-transform: uppercase;
    letter-spacing: .18em;
    font-size: .72rem;
    cursor: pointer;
    transition: .25s ease;
}

.operation-options input:checked + span,
.operation-options span:hover {
    color: var(--astra-pink);
    border-color: var(--astra-pink);
    box-shadow: 0 0 22px rgba(255,0,127,.18);
}

.astra-submit-btn {
    position: relative;
    z-index: 2;
    margin-top: 12px;
    padding: 22px 34px;
    border: 0;
    background: var(--astra-pink);
    color: white;
    font-family: var(--astra-font-tech);
    text-transform: uppercase;
    letter-spacing: .24em;
    font-size: .82rem;
    cursor: pointer;
    box-shadow: 0 0 32px rgba(255,0,127,.55);
    transition: .28s ease;
}

.astra-submit-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 0 48px rgba(255,0,127,.8);
}

.form-note {
    position: relative;
    z-index: 2;
    margin-top: 28px;
    color: var(--astra-muted);
    font-family: var(--astra-font-tech);
    letter-spacing: .18em;
    font-size: .78rem;
}

@media (max-width: 1050px) {
    .astra-contact {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .astra-contact {
        padding: 90px 20px;
    }

    .astra-contact-form {
        padding: 34px 24px;
    }

    .form-grid,
    .operation-options {
        grid-template-columns: 1fr;
    }

    .contact-metrics div {
        flex-direction: column;
    }

    .astra-submit-btn {
        width: 100%;
    }
}

/* =========================
   SCROLL REVEAL
========================= */

.reveal-on-scroll {
    opacity: 0;
    transform: translateY(42px);
    transition:
        opacity .85s ease,
        transform .85s ease;
    will-change: opacity, transform;
}

.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: .12s; }
.reveal-delay-2 { transition-delay: .22s; }
.reveal-delay-3 { transition-delay: .32s; }


/* =========================
   FIX MOBILE GLOBAL
========================= */

img {
    max-width: 100%;
}

@media (max-width: 760px) {
    body {
        overflow-x: hidden;
    }

    .astra-glow {
        width: 260px;
        height: 260px;
        opacity: .16;
    }

    .astra-bg-grid {
        background-size: 52px 52px;
    }
}


/* =========================
   FIX HERO MOBILE
========================= */

@media (max-width: 760px) {
    .astra-hero-section {
        min-height: auto;
        padding: 64px 18px 54px;
        gap: 42px;
        overflow: hidden;
    }

    .astra-hero-badge {
        width: 100%;
        font-size: .62rem;
        letter-spacing: .14em;
        line-height: 1.6;
        padding: 10px 12px;
    }

    .astra-hero-title {
        font-size: clamp(3.1rem, 18vw, 5.2rem);
        line-height: .88;
        letter-spacing: -0.075em;
        max-width: 100%;
        overflow-wrap: normal;
    }

    .astra-hero-description {
        font-size: 1rem;
        line-height: 1.65;
        margin-top: 26px;
    }

    .astra-hero-actions {
        margin-top: 30px;
    }

    .astra-btn {
        min-width: 0;
        width: 100%;
        padding: 18px 18px;
        font-size: .72rem;
        letter-spacing: .15em;
    }

    .astra-hero-panel {
        width: 100%;
        min-height: auto;
    }

    .astra-hero-stats {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .astra-hero-stats div {
        min-width: 0;
        padding-bottom: 16px;
        border-bottom: 1px solid rgba(255,255,255,.08);
    }

    .astra-dashboard-hologram {
        width: 100%;
        min-height: auto;
        padding: 20px;
    }

    .holo-header {
        font-size: .62rem;
        letter-spacing: .12em;
        line-height: 1.6;
    }

    .holo-card strong {
        font-size: 1.55rem;
    }
}


/* =========================
   FIX PROOF STRIP MOBILE
========================= */

@media (max-width: 760px) {
    .astra-proof-strip {
        padding: 24px 0;
        overflow: hidden;
    }

    .astra-proof-strip::before,
    .astra-proof-strip::after {
        width: 36px;
    }

    .proof-track {
        width: 100%;
        max-width: 100%;
        padding: 0 18px;
        overflow-x: auto;
        animation: none;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

    .proof-track::-webkit-scrollbar {
        display: none;
    }

    .proof-pill {
        width: min(82vw, 310px);
        min-height: 180px;
        padding: 22px;
        scroll-snap-align: start;
    }

    .proof-code {
        font-size: .62rem;
        letter-spacing: .18em;
        margin-bottom: 22px;
    }

    .proof-pill h3 {
        font-size: 1.35rem;
    }

    .proof-pill p {
        font-size: .92rem;
    }
}


/* =========================
   FIX ACCESSIBILITY BOX MOBILE
========================= */

@media (max-width: 760px) {
    .astra-accessibility-box {
        margin-top: 64px;
        padding: 30px 20px;
        grid-template-columns: 1fr;
        gap: 30px;
        overflow: hidden;
    }

    .access-left span {
        font-size: .62rem;
        letter-spacing: .18em;
        line-height: 1.6;
    }

    .access-left h3 {
        font-size: clamp(2rem, 12vw, 3.4rem);
        line-height: .95;
        letter-spacing: -0.055em;
    }

    .access-left p {
        font-size: 1rem;
        line-height: 1.7;
    }

    .access-card {
        padding: 22px;
    }

    .access-card:hover {
        transform: translateY(-4px);
    }
}

/* =========================
   MOBILE HARD FIX HERO + PROOF
========================= */

@media (max-width: 520px) {

    html,
    body {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    .astra-main,
    .astra-hero-section,
    .astra-proof-strip {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    /* HERO */

    .astra-hero-section {
        display: flex;
        flex-direction: column;
        padding: 44px 18px 54px;
        gap: 38px;
        min-height: auto;
    }

    .astra-hero-content,
    .astra-hero-panel {
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }

    .astra-hero-badge {
        width: 100%;
        max-width: 100%;
        font-size: .58rem;
        letter-spacing: .12em;
        line-height: 1.55;
        padding: 10px 12px;
        white-space: normal;
    }

    .astra-hero-title {
        width: 100%;
        max-width: 100%;
        font-size: clamp(2.55rem, 14vw, 4.1rem);
        line-height: .9;
        letter-spacing: -0.07em;
        word-break: normal;
        overflow-wrap: normal;
    }

    .astra-hero-description {
        width: 100%;
        max-width: 100%;
        font-size: .98rem;
        line-height: 1.65;
        margin-top: 24px;
    }

    .astra-hero-actions {
        width: 100%;
        margin-top: 30px;
        display: grid;
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .astra-btn {
        width: 100%;
        min-width: 0;
        padding: 17px 14px;
        font-size: .68rem;
        letter-spacing: .13em;
    }

    /* STATS */

    .astra-hero-stats {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr;
        gap: 18px;
        margin-bottom: 28px;
    }

    .astra-hero-stats div {
        min-width: 0;
        width: 100%;
        padding-bottom: 16px;
        border-bottom: 1px solid rgba(255,255,255,.1);
    }

    .astra-hero-stats strong {
        font-size: 2.6rem;
    }

    .astra-hero-stats span {
        font-size: .62rem;
        letter-spacing: .22em;
    }

    /* HOLOGRAM */

    .astra-dashboard-hologram {
        width: 100%;
        max-width: 100%;
        min-height: auto;
        padding: 18px;
    }

    .holo-header {
        font-size: .58rem;
        letter-spacing: .10em;
        line-height: 1.6;
    }

    .holo-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .holo-card,
    .holo-card.large {
        grid-column: auto;
        min-height: auto;
        padding: 18px;
    }

    .holo-card small {
        font-size: .58rem;
        letter-spacing: .12em;
    }

    .holo-card strong {
        font-size: 1.55rem;
    }

    /* PROOF STRIP */

    .astra-proof-strip {
        padding: 24px 0;
    }

    .astra-proof-strip::before,
    .astra-proof-strip::after {
        width: 24px;
    }

    .proof-track {
        width: 100%;
        max-width: 100%;
        padding: 0 18px;
        display: flex;
        gap: 16px;
        overflow-x: auto;
        animation: none !important;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

    .proof-track::-webkit-scrollbar {
        display: none;
    }

    .proof-pill {
        flex: 0 0 82vw;
        width: 82vw;
        max-width: 310px;
        min-height: 176px;
        padding: 22px;
        scroll-snap-align: start;
    }

    .proof-code {
        font-size: .58rem;
        letter-spacing: .16em;
        margin-bottom: 20px;
    }

    .proof-pill h3 {
        font-size: 1.28rem;
        line-height: 1.08;
    }

    .proof-pill p {
        font-size: .9rem;
        line-height: 1.55;
    }
}

@media (max-width: 520px) {
    .astra-navbar {
        padding: 18px;
        gap: 18px;
    }

    .astra-brand-text {
        flex-wrap: wrap;
    }

    .astra-brand-text strong {
        font-size: 1.25rem;
    }

    .astra-brand-text small {
        font-size: .62rem;
        letter-spacing: .32em;
    }

    .astra-nav-links {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 14px 18px;
    }

    .astra-nav-links a {
        font-size: .68rem;
        letter-spacing: .26em;
    }

    .astra-nav-cta {
        width: 100%;
        padding: 16px;
        font-size: .7rem;
    }
}

.honeypot-field {
    position: absolute;
    left: -9999px;
    opacity: 0;
    pointer-events: none;
}

/* =========================
   ASTRA INTEL SECTION
========================= */

.astra-intel-section {
    position: relative;
    padding: 120px 6vw;
    display: grid;
    grid-template-columns: 0.9fr 1.2fr;
    gap: 60px;
    align-items: center;
    overflow: hidden;

    background:
        radial-gradient(circle at 20% 20%, rgba(255, 0, 140, .12), transparent 35%),
        radial-gradient(circle at 80% 40%, rgba(0, 229, 255, .12), transparent 35%),
        linear-gradient(180deg, #030407, #05070c);
    border-top: 1px solid rgba(0, 229, 255, .18);
    border-bottom: 1px solid rgba(255, 0, 140, .16);
}

.astra-intel-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
    background-size: 80px 80px;
    opacity: .25;
    pointer-events: none;
}

.astra-intel-content,
.astra-intel-panel {
    position: relative;
    z-index: 2;
}

.astra-intel-content h2 {
    margin: 24px 0;
    font-size: clamp(2.6rem, 5vw, 5.8rem);
    line-height: .92;
    color: #fff;
    letter-spacing: -0.06em;
}

.astra-intel-content h2 span {
    display: block;
    color: #00e5ff;
    text-shadow: 0 0 24px rgba(0, 229, 255, .75);
}

.astra-intel-content p {
    max-width: 620px;
    color: #a8adbb;
    font-size: 1.08rem;
    line-height: 1.8;
}

.intel-pill-grid {
    margin: 36px 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.intel-pill-grid div {
    padding: 16px 18px;
    border: 1px solid rgba(0, 229, 255, .22);
    background: rgba(255,255,255,.025);
    color: #dfe7f5;
    font-size: .82rem;
    letter-spacing: .18em;
    text-transform: uppercase;
}

/* PANEL */

.astra-intel-panel {
    padding: 34px;
    border: 1px solid rgba(0, 229, 255, .45);
    background:
        linear-gradient(135deg, rgba(0, 229, 255, .08), transparent 40%),
        linear-gradient(315deg, rgba(255, 0, 140, .08), transparent 45%),
        rgba(5, 8, 14, .92);
    box-shadow:
        0 0 60px rgba(0, 229, 255, .08),
        0 0 100px rgba(255, 0, 140, .06);
    backdrop-filter: blur(18px);
}

.intel-panel-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;

    color: #00e5ff;
    font-size: .78rem;
    letter-spacing: .28em;
    font-weight: 800;
}

.intel-panel-header span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #00ff88;
    box-shadow: 0 0 18px rgba(0,255,136,.9);
}

.intel-main-card {
    padding: 28px;
    border: 1px solid rgba(255,255,255,.08);
    background: rgba(0,0,0,.38);
    margin-bottom: 22px;
}

.intel-main-card small {
    color: #ff008c;
    letter-spacing: .28em;
    text-transform: uppercase;
    font-weight: 800;
}

.intel-main-card h3 {
    margin: 14px 0 10px;
    color: #fff;
    font-size: clamp(1.8rem, 3vw, 3.3rem);
    line-height: 1;
}

.intel-main-card p {
    color: #aeb4c4;
    line-height: 1.7;
    max-width: 760px;
}

.intel-insights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.intel-insight {
    min-height: 150px;
    padding: 22px;
    background: rgba(255,255,255,.025);
    border: 1px solid rgba(255,255,255,.08);
}

.intel-insight span {
    display: block;
    margin-bottom: 14px;
    font-size: .72rem;
    letter-spacing: .24em;
    font-weight: 900;
}

.intel-insight strong {
    display: block;
    color: #fff;
    font-size: 1.65rem;
    line-height: 1.1;
}

.intel-insight p {
    margin-top: 12px;
    color: #8990a2;
    font-size: .92rem;
    line-height: 1.5;
}

.insight-cyan {
    border-left: 4px solid #00e5ff;
}

.insight-cyan span {
    color: #00e5ff;
}

.insight-pink {
    border-left: 4px solid #ff008c;
}

.insight-pink span {
    color: #ff008c;
}

.insight-green {
    border-left: 4px solid #00ff88;
}

.insight-green span {
    color: #00ff88;
}

.intel-alert {
    margin-top: 18px;
    padding: 22px;
    border: 1px solid rgba(0,255,136,.35);
    background: rgba(0,255,136,.035);
}

.intel-alert span {
    color: #00ff88;
    font-size: .75rem;
    letter-spacing: .28em;
    font-weight: 900;
}

.intel-alert p {
    margin: 12px 0 0;
    color: #d4d8e4;
    line-height: 1.7;
}

/* RESPONSIVE */

@media (max-width: 1100px) {
    .astra-intel-section {
        grid-template-columns: 1fr;
        padding: 90px 5vw;
    }

    .astra-intel-content {
        max-width: 780px;
    }
}

@media (max-width: 760px) {
    .astra-intel-section {
        padding: 76px 22px;
    }

    .intel-pill-grid,
    .intel-insights {
        grid-template-columns: 1fr;
    }

    .astra-intel-panel {
        padding: 22px;
    }

    .intel-main-card {
        padding: 22px;
    }

    .astra-intel-content h2 {
        font-size: clamp(2.4rem, 13vw, 4rem);
    }
}

.intel-report-showcase {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.intel-report-card {
    border: 1px solid rgba(255,255,255,.08);
    background:
        linear-gradient(135deg, rgba(0,229,255,.045), transparent 45%),
        rgba(0,0,0,.34);
    overflow: hidden;
    transition:
        border-color .35s ease,
        box-shadow .35s ease,
        transform .35s ease,
        background .35s ease;
}

.intel-report-card:hover {
    transform: translateY(-3px);
    border-color: rgba(0,229,255,.28);
}

.intel-report-card[open] {
    border-color: rgba(0,229,255,.48);
    box-shadow:
        0 0 34px rgba(0,229,255,.10),
        inset 0 0 30px rgba(0,229,255,.035);
}

.intel-report-card summary {
    list-style: none;
    cursor: pointer;
    padding: 22px 24px;

    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: flex-start;
}

.intel-report-card summary::-webkit-details-marker {
    display: none;
}

.intel-report-card summary b {
    color: #00e5ff;
    font-size: 1.6rem;
    line-height: 1;
    transition: transform .35s ease;
    text-shadow: 0 0 16px rgba(0,229,255,.8);
}

.intel-report-card[open] summary b {
    transform: rotate(45deg);
}

.intel-report-preview {
    margin-top: 1rem;
    border-radius: 18px;
    overflow: hidden;

    background:
        linear-gradient(180deg,
            rgba(0,255,255,0.03),
            rgba(255,0,128,0.03));

    border: 1px solid rgba(255,255,255,0.06);

    max-height: 320px;
    min-height: 320px;

    position: relative;
}

.intel-report-preview-inner {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.intel-report-preview img {
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: top center;

    display: block;

    transition:
        transform .6s ease,
        filter .6s ease;

    filter:
        brightness(.92)
        contrast(1.02);
}

.intel-report-card[open] .intel-report-preview img {
    transform: scale(1.02);
}

.intel-report-card:hover .intel-report-preview img {
    transform: scale(1.04);
}

.intel-report-preview::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to bottom,
            rgba(0,0,0,0) 55%,
            rgba(0,0,0,0.75) 100%
        );

    pointer-events: none;
}