/* =========================================================
   STYLE LIMPIO
   Base temporal para reconstruir el index por secciones
========================================================= */

/* =========================================================
   1. RESET / BASE
========================================================= */

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

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    font-family: Arial, Helvetica, sans-serif;
    background: #09111a;
    color: #f5f7ff;
    overflow-x: hidden;
    line-height: 1.5;
}

img,
picture,
svg,
video,
canvas {
    display: block;
    max-width: 100%;
}

button,
input,
textarea,
select {
    font: inherit;
}

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

ul,
ol {
    list-style: none;
}

/* =========================================================
   2. VARIABLES
========================================================= */

:root {
    --bg-main: #09111a;
    --bg-soft: #0d1723;
    --bg-card: rgba(255, 255, 255, 0.04);
    --bg-card-strong: rgba(255, 255, 255, 0.07);

    --text-main: #f5f7ff;
    --text-soft: rgba(245, 247, 255, 0.78);
    --text-muted: rgba(245, 247, 255, 0.58);

    --line-soft: rgba(255, 255, 255, 0.08);
    --line-strong: rgba(255, 255, 255, 0.14);

    --accent: #8b7bff;
    --accent-2: #6f7cff;
    --accent-soft: rgba(139, 123, 255, 0.16);

    --shadow-soft: 0 16px 40px rgba(0, 0, 0, 0.18);
    --shadow-strong: 0 28px 80px rgba(0, 0, 0, 0.28);

    --radius-sm: 1.2rem;
    --radius-md: 1.8rem;
    --radius-lg: 2.8rem;

    --container: 128rem;
}

/* =========================================================
   3. UTILIDADES GLOBALES
========================================================= */

section {
    position: relative;
    width: 100%;
}

.container {
    width: min(var(--container), calc(100% - 2 * 9%));
    margin-inline: auto;
}

.text-muted {
    color: var(--text-muted);
}

.text-soft {
    color: var(--text-soft);
}

.show-animate {
    opacity: 1;
}

/* =========================================================
   4. HEADER
========================================================= */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 2rem 9%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
    transition: background 0.25s ease, border-color 0.25s ease, backdrop-filter 0.25s ease, box-shadow 0.25s ease;
    background: transparent;
    border-bottom: 1px solid transparent;
}

.header.sticky {
    background: rgba(9, 17, 26, 0.72);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line-soft);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.16);
}

.logo {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--text-main);
    white-space: nowrap;
}

#menu-icon {
    display: none;
    font-size: 3rem;
    color: var(--text-main);
    cursor: pointer;
    line-height: 1;
}

.navbar {
    display: flex;
    align-items: center;
    gap: 2.4rem;
}

.navbar a {
    position: relative;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-soft);
    transition: color 0.2s ease;
}

.navbar a:hover,
.navbar a.active {
    color: var(--text-main);
}

.navbar a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.6rem;
    width: 100%;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--accent), var(--accent-2));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
}

.navbar a:hover::after,
.navbar a.active::after {
    transform: scaleX(1);
}

.active-nav,
.animate {
    display: none !important;
}

/* =========================================================
   5. HERO
========================================================= */

.home {
    position: relative;
    min-height: 100svh;
    height: 100svh;
    padding: clamp(9rem, 10vh, 12rem) 9% clamp(2.4rem, 3.5vh, 4rem);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    background:
        linear-gradient(180deg, #081018 0%, #0b1320 55%, #09111a 100%);
}

.home-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0)),
        radial-gradient(circle at top, rgba(255, 255, 255, 0.04), transparent 40%);
    pointer-events: none;
    z-index: 0;
}

.home-grid {
    position: absolute;
    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: 4.2rem 4.2rem;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.65), transparent 92%);
    -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.65), transparent 92%);
    opacity: 0.35;
    pointer-events: none;
    z-index: 0;
}

.home-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.18fr 0.82fr;
    gap: clamp(2.4rem, 4vw, 4.8rem);
    align-items: center;
    width: 100%;
    min-height: 0;
    flex: 1;
}

.home-copy {
    max-width: 68rem;
    align-self: center;
}

.home-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 0.9rem 1.4rem;
    margin-bottom: 2.4rem;
    border: 1px solid var(--line-soft);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(1rem);
    color: #cdd6f4;
    font-size: 1.3rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.eyebrow-dot {
    width: 0.8rem;
    height: 0.8rem;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 1.2rem rgba(139, 123, 255, 0.8);
}

.home-title {
    font-size: clamp(3.1rem, 4.2vw, 5.8rem);
    line-height: 1.02;
    font-weight: 800;
    letter-spacing: -0.035em;
    color: var(--text-main);
    margin-bottom: 1.6rem;
    max-width: 15ch;
    text-wrap: balance;
}

.home-title span {
    display: inline;
    color: #9ca8ff;
    text-shadow: 0 0 1.8rem rgba(156, 168, 255, 0.10);
}

.home-description {
    max-width: 58rem;
    font-size: clamp(1.5rem, 1.35vw, 1.72rem);
    line-height: 1.62;
    color: var(--text-soft);
    margin-bottom: 2.4rem;
}

.home-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
    align-items: center;
    margin-bottom: 0;
}

.home .btn {
    min-width: 20rem;
    height: 5.2rem;
    padding: 0 2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 1.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
    cursor: pointer;
}

.home .btn:hover {
    transform: translateY(-0.3rem);
}

.home .btn-primary {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
    color: #fff;
    border: 1px solid transparent;
    box-shadow: 0 1.8rem 4.5rem rgba(111, 124, 255, 0.22);
}

.home .btn-primary:hover {
    box-shadow: 0 2.4rem 6rem rgba(111, 124, 255, 0.28);
}

.home .btn-ghost {
    background: rgba(255, 255, 255, 0.04);
    color: #ecf2ff;
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(1rem);
}

.home .btn-ghost:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.18);
}

.home-proof {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.2rem;
    max-width: 75rem;
}

.proof-item {
    padding: 1.6rem;
    border: 1px solid var(--line-soft);
    border-radius: 1.8rem;
    background: rgba(255, 255, 255, 0.035);
    backdrop-filter: blur(1rem);
}

.proof-item strong {
    display: block;
    font-size: 1.45rem;
    color: #ffffff;
    margin-bottom: 0.7rem;
}

.proof-item span {
    display: block;
    font-size: 1.35rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.66);
}

.home-visual {
    position: relative;
    min-height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-card {
    position: relative;
    width: 100%;
    max-width: 44rem;
    padding: 2rem;
    border-radius: 2.4rem;
    border: 1px solid var(--line-soft);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.03));
    box-shadow:
        0 2.4rem 5rem rgba(0, 0, 0, 0.24),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(1.8rem);
    overflow: hidden;
}

.hero-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(139, 123, 255, 0.18), transparent 35%);
    pointer-events: none;
}

.hero-card-top {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2.4rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.8rem 1.2rem;
    border-radius: 999px;
    font-size: 1.2rem;
    color: #ffffff;
    background: rgba(139, 123, 255, 0.18);
    border: 1px solid rgba(139, 123, 255, 0.22);
}

.hero-badge-soft {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.78);
}

.hero-card-content {
    position: relative;
    z-index: 1;
    margin-bottom: 2rem;
}

.hero-mini-label {
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.48);
    margin-bottom: 1rem;
}

.hero-card-content h2 {
    font-size: clamp(2.2rem, 2.2vw, 2.8rem);
    line-height: 1.12;
    color: #ffffff;
    margin-bottom: 0;
}

.hero-card-content p {
    font-size: 1.55rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.72);
}

.hero-stats {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.8rem;
}

.hero-stat {
    padding: 1.2rem 1rem;
    border-radius: 1.4rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.hero-stat-value {
    display: block;
    font-size: 1.45rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.hero-stat-label {
    display: block;
    font-size: 1.2rem;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.60);
}

.hero-floating {
    position: absolute;
    z-index: 2;
    padding: 1rem 1.4rem;
    border-radius: 1.4rem;
    background: rgba(10, 18, 28, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(1.2rem);
    box-shadow: 0 1.5rem 3.5rem rgba(0, 0, 0, 0.2);
    animation: floaty 6s ease-in-out infinite;
}

.hero-floating span {
    font-size: 1.25rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.84);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.hero-floating-1 {
    top: -5.8rem;
    left: -3.2rem;
}

.hero-floating-2 {
    top: -4.2rem;
    right: -2.4rem;
    animation-delay: 1.2s;
}

.hero-floating-3 {
    bottom: -5.2rem;
    right: 8%;
    left: auto;
    animation-delay: 2.1s;
}

@keyframes floaty {

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

    50% {
        transform: translateY(-1rem);
    }
}

.home-bottom {
    position: relative;
    z-index: 1;
    margin-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.6rem;
}

.home-socials {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.home-socials a {
    width: 4.4rem;
    height: 4.4rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 1.3rem;
    border: 1px solid var(--line-soft);
    background: rgba(255, 255, 255, 0.04);
    color: #f1f4ff;
    font-size: 1.85rem;
    transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.home-socials a:hover {
    transform: translateY(-0.3rem);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.16);
}

.home-scroll {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.72);
    font-size: 1.4rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.home-scroll i {
    font-size: 1.9rem;
}

/* =========================================================
   6. FOOTER
========================================================= */

.footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 2.6rem 9%;
    border-top: 1px solid var(--line-soft);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01)),
        #081018;
}

.footer-text p {
    font-size: 1.45rem;
    line-height: 1.7;
    color: var(--text-soft);
}

.footer-text a {
    color: var(--text-main);
    font-weight: 700;
}

.footer-text i {
    color: var(--accent);
}

.footer-iconTop a {
    width: 4.6rem;
    height: 4.6rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 1.4rem;
    border: 1px solid var(--line-soft);
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-main);
    font-size: 2rem;
    transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.footer-iconTop a:hover {
    transform: translateY(-0.3rem);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.16);
}

/* =========================================================
   7. RESPONSIVE
========================================================= */

@media (max-width: 1200px) {
    .home-inner {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .home-title {
        font-size: clamp(3.2rem, 4.2vw, 5.4rem);
        max-width: 16ch;
    }

    .home-copy {
        max-width: 100%;
    }

    .home-visual {
        min-height: auto;
    }

    .hero-card {
        max-width: 100%;
    }

    .hero-floating-1 {
        left: 1rem;
    }

    .hero-floating-2 {
        right: 1rem;
    }
}

@media (max-width: 991px) {
    html {
        font-size: 58%;
    }

    .header {
        padding: 1.8rem 5%;
    }

    .home {
        padding: 12rem 5% 5rem;
    }

    .home-title {
        font-size: clamp(3rem, 5.2vw, 4.8rem);
        max-width: 14ch;
    }

    .home-proof,
    .hero-stats {
        grid-template-columns: 1fr;
    }

    .home-bottom,
    .footer {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 56%;
    }

    #menu-icon {
        display: block;
    }

    .navbar {
        position: absolute;
        top: 100%;
        left: 5%;
        right: 5%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 1.6rem;
        padding: 2rem;
        border: 1px solid var(--line-soft);
        border-radius: 2rem;
        background: rgba(9, 17, 26, 0.95);
        backdrop-filter: blur(1.6rem);
        box-shadow: var(--shadow-strong);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-1rem);
        transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
    }

    .navbar.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .home {
        min-height: 100svh;
        height: auto;
        padding: 10.5rem 5% 3.2rem;
    }

    .home-eyebrow {
        font-size: 1.1rem;
        padding: 0.8rem 1.1rem;
    }

    .home-title {
        font-size: 3.8rem;
        line-height: 1.08;
        max-width: 100%;
        text-wrap: pretty;
    }

    .home-description {
        font-size: 1.55rem;
        line-height: 1.68;
    }

    .home-cta {
        flex-direction: column;
        align-items: stretch;
    }

    .home .btn {
        width: 100%;
        min-width: 0;
    }

    .hero-card {
        padding: 2rem;
        border-radius: 2.2rem;
    }

    .hero-card-content h2 {
        font-size: 2.4rem;
    }

    .hero-card-content p {
        font-size: 1.45rem;
    }

    .hero-floating {
        display: none;
    }

    .home-socials {
        width: 100%;
    }

    .home-scroll {
        font-size: 1.25rem;
    }

    .footer {
        padding: 2.4rem 5%;
    }
}

@media (max-width: 576px) {
    .home-title {
        font-size: 3.2rem;
        line-height: 1.1;
        letter-spacing: -0.03em;
    }

    .home-description {
        font-size: 1.5rem;
    }

    .proof-item,
    .hero-stat {
        padding: 1.4rem;
    }

    .home-socials a,
    .footer-iconTop a {
        width: 4.4rem;
        height: 4.4rem;
        font-size: 1.8rem;
    }

    .hero-card-top {
        gap: 0.8rem;
    }

    .hero-badge {
        font-size: 1.1rem;
    }
}

@media (max-width: 400px) {
    .home-title {
        font-size: 2.85rem;
    }
}

@media (max-height: 820px) and (min-width: 769px) {
    .home {
        padding-top: 9.5rem;
        padding-bottom: 2.4rem;
    }

    .home-inner {
        gap: 2.4rem;
    }

    .home-title {
        font-size: clamp(2.9rem, 3.4vw, 4.8rem);
        margin-bottom: 1.2rem;
        max-width: 16ch;
    }

    .home-description {
        font-size: 1.48rem;
        line-height: 1.55;
        margin-bottom: 2rem;
        max-width: 54rem;
    }

    .home .btn {
        height: 4.8rem;
        min-width: 18rem;
        font-size: 1.4rem;
    }

    .hero-card {
        max-width: 41rem;
        padding: 1.8rem;
    }

    .hero-card-top {
        margin-bottom: 1.6rem;
    }

    .hero-card-content {
        margin-bottom: 1.6rem;
    }

    .hero-card-content h2 {
        font-size: 2.1rem;
    }

    .hero-stat {
        padding: 1rem 0.9rem;
    }

    .hero-stat-value {
        font-size: 1.3rem;
    }

    .hero-stat-label {
        font-size: 1.1rem;
    }

    .home-bottom {
        margin-top: 1.4rem;
    }

    .home-socials a {
        width: 4rem;
        height: 4rem;
        font-size: 1.7rem;
    }

    .hero-floating {
        transform: scale(0.92);
    }
}

/* =========================================================
   HERO ENTRY ANIMATION - CONTROLADA POR page-ready
========================================================= */

/* Estado inicial */
.header,
.home-bg,
.home-grid,
.hero-left,
.hero-right,
.reveal-item,
.reveal-card,
.floating-reveal,
.reveal-bottom {
    opacity: 0;
    will-change: transform, opacity, filter;
}

/* Header */
.header {
    transform: translateY(-2rem);
}

/* Fondo */
.home-bg,
.home-grid {
    transform: scale(1.02);
}

/* Bloques laterales */
.hero-left {
    transform: translateX(-3rem);
}

.hero-right {
    transform: translateX(3rem);
}

/* Elementos de texto */
.reveal-item {
    filter: blur(1.2rem);
    transform: translateY(3rem);
}

/* Card */
.reveal-card {
    filter: blur(1.4rem);
    transform: perspective(1200px) translateY(3.6rem) scale(0.95) rotateX(10deg);
    transform-origin: center bottom;
}

/* Chips */
.floating-reveal {
    filter: blur(1rem);
    transform: translateY(2rem) scale(0.9);
}

/* Bottom */
.reveal-bottom {
    transform: translateY(1.8rem);
}

/* Glow overlay */
.home::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(255,255,255,0.05), rgba(9,17,26,0) 55%);
    opacity: 0;
    transform: scale(1.08);
    pointer-events: none;
    z-index: 0;
}

/* Cuando la página está lista, animamos */
body.page-ready .header {
    animation: navReveal 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-delay: 0.15s;
}

body.page-ready .home::after {
    animation: heroGlowIn 1.6s ease forwards;
    animation-delay: 0.12s;
}

body.page-ready .home-bg {
    animation: fadeSceneIn 1.2s ease forwards;
    animation-delay: 0.05s;
}

body.page-ready .home-grid {
    animation: fadeSceneIn 1.2s ease forwards;
    animation-delay: 0.18s;
}

body.page-ready .hero-left {
    animation: heroSideInLeft 1.05s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-delay: 0.35s;
}

body.page-ready .hero-right {
    animation: heroSideInRight 1.1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-delay: 0.55s;
}

body.page-ready .reveal-1 {
    animation: heroTextIn 0.95s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-delay: 0.52s;
}

body.page-ready .reveal-2 {
    animation: heroTextIn 0.95s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-delay: 0.72s;
}

body.page-ready .reveal-3 {
    animation: heroTextIn 0.95s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-delay: 0.9s;
}

body.page-ready .reveal-card {
    animation: heroCardIn 1.1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-delay: 0.78s;
}

body.page-ready .floating-1 {
    animation:
        floatingChipIn 0.85s cubic-bezier(0.22, 1, 0.36, 1) forwards,
        floaty 6s ease-in-out infinite;
    animation-delay: 1.1s, 2.1s;
}

body.page-ready .floating-2 {
    animation:
        floatingChipIn 0.85s cubic-bezier(0.22, 1, 0.36, 1) forwards,
        floaty 6s ease-in-out infinite;
    animation-delay: 1.22s, 2.3s;
}

body.page-ready .floating-3 {
    animation:
        floatingChipIn 0.85s cubic-bezier(0.22, 1, 0.36, 1) forwards,
        floaty 6s ease-in-out infinite;
    animation-delay: 1.34s, 2.5s;
}

body.page-ready .reveal-bottom {
    animation: heroBottomIn 0.85s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-delay: 1.05s;
}

@keyframes fadeSceneIn {
    from {
        opacity: 0;
        transform: scale(1.025);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes heroGlowIn {
    from {
        opacity: 0;
        transform: scale(1.08);
    }
    to {
        opacity: 0.9;
        transform: scale(1);
    }
}

@keyframes navReveal {
    from {
        opacity: 0;
        transform: translateY(-2rem);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroSideInLeft {
    from {
        opacity: 0;
        transform: translateX(-3rem);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes heroSideInRight {
    from {
        opacity: 0;
        transform: translateX(3rem);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes heroTextIn {
    from {
        opacity: 0;
        filter: blur(1.2rem);
        transform: translateY(3rem);
    }
    to {
        opacity: 1;
        filter: blur(0);
        transform: translateY(0);
    }
}

@keyframes heroCardIn {
    from {
        opacity: 0;
        filter: blur(1.4rem);
        transform: perspective(1200px) translateY(3.6rem) scale(0.95) rotateX(10deg);
    }
    to {
        opacity: 1;
        filter: blur(0);
        transform: perspective(1200px) translateY(0) scale(1) rotateX(0);
    }
}

@keyframes floatingChipIn {
    from {
        opacity: 0;
        filter: blur(1rem);
        transform: translateY(2rem) scale(0.9);
    }
    to {
        opacity: 1;
        filter: blur(0);
        transform: translateY(0) scale(1);
    }
}

@keyframes heroBottomIn {
    from {
        opacity: 0;
        transform: translateY(1.8rem);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}