﻿

* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
}

    body::before {
        transform: none;
    }

@font -face {
    font-family: 'Space Grotesk Fallback';
    src: local('Arial');
}

.AG_COMMON_2026_STYLE_brand-font {
    font-family: 'Space Grotesk','Inter',system-ui,sans-serif;
    letter-spacing: -0.01em;
}

.AG_COMMON_2026_STYLE_mono {
    font-family: 'JetBrains Mono','SFMono-Regular',Consolas,monospace;
}

/* ---------- TOP BRAND BAR ---------- */
.AG_COMMON_2026_STYLE_hud {
    position: sticky;
    top: 0;
    z-index: 50;
    background: linear-gradient(180deg, rgba(9,12,26,0.97), rgba(9,12,26,0.90));
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--AG_COMMON_2026_STYLE_line);
    padding: 22px clamp(16px,4vw,48px);
    display: flex;
    align-items: center;
}

.AG_COMMON_2026_STYLE_hud-inner {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    position: relative;
    display: flex;
    align-items: center;
}

.AG_COMMON_2026_STYLE_hud-idle {
    display: flex;
    align-items: center;
    gap: 14px;
}

    .AG_COMMON_2026_STYLE_hud-idle .AG_COMMON_2026_STYLE_logo-img {
        height: 48px;
    }

.AG_COMMON_2026_STYLE_hud-tagline {
    margin: 0;
    font-size: 13px;
    color: var(--AG_COMMON_2026_STYLE_slate);
}

.AG_COMMON_2026_STYLE_GenAITheme {
    background: linear-gradient(90deg, var(--AG_COMMON_2026_STYLE_cyan), var(--AG_COMMON_2026_STYLE_violet));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 700;
}

@keyframes pulse {
    0%, 100% {
        opacity: .35;
    }

    50% {
        opacity: 1;
    }
}

/* ---------- FEATURE TOOLTIP (anchored to the hovered node) ---------- */
.AG_COMMON_2026_STYLE_feature-tooltip {
    position: fixed;
    z-index: 80;
    width: min(300px, 82vw);
    padding: 16px 18px;
    border-radius: 14px;
    background: rgba(13,19,40,0.97);
    backdrop-filter: blur(10px);
    border: 1px solid var(--AG_COMMON_2026_STYLE_line);
    box-shadow: 0 12px 40px -8px rgba(0,0,0,0.55), 0 0 0 1px rgba(255,255,255,0.02), 0 0 30px -8px var(--accent, var(--AG_COMMON_2026_STYLE_cyan));
    opacity: 0;
    transform: translateY(4px) scale(0.98);
    pointer-events: none;
    transition: opacity .22s ease, transform .22s ease;
}

    .AG_COMMON_2026_STYLE_feature-tooltip.AG_COMMON_2026_STYLE_show {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

    .AG_COMMON_2026_STYLE_feature-tooltip.AG_COMMON_2026_STYLE_ambient {
        transition: opacity 1.1s ease, transform 1.1s ease;
    }

    .AG_COMMON_2026_STYLE_feature-tooltip .AG_COMMON_2026_STYLE_tt-speaker-slot {
        position: absolute;
        top: 10px;
        right: 10px;
        pointer-events: none;
    }

    .AG_COMMON_2026_STYLE_feature-tooltip.AG_COMMON_2026_STYLE_show .AG_COMMON_2026_STYLE_tt-speaker-slot {
        pointer-events: auto;
    }

    .AG_COMMON_2026_STYLE_feature-tooltip.AG_COMMON_2026_STYLE_show .AG_COMMON_2026_STYLE_tt-expand {
        pointer-events: auto;
    }

    .AG_COMMON_2026_STYLE_feature-tooltip .AG_COMMON_2026_STYLE_tt-speaker-slot .AG_COMMON_2026_STYLE_speaker-btn {
        width: 24px;
        height: 24px;
        font-size: 12px;
    }

    .AG_COMMON_2026_STYLE_feature-tooltip .AG_COMMON_2026_STYLE_row {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        padding-right: 26px;
    }

    .AG_COMMON_2026_STYLE_feature-tooltip .AG_COMMON_2026_STYLE_icon-slot {
        flex: none;
        width: 38px;
        height: 38px;
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--AG_COMMON_2026_STYLE_panel-2);
        border: 1px solid var(--AG_COMMON_2026_STYLE_line);
    }

        .AG_COMMON_2026_STYLE_feature-tooltip .AG_COMMON_2026_STYLE_icon-slot svg {
            width: 19px;
            height: 19px;
            stroke: var(--accent,var(--AG_COMMON_2026_STYLE_cyan));
        }

        .AG_COMMON_2026_STYLE_feature-tooltip .AG_COMMON_2026_STYLE_icon-slot img {
            width: 17px;
            height: 17px;
            object-fit: contain;
        }

    .AG_COMMON_2026_STYLE_feature-tooltip .AG_COMMON_2026_STYLE_eyebrow {
        font-size: 10.5px;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        color: var(--accent,var(--AG_COMMON_2026_STYLE_cyan));
        margin: 0 0 3px;
        font-weight: 600;
    }

    .AG_COMMON_2026_STYLE_feature-tooltip h2 {
        margin: 0 0 5px;
        font-size: 15.5px;
        font-weight: 600;
    }

    .AG_COMMON_2026_STYLE_feature-tooltip p {
        margin: 0;
        font-size: 13px;
        line-height: 1.5;
        color: var(--AG_COMMON_2026_STYLE_slate);
    }

    .AG_COMMON_2026_STYLE_feature-tooltip .AG_COMMON_2026_STYLE_arrow {
        position: absolute;
        width: 12px;
        height: 12px;
        background: rgba(13,19,40,0.97);
        border: 1px solid var(--AG_COMMON_2026_STYLE_line);
        transform: rotate(45deg);
    }

        .AG_COMMON_2026_STYLE_feature-tooltip .AG_COMMON_2026_STYLE_arrow.AG_COMMON_2026_STYLE_down {
            bottom: -7px;
            border-top: none;
            border-left: none;
        }

        .AG_COMMON_2026_STYLE_feature-tooltip .AG_COMMON_2026_STYLE_arrow.AG_COMMON_2026_STYLE_up {
            top: -7px;
            border-bottom: none;
            border-right: none;
        }

.AG_COMMON_2026_STYLE_tt-expand {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    margin-top: 0;
    transition: max-height 1.1s cubic-bezier(.2,.8,.2,1), opacity 1.1s ease, margin-top 1.1s ease;
}

    .AG_COMMON_2026_STYLE_tt-expand.AG_COMMON_2026_STYLE_show {
        max-height: 260px;
        opacity: 1;
        margin-top: 14px;
    }

.AG_COMMON_2026_STYLE_tt-benefits {
    list-style: none;
    margin: 0 0 12px;
    padding: 10px 0 0;
    border-top: 1px solid var(--AG_COMMON_2026_STYLE_line);
    display: flex;
    flex-direction: column;
    gap: 7px;
}

    .AG_COMMON_2026_STYLE_tt-benefits li {
        font-size: 12px;
        line-height: 1.5;
        color: var(--AG_COMMON_2026_STYLE_slate);
        display: flex;
        gap: 7px;
    }

        .AG_COMMON_2026_STYLE_tt-benefits li::before {
            content: '✓';
            color: var(--accent, var(--AG_COMMON_2026_STYLE_cyan));
            font-weight: 700;
            flex: none;
        }

.AG_COMMON_2026_STYLE_tt-readmore {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 11.5px;
    font-weight: 700;
    color: var(--accent, var(--AG_COMMON_2026_STYLE_cyan));
    text-decoration: none;
}

    .AG_COMMON_2026_STYLE_tt-readmore:hover {
        text-decoration: underline;
    }

/* ---------- HERO / HUB ---------- */
.AG_COMMON_2026_STYLE_hero-copy {
    max-width: 640px;
    margin: 56px auto 8px;
    padding: 0 24px;
    text-align: center;
}

    .AG_COMMON_2026_STYLE_hero-copy .AG_COMMON_2026_STYLE_kicker {
        font-size: 12px;
        letter-spacing: .16em;
        text-transform: uppercase;
        color: var(--AG_COMMON_2026_STYLE_violet);
        margin: 0 0 10px;
        font-weight: 600;
    }

    .AG_COMMON_2026_STYLE_hero-copy h1 {
        font-size: clamp(28px,4vw,42px);
        margin: 0 0 12px;
        line-height: 1.1;
    }

        .AG_COMMON_2026_STYLE_hero-copy h1 em {
            font-style: normal;
            background: linear-gradient(90deg,var(--AG_COMMON_2026_STYLE_cyan),var(--AG_COMMON_2026_STYLE_violet));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

    .AG_COMMON_2026_STYLE_hero-copy p {
        color: var(--AG_COMMON_2026_STYLE_slate);
        font-size: 15px;
        line-height: 1.6;
        margin: 0;
    }

.AG_COMMON_2026_STYLE_layout-row {
    display: grid;
    grid-template-columns: minmax(0,1fr) minmax(0,1fr);
    align-items: center;
    gap: clamp(20px,4vw,56px);
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

.AG_COMMON_2026_STYLE_video-panel {
    position: relative;
    width: min(360px, 100%);
    margin: 24px auto;
    border-radius: 18px;
    overflow: hidden;
    background: var(--AG_COMMON_2026_STYLE_panel);
    border: 1px solid var(--AG_COMMON_2026_STYLE_line);
    box-shadow: 0 24px 60px -18px rgba(0,0,0,0.55), 0 0 40px -14px rgba(163,102,245,0.3);
    cursor: pointer;
    outline: none;
    transition: box-shadow .3s ease, border-color .3s ease, transform .3s ease;
}

    .AG_COMMON_2026_STYLE_video-panel:hover, .AG_COMMON_2026_STYLE_video-panel:focus-visible {
        border-color: rgba(76,224,210,0.5);
        box-shadow: 0 24px 60px -18px rgba(0,0,0,0.55), 0 0 50px -10px rgba(76,224,210,0.45);
        transform: translateY(-2px);
    }

    .AG_COMMON_2026_STYLE_video-panel:focus-visible {
        outline: 2px solid var(--AG_COMMON_2026_STYLE_cyan);
        outline-offset: 4px;
    }

    .AG_COMMON_2026_STYLE_video-panel video {
        display: block;
        width: 100%;
        aspect-ratio: 784/1168;
        object-fit: cover;
    }

.AG_COMMON_2026_STYLE_video-loading {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--AG_COMMON_2026_STYLE_panel);
    opacity: 1;
    transition: opacity .4s ease;
}

    .AG_COMMON_2026_STYLE_video-loading.AG_COMMON_2026_STYLE_hide {
        opacity: 0;
        pointer-events: none;
    }

.AG_COMMON_2026_STYLE_video-spinner {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 3px solid var(--AG_COMMON_2026_STYLE_line);
    border-top-color: var(--AG_COMMON_2026_STYLE_cyan);
    animation: AG_COMMON_2026_STYLE_videoSpin .8s linear infinite;
}

@keyframes AG_COMMON_2026_STYLE_videoSpin {
    to {
        transform: rotate(360deg);
    }
}

.AG_COMMON_2026_STYLE_video-brand {
    position: absolute;
    top: 16px;
    left: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(7,10,20,0.45);
    backdrop-filter: blur(6px);
    pointer-events: none;
}

    .AG_COMMON_2026_STYLE_video-brand .AG_COMMON_2026_STYLE_logo-img {
        height: 16px;
    }

.AG_COMMON_2026_STYLE_video-feature-label {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 22px;
    display: flex;
    justify-content: center;
    pointer-events: none;
}

    .AG_COMMON_2026_STYLE_video-feature-label > span {
        display: inline-flex;
        align-items: center;
        gap: 9px;
        font-family: 'Space Grotesk','Inter',system-ui,sans-serif;
        font-size: 15px;
        font-weight: 500;
        letter-spacing: .03em;
        color: rgba(255,255,255,0.92);
        text-shadow: 0 2px 12px rgba(0,0,0,0.7);
        padding: 7px 18px 7px 10px;
        border-radius: 999px;
        background: rgba(7,10,20,0.4);
        backdrop-filter: blur(6px);
        border: 1px solid rgba(255,255,255,0.08);
        opacity: 0;
        transition: opacity 1.4s ease;
    }

        .AG_COMMON_2026_STYLE_video-feature-label > span.AG_COMMON_2026_STYLE_show {
            opacity: 1;
        }

    .AG_COMMON_2026_STYLE_video-feature-label .AG_COMMON_2026_STYLE_fi {
        width: 24px;
        height: 24px;
        border-radius: 50%;
        flex: none;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(255,255,255,0.08);
    }

        .AG_COMMON_2026_STYLE_video-feature-label .AG_COMMON_2026_STYLE_fi svg {
            width: 13px;
            height: 13px;
            stroke: var(--fc, #fff);
        }

        .AG_COMMON_2026_STYLE_video-feature-label .AG_COMMON_2026_STYLE_fi img {
            width: 14px;
            height: 14px;
            object-fit: contain;
        }

    .AG_COMMON_2026_STYLE_video-feature-label .AG_COMMON_2026_STYLE_ft {
        color: var(--fc, #fff);
        text-shadow: 0 2px 14px var(--fc, rgba(0,0,0,0.7)), 0 1px 6px rgba(0,0,0,0.8);
    }

.AG_COMMON_2026_STYLE_hub-wrap {
    position: relative;
    width: min(560px, 100%);
    aspect-ratio: 1/1;
    margin: 24px auto;
}

.AG_COMMON_2026_STYLE_hub-core {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    width: clamp(108px,22vw,168px);
    height: clamp(108px,22vw,168px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at 35% 30%, rgba(163,102,245,0.35), rgba(9,12,26,0.5) 70%), url('/images/features/maincenter.png') center / cover no-repeat;
    border: 1px solid rgba(140,160,220,0.28);
    box-shadow: 0 0 60px -10px rgba(76,224,210,0.35), inset 0 0 30px rgba(163,102,245,0.25);
    cursor: pointer;
    outline: none;
    transition: box-shadow .3s ease, border-color .3s ease, transform .3s ease;
}

    .AG_COMMON_2026_STYLE_hub-core:hover, .AG_COMMON_2026_STYLE_hub-core:focus-visible {
        border-color: rgba(76,224,210,0.6);
        box-shadow: 0 0 90px -6px rgba(76,224,210,0.55), inset 0 0 34px rgba(163,102,245,0.35);
        transform: translate(-50%,-50%) scale(1.045);
    }

    .AG_COMMON_2026_STYLE_hub-core:focus-visible {
        outline: 2px solid var(--AG_COMMON_2026_STYLE_cyan);
        outline-offset: 5px;
    }

    .AG_COMMON_2026_STYLE_hub-core.AG_COMMON_2026_STYLE_invite {
        border-color: var(--AG_COMMON_2026_STYLE_cyan);
        box-shadow: 0 0 110px -4px rgba(76,224,210,0.85), inset 0 0 42px rgba(163,102,245,0.5);
        animation: invitePulse 1.6s ease-in-out infinite;
    }

@keyframes invitePulse {
    0%, 100% {
        transform: translate(-50%,-50%) scale(1.04);
    }

    50% {
        transform: translate(-50%,-50%) scale(1.09);
    }
}

.AG_COMMON_2026_STYLE_hub-core.AG_COMMON_2026_STYLE_invite .AG_COMMON_2026_STYLE_glyph {
    color: var(--AG_COMMON_2026_STYLE_cyan);
}

.AG_COMMON_2026_STYLE_hub-core.AG_COMMON_2026_STYLE_random-glow {
    animation: randomGlow 1.4s ease-in-out;
}

@keyframes randomGlow {
    0% {
        box-shadow: 0 0 60px -10px rgba(76,224,210,0.35), inset 0 0 30px rgba(163,102,245,0.25);
    }

    35% {
        border-color: rgba(76,224,210,0.75);
        box-shadow: 0 0 120px 10px rgba(76,224,210,0.75), inset 0 0 44px rgba(163,102,245,0.55);
        transform: translate(-50%,-50%) scale(1.06);
    }

    100% {
        box-shadow: 0 0 60px -10px rgba(76,224,210,0.35), inset 0 0 30px rgba(163,102,245,0.25);
        transform: translate(-50%,-50%) scale(1);
    }
}

.AG_COMMON_2026_STYLE_hub-core::before {
    content: "";
    position: absolute;
    inset: 10px;
    border-radius: 50%;
    border: 1px dashed rgba(140,160,220,0.35);
    animation: spin 40s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.AG_COMMON_2026_STYLE_hub-core .AG_COMMON_2026_STYLE_glyph {
    font-size: clamp(11px,1.6vw,13px);
    font-weight: 700;
    letter-spacing: .06em;
    color: var(--AG_COMMON_2026_STYLE_ice);
    position: relative;
    text-align: center;
    transition: opacity .2s ease;
}

    .AG_COMMON_2026_STYLE_hub-core .AG_COMMON_2026_STYLE_glyph small {
        display: block;
        font-size: 9px;
        font-weight: 500;
        color: var(--AG_COMMON_2026_STYLE_slate);
        letter-spacing: .14em;
        margin-top: 3px;
    }

.AG_COMMON_2026_STYLE_join-hint {
    position: absolute;
    left: 50%;
    top: 100%;
    transform: translate(-50%,10px);
    margin-top: 14px;
    font-size: 12px;
    font-weight: 600;
    color: var(--AG_COMMON_2026_STYLE_cyan);
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease, transform .25s ease;
}

.AG_COMMON_2026_STYLE_hub-core:hover ~ .AG_COMMON_2026_STYLE_join-hint, .AG_COMMON_2026_STYLE_hub-core:focus-visible ~ .AG_COMMON_2026_STYLE_join-hint {
    opacity: 1;
    transform: translate(-50%,0);
}

.AG_COMMON_2026_STYLE_node {
    position: absolute;
    left: 50%;
    top: 50%;
    width: clamp(56px,8vw,78px);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    transform: translate(-50%,-50%);
    cursor: pointer;
    outline: none;
    opacity: 0;
    animation: fadeIn .6s ease forwards;
}

    .AG_COMMON_2026_STYLE_node .AG_COMMON_2026_STYLE_ring {
        position: relative;
        width: clamp(46px,7vw,58px);
        height: clamp(46px,7vw,58px);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--AG_COMMON_2026_STYLE_panel);
        border: 1px solid var(--AG_COMMON_2026_STYLE_line);
        transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease, background .25s ease;
    }

        .AG_COMMON_2026_STYLE_node .AG_COMMON_2026_STYLE_ring svg {
            width: 20px;
            height: 20px;
            stroke: var(--AG_COMMON_2026_STYLE_slate);
            transition: stroke .25s ease;
            position: relative;
            z-index: 2;
        }

        .AG_COMMON_2026_STYLE_node .AG_COMMON_2026_STYLE_ring img {
            width: 17px;
            height: 17px;
            position: relative;
            z-index: 2;
            opacity: .82;
            transition: opacity .25s ease;
        }

    .AG_COMMON_2026_STYLE_node:hover .AG_COMMON_2026_STYLE_ring img, .AG_COMMON_2026_STYLE_node:focus-visible .AG_COMMON_2026_STYLE_ring img, .AG_COMMON_2026_STYLE_node.AG_COMMON_2026_STYLE_active .AG_COMMON_2026_STYLE_ring img {
        opacity: 1;
    }

.AG_COMMON_2026_STYLE_wave {
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    border: 1px solid var(--accent, var(--AG_COMMON_2026_STYLE_cyan));
    opacity: 0;
    pointer-events: none;
    animation: ripple 4.2s ease-out infinite;
    animation-delay: var(--wave-delay, 0s);
}

    .AG_COMMON_2026_STYLE_wave.AG_COMMON_2026_STYLE_w2 {
        animation-delay: calc(var(--wave-delay, 0s) + 2.1s);
    }

@keyframes ripple {
    0% {
        transform: scale(0.75);
        opacity: 0.45;
    }

    70% {
        opacity: 0.12;
    }

    100% {
        transform: scale(2.4);
        opacity: 0;
    }
}

.AG_COMMON_2026_STYLE_node:hover .AG_COMMON_2026_STYLE_wave, .AG_COMMON_2026_STYLE_node:focus-visible .AG_COMMON_2026_STYLE_wave, .AG_COMMON_2026_STYLE_node.AG_COMMON_2026_STYLE_active .AG_COMMON_2026_STYLE_wave {
    animation-duration: 1.8s;
    border-width: 1.4px;
}

.AG_COMMON_2026_STYLE_node .AG_COMMON_2026_STYLE_label {
    font-size: 11.5px;
    font-weight: 600;
    color: var(--AG_COMMON_2026_STYLE_slate);
    text-align: center;
    line-height: 1.25;
    transition: color .25s ease;
    max-width: 90px;
}

.AG_COMMON_2026_STYLE_node:hover .AG_COMMON_2026_STYLE_ring, .AG_COMMON_2026_STYLE_node:focus-visible .AG_COMMON_2026_STYLE_ring, .AG_COMMON_2026_STYLE_node.AG_COMMON_2026_STYLE_active .AG_COMMON_2026_STYLE_ring {
    border-color: var(--accent, var(--AG_COMMON_2026_STYLE_cyan));
    box-shadow: 0 0 0 4px rgba(76,224,210,0.08), 0 0 28px -6px var(--accent, var(--AG_COMMON_2026_STYLE_cyan));
    transform: scale(1.08);
    background: var(--AG_COMMON_2026_STYLE_panel-2);
}

    .AG_COMMON_2026_STYLE_node:hover .AG_COMMON_2026_STYLE_ring svg, .AG_COMMON_2026_STYLE_node:focus-visible .AG_COMMON_2026_STYLE_ring svg, .AG_COMMON_2026_STYLE_node.AG_COMMON_2026_STYLE_active .AG_COMMON_2026_STYLE_ring svg {
        stroke: var(--accent, var(--AG_COMMON_2026_STYLE_cyan));
    }

.AG_COMMON_2026_STYLE_node:hover .AG_COMMON_2026_STYLE_label, .AG_COMMON_2026_STYLE_node:focus-visible .AG_COMMON_2026_STYLE_label, .AG_COMMON_2026_STYLE_node.AG_COMMON_2026_STYLE_active .AG_COMMON_2026_STYLE_label {
    color: var(--AG_COMMON_2026_STYLE_ice);
}

.AG_COMMON_2026_STYLE_node:focus-visible .AG_COMMON_2026_STYLE_ring {
    outline: 2px solid var(--AG_COMMON_2026_STYLE_cyan);
    outline-offset: 3px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translate(-50%,-50%) scale(.7);
    }

    to {
        opacity: 1;
        transform: translate(-50%,-50%) scale(1);
    }
}

.AG_COMMON_2026_STYLE_footer-note {
    text-align: center;
    color: var(--AG_COMMON_2026_STYLE_slate);
    font-size: 12.5px;
    padding: 0 24px 8px;
    max-width: 520px;
    margin: 0 auto;
}

    .AG_COMMON_2026_STYLE_footer-note b {
        color: var(--AG_COMMON_2026_STYLE_ice);
        font-weight: 600;
    }

/* ---------- SHOWCASE PANEL (auto-sliding) ---------- */
.AG_COMMON_2026_STYLE_showcase-panel {
    width: min(460px, 100%);
    margin: 24px auto;
}

.AG_COMMON_2026_STYLE_showcase-eyebrow {
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--AG_COMMON_2026_STYLE_slate);
    margin: 0 0 10px;
    text-align: center;
}

.AG_COMMON_2026_STYLE_showcase-frame {
    position: relative;
    aspect-ratio: 1/1;
    border-radius: 18px;
    background: linear-gradient(180deg, var(--AG_COMMON_2026_STYLE_panel-2), var(--AG_COMMON_2026_STYLE_panel));
    border: 1px solid var(--AG_COMMON_2026_STYLE_line);
    box-shadow: 0 24px 60px -18px rgba(0,0,0,0.55), 0 0 40px -14px rgba(76,224,210,0.25);
    overflow: hidden;
}

.AG_COMMON_2026_STYLE_slide {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateX(16px);
    pointer-events: none;
    transition: opacity .5s ease, transform .5s ease;
}

    .AG_COMMON_2026_STYLE_slide.AG_COMMON_2026_STYLE_active {
        opacity: 1;
        transform: translateX(0);
        pointer-events: auto;
    }

#showcaseSlideFirst {
    cursor: pointer;
}

    #showcaseSlideFirst:hover .AG_COMMON_2026_STYLE_slide-bar, #showcaseSlideFirst:focus-visible .AG_COMMON_2026_STYLE_slide-bar {
        color: var(--AG_COMMON_2026_STYLE_cyan);
    }

.AG_COMMON_2026_STYLE_slide-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px 18px;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--AG_COMMON_2026_STYLE_slate);
    border-bottom: 1px solid var(--AG_COMMON_2026_STYLE_line);
    flex: none;
}

    .AG_COMMON_2026_STYLE_slide-bar .AG_COMMON_2026_STYLE_dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        flex: none;
    }

.AG_COMMON_2026_STYLE_slide-body {
    flex: 1;
    padding: 20px 20px 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    justify-content: center;
}

/* Help-feature image slides */
.AG_COMMON_2026_STYLE_slide-img-body {
    flex: 1;
    min-height: 0;
    min-width: 0;
    padding: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

    .AG_COMMON_2026_STYLE_slide-img-body img {
        max-width: 100%;
        max-height: 100%;
        width: auto;
        height: auto;
        object-fit: contain;
        border-radius: 12px;
        filter: drop-shadow(0 12px 30px rgba(0,0,0,0.4));
        transition: transform .3s ease;
    }

.AG_COMMON_2026_STYLE_slide.AG_COMMON_2026_STYLE_active .AG_COMMON_2026_STYLE_slide-img-body img {
    transform: scale(1);
}

.AG_COMMON_2026_STYLE_slide-img-body:hover img {
    transform: scale(1.03);
}

.AG_COMMON_2026_STYLE_slide-img-cta {
    position: absolute;
    bottom: 14px;
    right: 14px;
    font-size: 11px;
    font-weight: 700;
    color: var(--AG_COMMON_2026_STYLE_void);
    background: var(--AG_COMMON_2026_STYLE_cyan);
    border-radius: 999px;
    padding: 6px 12px;
    display: flex;
    align-items: center;
    gap: 5px;
    opacity: 0;
    transform: translateY(4px);
    transition: opacity .25s ease, transform .25s ease;
}

.AG_COMMON_2026_STYLE_slide-img-body:hover .AG_COMMON_2026_STYLE_slide-img-cta, .AG_COMMON_2026_STYLE_slide-img-body:focus-visible .AG_COMMON_2026_STYLE_slide-img-cta {
    opacity: 1;
    transform: translateY(0);
}

.AG_COMMON_2026_STYLE_slide-img-fallback {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    background: var(--AG_COMMON_2026_STYLE_panel-2);
    border: 1px solid var(--AG_COMMON_2026_STYLE_line);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 44px;
}

/* Scribe slide */
.AG_COMMON_2026_STYLE_listening-pill {
    align-self: flex-start;
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 6px 12px;
    border-radius: 999px;
    background: var(--AG_COMMON_2026_STYLE_panel);
    border: 1px solid var(--AG_COMMON_2026_STYLE_line);
    font-size: 11.5px;
    color: var(--AG_COMMON_2026_STYLE_cyan);
    font-weight: 600;
}

    .AG_COMMON_2026_STYLE_listening-pill .AG_COMMON_2026_STYLE_pulse {
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: var(--AG_COMMON_2026_STYLE_cyan);
        animation: pulse 1.4s ease-in-out infinite;
    }

.AG_COMMON_2026_STYLE_waveform {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    height: 44px;
}

    .AG_COMMON_2026_STYLE_waveform span {
        flex: 1;
        border-radius: 3px;
        background: linear-gradient(180deg,var(--AG_COMMON_2026_STYLE_cyan),var(--AG_COMMON_2026_STYLE_violet));
        animation: wf 1.2s ease-in-out infinite;
    }

        .AG_COMMON_2026_STYLE_waveform span:nth-child(odd) {
            animation-duration: .9s;
        }

        .AG_COMMON_2026_STYLE_waveform span:nth-child(3n) {
            animation-delay: .15s;
        }

        .AG_COMMON_2026_STYLE_waveform span:nth-child(4n) {
            animation-delay: .3s;
        }

@keyframes wf {
    0%, 100% {
        height: 20%;
    }

    50% {
        height: 100%;
    }
}

.AG_COMMON_2026_STYLE_skel-line {
    height: 9px;
    border-radius: 5px;
    background: rgba(140,160,220,0.16);
}

    .AG_COMMON_2026_STYLE_skel-line.AG_COMMON_2026_STYLE_dim {
        background: rgba(140,160,220,0.09);
        height: 7px;
    }

.AG_COMMON_2026_STYLE_w90 {
    width: 90%;
}

.AG_COMMON_2026_STYLE_w70 {
    width: 70%;
}

.AG_COMMON_2026_STYLE_w60 {
    width: 60%;
}

.AG_COMMON_2026_STYLE_w50 {
    width: 50%;
}

.AG_COMMON_2026_STYLE_w40 {
    width: 40%;
}

.AG_COMMON_2026_STYLE_w30 {
    width: 30%;
}

/* Chat slide */
.AG_COMMON_2026_STYLE_chat-bubble {
    max-width: 78%;
    padding: 10px 13px;
    border-radius: 12px;
    font-size: 12.5px;
    line-height: 1.45;
}

    .AG_COMMON_2026_STYLE_chat-bubble.AG_COMMON_2026_STYLE_bot {
        align-self: flex-start;
        background: var(--AG_COMMON_2026_STYLE_panel);
        border: 1px solid var(--AG_COMMON_2026_STYLE_line);
        border-bottom-left-radius: 3px;
        color: var(--AG_COMMON_2026_STYLE_ice);
    }

    .AG_COMMON_2026_STYLE_chat-bubble.AG_COMMON_2026_STYLE_user {
        align-self: flex-end;
        background: linear-gradient(90deg,var(--AG_COMMON_2026_STYLE_violet),var(--AG_COMMON_2026_STYLE_magenta));
        color: var(--AG_COMMON_2026_STYLE_void);
        font-weight: 600;
        border-bottom-right-radius: 3px;
    }

/* Document styles slide */
.AG_COMMON_2026_STYLE_template-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 12px;
}

.AG_COMMON_2026_STYLE_tpl {
    aspect-ratio: 3/4;
    border-radius: 8px;
    background: var(--AG_COMMON_2026_STYLE_panel);
    border: 1px solid var(--AG_COMMON_2026_STYLE_line);
    position: relative;
    overflow: hidden;
}

    .AG_COMMON_2026_STYLE_tpl::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 26%;
        background: var(--tc);
        opacity: .55;
    }

    .AG_COMMON_2026_STYLE_tpl::after {
        content: "";
        position: absolute;
        left: 14%;
        right: 14%;
        top: 40%;
        height: 8%;
        background: rgba(234,240,255,0.18);
        border-radius: 3px;
        box-shadow: 0 16px 0 -2px rgba(234,240,255,0.12), 0 30px 0 -3px rgba(234,240,255,0.09);
    }

/* AstralBooks slide */
.AG_COMMON_2026_STYLE_file-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

    .AG_COMMON_2026_STYLE_file-row > div {
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 6px;
    }

.AG_COMMON_2026_STYLE_file-ic {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    flex: none;
    opacity: .85;
}

/* Planner slide */
.AG_COMMON_2026_STYLE_cal-grid {
    display: grid;
    grid-template-columns: repeat(7,1fr);
    gap: 6px;
    text-align: center;
}

.AG_COMMON_2026_STYLE_cal-h {
    font-size: 10px;
    color: var(--AG_COMMON_2026_STYLE_slate);
    font-weight: 600;
}

.AG_COMMON_2026_STYLE_cal-d {
    font-size: 11px;
    color: var(--AG_COMMON_2026_STYLE_ice);
    padding: 6px 0;
    border-radius: 6px;
    background: var(--AG_COMMON_2026_STYLE_panel);
}

    .AG_COMMON_2026_STYLE_cal-d.AG_COMMON_2026_STYLE_active-a {
        background: var(--AG_COMMON_2026_STYLE_cyan);
        color: var(--AG_COMMON_2026_STYLE_void);
        font-weight: 700;
    }

    .AG_COMMON_2026_STYLE_cal-d.AG_COMMON_2026_STYLE_active-b {
        background: var(--AG_COMMON_2026_STYLE_violet);
        color: var(--AG_COMMON_2026_STYLE_void);
        font-weight: 700;
    }

.AG_COMMON_2026_STYLE_showcase-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
}

    .AG_COMMON_2026_STYLE_showcase-dots button {
        width: 7px;
        height: 7px;
        border-radius: 50%;
        border: none;
        padding: 0;
        cursor: pointer;
        background: rgba(140,160,220,0.3);
        transition: background .25s ease, transform .25s ease;
    }

        .AG_COMMON_2026_STYLE_showcase-dots button.AG_COMMON_2026_STYLE_active {
            background: var(--AG_COMMON_2026_STYLE_cyan);
            transform: scale(1.3);
        }

@media (max-width:860px) {
    .AG_COMMON_2026_STYLE_layout-row {
        grid-template-columns: 1fr;
    }
}

/* ---------- SIGNUP OVERLAY ---------- */
.AG_COMMON_2026_STYLE_visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
}

@media (max-width:640px) {
    .AG_COMMON_2026_STYLE_hero-copy {
        margin-top: 36px;
    }

    .AG_COMMON_2026_STYLE_auth-actions {
        gap: 8px;
    }

    .AG_COMMON_2026_STYLE_login-link {
        font-size: 12px;
        padding: 6px 12px;
    }

    .AG_COMMON_2026_STYLE_signup-cta {
        font-size: 12px;
        padding: 7px 14px;
    }

    .AG_COMMON_2026_STYLE_hud {
        padding: 16px clamp(16px,4vw,48px);
    }

    .AG_COMMON_2026_STYLE_hud-tagline {
        display: none;
    }

    .AG_COMMON_2026_STYLE_feature-tooltip {
        padding: 14px 16px;
    }

        .AG_COMMON_2026_STYLE_feature-tooltip h2 {
            font-size: 15px;
        }

        .AG_COMMON_2026_STYLE_feature-tooltip p {
            font-size: 12.5px;
        }
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
    }

    .AG_COMMON_2026_STYLE_hub-core::before {
        animation: none;
    }
}

/*********************************/
.AG_COMMON_2026_STYLE_login-brandblock {
    text-align: center;
    margin-bottom: 18px;
}

.AG_COMMON_2026_STYLE_login-logo {
    height: 40px;
    margin-bottom: 14px;
}

.AG_COMMON_2026_STYLE_login-session-expired {
    font-size: 12.5px;
    font-weight: 600;
    color: #F244C0;
    margin: 0 0 10px;
}

.AG_COMMON_2026_STYLE_login-brandblock h2 {
    margin: 0 0 6px;
    font-size: 22px;
}

.AG_COMMON_2026_STYLE_login-sub {
    margin: 0;
    font-size: 13.5px;
    color: var(--AG_COMMON_2026_STYLE_slate);
}

.AG_COMMON_2026_STYLE_login-external-note {
    font-size: 12.5px;
    color: var(--AG_COMMON_2026_STYLE_slate);
    line-height: 1.6;
}

    .AG_COMMON_2026_STYLE_login-external-note a {
        color: var(--AG_COMMON_2026_STYLE_cyan);
    }

.AG_COMMON_2026_STYLE_login-external-row {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.AG_COMMON_2026_STYLE_login-oauth-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 12px 15px;
    border-radius: 10px;
    cursor: pointer;
    background: var(--AG_COMMON_2026_STYLE_void);
    border: 1px solid var(--AG_COMMON_2026_STYLE_line);
    color: var(--AG_COMMON_2026_STYLE_ice);
    font-size: 13.5px;
    font-weight: 600;
    font-family: inherit;
    transition: border-color .2s ease, background .2s ease;
}

    .AG_COMMON_2026_STYLE_login-oauth-btn:hover, .AG_COMMON_2026_STYLE_login-oauth-btn:focus-visible {
        border-color: var(--AG_COMMON_2026_STYLE_cyan);
        background: var(--AG_COMMON_2026_STYLE_panel-2);
    }

    .AG_COMMON_2026_STYLE_login-oauth-btn img {
        width: 18px;
        height: 18px;
    }

.AG_COMMON_2026_STYLE_login-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 18px 0;
    font-size: 11px;
    color: var(--AG_COMMON_2026_STYLE_slate);
    text-transform: uppercase;
    letter-spacing: .06em;
}

    .AG_COMMON_2026_STYLE_login-divider::before, .AG_COMMON_2026_STYLE_login-divider::after {
        content: '';
        flex: 1;
        height: 1px;
        background: var(--AG_COMMON_2026_STYLE_line);
    }

.AG_COMMON_2026_STYLE_login-account-note {
    font-size: 12.5px;
    color: var(--AG_COMMON_2026_STYLE_slate);
    text-align: center;
    margin: 0 0 16px;
}

    .AG_COMMON_2026_STYLE_login-account-note .GenAITheme {
        background: linear-gradient(90deg, var(--AG_COMMON_2026_STYLE_cyan), var(--AG_COMMON_2026_STYLE_violet));
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        font-weight: 700;
    }

.AG_COMMON_2026_STYLE_login-validation-summary {
    font-size: 12.5px;
    color: #F244C0;
    margin-bottom: 10px;
}

    .AG_COMMON_2026_STYLE_login-validation-summary:empty {
        display: none;
    }

.AG_COMMON_2026_STYLE_login-field-group {
    position: relative;
    margin-bottom: 10px;
    text-align: left;
}

    .AG_COMMON_2026_STYLE_login-field-group input {
        width: 100%;
        height: 46px;
        padding: 18px 14px 5px 14px;
        border-radius: 10px;
        background: var(--AG_COMMON_2026_STYLE_ice);
        border: 1px solid var(--AG_COMMON_2026_STYLE_line);
        color: #111528;
        font-size: 14px;
        font-family: inherit;
        outline: none;
        transition: border-color .2s ease, box-shadow .2s ease;
    }

        .AG_COMMON_2026_STYLE_login-field-group input:focus {
            border-color: var(--AG_COMMON_2026_STYLE_violet);
            box-shadow: 0 0 0 3px rgba(163,102,245,0.25);
        }

        .AG_COMMON_2026_STYLE_login-field-group input::placeholder {
            color: transparent;
        }

    /* Floating label: sits over the input like a placeholder when empty,
       shrinks to a small caption pinned to the top of the box once the
       field is focused or has a value — relies on the input already
       coming before the label in the markup (it does) so :placeholder-shown
       can drive the sibling selector below. Requires the input to have a
       non-empty placeholder attribute, which it already does. Colors here
       are deliberately dark, since the field background is light. */
    .AG_COMMON_2026_STYLE_login-field-group label {
        position: absolute;
        left: 14px;
        top: 13px;
        font-size: 14px;
        color: #5A6072;
        pointer-events: none;
        transform-origin: 0 0;
        transition: transform .15s ease, top .15s ease, color .15s ease;
    }

    .AG_COMMON_2026_STYLE_login-field-group input:focus ~ label,
    .AG_COMMON_2026_STYLE_login-field-group input:not(:placeholder-shown) ~ label {
        top: 6px;
        transform: scale(0.72);
        color: #6D3FC7;
        text-transform: uppercase;
        letter-spacing: .03em;
    }

.AG_COMMON_2026_STYLE_login-field-error {
    display: block;
    font-size: 11.5px;
    color: #F244C0;
    margin-top: 5px;
    line-height: 1;
    min-height: 0;
}

    .AG_COMMON_2026_STYLE_login-field-error:empty {
        display: none;
        margin: 0;
        height: 0;
    }

.AG_COMMON_2026_STYLE_login-remember {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12.5px;
    color: var(--AG_COMMON_2026_STYLE_slate);
    margin: 6px 0 6px;
    cursor: pointer;
    user-select: none;
}

    .AG_COMMON_2026_STYLE_login-remember input {
        width: 15px;
        height: 15px;
        accent-color: var(--AG_COMMON_2026_STYLE_cyan);
        cursor: pointer;
    }

.AG_COMMON_2026_STYLE_login-submit {
    width: 100%;
    padding: 13px 15px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    font-family: inherit;
    color: var(--AG_COMMON_2026_STYLE_void);
    background: linear-gradient(90deg, var(--AG_COMMON_2026_STYLE_cyan), var(--AG_COMMON_2026_STYLE_violet));
    transition: filter .2s ease, transform .2s ease;
}

    .AG_COMMON_2026_STYLE_login-submit:hover {
        filter: brightness(1.08);
        transform: translateY(-1px);
    }

.AG_COMMON_2026_STYLE_login-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
}

    .AG_COMMON_2026_STYLE_login-links a {
        font-size: 12.5px;
        color: var(--AG_COMMON_2026_STYLE_slate);
        text-decoration: none;
    }

        .AG_COMMON_2026_STYLE_login-links a:hover {
            color: var(--AG_COMMON_2026_STYLE_cyan);
        }


