/* ===== Rainbow Border Animation ===== */
@keyframes rainbow-border {
    0%   { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

/* ===== Reset & Base ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-color: #0F1115;
    color: #fff;
}

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Manrope', sans-serif;
}

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

/* ===== Utilities ===== */
.icon {
    width: 1rem;
    height: 1rem;
}

.icon-md {
    width: 1.25rem;
    height: 1.25rem;
}

.icon-lg {
    width: 1.5rem;
    height: 1.5rem;
}

/* ===== Navigation ===== */
.nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 50;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    height: 5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 1.6rem;
    letter-spacing: -0.01em;
    color: #111827;
}

.logo-icon {
    display: block;
    flex-shrink: 0;
}

.logo-text {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 500;
    letter-spacing: 0.04em;
}

.nav-links {
    display: none;
    gap: 2rem;
}

.nav-links a {
    font-size: 0.875rem;
    font-weight: 500;
    color: #6B7280;
    transition: color 0.2s ease;
}

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

@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }
}

.nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 2.5rem;
    height: 2.5rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.25rem;
    flex-shrink: 0;
}

.nav-hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: #111827;
    border-radius: 2px;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.2s ease;
    transform-origin: center;
}

.nav-hamburger.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.nav-hamburger.is-open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.nav-hamburger.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.nav-mobile-menu {
    display: none;
}

@media (max-width: 425px) {
    .nav-container .nav-cta {
        display: none;
    }

    .nav-hamburger {
        display: flex;
    }

    .nav-mobile-menu {
        display: block;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(12px);
        border-top: 1px solid rgba(0, 0, 0, 0.05);
        overflow: hidden;
        max-height: 0;
        opacity: 0;
        transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.25s ease;
    }

    .nav-mobile-menu.is-open {
        max-height: 320px;
        opacity: 1;
    }

    .nav-mobile-menu a {
        display: block;
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
        font-weight: 500;
        color: #374151;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        transition: color 0.2s ease;
        text-decoration: none;
    }

    .nav-mobile-menu a:hover {
        color: #111827;
    }

    .nav-mobile-menu .btn {
        display: block;
        width: calc(100% - 3rem);
        margin: 1rem 1.5rem;
        text-align: center;
        justify-content: center;
    }
}

/* ===== Buttons ===== */
.btn {
    border: none;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary {
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    border: 1.5px solid transparent;
    background:
        linear-gradient(#1e2130, #1e2130) padding-box,
        linear-gradient(90deg, #00E5FF, #7C3AED, #0055FF, #00B4D8, #4F46E5, #00E5FF) border-box;
    background-size: 200% auto;
    animation: rainbow-border 3s linear infinite;
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 0 18px rgba(0, 229, 255, 0.15);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.btn-ghost {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    color: white;
    padding: 0.625rem 1.25rem;
    border-radius: 50px;
    font-size: 0.85rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-ghost:hover {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

/* ===== Hero Section ===== */
.hero {
    min-height: 100vh;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    background-color: white;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-grid {
    display: none;
}

.hero-snake-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

@media (max-width: 425px) {
    .hero-snake-canvas {
        display: none;
    }
}

.hero-bg-blur {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50rem;
    height: 50rem;
    background-color: #F9FAFB;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.6;
    z-index: 0;
    pointer-events: none;
}

.hero-container {
    max-width: 64rem;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-eyebrow {
    color: #6B7280;
    margin-bottom: 1.5rem;
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 600;
    animation: heroFadeInUp 1.5s cubic-bezier(0.16, 1, 0.3, 1) 0s both;
}

.hero-title {
    font-size: 3rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 2rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.hero-title-line1 {
    display: block;
    animation: heroFadeInUp 1.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
}

.hero-title-muted {
    color: #9CA3AF;
    display: block;
    animation: heroFadeInUp 1.8s cubic-bezier(0.16, 1, 0.3, 1) 0.8s both;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: #4B5563;
    max-width: 42rem;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
    animation: heroFadeInUp 1.8s cubic-bezier(0.16, 1, 0.3, 1) 1.1s both;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    animation: heroFadeInUp 1.8s cubic-bezier(0.16, 1, 0.3, 1) 1.4s both;
}

.hero-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: #6B7280;
    padding: 0.75rem 1.5rem;
    transition: color 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-link:hover {
    color: #111827;
}

@media (min-width: 640px) {
    .hero-cta {
        flex-direction: row;
    }
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 4.5rem;
    }

    .hero-subtitle {
        font-size: 1.25rem;
    }
}

/* ===== Services Section ===== */
.services {
    background-color: #0F1115;
    color: white;
    padding: 6rem 1.5rem;
}

.services-container {
    max-width: 1280px;
    margin: 0 auto;
}

.services-header {
    margin-bottom: 4rem;
}

.services-title {
    font-size: 3rem;
    font-weight: 600;
    color: white;
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
    font-family: 'Manrope', sans-serif;
    line-height: 1;
}

.services-subtitle {
    color: #6B7280;
    max-width: 30rem;
    font-size: 0.9rem;
    line-height: 1.7;
}

.section-eyebrow {
    color: #9CA3AF;
    margin-bottom: 1rem;
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 600;
}

.section-eyebrow.teal {
    color: #00E5FF;
}

.section-title {
    font-size: 2rem;
    font-weight: 500;
    color: white;
}

.section-title.white {
    color: white;
}

/* ===== Services Accordion ===== */
.services-accordion {
    display: flex;
    flex-direction: column;
}

.accordion-item {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    transition: background 0.35s ease, border-radius 0.35s ease, padding 0.35s ease, margin 0.35s ease, border-color 0.35s ease;
}

.accordion-item:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.accordion-item.is-open {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    margin: 0.75rem 0;
}

.accordion-item.is-open + .accordion-item {
    border-top: none;
}

.accordion-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.75rem 0;
    cursor: pointer;
    user-select: none;
}

.accordion-item.is-open .accordion-header {
    padding: 2rem 1.75rem 1.5rem;
}

.accordion-header-left {
    display: flex;
    align-items: baseline;
    gap: 1.25rem;
    flex: 1;
    min-width: 0;
}

.accordion-title-group {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    min-width: 0;
}

.accordion-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 400;
    color: #6B7280;
    line-height: 1.4;
    margin: 0;
}

.accordion-number {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    color: #6B7280;
    font-weight: 400;
    letter-spacing: 0.05em;
    flex-shrink: 0;
}

.accordion-title {
    font-size: 2rem;
    font-weight: 500;
    color: white;
    letter-spacing: -0.02em;
    line-height: 1;
    font-family: 'Manrope', sans-serif;
    transition: color 0.2s ease;
}

.accordion-item:not(.is-open):hover .accordion-title {
    color: #D1D5DB;
}

.accordion-toggle {
    background: none;
    border: none;
    cursor: pointer;
    color: white;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 2rem;
    height: 2rem;
}

.toggle-icon {
    width: 1.125rem;
    height: 1.125rem;
}

.icon-minus { display: none; }
.icon-plus  { display: block; }

.accordion-item.is-open .icon-minus { display: block; }
.accordion-item.is-open .icon-plus  { display: none; }

/* Smooth expand/collapse */
.accordion-body {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.accordion-item.is-open .accordion-body {
    max-height: 700px;
}

.accordion-body-inner {
    display: flex;
    gap: 2.5rem;
    align-items: flex-start;
    padding: 0.5rem 1.75rem 2.5rem;
}

.accordion-description {
    color: #9CA3AF;
    font-size: 0.875rem;
    line-height: 1.75;
    max-width: 22rem;
    flex-shrink: 0;
}

.accordion-visual {
    flex: 1;
    border-radius: 0.5rem;
    overflow: hidden;
}

.accordion-visual img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    border-radius: 0.5rem;
}

@media (min-width: 768px) {
    .services-title {
        font-size: 2.5rem;
    }

    .accordion-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2.25rem;
    }
}

@media (max-width: 600px) {
    .services-title {
        font-size: 1.5rem;
    }

    .accordion-title {
        font-size: 1rem;
    }

    .accordion-body-inner {
        flex-direction: column;
        gap: 1.5rem;
    }

    .accordion-visual {
        width: 100%;
    }

    .accordion-description {
        max-width: 100%;
    }
}

/* ===== Methodology Section ===== */
.methodology {
    background-color: #0F1115;
    padding: 6rem 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.methodology-container {
    max-width: 1280px;
    margin: 0 auto;
}

.methodology-intro {
    margin-bottom: 4rem;
}

.methodology-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
}

.methodology-feature {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 2.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.methodology-feature:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.feature-icon {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #00E5FF;
}

.feature-title {
    color: white;
    font-size: 1.125rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.feature-description {
    color: #6B7280;
    font-size: 0.875rem;
    line-height: 1.7;
    max-width: 36rem;
}

@media (min-width: 768px) {
    .methodology-features {
        grid-template-columns: repeat(3, 1fr);
        gap: 0;
    }

    .methodology-feature {
        flex-direction: column;
        gap: 1.25rem;
        padding: 2.5rem 2rem;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        border-left: 1px solid rgba(255, 255, 255, 0.08);
    }

    .methodology-feature:last-child {
        border-bottom: none;
        border-right: 1px solid rgba(255, 255, 255, 0.08);
    }

    .methodology-feature:first-child {
        border-left: none;
        padding-left: 0;
    }

    .feature-description {
        max-width: 100%;
    }
}

/* ===== Contact Section ===== */
.contact {
    background-color: white;
    padding: 6rem 1.5rem;
}

.contact-container {
    max-width: 1280px;
    margin: 0 auto;
}

.contact-header {
    text-align: center;
    margin-bottom: 4rem;
}

.contact-header .section-eyebrow {
    color: #6B7280;
}

.contact-header .section-title {
    color: #111827;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-subtitle {
    color: #4B5563;
    font-size: 1.125rem;
    max-width: 42rem;
    margin: 0 auto;
    line-height: 1.7;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 48rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.contact-card {
    background-color: #F9FAFB;
    border: 1px solid #E5E7EB;
    border-radius: 0.75rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.contact-card:hover {
    border-color: #0055FF;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 85, 255, 0.08);
}

.contact-icon {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, #00C4E0 0%, #0055FF 100%);
    color: white;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.contact-card-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.5rem;
}

.contact-link {
    color: #0055FF;
    font-weight: 500;
    font-size: 1rem;
    transition: opacity 0.2s ease;
}

.contact-link:hover {
    opacity: 0.7;
}

/* ===== Footer ===== */
.footer {
    background-color: #0F1115;
    color: white;
    padding: 6rem 1.5rem 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-brand {
    grid-column: span 1;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.footer-logo .logo-text {
    color: white;
}

.footer-tagline {
    color: #6B7280;
    font-size: 0.875rem;
    max-width: 20rem;
    line-height: 1.7;
}

.footer-links {
    margin-top: 1.5rem;
}

.footer-heading {
    color: white;
    font-weight: 500;
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #6B7280;
    font-size: 0.875rem;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.footer-copyright {
    color: #4B5563;
    font-size: 0.75rem;
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal a {
    color: #4B5563;
    font-size: 0.75rem;
    transition: color 0.2s ease;
}

.footer-legal a:hover {
    color: white;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
    }

    .footer-brand {
        grid-column: span 1;
    }

    .footer-links {
        margin-top: 0;
    }

    .footer-bottom {
        flex-direction: row;
    }
}

/* ===== Animations ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(32px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.fade-in {
    opacity: 0;
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* ===== Service Graphics (High-Fidelity) ===== */

/* --- Shared keyframes --- */
@keyframes meshDrift {
    0%   { background-position: 0% 0%,   50% 100%, 100% 50%; }
    33%  { background-position: 40% 30%, 10% 60%,  80% 20%; }
    66%  { background-position: 20% 80%, 90% 10%,  30% 70%; }
    100% { background-position: 0% 0%,   50% 100%, 100% 50%; }
}

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

@keyframes aiPulseRing {
    0%   { transform: scale(1);   opacity: 0.8; }
    100% { transform: scale(2.8); opacity: 0; }
}

@keyframes dotBounce {
    0%, 60%, 100% { transform: translateY(0); }
    30%            { transform: translateY(-4px); }
}

@keyframes liveGlow {
    0%, 100% { box-shadow: 0 0 4px rgba(0, 229, 255, 0.5); }
    50%       { box-shadow: 0 0 12px rgba(0, 229, 255, 1); }
}

@keyframes barWave {
    from { transform: scaleY(var(--bar-low, 0.3)); }
    to   { transform: scaleY(var(--bar-high, 1)); }
}

/* --- Base container: 4-stop mesh gradient + noise --- */
.service-graphic {
    height: 240px;
    border-radius: 12px;
    border: 1px solid rgba(0, 229, 255, 0.15);
    overflow: hidden;
    position: relative;
    width: 100%;
    box-shadow: 0 0 30px rgba(0, 15, 80, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.04);
    background:
        radial-gradient(ellipse 55% 50% at 10% 15%, #002060 0%, transparent 55%),
        radial-gradient(ellipse 45% 55% at 88% 82%, #001040 0%, transparent 55%),
        radial-gradient(ellipse 40% 40% at 55% 48%, #010c35 0%, transparent 50%),
        #000820;
    background-size: 200% 200%, 200% 200%, 200% 200%, auto;
    animation: meshDrift 18s ease-in-out infinite;
}

/* Noise grain overlay — applied to all three via ::after on each specific class
   so we keep ::after free on .service-graphic for override in voice */
.graphic-chatbot::after,
.graphic-voice::after,
.graphic-web::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.72' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
    opacity: 0.045;
    pointer-events: none;
    z-index: 50;
    border-radius: 12px;
}

/* ══════════════════════════════════════════
   CHATBOT — Threaded Conversation UI
══════════════════════════════════════════ */
.graphic-chatbot {
    display: flex;
    flex-direction: column;
    gap: 9px;
    padding: 18px 20px 14px;
    justify-content: center;
}

/* Glassmorphism bubble base */
.gc-bubble {
    padding: 9px 13px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.09);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 4px 16px rgba(0, 0, 0, 0.35);
    display: flex;
    flex-direction: column;
    gap: 6px;
    max-width: 72%;
    position: relative;
    z-index: 1;
}

/* Outgoing (blue tint, right-aligned) */
.gc-out {
    align-self: flex-end;
    background: rgba(0, 20, 100, 0.38);
    border-color: rgba(0, 229, 255, 0.2);
    box-shadow:
        inset 0 1px 0 rgba(0, 229, 255, 0.12),
        0 4px 20px rgba(0, 15, 80, 0.45);
}

.gc-in {
    align-self: flex-start;
}

/* Bubble text */
.gc-text {
    margin: 0;
    font-size: 10.5px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.72);
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}

.gc-out .gc-text {
    color: rgba(150, 235, 255, 0.9);
}

/* AI thinking status row */
.gc-status {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 2px;
    position: relative;
    z-index: 1;
}

.gc-pulse-ring {
    position: absolute;
    left: 2px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1px solid rgba(0, 229, 255, 0.7);
    animation: aiPulseRing 1.6s ease-out infinite;
}

.gc-pulse-dot {
    width: 10px;
    height: 10px;
    background: #00E5FF;
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 0 8px rgba(0, 229, 255, 0.9);
}

.gc-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.62rem;
    color: rgba(0, 229, 255, 0.65);
    letter-spacing: 0.06em;
    font-weight: 500;
}

.gc-dots {
    display: flex;
    gap: 3px;
    align-items: center;
}

.gc-dots span {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(0, 229, 255, 0.6);
    display: block;
    animation: dotBounce 1.4s ease-in-out infinite;
}

.gc-dots span:nth-child(2) { animation-delay: 0.2s; }
.gc-dots span:nth-child(3) { animation-delay: 0.4s; }

/* ══════════════════════════════════════════
   VOICE — Live Waveform Analyzer
══════════════════════════════════════════ */
.graphic-voice {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 24px;
}

/* Ambient center glow behind bars */
.graphic-voice::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 160px;
    height: 160px;
    background: radial-gradient(circle, rgba(0, 30, 120, 0.55) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: breathe 3.5s ease-in-out infinite;
    pointer-events: none;
}

.gv-waveform {
    display: flex;
    align-items: flex-end;
    gap: 5px;
    height: 110px;
    position: relative;
    z-index: 1;
}

.gv-bar {
    width: 4px;
    border-radius: 2px 2px 1px 1px;
    transform-origin: bottom center;
    background: linear-gradient(to top, rgba(0, 229, 255, 0.95), rgba(0, 85, 255, 0.18));
    box-shadow: 0 0 6px rgba(0, 229, 255, 0.25);
    animation: barWave ease-in-out infinite alternate;
}

/* 16 bars — varied heights create natural waveform silhouette */
.gv-bar:nth-child(1)  { height: 22px;  --bar-low: 0.40; --bar-high: 0.90; animation-duration: 1.10s; animation-delay: 0.00s; }
.gv-bar:nth-child(2)  { height: 38px;  --bar-low: 0.35; --bar-high: 1.00; animation-duration: 0.90s; animation-delay: 0.15s; }
.gv-bar:nth-child(3)  { height: 60px;  --bar-low: 0.25; --bar-high: 0.95; animation-duration: 1.30s; animation-delay: 0.05s; }
.gv-bar:nth-child(4)  { height: 48px;  --bar-low: 0.45; --bar-high: 1.05; animation-duration: 0.85s; animation-delay: 0.30s; }
.gv-bar:nth-child(5)  { height: 88px;  --bar-low: 0.28; --bar-high: 0.98; animation-duration: 1.00s; animation-delay: 0.10s; }
.gv-bar:nth-child(6)  { height: 68px;  --bar-low: 0.42; --bar-high: 0.92; animation-duration: 1.20s; animation-delay: 0.25s; }
.gv-bar:nth-child(7)  { height: 105px; --bar-low: 0.20; --bar-high: 0.88; animation-duration: 0.95s; animation-delay: 0.00s; }
.gv-bar:nth-child(8)  { height: 82px;  --bar-low: 0.32; --bar-high: 1.00; animation-duration: 1.15s; animation-delay: 0.40s; }
.gv-bar:nth-child(9)  { height: 98px;  --bar-low: 0.22; --bar-high: 0.95; animation-duration: 0.80s; animation-delay: 0.20s; }
.gv-bar:nth-child(10) { height: 75px;  --bar-low: 0.38; --bar-high: 1.00; animation-duration: 1.05s; animation-delay: 0.35s; }
.gv-bar:nth-child(11) { height: 90px;  --bar-low: 0.30; --bar-high: 0.90; animation-duration: 0.90s; animation-delay: 0.05s; }
.gv-bar:nth-child(12) { height: 55px;  --bar-low: 0.48; --bar-high: 0.95; animation-duration: 1.25s; animation-delay: 0.15s; }
.gv-bar:nth-child(13) { height: 70px;  --bar-low: 0.28; --bar-high: 1.00; animation-duration: 0.95s; animation-delay: 0.45s; }
.gv-bar:nth-child(14) { height: 42px;  --bar-low: 0.50; --bar-high: 0.88; animation-duration: 1.10s; animation-delay: 0.10s; }
.gv-bar:nth-child(15) { height: 30px;  --bar-low: 0.38; --bar-high: 0.92; animation-duration: 0.85s; animation-delay: 0.30s; }
.gv-bar:nth-child(16) { height: 18px;  --bar-low: 0.45; --bar-high: 0.80; animation-duration: 1.20s; animation-delay: 0.05s; }

/* "LIVE ANALYSIS" pill */
.gv-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px 14px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(0, 229, 255, 0.14);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
    position: relative;
    z-index: 1;
}

.gv-live-dot {
    width: 6px;
    height: 6px;
    background: #00E5FF;
    border-radius: 50%;
    flex-shrink: 0;
    animation: liveGlow 1.5s ease-in-out infinite;
}

.gv-live-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.58rem;
    letter-spacing: 0.13em;
    font-weight: 600;
    color: rgba(0, 229, 255, 0.65);
}

/* ══════════════════════════════════════════
   WEB — Minimalist SaaS Dashboard
══════════════════════════════════════════ */
.graphic-web {
    display: flex;
    overflow: hidden;
}

/* Sidebar */
.gw-sidebar {
    width: 46px;
    background: rgba(0, 0, 0, 0.28);
    border-right: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 14px 0 14px;
    gap: 10px;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.gw-logo-mark {
    width: 20px;
    height: 20px;
    border-radius: 5px;
    background: rgba(0, 229, 255, 0.22);
    border: 1px solid rgba(0, 229, 255, 0.35);
    margin-bottom: 6px;
    box-shadow: 0 0 8px rgba(0, 229, 255, 0.15);
}

.gw-nav-item {
    width: 22px;
    height: 5px;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.1);
}

.gw-active {
    background: rgba(0, 229, 255, 0.45);
    box-shadow: 0 0 8px rgba(0, 229, 255, 0.25);
}

/* Main content area */
.gw-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 12px 12px;
    gap: 10px;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.gw-topbar {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.gw-title-pill {
    height: 7px;
    width: 80px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.18);
}

.gw-badge {
    height: 14px;
    width: 36px;
    border-radius: 7px;
    background: rgba(0, 229, 255, 0.14);
    border: 1px solid rgba(0, 229, 255, 0.28);
    margin-left: auto;
}

/* Card grid */
.gw-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    flex: 1;
}

.gw-card {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 7px;
    padding: 9px 10px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.05),
        0 4px 12px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.gw-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.gw-metric-label {
    height: 5px;
    width: 52px;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.16);
}

.gw-label-alt { width: 42px; }

.gw-chip {
    height: 11px;
    width: 26px;
    border-radius: 6px;
    background: rgba(0, 229, 255, 0.12);
    border: 1px solid rgba(0, 229, 255, 0.22);
}

.gw-chip-alt {
    background: rgba(120, 160, 255, 0.12);
    border-color: rgba(120, 160, 255, 0.22);
}

.gw-metric-value {
    height: 13px;
    width: 48px;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.22);
}

.gw-value-alt {
    width: 40px;
    background: rgba(255, 255, 255, 0.16);
}

/* Sparklines — filled area chart via clip-path */
.gw-sparkline {
    flex: 1;
    border-radius: 3px;
    background: linear-gradient(to bottom, rgba(0, 229, 255, 0.22) 0%, rgba(0, 229, 255, 0.02) 100%);
    clip-path: polygon(
        0% 78%, 11% 58%, 20% 68%, 31% 38%,
        42% 52%, 53% 22%, 63% 34%, 74% 12%,
        85% 28%, 100% 14%, 100% 100%, 0% 100%
    );
    min-height: 30px;
    animation: breathe 4.5s ease-in-out infinite;
}

.gw-sparkline-alt {
    background: linear-gradient(to bottom, rgba(120, 160, 255, 0.22) 0%, rgba(120, 160, 255, 0.02) 100%);
    clip-path: polygon(
        0% 88%, 10% 72%, 20% 80%, 30% 58%,
        42% 64%, 52% 42%, 62% 50%, 73% 28%,
        84% 38%, 100% 22%, 100% 100%, 0% 100%
    );
    animation: breathe 4.5s ease-in-out infinite 2.2s;
}

/* ===== Social Proof Section ===== */
.social-proof {
    background-color: #0F1115;
    padding: 6rem 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.social-proof-container {
    max-width: 1280px;
    margin: 0 auto;
}

.social-proof-header {
    margin-bottom: 3rem;
}

.stat-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

@media (min-width: 1024px) {
    .stat-cards {
        grid-template-columns: repeat(3, 1fr);
    }
}

.stat-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0.75rem;
    padding: 2rem;
    transition: border-color 0.3s ease;
}

.stat-card:hover {
    border-color: rgba(0, 229, 255, 0.2);
}

.stat-value {
    font-family: 'Manrope', sans-serif;
    font-size: 1.875rem;
    font-weight: 600;
    color: #00E5FF;
    letter-spacing: -0.02em;
    margin-bottom: 0.75rem;
    line-height: 1;
}

.stat-label {
    color: #6B7280;
    font-size: 0.875rem;
    line-height: 1.65;
}

/* ===== Contact Reassurance ===== */
.contact-reassurance {
    color: #9CA3AF;
    font-size: 0.875rem;
    max-width: 38rem;
    margin: 0.875rem auto 0;
    line-height: 1.7;
}

/* ===== About Page ===== */
.about-hero {
    min-height: 60vh;
    padding: 10rem 1.5rem 6rem;
    background-color: white;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.about-hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.25) 1px, transparent 1px),
        linear-gradient(to right, rgba(0, 0, 0, 0.25) 1px, transparent 1px);
    background-size: 48px 48px;
    -webkit-mask-image: radial-gradient(ellipse 60% 80% at 50% 50%, black 0%, transparent 70%);
    mask-image: radial-gradient(ellipse 60% 80% at 50% 50%, black 0%, transparent 70%);
    pointer-events: none;
    opacity: 0.35;
    z-index: 0;
}

.about-hero-container {
    max-width: 64rem;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.about-hero-eyebrow {
    color: #6B7280;
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 600;
    margin-bottom: 1.5rem;
    animation: heroFadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0s both;
}

.about-hero-title {
    font-size: 3rem;
    font-weight: 600;
    color: #111827;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    animation: heroFadeInUp 1.4s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}

.about-hero-title-muted {
    color: #9CA3AF;
}

.about-hero-sub {
    font-size: 1.125rem;
    color: #4B5563;
    max-width: 38rem;
    line-height: 1.7;
    animation: heroFadeInUp 1.4s cubic-bezier(0.16, 1, 0.3, 1) 0.5s both;
}

@media (min-width: 768px) {
    .about-hero-title {
        font-size: 4rem;
    }
}

/* Bio section */
.about-bio {
    background-color: #0F1115;
    padding: 6rem 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.about-bio-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: start;
}

@media (min-width: 768px) {
    .about-bio-container {
        grid-template-columns: 1fr 2fr;
        gap: 4rem;
    }
}

.about-headshot {
    aspect-ratio: 1 / 1;
    border-radius: 0.75rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 420px;
}

.about-headshot-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    border-radius: 0.75rem;
    display: block;
}

.about-headshot-placeholder {
    color: #4B5563;
    font-size: 0.75rem;
    font-family: 'Inter', sans-serif;
    text-align: center;
    padding: 1rem;
    line-height: 1.6;
}

.about-bio-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-bio-content p {
    color: #9CA3AF;
    font-size: 0.9375rem;
    line-height: 1.8;
}


