/*
GENERAL
 */
:root{
    --bg: #0a0b10;
    --fg: #e8ecf1;
    --muted:#9aa3af;
    --white:#ffff;
    --primary:#7c5cff; /* grape */
    --secondary:#22d3ee; /* cyan */
    --accent:#ffd166; /* warm */
    --card:#10121a;
    --border: rgba(255,255,255,0.08);
    --shadow: 0 10px 30px rgba(0,0,0,.35);
    --radius: 18px;
    --purple: rgb(192, 132, 252);
}

.section-wash {
    position: relative;
    overflow: hidden;
    background:
            radial-gradient(1200px 1000px at 85% -10%, rgba(124, 92, 255, .25), transparent 60%),
            radial-gradient(900px 1200px at 10% 10%, rgba(34, 211, 238, .18), transparent 60%),
            radial-gradient(700px 500px at 50% 120%, rgba(255, 209, 102, .12), transparent 60%),
            var(--bg);
    isolation: isolate;
}

/*  Smooth fade top */
.section-wash::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 180px;
    background: linear-gradient(to bottom, var(--bg) 0%, rgba(11, 16, 32, 0) 100%);
    pointer-events: none;
    z-index: 1;
}

/* ✨ Smooth fade bottom */
.section-wash::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 180px;
    background: linear-gradient(to top, var(--bg) 0%, rgba(11, 16, 32, 0) 100%);
    pointer-events: none;
    z-index: 1;
}

body{
    font-family: 'Inter', sans-serif;
    background: radial-gradient(1200px 700px at 85% -10%, rgba(124, 92, 255, .25), transparent 60%), radial-gradient(900px 600px at 10% 10%, rgba(34, 211, 238, .18), transparent 60%), radial-gradient(700px 500px at 50% 120%, rgba(255, 209, 102, .12), transparent 60%), var(--bg);
    color: white;
    overflow-x: hidden;
}

.main{
    margin:0 auto;
    padding:28px
}

.fullscreen-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 0;
}

.btn-gradient {
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 8px;
    border: none;
    transition: 0.3s ease-in-out;
    text-decoration: none;
}

.btn-gradient:hover {
    opacity: 0.85;
    text-decoration: none;
    color: white;
}

.rounded-xl {
    border-radius: 0.813rem;
}

.rounded-l {
    border-radius: 0.75rem;
}

.text-gradient {
    background: linear-gradient(90deg, #3b82f6, #9333ea);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.demo-title {
    color: var(--white);
    font-size: 2.2rem;
    font-weight: 700;
}

.text-purple {
    color: var(--purple);
}

/*
CARDS
 */

.feature-card {
    background-color: hsl(240, 10%, 4%, 0.5);
    border: 1px solid hsl(217, 33%, 17%, 0.5);
    transition: 0.3s ease;
}

.text-muted-card {
    color: hsl(215, 10%, 56%);
}
.glow-wrapper {
    background-color: black;
}

.glow-wrapper::before,
.glow-wrapper::after {
    content: '';
    position: absolute;
    inset: -2px;
    z-index: -1;
    border-radius: 0.813rem;
    background-image: conic-gradient(
            from var(--angle),
            transparent 88%,
            #a570ff,
            #3b82f6,
            #10b981 100%
    );
    animation: spin 12s linear infinite;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;

}

.glow-wrapper:hover::before,
.glow-wrapper:hover::after {
    opacity: 1;
    animation: spin-border 1s linear forwards;
}

.sentiment .glow-wrapper::before,
.sentiment .glow-wrapper::after {
    opacity: 1;
    animation: spin-border 1s linear infinite;
}

@keyframes spin-border {
    0% {
        --angle: 0deg;
    }
    100% {
        --angle: 360deg;
        opacity: 0;
    }
}
@property --angle {
    syntax: '<angle>';
    initial-value: 0deg;
    inherits: false;
}


/*
NAVIGATION
 */
.navbar {
    padding: 0;
}
.brand{
    display:flex;
    gap:10px;
    align-items:center;
    font-weight:800
}
.brand img{
    width:150px;
}
.navbar .cta{
    padding:10px 14px;
    border-radius:12px;
    border:1px solid var(--border);
    text-decoration: none;
}
.navbar .cta.primary{
    background:linear-gradient(135deg,var(--primary),var(--secondary));
    color:#0b1020;border:none;font-weight:800
}
@media (max-width:980px){
    .grid{
        grid-template-columns:1fr
    }
    .visual{
        order:-1
    }
    .container{
        /*padding:20px*/
    }
    .steps{
        grid-template-columns:1fr
    }
}



/*
Hero section part
*/
.hero-section {
    padding: 0 0;
    min-height: 100dvh;
}

.hero-section .hero-buttons a {
    min-width: 200px; /* or whatever base size you like */
    flex: 1;           /* make both grow equally */
    text-align: center;
}

.eyebrow{
    display:inline-flex;
    gap:8px;align-items:center;
    padding:6px 10px;
    border:1px solid var(--border);
    border-radius:999px;
    font-size:12px;
    color:var(--muted)
}

.dot{
    width:8px;
    height:8px;
    border-radius:999px;
    background:linear-gradient(135deg,var(--secondary),var(--primary));
    box-shadow:0 0 14px rgba(124,92,255,.65)
}

/* Glow circles */
.glow {
    position: absolute;
    border-radius: 9999px;
    filter: blur(50px);
    z-index: 1;
}

.glow-top-left {
    top: -30px;
    left: -30px;
    width: 100px;
    height: 100px;
    background: rgba(59, 130, 246, 0.38); /* Blue glow */
}

.glow-bottom-right {
    bottom: -50px;
    right: -50px;
    width: 140px;
    height: 140px;
    background: rgba(168, 85, 247, 0.31); /* Purple glow */
}

.text-glow {
    text-shadow: 0 0 10px rgba(59, 130, 246, 0.5);
}

.hero-title {
    font-size: clamp(2rem, 6vw, 3rem); /* min, fluid, max */
    font-weight: 700;
    line-height: 1.2;
    margin-top: 1rem;
}

.highlight {
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    margin-top: 1rem;
    font-size: 1.125rem;
    color: hsl(215, 10%, 56%);
}

.text-intent {
    color: #3b82f6;
    font-weight: 500;
}
.text-insight {
    color: #a855f7;
    font-weight: 500;
}
.text-action {
    color: #10b981;
    font-weight: 500;
}

/* Base animated gradient text */
.animated-gradient {
    background: linear-gradient(270deg, #3b82f6, #9333ea, #10b981);
    background-size: 600% 600%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 6s ease infinite;

    font-weight: 600;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.1);
}

/* Specific words if needed */
.intent-glow  { animation-delay: 0s; }
.insight-glow { animation-delay: 1s; }
.action-glow  { animation-delay: 2s; }

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

.hero-buttons {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
}

.btn-outline {
    padding: 0.75rem 1.5rem;
    background: #111;
    color: white;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
}

.logos {
    .tag {
        border: 1px dashed var(--border);
        color: var(--white);
        padding: 8px 10px;
        border-radius: 10px;
        font-size: 13px;
    }
}


/* Outer code container: soft border + shadow */
.code-window-outer {
    background: hsl(217, 33%, 17%, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.08);
    max-width: 100%;
    padding: 1.2rem;
    --tw-backdrop-blur: blur(12px);
}

/* Inner code window: true dark container */
.code-window-inner {
    background: hsl(217, 33%, 17%, 0.5);
    border-radius: 12px;
    color: #e5e7eb;
    overflow: hidden;
}

.code-window-inner img {
    display:block;
    width:100%;
    height:auto
}

.code-footer {
    color: var(--muted);
    font-size: .85rem;
    margin-top: .4rem;
}

/*
LINE SPINE
 */
.line-spin {
    /*max-width: 856px;*/
    background-color: #0b0f1a;
    border-radius: 0.813rem;
    /*
    max-height: 800px;
    */
}
.line-spin::before,
.line-spin::after {
    content: '';
    position: absolute;
    inset: -2px;
    z-index: -1;
    border-radius: 0.813rem;
    background-image: conic-gradient(
            from var(--angle),
            transparent 88%,
            #a570ff,
            #3b82f6,
            #10b981 100%
    );
    animation: spin 12s linear infinite;
}

@keyframes spin {
    0% {
        --angle: 0deg;
    }
    100% {
        --angle: 360deg;
    }
}
@property --angle {
    syntax: '<angle>';
    initial-value: 0deg;
    inherits: false;
}


/*
PROBLEM section
*/
.univ-section {
    padding: 6rem 0;
    min-height: 100dvh
}

/*
SOLUTION section
 */
/* steps (Sense / Understand / Act) */
.step-card{
    background:rgba(255,255,255,.04);
    border:1px solid rgba(255,255,255,.12);
    border-radius:16px; padding:18px; height:100%;
}
.step-badge{
    display:inline-flex; align-items:center; justify-content:center;
    width:28px; height:28px; border-radius:999px;
    background:linear-gradient(135deg,#7c5cff,#22d3ee);
    color:#0b1020; font-weight:800; margin-right:.5rem;
}


/* pricing */
.pricing-card{
    background:rgba(255,255,255,.04);
    border:1px solid rgba(255,255,255,.12);
    border-radius:16px; padding:24px; height:100%;
    position:relative;
}
.pricing-card .price{ font-size:28px; font-weight:800; }
.pricing-card .small-note{ color:#9aa3af; font-size:.9rem; }
.pricing-card.recommended{
    border-color:rgba(124,92,255,.45);
    box-shadow:0 10px 30px rgba(124,92,255,.15);
    position:relative;
}
.pricing-card .badge-reco{
    position:absolute; top:12px; right:16px;
    white-space:nowrap; padding:6px 12px; border-radius:999px;
    background:linear-gradient(135deg,#7c5cff,#22d3ee);
    color:#0b1020; font-weight:800; font-size:.8rem;
    box-shadow:0 0 18px rgba(124,92,255,.25);
}
/* reserve space for the badge so text won't collide when zooming */
.pricing-card h5{ padding-right:clamp(88px, 12vw, 160px); margin-bottom:.5rem; }


/* FAQ */
.accordion-dark .accordion-item{
    background:transparent;
    border:1px solid rgba(255,255,255,.12);
    border-radius:12px; overflow:hidden;
}
.accordion-dark .accordion-button{
    background:rgba(255,255,255,.02); color:#e8ecf1;
}
.accordion-dark .accordion-button:not(.collapsed){
    color:#fff; background:rgba(255,255,255,.04); box-shadow:none;
}
.accordion-dark .accordion-body{ color:#9aa3af; }

/* CTA box (right of FAQ) */
.cta-box{
    background:linear-gradient(135deg, rgba(124,92,255,.14), rgba(34,211,238,.10));
    border:1px solid rgba(255,255,255,.12);
    border-radius:16px;
}


/* Footer container */
.site-footer{
    position: relative;
    background: var(--bg);
    border-top: 1px solid var(--border);
    overflow: hidden;
    padding: 6rem 0;
}

.site-footer img {
    width: 150px;
}

/* smooth fade from previous section */
.site-footer::before{
    content:""; position:absolute; inset: -140px 0 auto 0; height:160px;
    background: linear-gradient(to bottom, rgba(11,16,32,0), var(--bg));
    pointer-events:none;
}

/* subtle ambient wash in footer */
.site-footer::after{
    content:""; position:absolute; inset:0;
    background:
            radial-gradient(900px 600px at 15% 0%, rgba(34,211,238,.10), transparent 60%),
            radial-gradient(900px 600px at 85% 10%, rgba(124,92,255,.12), transparent 60%);
    pointer-events:none; opacity:.8;
}

.text-muted-quiet{ color: var(--muted); }
.footer-links a{ color: var(--muted); text-decoration: none; }
.footer-links a:hover{ color:#fff; text-decoration: underline; }

.footer-divider{
    border-color: var(--border);
}

.social{ color: var(--muted); font-size: 1rem; }
.social:hover{ color:#fff; }

.site-footer .bottom a{
}

/*
Contact Section
*/

.contact-section {
    background-color: hsl(240, 0%, 4%, 1);
    min-height: 100dvh
}

.contact-section .card{
    border-width: 1px;
    border-color: rgba(255, 255, 255, 0.1);
    background-color: hsl(217, 33%, 17%, 0.3);
    backdrop-filter: blur(12px);
}
.border-border-10 {
    border-color: hsl(217, 33%, 17%, 1);
}

.contact-section input, .contact-section textarea{
    background-color: hsl(217, 33%, 17%, 0.3) !important;
}
.contact-section input:focus, .contact-section textarea:focus {
    outline: 2px solid hsl(217, 91%, 60%, 1);
}

.contact-card {
    background-color: hsl(240, 10%, 4%, 0.5);
    border: 1px solid hsl(217, 33%, 17%, 0.5);
    transition: 0.3s ease;
    padding: 2rem 0rem 2rem 0rem;
}


.why-idiscover-section {
    margin-top: 1.5rem;
    font-size: 0.95rem;
}

.value-section {
    margin-top: 1.5rem;
    font-size: 0.95rem;
}

@media (max-width: 767.98px) {
    .hide-on-mobile {
        display: none !important;
    }
}

/**
Audio testing section
 */


/* cosmic stars + waves */
.ai-demo-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("https://www.transparenttextures.com/patterns/stardust.png");
    opacity: 0.25;
    pointer-events: none;
}

.ai-demo-section::after {
    content: "";
    position: absolute;
    bottom: -60px;
    left: 0;
    width: 100%;
    height: 280px;
    background: radial-gradient(circle at center, rgba(124,124,255,0.25), transparent 70%);
    filter: blur(40px);
    pointer-events: none;
}

.ai-demo-shell {
    margin: auto;
}

.ai-demo-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 40px;
    color: #f2f4ff;
}

.ai-grad {
    background: linear-gradient(270deg, #3b82f6, #9333ea, #10b981);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ai-demo-frame {
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(10, 14, 28, 0.8);
    backdrop-filter: blur(14px);
    padding: 24px;
    box-shadow: 0 0 50px rgba(124,124,255,0.12);
}

/* TOP BAR */
.ai-demo-topbar {
    display: flex;
    gap: 18px;
    align-items: center;
    margin-bottom: 22px;

    img {
        width: 40px;
    }
}

/* mobile layout */
@media (max-width: 576px) {
    .ai-demo-topbar {
        flex-direction: column;
        align-items: flex-start; /* or center if you prefer */
    }
}

.ai-logo {
    font-weight: 900;
    color: #fff;
    font-size: 1.7rem;
    text-shadow: 0 0 12px rgba(124,124,255,0.8);
}

.ai-demo-menu {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.menu-pill {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 8px 14px;
    border-radius: 12px;
    color: #fff;
    font-size: 0.9rem;
    cursor: default;
    opacity: 0.75;
    flex: 1 1 auto; /* flexible width */
    text-align: center;
}

.menu-pill.active {
    opacity: 1;
    border-color: rgba(124,124,255,0.6);
    box-shadow: 0 0 18px rgba(124,124,255,0.25);
}

@media (max-width: 576px) {
    .menu-pill {
        flex: 1 1 100%; /*One pill per row*/
    }
}

/* AUDIO BAR */
.ai-audio-bar {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 22px;
}

.play-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.08);
    color: white;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(124,124,255,0.25);
}

.audio-info {
    flex: 1;
    min-width: 0;
}

.label {
    display: flex;
    justify-content: space-between;
}

.audio-label {
    color: rgba(255,255,255,0.75);
    font-size: 0.95rem;
    margin-bottom: 6px;
}

.audio-time {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.75);
}

.dim { opacity: 0.55; }

/* Wave */
.waveform {
    display: flex;
    align-items: center;
    gap: 3px;
    width: 100%;
    overflow: hidden; /* prevents breaking layout */
}

.waveform span {
    flex: 0 0 3px;  /* fixed bar width */
    border-radius: 2px;
    background: #5f636b;
    opacity: 0.5;
}

/* brand color when filled */
.waveform span.active {
    background: linear-gradient(90deg, #7c7cff, #5fffd2); /* your gradient */
    opacity: 1;
}


/* GRID */
.ai-demo-grid {
    display: grid;
    grid-template-columns: 1.5fr 0.7fr;
    gap: 20px;
}

.ai-demo-left,
.ai-demo-right {
    border-radius: 18px;
}

.ai-demo-left {
    overflow: hidden;
}

.tab-strip {
    display: flex;
    gap: 10px;
    margin-bottom: 18px;

    overflow-x: auto;
    overflow-y: hidden;

    white-space: nowrap;
    flex-wrap: nowrap;

    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch; /* iOS momentum */

    /* hide scrollbar */
    scrollbar-width: none;          /* Firefox */
}

.tab-strip::-webkit-scrollbar {
    display: none;                  /* Chrome / Safari */
}

.tab-btn {
    border: none;
    padding: 12px 14px;
    background: rgba(255,255,255,0.05);
    color: rgba(255,255,255,0.75);
    border-radius: 14px;
    cursor: pointer;
    transition: 0.25s;

    flex: 0 0 auto; /* important: prevent stretching */
}

.tab-btn.active {
    background: rgba(124,124,255,0.15);
    color: #fff;
    box-shadow: 0 0 16px rgba(124,124,255,0.25);
}

.tab-pane {
    display: none;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 20px;
    border-radius: 18px;
    max-height: 356px;
    min-height: 356px;

    .scrollable {
        margin-top: 14px;
        max-height: 242px;
        overflow: scroll;
        padding: 10px;

        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch; /* iOS momentum */

        /* hide scrollbar */
        scrollbar-width: none;          /* Firefox */
    }

    .scrollable::-webkit-scrollbar {
        display: none;                  /* Chrome / Safari */
    }

}

.tab-pane.active { display: block; }

.intent-list {
    list-style: none;
    padding: 0;
}

.intent-list li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

/* Emotion cards */
.emotion-rows {
    margin-top: 14px;
    max-height: 242px;
    overflow: scroll;
    padding: 5px;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch; /* iOS momentum */

    /* hide scrollbar */
    scrollbar-width: none;          /* Firefox */
}

.emotion-rows::-webkit-scrollbar {
    display: none;                  /* Chrome / Safari */
}

.headline-json {
    background: rgba(0,0,0,0.35);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 10px;
    border-radius: 8px;
    margin: 8px 0;
    font-family: monospace;
    font-size: 13px;
    color: #aee6ff;
    white-space: pre;
}

.spoken-text {
    margin-top: 4px;
    font-style: italic;
    display: contents;
    color: #94969c;
}

.emotion-row {
    padding: 12px 0;
    border-top: 1px solid rgba(255,255,255,0.07);
    line-height: 1.5;
}

.emo-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 10px;
}

.emo-dot.joy,
.emo-dot.amusement,
.emo-dot.excitement { background: #5fffd2; }

.emo-dot.happy {
    background: #0df60d;
}

.emo-dot.optimism,
.emo-dot.admiration,
.emo-dot.approval { background: #64e1ff; }

.emo-dot.gratitude,
.emo-dot.love,
.emo-dot.caring { background: #ff9bd2; }

.emo-dot.pride { background: #ffcf5f; }
.emo-dot.relief { background: #a7ff83; }

/* Neutral / cognitive */
.emo-dot.neutral { background: #7ca6ff; }
.emo-dot.curiosity { background: #7c7cff; }
.emo-dot.realization { background: #a98cff; }

/* Negative family */
.emo-dot.sadness,
.emo-dot.sad,
.emo-dot.grief { background: #ff5f87; }

.emo-dot.disappointment,
.emo-dot.remorse { background: #ff7878; }

.emo-dot.annoyance,
.emo-dot.anger { background: #ff4f4f; }

.emo-dot.confusion,
.emo-dot.nervousness { background: #ffb05f; }

.emo-dot.fear { background: #c77dff; }
.emo-dot.disapproval { background: #ff6f91; }
.emo-dot.disgust { background: #9c4f4f; }
.emo-dot.embarrassment { background: #ff8fab; }
.emo-dot.surprise { background: #5fe3ff; }
.emo-dot.desire { background: #ff7be5; }


.emo-label { margin-right: 6px; }

.emotion-meta {
    margin-left: 8px;
    display: inline-flex;
    gap: 6px;
    flex-wrap: wrap;
}

.pill {
    font-size: 12px;
    padding: 3px 8px;
    border-radius: 999px;
    background: rgba(255,255,255,0.08);
    color: #cbd5f5;
}

/* semantic color accents */
.pill.positive { background: rgba(95,255,210,0.15); color: #5fffd2; }
.pill.negative { background: rgba(255,95,135,0.15); color: #ff5f87; }
.pill.neutral  { background: rgba(124,166,255,0.15); color: #7ca6ff; }

.pill.high { border: 1px solid #5fffd2; }
.pill.medium { border: 1px solid #ffcf5f; }
.pill.low { border: 1px solid #ff7878; }

/* Positive family */
.emo-label.joy,
.emo-label.amusement,
.emo-label.excitement { color: #5fffd2; }

.emo-label.happy {
    color: #0df60d;
}

.emo-label.optimism,
.emo-label.admiration,
.emo-label.approval { color: #64e1ff; }

.emo-label.gratitude,
.emo-label.love,
.emo-label.caring { color: #ff9bd2; }

.emo-label.pride { color: #ffcf5f; }
.emo-label.relief { color: #a7ff83; }

/* Neutral / cognitive */
.emo-label.neutral { color: #7ca6ff; }
.emo-label.curiosity { color: #7c7cff; }
.emo-label.realization { color: #a98cff; }

/* Negative family */
.emo-label.sadness,
.emo-label.sad,
.emo-label.grief { color: #ff5f87; }

.emo-label.disappointment,
.emo-label.remorse { color: #ff7878; }

.emo-label.annoyance,
.emo-label.anger { color: #ff4f4f; }

.emo-label.confusion,
.emo-label.nervousness { color: #ffb05f; }

.emo-label.fear { color: #c77dff; }
.emo-label.disapproval { color: #ff6f91; }
.emo-label.disgust { color: #9c4f4f; }
.emo-label.embarrassment { color: #ff8fab; }
.emo-label.surprise { color: #5fe3ff; }
.emo-label.desire { color: #ff7be5; }

/* optional — or skip for subtle UI */


/* RIGHT CHARTS */
.chart-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px;
    padding: 16px;
}

.chart-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 14px;
}

.mini-pill {
    background: rgba(124,124,255,0.15);
    padding: 4px 10px;
    border-radius: 99px;
    font-size: 0.8rem;
}

.bar-chart {
    height: 90px;
    display: flex;
    gap: 12px;
    align-items: flex-end;
}

.bar {
    flex: 1;
    border-radius: 8px;
    background: linear-gradient(180deg, #5fffd2, #7c7cff);
}

.b1 { height: 70%; opacity: 0.8; }
.b2 { height: 40%; opacity: 0.6; }
.b3 { height: 85%; opacity: 1; }
.b4 { height: 55%; opacity: 0.75; }

.chart-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    margin-top: 8px;
    opacity: 0.6;
}

/**
WaveChart
 */

.axis text {
    fill: rgba(255,255,255,0.6);
    font-size: 14px;
    font-family: monospace;
}

.point {
    fill: #ffffff;
    stroke: #7c7cff;
    stroke-width: 1;
    filter: drop-shadow(0 0 4px rgba(124,124,255,0.6));
}


.line-chart svg { width: 100%; height: 83px; }
