/* ===== LOADER ===== */
#loader {
    position: fixed;
    inset: 0;
    background: #000;
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.6s ease-out;
}

#loader.fade-out {
    opacity: 0;
    pointer-events: none;
}

.loader-planet-wrap {
    position: relative;
    width: 150px;
    height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.5s ease-in, opacity 0.5s ease-in;
}

.loader-planet-wrap.dissolve {
    transform: scale(0.5);
    opacity: 0;
}

.loader-planet {
    width: 60px;
    height: 60px;
    background: radial-gradient(circle at 30% 30%, var(--accent) 0%, #000 90%);
    border-radius: 50%;
    box-shadow: 0 0 50px rgba(51, 153, 255, 0.5), 0 0 100px rgba(51, 153, 255, 0.2);
    position: relative;
    z-index: 2;
    animation: planet-pulse 2.5s ease-in-out infinite;
}

.loader-planet-orbit {
    position: absolute;
    width: 120px;
    height: 120px;
    border: 1px dashed rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    animation: loader-rotate 2.5s linear infinite;
}

.cursor {
    position: fixed;
    width: 40px;
    height: 40px;
    border: 2px solid rgba(230, 245, 255, 0.8);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10001;
    transition: transform 0.1s ease-out, opacity 0.3s ease;
    background: rgba(230, 245, 255, 0.05);
    opacity: 0;
    /* Hide initially to prevent top-left 'ball' */
}

.cursor-dot {
    position: fixed;
    width: 6px;
    height: 6px;
    background: #fff;
    border-radius: 50%;
    pointer-events: none;
    z-index: 10002;
    transition: opacity 0.3s ease;
    opacity: 0;
    /* Hide initially */
}

.loader-moon {
    position: absolute;
    top: 50%;
    left: -5px;
    width: 10px;
    height: 10px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 12px #fff, 0 0 25px rgba(255, 255, 255, 0.5);
}

@keyframes planet-pulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 50px rgba(51, 153, 255, 0.5);
    }

    50% {
        transform: scale(1.02);
        box-shadow: 0 0 60px rgba(51, 153, 255, 0.6);
    }
}

@keyframes loader-rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

#bg-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

/* Deep Blue Vignette Glow */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background:
        radial-gradient(ellipse at top, rgba(10, 26, 48, 0.4) 0%, transparent 60%),
        radial-gradient(ellipse at bottom, rgba(10, 26, 48, 0.4) 0%, transparent 60%),
        radial-gradient(ellipse at left, rgba(10, 26, 48, 0.5) 0%, transparent 40%),
        radial-gradient(ellipse at right, rgba(10, 26, 48, 0.5) 0%, transparent 40%);
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    background: #000;
    color: #fff;
    overflow-x: hidden;
    line-height: 1.6;
    position: relative;
}

/* ===== NOISE OVERLAY ===== */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("https://res.cloudinary.com/did9bb9mw/image/upload/v1677610051/noise_ovvczv.png");
    opacity: 0.05;
    pointer-events: none;
    z-index: 9999;
}

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

img {
    max-width: 100%;
    display: block;
}

ul,
ol {
    list-style: none;
}

button {
    border: none;
    cursor: pointer;
    font-family: inherit;
}

/* ===== TOKENS ===== */
:root {
    --bg: #000;
    --bg-dark: #04070d;
    --surface: rgba(13, 13, 13, 0.7);
    --border: rgba(255, 255, 255, 0.08);
    --text: #fff;
    --text-muted: rgba(255, 255, 255, 0.6);
    --accent: #3399FF;
    --accent-alt: #0080ff;
    --font-h: 'Outfit', sans-serif;
    --font-b: 'Outfit', sans-serif;
    --max-w: 1200px;
    --off-white: #D5DBE6;
}

/* ===== NAVBAR ===== */
.nav-wrap {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1400;
    background: rgba(4, 7, 13, 0.7);
    /* More opaque background per user request */
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    height: 80px;
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
    padding: 10px;
    margin-left: -10px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    transition: 0.3s;
}

.nav-cta {
    display: flex;
    align-items: center;
}

.nav-links {
    display: none;
    gap: 20px;
}

.nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
    white-space: nowrap;
}

.nav-links a:hover {
    color: #fff;
}

@media (max-width: 768px) {
    .nav {
        padding: 0 15px;
    }

    .nav-links {
        gap: 12px;
    }

    .nav-links a {
        font-size: 13px;
    }

    .btn-git {
        padding: 8px 16px;
        font-size: 13px;
    }
}

@media (min-width: 992px) {
    .nav-links {
        display: flex;
        margin-right: auto;
        padding-left: 0;
        gap: 32px;
    }

    .hamburger {
        display: none !important;
    }
}



.nav-cta {
    justify-self: end;
}

.btn-tpl {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: var(--text);
    color: #000;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid transparent;
}

.btn-tpl:hover {
    background: transparent;
    color: var(--text);
    border-color: var(--border);
    transform: translateY(-1px);
}

/* Get in Touch Button (AumVerse Inspiration) */
.btn-git {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 100px;
    padding: 12px 28px;
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.3px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37), 0 4px 20px rgba(255, 255, 255, 0.05);
}

.btn-git:hover {
    transform: scale(1.05);
    border-color: rgba(51, 153, 255, 0.5);
    background: rgba(51, 153, 255, 0.1);
    box-shadow: 0 0 20px rgba(51, 153, 255, 0.4), 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

.hamburger span:nth-child(2) {
    width: 16px;
    margin-left: auto;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* CONTENT BLUR */
#content-wrapper {
    transition: filter 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    width: 100%;
    position: relative;
    z-index: 1;
}

body.menu-open #content-wrapper {
    filter: blur(15px) brightness(0.6);
    pointer-events: none;
    user-select: none;
}

.mob-menu {
    display: flex;
    /* Always flex but hidden via transform */
    position: fixed;
    top: 0;
    left: 0;
    width: 380px;
    max-width: 85%;
    height: 100vh;
    background: rgba(4, 7, 13, 0.95);
    backdrop-filter: blur(15px);
    padding: 100px 50px;
    z-index: 1300;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
    /* Center links vertically */
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    transform: translateX(-100%);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    overflow-y: auto;
}

body.menu-open .nav-cta {
    opacity: 0;
    pointer-events: none;
    transform: translateX(20px);
}

.nav-cta {
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mob-menu.open {
    transform: translateX(0);
}

.mob-menu a {
    font-family: var(--font-h);
    font-size: 38px;
    font-weight: 500;
    color: #fff;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0;
    transform: translateX(-20px);
    padding: 10px 0;
}

.mob-menu.open a {
    opacity: 1;
    transform: translateX(0);
}

.mob-cta {
    margin-top: 30px;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: 0.5s;
}

.mob-menu.open .mob-cta {
    opacity: 1;
    transform: translateX(0);
}

.mob-cta .btn-git {
    width: fit-content;
    font-size: 22px;
    padding: 18px 40px;
    background: #fff;
    color: #000 !important;
    font-weight: 600;
    border: none;
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.2);
}

.mob-cta .btn-git:hover {
    transform: scale(1.02);
    background: rgba(255, 255, 255, 0.9);
}

/* Stagger effect for menu items */
.mob-menu a:nth-child(1) {
    transition-delay: 0.1s;
}

.mob-menu a:nth-child(2) {
    transition-delay: 0.2s;
}

.mob-menu a:nth-child(3) {
    transition-delay: 0.3s;
}

.mob-menu a:nth-child(4) {
    transition-delay: 0.4s;
}

.mob-menu a:hover {
    color: var(--accent);
    padding-left: 15px;
    letter-spacing: 2px;
}

/* Reset the desktop overrides since we want the drawer everywhere */
@media (min-width: 992px) {
    .mob-menu {
        align-items: flex-start;
        justify-content: flex-start;
    }

    .mob-menu a {
        text-align: left;
        width: auto;
    }
}

.hamburger.active~.nav-cta {
    display: none;
}


/* ===== BUTTONS ===== */
.btn-p {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 36px;
    background: linear-gradient(135deg, #3399FF 0%, #0066DD 100%);
    color: #fff;
    border-radius: 100px;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 102, 221, 0.3);
}

.btn-p:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 102, 221, 0.5);
    background: linear-gradient(135deg, #4da6ff 0%, #0073f0 100%);
}

.btn-p::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
}

.btn-p:hover::after {
    opacity: 1;
}

.btn-s {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 36px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text);
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 18px;
    font-weight: 500;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    white-space: nowrap;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.btn-s:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.arrow-icon {
    width: 16px;
    height: 16px;
}

/* ===== FOUNDER PLANETS ===== */
/* ===== PREMIUM FOUNDER AVATARS ===== */
.founder-avatar-wrap {
    position: relative;
    width: 250px;
    height: 250px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.svc-card.founder-card:hover .founder-avatar-wrap {
    transform: scale(1.05) translateY(-5px);
}

.founder-avatar {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 3;
    background: #05080a;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.6);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.founder-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.svc-card.founder-card:hover img {
    transform: scale(1.08);
}

.svc-card.founder-card:hover .founder-avatar {
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}

/* Designer Touch: Neural Aura Glow */
.founder-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(350px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(0, 157, 255, 0.1), transparent 80%);
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
    z-index: 0;
}

.founder-card:hover::after {
    opacity: 1;
}

.holographic-glint {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 40%, rgba(255, 255, 255, 0.05) 50%, transparent 60%);
    transform: rotate(-45deg);
    animation: glintMove 10s infinite;
    pointer-events: none;
    z-index: 4;
}

@keyframes glintMove {
    0% {
        transform: translate(-10%, -10%) rotate(-45deg);
    }

    100% {
        transform: translate(10%, 10%) rotate(-45deg);
    }
}

.neural-rings {
    position: absolute;
    inset: -30px;
    pointer-events: none;
    z-index: 1;
}

.neural-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1px dashed rgba(255, 255, 255, 0.1);
    animation: neuralRotate 20s linear infinite;
}

.ring-1 {
    transform: rotateX(60deg) rotateY(10deg);
}

.ring-2 {
    transform: rotateX(60deg) rotateY(-10deg);
    animation-direction: reverse;
    animation-duration: 30s;
}

@keyframes neuralRotate {
    0% {
        transform: rotateX(60deg) rotateY(10deg) rotateZ(0);
    }

    100% {
        transform: rotateX(60deg) rotateY(10deg) rotateZ(360deg);
    }
}

@keyframes neuralRotateRev {
    0% {
        transform: rotateX(60deg) rotateY(-10deg) rotateZ(360deg);
    }

    100% {
        transform: rotateX(60deg) rotateY(-10deg) rotateZ(0);
    }
}

.founder-avatar::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.4));
    opacity: 0.6;
}

/* ===== HERO ===== */
.hero {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 95vh;
    padding: 280px 40px 120px;
    overflow: hidden;
    text-align: center;
    background: transparent;
}

html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    background: #000;
}

/* Hide scrollbar but keep functionality */
::-webkit-scrollbar {
    display: none;
}

body {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.hero-mesh {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background:
        radial-gradient(at 0% 0%, hsla(210, 100%, 30%, 0.10) 0px, transparent 50%),
        radial-gradient(at 100% 0%, hsla(240, 100%, 30%, 0.08) 0px, transparent 50%),
        radial-gradient(at 100% 100%, hsla(180, 100%, 30%, 0.08) 0px, transparent 50%),
        radial-gradient(at 0% 100%, hsla(280, 100%, 30%, 0.08) 0px, transparent 50%),
        radial-gradient(at 50% 50%, hsla(220, 100%, 30%, 0.08) 0px, transparent 50%);
    filter: blur(100px);
    animation: meshMove 20s ease-in-out infinite alternate;
}

@keyframes meshMove {
    0% {
        transform: scale(1) translate(0, 0);
    }

    50% {
        transform: scale(1.1) translate(-2%, 2%);
    }

    100% {
        transform: scale(1) translate(1%, -1%);
    }
}

.hero-bg {
    display: none;
}

.hero-c1 {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle at center, #1a8aff 0%, #0066dd 20%, #004bb8 35%, rgba(0, 50, 150, .5) 55%, transparent 72%);
    animation: pulse 8s ease-in-out infinite;
}

.hero-c2 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 450px;
    height: 450px;
    border-radius: 50%;
    background: radial-gradient(circle at center, rgba(140, 200, 255, .9) 0%, #3399ff 15%, #0066dd 35%, rgba(0, 60, 180, .3) 55%, transparent 72%);
    animation: pulse 8s ease-in-out infinite reverse;
}

@keyframes pulse {

    0%,
    100% {
        opacity: .5;
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        opacity: .7;
        transform: translate(-50%, -50%) scale(1.06);
    }
}

.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-logo-box {
    display: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 1200px;
}

.hero h1 {
    font-family: var(--font-h);
    font-weight: 900;
    font-size: clamp(60px, 12vw, 150px);
    line-height: 0.9;
    letter-spacing: -0.05em;
    color: #fff !important;
    margin-bottom: 100px;
    text-transform: uppercase;
}

.hero h1 em {
    font-family: 'Instrument Serif', serif;
    font-style: italic;
    font-weight: 400;
    color: var(--accent) !important;
    display: inline-block;
    transform: skewX(-5deg);
}

.x-anim {
    display: inline-block;
    color: transparent;
    background-image: linear-gradient(135deg, #ffffff 0%, #b3d4ff 40%, #009dff 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    animation: xPulse 4s ease-in-out infinite;
    text-shadow: 0 0 20px rgba(0, 157, 255, 0.2);
}

@keyframes xPulse {
    0% {
        background-position: 0% 50%;
        transform: scale(1);
    }

    50% {
        background-position: 100% 50%;
        transform: scale(1.05);
        text-shadow: 0 0 40px rgba(0, 157, 255, 0.5);
    }

    100% {
        background-position: 0% 50%;
        transform: scale(1);
    }
}

.hero-spacer {
    height: 80px;
}

.hero-cta-grid {
    display: grid;
    grid-template-columns: auto 15px auto;
    gap: 15px 0;
    width: fit-content;
    margin: 0 auto;
    align-items: center;
}

.hero-grid-left {
    display: flex;
    justify-content: flex-end;
    align-items: baseline;
}

.hero-grid-right {
    display: flex;
    justify-content: flex-start;
    align-items: baseline;
}

.hero-cta-grid span {
    font-size: clamp(24px, 5vw, 42px);
    font-weight: 800;
    color: #fff;
}

.hero-roller-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.we-text {
    font-size: clamp(24px, 5vw, 42px);
    font-weight: 800;
    color: #fff;
}

.roller-container {
    height: clamp(30px, 6vw, 55px);
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(to bottom, transparent, black 15%, black 85%, transparent);
    -webkit-mask-image: linear-gradient(to bottom, transparent, black 15%, black 85%, transparent);
}

.roller {
    display: flex;
    flex-direction: column;
    animation: roll 8s cubic-bezier(0.645, 0.045, 0.355, 1) infinite;
    height: 100%;
}

.roll-item {
    height: clamp(30px, 6vw, 55px);
    display: flex;
    align-items: center;
    font-size: clamp(24px, 5vw, 42px);
    font-weight: 800;
    white-space: nowrap;
    color: #3399FF !important;
}

.hero-btns-centered {
    display: flex;
    gap: 20px;
    margin-top: 25px;
    justify-content: center;
    flex-wrap: wrap;
}



@keyframes roll {

    0%,
    20% {
        transform: translateY(0);
    }

    25%,
    45% {
        transform: translateY(-100%);
    }

    50%,
    70% {
        transform: translateY(-200%);
    }

    75%,
    95% {
        transform: translateY(-300%);
    }

    100% {
        transform: translateY(-400%);
    }
}

.hero-btns {
    display: flex;
    gap: 15px;
    padding-top: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

/* ===== DIVIDER ===== */
.divider {
    width: 100%;
    height: 4px;
    background: radial-gradient(50% 50% at 50% 50%, var(--accent) 0%, #028fe8 59%, var(--bg-dark) 100%);
}

.divider-soft {
    width: 100%;
    height: 2px;
    background: radial-gradient(50% 50% at 50% 50%, rgba(216, 231, 242, .07) 0%, var(--bg-dark) 100%);
}

/* ===== SECTION ===== */
.sec {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    padding: 64px 0 !important;
    scroll-margin-top: 100px;
}

.sec-inner {
    width: 100%;
    max-width: var(--max-w);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sec-hdr {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    max-width: 640px;
    text-align: center;
}

.sec-title {
    font-family: var(--font-h);
    font-weight: 500;
    font-size: 35px;
    line-height: 38.5px;
    letter-spacing: -1.4px;
    color: #D5DBE6 !important;
    margin-bottom: 20px;
}


.sec-sub {
    font-size: clamp(14px, 1.1vw, 16px);
    font-weight: 500;
    color: var(--text-muted);
    line-height: 1.55;
    text-align: center;
}

.glow {
    position: absolute;
    bottom: -249px;
    left: 50%;
    transform: translateX(-50%);
    width: 793px;
    height: 499px;
    border-radius: 10px;
    background: radial-gradient(50% 50% at 50% 50%, rgba(213, 219, 230, .7) 0%, transparent 100%);
    opacity: .06;
    pointer-events: none;
    z-index: 1;
}

/* ===== SERVICE CARDS ===== */
.svc-sec {
    padding: 98px 40px;
    gap: 40px;
}

.svc-row {
    display: flex;
    gap: 20px;
    width: 100%;
    max-width: var(--max-w);
}

.svc-card {
    position: relative;
    flex: 1;
    border-radius: 24px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.03);
    display: flex;
    flex-direction: column;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    min-height: 440px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 48px;
    gap: 24px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.svc-card:hover {
    transform: translateY(-8px) scale(1.01);
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.svc-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(400px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(0, 157, 255, 0.04), transparent 100%);
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
    z-index: 1;
}

.svc-card:hover::before {
    opacity: 1;
}

.svc-card.wide {
    flex: 1.8;
}

.svc-card-visual {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    position: relative;
    overflow: visible;
    min-height: 160px;
}

.svc-card-info {
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.svc-card-info h3 {
    font-family: var(--font-h);
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 6px;
}

.svc-card-info p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Task tracker visual */
/* Task tracker visual */
.task-tracker {
    width: 100%;
    max-width: 320px;
    height: clamp(200px, 40vh, 240px);
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 2000px;
    /* Enhanced perspective for depth */
    -webkit-mask-image: linear-gradient(to bottom, transparent, black 15%, black 85%, transparent);
    mask-image: linear-gradient(to bottom, transparent, black 15%, black 85%, transparent);
}

.task-tracker-inner {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
}

/* Removed aggressive before/after overlays as masking is now used */
.task-tracker::before,
.task-tracker::after {
    display: none;
}

.task-item {
    position: absolute;
    width: 90%;
    left: 5%;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    border-radius: 14px;
    background: rgba(255, 255, 255, .02);
    border: 1px solid rgba(255, 255, 255, .03);
    font-size: 13px;
    color: var(--text-muted);
    animation: premiumTaskFlow 15s linear infinite;
    opacity: 0;
    --task-move: 200px;
    --task-peak: 40px;
    transform-style: preserve-3d;
    will-change: transform, opacity, filter;
    box-sizing: border-box;
    transition: border-color 0.3s, box-shadow 0.3s;
}

@keyframes premiumTaskFlow {
    0% {
        transform: translateY(var(--task-move, 240px)) translateZ(-150px) scale(0.85);
        opacity: 0;
        filter: blur(8px);
    }

    20% {
        opacity: 0.1;
    }

    45%,
    55% {
        transform: translateY(var(--task-peak, 40px)) translateZ(50px) scale(1.05);
        opacity: 1;
        filter: blur(0px);
        background: rgba(255, 255, 255, .1);
        border: 1px solid rgba(0, 157, 255, 0.2);
        box-shadow:
            0 15px 35px rgba(0, 0, 0, 0.5),
            inset 0 0 15px rgba(255, 255, 255, 0.05);
        color: #fff;
    }

    80% {
        opacity: 0.1;
    }

    100% {
        transform: translateY(calc(-1 * var(--task-move, 240px))) translateZ(-150px) scale(0.85);
        opacity: 0;
        filter: blur(8px);
    }
}

.task-item:nth-child(1) {
    animation-delay: 0s;
}

.task-item:nth-child(2) {
    animation-delay: -3.75s;
}

.task-item:nth-child(3) {
    animation-delay: -7.5s;
}

.task-item:nth-child(4) {
    animation-delay: -11.25s;
}

/* Ignore other children to keep it clean */
.task-item:nth-child(n+5) {
    display: none;
}

.task-item .task-icon {
    width: 24px;
    height: 24px;
    border-radius: 8px;
    background: rgba(255, 255, 255, .08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.task-item .task-icon svg {
    width: 14px;
    height: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.task-item .task-status {
    margin-left: auto;
    display: flex;
    align-items: center;
}

.task-item .task-status svg {
    width: 16px;
    height: 16px;
}

.task-item.highlighted {
    background: rgba(255, 255, 255, .06);
    border-color: rgba(255, 255, 255, .1);
}

.task-item.highlighted .task-status svg {
    color: #4ade80;
}

.task-item .task-status .refresh {
    color: rgba(255, 255, 255, .3);
}

/* AI Orb with floating icons */
.orb-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 260px;
}

.ai-orb {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.1), transparent);
    border: 1px solid rgba(0, 157, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 0 40px rgba(0, 157, 255, 0.1),
        inset 0 0 20px rgba(0, 157, 255, 0.05);
    animation: orbPulsePremium 3s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

.ai-orb::after {
    content: '';
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    border: 1px solid rgba(0, 157, 255, 0.1);
    animation: orbRipple 3s ease-out infinite;
}

@keyframes orbRipple {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* Custom AI Solutions Dashboard Animations */
@keyframes statusPulse {

    0%,
    100% {
        opacity: 1;
        filter: drop-shadow(0 0 5px var(--accent));
    }

    50% {
        opacity: 0.6;
        filter: drop-shadow(0 0 12px var(--accent));
    }
}

@keyframes latencyCounting {
    0% {
        content: "10ms";
    }

    25% {
        content: "14ms";
    }

    50% {
        content: "12ms";
    }

    75% {
        content: "11ms";
    }

    100% {
        content: "12ms";
    }
}

@keyframes scalabilityPulse {

    0%,
    100% {
        transform: scale(1);
        text-shadow: 0 0 10px rgba(0, 157, 255, 0.2);
    }

    50% {
        transform: scale(1.05);
        text-shadow: 0 0 20px rgba(0, 157, 255, 0.6);
    }
}

.system-status-pulse {
    animation: statusPulse 2s ease-in-out infinite;
}

.latency-val::after {
    content: "12ms";
    animation: latencyCounting 5s infinite;
}

.scalability-val {
    animation: scalabilityPulse 3s ease-in-out infinite;
}

/* Premium Founder Cards */
.founder-card {
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1) !important;
    position: relative;
    overflow: hidden;
}

.founder-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(0, 157, 255, 0.03) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
    animation: founderGlowMove 10s linear infinite;
}

@keyframes founderGlowMove {
    0% {
        transform: translate(-10%, -10%);
    }

    50% {
        transform: translate(10%, 10%);
    }

    100% {
        transform: translate(-10%, -10%);
    }
}

.founder-avatar-wrap {
    filter: drop-shadow(0 0 30px rgba(0, 157, 255, 0.1));
}

.founder-avatar {
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: #05080a;
    /* Plain background match */
}

@keyframes orbPulsePremium {

    0%,
    100% {
        transform: scale(1);
        filter: brightness(1);
    }

    50% {
        transform: scale(1.05);
        filter: brightness(1.3);
    }
}

.float-icon {
    position: absolute;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .08);
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes floatDrift1 {

    0%,
    100% {
        transform: translate(0, 0);
    }

    25% {
        transform: translate(4px, -6px);
    }

    50% {
        transform: translate(-3px, -10px);
    }

    75% {
        transform: translate(5px, -4px);
    }
}

@keyframes floatDrift2 {

    0%,
    100% {
        transform: translate(0, 0);
    }

    25% {
        transform: translate(-5px, 5px);
    }

    50% {
        transform: translate(4px, 8px);
    }

    75% {
        transform: translate(-6px, 3px);
    }
}

@keyframes floatDrift3 {

    0%,
    100% {
        transform: translate(0, 0);
    }

    33% {
        transform: translate(6px, -5px);
    }

    66% {
        transform: translate(-4px, 7px);
    }
}

/* Neural Lines for Workflows */
.neural-lines {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.neural-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, rgba(0, 157, 255, 0.2), transparent);
    height: 1px;
    transform-origin: left center;
}

.nl-1 {
    top: 50%;
    left: 50%;
    width: 120px;
    transform: rotate(45deg);
    animation: dataBeam 3s infinite;
}

.nl-2 {
    top: 50%;
    left: 50%;
    width: 100px;
    transform: rotate(135deg);
    animation: dataBeam 4s infinite 0.5s;
}

.nl-3 {
    top: 50%;
    left: 50%;
    width: 140px;
    transform: rotate(225deg);
    animation: dataBeam 5s infinite 1s;
}

.nl-4 {
    top: 50%;
    left: 50%;
    width: 110px;
    transform: rotate(315deg);
    animation: dataBeam 3.5s infinite 1.5s;
}

@keyframes dataBeam {
    0% {
        transform: scaleX(0) rotate(var(--r));
        opacity: 0;
    }

    50% {
        transform: scaleX(1) rotate(var(--r));
        opacity: 1;
    }

    100% {
        transform: scaleX(0) rotate(var(--r));
        opacity: 0;
    }
}

@keyframes floatDrift4 {

    0%,
    100% {
        transform: translate(0, 0);
    }

    25% {
        transform: translate(-3px, -8px);
    }

    50% {
        transform: translate(5px, -3px);
    }

    75% {
        transform: translate(-2px, 6px);
    }
}

.float-icon svg {
    width: 18px;
    height: 18px;
    color: rgba(255, 255, 255, .5);
}

@keyframes floatY {}

.fi-2 {
    top: 10%;
    left: 35%;
    animation: floatDrift2 6.5s ease-in-out infinite 0.3s;
}

.fi-3 {
    top: 15%;
    right: 15%;
    animation: floatDrift3 5.5s ease-in-out infinite 0.8s;
}

.fi-4 {
    top: 10%;
    right: 5%;
    animation: floatDrift4 7s ease-in-out infinite 0.5s;
}

.fi-5 {
    bottom: 20%;
    left: 10%;
    animation: floatDrift2 6s ease-in-out infinite 1s;
}

.fi-6 {
    bottom: 15%;
    left: 35%;
    animation: floatDrift1 7.5s ease-in-out infinite 0.2s;
}

.fi-7 {
    bottom: 20%;
    right: 10%;
    animation: floatDrift3 5.8s ease-in-out infinite 0.7s;
}

/* Search/Research UI visual */
.search-ui {
    width: 100%;
    max-width: 320px;
    height: 200px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 12px;
    perspective: 1200px;
}

.search-results-container {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    margin-top: 10px;
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 25%, black 75%, transparent 100%);
    mask-image: linear-gradient(to bottom, transparent 0%, black 25%, black 75%, transparent 100%);
}

/* Removed aggressive before/after overlays as masking is now used */
.search-ui::before,
.search-ui::after {
    display: none;
}

.search-bar {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    padding: 4px;
    padding-left: 18px;
    display: flex;
    align-items: center;
    gap: 8px;
    height: 48px;
    box-sizing: border-box;
    margin-bottom: 20px;
}

.search-bar .scrolling-placeholder {
    position: relative;
    height: 100%;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.placeholder-text {
    position: absolute;
    font-family: var(--font-h);
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.4);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    white-space: nowrap;
}

.placeholder-text.active {
    opacity: 1;
    transform: translateY(0);
}

.placeholder-text.active::after {
    content: '|';
    margin-left: 2px;
    color: var(--accent);
    animation: blink 0.8s infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

.placeholder-text.exit {
    opacity: 0;
    transform: translateY(-20px);
}

.search-btn {
    background: #E1E1E1;
    /* Premium off-white from bizwitai.com */
    color: #000;
    padding: 6px 16px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s;
    white-space: nowrap;
}

.search-btn:hover {
    transform: scale(1.03);
}

.search-result {
    position: absolute;
    width: 90%;
    left: 5%;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 12px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .06);
    font-size: 13px;
    color: var(--text-muted);
    animation: modernSearchFlow 12s linear infinite;
    opacity: 0;
    transform-style: preserve-3d;
    will-change: transform, opacity, filter;
    box-sizing: border-box;
}

@keyframes modernSearchFlow {
    0% {
        transform: translateY(200px) translateZ(-80px) scale(1);
        opacity: 0;
        filter: blur(2px);
    }

    20% {
        opacity: 0.4;
        filter: blur(1px);
    }

    45%,
    55% {
        transform: translateY(45px) translateZ(40px) scale(1.08);
        opacity: 1;
        filter: blur(0px);
        background: rgba(255, 255, 255, .08);
        border: 1px solid rgba(0, 157, 255, 0.3);
        box-shadow: 0 15px 45px rgba(0, 0, 0, 0.6);
        color: #fff;
    }

    80% {
        opacity: 0.4;
        filter: blur(1px);
    }

    100% {
        transform: translateY(-130px) translateZ(-80px) scale(1);
        opacity: 0;
        filter: blur(2px);
    }
}

.search-result:nth-child(1) {
    animation-delay: 0s;
}

.search-result:nth-child(2) {
    animation-delay: -4s;
}

.search-result:nth-child(3) {
    animation-delay: -8s;
}

.sr-icon {
    width: 22px;
    height: 22px;
    border-radius: 6px;
    background: rgba(255, 255, 255, .08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sr-icon svg {
    width: 12px;
    height: 12px;
    color: rgba(255, 255, 255, 0.6);
}

.sr-arrow {
    margin-left: auto;
    color: rgba(255, 255, 255, 0.4);
    font-size: 14px;
}

@keyframes searchFloat {

    0%,
    100% {
        transform: translateY(0);
    }

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

.search-result .sr-icon {
    width: 20px;
    height: 20px;
    border-radius: 5px;
    background: rgba(255, 255, 255, .06);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.search-result .sr-icon svg {
    width: 12px;
    height: 12px;
    color: rgba(255, 255, 255, .4);
}

.search-result .sr-arrow {
    margin-left: auto;
    color: rgba(255, 255, 255, .2);
}

/* Code editor visual */
.code-editor {
    width: 100%;
    max-width: 340px;
    border-radius: 10px;
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .08);
    overflow: hidden;
}

.code-titlebar {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 14px;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.code-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.code-dot.r {
    background: #ff5f57;
}

.code-dot.y {
    background: #febc2e;
}

.code-dot.g {
    background: #28c840;
}

.code-titlebar .code-tabs {
    margin-left: auto;
    display: flex;
    gap: 12px;
    font-size: 11px;
    color: rgba(255, 255, 255, .4);
}

.code-body {
    padding: 14px;
    font-family: 'SF Mono', 'Fira Code', monospace;
    font-size: 11px;
    line-height: 1.7;
    animation: codeDrift 6s ease-in-out infinite;
}

@keyframes codeDrift {

    0%,
    100% {
        transform: translateY(0);
    }

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

.code-line {
    display: flex;
    gap: 12px;
    margin-bottom: 2px;
}

.code-num {
    color: rgba(255, 255, 255, .15);
    min-width: 16px;
    text-align: right;
    user-select: none;
    font-size: 10px;
}

.code-text {
    color: rgba(255, 255, 255, .7);
}

.code-text .kw {
    color: #c792ea;
    font-weight: 600;
}

.code-text .fn {
    color: #82aaff;
}

.code-text .self {
    color: #f78c6c;
    font-style: italic;
}

.code-text .str {
    color: #c3e88d;
}

/* Node graph visual */
.node-graph {
    position: relative;
    width: 160px;
    height: 160px;
}

.node-dot {
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .2);
    border: 1px solid rgba(255, 255, 255, .1);
}

@keyframes nodeDrift1 {

    0%,
    100% {
        transform: translate(0, 0);
    }

    25% {
        transform: translate(3px, -4px);
    }

    50% {
        transform: translate(-2px, 5px);
    }

    75% {
        transform: translate(4px, 2px);
    }
}

@keyframes nodeDrift2 {

    0%,
    100% {
        transform: translate(0, 0);
    }

    33% {
        transform: translate(-4px, -3px);
    }

    66% {
        transform: translate(3px, 4px);
    }
}

@keyframes nodeDrift3 {

    0%,
    100% {
        transform: translate(0, 0);
    }

    25% {
        transform: translate(5px, 2px);
    }

    50% {
        transform: translate(-3px, -5px);
    }

    75% {
        transform: translate(2px, 3px);
    }
}

.node-center {
    width: 64px;
    height: 64px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(255, 255, 255, .15), rgba(255, 255, 255, .05));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 0 30px rgba(255, 255, 255, 0.1),
        inset 0 0 15px rgba(255, 255, 255, 0.05);
    z-index: 10;
    animation: centerPulse 4s ease-in-out infinite;
}

@keyframes centerPulse {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        transform: translate(-50%, -50%) scale(1.05);
        opacity: 0.9;
    }
}

.node-center svg {
    width: 32px;
    height: 32px;
    color: rgba(255, 255, 255, .9);
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.3));
}

.nd-1 {
    top: 2%;
    left: 10%;
    animation: nodeDriftPremium1 8s ease-in-out infinite;
}

.nd-2 {
    top: 0%;
    right: 15%;
    animation: nodeDriftPremium2 10s ease-in-out infinite 0.4s;
}

.nd-3 {
    top: 48%;
    left: 0%;
    animation: nodeDriftPremium1 9s ease-in-out infinite 0.8s;
}

.nd-4 {
    top: 48%;
    right: 0%;
    animation: nodeDriftPremium2 11s ease-in-out infinite 1.2s;
}

.nd-5 {
    bottom: 5%;
    left: 5%;
    animation: nodeDriftPremium1 7s ease-in-out infinite 0.6s;
}

.nd-6 {
    bottom: 2%;
    right: 10%;
    animation: nodeDriftPremium2 12s ease-in-out infinite 0.3s;
}

@keyframes nodeDriftPremium1 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.4;
    }

    50% {
        transform: translate(10px, -15px) scale(1.2);
        opacity: 0.8;
        box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
    }
}

@keyframes nodeDriftPremium2 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.4;
    }

    50% {
        transform: translate(-10px, 15px) scale(1.1);
        opacity: 0.7;
        box-shadow: 0 0 12px rgba(255, 255, 255, 0.15);
    }
}

.node-line {
    position: absolute;
    height: 1px;
    background: rgba(255, 255, 255, .06);
    transform-origin: left center;
}

.film-studio-card {
    width: 100%;
    height: 320px;
    background: linear-gradient(135deg, #020b1a 0%, #05162d 100%);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    transition: transform 0.6s cubic-bezier(0.2, 0, 0.2, 1), box-shadow 0.6s ease;
}

.feat-img:hover .film-studio-card,
.feat-img:hover .perf-dash,
.feat-img:hover .voice-ui {
    transform: perspective(1000px) rotateX(2deg) rotateY(-2deg) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 157, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.15);
}

.film-strip-texture {
    position: absolute;
    bottom: 60px;
    left: 0;
    width: 100%;
    height: 2px;
    background: repeating-linear-gradient(90deg, transparent, transparent 10px, rgba(255, 255, 255, 0.05) 10px, rgba(255, 255, 255, 0.05) 12px);
    z-index: 5;
}

.film-studio-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 70% 30%, rgba(0, 157, 255, 0.1), transparent 70%);
    pointer-events: none;
}

/* Pill tag */
.pill-tag {
    display: inline-flex;
    padding: 8px 12px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, .1);
    font-size: 12px;
    color: #fff;
    background: rgba(13, 13, 13, 0.8);
    font-weight: 400;
    margin-bottom: 15px;
}

.btn-feat {
    padding: 8px 12px;
    background: #000;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-feat:hover {
    background: #111;
}

/* Performance dashboard visual */
.perf-dash {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    padding: 20px;
}

.perf-header {
    display: flex;
    gap: 8px;
}

.perf-pill {
    padding: 4px 10px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, .08);
    font-size: 10px;
    color: rgba(255, 255, 255, .5);
    background: rgba(255, 255, 255, .03);
}

.perf-metrics {
    grid-template-columns: 1fr 1fr;
}

.perf-bars {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.perf-bar-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.perf-bar-label {
    font-size: 10px;
    color: rgba(255, 255, 255, .3);
    min-width: 50px;
}

.perf-bar-track {
    flex: 1;
    height: 4px;
    border-radius: 2px;
    background: rgba(255, 255, 255, .04);
}

.perf-bar-fill {
    height: 100%;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--accent), rgba(0, 128, 255, .4));
}

.perf-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid rgba(0, 157, 255, .3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    color: var(--accent);
}

/* Voice interface visual */
.voice-ui {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.voice-orb {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: radial-gradient(circle at 40% 40%, rgba(0, 157, 255, .2), rgba(0, 128, 255, .05));
    border: 1px solid rgba(0, 157, 255, .2);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: voicePulse 3s ease-in-out infinite;
    box-shadow: 0 0 40px rgba(0, 157, 255, .1);
}

@keyframes voicePulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 40px rgba(0, 157, 255, .1);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 0 60px rgba(0, 157, 255, .2);
    }
}

.voice-wave {
    display: flex;
    align-items: center;
    gap: 2px;
    height: 30px;
}

.voice-wave .vbar {
    width: 3px;
    border-radius: 2px;
    background: var(--accent);
    animation: wave 1.5s ease-in-out infinite;
}

@keyframes wave {

    0%,
    100% {
        transform: scaleY(1);
    }

    50% {
        transform: scaleY(2);
    }
}

.voice-bubble {
    padding: 8px 14px;
    border-radius: 12px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .06);
    font-size: 12px;
    color: rgba(255, 255, 255, .5);
}

.siri-orb {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
}

/* Removed orb-aura to eliminate central blue glow completely */
.orb-aura {
    display: none;
}

@keyframes orbAura {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.6;
    }
}

.waveform-visualizer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin-top: 20px;
}

.wave-bar {
    width: 4px;
    background: var(--accent);
    border-radius: 4px;
    box-shadow: 0 0 10px var(--accent);
}

@keyframes wavePulse {

    0%,
    100% {
        height: 8px;
        opacity: 0.4;
    }

    50% {
        height: 32px;
        opacity: 1;
    }
}

@keyframes orbBreath {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.1);
        opacity: 1;
    }
}

/* Custom AI Pulse */
.neural-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(15px);
    animation: neuralPulse 3s ease-in-out infinite;
    z-index: 1;
}

@keyframes neuralPulse {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 0.8;
    }
}

.data-orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 180px;
    height: 180px;
    transform: translate(-50%, -50%);
    border: 1px dashed rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    animation: spin 20s linear infinite;
}

.data-node {
    position: absolute;
    width: 12px;
    height: 12px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 15px var(--accent);
    animation: nodeFloat 4s ease-in-out infinite;
}

@keyframes nodeFloat {

    0%,
    100% {
        transform: scale(1);
        filter: brightness(1);
    }

    50% {
        transform: scale(1.2);
        filter: brightness(1.5);
    }
}

/* Agent Terminal visual */
.agent-terminal {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.t-line {
    opacity: 0;
    transform: translateY(5px);
}

.visible .t-line.l1 {
    animation: termLine 0.1s forwards 0.3s;
}

.visible .t-line.l2 {
    animation: termLine 0.1s forwards 1.2s;
}

.visible .t-line.l3 {
    animation: termLine 0.1s forwards 2.5s;
}

.visible .t-line.l4 {
    animation: termLine 0.1s forwards 4.0s;
}

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

.blink {
    animation: blinker 1s linear infinite;
}

@keyframes blinker {
    50% {
        opacity: 0;
    }
}

/* ===== Filmmaking Studio Card ===== */
.film-studio-card {
    width: 100%;
    height: 100%;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    background: linear-gradient(160deg, #080c18, #0a1628, #0d0f1a);
    border: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
}

/* Cinematic Canvas */
.film-canvas {
    flex: 1;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(ellipse 80% 60% at 30% 40%, rgba(59, 130, 246, 0.08), transparent),
        radial-gradient(ellipse 90% 70% at 50% 50%, rgba(4, 7, 13, 1), transparent),
        #020408;
    min-height: 220px;
}

/* Film grain texture */
.film-grain {
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 128px 128px;
    animation: filmGrainShift 0.8s steps(4) infinite;
    pointer-events: none;
    z-index: 5;
}

@keyframes filmGrainShift {
    0% {
        transform: translate(0, 0);
    }

    25% {
        transform: translate(-2px, 1px);
    }

    50% {
        transform: translate(1px, -1px);
    }

    75% {
        transform: translate(-1px, -2px);
    }

    100% {
        transform: translate(0, 0);
    }
}

/* Light rays */
.film-light-ray {
    position: absolute;
    width: 2px;
    background: linear-gradient(to bottom, transparent, rgba(59, 130, 246, 0.3), transparent);
    pointer-events: none;
    z-index: 1;
}

.film-ray-1 {
    height: 120%;
    left: 25%;
    top: -10%;
    transform: rotate(15deg);
    opacity: 0;
    animation: filmRayPulse 4s ease-in-out infinite;
}

.film-ray-2 {
    height: 100%;
    right: 30%;
    top: -5%;
    transform: rotate(-10deg);
    opacity: 0;
    animation: filmRayPulse 4s ease-in-out 1.5s infinite;
    background: linear-gradient(to bottom, transparent, rgba(139, 92, 246, 0.25), transparent);
}

.film-ray-3 {
    height: 90%;
    left: 55%;
    top: 0;
    transform: rotate(8deg);
    opacity: 0;
    animation: filmRayPulse 4s ease-in-out 3s infinite;
}

@keyframes filmRayPulse {

    0%,
    100% {
        opacity: 0;
    }

    50% {
        opacity: 0.6;
    }
}

/* Floating film icons */
.film-float-icon {
    position: absolute;
    color: rgba(255, 255, 255, 0.15);
    z-index: 2;
    filter: drop-shadow(0 0 8px rgba(59, 130, 246, 0.2));
}

.film-icon-1 {
    top: 18%;
    left: 12%;
    animation: floatIcon1 6s ease-in-out infinite;
}

.film-icon-2 {
    top: 15%;
    right: 15%;
    animation: floatIcon2 7s ease-in-out 1s infinite;
}

.film-icon-3 {
    bottom: 25%;
    left: 18%;
    animation: floatIcon3 5s ease-in-out 0.5s infinite;
}

.film-icon-4 {
    bottom: 20%;
    right: 12%;
    animation: floatIcon4 8s ease-in-out 2s infinite;
}

@keyframes floatIcon1 {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.4;
    }

    50% {
        transform: translate(8px, -12px) rotate(5deg);
        opacity: 0.8;
    }
}

@keyframes floatIcon2 {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.3;
    }

    50% {
        transform: translate(-10px, -8px) rotate(-8deg);
        opacity: 0.7;
    }
}

@keyframes floatIcon3 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.35;
    }

    50% {
        transform: translate(6px, 10px) scale(1.1);
        opacity: 0.75;
    }
}

@keyframes floatIcon4 {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.3;
    }

    50% {
        transform: translate(-5px, -14px) rotate(10deg);
        opacity: 0.65;
    }
}

/* Render status center */
.film-render-status {
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.film-render-ring {
    position: relative;
    width: 80px;
    height: 80px;
}

.film-ring-svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.film-ring-progress {
    animation: ringFill 3s ease-out forwards, ringGlow 2s ease-in-out 3s infinite;
}

@keyframes ringFill {
    0% {
        stroke-dashoffset: 213.6;
    }

    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes ringGlow {

    0%,
    100% {
        filter: drop-shadow(0 0 4px rgba(59, 130, 246, 0.3));
    }

    50% {
        filter: drop-shadow(0 0 12px rgba(59, 130, 246, 0.6));
    }
}

.film-render-percent {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.5px;
    animation: percentReveal 3s ease-out forwards;
}

@keyframes percentReveal {
    0% {
        opacity: 0.3;
    }

    100% {
        opacity: 1;
    }
}

/* Ready badge */
.film-ready-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(59, 130, 246, 0.12);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(59, 130, 246, 0.25);
    border-radius: 30px;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.3px;
    animation: badgeReveal 0.6s ease-out 3s both;
    white-space: nowrap;
}

.film-ready-badge svg {
    color: #34d399;
    flex-shrink: 0;
}

@keyframes badgeReveal {
    0% {
        opacity: 0;
        transform: translateY(8px) scale(0.95);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* ===== Editing Timeline ===== */
.film-timeline {
    position: relative;
    padding: 12px 14px;
    background: rgba(0, 0, 0, 0.5);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.film-timeline-tracks {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.film-track {
    display: flex;
    align-items: center;
    gap: 8px;
}

.film-track-label {
    font-size: 9px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.3);
    width: 18px;
    text-align: right;
    font-family: 'Inter', monospace;
    letter-spacing: 0.5px;
}

.film-track-clips {
    flex: 1;
    display: flex;
    gap: 3px;
    height: 22px;
    align-items: center;
}

/* Video track clips */
.film-clip {
    height: 100%;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

.film-clip-1 {
    width: 35%;
    background: linear-gradient(90deg, #2563eb, #3b82f6);
    animation: clipShimmer 3s ease-in-out infinite;
}

.film-clip-2 {
    width: 25%;
    background: linear-gradient(90deg, #f8fafc, #ffffff);
    animation: clipShimmer 3s ease-in-out 0.5s infinite;
}

.film-clip-3 {
    width: 30%;
    background: linear-gradient(90deg, #2563eb, #60a5fa);
    animation: clipShimmer 3s ease-in-out 1s infinite;
}

@keyframes clipShimmer {

    0%,
    100% {
        opacity: 0.6;
    }

    50% {
        opacity: 1;
    }
}

/* Audio track waveform */
.film-clip-audio {
    flex: 1;
    height: 14px;
    border-radius: 3px;
    background: rgba(52, 211, 153, 0.15);
    position: relative;
    overflow: hidden;
}

.film-clip-audio::after {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(90deg,
            transparent, transparent 2px,
            rgba(52, 211, 153, 0.3) 2px, rgba(52, 211, 153, 0.3) 3px);
    animation: waveformPulse 2s ease-in-out infinite;
}

@keyframes waveformPulse {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }
}

/* Playhead */
.film-playhead {
    position: absolute;
    top: 6px;
    bottom: 6px;
    width: 2px;
    background: #ef4444;
    border-radius: 1px;
    left: 32px;
    z-index: 2;
    box-shadow: 0 0 6px rgba(239, 68, 68, 0.5);
    animation: playheadScrub 6s linear infinite;
}

.film-playhead::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    width: 8px;
    height: 8px;
    background: #ef4444;
    border-radius: 50%;
}

@keyframes playheadScrub {
    0% {
        left: 32px;
    }

    100% {
        left: calc(100% - 14px);
    }
}

/* Testimonial / Quote section */
.quote-sec {
    padding: 100px 40px;
    gap: 40px;
}

.quote-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    max-width: 800px;
    text-align: center;
}

.quote-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, .15);
}

.quote-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.quote-text {
    font-family: var(--font-h);
    font-size: clamp(24px, 3vw, 38px);
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: -.02em;
}

.quote-text em {
    font-family: 'Instrument Serif', serif;
    font-style: italic;
    font-weight: 400;
}

.quote-name {
    font-size: 14px;
    color: var(--text-muted);
}

/* Updated footer */
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    width: 100%;
    max-width: var(--max-w);
    padding: 60px 0 40px;
}

.footer-logo-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo {
    width: 40px;
    height: auto;
    opacity: 0.9;
}

.footer-brand h3 {
    font-family: var(--font-h);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 0;
    /* Reset margin for logo row */
}

.footer-brand p {
    font-size: 13px;
    color: rgba(255, 255, 255, .4);
    line-height: 1.5;
    max-width: 260px;
}

.footer-title {
    position: relative;
    display: inline-block;
    margin-bottom: 24px;
    padding-bottom: 8px;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: #fff;
    opacity: 0.8;
}

.footer-col h4 {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, .7);
    text-transform: uppercase;
    letter-spacing: .05em;
}

.footer-col a {
    display: block;
    font-size: 14px;
    color: rgba(255, 255, 255, .5);
    margin-bottom: 10px;
    transition: color .3s;
}

.footer-col a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding: 20px 0;
    text-align: center;
    font-size: 13px;
    color: rgba(255, 255, 255, .3);
    width: 100%;
    max-width: var(--max-w);
}

/* Blue CTA button */
.btn-blue {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: var(--accent);
    color: #fff;
    border-radius: 100px;
    font-size: 15px;
    font-weight: 600;
    transition: all .3s;
    white-space: nowrap;
}

.btn-blue:hover {
    background: #0090e8;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 157, 255, .3);
}

/* ===== FEATURE BLOCKS ===== */
.feat-blocks {
    display: flex;
    flex-direction: column;
    gap: 92px;
    max-width: 1050px;
    width: 100%;
    padding: 0 40px;
}

.feat-row {
    display: flex;
    align-items: center;
    gap: 80px;
}

.feat-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feat-text h3 {
    font-family: var(--font-h);
    font-weight: 500;
    font-size: clamp(24px, 2.5vw, 35px);
    line-height: 1.1;
    letter-spacing: -.04em;
}

.feat-text p {
    font-size: clamp(14px, 1vw, 16px);
    font-weight: 500;
    color: var(--text-muted);
    line-height: 1.55;
    max-width: 450px;
}

.feat-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 500;
}

.feat-tag svg {
    width: 18px;
    height: 18px;
    color: var(--accent);
    flex-shrink: 0;
}

.feat-img {
    width: 45%;
    aspect-ratio: 1.286;
    border-radius: 18px;
    overflow: hidden;
    background: var(--surface);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .4s;
}

.feat-img:hover {
    transform: translateY(-4px);
}

/* ===== FILMMAKING ===== */
.film-sec {
    padding: 100px 40px;
    border-radius: 40px 40px 0 0;
    gap: 44px;
    z-index: 2;
}

.film-hdr {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    max-width: 744px;
}

.film-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 60px;
    border: 1px solid var(--border);
    background: var(--bg-dark);
}

.film-badge svg {
    width: 17px;
    height: 17px;
    color: #d5dbe6;
}

.film-badge span {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
}

.film-title {
    font-family: var(--font-h);
    font-weight: 550;
    font-size: clamp(28px, 3.5vw, 50px);
    line-height: 1.1;
    letter-spacing: -.04em;
    text-align: center;
}

.film-sub {
    font-size: clamp(14px, 1.1vw, 16px);
    font-weight: 500;
    color: var(--text-muted);
    line-height: 1.55;
    text-align: center;
}

.film-video {
    width: 100%;
    max-width: var(--max-w);
    border-radius: 16px;
    overflow: hidden;
}

.film-video video {
    width: 100%;
    display: block;
    border-radius: 16px;
}

.testi {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
    justify-content: center;
}

.testi-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 0 0 2px #fff;
}

.testi-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testi-text {
    font-size: 13px;
    color: var(--text-muted);
}

.testi-stars {
    color: #FFD700;
}

/* ===== BENEFITS ===== */
.ben-sec {
    padding: 100px 40px;
    gap: 60px;
}

.ben-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 100%;
    max-width: var(--max-w);
}

.ben-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, .03) 0%, rgba(255, 255, 255, .01) 100%);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 36px 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: all .3s ease;
    cursor: pointer;
}

.ben-card:hover {
    border-color: rgba(51, 153, 255, 0.4);
    transform: translateY(-5px) scale(1.02);
    background: linear-gradient(135deg, rgba(255, 255, 255, .06) 0%, rgba(255, 255, 255, .02) 100%);
    box-shadow: 0 10px 30px -10px rgba(51, 153, 255, 0.2);
}

.ben-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(0, 157, 255, .15) 0%, rgba(0, 128, 255, .05) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s ease;
}

.ben-card:hover .ben-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, rgba(0, 157, 255, 0.3) 0%, rgba(0, 128, 255, 0.1) 100%);
}

.ben-icon svg {
    width: 22px;
    height: 22px;
    color: var(--accent);
}

.ben-card h4 {
    font-family: var(--font-h);
    font-weight: 600;
    font-size: 18px;
    line-height: 1.3;
}

.ben-card p {
    font-size: 14px;
    font-weight: 400;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ===== CTA ===== */
.cta-sec {
    padding: 40px 40px 60px;
    gap: 24px;
    z-index: 3;
}

.cta-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    max-width: 613px;
}

.cta-label {
    display: flex;
    align-items: center;
    gap: 16px;
}

.cta-line {
    width: 69px;
    height: 1px;
    opacity: .5;
}

.cta-line-l {
    background: linear-gradient(90deg, #000 0%, #fff 100%);
}

.cta-line-r {
    background: linear-gradient(270deg, #000 0%, #fff 100%);
}

.cta-label span {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
    white-space: nowrap;
}

/* ===== FOOTER ===== */
.footer {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 32px 40px;
}

.footer-in {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    width: 100%;
    max-width: var(--max-w);
    flex-wrap: wrap;
}

.footer-div {
    width: 1px;
    height: 24px;
    background: var(--border);
}

.footer-txt {
    font-size: 14px;
    color: var(--text-muted);
}

.footer-links {
    display: flex;
    gap: 16px;
}

.footer-links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    transition: color .3s;
}

.footer-links a:hover {
    color: #fff;
}

/* ===== TAG BADGE ===== */
.tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 100px;
    border: 1px solid var(--border);
    background: var(--bg-dark);
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
    width: fit-content;
}

.tag svg {
    width: 14px;
    height: 14px;
    color: var(--accent);
}

/* ===== ANIMATIONS ===== */
.rv {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .8s cubic-bezier(.16, 1, .3, 1), transform .8s cubic-bezier(.16, 1, .3, 1);
}

.rv.vis,
.rv.visible,
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.rv-d1 {
    transition-delay: .1s;
}

.rv-d2 {
    transition-delay: .2s;
}

.rv-d3 {
    transition-delay: .3s;
}

.contact-card {
    width: 100%;
    max-width: 900px;
    padding: 60px;
    margin: 0 auto;
    text-align: center;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-hdr {
    margin-bottom: 40px;
}

.contact-hdr .sec-title {
    font-size: clamp(32px, 6vw, 64px) !important;
    line-height: 0.9 !important;
    letter-spacing: -0.03em !important;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    text-align: left;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
}

.form-group label span {
    color: var(--accent);
}

.form-group input {
    padding: 14px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 10px;
    color: #fff;
    outline: none;
    transition: all 0.3s ease;
}

.form-group input:focus {
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 15px rgba(0, 157, 255, 0.1);
}

.form-submit {
    grid-column: span 2;
    margin-top: 10px;
}

.form-submit .btn-p {
    width: 100%;
    justify-content: center;
}

.founder-social-link {
    font-size: 13px;
    color: var(--text-muted);
    text-decoration: none !important;
    padding: 10px 20px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 100px;
}

.founder-social-link:hover {
    color: #fff !important;
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* ===== MOUSE INTERACTION ===== */
#mouse-planet {
    position: fixed;
    width: 20px;
    height: 20px;
    background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
    border: 1px solid rgba(0, 157, 255, 0.5);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
    will-change: transform;
    box-shadow: 0 0 15px var(--accent);
}

/* ===== CUSTOM CURSOR (AumVerse Style) ===== */
.cursor {
    width: 20px;
    height: 20px;
    border: 1.5px solid rgba(230, 245, 255, 0.8);
    background: rgba(230, 245, 255, 0.05);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 10000;
    mix-blend-mode: difference;
    transform: translate(-50%, -50%);
}

.cursor-dot {
    width: 6px;
    height: 6px;
    background: rgb(230, 245, 255);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 10001;
    transform: translate(-50%, -50%);
}

@keyframes bubble-fade {
    0% {
        transform: scale(1) translate(0, 0);
        opacity: 0.8;
    }

    100% {
        transform: scale(0) translate(var(--tx), var(--ty));
        opacity: 0;
    }
}

.email-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 15px;
}

.copy-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--accent);
    padding: 4px;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    width: 24px;
    height: 24px;
    outline: none;
}

.copy-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent);
    transform: scale(1.1);
}

.copy-btn.success {
    color: #22c55e;
    border-color: #22c55e;
    background: rgba(34, 197, 94, 0.1);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .svc-row {
        flex-direction: column;
    }

    .feat-row {
        flex-direction: column !important;
        gap: 40px;
    }

    .feat-img {
        width: 100%;
    }

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

@media (max-width: 768px) {

    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .nav {
        justify-content: space-between;
        padding: 0 60px !important;
        /* Move hamburger and buttons further in from edge */
    }

    .sec {
        padding: 48px 24px !important;
    }

    .sec-hdr {
        padding: 0 20px;
    }

    .sec-title {
        font-size: clamp(26px, 8vw, 32px);
        line-height: 1.1;
        margin-bottom: 12px;
    }

    .sec-sub {
        font-size: 14px;
    }

    .hero {
        padding: 200px 20px 60px;
        min-height: auto;
    }

    .hero h1 {
        font-size: clamp(34px, 10vw, 48px);
        line-height: 1;
        margin-bottom: 80px;
    }

    .hero-roller-wrap {
        margin-top: 40px;
    }

    .roller-box {
        font-size: 20px;
        gap: 8px;
    }

    .hero-btns-centered {
        flex-direction: column;
        width: 90%;
        max-width: 210px;
        /* Narrowed further from 260px */
        gap: 12px;
        margin-top: 30px;
        /* Slightly tighter spacing */
    }

    .hero-btns-centered .btn-p,
    .hero-btns-centered .btn-s {
        width: 100%;
        padding: 12px 24px;
        /* Reduced padding */
        font-size: 15px;
        /* Reduced font size */
    }

    .svc-sec {
        padding: 48px 0 !important;
        width: 100%;
        overflow: hidden;
    }

    .svc-card {
        padding: 32px 24px !important;
        gap: 24px !important;
        min-height: auto !important;
        flex: 1 1 100% !important;
        border-radius: 24px !important;
        border: 1px solid rgba(255, 255, 255, 0.08) !important;
    }

    .svc-card-info h3 {
        font-size: 18px;
    }

    .ben-sec {
        padding: 40px 24px;
    }

    .ben-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .ben-card {
        padding: 24px !important;
    }

    .feat-blocks {
        padding: 0 18px;
        gap: 40px;
    }

    .film-sec {
        padding: 40px 18px;
    }

    .contact-grid {
        display: block !important;
    }

    .contact-grid .form-group {
        margin-bottom: 15px;
    }

    .cta-sec {
        padding: 40px 24px;
    }

    .footer-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 30px;
        padding: 40px 0;
    }

    .footer-brand {
        grid-column: span 2;
        max-width: 100%;
        text-align: center;
        margin-bottom: 30px;
    }

    .footer-logo-row {
        justify-content: center;
    }

    .footer-brand p {
        max-width: 100%;
        margin: 0 auto;
    }

    .footer .sec-inner {
        padding: 0 24px !important;
    }
}

/* ===== MOBILE REFINEMENTS ===== */
@media (max-width: 768px) {
    .sec-inner {
        padding: 0 20px !important;
        /* Forces margins so cards don't touch edges */
    }

    .hero {
        padding: 180px 20px 80px !important;
        min-height: 85vh !important;
    }

    #founders .svc-row {
        gap: 20px !important;
    }

    .svc-sec .sec-inner {
        gap: 24px !important;
    }

    .svc-card {
        padding: 16px 14px !important;
        gap: 10px !important;
        min-height: auto !important;
        width: 100% !important;
        box-sizing: border-box !important;
        border-radius: 16px !important;
    }

    .contact-card {
        padding: 40px 24px !important;
    }

    .contact-card .form-submit {
        margin-top: 24px !important;
    }

    .svc-card-visual {
        transform: scale(0.95);
        width: 100% !important;
        height: auto !important;
        min-height: 160px !important;
        margin-bottom: 4px;
        overflow: visible !important;
    }

    .task-tracker {
        height: auto !important;
        min-height: 200px !important;
        max-width: 260px !important;
    }

    .search-ui {
        height: 250px !important;
        max-width: 260px !important;
    }

    .orb-container {
        min-height: 140px !important;
        margin-bottom: 10px !important;
        width: 100% !important;
    }

    .ai-orb {
        width: 65px !important;
        height: 65px !important;
    }

    .ai-orb svg {
        width: 25px !important;
        height: 25px !important;
    }

    .task-item {
        --task-move: 160px !important;
        --task-peak: 10px !important;
        padding: 10px 14px !important;
        font-size: 12px !important;
    }

    .task-tracker {
        perspective: 1000px !important;
        min-height: 180px !important;
    }

    .svc-card-info h3 {
        font-size: 16px !important;
    }

    .svc-card-info p {
        font-size: 12px !important;
        line-height: 1.4 !important;
    }

    /* Ultra-precise mobile spacing to prevent collisions */
    .float-icon {
        width: 30px !important;
        height: 30px !important;
        border-radius: 8px !important;
    }

    .float-icon svg {
        width: 14px !important;
        height: 14px !important;
    }

    .fi-2 {
        top: 5% !important;
        left: 15% !important;
    }

    .fi-3 {
        top: 10% !important;
        right: 10% !important;
    }

    .fi-4 {
        top: 0% !important;
        right: 0% !important;
    }

    .fi-5 {
        bottom: 10% !important;
        left: 5% !important;
    }

    .fi-6 {
        bottom: 5% !important;
        left: 30% !important;
    }

    .fi-7 {
        bottom: 10% !important;
        right: 5% !important;
    }

    .email-wrap {
        margin-bottom: 8px !important;
    }

    .founder-social-link {
        padding: 6px 12px !important;
        font-size: 12px !important;
    }

    /* ===== MOBILE CROPPING FIXES ===== */

    /* Feature image cards: remove overflow clipping and fixed aspect ratio */
    .feat-img {
        width: 100% !important;
        aspect-ratio: auto !important;
        overflow: visible !important;
        height: auto !important;
        min-height: 0 !important;
    }

    /* Service card visuals: remove aggressive scaling/height limits */
    .svc-card-visual {
        transform: none !important;
        height: auto !important;
        min-height: 160px !important;
        overflow: visible !important;
    }

    /* Film studio card: auto height so content isn't cut */
    .film-studio-card {
        height: auto !important;
        min-height: 280px !important;
    }

    /* Performance dashboard card: auto height */
    .perf-dash {
        height: auto !important;
        min-height: 250px !important;
        overflow: visible !important;
    }

    /* Voice UI card: ensure it's not cropped */
    .voice-ui {
        height: auto !important;
        min-height: 300px !important;
        overflow: visible !important;
    }

    /* Feature blocks row gap tighter on mobile */
    .feat-row {
        gap: 30px !important;
    }

    .feat-blocks {
        padding: 0 10px;
    }

    .perf-dash {
        height: auto !important;
        min-height: 250px !important;
        overflow: visible !important;
        padding: 16px !important;
    }

    .perf-metrics {
        grid-template-columns: 1fr !important;
    }

    /* Film canvas: ensure content fully visible */
    .film-canvas {
        min-height: 200px !important;
    }

    /* Task tracker: give more room */
    .task-tracker {
        height: auto !important;
        min-height: 200px !important;
    }

    /* Search UI: give more room */
    .search-ui {
        height: 250px !important;
        max-width: 260px !important;
        margin-top: 15px !important;
    }

    .search-result {
        animation: modernSearchFlowMobile 12s linear infinite !important;
    }

    .search-result:nth-child(1) {
        animation-delay: 0s !important;
    }

    .search-result:nth-child(2) {
        animation-delay: -4s !important;
    }

    .search-result:nth-child(3) {
        animation-delay: -8s !important;
    }
}

@keyframes modernSearchFlowMobile {
    0% {
        transform: translateY(200px) translateZ(-80px) scale(1);
        opacity: 0;
        filter: blur(2px);
    }

    20% {
        opacity: 0.4;
        filter: blur(1px);
    }

    45%,
    55% {
        transform: translateY(45px) translateZ(40px) scale(1.08);
        opacity: 1;
        filter: blur(0px);
        background: rgba(255, 255, 255, .08);
        border: 1px solid rgba(0, 157, 255, 0.3);
        box-shadow: 0 15px 45px rgba(0, 0, 0, 0.6);
        color: #fff;
    }

    80% {
        opacity: 0.4;
        filter: blur(1px);
    }

    100% {
        transform: translateY(-120px) translateZ(-80px) scale(1);
        opacity: 0;
        filter: blur(2px);
    }
}

/* FAQ SECTION */
#faq {
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

.faq-glow-l,
.faq-glow-r {
    position: absolute;
    top: 50%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 114, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
    z-index: 0;
    pointer-events: none;
}

.faq-glow-l {
    left: -200px;
    transform: translateY(-50%);
}

.faq-glow-r {
    right: -200px;
    transform: translateY(-50%);
}

.faq-list {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.15);
}

.faq-q {
    padding: 24px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    user-select: none;
}

.faq-plus {
    font-size: 24px;
    font-weight: 300;
    transition: transform 0.3s ease;
    color: var(--accent);
}

.faq-item.active .faq-plus {
    transform: rotate(45deg);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    padding: 0 30px;
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-a {
    max-height: 200px;
    /* Adjust as needed */
    padding-bottom: 24px;
}

@media (max-width: 768px) {
    #faq {
        padding: 60px 20px;
    }

    .faq-q {
        padding: 18px 20px;
        font-size: 16px;
    }

    .faq-a {
        padding: 0 20px;
        font-size: 14px;
    }

    .faq-item.active .faq-a {
        padding-bottom: 18px;
    }
}