/* === RESET & BASE === */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --bg: #030306;
    --bg2: #07070e;
    --bg3: #0c0c18;
    --surface: #111125;
    --border: #1a1a35;
    --text: #eeeef5;
    --text-mid: #8888a8;
    --text-dim: #44446a;
    --accent: #00b4d8;
    --accent2: #00e5ff;
    --accent3: #90e0ef;
    --green: #00e676;
    --radius: 16px;
    --radius-lg: 24px;
    --glass: rgba(10, 10, 26, 0.6);
    --glass-border: rgba(0, 180, 216, 0.08);
    --glow: rgba(0, 180, 216, 0.35);
    --glow-strong: rgba(0, 229, 255, 0.5);
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    cursor: none;
}

/* === CUSTOM CURSOR === */
.cursor-dot {
    width: 6px;
    height: 6px;
    background: var(--accent2);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    box-shadow: 0 0 10px var(--accent);
    transform: translate(-50%, -50%);
}

.cursor-ring {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(0,180,216,0.3);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    transition: all 0.18s ease-out;
    transform: translate(-50%, -50%);
}

.cursor-ring.hover {
    width: 64px;
    height: 64px;
    border-color: var(--accent);
    background: rgba(0,180,216,0.04);
}

/* === PAGE LOADER === */
.page-loader {
    position: fixed;
    inset: 0;
    background: var(--bg);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease 0.2s, visibility 0.5s ease 0.2s;
}

.page-loader.loaded {
    opacity: 0;
    visibility: hidden;
}

.loader-logo-wrapper {
    position: relative;
    overflow: visible;
}

.loader-logo {
    font-family: 'Chakra Petch', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    color: var(--text);
    letter-spacing: 2px;
    white-space: nowrap;
    transform: translateX(-120vw);
    position: relative;
}

.loader-logo-wrapper.animate .loader-logo {
    animation: carDrift 1.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.loader-logo span {
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Beam trail behind logo during drift */
.loader-logo::before {
    content: '';
    position: absolute;
    right: 100%;
    top: 50%;
    width: 300px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent));
    transform: translateY(-50%);
    opacity: 0;
}

.loader-logo-wrapper.animate .loader-logo::before {
    animation: beamTrail 1.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes carDrift {
    0% { transform: translateX(-120vw); }
    55% { transform: translateX(30px); }
    75% { transform: translateX(-8px); }
    90% { transform: translateX(3px); }
    100% { transform: translateX(0); }
}

@keyframes beamTrail {
    0% { opacity: 0.8; width: 300px; }
    40% { opacity: 0.6; width: 200px; }
    100% { opacity: 0; width: 0; }
}

/* Underline that draws after logo lands */
.loader-line {
    height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--accent2));
    width: 0;
    margin-top: 8px;
    box-shadow: 0 0 20px var(--accent);
}

.loader-logo-wrapper.animate .loader-line {
    animation: lineGrow 0.4s ease-out 1.0s forwards;
}

@keyframes lineGrow {
    to { width: 100%; }
}

.loader-enter {
    font-family: 'Inter', sans-serif;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-mid);
    text-align: center;
    margin-top: 32px;
    opacity: 0;
    cursor: pointer;
    transition: opacity 0.6s ease, color 0.3s;
}

.loader-enter.visible {
    opacity: 1;
    animation: enterPulse 2s ease-in-out infinite;
}

.loader-enter:hover {
    color: var(--accent2);
}

@keyframes enterPulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.page-loader {
    cursor: pointer;
}

/* === NOISE OVERLAY === */
.noise-overlay {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 2;
    opacity: 0.02;
    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.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px;
}

/* === DECORATIVE SVGs === */
.deco-svg {
    position: fixed;
    pointer-events: none;
    z-index: 0;
    opacity: 0.4;
    will-change: transform;
}

.deco-svg-1 {
    width: 400px;
    height: 400px;
    top: 10%;
    right: -80px;
    animation: decoRotate 120s linear infinite;
}

.deco-svg-2 {
    width: 300px;
    height: 300px;
    top: 55%;
    left: -60px;
    animation: decoRotate 100s linear infinite reverse;
}

.deco-svg-3 {
    width: 500px;
    height: 500px;
    bottom: -100px;
    right: 20%;
    animation: decoRotate 150s linear infinite;
}

@keyframes decoRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* === FLOATING ORBS === */
.orb {
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    will-change: transform;
}

.orb-1 {
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(0,180,216,0.05) 0%, transparent 60%);
    top: -15%; left: -8%;
}
.orb-2 {
    width: 450px; height: 450px;
    background: radial-gradient(circle, rgba(0,229,255,0.04) 0%, transparent 60%);
    top: 45%; right: -12%;
}
.orb-3 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(144,224,239,0.03) 0%, transparent 60%);
    bottom: 5%; left: 15%;
}

/* Orb movement handled by JS parallax for better perf */

/* === LAYOUT === */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
    position: relative;
    z-index: 3;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 48px;
    position: relative;
    z-index: 3;
}

/* === SECTION DIVIDERS === */
.section-divider {
    position: relative;
    z-index: 3;
    height: 60px;
    margin-top: -1px;
}

.section-divider svg {
    width: 100%;
    height: 100%;
    display: block;
}

/* === TYPOGRAPHY === */
h1, h2, h3 {
    font-family: 'Chakra Petch', sans-serif;
    line-height: 1.05;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

h2 {
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    margin-bottom: 20px;
}

h3 {
    letter-spacing: 0.5px;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--accent);
    margin-bottom: 20px;
    font-family: 'Inter', sans-serif;
}

.section-label::before {
    content: '';
    width: 32px;
    height: 1px;
    background: var(--accent);
}

.section-sub {
    color: var(--text-mid);
    max-width: 520px;
    font-size: 1.05rem;
    line-height: 1.75;
}

.gradient-text {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent2) 50%, var(--accent3) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Text clip reveal */
.text-reveal {
    overflow: hidden;
    display: inline-block;
}

.text-reveal-inner {
    display: inline-block;
    transform: translateY(110%);
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.text-reveal.visible .text-reveal-inner {
    transform: translateY(0);
}

/* === MARQUEE === */
.marquee-section {
    padding: 18px 0;
    overflow: hidden;
    border-top: 1px solid rgba(0,180,216,0.06);
    border-bottom: 1px solid rgba(0,180,216,0.06);
    background: rgba(0,180,216,0.015);
    position: relative;
    z-index: 3;
}

.marquee-section-alt {
    background: linear-gradient(90deg, rgba(0,180,216,0.02), rgba(0,229,255,0.03), rgba(0,180,216,0.02));
}

.marquee-track {
    display: flex;
    gap: 48px;
    animation: marquee 30s linear infinite;
    width: max-content;
    will-change: transform;
}

.marquee-track span {
    font-family: 'Inter', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--text-dim);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 12px;
}

.marquee-track span::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 6px var(--accent);
    flex-shrink: 0;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* === BUTTONS === */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    border-radius: 100px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.3px;
    text-decoration: none;
    border: none;
    cursor: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 40%, rgba(255,255,255,0.08));
    opacity: 0;
    transition: opacity 0.3s;
}
.btn:hover::after { opacity: 1; }

.btn-primary {
    background: linear-gradient(135deg, var(--accent), #0096c7);
    color: #fff;
    box-shadow: 0 4px 30px var(--glow);
}
.btn-primary:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 12px 50px var(--glow-strong);
}

.btn-ghost {
    background: transparent;
    color: var(--text);
    border: 1px solid rgba(255,255,255,0.12);
}
.btn-ghost:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,180,216,0.1);
}

.btn-small { padding: 10px 24px; font-size: 0.82rem; font-weight: 700; }
.btn-large { padding: 20px 44px; font-size: 1rem; width: 100%; }
.btn-full { width: 100%; text-align: center; }

/* === PARTICLE CANVAS === */
#particles-canvas {
    position: fixed;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

/* === NAV === */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 20px 0;
    transition: all 0.5s;
}
.nav.scrolled {
    background: rgba(3,3,6,0.8);
    backdrop-filter: blur(24px) saturate(1.5);
    border-bottom: 1px solid var(--glass-border);
    padding: 14px 0;
}

.nav-inner { display: flex; align-items: center; justify-content: space-between; }

.logo {
    font-family: 'Chakra Petch', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    text-decoration: none;
    color: var(--text);
    letter-spacing: 1px;
    cursor: none;
}
.logo span {
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links { display: flex; align-items: center; gap: 40px; }
.nav-links a {
    text-decoration: none;
    color: var(--text-mid);
    font-size: 0.85rem;
    font-weight: 500;
    transition: color 0.3s;
    cursor: none;
}
.nav-links a:hover { color: var(--text); }
.nav-links a.btn-small { font-weight: 700 !important; color: #fff !important; }

.mobile-toggle { display: none; background: none; border: none; cursor: none; flex-direction: column; gap: 5px; }
.mobile-toggle span { display: block; width: 22px; height: 1.5px; background: var(--text); transition: 0.3s; }

/* === HERO === */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 140px 0 0;
    position: relative;
    z-index: 3;
    overflow: hidden;
}

.hero-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 48px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 60px;
    flex: 1;
    min-height: 0;
}

.hero-col-left {
    position: relative;
    z-index: 2;
}

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent);
    margin-bottom: 28px;
    opacity: 0;
    animation: fadeIn 0.6s ease 1.5s forwards;
}

.hero-label .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    position: relative;
}
.hero-label .dot::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    border: 1px solid var(--accent);
    animation: pingDot 2s ease-out infinite;
}

@keyframes pingDot {
    0% { transform: scale(1); opacity: 0.7; }
    100% { transform: scale(3); opacity: 0; }
}

.hero h1 {
    font-size: clamp(3.2rem, 6.5vw, 5.8rem);
    letter-spacing: 2px;
    margin-bottom: 28px;
    line-height: 1;
}

.hero h1 .line {
    display: block;
    overflow: hidden;
}

.hero h1 .line-inner {
    display: block;
    transform: translateY(120%);
    animation: slideUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero h1 .line:nth-child(1) .line-inner { animation-delay: 1.5s; }
.hero h1 .line:nth-child(2) .line-inner { animation-delay: 1.65s; }
.hero h1 .line:nth-child(3) .line-inner { animation-delay: 1.8s; }

@keyframes slideUp {
    to { transform: translateY(0); }
}

.hero h1 .accent-line {
    background: linear-gradient(135deg, var(--accent), var(--accent2), var(--accent3));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: slideUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 1.8s forwards, gradShift 5s ease-in-out infinite 2.5s;
}

@keyframes gradShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-sub {
    font-size: 1.12rem;
    color: var(--text-mid);
    max-width: 520px;
    line-height: 1.8;
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeIn 0.8s ease 2s forwards;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeIn 0.8s ease 2.2s forwards;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

/* Hero right — Mock Dashboard */
.hero-col-right {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    animation: fadeIn 1s ease 2s forwards;
}

.hero-mock {
    position: relative;
    width: 100%;
    max-width: 560px;
    margin-left: auto;
    margin-right: -100px;
}

.mock-glow {
    position: absolute;
    inset: -40px;
    background: radial-gradient(circle, rgba(0,180,216,0.12) 0%, transparent 70%);
    z-index: 0;
    border-radius: 50%;
}

.mock-window {
    position: relative;
    z-index: 1;
    border-radius: 16px;
    border: 1px solid rgba(0,180,216,0.15);
    background: rgba(8,8,20,0.95);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 40px rgba(0,180,216,0.06);
}

.mock-titlebar {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(0,180,216,0.04);
    border-bottom: 1px solid rgba(0,180,216,0.08);
}

.mock-dots {
    display: flex;
    gap: 6px;
}

.mock-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.mock-dots span:nth-child(1) { background: #ff5f57; }
.mock-dots span:nth-child(2) { background: #ffbd2e; }
.mock-dots span:nth-child(3) { background: #28c840; }

.mock-title {
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--text-dim);
    letter-spacing: 0.5px;
}

.mock-body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Stats row */
.mock-stats-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 8px;
}

.mock-stat-card {
    background: rgba(0,180,216,0.04);
    border: 1px solid rgba(0,180,216,0.08);
    border-radius: 10px;
    padding: 12px 10px;
    text-align: center;
}

.mock-stat-value {
    font-family: 'Chakra Petch', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--accent2);
}

.mock-stat-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.58rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 4px;
}

/* Chat section */
.mock-chat {
    border: 1px solid rgba(0,180,216,0.08);
    border-radius: 10px;
    overflow: hidden;
}

.mock-chat-header {
    font-family: 'Inter', sans-serif;
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--text-dim);
    padding: 8px 12px;
    background: rgba(0,180,216,0.04);
    border-bottom: 1px solid rgba(0,180,216,0.06);
    display: flex;
    align-items: center;
    gap: 8px;
}

.mock-live-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #28c840;
    box-shadow: 0 0 6px #28c840;
    animation: livePulse 2s ease-in-out infinite;
}

@keyframes livePulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.mock-messages {
    padding: 10px 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-height: 110px;
    max-height: 110px;
    overflow: hidden;
}

.mock-msg {
    font-family: 'Inter', sans-serif;
    font-size: 0.68rem;
    line-height: 1.5;
    padding: 6px 10px;
    border-radius: 8px;
    max-width: 85%;
    opacity: 0;
    animation: msgFadeIn 0.3s ease forwards;
}

.mock-msg-user {
    background: rgba(255,255,255,0.06);
    color: var(--text-mid);
    align-self: flex-end;
    border-bottom-right-radius: 2px;
}

.mock-msg-ai {
    background: rgba(0,180,216,0.1);
    color: var(--accent3);
    align-self: flex-start;
    border-bottom-left-radius: 2px;
    border-left: 2px solid var(--accent);
}

@keyframes msgFadeIn {
    from { opacity: 0; transform: translateY(6px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Activity feed */
.mock-activity {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.mock-activity-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 7px 0;
    border-bottom: 1px solid rgba(255,255,255,0.03);
    font-family: 'Inter', sans-serif;
    font-size: 0.65rem;
}

.mock-activity-item:last-child { border-bottom: none; }

.mock-activity-icon {
    color: var(--green);
    font-size: 0.6rem;
    font-weight: 700;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,230,118,0.08);
    border-radius: 50%;
    flex-shrink: 0;
}

.mock-activity-text {
    color: var(--text-mid);
    flex: 1;
}

.mock-activity-time {
    color: var(--text-dim);
    font-size: 0.58rem;
    white-space: nowrap;
}

/* Stats bar at bottom of hero */
.hero-stats-bar {
    width: 100%;
    border-top: 1px solid rgba(0,180,216,0.08);
    background: rgba(3,3,8,0.85);
    margin-top: 60px;
    opacity: 0;
    animation: fadeIn 0.8s ease 2.4s forwards;
    position: relative;
    z-index: 3;
}

.hero-stats-strip {
    display: flex;
    gap: 0;
    justify-content: center;
    align-items: center;
    padding: 32px 0;
}

.stat { display: flex; align-items: baseline; gap: 12px; padding: 0 48px; }
.stat-num {
    font-family: 'Chakra Petch', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--text);
}
.stat-label {
    font-size: 0.75rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-family: 'Inter', sans-serif;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, rgba(0,180,216,0.2), transparent);
}

/* Big decorative number on right side */
.hero-deco {
    position: absolute;
    right: -40px;
    top: 50%;
    transform: translateY(-50%);
    font-family: 'Chakra Petch', sans-serif;
    font-size: 28rem;
    font-weight: 700;
    color: rgba(0,180,216,0.02);
    letter-spacing: 10px;
    line-height: 0.8;
    pointer-events: none;
    user-select: none;
    z-index: -1;
}

/* === SCROLL REVEAL === */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }
.reveal-d4 { transition-delay: 0.32s; }

/* === SECTION HEADER (left-aligned, editorial) === */
.section-header {
    margin-bottom: 64px;
}

.section-header.center {
    text-align: center;
}
.section-header.center .section-sub {
    margin: 0 auto;
}

/* Big background text */
.section-bg-text {
    font-family: 'Chakra Petch', sans-serif;
    font-size: clamp(5rem, 12vw, 10rem);
    font-weight: 700;
    color: rgba(0,180,216,0.025);
    position: absolute;
    top: -20px;
    left: -10px;
    letter-spacing: 4px;
    pointer-events: none;
    user-select: none;
    line-height: 1;
    white-space: nowrap;
}

/* === PROBLEM — ASYMMETRIC LAYOUT === */
.problem { padding: 160px 0 100px; position: relative; z-index: 3; }

.problem-layout {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 80px;
    align-items: start;
}

.problem-header {
    position: sticky;
    top: 140px;
}

.problem-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

.bento-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.bento-card {
    background: rgba(10, 10, 28, 0.85);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 40px 36px;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    cursor: none;
}

.bento-card .card-spotlight {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s;
}
.bento-card:hover .card-spotlight { opacity: 1; }

.bento-card:hover {
    border-color: rgba(0,180,216,0.2);
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0,180,216,0.06);
}

/* Card accent line at bottom */
.card-accent-line {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: 0;
    transition: opacity 0.4s;
}

.bento-card:hover .card-accent-line {
    opacity: 1;
}

.bento-card.bento-tall { grid-row: span 2; }
.bento-card.bento-wide { grid-column: span 2; }

.bento-card .card-num {
    font-family: 'Chakra Petch', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    color: rgba(0,180,216,0.06);
    position: absolute;
    top: 16px;
    right: 24px;
    line-height: 1;
}

.bento-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.bento-card p {
    color: var(--text-mid);
    font-size: 0.92rem;
    line-height: 1.7;
}

.bento-card .card-icon {
    font-size: 1.8rem;
    margin-bottom: 20px;
    display: block;
}

/* === SERVICES — SPLIT LAYOUT === */
.services {
    padding: 160px 0;
    background: var(--bg2);
    position: relative;
    z-index: 3;
}

/* Diagonal gradient overlay for services section */
.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,180,216,0.02) 0%, transparent 50%, rgba(0,229,255,0.01) 100%);
    pointer-events: none;
}

.services-layout {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 80px;
    align-items: start;
}

.services-header {
    position: sticky;
    top: 140px;
}

.services-header h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.service-card {
    background: rgba(10, 10, 28, 0.85);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 48px 44px;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    cursor: none;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 280px;
}

/* Offset every other card for staggered look */
.service-card-offset {
    transform: translateY(40px);
}

.service-card .card-spotlight {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s;
}
.service-card:hover .card-spotlight { opacity: 1; }

.service-card:hover {
    border-color: rgba(0,180,216,0.2);
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0,180,216,0.06);
}

.service-card-offset:hover {
    transform: translateY(34px);
}

.service-card.featured {
    border-color: rgba(0,180,216,0.15);
    background: linear-gradient(165deg, var(--glass) 0%, rgba(0,180,216,0.03) 100%);
}

.service-badge {
    position: absolute;
    top: 20px;
    right: 24px;
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    color: #000;
    padding: 5px 14px;
    border-radius: 100px;
    font-family: 'Inter', sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    z-index: 2;
}

.service-card .card-num {
    font-family: 'Chakra Petch', sans-serif;
    font-size: 6rem;
    font-weight: 700;
    color: rgba(0,180,216,0.04);
    position: absolute;
    bottom: -10px;
    right: 20px;
    line-height: 1;
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 14px;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 1;
}

.service-card p {
    color: var(--text-mid);
    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: 28px;
    position: relative;
    z-index: 1;
}

.service-price {
    font-family: 'Inter', sans-serif;
    color: var(--accent);
    font-weight: 600;
    font-size: 0.92rem;
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.service-price::before {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--accent);
}

/* === PRICING === */
.pricing { padding: 160px 0; position: relative; z-index: 3; }

/* Subtle radial gradient behind pricing */
.pricing::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0,180,216,0.03) 0%, transparent 70%);
    pointer-events: none;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 48px;
    align-items: start;
}

.pricing-card {
    background: rgba(10, 10, 28, 0.85);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 44px 28px;
    display: flex;
    flex-direction: column;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    cursor: none;
}
.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0,180,216,0.08);
    border-color: rgba(0,180,216,0.2);
}

.pricing-card.featured {
    border-color: rgba(0,180,216,0.2);
    background: linear-gradient(165deg, var(--glass) 0%, rgba(0,180,216,0.04) 100%);
    transform: scale(1.04);
    box-shadow: 0 8px 50px var(--glow);
}
.pricing-card.featured:hover { transform: scale(1.04) translateY(-8px); }

.pricing-card.custom { border-style: dashed; }

.pricing-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    color: #000;
    padding: 4px 14px;
    border-radius: 100px;
    font-family: 'Inter', sans-serif;
    font-size: 0.62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.pricing-tier {
    font-family: 'Inter', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent);
    margin-bottom: 16px;
}

.pricing-amount {
    font-family: 'Chakra Petch', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1;
    margin-bottom: 4px;
    letter-spacing: 1px;
}

.pricing-period {
    font-size: 0.82rem;
    color: var(--text-dim);
    margin-bottom: 20px;
}

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
    margin-bottom: 8px;
}

.toggle-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: var(--text-dim);
    cursor: none;
    font-weight: 600;
    transition: color 0.3s;
}
.toggle-label.active { color: var(--accent); }
.toggle-label:hover { color: var(--text); }
.toggle-divider { color: var(--border); }

.pricing-monthly {
    font-size: 0.88rem;
    color: var(--text-mid);
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}
.pricing-monthly strong { color: var(--green); font-size: 0.95rem; }

.pricing-desc {
    font-size: 0.88rem;
    color: var(--text-mid);
    margin-bottom: 28px;
    line-height: 1.6;
}

.pricing-features {
    list-style: none;
    margin-bottom: 32px;
    flex-grow: 1;
}

.pricing-features li {
    padding: 8px 0;
    font-size: 0.85rem;
    color: var(--text-mid);
    border-bottom: 1px solid rgba(255,255,255,0.03);
    padding-left: 22px;
    position: relative;
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-features li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
    font-size: 0.8rem;
}

.pricing-note {
    text-align: center;
    color: var(--text-dim);
    font-size: 0.82rem;
    margin-top: 40px;
}

@media (max-width: 1024px) {
    .pricing-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-card.featured { transform: scale(1.02); }
    .pricing-card.featured:hover { transform: scale(1.02) translateY(-8px); }
}

@media (max-width: 640px) {
    .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
    .pricing-card.featured { transform: none; }
    .pricing-card.featured:hover { transform: translateY(-8px); }
}

/* === RESULTS — OFFSET LAYOUT === */
.results {
    padding: 160px 0;
    position: relative;
    z-index: 3;
    background: var(--bg2);
}

.results::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0,180,216,0.15), transparent);
}

.results-layout {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 80px;
    align-items: start;
}

.results-header {
    position: sticky;
    top: 140px;
}

.results-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

.results-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.result-card {
    background: rgba(10, 10, 28, 0.85);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 44px 36px;
    transition: all 0.5s;
    position: relative;
    cursor: none;
}

.result-card::before {
    content: '\201C';
    position: absolute;
    top: 24px;
    left: 32px;
    font-family: 'Chakra Petch', sans-serif;
    font-size: 5rem;
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.08;
    line-height: 1;
}

.result-card-featured {
    border-color: rgba(0,180,216,0.15);
    background: linear-gradient(165deg, var(--glass) 0%, rgba(0,180,216,0.03) 100%);
    transform: translateX(40px);
}

.result-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0,180,216,0.06);
    border-color: rgba(0,180,216,0.2);
}

.result-card-featured:hover {
    transform: translateX(40px) translateY(-8px);
}

.result-quote {
    font-size: 0.98rem;
    color: var(--text);
    line-height: 1.75;
    margin-bottom: 32px;
    font-style: italic;
}

.result-author { display: flex; align-items: center; gap: 14px; }

.result-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
}

.result-author strong {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
}
.result-author span { color: var(--text-dim); font-size: 0.78rem; }

/* === DEMO — SPLIT LAYOUT === */
.demos {
    padding: 160px 0;
    position: relative;
    z-index: 3;
}

.demo-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.demo-text {
    position: relative;
}

.demo-text h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
}

.demo-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 32px;
}

.demo-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-mid);
    font-size: 0.9rem;
}

.demo-feature-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 10px var(--accent);
    flex-shrink: 0;
}

.demo-window {
    border-radius: var(--radius-lg);
    border: 1px solid var(--glass-border);
    overflow: hidden;
    background: var(--bg);
    box-shadow: 0 30px 100px rgba(0,0,0,0.5), 0 0 0 1px rgba(0,180,216,0.05);
}

.demo-header {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 20px;
    background: var(--bg3);
    border-bottom: 1px solid rgba(255,255,255,0.04);
    font-size: 0.78rem;
    color: var(--text-dim);
}

.demo-dots { display: flex; gap: 7px; }
.demo-dots span { width: 11px; height: 11px; border-radius: 50%; }
.demo-dots span:nth-child(1) { background: #ff5f57; }
.demo-dots span:nth-child(2) { background: #febc2e; }
.demo-dots span:nth-child(3) { background: #28c840; }

.chat-container {
    height: 380px;
    overflow-y: auto;
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.chat-message { display: flex; }
.chat-message.bot { justify-content: flex-start; }
.chat-message.user { justify-content: flex-end; }

.chat-bubble {
    max-width: 80%;
    padding: 14px 18px;
    border-radius: 18px;
    font-size: 0.88rem;
    line-height: 1.6;
    animation: msgIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes msgIn {
    from { opacity: 0; transform: translateY(12px) scale(0.92); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.chat-message.bot .chat-bubble {
    background: var(--surface);
    color: var(--text);
    border-bottom-left-radius: 4px;
}
.chat-message.user .chat-bubble {
    background: linear-gradient(135deg, var(--accent), #0096c7);
    color: #fff;
    border-bottom-right-radius: 4px;
}

.chat-bubble.typing::after {
    content: '';
    display: inline-block;
    width: 3px;
    height: 14px;
    background: var(--accent);
    margin-left: 4px;
    animation: blink 0.7s infinite;
    vertical-align: middle;
    border-radius: 2px;
}

@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }

.chat-input-area {
    display: flex;
    gap: 10px;
    padding: 16px 20px;
    border-top: 1px solid rgba(255,255,255,0.04);
    background: var(--bg3);
}

.chat-input-area input {
    flex: 1;
    padding: 14px 18px;
    border-radius: 100px;
    border: 1px solid rgba(255,255,255,0.06);
    background: var(--bg);
    color: var(--text);
    font-size: 0.88rem;
    font-family: inherit;
    outline: none;
    transition: all 0.3s;
    cursor: none;
}
.chat-input-area input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 20px rgba(0,180,216,0.08);
}
.chat-input-area .btn { padding: 14px 24px; }

/* === PROCESS — STAGGERED === */
.process {
    padding: 160px 0;
    position: relative;
    z-index: 3;
}

.process::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0,180,216,0.1), transparent);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.process-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 44px 36px;
    text-align: center;
    cursor: none;
    transition: all 0.5s;
    position: relative;
    overflow: hidden;
}

.process-card-lifted {
    transform: translateY(-20px);
}

.process-card:hover {
    border-color: rgba(0,180,216,0.2);
    transform: translateY(-6px);
}

.process-card-lifted:hover {
    transform: translateY(-26px);
}

/* Connector line between process cards */
.process-connector {
    position: absolute;
    right: -24px;
    top: 50%;
    width: 24px;
    height: 1px;
    background: linear-gradient(90deg, rgba(0,180,216,0.2), rgba(0,180,216,0.05));
    z-index: 5;
}

.step-num {
    font-family: 'Chakra Petch', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    line-height: 1;
}

.process-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.process-card p {
    color: var(--text-mid);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* === CONTACT — SPLIT LAYOUT === */
.contact {
    padding: 160px 0;
    background: var(--bg2);
    position: relative;
    z-index: 3;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0,180,216,0.15), transparent);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.contact-text h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
}

.contact-info {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--text-mid);
    font-size: 0.9rem;
}

.contact-info-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0,180,216,0.08);
    border: 1px solid rgba(0,180,216,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    flex-shrink: 0;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.form-row { display: flex; gap: 14px; }
.form-row input { flex: 1; }

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 18px 24px;
    border-radius: 100px;
    border: 1px solid rgba(255,255,255,0.06);
    background: var(--glass);
    color: var(--text);
    font-size: 0.92rem;
    font-family: inherit;
    outline: none;
    transition: all 0.3s;
    resize: none;
    cursor: none;
}

.contact-form textarea {
    border-radius: var(--radius-lg);
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: rgba(0,180,216,0.3);
    box-shadow: 0 0 30px rgba(0,180,216,0.06);
}

/* === FOOTER === */
.footer {
    padding: 40px 0;
    border-top: 1px solid rgba(255,255,255,0.04);
    position: relative;
    z-index: 3;
}

.footer-inner { display: flex; justify-content: space-between; align-items: center; }
.footer p { color: var(--text-dim); font-size: 0.82rem; }

/* === RESPONSIVE === */
@media (max-width: 1100px) {
    .problem-layout { grid-template-columns: 1fr; gap: 48px; }
    .problem-header { position: static; }
    .services-layout { grid-template-columns: 1fr; gap: 48px; }
    .services-header { position: static; }
    .results-layout { grid-template-columns: 1fr; gap: 48px; }
    .results-header { position: static; }
    .demo-layout { grid-template-columns: 1fr; gap: 48px; }
    .contact-layout { grid-template-columns: 1fr; gap: 48px; }
    .hero-grid { grid-template-columns: 1fr; }
    .hero-col-right { display: none; }
    .result-card-featured { transform: none; }
    .result-card-featured:hover { transform: translateY(-8px); }
}

@media (max-width: 768px) {
    body { cursor: auto; }
    .cursor-dot, .cursor-ring { display: none; }
    * { cursor: auto !important; }

    .container-wide { padding: 0 24px; }

    .nav-links { display: none; }
    .mobile-toggle { display: flex; }
    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(3,3,6,0.95);
        backdrop-filter: blur(24px);
        padding: 28px;
        border-bottom: 1px solid var(--glass-border);
        gap: 18px;
    }

    .hero { min-height: auto; padding: 120px 0 0; }
    .hero h1 { font-size: clamp(2.8rem, 10vw, 4.5rem); letter-spacing: 1px; }
    .hero-grid { padding: 0 24px; }
    .hero-deco { display: none; }
    .hero-stats-strip { flex-wrap: wrap; gap: 24px; justify-content: center; }
    .stat { padding: 0 24px; }
    .stat-divider { display: none; }
    .bento-grid { grid-template-columns: 1fr; }
    .bento-card.bento-tall { grid-row: span 1; }
    .bento-card.bento-wide { grid-column: span 1; }
    .services-grid { grid-template-columns: 1fr; }
    .service-card-offset { transform: none; }
    .service-card-offset:hover { transform: translateY(-6px); }
    .results-grid { grid-template-columns: 1fr; }
    .result-card-featured { transform: none; }
    .result-card-featured:hover { transform: translateY(-8px); }
    .process-grid { grid-template-columns: 1fr; }
    .process-card-lifted { transform: none; }
    .process-card-lifted:hover { transform: translateY(-6px); }
    .process-connector { display: none; }
    .form-row { flex-direction: column; }
    .footer-inner { flex-direction: column; gap: 12px; text-align: center; }
    .section-bg-text { display: none; }
    .marquee-section { display: none; }
    .deco-svg { display: none; }
    .section-divider { display: none; }
}

/* === SCROLLBAR === */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 3px; }

.chat-container::-webkit-scrollbar { width: 3px; }
.chat-container::-webkit-scrollbar-thumb { background: var(--border); }

::selection {
    background: rgba(0,180,216,0.25);
    color: #fff;
}
