﻿
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Space+Grotesk:wght@400;500;600;700&display=swap');

:root {
    --bg: #030508;
    --panel: rgba(7,10,16,.68);
    --panel2: rgba(12,15,23,.58);
    --text: #f4f4f1;
    --muted: #8c919d;
    --line: rgba(255,255,255,.12);
    --gold: #d7a84b;
    --gold2: #f1c76b;
    --cyan: #42dfff;
    --purple: #a876ff;
    --green: #39d4a5;
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth;
    scrollbar-width: none;
    background: var(--bg)
}

    html::-webkit-scrollbar {
        display: none
    }

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: "DM Sans",sans-serif;
    overflow-x: hidden;
    scrollbar-width: none;
}

    body::-webkit-scrollbar {
        display: none
    }

a {
    color: inherit;
    text-decoration: none
}

button {
    font: inherit
}

/* BACKGROUND */
#flow {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.bg-vignette {
    position: fixed;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: radial-gradient(circle at 68% 24%,rgba(32,90,170,.11),transparent 27%), radial-gradient(circle at 25% 70%,rgba(103,35,190,.08),transparent 30%), linear-gradient(180deg,rgba(0,0,0,.15),rgba(0,0,0,.58));
}

.noise {
    position: fixed;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    opacity: .035;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* NAV */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 3.2vw;
    border-bottom: 1px solid rgba(255,255,255,.06);
    background: rgba(2,4,7,.52);
    backdrop-filter: blur(16px);
}

.logo {
    width: 86px;
    height: auto;
    object-fit: contain;
}

.navlinks {
    display: flex;
    gap: 34px;
    align-items: center;
    margin-left: auto;
    margin-right: 28px;
}

    .navlinks a {
        color: #c4c7cd;
        font-size: 11px;
        font-weight: 500;
        transition: .25s;
    }

        .navlinks a:hover {
            color: #fff
        }

.nav-cta {
    border: 1px solid rgba(215,168,75,.7);
    color: var(--gold2);
    padding: 10px 18px;
    font-size: 10px;
    font-weight: 600;
}

    .nav-cta:hover {
        background: var(--gold);
        color: #080705;
    }

/* SIDE INDEX */
.side-index {
    position: fixed;
    z-index: 30;
    left: 22px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 13px;
}

    .side-index a {
        color: #555c67;
        font-family: "Space Grotesk",sans-serif;
        font-size: 8px;
        letter-spacing: .08em;
    }

        .side-index a.active,
        .side-index a:hover {
            color: var(--gold2)
        }

    .side-index b {
        display: block;
        margin-bottom: 3px;
        font-size: 8px;
        color: inherit;
    }

/* COMMON */
section {
    position: relative;
    overflow: visible;
    z-index: 5;
    min-height: 0;
    padding: 52px 7.5vw;
    border-bottom: 1px solid rgba(255,255,255,.09);
}

.eyebrow {
    color: var(--gold2);
    font-family: "Space Grotesk",sans-serif;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.section-grid {
    display: grid;
    grid-template-columns: minmax(330px, 24vw) minmax(0,1fr);
    gap: 4vw;
    align-items: center;
}

.section-title {
    margin: 12px 0 0;
    max-width: 100%;
    font-family: "Space Grotesk",sans-serif;
    font-size: clamp(48px,4.35vw,72px);
    line-height: .94;
    letter-spacing: -.055em;
}

    .section-title .gold {
        color: var(--gold2)
    }

.section-copy {
    max-width: 500px;
    margin: 28px 0 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.7;
}

.reveal {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity .8s ease,transform .9s cubic-bezier(.2,.7,.2,1);
}

    .reveal.show {
        opacity: 1;
        transform: none
    }

/* HERO */
.hero {
    min-height: 100vh;
    padding: 150px 9vw 90px;
    display: flex;
    align-items: center;
}

.hero-content {
    width: 100%;
    max-width: 980px;
}

.hero h1 {
    margin: 18px 0 25px;
    max-width: 760px;
    font-family: "Space Grotesk",sans-serif;
    font-size: clamp(55px,7vw,108px);
    line-height: .91;
    letter-spacing: -.07em;
}

    .hero h1 .gold {
        color: var(--gold2)
    }

.hero-copy {
    max-width: 420px;
    color: #a4a8b0;
    font-size: 13px;
    line-height: 1.65;
}

.hero-btn {
    display: inline-flex;
    margin-top: 24px;
    padding: 13px 18px;
    border: 1px solid var(--gold);
    color: var(--gold2);
    font-size: 10px;
    font-weight: 600;
}

    .hero-btn:hover {
        background: var(--gold);
        color: #090806
    }

.hero-art {
    position: absolute;
    right: 0;
    top: 13%;
    width: 63%;
    height: 75%;
    pointer-events: none;
    opacity: .92;
}

    .hero-art canvas {
        width: 100%;
        height: 100%;
    }

/* CAPABILITIES */
.cap-grid {
    display: grid;
    grid-template-columns: minmax(330px,24vw) minmax(0,1fr);
    gap: 4vw;
}

.cap-cards {
    display: grid;
    grid-template-columns: repeat(5,1fr);
    gap: 12px;
}

.cap-card {
    min-height: 265px;
    padding: 20px 17px;
    border: 1px solid rgba(255,255,255,.13);
    border-radius: 12px;
    background: linear-gradient(160deg,rgba(17,22,34,.72),rgba(5,8,13,.48));
    backdrop-filter: blur(10px);
    box-shadow: 0 18px 55px rgba(0,0,0,.18);
    transition: .35s;
}

    .cap-card:hover {
        transform: translateY(-7px);
        border-color: rgba(215,168,75,.48);
    }

.icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    margin-bottom: 28px;
    font-size: 22px;
    background: radial-gradient(circle,rgba(167,117,255,.35),rgba(167,117,255,.05));
    box-shadow: 0 0 28px rgba(120,70,220,.22);
}

.cap-card:nth-child(2) .icon {
    background: radial-gradient(circle,rgba(60,180,255,.35),rgba(60,180,255,.05))
}

.cap-card:nth-child(3) .icon {
    background: radial-gradient(circle,rgba(215,168,75,.35),rgba(215,168,75,.05))
}

.cap-card:nth-child(4) .icon {
    background: radial-gradient(circle,rgba(40,210,175,.35),rgba(40,210,175,.05))
}

.cap-card:nth-child(5) .icon {
    background: radial-gradient(circle,rgba(140,90,255,.4),rgba(140,90,255,.05))
}

.cap-card h3 {
    margin: 0 0 12px;
    font-family: "Space Grotesk",sans-serif;
    font-size: 18px;
    line-height: 1.15;
}

.cap-card p {
    margin: 0;
    color: #9ba1ac;
    font-size: 12px;
    line-height: 1.55;
}

/* WORKFLOW */
.workflow {
    min-height: 82vh;
}

.workflow-visual {
    margin-top: 26px;
    display: grid;
    grid-template-columns: repeat(5,1fr);
    gap: 0;
    align-items: start;
}

.workflow-node {
    position: relative;
    text-align: center;
}

    .workflow-node:not(:last-child)::after {
        content: "";
        position: absolute;
        top: 31px;
        left: 68%;
        width: 65%;
        height: 1px;
        background: linear-gradient(90deg,rgba(215,168,75,.7),rgba(80,100,130,.12));
    }

.node-icon {
    position: relative;
    z-index: 2;
    width: 64px;
    height: 64px;
    margin: 0 auto 22px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(215,168,75,.35);
    border-radius: 50%;
    background: rgba(5,8,13,.82);
    box-shadow: 0 0 35px rgba(215,168,75,.09);
    font-size: 21px;
}

.workflow-node h3 {
    margin: 0 0 10px;
    font-family: "Space Grotesk",sans-serif;
    font-size: 17px;
}

.workflow-node p {
    max-width: 150px;
    margin: auto;
    color: #969ca7;
    font-size: 12px;
    line-height: 1.5;
}

/* LANGUAGE */
.language-section {
    min-height: 0;
    padding-top: 12px;
    padding-bottom: 22px;
}

.language-cards {
    display: grid;
    grid-template-columns: repeat(5,1fr);
    gap: 13px;
    margin-top: 24px;
}

.language-card {
    min-height: 175px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,.12);
    background: linear-gradient(145deg,rgba(75,34,20,.66),rgba(17,10,10,.65));
    box-shadow: inset 0 0 40px rgba(255,100,30,.04);
}

    .language-card:nth-child(2) {
        background: linear-gradient(145deg,rgba(15,47,75,.72),rgba(5,12,20,.68))
    }

    .language-card:nth-child(3) {
        background: linear-gradient(145deg,rgba(11,65,53,.72),rgba(4,15,13,.68))
    }

    .language-card:nth-child(4) {
        background: linear-gradient(145deg,rgba(61,25,75,.72),rgba(15,7,20,.68))
    }

    .language-card:nth-child(5) {
        background: linear-gradient(145deg,rgba(83,31,28,.72),rgba(20,7,8,.68))
    }

.language-script {
    font-size: 42px;
    margin-bottom: 12px;
}

.language-name {
    color: #e4e5e7;
    font-family: "Space Grotesk",sans-serif;
    font-size: 14px;
}

.language-meta {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
    color: #a0a5af;
    font-size: 11px;
}

    .language-meta span::before {
        content: "✦";
        color: var(--gold);
        margin-right: 6px;
    }

/* INDUSTRIES */
.industry-cards {
    display: grid;
    grid-template-columns: repeat(6,1fr);
    gap: 9px;
    margin-top: 38px;
}

.industry-card {
    min-height: 175px;
    padding: 20px 12px;
    text-align: center;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 10px;
    background: rgba(8,12,18,.68);
    transition: .3s;
}

    .industry-card:hover {
        transform: translateY(-5px);
        border-color: rgba(215,168,75,.4);
    }

.industry-icon {
    height: 54px;
    display: grid;
    place-items: center;
    color: var(--gold2);
    font-size: 25px;
}

.industry-card h3 {
    margin: 8px 0 10px;
    font-family: "Space Grotesk",sans-serif;
    font-size: 16px;
}

.industry-card p {
    margin: 0;
    color: #9aa0ab;
    font-size: 12px;
    line-height: 1.45;
}

/* SOVEREIGN */
.sov-card {
    margin-top: 38px;
    display: grid;
    grid-template-columns: repeat(4,1fr);
    border: 1px solid rgba(215,168,75,.32);
    border-radius: 13px;
    overflow: hidden;
    background: linear-gradient(120deg,rgba(7,12,20,.9),rgba(10,8,13,.72));
}

.sov-item {
    min-height: 190px;
    padding: 28px 25px;
    border-right: 1px solid rgba(255,255,255,.09);
}

    .sov-item:last-child {
        border-right: 0
    }

.sov-icon {
    color: var(--gold2);
    font-size: 24px;
    margin-bottom: 26px;
}

.sov-item h3 {
    margin: 0 0 10px;
    font-family: "Space Grotesk",sans-serif;
    font-size: 18px;
}

.sov-item p {
    margin: 0;
    color: #9198a3;
    font-size: 11px;
    line-height: 1.55;
}

/* USE CASES */
.use-grid {
    display: grid;
    grid-template-columns: minmax(330px,24vw) minmax(0,1fr);
    gap: 4vw;
}

.use-cards {
    display: grid;
    grid-template-columns: repeat(6,1fr);
    gap: 10px;
}

.use-card {
    min-height: 190px;
    padding: 22px 13px;
    border: 1px solid rgba(255,255,255,.11);
    border-radius: 11px;
    background: linear-gradient(145deg,rgba(15,12,28,.68),rgba(5,8,13,.68));
}

    .use-card:nth-child(2) {
        background: linear-gradient(145deg,rgba(8,31,43,.72),rgba(4,8,13,.68))
    }

    .use-card:nth-child(3) {
        background: linear-gradient(145deg,rgba(35,26,10,.72),rgba(8,8,7,.68))
    }

    .use-card:nth-child(4) {
        background: linear-gradient(145deg,rgba(31,20,55,.72),rgba(8,7,15,.68))
    }

    .use-card:nth-child(5) {
        background: linear-gradient(145deg,rgba(12,35,35,.72),rgba(4,10,10,.68))
    }

    .use-card:nth-child(6) {
        background: linear-gradient(145deg,rgba(36,28,10,.72),rgba(8,8,7,.68))
    }

    .use-card .num {
        color: var(--gold);
        font-size: 8px;
    }

    .use-card .uicon {
        margin: 22px 0 18px;
        color: #bfc6d1;
        font-size: 23px;
    }

    .use-card h3 {
        margin: 0 0 9px;
        font-family: "Space Grotesk",sans-serif;
        font-size: 12px;
    }

    .use-card p {
        margin: 0;
        color: #8d949f;
        font-size: 10px;
        line-height: 1.45;
    }

/* FAQ */
.faq-grid {
    display: grid;
    grid-template-columns: minmax(330px,24vw) minmax(0,1fr);
    gap: 4vw;
}

.faq-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 18px;
}

.faq-item {
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 7px;
    background: rgba(6,9,14,.62);
}

.faq-q {
    width: 100%;
    min-height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 18px;
    border: 0;
    background: none;
    color: #e8e9eb;
    text-align: left;
    cursor: pointer;
    font-family: "Space Grotesk",sans-serif;
    font-size: 14px;
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    color: #8f96a1;
    font-size: 11px;
    line-height: 1.5;
    padding: 0 15px;
    transition: max-height .35s ease,padding .35s ease;
}

.faq-item.open .faq-a {
    max-height: 130px;
    padding: 0 15px 15px;
}

/* CTA */
.cta {
    min-height: 75vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

    .cta h2 {
        margin: 14px 0 20px;
        max-width: 680px;
        font-family: "Space Grotesk",sans-serif;
        font-size: clamp(50px,6vw,90px);
        line-height: .9;
        letter-spacing: -.07em;
    }

        .cta h2 .gold {
            color: var(--gold2)
        }

    .cta p {
        color: #888f99;
        max-width: 420px;
        font-size: 12px;
        line-height: 1.6;
    }

.cta-btn {
    display: inline-block;
    margin-top: 22px;
    padding: 13px 20px;
    background: var(--gold);
    color: #0b0905;
    font-size: 10px;
    font-weight: 700;
}

/* RESPONSIVE */
@media(max-width:1200px) {
    .section-grid, .cap-grid, .use-grid, .faq-grid {
        grid-template-columns: minmax(280px,30vw) minmax(0,1fr);
    }

    .cap-cards {
        grid-template-columns: repeat(3,1fr)
    }

    .industry-cards {
        grid-template-columns: repeat(3,1fr)
    }

    .use-cards {
        grid-template-columns: repeat(3,1fr)
    }

    .language-cards {
        grid-template-columns: repeat(3,1fr)
    }
}

@media(max-width:760px) {
    section {
        min-height: 0;
        padding-top: 42px;
        padding-bottom: 42px
    }

    #workflow, #sovereign, #usecases, #faq, #contact {
        min-height: 0;
        padding-top: 26px;
        padding-bottom: 26px
    }

    .section-grid, .cap-grid, .use-grid, .faq-grid {
        grid-template-columns: 1fr;
    }

    nav {
        padding: 0 18px
    }

    .navlinks {
        display: none
    }

    .side-index {
        display: none
    }

    section {
        padding: 90px 7vw
    }

    .section-grid, .cap-grid, .use-grid, .faq-grid {
        grid-template-columns: 1fr;
        gap: 25px
    }

    .hero {
        padding-top: 130px
    }

    .hero-art {
        opacity: .35;
        width: 100%;
        height: 70%;
        top: 25%
    }

    .cap-cards, .language-cards, .industry-cards, .use-cards {
        grid-template-columns: 1fr 1fr
    }

    .workflow-visual {
        grid-template-columns: 1fr;
        gap: 30px
    }

    .workflow-node:not(:last-child)::after {
        display: none
    }

    .sov-card {
        grid-template-columns: 1fr 1fr
    }

    .sov-item:nth-child(2) {
        border-right: 0
    }

    .sov-item:nth-child(-n+2) {
        border-bottom: 1px solid rgba(255,255,255,.09)
    }

    .faq-list {
        grid-template-columns: 1fr
    }
}

@media(max-width:480px) {
    .cap-cards, .language-cards, .industry-cards, .use-cards, .sov-card {
        grid-template-columns: 1fr
    }

    .hero h1 {
        font-size: 52px
    }
}

/* Reveal fallback */
@media(prefers-reduced-motion:reduce) {
    html {
        scroll-behavior: auto
    }

    .reveal {
        opacity: 1;
        transform: none
    }
}

/* LIVING BACKGROUND */
.bg-vignette {
    background: radial-gradient(circle at 14% 24%,rgba(0,205,255,.14),transparent 24%), radial-gradient(circle at 82% 18%,rgba(157,76,255,.16),transparent 25%), radial-gradient(circle at 72% 72%,rgba(215,168,75,.10),transparent 23%), radial-gradient(circle at 22% 84%,rgba(46,214,176,.09),transparent 25%), linear-gradient(180deg,rgba(0,0,0,.08),rgba(0,0,0,.38));
    animation: bgBreath 12s ease-in-out infinite alternate;
}

@keyframes bgBreath {
    0% {
        filter: hue-rotate(0deg);
        opacity: .78
    }

    50% {
        filter: hue-rotate(10deg);
        opacity: 1
    }

    100% {
        filter: hue-rotate(-8deg);
        opacity: .84
    }
}


/* FINAL COMPACT RHYTHM FIX */
.workflow {
    min-height: 0 !important;
    height: auto !important;
    padding-top: 26px !important;
    padding-bottom: 20px !important;
}

.language-section {
    min-height: 0 !important;
    height: auto !important;
    padding-top: 18px !important;
    padding-bottom: 28px !important;
}

#industries {
    min-height: 0 !important;
    height: auto !important;
    padding-top: 24px !important;
    padding-bottom: 40px !important;
}

#sovereign,
#usecases,
#faq {
    min-height: 0 !important;
    height: auto !important;
    padding-top: 36px !important;
    padding-bottom: 36px !important;
}

#contact {
    min-height: 55vh !important;
}

/* Remove accidental viewport-sized gaps on desktop */
section:not(.hero) {
    min-height: 0;
}


/* FINAL SECTION RHYTHM */
section:not(.hero) {
    margin-top: 0;
    margin-bottom: 22px;
    min-height: 0 !important;
}

.workflow {
    padding-top: 38px !important;
    padding-bottom: 30px !important;
    margin-bottom: 22px;
}

.language-section {
    padding-top: 34px !important;
    padding-bottom: 34px !important;
    margin-bottom: 22px;
}

#industries {
    padding-top: 34px !important;
    padding-bottom: 38px !important;
    margin-bottom: 22px;
}

#sovereign,
#usecases,
#faq {
    padding-top: 38px !important;
    padding-bottom: 38px !important;
    margin-bottom: 22px;
}

#contact {
    margin-top: 0;
    margin-bottom: 0;
}

/* Keep the six-card rows readable instead of overly compressed. */
.industry-grid {
    gap: 16px;
}

.use-grid {
    gap: 18px;
}

.cap-grid {
    gap: 18px;
}

.language-cards {
    gap: 16px;
}

/* More visual hierarchy in the information cards. */
.industry-card h3,
.use-card h3 {
    font-size: 16px;
    line-height: 1.18;
}

.industry-card p,
.use-card p {
    font-size: 12px;
    line-height: 1.55;
}

.workflow-node h3 {
    font-size: 17px;
}

.workflow-node p {
    font-size: 12px;
    line-height: 1.5;
}

/* FAQ questions should feel like real interactive panels. */
.faq-q {
    min-height: 70px;
    padding: 20px 22px;
    font-size: 15px;
}

/* Give the animated background enough presence without overpowering text. */
.bg-vignette {
    opacity: 1;
}

/* 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;
}


/* DESCRIPTION SCALE — intentionally stronger across the whole page */
.hero-copy {
    font-size: 16px !important;
    line-height: 1.75 !important;
    max-width: 600px !important
}

.section-copy {
    font-size: 17px !important;
    line-height: 1.75 !important;
    max-width: 560px !important
}

.cap-card p {
    font-size: 14px !important;
    line-height: 1.65 !important
}

.workflow-node p {
    font-size: 14px !important;
    line-height: 1.65 !important;
    max-width: 190px !important
}

.industry-card p {
    font-size: 14px !important;
    line-height: 1.6 !important
}

.sov-item p {
    font-size: 14px !important;
    line-height: 1.65 !important
}

.use-card p {
    font-size: 13px !important;
    line-height: 1.6 !important
}

.faq-a {
    font-size: 13px !important;
    line-height: 1.65 !important
}

.cta p {
    font-size: 14px !important;
    line-height: 1.7 !important;
    max-width: 520px !important
}

.language-meta {
    font-size: 12px !important
}

@media(max-width:760px) {
    .hero-copy {
        font-size: 15px !important
    }

    .section-copy {
        font-size: 15px !important
    }

    .cap-card p, .workflow-node p, .industry-card p, .sov-item p {
        font-size: 13px !important
    }

    .use-card p, .faq-a {
        font-size: 12px !important
    }
}


/* =========================================================
   SHIVI — PERSISTENT AI ASSISTANT
   ========================================================= */
#shivi-assistant-root {
    display: none;
    position: fixed;
    right: 24px;
    bottom: 22px;
    z-index: 2147483000;
    font-family: "DM Sans",sans-serif;
    pointer-events: none;
}

#shivi-bubble {
    position: relative;
    width: 72px;
    height: 72px;
    border: 1px solid rgba(105,220,255,.42);
    border-radius: 50%;
    background: radial-gradient(circle at 34% 28%,#ffffff 0 5%,#9befff 6% 13%,transparent 14%), radial-gradient(circle at 58% 58%,rgba(154,92,255,.7),rgba(6,13,23,.96) 62%);
    box-shadow: 0 0 0 6px rgba(105,220,255,.035), 0 0 34px rgba(105,220,255,.20), 0 12px 35px rgba(0,0,0,.45);
    cursor: pointer !important;
    pointer-events: auto;
    display: grid;
    place-items: center;
    transition: transform .25s ease,box-shadow .25s ease;
    animation: shiviBreath 3.2s ease-in-out infinite;
}

    #shivi-bubble:hover {
        transform: translateY(-3px) scale(1.04);
        box-shadow: 0 0 0 7px rgba(105,220,255,.05),0 0 42px rgba(154,92,255,.28),0 14px 38px rgba(0,0,0,.5);
    }

.shivi-face {
    position: relative;
    width: 44px;
    height: 40px;
    border-radius: 46% 46% 44% 44%;
    background: linear-gradient(145deg,#f4f7ff,#a9eaff 55%,#8d69ff);
    box-shadow: inset 0 -6px 10px rgba(70,70,180,.18);
}

    .shivi-face:before,
    .shivi-face:after {
        content: "";
        position: absolute;
        top: 14px;
        width: 5px;
        height: 7px;
        border-radius: 50%;
        background: #07101c;
    }

    .shivi-face:before {
        left: 11px
    }

    .shivi-face:after {
        right: 11px
    }

.shivi-mouth {
    position: absolute;
    left: 17px;
    bottom: 8px;
    width: 10px;
    height: 5px;
    border-bottom: 2px solid #07101c;
    border-radius: 0 0 10px 10px;
}

.shivi-wave {
    position: absolute;
    right: -3px;
    top: -10px;
    font-size: 22px;
    transform-origin: bottom left;
    animation: shiviWave 2.8s ease-in-out infinite;
}

.shivi-status-dot {
    position: absolute;
    right: 2px;
    bottom: 5px;
    width: 10px;
    height: 10px;
    border: 2px solid #050911;
    border-radius: 50%;
    background: #39d4a5;
    box-shadow: 0 0 12px rgba(57,212,165,.65);
}

#shivi-teaser {
    position: absolute;
    right: 4px;
    bottom: 84px;
    width: 225px;
    padding: 11px 13px;
    border: 1px solid rgba(105,220,255,.22);
    border-radius: 12px 12px 4px 12px;
    background: rgba(6,12,20,.94);
    color: #dfe8f3;
    font-size: 11px;
    line-height: 1.5;
    box-shadow: 0 18px 45px rgba(0,0,0,.45);
    backdrop-filter: blur(16px);
    opacity: 0;
    transform: translateY(8px) scale(.96);
    pointer-events: none;
    transition: .3s ease;
}

    #shivi-teaser.show {
        opacity: 1;
        transform: none;
    }

    #shivi-teaser strong {
        color: #69dcff
    }

/* Chat */
#shivi-chat {
    position: absolute;
    right: 0;
    bottom: 88px;
    width: min(365px,calc(100vw - 32px));
    height: min(530px,calc(100vh - 120px));
    min-height: 420px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(105,220,255,.24);
    border-radius: 16px;
    background: radial-gradient(circle at 100% 0,rgba(154,92,255,.10),transparent 35%), linear-gradient(145deg,rgba(8,15,25,.98),rgba(4,8,14,.98));
    box-shadow: 0 28px 90px rgba(0,0,0,.65),0 0 35px rgba(105,220,255,.08);
    backdrop-filter: blur(20px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(14px) scale(.97);
    transform-origin: bottom right;
    transition: .25s ease;
    pointer-events: none;
}

    #shivi-chat.open {
        opacity: 1;
        visibility: visible;
        transform: none;
        pointer-events: auto;
    }

.shivi-chat-header {
    flex: 0 0 64px;
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 11px 14px;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.shivi-mini {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: linear-gradient(145deg,#bff4ff,#8c6aff);
    color: #07101c;
    font-size: 18px;
    box-shadow: 0 0 18px rgba(105,220,255,.16);
}

.shivi-chat-title {
    flex: 1
}

    .shivi-chat-title strong {
        display: block;
        font-size: 12px;
        color: #f3f6fb
    }

    .shivi-chat-title span {
        display: block;
        margin-top: 2px;
        color: #69788c;
        font-size: 7px;
        letter-spacing: .12em
    }

.shivi-close {
    border: 0;
    background: transparent;
    color: #78879a;
    font-size: 20px;
    line-height: 1;
    cursor: pointer !important;
}

    .shivi-close:hover {
        color: #fff
    }

#shivi-chat-body {
    flex: 1;
    min-height: 0;
    overflow: auto;
    padding: 16px;
    scrollbar-width: thin;
}

.shivi-msg {
    max-width: 88%;
    padding: 10px 12px;
    margin: 0 0 10px;
    border-radius: 11px 11px 11px 3px;
    background: rgba(255,255,255,.055);
    border: 1px solid rgba(255,255,255,.07);
    color: #c9d3df;
    font-size: 10px;
    line-height: 1.55;
}

    .shivi-msg.user {
        margin-left: auto;
        border-radius: 11px 11px 3px 11px;
        background: rgba(105,220,255,.10);
        border-color: rgba(105,220,255,.13);
        color: #e8f8ff;
    }

#shivi-intake {
    padding: 14px 16px 16px;
    border-top: 1px solid rgba(255,255,255,.07);
}

.shivi-field {
    display: block;
    margin-bottom: 9px
}

    .shivi-field span {
        display: block;
        margin-bottom: 5px;
        color: #78879a;
        font-size: 7px;
        letter-spacing: .13em;
        text-transform: uppercase;
    }

    .shivi-field input {
        width: 100%;
        height: 36px;
        border: 1px solid rgba(255,255,255,.10);
        border-radius: 7px;
        background: #050a12;
        color: #f5f7fb;
        padding: 0 10px;
        outline: none;
        font-size: 10px;
    }

.shivi-phone {
    display: flex;
    gap: 6px
}

    .shivi-phone .code {
        width: 51px;
        flex: 0 0 51px;
        text-align: center;
        color: #69dcff;
    }

    .shivi-phone input:last-child {
        flex: 1
    }

#shivi-start {
    width: 100%;
    height: 38px;
    border: 0;
    border-radius: 7px;
    background: linear-gradient(90deg,#69dcff,#9a5cff);
    color: #061019;
    font-size: 8px;
    font-weight: 900;
    letter-spacing: .12em;
    cursor: pointer !important;
}

    #shivi-start:disabled {
        opacity: .55
    }

#shivi-conversation {
    display: none;
    flex: 1;
    min-height: 0;
    flex-direction: column;
}

    #shivi-conversation.active {
        display: flex
    }

#shivi-intake.hidden {
    display: none
}

#shivi-messages {
    flex: 1;
    min-height: 0;
    overflow: auto;
    padding: 16px;
    scrollbar-width: thin;
}

#shivi-composer {
    display: flex;
    gap: 7px;
    padding: 10px;
    border-top: 1px solid rgba(255,255,255,.07);
}

#shivi-input {
    flex: 1;
    min-width: 0;
    height: 38px;
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 7px;
    background: #050a12;
    color: #fff;
    padding: 0 10px;
    outline: none;
    font-size: 10px;
}

#shivi-send {
    width: 54px;
    border: 0;
    border-radius: 7px;
    background: #69dcff;
    color: #061019;
    font-weight: 900;
    cursor: pointer !important;
}

.shivi-typing {
    display: inline-flex;
    gap: 3px;
    padding: 11px 12px;
    background: rgba(255,255,255,.055);
    border-radius: 11px;
}

    .shivi-typing i {
        width: 4px;
        height: 4px;
        border-radius: 50%;
        background: #69dcff;
        animation: shiviDots 1s infinite ease-in-out;
    }

        .shivi-typing i:nth-child(2) {
            animation-delay: .15s
        }

        .shivi-typing i:nth-child(3) {
            animation-delay: .3s
        }

@keyframes shiviBreath {
    0%,100% {
        transform: translateY(0) scale(1)
    }

    50% {
        transform: translateY(-3px) scale(1.025)
    }
}

@keyframes shiviWave {
    0%,72%,100% {
        transform: rotate(0deg)
    }

    78% {
        transform: rotate(18deg)
    }

    84% {
        transform: rotate(-14deg)
    }

    90% {
        transform: rotate(13deg)
    }
}

@keyframes shiviDots {
    0%,100% {
        opacity: .25;
        transform: translateY(0)
    }

    50% {
        opacity: 1;
        transform: translateY(-2px)
    }
}

@media(max-width:600px) {
    #shivi-assistant-root {
        right: 14px;
        bottom: 14px
    }

    #shivi-bubble {
        width: 62px;
        height: 62px
    }

    #shivi-chat {
        right: -4px;
        bottom: 76px;
        width: calc(100vw - 28px);
        height: min(520px,calc(100vh - 100px))
    }

    #shivi-teaser {
        right: 0;
        bottom: 74px;
        width: 195px
    }
}


html, body, body * {
    cursor: auto !important;
}

a, button, [role="button"] {
    cursor: pointer !important
}

input, textarea, select {
    cursor: text !important
}

#shivi-assistant-root, #shivi-assistant-root * {
    cursor: auto !important
}

#shivi-bubble, #shivi-close, #shivi-start, #shivi-send {
    cursor: pointer !important
}


/* =========================================================
   TALK TO ARIA — CUSTOM DATA-COLLECTION UI
   Google Forms is used only as the submission/storage backend.
   ========================================================= */
.aria-form-trigger {
    cursor: pointer !important;
    border: 0;
    font-family: inherit;
}

.nav-cta.aria-form-trigger {
    background: transparent;
}

    .nav-cta.aria-form-trigger:hover {
        background: var(--gold);
        color: #080705;
    }

.cta-btn.aria-form-trigger {
    border: 0;
    cursor: pointer !important;
    font-family: inherit;
}

#aria-form-overlay {
    position: fixed;
    inset: 0;
    z-index: 2147482500;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(0,0,0,.72);
    backdrop-filter: blur(12px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .25s ease,visibility .25s ease;
}

    #aria-form-overlay.open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

#aria-lead-modal {
    position: relative;
    width: min(700px,100%);
    max-height: calc(100vh - 48px);
    overflow: auto;
    border: 1px solid rgba(105,220,255,.28);
    border-radius: 16px;
    background: radial-gradient(circle at 90% 0%,rgba(154,92,255,.14),transparent 34%), radial-gradient(circle at 5% 100%,rgba(105,220,255,.08),transparent 32%), linear-gradient(145deg,rgba(8,14,23,.98),rgba(3,7,13,.99));
    box-shadow: 0 35px 110px rgba(0,0,0,.7),0 0 50px rgba(105,220,255,.07);
    transform: translateY(16px) scale(.97);
    transition: transform .28s cubic-bezier(.2,.7,.2,1);
}

#aria-form-overlay.open #aria-lead-modal {
    transform: none;
}

.aria-form-inner {
    padding: 42px 46px 38px;
}

.aria-form-close {
    position: absolute;
    top: 18px;
    right: 20px;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 50%;
    background: rgba(255,255,255,.03);
    color: #9ca7b4;
    font-size: 22px;
    line-height: 1;
    cursor: pointer !important;
}

    .aria-form-close:hover {
        color: #fff;
        border-color: rgba(105,220,255,.35);
    }

.aria-form-eyebrow {
    color: #69dcff;
    font-family: "Space Grotesk",sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.aria-form-title {
    margin: 0;
    color: #f4f6fb;
    font-family: "Space Grotesk",sans-serif;
    font-size: clamp(42px,5vw,66px);
    line-height: .92;
    letter-spacing: -.055em;
}

    .aria-form-title span {
        color: #69dcff
    }

.aria-form-subtitle {
    max-width: 560px;
    margin: 20px 0 30px;
    color: #a9b1bd;
    font-size: 16px;
    line-height: 1.65;
}

.aria-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.aria-field {
    display: block;
}

    .aria-field.full {
        grid-column: 1 / -1;
    }

    .aria-field label {
        display: block;
        margin: 0 0 8px;
        color: #8e9bab;
        font-family: "Space Grotesk",sans-serif;
        font-size: 10px;
        font-weight: 600;
        letter-spacing: .12em;
        text-transform: uppercase;
    }

    .aria-field input,
    .aria-field textarea {
        width: 100%;
        border: 1px solid rgba(255,255,255,.12);
        border-radius: 9px;
        outline: none;
        background: rgba(2,7,13,.78);
        color: #f4f7fb;
        font-family: "DM Sans",sans-serif;
        font-size: 15px;
        padding: 14px 15px;
        transition: border-color .2s,box-shadow .2s;
    }

    .aria-field input {
        height: 50px
    }

    .aria-field textarea {
        min-height: 110px;
        resize: vertical;
    }

        .aria-field input:focus,
        .aria-field textarea:focus {
            border-color: rgba(105,220,255,.55);
            box-shadow: 0 0 0 3px rgba(105,220,255,.07);
        }

.aria-phone-wrap {
    display: flex;
    gap: 8px;
}

.aria-country {
    flex: 0 0 62px;
    text-align: center;
    color: #69dcff !important;
}

.aria-phone-input {
    flex: 1
}

#aria-submit {
    width: 100%;
    height: 52px;
    margin-top: 24px;
    border: 0;
    border-radius: 9px;
    background: linear-gradient(90deg,#69dcff,#9a5cff);
    color: #061019;
    font-family: "Space Grotesk",sans-serif;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .12em;
    cursor: pointer !important;
}

    #aria-submit:hover {
        filter: brightness(1.07);
        transform: translateY(-1px);
    }

    #aria-submit:disabled {
        opacity: .6;
        cursor: wait !important
    }

.aria-form-note {
    margin-top: 12px;
    color: #697789;
    font-size: 11px;
    line-height: 1.5;
    text-align: center;
}

#aria-form-success {
    display: none;
    padding: 45px 20px 35px;
    text-align: center;
}

    #aria-form-success.show {
        display: block
    }

    #aria-form-success .success-icon {
        width: 58px;
        height: 58px;
        margin: 0 auto 20px;
        display: grid;
        place-items: center;
        border-radius: 50%;
        color: #071019;
        background: #69dcff;
        font-size: 25px;
        box-shadow: 0 0 30px rgba(105,220,255,.25);
    }

    #aria-form-success h3 {
        margin: 0 0 10px;
        color: #f4f6fb;
        font-family: "Space Grotesk",sans-serif;
        font-size: 30px;
    }

    #aria-form-success p {
        margin: 0 auto;
        max-width: 430px;
        color: #9da7b4;
        font-size: 15px;
        line-height: 1.6;
    }

#aria-success-close {
    margin-top: 24px;
    padding: 11px 20px;
    border: 1px solid rgba(105,220,255,.3);
    border-radius: 7px;
    background: transparent;
    color: #69dcff;
    cursor: pointer !important;
}

@media(max-width:650px) {
    #aria-form-overlay {
        padding: 12px
    }

    #aria-lead-modal {
        max-height: calc(100vh - 24px)
    }

    .aria-form-inner {
        padding: 34px 22px 25px
    }

    .aria-form-grid {
        grid-template-columns: 1fr
    }

    .aria-field.full {
        grid-column: auto
    }

    .aria-form-title {
        font-size: 42px
    }

    .aria-form-subtitle {
        font-size: 14px
    }
}

