@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');

:root {
    --color-primary: #00C2FF;
    /* Cian brillante */
    --color-secondary: #3B82F6;
    /* Azul vivo */
    --color-dark: #000f2d;
    /* Azul muy oscuro, más cercano a la imagen */
    --color-light: #E6F4FF;
    /* Blanco frío con tinte azul */
    --color-accent: #ffd64e;
    /* Rosa vibrante */
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--color-dark);
    color: var(--color-light);
    /* Gradiente de fondo sutil para dar profundidad */
    background-image: radial-gradient(circle at 10% 15%, #003861 0%, #093474 35%, #001222 100%);
    margin: 0;
}

/* Estilo para el gradiente del texto principal */
.text-gradient {
    background-image: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Component helpers */
.card-accent {
    /* border: 1px solid rgba(59,130,246,0.12); */
    /* subtle blue border */
    /* box-shadow: 0 10px 30px rgba(1,20,40,0.45), inset 0 1px 0 rgba(255,255,255,0.02); */
}

.cta-button {
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    color: #042231;
    /* dark text for contrast on lighter cian */
    box-shadow: 0 8px 20px rgba(3, 115, 190, 0.25), 0 2px 6px rgba(0, 0, 0, 0.25);
    border: none;
}

.cta-button:active {
    transform: translateY(1px) scale(0.998);
}

.accent-glow {
    box-shadow: 0 0 40px rgba(0, 194, 255, 0.14), 0 0 10px rgba(59, 130, 246, 0.08);
}

/* Layout and component styles to replace Tailwind utilities */
.page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    /* padding: 1rem; */
}

@media (min-width: 640px) {
    .page {
        /* padding: 2rem; */
    }
}

.IA_hand {
    width: 34%;
    border-radius: 20px;
    position: relative;
    top: -70px;
}

.container {
    width: 100%;
    max-width: 56rem;
    /* approx Tailwind max-w-4xl */
    /* background: rgba(15,23,42,0.6);  */
    /* bg-slate-800/60 */
    /* backdrop-filter: blur(6px); */
    /* border-radius: 1.5rem; */
    padding: 1.5rem;
    /*  box-shadow: 0 5px 40px var(--color-secondary);
    border: 1px solid rgba(36,44,57,0.45); */
}

@media (min-width: 640px) {
  
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* margin-bottom: 2.5rem; */
}

.header-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    justify-content: space-between;
}

.logo {
    height: 2.5rem;
}

@media (min-width: 768px) {
    .logo {
        height: 3rem;
    }
}

.hero {
    display: block;
    text-align: center;
    gap: 2rem;
}

.hero-title {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
}

.title {
    font-weight: 800;
    line-height: 1;
    font-size: 2.25rem;
}

.subtitle {
    font-size: 1.125rem;
    color: var(--color-accent);
    max-width: 40rem;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

.value-section {
    max-width: 48rem;
    margin: 2rem auto;
}

.value-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.value-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: left;
}

.card {
    padding: 1rem;
    border-radius: 1rem;
    background: rgba(15, 23, 42, 0.55);
    border: 1px solid rgba(6, 182, 212, 0.08);
    transition: box-shadow .25s ease, transform .15s ease;
}

.card:hover {
    box-shadow: 0 12px 30px rgba(2, 10, 30, 0.65);
    transform: translateY(-4px);
}

.card-icon {
    font-size: 1.75rem;
    color: rgba(0, 194, 255, 0.55);
    display: block;
    margin-bottom: 0.5rem;
}

.card-heading {
    font-weight: 600;
    font-size: 1.0625rem;
    margin-bottom: 0.25rem;
    color: #ffffff;
}

.card-text {
    font-size: 0.875rem;
    color: rgba(203, 213, 225, 0.85);
}

.launch-wrap {
    padding-top: 1.5rem;
    padding-bottom: 2.5rem;
}

.launch-pill {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    border-radius: 999px;
    border: 2px dashed rgba(139, 92, 246, 0.6);
    background: rgba(139, 92, 246, 0.14);
}

.launch-text {
    font-size: 1rem;
    font-weight: 700;
    color: rgba(192, 132, 252, 0.95);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.form-wrap {
    max-width: 36rem;
    margin: 1.5rem auto 0;
    width: 100%;
}

.subscribe-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: flex-end;
}

.form-input {
    padding: 0.75rem;
    border-radius: 0.75rem;
    background: var(--color-dark);
    color: var(--color-light);
    border: 1px solid rgba(148, 163, 184, 0.12);
    width: 100%;
    box-sizing: border-box;
}

.form-input::placeholder {
    color: var(--color-light);
}

.form-input:focus {
    outline: none;
    box-shadow: 0 0 0 6px rgba(0, 194, 255, 0.08);
    border-color: rgba(0, 194, 255, 0.6);
}

.btn {
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    margin-top: 0.5rem;
    cursor: pointer;
}

.message-box {
    margin-top: 1rem;
    font-size: 0.875rem;
    color: #34D399;
    transition: opacity .5s, height .5s;
    opacity: 0;
    height: 0;
    overflow: hidden;
}

.footer {
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(36, 44, 57, 0.45);
    text-align: center;
    color: rgba(148, 163, 184, 0.8);
    font-size: 0.875rem;
}

/* small helper for centered max widths used earlier */
.mx-auto {
    margin-left: auto;
    margin-right: auto;
    padding: 0em;
}

.max-w-3xl {
    max-width: 48rem;
}

.max-w-xl {
    max-width: 36rem;
}

.w-full {
    width: 100%;
}

.mt-6 {
    margin-top: 1.5rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.icon3D {
    width: 60px;
    height: 60px;
    /*   margin-bottom: 10px; */
}


@media (min-width: 640px) {
    .title {
        font-size: 3.75rem;
    }
}

@media(max-width: 500px) {
    .hero-title {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
        justify-content: center;
        flex-direction: column-reverse;
    }

    .title {
        font-size: 2rem;
        text-align: center;
    }

    .IA_hand {
        width: 50%;
        position: initial;
        top: 0;
    }

    .subscribe-form {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        align-items: flex-end;
        box-sizing: border-box;
    }

    .header {
        justify-content: center;
    }

    .card {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }
    .badges{
        flex-direction: column;
        gap: 10px;
    }
    .badge-live {
        width: 88%;
        font-size: 1.1rem;
    }
    .value-title {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;

    }
    .live-card{
        padding: 16px;
    }
    .card-text{
        text-align: center;
        font-size: 1em;
    }
}

@media (min-width: 1024px) {
    .title {
        font-size: 2.8rem;
    }
}

@media (min-width: 768px) {
    .value-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Hero subtitle */
.hero-subtitle {
    margin-top: .75rem;
    font-size: 1.05rem;
    opacity: .95;
    color: rgba(226, 244, 255, 0.95);
}

/* Live section */
.live-section {
    /* padding: 12px 0; */
    /* background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.00)); */
    display: flex;
;
}

.live-card {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 20px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 24px;
    backdrop-filter: blur(6px);
    box-sizing: border-box;
}

.live-icon .svg-icon {
    width: 48px;
    height: 48px;
}

.live-content h2 {
    margin: 0 0 8px 0;
    font-size: 1.35rem;
}

.live-bullets {
    list-style: none;
    margin: 12px 0 0;
    padding: 0;
    display: grid;
    gap: 8px;
}

.live-bullets li {
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: .95;
    text-align: left;
}

.svg-icon {
    width: 20px;
    height: 20px;
    fill: currentColor;
    color: #8fb3ff;
}
#live-title, .live-content p{
    text-align: left;
}

/* Badge */
.badges {
    display: flex;
    width: 100%;
    gap: 20px;
    display: flex;
    margin-top: 16px;
    align-items: center;
    justify-content: center;

}

.badge-live {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    /* font-size: .85rem; */
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(143, 179, 255, .15);
    color: var(--color-accent);
    border: 1px solid var(--color-accent);
}

.badge-live .svg-icon {
    width: 14px;
    height: 14px;
}

/* Responsive for live-card */
@media (max-width: 640px) {
    .live-card {
        grid-template-columns: 1fr;
    }

    .live-icon {
        display: none;
    }

    .hero-subtitle {
        text-align: center;
    }
}

/* Form note (small informational text under form) */
.form-note { margin-top: 0.5rem; font-size: 0.9rem; color: rgba(203,213,225,0.75); text-align: left; }