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

:root {
    --purple: #a855f7;
    --indigo: #6366f1;
    --topaz: #00d2ff;
    --text: #ffffff;
    --text-muted: rgba(255, 255, 255, 0.55);
    --border: rgba(255, 255, 255, 0.07);
    --bg-dark: #000000;
}

html {
    background: #000;
}

body {
    min-height: 100vh;
    font-family: 'Inter', system-ui, sans-serif;
    background: transparent;
    color: var(--text);
    overflow-x: hidden;
}

/* ─────────────────────────────────────────────
   VIDEO BACKGROUND
───────────────────────────────────────────── */
.bg-video-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1; /* Bottom-most layer */
    pointer-events: none;
    overflow: hidden;
}

.bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bg-overlay-shade {
    position: absolute;
    inset: 0;
    /* Clean dark overlay for text readability */
    background: radial-gradient(circle at center, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.85) 100%);
    z-index: 1;
}


/* ─────────────────────────────────────────────
   NAVBAR
───────────────────────────────────────────── */
.navbar {
    position: fixed;
    top: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 92%;
    max-width: 1100px;
    z-index: 1000;
    
    background: rgba(8, 8, 8, 0.45);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 100px;
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 2rem;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 4px;
    text-decoration: none;
    font-family: 'Outfit', sans-serif;
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    color: #fff;
    flex-shrink: 0;
}

.brand-logo span {
    color: var(--topaz);
    opacity: 0.9;
}

/* Nav links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex: 1;
    justify-content: center;
}

.nav-links a {
    font-family: 'Outfit', sans-serif;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 3px;
}

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

.chevron {
    font-size: 0.7rem;
    opacity: 0.7;
}

/* Nav CTAs */
.nav-ctas {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

/* ─────────────────────────────────────────────
   SHARED BUTTON STYLES
───────────────────────────────────────────── */
.btn-ghost {
    padding: 0.5rem 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 100px;
    color: #fff;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s;
    background: transparent;
}

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

.btn-purple {
    padding: 0.7rem 2rem;
    /* White to Cyan Horizontal Gradient */
    background: linear-gradient(90deg, #f0fdff 0%, #22d3ee 100%);
    border: none;
    border-radius: 9999px;
    color: #0c4a6e;
    /* Deep blue for legibility on light gradient */
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow:
        inset 0 2px 4px rgba(255, 255, 255, 0.9),
        /* Top Rim */
        inset 0 -2px 4px rgba(0, 0, 0, 0.1),
        /* Bottom Bevel */
        0 10px 25px rgba(34, 211, 238, 0.3);
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-purple:hover {
    transform: translateY(-2px);
    background: linear-gradient(90deg, #ffffff 10%, #67e8f9 100%);
    box-shadow:
        inset 0 3px 6px rgba(255, 255, 255, 1),
        0 15px 35px rgba(34, 211, 238, 0.45);
}

.btn-rect {
    border-radius: 8px !important;
}



.btn-lg {
    padding: 0.85rem 2rem;
    font-size: 0.95rem;
}

.btn-watch {
    padding: 0.85rem 1.8rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 100px;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.2s;
}

.btn-watch:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.25);
}

.play-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
}

/* ─────────────────────────────────────────────
   HERO
───────────────────────────────────────────── */
.hero {
    position: relative;
    z-index: 10;
    max-width: 1280px;
    margin: 0 auto;
    padding: 24vh 2rem 0; /* Lowered from 12vh to 'center more' */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    min-height: calc(100vh - 80px);
}

/* Headline */
.hero-headline {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(48px, 6vw, 84px);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.1;
    max-width: 1100px;
    margin-bottom: 2rem;
    color: #fff;
}

/* Cyan italic line — Cormorant Garamond */
.headline-italic {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-style: italic;
    font-weight: 600;
    font-size: clamp(58px, 8.5vw, 110px);
    display: inline-block;
    letter-spacing: -0.01em;
    line-height: 1.2;
    padding-bottom: 0.1em;

    /* Interior Shine Effect */
    background: linear-gradient(120deg,
            #00e5ff 0%,
            #00e5ff 40%,
            #ffffff 50%,
            #00e5ff 60%,
            #00e5ff 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textShine 4s linear infinite;
}

/* Subtext */
.hero-subtext {
    font-size: 1.25rem;
    color: var(--text-muted);
    line-height: 1.8;
    max-width: 700px;
    margin-bottom: 3rem;
    font-weight: 400;
}

/* CTAs */
.hero-ctas {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 5rem;
}

/* Teal outlined button (Talk to Us) */
.btn-teal {
    padding: 0.85rem 2rem;
    background: transparent;
    border: 2px solid #00bcd4;
    border-radius: 12px;
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    letter-spacing: 0.01em;
    transition: all 0.2s;
}

.btn-teal:hover {
    background: rgba(0, 188, 212, 0.12);
    border-color: #00e5ff;
    color: #00e5ff;
}

/* Dark outline button (Recent Work) */
.btn-dark-outline {
    padding: 0.85rem 2rem;
    background: rgba(255, 255, 255, 0.04);
    border: 2px solid rgba(255, 255, 255, 0.18);
    border-radius: 12px;
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    letter-spacing: 0.01em;
    transition: all 0.2s;
}

.btn-dark-outline:hover {
    background: rgba(255, 255, 255, 0.09);
    border-color: rgba(255, 255, 255, 0.4);
}

/* ─────────────────────────────────────────────
   FEATURE ICON CARDS
───────────────────────────────────────────── */
.feat-card {
    position: absolute;
    width: 176px;
    background: #080f1c;
    border: 1px solid rgba(34, 211, 238, 0.15);
    border-radius: 18px;
    padding: 24px 18px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.03),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(12px);
    z-index: 5;
}

/* Blue gradient circle icon — matches the screenshot */
.feat-icon-wrap {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, #38bdf8 0%, #0891b2 50%, #0e7490 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 8px 30px rgba(6, 182, 212, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    flex-shrink: 0;
}

.feat-title {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: #ffffff;
    text-transform: uppercase;
}

.feat-desc {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.5;
    font-weight: 400;
}

/* Card positions — scattered across hero */
.feat-card-1 {
    top: -30px;
    left: 4%;
    transform: rotate(-4deg);
}

.feat-card-2 {
    top: -20px;
    right: 4%;
    transform: rotate(4deg);
}

.feat-card-3 {
    top: 260px;
    left: 2%;
    transform: rotate(3deg);
}

.feat-card-4 {
    top: 270px;
    right: 2%;
    transform: rotate(-3deg);
}

/* ─────────────────────────────────────────────
   FLOATING CARDS
───────────────────────────────────────────── */
.float-card {
    position: absolute;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

/* Phone rate card - top left */
.float-rate {
    left: 6%;
    top: 62px;
    width: 140px;
    height: 140px;
    background: linear-gradient(145deg, #0e7490, #0c4a6e);
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    border-radius: 28px;
    padding: 16px;
}

.rate-donut {
    position: relative;
    width: 80px;
    height: 80px;
}

.rate-label {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.rate-pct {
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1;
}

.rate-sub {
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.6);
}

.rate-phone-icon {
    font-size: 1.2rem;
    position: absolute;
    bottom: 14px;
    right: 14px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Blonde photo - left bottom */
.float-photo-left {
    left: 4%;
    top: 210px;
    width: 190px;
    height: 230px;
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.float-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Redhead photo - right */
.float-photo-right {
    right: 5%;
    top: 30px;
    width: 200px;
    height: 240px;
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

/* +88% badge - right side */
.float-badge-rate {
    position: absolute;
    right: 3.5%;
    top: 285px;
    background: #04111a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
    min-width: 140px;
}

.badge-rate-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: linear-gradient(135deg, #22d3ee, #0891b2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 700;
}

.badge-rate-pct {
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.1;
}

.badge-rate-label {
    font-size: 0.7rem;
    color: var(--text-muted);
}

/* Floating emoji reactions */
.float-emoji {
    position: absolute;
    width: 36px;
    height: 36px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.float-hi {
    bottom: -14px;
    left: -12px;
}

.float-trophy {
    top: -14px;
    right: -12px;
}

.float-star {
    bottom: -14px;
    right: 40px;
}

@keyframes textShine {
    from {
        background-position: 200% center;
    }

    to {
        background-position: 0% center;
    }
}

.blue-shine {
    background: linear-gradient(120deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0) 40%,
            rgba(255, 255, 255, 0.9) 50%,
            rgba(255, 255, 255, 0) 60%,
            rgba(255, 255, 255, 0) 100%),
        linear-gradient(to right,
            #00bcd4 0%,
            #06b6d4 25%,
            #ffffff 50%,
            #0891b2 75%,
            #00bcd4 100%);
    background-size: 200% auto, 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textShine 3s linear infinite;
    display: inline-block;
}

/* ─────────────────────────────────────────────
   DASHBOARD — LIQUID GLASS
───────────────────────────────────────────── */

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(80px);
    }

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

.dashboard {
    position: relative;
    width: 82%;
    max-width: 980px;
    border-radius: 28px 28px 0 0;
    border-bottom: none;

    /* === LIQUID GLASS CORE === */
    background: linear-gradient(160deg,
            rgba(255, 255, 255, 0.06) 0%,
            rgba(255, 255, 255, 0.02) 40%,
            rgba(6, 182, 212, 0.04) 100%);
    backdrop-filter: blur(48px) saturate(200%) brightness(1.15);
    -webkit-backdrop-filter: blur(48px) saturate(200%) brightness(1.15);

    /* Outer rim — like the edge of glass catching light */
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-bottom: none;

    box-shadow:
        /* Top edge highlight — catches ambient light */
        inset 0 1.5px 0 rgba(255, 255, 255, 0.35),
        /* Left edge shimmer */
        inset 1px 0 0 rgba(255, 255, 255, 0.1),
        /* Right edge shimmer */
        inset -1px 0 0 rgba(255, 255, 255, 0.08),
        /* Outer glow from below — cyan tint */
        0 -24px 80px rgba(6, 182, 212, 0.18),
        0 -8px 32px rgba(6, 182, 212, 0.10),
        /* Deep shadow */
        0 40px 80px rgba(0, 0, 0, 0.35);

    overflow: hidden;
    margin-top: auto;

    /* Scroll animation start */
    opacity: 0;
    transform: translateY(80px);
    transition: opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Inner prismatic shimmer sweep across the top */
.dashboard::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(255, 255, 255, 0.0) 10%,
            rgba(34, 211, 238, 0.7) 30%,
            rgba(255, 255, 255, 0.9) 50%,
            rgba(56, 189, 248, 0.7) 70%,
            rgba(255, 255, 255, 0.0) 90%,
            transparent 100%);
    border-radius: 28px 28px 0 0;
    z-index: 2;
    pointer-events: none;
}

/* Soft inner glow — makes it feel thick like real glass */
.dashboard::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%,
            rgba(255, 255, 255, 0.07) 0%,
            transparent 65%);
    pointer-events: none;
    z-index: 1;
}

.dashboard.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Dashboard topbar — glass divider */
.dashboard-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.1rem 1.8rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    z-index: 3;
}

.dash-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.95);
    letter-spacing: -0.02em;
}

.dash-topbar-right {
    display: flex;
    align-items: center;
    gap: 8px;
}

.dash-btn-create {
    display: flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.8), rgba(8, 145, 178, 0.8));
    backdrop-filter: blur(12px);
    border: 1px solid rgba(34, 211, 238, 0.4);
    border-radius: 100px;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.4rem 1rem;
    cursor: pointer;
    box-shadow: 0 2px 12px rgba(6, 182, 212, 0.25);
}

.dash-icon-btn {
    width: 32px;
    height: 32px;
    border-radius: 9999px;
    background: linear-gradient(90deg, #f0fdff 0%, #22d3ee 100%);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    cursor: pointer;
    color: #0c4a6e;
    box-shadow:
        inset 0 2px 4px rgba(255, 255, 255, 0.9),
        inset 0 -2px 4px rgba(0, 0, 0, 0.1),
        0 10px 25px rgba(34, 211, 238, 0.3);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.dash-icon-btn:hover {
    transform: translateY(-2px);
    background: linear-gradient(90deg, #ffffff 10%, #67e8f9 100%);
    box-shadow:
        inset 0 3px 6px rgba(255, 255, 255, 1),
        0 15px 35px rgba(34, 211, 238, 0.45);
}

.dash-meeting {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border-radius: 10px;
    padding: 4px 12px 4px 6px;
}

.dash-avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.dash-meeting-label {
    font-size: 0.68rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.4;
}

.dash-meeting-label small {
    font-size: 0.6rem;
    opacity: 0.65;
}

/* Dashboard body */
.dashboard-body {
    padding: 1.3rem 1.8rem 1.6rem;
    position: relative;
    z-index: 3;
}

.perf-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.1rem;
}

.perf-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.02em;
}

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

.filter-btn {
    font-size: 0.7rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 4px 10px;
    cursor: pointer;
    backdrop-filter: blur(8px);
    transition: all 0.2s;
}

.filter-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.2);
}

/* Stats row — frosted glass cards */
.stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.stat-card {
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.07) 0%,
            rgba(255, 255, 255, 0.03) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 16px;
    padding: 1rem 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 5px;
    backdrop-filter: blur(12px);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.12),
        0 4px 20px rgba(0, 0, 0, 0.15);
    transition: background 0.2s;
}

.stat-card:hover {
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.1) 0%,
            rgba(6, 182, 212, 0.05) 100%);
}

.stat-icon {
    font-size: 0.95rem;
    opacity: 0.7;
    margin-bottom: 2px;
}

.stat-name {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
    letter-spacing: 0.02em;
}

.stat-val {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    display: flex;
    align-items: baseline;
    gap: 8px;
    flex-wrap: wrap;
}

.stat-delta {
    font-size: 0.72rem;
    font-weight: 600;
    border-radius: 6px;
    padding: 2px 7px;
}

.stat-delta.positive {
    color: #4ade80;
    background: rgba(74, 222, 128, 0.12);
}

.stat-delta.negative {
    color: #f87171;
    background: rgba(248, 113, 113, 0.12);
}

/* ─────────────────────────────────────────────
   DASHBOARD TABS — LIQUID GLASS CARDS
───────────────────────────────────────────── */
.dash-tabs {
    display: flex;
    gap: 12px;
    padding: 1.2rem 1.8rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
    z-index: 3;
}

.dash-tab {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex: 1;
    padding: 1rem 1.2rem;
    cursor: pointer;
    border: none;
    border-radius: 16px;
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);

    /* Glass base */
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.05) 0%,
            rgba(255, 255, 255, 0.02) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.12),
        0 4px 16px rgba(0, 0, 0, 0.15);
}

.dash-tab:hover:not(.active) {
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.09) 0%,
            rgba(255, 255, 255, 0.04) 100%);
    border-color: rgba(255, 255, 255, 0.14);
    transform: translateY(-2px);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.18),
        0 8px 24px rgba(0, 0, 0, 0.2);
}

/* ACTIVE — full glow */
.dash-tab.active {
    background: linear-gradient(135deg,
            rgba(34, 211, 238, 0.15) 0%,
            rgba(8, 145, 178, 0.08) 100%);
    border-color: rgba(34, 211, 238, 0.35);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.25),
        0 0 0 1px rgba(34, 211, 238, 0.15),
        0 8px 32px rgba(6, 182, 212, 0.2),
        0 2px 8px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}

/* Icon + text row */
.tab-inner {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Icon circle */
.tab-icon {
    width: 40px;
    height: 40px;
    border-radius: 9999px;
    /* Pill shape like button */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: linear-gradient(90deg, #f0fdff 0%, #22d3ee 100%);
    border: none;
    color: #0c4a6e;
    box-shadow:
        inset 0 2px 4px rgba(255, 255, 255, 0.9),
        inset 0 -2px 4px rgba(0, 0, 0, 0.1),
        0 10px 25px rgba(34, 211, 238, 0.3);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.dash-tab.active .tab-icon {
    background: linear-gradient(90deg, #ffffff 10%, #67e8f9 100%);
    transform: scale(1.05);
    box-shadow:
        inset 0 3px 6px rgba(255, 255, 255, 1),
        0 15px 35px rgba(34, 211, 238, 0.45);
}


.tab-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    text-align: left;
}

.tab-label {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
    transition: color 0.25s;
}

.dash-tab.active .tab-label {
    color: rgba(255, 255, 255, 0.65);
}

.tab-val {
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1;
    transition: all 0.25s;
}

.dash-tab.active .tab-val {
    color: #fff;
    text-shadow: 0 0 24px rgba(34, 211, 238, 0.5);
}

.tab-delta {
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 8px;
    padding: 4px 10px;
    background: transparent;
    transition: all 0.25s;
    align-self: center;
    white-space: nowrap;
    color: rgba(255, 255, 255, 0.2);
    letter-spacing: 0.02em;
}

.tab-delta.positive {
    color: rgba(74, 222, 128, 0.45);
}

.tab-delta.negative {
    color: rgba(248, 113, 113, 0.45);
}

.dash-tab.active .tab-delta.positive {
    color: #4ade80;
    background: rgba(74, 222, 128, 0.12);
    box-shadow: 0 0 12px rgba(74, 222, 128, 0.1);
}

.dash-tab.active .tab-delta.negative {
    color: #f87171;
    background: rgba(248, 113, 113, 0.12);
}


/* Period pill */
.dash-period {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.45);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 4px 12px;
    cursor: pointer;
    transition: all 0.2s;
}

.dash-period:hover {
    background: rgba(255, 255, 255, 0.09);
    color: #fff;
}

/* ─────────────────────────────────────────────
   CHART AREA
───────────────────────────────────────────── */
.dash-chart-area {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 1rem 1.8rem 0.5rem;
    z-index: 3;
    height: 220px;
}

.chart-y-axis {
    position: absolute;
    left: 0;
    top: 0.8rem;
    bottom: 1.8rem;
    width: 1.8rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0 4px;
}

.chart-y-axis span {
    display: block;
    width: 8px;
    height: 1px;
    background: rgba(255, 255, 255, 0.12);
}

.chart-svg-wrap {
    flex: 1;
    width: 100%;
    overflow: visible;
}

.chart-x-axis {
    display: flex;
    justify-content: space-between;
    padding: 6px 4px 0;
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.28);
    letter-spacing: 0.05em;
}