:root {
    color-scheme: dark;
    --bg: #08090b;
    --panel: rgba(18, 20, 24, 0.82);
    --panel-solid: #121418;
    --line: rgba(232, 237, 242, 0.12);
    --text: #f7f8f8;
    --muted: rgba(247, 248, 248, 0.68);
    --soft: rgba(247, 248, 248, 0.48);
    --cyan: #6ee7f9;
    --mint: #6ff2c2;
    --rose: #f0a8c8;
    --amber: #f1d18a;
    --danger: #ff8d8d;
    --radius: 8px;
    --shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    background:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        var(--bg);
    background-size: 72px 72px, 72px 72px, auto;
    color: var(--text);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    letter-spacing: 0;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(111, 242, 194, 0.08), transparent 34%, rgba(240, 168, 200, 0.05));
}

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

button,
input,
textarea {
    font: inherit;
}

.product-shell {
    position: relative;
    z-index: 1;
    min-height: 100vh;
}

.product-nav {
    position: sticky;
    top: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 18px clamp(20px, 5vw, 72px);
    border-bottom: 1px solid var(--line);
    background: rgba(8, 9, 11, 0.78);
    backdrop-filter: blur(22px);
}

.brand-lockup,
.nav-links,
.nav-actions,
.inline-cluster {
    display: flex;
    align-items: center;
    gap: 14px;
}

.brand-mark {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
}

.brand-mark img {
    width: 100%;
    height: 100%;
}

.brand-lockup strong {
    font-size: 0.95rem;
}

.brand-lockup span,
.eyebrow,
.small-label {
    color: var(--soft);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.nav-links {
    flex-wrap: wrap;
    justify-content: center;
    color: var(--muted);
    font-size: 0.9rem;
}

.nav-links a:hover,
.footer-grid a:hover {
    color: var(--text);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 16px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    color: var(--text);
    background: rgba(255, 255, 255, 0.05);
    cursor: pointer;
}

.btn.primary {
    border-color: rgba(110, 231, 249, 0.42);
    background: linear-gradient(135deg, rgba(110, 231, 249, 0.22), rgba(111, 242, 194, 0.16));
}

.btn.ghost {
    background: transparent;
}

.btn:hover {
    transform: translateY(-1px);
    border-color: rgba(255, 255, 255, 0.28);
}

.hero {
    min-height: calc(100vh - 78px);
    display: grid;
    align-items: center;
    padding: 72px clamp(20px, 6vw, 96px) 48px;
}

.hero-inner {
    width: min(1120px, 100%);
    margin: 0 auto;
    text-align: center;
}

.hero-brand {
    display: grid;
    place-items: center;
    gap: 22px;
}

.hero-brand img {
    width: clamp(72px, 10vw, 116px);
    height: clamp(72px, 10vw, 116px);
    filter: drop-shadow(0 16px 42px rgba(110, 231, 249, 0.18));
}

.hero h1,
.page-hero h1 {
    margin: 0;
    font-size: clamp(4rem, 11vw, 9.5rem);
    line-height: 0.88;
    letter-spacing: 0;
}

.hero h2 {
    margin: 18px 0 0;
    font-size: clamp(1.6rem, 4vw, 3.25rem);
    font-weight: 520;
}

.hero-words {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin: 24px 0;
    color: var(--muted);
    font-size: clamp(1.2rem, 3vw, 2.15rem);
}

.hero p,
.page-hero p {
    max-width: 720px;
    margin: 0 auto;
    color: var(--muted);
    font-size: 1.13rem;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}

.signal-strip {
    width: min(880px, 100%);
    height: 86px;
    margin: 48px auto 0;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.035);
    overflow: hidden;
}

.signal-strip svg {
    width: 100%;
    height: 100%;
}

.signal-strip path {
    fill: none;
    stroke: url(#productSignal);
    stroke-width: 2.4;
    filter: drop-shadow(0 0 12px rgba(110, 231, 249, 0.5));
    animation: signalSlide 6s linear infinite;
}

.section,
.page-section {
    padding: 82px clamp(20px, 6vw, 96px);
}

.section-inner {
    width: min(1120px, 100%);
    margin: 0 auto;
}

.section h2,
.page-hero h1 {
    font-size: clamp(2.2rem, 5vw, 4.8rem);
    line-height: 1;
}

.section h2,
.section p,
.page-hero h1,
.page-hero p {
    margin-top: 0;
}

.section-lead {
    max-width: 680px;
    color: var(--muted);
    line-height: 1.7;
}

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

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

.card,
.mockup,
.auth-panel,
.wizard-panel,
.doc-card,
.price-card {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--panel);
    box-shadow: var(--shadow);
}

.card,
.doc-card,
.price-card {
    padding: 22px;
}

.card h3,
.doc-card h3,
.price-card h3 {
    margin: 0 0 10px;
    font-size: 1.1rem;
}

.card p,
.doc-card p,
.price-card p,
.price-card li {
    color: var(--muted);
    line-height: 1.6;
}

.flow-rail {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 10px;
    margin-top: 28px;
}

.flow-step {
    min-height: 108px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 16px;
    background: rgba(255, 255, 255, 0.04);
}

.flow-step span {
    color: var(--cyan);
    font-size: 0.82rem;
}

.mockup {
    padding: 18px;
    overflow: hidden;
}

.mockup-header,
.mockup-row,
.footer-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.mockup-screen {
    min-height: 360px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 280px;
    gap: 12px;
    margin-top: 16px;
}

.conversation-pane,
.runtime-pane {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 16px;
    background: rgba(0, 0, 0, 0.18);
}

.message {
    max-width: 86%;
    margin: 0 0 12px;
    padding: 12px 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    color: var(--muted);
    background: rgba(255, 255, 255, 0.04);
}

.message.user {
    margin-left: auto;
    color: var(--text);
    border-color: rgba(110, 231, 249, 0.22);
}

.runtime-list {
    display: grid;
    gap: 10px;
}

.runtime-list span {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    color: var(--muted);
}

.auth-wrap,
.wizard-wrap,
.page-hero {
    min-height: calc(100vh - 78px);
    display: grid;
    place-items: center;
    padding: 48px 20px;
}

.auth-panel,
.wizard-panel {
    width: min(520px, 100%);
    padding: 28px;
}

.auth-panel h1,
.wizard-panel h1 {
    margin: 0 0 10px;
    font-size: 2rem;
}

.field {
    display: grid;
    gap: 8px;
    margin-top: 16px;
}

.field label {
    color: var(--muted);
    font-size: 0.9rem;
}

.field input {
    width: 100%;
    min-height: 46px;
    padding: 0 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    color: var(--text);
    background: rgba(0, 0, 0, 0.2);
}

.field textarea {
    width: 100%;
    min-height: 150px;
    resize: vertical;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    color: var(--text);
    background: rgba(0, 0, 0, 0.2);
}

.field input:focus,
.field textarea:focus,
.btn:focus-visible,
.choice:focus-visible {
    outline: 2px solid rgba(110, 231, 249, 0.8);
    outline-offset: 2px;
}

.auth-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin: 16px 0;
    color: var(--muted);
    font-size: 0.9rem;
}

.divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 22px 0;
    color: var(--soft);
}

.divider::before,
.divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: var(--line);
}

.policy-modal {
    position: fixed;
    inset: 0;
    display: none;
    place-items: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.58);
    z-index: 30;
}

.policy-modal.is-open {
    display: grid;
}

.policy-box {
    width: min(640px, 100%);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #101216;
    padding: 24px;
}

.choice-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin: 20px 0;
}

.choice {
    min-height: 46px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    color: var(--text);
    background: rgba(255, 255, 255, 0.04);
    cursor: pointer;
}

.choice[aria-pressed="true"] {
    border-color: rgba(111, 242, 194, 0.58);
    background: rgba(111, 242, 194, 0.12);
}

.wizard-progress {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 6px;
    margin: 22px 0;
}

.wizard-progress span {
    height: 4px;
    border-radius: 99px;
    background: rgba(255, 255, 255, 0.12);
}

.wizard-progress span.active {
    background: var(--mint);
}

.footer {
    border-top: 1px solid var(--line);
    padding: 34px clamp(20px, 6vw, 96px);
    color: var(--muted);
}

.footer-grid {
    width: min(1120px, 100%);
    margin: 0 auto;
    flex-wrap: wrap;
}

.command-palette {
    position: fixed;
    inset: 0;
    z-index: 40;
    display: none;
    place-items: start center;
    padding: 12vh 18px 18px;
    background: rgba(0, 0, 0, 0.48);
}

.command-palette.is-open {
    display: grid;
}

.command-box {
    width: min(680px, 100%);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #101216;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.command-box input {
    width: 100%;
    min-height: 58px;
    border: 0;
    border-bottom: 1px solid var(--line);
    padding: 0 18px;
    color: var(--text);
    background: transparent;
}

.command-list {
    display: grid;
    padding: 8px;
}

.command-list a,
.command-list button {
    min-height: 44px;
    padding: 0 12px;
    border: 0;
    border-radius: var(--radius);
    color: var(--muted);
    text-align: left;
    background: transparent;
    cursor: pointer;
}

.command-list a:hover,
.command-list button:hover {
    color: var(--text);
    background: rgba(255, 255, 255, 0.06);
}

@keyframes signalSlide {
    from {
        stroke-dasharray: 920 160;
        stroke-dashoffset: 0;
    }
    to {
        stroke-dasharray: 920 160;
        stroke-dashoffset: -1080;
    }
}

@media (max-width: 940px) {
    .product-nav,
    .nav-links,
    .nav-actions {
        align-items: flex-start;
    }

    .product-nav {
        position: static;
        flex-direction: column;
    }

    .grid,
    .grid.two,
    .flow-rail,
    .mockup-screen {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: auto;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* DGXONE ABOUT PAGE V2 */
.brand-copy {
    display: grid;
    gap: 0.12rem;
    line-height: 1;
}

.brand-copy strong {
    letter-spacing: 0.06em;
}

.brand-copy > span {
    color: var(--muted, #8b96a8);
    font-size: 0.66rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.premium-about {
    overflow: hidden;
}

.about-intro {
    position: relative;
    min-height: calc(100vh - 86px);
    display: grid;
    align-items: center;
    padding: clamp(6rem, 12vw, 11rem) 2rem;
    isolation: isolate;
}

.about-glow {
    position: absolute;
    z-index: -1;
    top: 8%;
    left: 50%;
    width: min(70vw, 900px);
    aspect-ratio: 1.2;
    transform: translateX(-50%);
    background:
        radial-gradient(
            circle,
            rgba(74, 166, 255, 0.16) 0,
            rgba(57, 119, 204, 0.06) 34%,
            transparent 70%
        );
    filter: blur(18px);
    pointer-events: none;
}

.about-intro-inner {
    width: min(1180px, 100%);
    margin-inline: auto;
    text-align: center;
}

.about-intro h1 {
    max-width: 1100px;
    margin: 1.3rem auto 0;
    font-size: clamp(3.25rem, 7.6vw, 7.8rem);
    line-height: 0.94;
    letter-spacing: -0.065em;
}

.about-intro h1 span {
    display: block;
    color: rgba(220, 229, 241, 0.52);
}

.about-intro-copy {
    max-width: 720px;
    margin: 2.2rem auto 0;
    color: var(--muted, #9ba6b7);
    font-size: clamp(1.05rem, 1.5vw, 1.25rem);
    line-height: 1.75;
}

.about-signature {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 3.2rem;
    color: #c8d4e5;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.about-signature i {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--accent, #72c7ff);
    box-shadow: 0 0 12px rgba(114, 199, 255, 0.9);
}

.about-editorial,
.about-journey,
.about-philosophy {
    padding: clamp(6rem, 11vw, 10rem) 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.about-editorial-inner,
.about-journey-inner,
.about-philosophy-inner {
    width: min(1180px, 100%);
    margin-inline: auto;
    display: grid;
    grid-template-columns: 170px minmax(0, 1fr);
    gap: clamp(2.5rem, 7vw, 8rem);
}

.about-section-label {
    padding-top: 0.55rem;
}

.about-section-label span {
    color: var(--accent, #72c7ff);
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
}

.about-section-label p {
    margin: 0.6rem 0 0;
    color: var(--muted, #8995a8);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.17em;
    text-transform: uppercase;
}

.about-narrative h2,
.about-journey-content > h2 {
    max-width: 850px;
    margin: 0;
    font-size: clamp(2.4rem, 5vw, 5rem);
    line-height: 1.02;
    letter-spacing: -0.045em;
}

.about-narrative-columns {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(2rem, 5vw, 5rem);
    margin-top: clamp(3rem, 6vw, 5.5rem);
}

.about-narrative-columns p {
    margin: 0;
    color: var(--muted, #9ba6b7);
    font-size: 1.05rem;
    line-height: 1.85;
}

.credential-line {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(2rem, 5vw, 5rem);
    margin-top: clamp(4rem, 7vw, 6rem);
}

.credential-line::before {
    content: "";
    position: absolute;
    top: 5px;
    right: 0;
    left: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        rgba(114, 199, 255, 0.65),
        rgba(114, 199, 255, 0.12)
    );
}

.credential-item {
    position: relative;
    padding-top: 2.3rem;
}

.credential-node {
    position: absolute;
    top: 0;
    left: 0;
    width: 11px;
    height: 11px;
    border: 2px solid #08101c;
    border-radius: 50%;
    background: var(--accent, #72c7ff);
    box-shadow: 0 0 20px rgba(114, 199, 255, 0.75);
}

.credential-kicker {
    margin: 0 0 1.5rem;
    color: var(--accent, #72c7ff);
    font-size: 0.67rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.credential-item h3 {
    margin: 0;
    font-size: clamp(1.35rem, 2vw, 1.8rem);
}

.credential-item > p:last-child {
    margin: 1rem 0 0;
    color: var(--muted, #9ba6b7);
    line-height: 1.7;
}

.credential-item strong {
    color: #dceaff;
    font-weight: 700;
}

.about-philosophy {
    position: relative;
    background:
        linear-gradient(
            135deg,
            rgba(22, 43, 70, 0.34),
            rgba(5, 11, 20, 0.1) 55%
        );
}

.about-statement h2 {
    max-width: 900px;
    margin: 1rem 0 0;
    font-size: clamp(3rem, 7vw, 7rem);
    line-height: 0.94;
    letter-spacing: -0.06em;
}

.about-statement h2 span {
    color: var(--accent, #72c7ff);
    text-shadow: 0 0 44px rgba(76, 173, 255, 0.22);
}

.about-statement > p:not(.eyebrow) {
    max-width: 780px;
    margin: 2.5rem 0 0;
    color: var(--muted, #9ba6b7);
    font-size: clamp(1.05rem, 1.5vw, 1.22rem);
    line-height: 1.8;
}

.intelligence-system {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 3.5rem;
}

.intelligence-system span {
    padding: 0.75rem 1rem;
    border: 1px solid rgba(127, 192, 255, 0.16);
    border-radius: 999px;
    background: rgba(93, 160, 224, 0.055);
    color: #bdcada;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.about-finale {
    position: relative;
    min-height: 72vh;
    display: grid;
    place-items: center;
    padding: 8rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    isolation: isolate;
}

.about-finale-glow {
    position: absolute;
    z-index: -1;
    width: min(70vw, 750px);
    aspect-ratio: 1;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(72, 168, 255, 0.12),
        transparent 67%
    );
    filter: blur(20px);
}

.about-finale-inner {
    width: min(900px, 100%);
    text-align: center;
}

.about-finale h2 {
    margin: 1rem auto 0;
    font-size: clamp(2.8rem, 6vw, 6rem);
    line-height: 1;
    letter-spacing: -0.055em;
}

.about-finale-inner > p:not(.eyebrow) {
    max-width: 660px;
    margin: 2rem auto 0;
    color: var(--muted, #9ba6b7);
    font-size: 1.1rem;
    line-height: 1.7;
}

.about-final-button {
    margin-top: 2.7rem;
}

@media (max-width: 850px) {
    .about-editorial-inner,
    .about-journey-inner,
    .about-philosophy-inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .about-narrative-columns {
        grid-template-columns: 1fr;
    }

    .credential-line {
        grid-template-columns: 1fr;
        gap: 2.75rem;
    }

    .credential-line::before {
        top: 0;
        bottom: 0;
        left: 5px;
        width: 1px;
        height: auto;
    }

    .credential-item {
        padding: 0 0 0 2.5rem;
    }

    .credential-node {
        top: 5px;
    }
}

@media (max-width: 640px) {
    .about-intro {
        min-height: auto;
        padding-block: 6.5rem;
    }

    .about-intro h1 {
        font-size: clamp(3rem, 15vw, 4.6rem);
    }

    .about-signature {
        gap: 0.65rem;
        font-size: 0.62rem;
        letter-spacing: 0.12em;
    }

    .about-editorial,
    .about-journey,
    .about-philosophy {
        padding-block: 5.5rem;
    }

    .about-finale {
        min-height: 65vh;
        padding-block: 6rem;
    }
}

@media (prefers-reduced-motion: no-preference) {
    .about-intro-inner,
    .about-editorial-inner,
    .about-journey-inner,
    .about-philosophy-inner,
    .about-finale-inner {
        animation: about-reveal 700ms ease-out both;
    }

    @keyframes about-reveal {
        from {
            opacity: 0;
            transform: translateY(14px);
        }

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


/* DGXONE LANDING HERO V4 */
.landing-page {
    overflow-x: hidden;
}

.landing-page .product-shell {
    overflow: clip;
}

.landing-page .product-nav {
    width: min(1440px, calc(100% - 3rem));
    margin-inline: auto;
}

.landing-page .hero {
    position: relative;
    min-height: min(780px, calc(100vh - 76px));
    padding: clamp(3.5rem, 7vh, 5.5rem) 1.5rem 4rem;
    overflow: hidden;
    isolation: isolate;
}

.landing-page .hero::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: -18%;
    left: 50%;
    width: min(840px, 82vw);
    aspect-ratio: 1.35;
    transform: translateX(-50%);
    background: radial-gradient(
        circle,
        rgba(63, 160, 255, 0.16),
        rgba(41, 91, 164, 0.055) 42%,
        transparent 72%
    );
    filter: blur(20px);
    pointer-events: none;
}

.landing-page .hero-inner {
    width: min(1080px, 100%);
    margin-inline: auto;
}

.landing-page .hero-brand {
    gap: clamp(1.2rem, 3vw, 2.3rem);
}

.landing-page .hero-brand img {
    width: clamp(68px, 7vw, 96px);
    height: clamp(68px, 7vw, 96px);
    object-fit: contain;
    filter:
        drop-shadow(0 0 16px rgba(92, 191, 255, 0.38))
        drop-shadow(0 0 42px rgba(63, 137, 255, 0.17));
}

.landing-page .hero h1 {
    font-size: clamp(4.6rem, 10vw, 8.8rem);
    line-height: 0.88;
    letter-spacing: -0.07em;
}

.landing-page .hero h2 {
    margin-top: 0.8rem;
    font-size: clamp(1.15rem, 2.1vw, 1.75rem);
    letter-spacing: 0.015em;
}

.landing-page .hero-brand .eyebrow {
    margin-bottom: 1rem;
}

.landing-page .hero-words {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 2.15rem;
    color: rgba(215, 227, 242, 0.74);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.17em;
    text-transform: uppercase;
}

.landing-page .hero-words i {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--accent, #72c7ff);
    box-shadow: 0 0 10px rgba(114, 199, 255, 0.9);
}

.landing-page .hero > .hero-inner > p {
    margin-top: 1.35rem;
}

.landing-page .hero-actions {
    margin-top: 1.9rem;
}

.landing-page .landing-signal {
    position: relative;
    width: min(760px, 92%);
    height: 76px;
    margin: 2.4rem auto 0;
    border: 1px solid rgba(125, 194, 255, 0.11);
    border-radius: 18px;
    background:
        linear-gradient(
            180deg,
            rgba(86, 157, 226, 0.05),
            rgba(5, 12, 22, 0.14)
        );
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.025),
        0 20px 60px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.landing-page .landing-signal::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        transparent 10%,
        rgba(125, 206, 255, 0.08) 50%,
        transparent 90%
    );
    transform: translateX(-100%);
    pointer-events: none;
}

.landing-page .landing-signal svg {
    width: 100%;
    height: 100%;
    overflow: visible;
}

.landing-page .landing-signal path {
    fill: none;
    stroke: url("#productSignal");
    stroke-width: 1.8;
    vector-effect: non-scaling-stroke;
    filter: drop-shadow(0 0 7px rgba(121, 210, 255, 0.35));
    stroke-dasharray: 1100;
    stroke-dashoffset: 1100;
}

@media (prefers-reduced-motion: no-preference) {
    .landing-page .landing-signal path {
        animation:
            landing-wave-draw 1.8s ease-out forwards,
            landing-wave-pulse 4.8s ease-in-out 1.8s infinite;
    }

    .landing-page .landing-signal::after {
        animation: landing-wave-scan 5.2s ease-in-out 1.2s infinite;
    }

    .landing-page .hero-brand img {
        animation: landing-core-breathe 4.6s ease-in-out infinite;
    }

    @keyframes landing-wave-draw {
        to {
            stroke-dashoffset: 0;
        }
    }

    @keyframes landing-wave-pulse {
        0%,
        100% {
            opacity: 0.66;
        }

        50% {
            opacity: 1;
        }
    }

    @keyframes landing-wave-scan {
        0%,
        28% {
            transform: translateX(-100%);
        }

        68%,
        100% {
            transform: translateX(100%);
        }
    }

    @keyframes landing-core-breathe {
        0%,
        100% {
            transform: scale(1);
        }

        50% {
            transform: scale(1.035);
        }
    }
}

@media (max-width: 1100px) {
    .landing-page .product-nav {
        width: min(100% - 2rem, 1440px);
    }

    .landing-page .nav-links {
        gap: 1rem;
    }
}

@media (max-width: 760px) {
    .landing-page .hero {
        min-height: auto;
        padding-top: 4.5rem;
    }

    .landing-page .hero-brand {
        flex-direction: column;
        text-align: center;
    }

    .landing-page .hero h1 {
        font-size: clamp(4rem, 19vw, 6.4rem);
    }

    .landing-page .hero-words {
        gap: 0.58rem;
        font-size: 0.62rem;
        letter-spacing: 0.11em;
    }

    .landing-page .landing-signal {
        width: 100%;
        height: 68px;
        margin-top: 2rem;
    }
}

/* DGXONE ROBOT AND INTELLIGENCE FLOW V5 */
.landing-page .hero {
    min-height: auto;
    padding-bottom: clamp(4.5rem, 8vw, 7rem);
}

.landing-page .hero-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.landing-page .dgx-robot-avatar {
    position: relative;
    width: 116px;
    height: 116px;
    display: grid;
    place-items: center;
    margin: 0 auto 1.5rem;
    filter: drop-shadow(0 0 24px rgba(86, 193, 255, 0.2));
}

.dgx-robot-avatar .robot-head {
    position: relative;
    z-index: 3;
    width: 68px;
    height: 54px;
    border: 1px solid rgba(135, 216, 255, 0.72);
    border-radius: 19px 19px 23px 23px;
    background:
        linear-gradient(
            145deg,
            rgba(28, 57, 78, 0.96),
            rgba(6, 16, 25, 0.98)
        );
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.17),
        inset 0 -10px 20px rgba(0, 0, 0, 0.3),
        0 0 22px rgba(76, 190, 255, 0.2);
}

.dgx-robot-avatar .robot-face {
    position: absolute;
    inset: 12px 10px 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    border: 1px solid rgba(111, 202, 255, 0.2);
    border-radius: 12px;
    background: rgba(1, 9, 15, 0.88);
}

.dgx-robot-avatar .robot-eye {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #9be3ff;
    box-shadow:
        0 0 5px #7bd7ff,
        0 0 14px rgba(64, 193, 255, 0.95);
}

.dgx-robot-avatar .robot-mouth {
    position: absolute;
    bottom: 8px;
    left: 50%;
    width: 15px;
    height: 2px;
    transform: translateX(-50%);
    border-radius: 2px;
    background: rgba(126, 211, 255, 0.72);
    box-shadow: 0 0 8px rgba(91, 197, 255, 0.6);
}

.dgx-robot-avatar .robot-antenna {
    position: absolute;
    top: -15px;
    left: 50%;
    width: 1px;
    height: 15px;
    background: rgba(125, 212, 255, 0.65);
}

.dgx-robot-avatar .robot-antenna::before {
    content: "";
    position: absolute;
    top: -4px;
    left: -3px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #9de7ff;
    box-shadow: 0 0 13px #4fc9ff;
}

.dgx-robot-avatar .robot-neck {
    position: absolute;
    z-index: 2;
    top: 76px;
    width: 23px;
    height: 17px;
    border-inline: 1px solid rgba(110, 203, 255, 0.42);
    background: rgba(8, 27, 40, 0.95);
}

.dgx-robot-avatar .robot-core {
    position: absolute;
    z-index: 1;
    top: 88px;
    width: 53px;
    height: 24px;
    border: 1px solid rgba(116, 205, 255, 0.5);
    border-radius: 16px 16px 9px 9px;
    background:
        radial-gradient(
            circle at 50% 28%,
            rgba(101, 211, 255, 0.35),
            transparent 24%
        ),
        linear-gradient(180deg, #132c3b, #061017);
}

.dgx-robot-avatar .robot-orbit {
    position: absolute;
    border: 1px solid rgba(94, 191, 255, 0.17);
    border-radius: 50%;
}

.dgx-robot-avatar .orbit-one {
    inset: 4px;
}

.dgx-robot-avatar .orbit-two {
    inset: 15px -8px;
    transform: rotate(58deg);
    border-color: rgba(97, 227, 206, 0.12);
}

.intelligence-flow {
    position: relative;
    width: min(1120px, 100%);
    min-height: 390px;
    margin-top: clamp(3rem, 6vw, 5rem);
    border: 1px solid rgba(114, 199, 255, 0.13);
    border-radius: 24px;
    background:
        radial-gradient(
            circle at 50% 48%,
            rgba(42, 126, 180, 0.12),
            transparent 31%
        ),
        linear-gradient(
            145deg,
            rgba(16, 27, 37, 0.8),
            rgba(5, 10, 15, 0.92)
        );
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.035),
        0 30px 90px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.flow-grid {
    position: absolute;
    inset: 0;
    opacity: 0.2;
    background-image:
        linear-gradient(
            rgba(113, 196, 235, 0.09) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(113, 196, 235, 0.09) 1px,
            transparent 1px
        );
    background-size: 44px 44px;
    mask-image: radial-gradient(circle, black 18%, transparent 80%);
}

.flow-scan {
    position: absolute;
    z-index: 1;
    top: 0;
    bottom: 0;
    left: -20%;
    width: 18%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(102, 205, 255, 0.09),
        transparent
    );
    transform: skewX(-13deg);
}

.flow-node {
    position: absolute;
    z-index: 3;
    width: 166px;
    min-height: 92px;
    padding: 1rem 1rem 0.9rem 1.15rem;
    border: 1px solid rgba(133, 208, 255, 0.19);
    border-radius: 15px;
    background:
        linear-gradient(
            145deg,
            rgba(22, 37, 49, 0.97),
            rgba(8, 14, 21, 0.96)
        );
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.045),
        0 12px 32px rgba(0, 0, 0, 0.22);
}

.flow-node::after {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    border: 1px solid transparent;
    pointer-events: none;
}

.flow-node strong,
.flow-node small {
    display: block;
}

.flow-node strong {
    margin-top: 0.35rem;
    color: #edf7ff;
    font-size: 0.95rem;
}

.flow-node small {
    margin-top: 0.45rem;
    color: rgba(177, 195, 210, 0.62);
    font-size: 0.68rem;
    letter-spacing: 0.04em;
}

.node-index {
    color: #75d4ff;
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
    font-size: 0.63rem;
    letter-spacing: 0.15em;
}

.node-light {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #72e5cb;
    box-shadow: 0 0 12px rgba(80, 234, 200, 0.8);
}

.node-conversation {
    top: 62px;
    left: 5%;
}

.node-planning {
    top: 224px;
    left: 22%;
}

.node-reasoning {
    top: 130px;
    left: 50%;
    transform: translateX(-50%);
    border-color: rgba(112, 210, 255, 0.45);
    box-shadow:
        0 0 0 1px rgba(90, 190, 255, 0.05),
        0 0 42px rgba(65, 173, 236, 0.13);
}

.node-execution {
    top: 224px;
    right: 22%;
}

.node-report {
    top: 62px;
    right: 5%;
}

.flow-path {
    position: absolute;
    z-index: 2;
    height: 1px;
    transform-origin: left center;
    background: linear-gradient(
        90deg,
        rgba(72, 187, 241, 0.16),
        rgba(108, 220, 255, 0.82),
        rgba(80, 217, 185, 0.2)
    );
    box-shadow: 0 0 8px rgba(73, 193, 246, 0.25);
}

.path-one {
    top: 161px;
    left: 18%;
    width: 20%;
    transform: rotate(33deg);
}

.path-two {
    top: 270px;
    left: 36%;
    width: 17%;
    transform: rotate(-28deg);
}

.path-three {
    top: 194px;
    left: 56%;
    width: 17%;
    transform: rotate(28deg);
}

.path-four {
    top: 270px;
    left: 70%;
    width: 20%;
    transform: rotate(-34deg);
}

.flow-packet {
    position: absolute;
    z-index: 4;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #b9efff;
    box-shadow:
        0 0 8px #67d4ff,
        0 0 20px rgba(83, 216, 255, 0.75);
}

.packet-one {
    top: 158px;
    left: 18%;
}

.packet-two {
    top: 266px;
    left: 36%;
}

.packet-three {
    top: 190px;
    left: 56%;
}

.flow-status {
    position: absolute;
    right: 1.25rem;
    bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.55rem;
    color: rgba(177, 203, 217, 0.48);
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
    font-size: 0.61rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.flow-status span {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #76e2c7;
    box-shadow: 0 0 9px rgba(77, 235, 196, 0.8);
}

@media (prefers-reduced-motion: no-preference) {
    .dgx-robot-avatar {
        animation: robot-float 4.6s ease-in-out infinite;
    }

    .dgx-robot-avatar .orbit-one {
        animation: robot-orbit 12s linear infinite;
    }

    .dgx-robot-avatar .orbit-two {
        animation: robot-orbit-reverse 16s linear infinite;
    }

    .dgx-robot-avatar .robot-eye {
        animation: robot-blink 5.4s ease-in-out infinite;
    }

    .flow-scan {
        animation: flow-scan 7s ease-in-out infinite;
    }

    .flow-node {
        animation: node-breathe 4.5s ease-in-out infinite;
    }

    .node-planning {
        animation-delay: 0.4s;
    }

    .node-reasoning {
        animation-name: center-node-breathe;
        animation-delay: 0.8s;
    }

    .node-execution {
        animation-delay: 1.2s;
    }

    .node-report {
        animation-delay: 1.6s;
    }

    .packet-one {
        animation: packet-one 3.8s ease-in-out infinite;
    }

    .packet-two {
        animation: packet-two 3.8s ease-in-out 0.9s infinite;
    }

    .packet-three {
        animation: packet-three 3.8s ease-in-out 1.8s infinite;
    }

    @keyframes robot-float {
        0%,
        100% {
            transform: translateY(0);
        }

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

    @keyframes robot-orbit {
        to {
            transform: rotate(360deg);
        }
    }

    @keyframes robot-orbit-reverse {
        from {
            transform: rotate(58deg);
        }

        to {
            transform: rotate(-302deg);
        }
    }

    @keyframes robot-blink {
        0%,
        46%,
        50%,
        100% {
            transform: scaleY(1);
        }

        48% {
            transform: scaleY(0.12);
        }
    }

    @keyframes flow-scan {
        0%,
        22% {
            left: -20%;
            opacity: 0;
        }

        42% {
            opacity: 1;
        }

        75%,
        100% {
            left: 110%;
            opacity: 0;
        }
    }

    @keyframes node-breathe {
        0%,
        100% {
            border-color: rgba(133, 208, 255, 0.17);
        }

        50% {
            border-color: rgba(133, 208, 255, 0.35);
        }
    }

    @keyframes center-node-breathe {
        0%,
        100% {
            transform: translateX(-50%) scale(1);
        }

        50% {
            transform: translateX(-50%) scale(1.025);
        }
    }

    @keyframes packet-one {
        0% {
            transform: translate(0, 0);
            opacity: 0;
        }

        20% {
            opacity: 1;
        }

        100% {
            transform: translate(195px, 126px);
            opacity: 0;
        }
    }

    @keyframes packet-two {
        0% {
            transform: translate(0, 0);
            opacity: 0;
        }

        20% {
            opacity: 1;
        }

        100% {
            transform: translate(175px, -89px);
            opacity: 0;
        }
    }

    @keyframes packet-three {
        0% {
            transform: translate(0, 0);
            opacity: 0;
        }

        20% {
            opacity: 1;
        }

        100% {
            transform: translate(190px, 96px);
            opacity: 0;
        }
    }
}

@media (max-width: 820px) {
    .intelligence-flow {
        min-height: auto;
        display: grid;
        gap: 1.5rem;
        padding: 2.2rem 1.25rem 4rem;
    }

    .flow-node {
        position: relative;
        top: auto;
        right: auto;
        left: auto;
        width: min(380px, 100%);
        min-height: 84px;
        margin-inline: auto;
        transform: none;
    }

    .flow-node:not(:last-of-type)::before {
        content: "";
        position: absolute;
        top: calc(100% + 1px);
        left: 50%;
        width: 1px;
        height: 1.55rem;
        background: linear-gradient(
            rgba(106, 210, 255, 0.7),
            rgba(106, 210, 255, 0.12)
        );
    }

    .flow-path,
    .flow-packet {
        display: none;
    }

    .flow-status {
        right: 50%;
        transform: translateX(50%);
        white-space: nowrap;
    }

    @media (prefers-reduced-motion: no-preference) {
        .node-reasoning {
            animation-name: node-breathe;
        }
    }
}

@media (max-width: 600px) {
    .landing-page .dgx-robot-avatar {
        width: 102px;
        height: 102px;
        margin-bottom: 1.25rem;
        transform: scale(0.9);
    }

    .intelligence-flow {
        border-radius: 18px;
    }
}
