﻿
.clr {
    color: var(--cyan);
}

:root {
    --bg: #030509;
    --bg2: #080b12;
    --panel: rgba(10,14,22,.72);
    --line: rgba(255,255,255,.10);
    --line2: rgba(255,255,255,.16);
    --text: #f7f9fc;
    --muted: #9da8b8;
    --cyan: #74e9ff;
    --violet: #9c86ff;
    --green: #78f6ae;
    --gold: #d9c58b;
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: Inter,ui-sans-serif,system-ui,-apple-system,Segoe UI,sans-serif;
    overflow-x: hidden;
}

    body:before {
        content: "";
        position: fixed;
        inset: 0;
        pointer-events: none;
        z-index: -3;
        background: radial-gradient(circle at 50% 5%,rgba(116,233,255,.09),transparent 30%), radial-gradient(circle at 12% 45%,rgba(156,134,255,.07),transparent 25%), radial-gradient(circle at 88% 72%,rgba(120,246,174,.045),transparent 24%), linear-gradient(180deg,#05070c 0%,#020306 100%);
    }

    body:after {
        content: "";
        position: fixed;
        inset: 0;
        pointer-events: none;
        z-index: -2;
        opacity: .16;
        background-image: linear-gradient(rgba(255,255,255,.025) 1px,transparent 1px), linear-gradient(90deg,rgba(255,255,255,.025) 1px,transparent 1px);
        background-size: 72px 72px;
        mask-image: linear-gradient(to bottom,#000 0%,transparent 88%);
    }

#heroCanvas {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    opacity: .8;
}

.signal-field {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
    opacity: .65;
}

.signal {
    position: absolute;
    height: 1px;
    width: 42vw;
    min-width: 260px;
    background: linear-gradient(90deg,transparent,rgba(116,233,255,.28),transparent);
    transform-origin: left center;
    animation: signalMove 8s linear infinite;
}

    .signal:nth-child(1) {
        top: 23%;
        left: -12%;
        transform: rotate(12deg)
    }

    .signal:nth-child(2) {
        top: 54%;
        left: 72%;
        transform: rotate(-18deg);
        animation-delay: -2.5s
    }

    .signal:nth-child(3) {
        top: 76%;
        left: -8%;
        transform: rotate(-8deg);
        animation-delay: -5s
    }

@keyframes signalMove {
    0% {
        translate: -10% 0;
        opacity: 0
    }

    20%, 75% {
        opacity: 1
    }

    100% {
        translate: 125% 0;
        opacity: 0
    }
}

nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 5vw;
    background: rgba(3,5,9,.62);
    border-bottom: 1px solid rgba(255,255,255,.04);
    backdrop-filter: blur(18px);
}

.logo {
    font-weight: 900;
    letter-spacing: .18em
}

    .logo span {
        color: var(--cyan)
    }

nav a {
    color: #c9d1df;
    text-decoration: none;
    margin-left: 28px;
    font-size: 13px
}

.navcta {
    border: 1px solid var(--line2);
    padding: 10px 15px;
    border-radius: 999px
}

.hero {
    min-height: 175vh;
    display: block;
    padding: 0 6vw;
    position: relative;
    isolation: isolate;
}

.hero-inner {
    text-align: center;
    max-width: 1100px;
    width: 100%;
    height: 100vh;
    position: sticky;
    top: 0;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2;
    overflow: visible;
}

.eyebrow {
    font-size: 12px;
    letter-spacing: .24em;
    text-transform: uppercase;
    color: var(--cyan);
    margin-bottom: 20px
}

.hero h1 {
    font-size: clamp(54px,9vw,128px);
    line-height: .86;
    margin: 0;
    letter-spacing: -.07em;
    background: linear-gradient(115deg,#fff 15%,#dffaff 43%,#b8adff 74%,#fff 100%);
    -webkit-background-clip: text;
    color: transparent;
    filter: drop-shadow(0 0 28px rgba(116,233,255,.10));
}

.hero p {
    max-width: 760px;
    margin: 30px auto;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.65
}

.buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap
}

.btn {
    cursor: pointer;
    border: 1px solid var(--line2);
    background: rgba(255,255,255,.045);
    color: white;
    padding: 14px 20px;
    border-radius: 999px;
    font-weight: 700;
    transition: .25s;
    text-decoration: none;
}

    .btn:hover {
        transform: translateY(-2px);
        border-color: rgba(116,233,255,.45)
    }

.primary {
    background: linear-gradient(90deg, #74e9ff, #9c86ff);
    color: #05070c;
    border: 0;
    box-shadow: 0 0 35px rgba(116,233,255,.17);
    text-decoration: none;
    animation: primaryBlink 1.8s ease-in-out infinite;
}

@keyframes primaryBlink {
    0%, 100% {
        opacity: 1;
        box-shadow: 0 0 20px rgba(116,233,255,.15);
    }

    50% {
        opacity: 0.75;
        box-shadow: 0 0 25px rgba(116,233,255,.45), 0 0 50px rgba(156,134,255,.25);
    }
}
.spct {
    margin: 20px 0;
    display: inline-block;
}

.voice-orb {
    width: min(76vw,700px);
    height: min(76vw,700px);
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-42%);
    border-radius: 50%;
    opacity: .85;
    filter: blur(.1px);
    pointer-events: none;
}

    .voice-orb:before, .voice-orb:after {
        content: "";
        position: absolute;
        inset: 7%;
        border-radius: 50%;
        border: 1px solid rgba(116,233,255,.20);
        box-shadow: 0 0 100px rgba(116,233,255,.10),inset 0 0 100px rgba(156,134,255,.08);
        animation: pulse 6s ease-in-out infinite;
    }

    .voice-orb:after {
        inset: 22%;
        border-color: rgba(156,134,255,.24);
        animation-delay: -2s
    }

.voice-orb {
    background: radial-gradient(circle,rgba(116,233,255,.055),transparent 57%)
}

@keyframes pulse {
    50% {
        transform: scale(1.10);
        opacity: .42
    }
}

section {
    padding: 40px 6vw;
    max-width: 1300px;
    margin: auto
}

.section-kicker {
    color: var(--cyan);
    text-transform: uppercase;
    letter-spacing: .2em;
    font-size: 11px
}

.section-title {
    font-size: clamp(36px,5vw,68px);
    letter-spacing: -.05em;
    margin: 14px 0 22px
}

.section-copy {
    color: var(--muted);
    max-width: 760px;
    line-height: 1.75
}

.metrics {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 1px;
    background: var(--line);
    margin-top: 42px;
    border: 1px solid var(--line);
    border-radius: 24px;
    overflow: hidden;
}

.metric {
    background: rgba(7,10,16,.78);
    padding: 28px;
    backdrop-filter: blur(14px)
}

    .metric b {
        font-size: 32px
    }

    .metric span {
        display: block;
        color: var(--muted);
        font-size: 12px;
        margin-top: 8px
    }

.pipeline {
    display: grid;
    grid-template-columns: repeat(5,1fr);
    gap: 12px;
    margin-top: 38px
}

.node {
    min-height: 180px;
    padding: 22px;
    border: 1px solid var(--line);
    background: linear-gradient(160deg,rgba(255,255,255,.055),rgba(255,255,255,.012));
    border-radius: 22px;
    position: relative;
    overflow: hidden;
}

    .node:after {
        content: "";
        position: absolute;
        left: -100%;
        bottom: 0;
        width: 70%;
        height: 2px;
        background: linear-gradient(90deg,transparent,var(--cyan),transparent);
        animation: flow 3s linear infinite;
    }

    .node:nth-child(2):after {
        animation-delay: .4s
    }

    .node:nth-child(3):after {
        animation-delay: .8s
    }

    .node:nth-child(4):after {
        animation-delay: 1.2s
    }

    .node:nth-child(5):after {
        animation-delay: 1.6s
    }

@keyframes flow {
    to {
        left: 140%
    }
}

.num {
    font-size: 11px;
    color: var(--cyan)
}

.node h3 {
    margin: 35px 0 8px
}

.node p {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.5
}

.language-tabs {
    display: flex;
    gap: 8px;
    margin-top: 24px;
    border-bottom: 1px solid var(--line);
    padding-bottom: 10px
}

.language-tab {
    border: 1px solid transparent;
    background: transparent;
    color: var(--muted);
    padding: 11px 16px;
    border-radius: 999px;
    cursor: pointer;
    font-weight: 700;
}

    .language-tab.active {
        color: #071016;
        background: var(--cyan);
        box-shadow: 0 0 22px rgba(116,233,255,.15)
    }

.languages {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px
}

.lang {
    padding: 13px 16px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255,255,255,.03);
    cursor: pointer;
    color: #dbe3ef
}

    .lang.active {
        border-color: var(--cyan);
        box-shadow: 0 0 25px rgba(116,233,255,.12);
        color: white
    }

.demo {
    display: grid;
    grid-template-columns: 1.08fr .92fr;
    gap: 24px;
    align-items: stretch;
    margin-top: 38px
}

.console, .use-card {
    border: 1px solid var(--line);
    background: var(--panel);
    border-radius: 28px;
    padding: 28px;
    backdrop-filter: blur(18px);
}

.console {
    min-height: 430px
}

.status {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 11px;
    letter-spacing: .15em;
    color: var(--green)
}

.dot {
    width: 7px;
    height: 7px;
    background: var(--green);
    border-radius: 50%;
    box-shadow: 0 0 15px var(--green)
}

.wave {
    height: 105px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin: 20px 0
}

.bar {
    width: 3px;
    height: 18px;
    background: linear-gradient(var(--cyan),var(--violet));
    border-radius: 4px;
    animation: wave 1s ease-in-out infinite
}

    .bar:nth-child(2n) {
        animation-delay: -.4s
    }

    .bar:nth-child(3n) {
        animation-delay: -.7s
    }

@keyframes wave {
    50% {
        height: 68px
    }
}

.voice-input {
    width: 100%;
    min-height: 120px;
    resize: vertical;
    padding: 18px;
    border: 1px solid var(--line2);
    border-radius: 18px;
    background: rgba(0,0,0,.22);
    color: #edf4fb;
    font: inherit;
    line-height: 1.55;
    outline: none;
}

    .voice-input:focus {
        border-color: rgba(116,233,255,.5);
        box-shadow: 0 0 0 3px rgba(116,233,255,.06)
    }

.preview-row {
    display: flex;
    gap: 10px;
    margin-top: 12px
}

    .preview-row .btn {
        flex: 1
    }

.demo-note {
    font-size: 11px;
    color: #7f8999;
    margin-top: 12px;
    line-height: 1.5
}

.use-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 12px;
    margin-top: 32px
}

.use {
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(255,255,255,.025);
    cursor: pointer;
    transition: .25s;
}

    .use:hover {
        transform: translateY(-4px);
        border-color: rgba(116,233,255,.45)
    }

    .use b {
        display: block;
        margin-bottom: 8px
    }

    .use small {
        color: var(--muted);
        line-height: 1.5
    }

.use-detail {
    margin-top: 18px;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: linear-gradient(135deg,rgba(116,233,255,.045),rgba(156,134,255,.035));
    color: var(--muted);
    line-height: 1.65;
}

.security {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 16px;
    margin-top: 38px
}

.securebox {
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: linear-gradient(140deg,rgba(116,233,255,.055),rgba(156,134,255,.035));
}

    .securebox .tag {
        display: inline-flex;
        padding: 7px 10px;
        border: 1px solid var(--line2);
        border-radius: 999px;
        font-size: 10px;
        letter-spacing: .12em;
        color: var(--cyan);
        margin-bottom: 14px;
    }

.arch-points {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 12px;
    margin-top: 18px;
}

.arch-point {
    padding: 20px;
    border-top: 1px solid var(--line);
    color: var(--muted);
    line-height: 1.6;
    font-size: 13px
}

    .arch-point strong {
        display: block;
        color: #edf3fa;
        margin-bottom: 6px
    }

.final {
    text-align: center;
    padding-bottom: 30px
}

    .final h2 {
        font-size: clamp(45px,7vw,92px);
        letter-spacing: -.06em;
        margin-bottom: 30px;
        padding: 0;
        margin: 0;
    }

footer {
    padding: 10px 6vw;
    border-top: 1px solid var(--line);
    color: #707b8c;
    font-size: 12px;
    display: flex;
    justify-content: space-between
}

@media (max-width:800px) {
   


    .metrics {
        grid-template-columns: 1fr 1fr
    }

    .pipeline {
        grid-template-columns: 1fr
    }

    .demo, .security {
        grid-template-columns: 1fr
    }

    .hero p {
        font-size: 16px
    }

    section {
        padding: 42px 5vw
    }

    .arch-points {
        grid-template-columns: 1fr
    }

    .preview-row {
        flex-direction: column
    }
}

@media (max-width:520px) {
    .metrics {
        grid-template-columns: 1fr
    }

    .use-grid {
        grid-template-columns: 1fr
    }

    .hero {
        min-height: 155vh
    }

        .hero h1 {
            font-size: 58px
        }

    .language-tabs {
        overflow: auto
    }

    .language-tab {
        white-space: nowrap
    }
}

@media (prefers-reduced-motion: reduce) {
    *, *:before, *:after {
        animation-duration: .001ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important
    }
}

.custom-language {
    display: grid;
    grid-template-columns: 1fr minmax(180px,280px) auto;
    gap: 12px;
    align-items: center;
    margin-top: 22px;
    padding: 18px 20px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: linear-gradient(135deg,rgba(116,233,255,.045),rgba(156,134,255,.035));
}

    .custom-language strong {
        display: block;
        color: #edf4fb;
        margin-bottom: 5px
    }

    .custom-language p {
        margin: 0;
        color: var(--muted);
        font-size: 12px;
        line-height: 1.5
    }

    .custom-language input {
        min-width: 0;
        padding: 13px 15px;
        border-radius: 999px;
        border: 1px solid var(--line2);
        background: rgba(0,0,0,.22);
        color: #fff;
        font: inherit;
        outline: none;
    }

        .custom-language input:focus {
            border-color: rgba(116,233,255,.5)
        }

.use-grid {
    align-items: stretch
}

.use {
    min-height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    text-align: left;
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: linear-gradient(145deg,rgba(255,255,255,.045),rgba(255,255,255,.018));
    cursor: pointer;
    transition: .25s;
    color: inherit;
    font: inherit;
}

    .use b {
        font-size: 18px;
        line-height: 1.2;
        margin-bottom: 10px
    }

    .use small {
        font-size: 13px;
        line-height: 1.6;
        color: var(--muted);
        max-width: 42ch
    }

.use-detail {
    min-height: 88px;
    display: flex;
    align-items: center
}

.faq-list {
    margin-top: 30px;
    display: grid;
    gap: 10px;
    max-width: 980px
}

.faq {
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255,255,255,.025);
    overflow: hidden;
}

    .faq button {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
        border: 0;
        background: transparent;
        color: #edf3fa;
        padding: 22px 24px;
        text-align: left;
        font: 700 15px/1.4 inherit;
        cursor: pointer;
    }

        .faq button span:last-child {
            color: var(--cyan);
            font-size: 22px;
            font-weight: 400
        }

.faq-answer {
    display: none;
    padding: 0 24px 22px;
    color: var(--muted);
    line-height: 1.7;
    font-size: 14px
}

.faq.open .faq-answer {
    display: block
}

@media (max-width:800px) {
    .custom-language {
        grid-template-columns: 1fr
    }

        .custom-language input, .custom-language .btn {
            width: 100%
        }
}

.brand-logo {
    display: flex;
    align-items: center;
    text-decoration: none
}

    .brand-logo img {
        display: block;
        width: auto;
        height: 42px;
        max-width: 190px;
        object-fit: contain
    }

@media (max-width:520px) {
    .brand-logo img {
        height: 36px;
        max-width: 160px
    }
}

.hero h1 {
    position: relative;
    transform-origin: 50% 52%;
    will-change: transform,filter
}

    .hero h1 .limitless-word, .hero h1 .voice-word {
        display: inline-block;
        will-change: transform,opacity,filter
    }

    .hero h1 .limitless-word {
        transform-origin: 50% 50%;
    }

/* --- LIMITLESS HERO / CINEMATIC SCROLL --- */
.hero {
    min-height: 190vh;
    display: block;
    padding: 0;
    position: relative;
    isolation: isolate;
}

.hero-inner {
    position: sticky;
    top: 0;
    height: 100vh;
    max-width: none;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 6vw 60px;
    z-index: 2;
    overflow: hidden;
}

.hero-copy {
    position: relative;
    z-index: 3;
    width: min(100%,1100px);
    will-change: opacity,transform;
}

.hero .eyebrow {
    margin-bottom: 26px;
}

.hero h1 {
    margin: 0;
    font-size: clamp(64px,11vw,156px);
    line-height: .9;
    letter-spacing: 0;
    font-weight: 900;
    background: linear-gradient(115deg,#fff 12%,#dffaff 44%,#b8adff 78%,#fff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    filter: drop-shadow(0 0 30px rgba(116,233,255,.10));
}

    .hero h1 .limitless-word {
        display: inline-block;
        white-space: nowrap;
        letter-spacing: .015em;
        transform-origin: 50% 50%;
        will-change: transform,filter;
    }

    .hero h1 .voice-word {
        display: inline-block;
        margin-top: 14px;
        will-change: transform,opacity;
    }

.hero p {
    max-width: 760px;
    margin: 34px auto 26px;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.65;
    will-change: opacity,transform;
}

.hero .buttons {
    will-change: opacity,transform;
}

.hero .voice-orb {
    width: min(76vw,760px);
    height: min(76vw,760px);
    top: 56%;
    transform: translate(-50%,-50%);
    opacity: .7;
    transition: opacity .2s linear;
}

@media (max-width:700px) {
    .hero-inner {
        padding: 90px 5vw 40px
    }

    .hero h1 {
        font-size: clamp(54px,15vw,92px)
    }

    .hero p {
        font-size: 16px;
        margin-top: 28px
    }
}


/* ===== FINAL LIMITLESS HERO ===== */
.hero#limitlessHero {
    min-height: 150vh;
    height: auto;
    padding: 0;
    display: block;
    position: relative;
    isolation: isolate;
}

    .hero#limitlessHero .hero-inner {
        position: sticky;
        top: 0;
        width: 100%;
        height: 100vh;
        min-height: 560px;
        padding: 80px 4vw 45px;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
    }

    .hero#limitlessHero .hero-copy {
        width: 100%;
        max-width: 1400px;
        text-align: center;
        position: relative;
        z-index: 3;
    }

    .hero#limitlessHero .eyebrow {
        margin: 0 0 30px;
    }

    .hero#limitlessHero .limitless-word {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: clamp(2px,.38vw,7px);
        width: 100%;
        white-space: nowrap;
        font-family: Inter,ui-sans-serif,system-ui,-apple-system,"Segoe UI",sans-serif;
        font-size: clamp(58px,10.3vw,154px);
        line-height: .82;
        font-weight: 900;
        letter-spacing: 0;
        color: #fff;
        transform: translate3d(0,0,0) scale(1);
        transform-origin: 50% 50%;
        will-change: transform,filter;
    }

        .hero#limitlessHero .limitless-word span {
            display: block;
            flex: 0 0 auto;
            width: auto;
            letter-spacing: 0;
            background: linear-gradient(115deg,#fff 10%,#dffaff 45%,#b8adff 82%,#fff);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

    .hero#limitlessHero .voice-word {
        display: block;
        margin-top: 22px;
        font-family: Inter,ui-sans-serif,system-ui,-apple-system,"Segoe UI",sans-serif;
        font-size: clamp(38px,5.8vw,82px);
        line-height: .9;
        font-weight: 800;
        letter-spacing: .08em;
        color: #dfe7f4;
        will-change: transform,opacity;
    }

    .hero#limitlessHero p {
        max-width: 820px;
        margin: 36px auto 28px;
        font-size: 18px;
        line-height: 1.65;
        color: var(--muted);
        will-change: opacity,transform;
    }

    .hero#limitlessHero .buttons {
        will-change: opacity,transform;
    }

    .hero#limitlessHero .voice-orb {
        z-index: 0;
    }

@media (max-width:700px) {
    .hero#limitlessHero .hero-inner {
        padding: 90px 5vw 40px
    }

    .hero#limitlessHero .limitless-word {
        font-size: clamp(43px,12.8vw,76px);
        gap: 2px;
    }

    .hero#limitlessHero .voice-word {
        font-size: clamp(30px,8vw,50px);
        margin-top: 16px
    }

    .hero#limitlessHero p {
        font-size: 16px;
        margin-top: 28px
    }
}


/* --- USE CASE CARDS / DETAIL PANEL --- */
#useGrid .use {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 10px;
    text-align: left;
}

    #useGrid .use b {
        display: block !important;
        width: 100%;
        margin: 0;
        font-size: 18px;
        line-height: 1.25;
    }

    #useGrid .use small {
        display: block !important;
        width: 100%;
        margin: 0;
        font-size: 13px;
        line-height: 1.65;
        color: var(--muted);
    }

    #useGrid .use.selected {
        border-color: rgba(116,233,255,.55);
        background: linear-gradient(145deg,rgba(116,233,255,.08),rgba(156,134,255,.045));
        box-shadow: 0 0 30px rgba(116,233,255,.06);
    }

.use-detail {
    margin-top: 18px;
    min-height: 150px;
    padding: 26px 28px;
    display: block;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: linear-gradient(135deg,rgba(116,233,255,.055),rgba(156,134,255,.04));
    color: var(--muted);
    line-height: 1.75;
    font-size: 14px;
}

    .use-detail .detail-title {
        display: block;
        color: #eef5fb;
        font-size: 20px;
        line-height: 1.3;
        margin-bottom: 10px;
    }

    .use-detail .detail-body {
        display: block;
        max-width: 900px;
    }


/* Tight transition from hero metrics into 01 / Voice Engine */
.metrics-section {
    padding: 18px 6vw 34px !important;
}

    .metrics-section .metrics {
        margin-top: 0;
    }

#engine {
    padding-top: 34px;
}

@media (max-width:800px) {
    .metrics-section {
        padding: 16px 5vw 28px !important
    }

    #engine {
        padding-top: 28px
    }
}


/* Hide scrollbar visually; scrolling still works */
html {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

    html::-webkit-scrollbar {
        width: 0;
        height: 0;
        display: none;
    }

body {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

    body::-webkit-scrollbar {
        width: 0;
        height: 0;
        display: none;
    }

/* Anti-copy */
html {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

    html::-webkit-scrollbar {
        display: none;
    }

body {
    user-select: none;
    -webkit-user-select: none;
    -webkit-touch-callout: none;
}



/* ================= SHIVI — FINAL FIXED WIDGET ================= */
#shiviTrigger {
    display: none !important;
    position: fixed !important;
    right: 22px !important;
    bottom: 22px !important;
    width: 76px !important;
    height: 76px !important;
    z-index: 2147483646 !important;
    border: 1px solid rgba(116,233,255,.60);
    border-radius: 50%;
    padding: 0;
    cursor: pointer;
    background: radial-gradient(circle at 35% 25%,rgba(255,255,255,.16),transparent 24%), radial-gradient(circle at 50% 55%,#17284b 0%,#0b1222 58%,#050811 100%);
    box-shadow: 0 0 0 5px rgba(116,233,255,.035), 0 0 32px rgba(116,233,255,.20), inset 0 0 25px rgba(156,134,255,.10);
    animation: shiviBreath 4.2s ease-in-out infinite;
}

    #shiviTrigger:hover {
        transform: translateY(-3px) scale(1.035)
    }

    #shiviTrigger:focus-visible {
        outline: 2px solid #74e9ff;
        outline-offset: 4px
    }

.shivi-face {
    position: absolute;
    left: 50%;
    top: 53%;
    width: 44px;
    height: 38px;
    transform: translate(-50%,-50%);
    border-radius: 15px 15px 18px 18px;
    background: linear-gradient(145deg,#fbfdff,#dbe6f1);
    box-shadow: 0 5px 15px rgba(0,0,0,.32);
}

    .shivi-face:before, .shivi-face:after {
        content: "";
        position: absolute;
        top: 14px;
        width: 5px;
        height: 7px;
        border-radius: 50%;
        background: #101827;
    }

    .shivi-face:before {
        left: 11px
    }

    .shivi-face:after {
        right: 11px
    }

.shivi-mouth {
    position: absolute;
    left: 50%;
    bottom: 7px;
    width: 10px;
    height: 5px;
    transform: translateX(-50%);
    border-bottom: 2px solid #111a2b;
    border-radius: 0 0 10px 10px;
}

.shivi-antenna {
    position: absolute;
    left: 50%;
    top: -10px;
    width: 2px;
    height: 11px;
    transform: translateX(-50%);
    background: #74e9ff;
}

    .shivi-antenna:after {
        content: "";
        position: absolute;
        width: 7px;
        height: 7px;
        border-radius: 50%;
        left: 50%;
        top: -5px;
        transform: translateX(-50%);
        background: #74e9ff;
        box-shadow: 0 0 12px #74e9ff;
    }

.shivi-hand {
    position: absolute;
    right: -5px;
    top: 2px;
    font-size: 20px;
    line-height: 1;
    transform-origin: 75% 80%;
    animation: shiviWave 2.8s ease-in-out infinite;
}

.shivi-live-dot {
    position: absolute;
    right: 1px;
    bottom: 2px;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #78f6ae;
    box-shadow: 0 0 13px #78f6ae;
}

@keyframes shiviBreath {
    0%,100% {
        transform: translateY(0) scale(1)
    }

    50% {
        transform: translateY(-2px) scale(1.025)
    }
}

@keyframes shiviWave {
    0%,66%,100% {
        transform: rotate(0)
    }

    72% {
        transform: rotate(18deg)
    }

    78% {
        transform: rotate(-10deg)
    }

    84% {
        transform: rotate(15deg)
    }

    90% {
        transform: rotate(-5deg)
    }
}

/* Compact chat card: fixed directly to viewport, not inside a section. */
#shiviChat {
    position: fixed !important;
    right: 22px !important;
    bottom: 112px !important;
    width: 360px !important;
    max-width: calc(100vw - 30px) !important;
    height: 500px !important;
    max-height: calc(100vh - 135px) !important;
    margin: 0 !important;
    padding: 0 !important;
    box-sizing: border-box !important;
    z-index: 2147483647 !important;
    display: flex !important;
    flex-direction: column !important;
    overflow: hidden !important;
    border: 1px solid rgba(116,233,255,.28) !important;
    border-radius: 20px !important;
    background: #050912 !important;
    box-shadow: 0 25px 80px rgba(0,0,0,.65),0 0 45px rgba(116,233,255,.10);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(12px) scale(.97);
    transform-origin: bottom right;
    transition: opacity .2s ease,transform .2s ease,visibility .2s;
}

    #shiviChat.open {
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        transform: translateY(0) scale(1) !important;
    }

.shivi-chat-head {
    flex: 0 0 58px !important;
    width: 100% !important;
    min-height: 58px !important;
    box-sizing: border-box !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 0 15px !important;
    background: linear-gradient(135deg,rgba(116,233,255,.11),rgba(156,134,255,.10)) !important;
    border-bottom: 1px solid rgba(255,255,255,.08) !important;
}

.shivi-chat-brand {
    display: flex;
    align-items: center;
    gap: 9px;
    color: #f7f9fc;
    font-weight: 800;
    font-size: 14px;
}

.shivi-chat-status {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #78f6ae;
    box-shadow: 0 0 12px #78f6ae;
    flex: none;
}

.shivi-close {
    width: 30px !important;
    height: 30px !important;
    flex: none;
    border: 1px solid rgba(255,255,255,.12) !important;
    border-radius: 50% !important;
    background: rgba(255,255,255,.04) !important;
    color: #dce5f1 !important;
    cursor: pointer;
    font-size: 18px;
    line-height: 1;
}

.shivi-form {
    flex: 1 1 auto !important;
    min-height: 0 !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: auto !important;
    padding: 16px !important;
    border: 0 !important;
    background: #050912 !important;
}

.shivi-welcome {
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 17px !important;
    border: 1px solid rgba(116,233,255,.13);
    border-radius: 16px;
    background: linear-gradient(145deg,rgba(116,233,255,.055),rgba(156,134,255,.04));
    color: #dce6f2;
    font-size: 13px;
    line-height: 1.55;
}

    .shivi-welcome strong {
        display: block;
        color: #fff;
        font-size: 17px;
        margin-bottom: 5px
    }

.shivi-form form {
    margin-top: 12px !important
}

.shivi-field {
    display: block !important;
    width: 100% !important;
    height: 44px !important;
    margin: 0 0 9px !important;
    padding: 0 13px !important;
    border: 1px solid rgba(255,255,255,.12) !important;
    border-radius: 12px !important;
    background: rgba(255,255,255,.035) !important;
    color: #f5f8fc !important;
    font: inherit !important;
    font-size: 13px !important;
    outline: none !important;
}

    .shivi-field:focus {
        border-color: rgba(116,233,255,.55) !important;
        box-shadow: 0 0 0 3px rgba(116,233,255,.055) !important
    }

.shivi-phone-wrap {
    width: 100% !important;
    height: 44px !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    box-sizing: border-box !important;
    margin: 0 0 9px !important;
    padding-left: 12px !important;
    border: 1px solid rgba(255,255,255,.12) !important;
    border-radius: 12px !important;
    background: rgba(255,255,255,.035) !important;
}

    .shivi-phone-wrap span {
        color: #aeb9c9;
        font-size: 12px;
        white-space: nowrap
    }

    .shivi-phone-wrap .shivi-field {
        height: 40px !important;
        border: 0 !important;
        background: transparent !important;
        margin: 0 !important;
        padding-left: 0 !important;
        box-shadow: none !important;
    }

.shivi-start {
    width: 100% !important;
    height: 44px !important;
    border: 0 !important;
    border-radius: 12px !important;
    background: linear-gradient(90deg,#74e9ff,#9c86ff) !important;
    color: #05070c !important;
    font-weight: 850;
    cursor: pointer;
}

    .shivi-start:disabled {
        opacity: .55;
        cursor: wait
    }

.shivi-note {
    margin: 8px 0 0;
    color: #6f7b8d;
    font-size: 10px;
    line-height: 1.4
}

.shivi-conversation {
    flex: 1 1 auto !important;
    min-height: 0 !important;
    width: 100% !important;
    display: none !important;
    flex-direction: column !important;
}

    .shivi-conversation.active {
        display: flex !important
    }

.shivi-messages {
    flex: 1;
    min-height: 0;
    overflow: auto;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.shivi-msg {
    max-width: 84%;
    padding: 10px 12px;
    border-radius: 13px;
    font-size: 12px;
    line-height: 1.5;
}

    .shivi-msg.bot {
        align-self: flex-start;
        background: rgba(116,233,255,.07);
        border: 1px solid rgba(116,233,255,.12);
        color: #dce6f2
    }

    .shivi-msg.user {
        align-self: flex-end;
        background: linear-gradient(135deg,rgba(116,233,255,.16),rgba(156,134,255,.14));
        border: 1px solid rgba(116,233,255,.15);
        color: #fff
    }

.shivi-chat-input {
    flex: 0 0 auto !important;
    display: flex !important;
    gap: 8px !important;
    padding: 12px !important;
    border-top: 1px solid rgba(255,255,255,.07) !important;
}

    .shivi-chat-input input {
        flex: 1;
        min-width: 0;
        height: 42px;
        border: 1px solid rgba(255,255,255,.11);
        border-radius: 12px;
        background: rgba(255,255,255,.035);
        color: #fff;
        padding: 0 12px;
        outline: none;
        font: inherit;
        font-size: 12px;
    }

.shivi-send {
    width: 44px;
    height: 42px;
    border: 0;
    border-radius: 12px;
    background: #74e9ff;
    color: #041018;
    font-weight: 900;
    cursor: pointer
}

/* Automatic message bubble */
#shiviNudge {
    position: fixed !important;
    right: 110px !important;
    bottom: 36px !important;
    z-index: 2147483645 !important;
    max-width: 245px;
    padding: 11px 14px;
    border: 1px solid rgba(116,233,255,.22);
    border-radius: 15px 15px 4px 15px;
    background: rgba(6,10,18,.95);
    color: #edf4fb;
    font-size: 12px;
    line-height: 1.45;
    box-shadow: 0 15px 45px rgba(0,0,0,.4);
    backdrop-filter: blur(18px);
    opacity: 0;
    transform: translateY(8px) scale(.96);
    pointer-events: none;
    transition: .25s ease;
}

    #shiviNudge.show {
        opacity: 1;
        transform: translateY(0) scale(1)
    }

.footer-demo {
    border: 1px solid rgba(116,233,255,.28);
    background: rgba(116,233,255,.055);
    color: #dffaff;
    padding: 8px 13px;
    border-radius: 999px;
    font: 700 11px/1 Inter,ui-sans-serif,system-ui,sans-serif;
    cursor: pointer;
}

    .footer-demo:hover {
        border-color: rgba(116,233,255,.62);
        background: rgba(116,233,255,.10)
    }

@media (max-width:600px) {
    #shiviTrigger {
        right: 12px !important;
        bottom: 12px !important;
        width: 70px !important;
        height: 70px !important
    }

    #shiviChat {
        right: 10px !important;
        bottom: 92px !important;
        width: calc(100vw - 20px) !important;
        height: min(500px,calc(100vh - 105px)) !important;
        max-height: calc(100vh - 105px) !important;
    }

    #shiviNudge {
        right: 88px !important;
        bottom: 25px !important;
        max-width: 210px
    }
}

/* =========================================================
           REQUEST A DEMO — COMPACT LEAD FORM
           Opens from every Request a Demo CTA.
           ========================================================= */
#requestDemoModal {
    position: fixed !important;
    inset: 0 !important;
    z-index: 2147483647 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 20px !important;
    box-sizing: border-box !important;
    background: rgba(2,5,10,.72) !important;
    backdrop-filter: blur(14px) !important;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .22s ease,visibility .22s ease;
}

    #requestDemoModal.open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

.request-demo-card {
    width: min(440px,100%);
    max-height: min(650px,calc(100vh - 40px));
    overflow: auto;
    box-sizing: border-box;
    border: 1px solid rgba(116,233,255,.25);
    border-radius: 22px;
    background: radial-gradient(circle at 15% 0%,rgba(116,233,255,.08),transparent 35%), linear-gradient(145deg,#07101d,#050811 72%);
    box-shadow: 0 30px 100px rgba(0,0,0,.65),0 0 55px rgba(116,233,255,.10);
    color: #eef5fb;
}

.request-demo-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 22px;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.request-demo-kicker {
    margin: 0 0 5px;
    color: #74e9ff;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.request-demo-title {
    margin: 0;
    font-size: 24px;
    line-height: 1.05;
    letter-spacing: -.025em;
    font-weight: 800;
}

.request-demo-close {
    flex: none;
    width: 34px;
    height: 34px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 50%;
    background: rgba(255,255,255,.04);
    color: #eaf3fb;
    cursor: pointer;
    font-size: 20px;
}

.request-demo-body {
    padding: 20px 22px 22px
}

.request-demo-copy {
    margin: 0 0 18px;
    color: #aebdce;
    font-size: 13px;
    line-height: 1.55;
}

.request-demo-field {
    display: block;
    width: 100%;
    height: 48px;
    box-sizing: border-box;
    margin: 0 0 10px;
    padding: 0 14px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 12px;
    background: rgba(255,255,255,.035);
    color: #f4f8fc;
    font: inherit;
    font-size: 13px;
    outline: none;
}

    .request-demo-field:focus {
        border-color: rgba(116,233,255,.62);
        box-shadow: 0 0 0 3px rgba(116,233,255,.06);
    }

.request-demo-phone {
    display: flex;
    align-items: center;
    width: 100%;
    height: 48px;
    box-sizing: border-box;
    margin-bottom: 10px;
    padding-left: 14px;
    gap: 8px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 12px;
    background: rgba(255,255,255,.035);
}

    .request-demo-phone span {
        flex: none;
        color: #b8c4d2;
        font-size: 12px;
    }

    .request-demo-phone input {
        border: 0;
        margin: 0;
        height: 44px;
        background: transparent;
        box-shadow: none;
    }

.request-demo-submit {
    width: 100%;
    height: 48px;
    border: 0;
    border-radius: 12px;
    background: linear-gradient(90deg,#74e9ff,#9c86ff);
    color: #041018;
    font-weight: 850;
    cursor: pointer;
    margin-top: 4px;
}

    .request-demo-submit:disabled {
        opacity: .55;
        cursor: wait
    }

.request-demo-status {
    min-height: 18px;
    margin: 10px 0 0;
    color: #7f91a5;
    font-size: 11px;
    line-height: 1.4;
}

.request-demo-success {
    display: none;
    padding: 18px;
    border: 1px solid rgba(120,246,174,.18);
    border-radius: 15px;
    background: rgba(120,246,174,.045);
}

    .request-demo-success.show {
        display: block
    }

    .request-demo-success strong {
        display: block;
        margin-bottom: 7px;
        color: #f4fbf7;
        font-size: 17px;
    }

    .request-demo-success p {
        margin: 0;
        color: #a9b9c9;
        font-size: 13px;
        line-height: 1.55;
    }

@media (max-width:600px) {
    #requestDemoModal {
        padding: 12px
    }

    .request-demo-card {
        border-radius: 18px
    }

    .request-demo-head {
        padding: 17px
    }

    .request-demo-body {
        padding: 17px
    }

    .request-demo-title {
        font-size: 21px
    }
}




/* =========================================================
   FINAL MOBILE / CROSS-BROWSER RESPONSIVE SAFETY LAYER
   Layout-only fixes. Existing JS/functionality is untouched.
   ========================================================= */

/* Prevent grid/flex children from creating a horizontal scroll area */
img, svg, canvas, video, iframe {
    max-width: 100%;
}

section,
.metrics-section,
.hero,
.hero-inner,
.hero-copy,
.demo,
.console,
.use-grid,
.security,
.arch-points,
.faq-list {
    min-width: 0;
}

@media (max-width: 800px) {
    nav {
        padding-left: 5vw;
        padding-right: 5vw;
    }
        nav a {
            display: none;
        }
    .navcta {
        display: block;
    }


    .hero#limitlessHero .hero-inner {
        padding-left: 5vw;
        padding-right: 5vw;
    }

    .metrics {
        grid-template-columns: 1fr 1fr;
    }

    .pipeline,
    .demo,
    .security {
        grid-template-columns: 1fr;
    }

    .custom-language {
        grid-template-columns: 1fr;
    }

        .custom-language input,
        .custom-language .btn {
            width: 100%;
        }

    .arch-points {
        grid-template-columns: 1fr;
    }

    .preview-row {
        flex-direction: column;
    }

        .preview-row .btn {
            width: 100%;
        }

    .language-tabs {
        max-width: 100%;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

        .language-tabs::-webkit-scrollbar {
            display: none;
        }

    .language-tab {
        flex: 0 0 auto;
        white-space: nowrap;
    }
}

@media (max-width: 520px) {
    html,
    body {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    nav {
        padding: 14px 16px;
    }

    .brand-logo img {
        height: 34px;
        max-width: 145px;
    }

    section {
        width: 100%;
        max-width: 100%;
        padding-left: 16px;
        padding-right: 16px;
    }

    .hero#limitlessHero {
        min-height: 150vh;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }

        .hero#limitlessHero .hero-inner {
            width: 100%;
            min-height: 520px;
            padding: 82px 16px 36px;
            overflow: hidden;
        }

        .hero#limitlessHero .hero-copy {
            width: 100%;
            max-width: 100%;
        }

        .hero#limitlessHero .eyebrow {
            font-size: 9px;
            letter-spacing: .16em;
            margin-bottom: 20px;
        }

        .hero#limitlessHero .limitless-word {
            width: 100%;
            max-width: 100%;
            gap: 1px;
            font-size: clamp(38px, 12.6vw, 64px);
            letter-spacing: 0;
        }

        .hero#limitlessHero .voice-word {
            font-size: clamp(27px, 8vw, 42px);
            letter-spacing: .055em;
            margin-top: 13px;
        }

        .hero#limitlessHero p {
            width: 100%;
            max-width: 520px;
            font-size: 14px;
            line-height: 1.55;
            margin: 22px auto 22px;
        }

        .hero#limitlessHero .buttons {
            width: 100%;
            max-width: 360px;
            margin: 0 auto;
            gap: 8px;
        }

            .hero#limitlessHero .buttons .btn {
                max-width: 100%;
                padding: 11px 14px;
                font-size: 11px;
            }

        .hero#limitlessHero .voice-orb {
            width: 110vw;
            height: 110vw;
            max-width: 520px;
            max-height: 520px;
        }

    .metrics-section {
        padding-top: 14px !important;
        padding-left: 16px !important;
        padding-right: 16px !important;
    }

    .metrics {
        width: 100%;
        grid-template-columns: 1fr;
        border-radius: 18px;
    }

    .metric {
        min-width: 0;
        padding: 18px;
    }

        .metric b {
            font-size: 25px;
            overflow-wrap: anywhere;
        }

        .metric span {
            font-size: 11px;
        }

    .section-title {
        font-size: clamp(32px, 10vw, 48px);
        line-height: .98;
        overflow-wrap: anywhere;
    }

    .section-copy {
        max-width: 100%;
        font-size: 13px;
        overflow-wrap: anywhere;
    }

    .pipeline {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .node {
        min-width: 0;
        min-height: 145px;
        padding: 18px;
    }

        .node h3 {
            margin-top: 25px;
        }

    .language-tabs {
        width: 100%;
    }

    .languages {
        width: 100%;
        gap: 7px;
    }

    .lang {
        max-width: 100%;
        padding: 10px 13px;
        font-size: 12px;
    }

    .demo {
        grid-template-columns: 1fr;
        width: 100%;
        gap: 14px;
    }

    .console,
    .use-card {
        width: 100%;
        min-width: 0;
        padding: 18px;
        border-radius: 20px;
    }

        .console h3 {
            font-size: 24px !important;
        }

    .voice-input {
        min-width: 0;
        width: 100%;
        min-height: 150px;
        font-size: 14px;
    }

    .preview-row {
        width: 100%;
    }

        .preview-row .btn {
            width: 100%;
            min-width: 0;
        }

    .use-grid {
        grid-template-columns: 1fr;
        width: 100%;
        gap: 10px;
    }

    #useGrid .use {
        width: 100%;
        min-width: 0;
        padding: 18px;
    }

        #useGrid .use b,
        #useGrid .use small {
            overflow-wrap: anywhere;
        }

    .use-detail {
        width: 100%;
        min-width: 0;
        padding: 20px;
        font-size: 13px;
        overflow-wrap: anywhere;
    }

    .security {
        grid-template-columns: 1fr;
        width: 100%;
    }

    .securebox {
        min-width: 0;
        padding: 20px;
    }

    .arch-points {
        grid-template-columns: 1fr;
        width: 100%;
    }

    .arch-point {
        min-width: 0;
        overflow-wrap: anywhere;
    }

    .faq-list {
        width: 100%;
        max-width: 100%;
    }

    .faq button {
        padding: 18px 16px;
        gap: 12px;
        font-size: 13px;
    }

        .faq button span:first-child {
            min-width: 0;
            overflow-wrap: anywhere;
        }

    .faq-answer {
        padding: 0 16px 18px;
        font-size: 13px;
        overflow-wrap: anywhere;
    }

    .final {
        padding-bottom: 100px;
    }

        .final h2 {
            font-size: clamp(38px, 11vw, 58px);
        }

    footer {
        padding: 22px 16px;
        gap: 14px;
        flex-direction: column;
        align-items: flex-start;
    }

        footer > span:last-child {
            justify-content: flex-start !important;
        }
}

/* Very narrow phones */
@media (max-width: 360px) {
    .hero#limitlessHero .limitless-word {
        font-size: 36px;
    }

    .hero#limitlessHero .voice-word {
        font-size: 26px;
    }

    .hero#limitlessHero p {
        font-size: 13px;
    }

    .section-title {
        font-size: 30px;
    }

    .btn {
        padding: 10px 12px;
        font-size: 10px;
    }
}
