/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { display: none; }
html { scrollbar-width: none; }

/* ===== OVERSCROLL COLORS ===== */
/* Bottom overscroll — fixed div behind content (desktop) */
#overscroll-bottom {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50vh;
    background: #10B981;
    z-index: -1;
    pointer-events: none;
}


/* ===== SCROLL REVEAL ===== */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}
.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }

/* Card reveals get more travel + scale */
.bento-card.reveal {
    transform: translateY(32px) scale(0.98);
}

/* Dashboard gets slower entrance */
.reveal-slow {
    transition-duration: 1.2s;
}

/* ===== BENTO CARD ===== */
.bento-card {
    background-color: #ffffff;
    border-radius: 0.75rem; /* 12px — precision feel */
    border: 1px solid #e4e4e7; /* zinc-200 */
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04), 0 1px 3px rgba(0, 0, 0, 0.02);
    padding: 1.5rem;
    transition: border-color 350ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 350ms cubic-bezier(0.16, 1, 0.3, 1), transform 350ms cubic-bezier(0.16, 1, 0.3, 1);
}
@media (min-width: 640px) {
    .bento-card { padding: 2rem; }
}
.bento-card:hover {
    border-color: #d4d4d8; /* zinc-300 */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06), 0 1px 3px rgba(0, 0, 0, 0.04);
    transform: translateY(-1px);
}

/* ===== AUDIO BAR WAVEFORM ===== */
@keyframes soundwave {
    0%, 100% { height: 4px; }
    50% { height: 14px; }
}
.audio-bar {
    width: 0.25rem;
    height: 4px;
    background-color: #18181b;
    border-radius: 9999px;
    margin: 0 1px;
    transition: height 300ms;
    flex-shrink: 0;
}
.audio-bar.playing {
    animation: soundwave 1s ease-in-out infinite;
    display: block !important;
}
.audio-bar.playing:nth-child(even) { animation-duration: 1.2s; }
.audio-bar.playing:nth-child(3n) { animation-duration: 0.8s; }
.audio-bar.playing:nth-child(4n+1) { animation-duration: 0.95s; }

.audio-play-btn {
    height: 28px;
    overflow: hidden;
    align-items: center;
}


/* ===== BENTO: NOTIFICATION SEQUENCE (Speed-to-Lead / Inbound) ===== */
@keyframes notificationSlide {
    0% {
        opacity: 0;
        transform: translateY(-100%);
    }
    10% {
        opacity: 1;
        transform: translateY(0);
    }
    28% {
        opacity: 1;
        transform: translateY(0);
    }
    33.33% {
        opacity: 0;
        transform: translateY(15%);
    }
    100% {
        opacity: 0;
        transform: translateY(15%);
    }
}
.animate-notification {
    opacity: 0;
}
.bento-card.animate .animate-notification {
    animation: notificationSlide 6s ease-in-out infinite;
}

/* ===== BENTO: INBOUND AGENT — RINGING PHONE UI ===== */
@keyframes inboundPulse {
    0% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.8); opacity: 0; }
    100% { transform: scale(1); opacity: 0; }
}
@keyframes inboundCycle {
    0%, 40% { /* Ringing phase */ }
    45% {  } /* Transition */
    50%, 80% { /* Connected phase */ }
    85%, 100% { /* Reset */ }
}
.inbound-pulse-ring {
    opacity: 0;
}
.bento-card.animate .inbound-pulse-ring {
    animation: inboundPulse 1.5s ease-out infinite;
}
/* Phase cycling via JS — but CSS handles the pulse */
.inbound-phone-demo.connected .inbound-pulse-ring {
    animation: none;
    opacity: 0;
}
.inbound-phone-demo.connected .inbound-status-badge {
    background: #059669; /* emerald-600 */
    color: #ffffff;
}
.inbound-status-badge {
    transition: background 0.4s ease, color 0.4s ease;
}

/* ===== BENTO: FOLLOW-UP AGENT — TIMELINE DOTS ===== */
@keyframes dotActivate {
    0%, 100% { background: #d4d4d8; border-color: #e4e4e7; transform: scale(1); }
    15%, 85% { background: #7c3aed; border-color: #7c3aed; transform: scale(1.3); }
}
@keyframes stepActivate {
    0%, 100% { opacity: 0.5; }
    15%, 85% { opacity: 1; }
}
.followup-dot {
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}
.followup-step {
    opacity: 0.5;
    transition: opacity 0.3s ease;
}
.bento-card.animate .followup-dot {
    animation: dotActivate 8s ease-in-out infinite;
    animation-delay: var(--dot-delay);
}
.bento-card.animate .followup-step {
    animation: stepActivate 8s ease-in-out infinite;
    animation-delay: var(--step-delay);
}

/* ===== BENTO: REACTIVATION CONTACT ROW ===== */
.contact-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.625rem;
    border-radius: 0.5rem;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: border-color 0.4s ease, background 0.4s ease;
}
.contact-row.calling {
    border-color: #d4d4d8; /* zinc-300 */
    background: #fafafa; /* zinc-50 */
}
.contact-row.calling .contact-dot {
    background: #3b82f6; /* blue-500 */
    box-shadow: 0 0 8px rgba(59, 130, 246, 0.4);
}
.contact-row.calling .contact-status {
    color: #3b82f6; /* blue-500 */
}
.contact-row.booked {
    border-color: rgba(59, 130, 246, 0.15);
    background: #eff6ff; /* blue-50 */
}
.contact-row.booked .contact-dot {
    background: #3b82f6; /* blue-500 */
}
.contact-row.booked .contact-status {
    color: #1d4ed8; /* blue-700 */
}
.contact-row.rejected {
    border-color: rgba(0, 0, 0, 0.04);
    background: #fafafa;
    opacity: 0.5;
}
.contact-row.rejected .contact-dot {
    background: #d4d4d8;
}
.contact-row.rejected .contact-status {
    color: #a1a1aa;
}
.contact-dot {
    transition: background 0.4s ease, box-shadow 0.4s ease;
}

/* ===== BENTO: CHAT BUBBLES (SMS Nurture) ===== */
@keyframes chatBubble {
    0% {
        opacity: 0;
        transform: translateY(10px) scale(0.92);
    }
    10% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
    62% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
    75% {
        opacity: 0;
        transform: translateY(-4px) scale(0.97);
    }
    100% {
        opacity: 0;
    }
}
.animate-chat-bubble {
    opacity: 0;
}
.bento-card.animate .animate-chat-bubble {
    animation: chatBubble 8s ease-out infinite;
}

/* ===== FUNNEL BAR TRANSITION ===== */
.funnel-bar {
    transition: width 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ===== DASHBOARD SHOWCASE ===== */
.dashboard-frame {
    transform: perspective(2000px) rotateX(2deg);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.dashboard-frame:hover {
    transform: perspective(2000px) rotateX(0deg);
}

/* Dashboard metric stagger */
.dash-metric {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.dash-metric.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Call log row stagger */
.dash-row {
    opacity: 0;
    transform: translateX(-12px);
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.dash-row.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Live dot pulse */
@keyframes livePulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.8); }
}
.dash-live-dot {
    animation: livePulse 2s ease-in-out infinite;
}

/* Activity feed items stagger in */
@keyframes activitySlideIn {
    from { opacity: 0; transform: translateX(-8px); }
    to { opacity: 1; transform: translateX(0); }
}
.dash-activity-item.visible {
    animation: activitySlideIn 0.4s ease-out forwards;
}

/* ===== DARK SECTION NOISE ===== */
.noise-overlay {
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px 256px;
    pointer-events: none;
}

/* ===== PHONE v7 ===== */
.pv7-iphone {
    width: 320px;
    height: 652px;
    border-radius: 50px;
    background: linear-gradient(160deg, #3a3a3c 0%, #1c1c1e 40%, #2c2c2e 60%, #3a3a3c 100%);
    padding: 7px;
    position: relative;
    box-shadow:
        inset 0 0 0 1px rgba(255,255,255,0.08),
        0 0 0 1px rgba(0,0,0,0.3),
        0 25px 50px -12px rgba(0,0,0,0.5),
        0 12px 24px -8px rgba(0,0,0,0.3);
}
.pv7-iphone::before {
    content: '';
    position: absolute;
    right: -2px;
    top: 140px;
    width: 3px;
    height: 60px;
    background: linear-gradient(180deg, #2a2a2c, #1a1a1c, #2a2a2c);
    border-radius: 0 1.5px 1.5px 0;
}
.pv7-iphone::after {
    content: '';
    position: absolute;
    left: -2px;
    top: 118px;
    width: 3px;
    height: 30px;
    background: linear-gradient(180deg, #2a2a2c, #1a1a1c, #2a2a2c);
    border-radius: 1.5px 0 0 1.5px;
    box-shadow: 0 42px 0 0 #222224, 0 76px 0 0 #222224;
}
.pv7-screen {
    width: 100%;
    height: 100%;
    border-radius: 44px;
    overflow: hidden;
    position: relative;
    background: #091a13;
}

/* Gradient blobs */
.pv7-blobs {
    position: absolute;
    inset: 0;
    z-index: 1;
    filter: blur(48px) saturate(1.4);
    opacity: 0.85;
}
.pv7-blob { position: absolute; border-radius: 50%; }
.pv7-b1 {
    width: 260px; height: 260px;
    background: radial-gradient(circle, #059669 0%, #065f46 35%, transparent 65%);
    top: 12%; left: -20%;
    animation: pv7-d1 14s ease-in-out infinite;
}
.pv7-b2 {
    width: 220px; height: 220px;
    background: radial-gradient(circle, #0d9488 0%, #115e59 35%, transparent 65%);
    top: 48%; right: -25%;
    animation: pv7-d2 16s ease-in-out infinite;
}
.pv7-b3 {
    width: 190px; height: 190px;
    background: radial-gradient(circle, #10B981 0%, #047857 30%, transparent 60%);
    bottom: 8%; left: 8%;
    animation: pv7-d3 11s ease-in-out infinite;
}
.pv7-b4 {
    width: 150px; height: 150px;
    background: radial-gradient(circle, #134e4a 0%, #0c1f1a 50%, transparent 70%);
    top: 2%; right: 8%;
    animation: pv7-d4 18s ease-in-out infinite;
}
.pv7-b5 {
    width: 170px; height: 170px;
    background: radial-gradient(circle, #065f46 0%, transparent 65%);
    top: 58%; left: 28%;
    animation: pv7-d5 13s ease-in-out infinite;
}
@keyframes pv7-d1 { 0%,100%{transform:translate(0,0) scale(1)} 50%{transform:translate(12px,-8px) scale(1.06)} }
@keyframes pv7-d2 { 0%,100%{transform:translate(0,0) scale(1)} 50%{transform:translate(-16px,10px) scale(1.08)} }
@keyframes pv7-d3 { 0%,100%{transform:translate(0,0) scale(1)} 50%{transform:translate(14px,-6px) scale(1.1)} }
@keyframes pv7-d4 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(-10px,16px)} }
@keyframes pv7-d5 { 0%,100%{transform:translate(0,0) scale(1)} 50%{transform:translate(-8px,-12px) scale(1.04)} }

/* Content layout */
.pv7-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Status bar */
.pv7-statusbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 26px 0;
    height: 50px;
    position: relative;
}
.pv7-time {
    font-family: -apple-system, 'SF Pro Display', 'Helvetica Neue', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: white;
    font-feature-settings: 'tnum';
    letter-spacing: 0.02em;
}
.pv7-notch {
    width: 112px;
    height: 31px;
    background: #000;
    border-radius: 18px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: inset 0 0 3px rgba(0,0,0,0.5), 0 0 1px rgba(255,255,255,0.05);
}
.pv7-notch::after {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: radial-gradient(circle, #1a1a3e 30%, #0a0a1e 100%);
    position: absolute;
    top: 50%;
    right: 28px;
    transform: translateY(-50%);
    box-shadow: inset 0 0 1.5px rgba(60,60,100,0.9), 0 0 2px rgba(50,50,100,0.3);
}
.pv7-icons {
    display: flex;
    align-items: center;
    gap: 5px;
}
.pv7-icon-signal svg { width: 16px; height: 12px; display: block; }
.pv7-icon-wifi svg   { width: 18px; height: 14px; display: block; overflow: visible; }
.pv7-icon-batt svg   { width: 26px; height: 12px; display: block; }

/* Caller */
.pv7-caller {
    padding: 26px 28px 0;
    text-align: center;
}
.pv7-caller-name {
    font-family: -apple-system, 'SF Pro Display', 'Helvetica Neue', sans-serif;
    font-size: 38px;
    font-weight: 300;
    color: white;
    letter-spacing: -0.01em;
    line-height: 1.1;
    text-shadow: 0 1px 4px rgba(0,0,0,0.12);
}
.pv7-caller-sub {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: 5px;
}
.pv7-carrier {
    width: 18px;
    height: 18px;
    background: rgba(255,255,255,0.15);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: -apple-system, 'SF Pro Display', 'Helvetica Neue', sans-serif;
    font-size: 10px;
    font-weight: 700;
    color: rgba(255,255,255,0.6);
}
.pv7-mobile-label {
    font-family: -apple-system, 'SF Pro Display', 'Helvetica Neue', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: rgba(255,255,255,0.42);
}
.pv7-space { flex: 1; }

/* Bottom section */
.pv7-bottom {
    padding: 0 24px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}
.pv7-sec-row {
    display: flex;
    justify-content: center;
    gap: 90px;
}
.pv7-sec-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}
.pv7-sec-btn svg { width: 25px; height: 25px; }
.pv7-sec-label {
    font-family: -apple-system, 'SF Pro Display', 'Helvetica Neue', sans-serif;
    font-size: 11px;
    font-weight: 400;
    color: rgba(255,255,255,0.6);
}

/* Slider */
.pv7-slider-wrap { width: 76%; }
.pv7-slider {
    width: 100%;
    height: 58px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-radius: 29px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}
.pv7-slider-inner {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    padding-left: 4px;
}
.pv7-thumb {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    z-index: 2;
    box-shadow: 0 1px 5px rgba(0,0,0,0.1);
    transition: transform 0.15s ease;
}
.pv7-slider:active .pv7-thumb { transform: scale(0.94); }
.pv7-thumb svg { width: 26px; height: 26px; fill: #30d158; }
.pv7-slider-text {
    position: absolute;
    width: 100%;
    text-align: center;
    font-family: -apple-system, 'SF Pro Display', 'Helvetica Neue', sans-serif;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.01em;
    pointer-events: none;
    padding-left: 20px;
    background: linear-gradient(
        90deg,
        rgba(255,255,255,0.26) 0%,
        rgba(255,255,255,0.26) 30%,
        rgba(255,255,255,0.58) 50%,
        rgba(255,255,255,0.26) 70%,
        rgba(255,255,255,0.26) 100%
    );
    background-size: 280% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: pv7-shimmer 3.5s ease-in-out infinite;
}
@keyframes pv7-shimmer {
    0% { background-position: 130% center; }
    100% { background-position: -30% center; }
}
.pv7-home-ind {
    width: 125px;
    height: 4px;
    background: rgba(255,255,255,0.18);
    border-radius: 2px;
    margin: 14px auto 8px;
}

/* Browser screen variant */
.pv7-screen-browser {
    background: #ffffff;
}
.pv7-screen-browser .pv7-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}
.pv7-statusbar-dark .pv7-time {
    color: #09090b;
}

/* Browser body (form area) */
.pv7-browser-body {
    flex: 1;
    padding: 20px 22px 8px;
    overflow-y: auto;
}
.pv7-browser-body h3 {
    font-family: 'Inter', -apple-system, sans-serif;
    font-size: 18px; font-weight: 700; color: #09090b; margin-bottom: 3px;
}
.pv7-browser-body p {
    font-family: 'Inter', -apple-system, sans-serif;
    font-size: 12.5px; color: #71717a; margin-bottom: 16px; line-height: 1.5;
}
.pv7-field { margin-bottom: 8px; }
.pv7-field label {
    display: block; font-family: 'Inter', -apple-system, sans-serif;
    font-size: 10px; font-weight: 600; color: #a1a1aa;
    margin-bottom: 4px; text-transform: uppercase; letter-spacing: 0.08em;
}
.pv7-field input {
    width: 100%; padding: 11px 13px;
    border: 1px solid #e4e4e7; border-radius: 9px;
    font-family: 'Inter', -apple-system, sans-serif;
    font-size: 14px; color: #09090b; background: #fafafa; outline: none;
    box-sizing: border-box;
}
.pv7-field input:focus { border-color: #a1a1aa; background: white; }
.pv7-field input::placeholder { color: #d4d4d8; }
.pv7-submit-btn {
    width: 100%; padding: 13px; background: rgb(82, 171, 119); color: white;
    border: none; border-radius: 11px;
    font-family: 'Inter', -apple-system, sans-serif;
    font-size: 14px; font-weight: 600; cursor: pointer; margin-top: 4px;
}
.pv7-submit-btn:hover { background: rgb(53, 115, 78); }
.pv7-submit-btn:disabled { opacity: 0.5; cursor: not-allowed; }

/* Safari bottom bar */
.pv7-safari-bottom {
    background: #f8f8f8;
    border-top: 1px solid #e4e4e7;
    padding: 8px 12px 2px;
}
.pv7-url-bar {
    display: flex;
    align-items: center;
    gap: 8px;
}
.pv7-url-aa {
    font-family: 'Inter', -apple-system, sans-serif;
    font-size: 11px;
    font-weight: 600;
    color: #a1a1aa;
    flex-shrink: 0;
}
.pv7-url-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    background: #e4e4e7;
    border-radius: 8px;
    padding: 6px 10px;
    flex: 1;
}
.pv7-url-favicon {
    width: 12px;
    height: 12px;
    object-fit: contain;
    filter: invert(1);
}
.pv7-url-text {
    font-family: 'Inter', -apple-system, sans-serif;
    font-size: 11px;
    color: #09090b;
    font-weight: 500;
}
.pv7-url-reload {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}
.pv7-safari-icons {
    display: flex;
    justify-content: space-around;
    padding: 8px 8px 4px;
}
.pv7-safari-icons svg {
    width: 18px;
    height: 18px;
}

/* ===== FLOATING GLASS NAV ===== */
nav {
    transition: opacity 0.4s ease, transform 0.4s ease;
}
nav.nav-hidden {
    opacity: 0;
    transform: translateY(-20px);
    pointer-events: none;
}

.nav-float {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(16px) saturate(1.4);
    -webkit-backdrop-filter: blur(16px) saturate(1.4);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-top: none;
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.03);
}
nav.nav-scrolled .nav-float {
    background: rgba(255, 255, 255, 0.45);
    border-color: rgba(228, 228, 231, 0.35);
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.05);
}

/* Inverted nav on dark sections */
nav.nav-inverted .nav-float {
    background: rgba(0, 0, 0, 0.35);
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.2);
}
nav.nav-inverted .nav-float img:not(.shift-btn-icon) {
    filter: invert(0) !important;
}
nav.nav-inverted .nav-float .shift-btn-icon {
    filter: invert(1) !important;
}
nav.nav-inverted .nav-float .nav-link {
    color: rgba(255, 255, 255, 0.7);
}
nav.nav-inverted .nav-float .nav-link:hover {
    color: white;
}
nav.nav-inverted .nav-float a[href="for-businesses.html"],
nav.nav-inverted .nav-float a.shift-btn[href="index.html"] {
    background: white;
    color: #09090b;
}

/* ===== HERO ===== */
.hero-section {
    background: linear-gradient(180deg, #fafbfc 0%, #ffffff 40%, #fafafa 100%);
}

.hero-radial {
    position: absolute;
    top: -10%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 70%;
    background: radial-gradient(ellipse 70% 60% at 50% 30%, rgba(16, 185, 129, 0.035) 0%, transparent 100%);
    pointer-events: none;
    z-index: 0;
}

.hero-dot-grid {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at center, rgba(0,0,0,0.03) 1px, transparent 1px);
    background-size: 32px 32px;
    pointer-events: none;
    z-index: 0;
    -webkit-mask-image: radial-gradient(ellipse 60% 50% at 50% 40%, rgba(0,0,0,0.35) 0%, transparent 70%);
    mask-image: radial-gradient(ellipse 60% 50% at 50% 40%, rgba(0,0,0,0.35) 0%, transparent 70%);
}

.hero-gradient-text {
    background: linear-gradient(135deg, #10B981 0%, #059669 50%, #047857 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== RESPONSE TIME VERTICAL BAR CHART ===== */
.response-vchart {
    display: flex;
    align-items: flex-end;
    gap: 0;
    height: 280px;
    position: relative;
}
.response-vchart-yaxis {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    padding-bottom: 2.5rem;
    padding-right: 0.75rem;
    flex-shrink: 0;
}
.response-vchart-yaxis span {
    font-size: 0.75rem;
    font-weight: 500;
    color: #a1a1aa;
    text-align: right;
    min-width: 2rem;
}
.response-vchart-bars {
    display: flex;
    flex: 1;
    align-items: flex-end;
    gap: 0;
    height: 100%;
}
.response-vchart-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    justify-content: flex-end;
}
.response-vchart-bar-wrap {
    width: 60%;
    max-width: 56px;
    flex: 1;
    display: flex;
    align-items: flex-end;
}
.response-vbar {
    width: 100%;
    background: rgb(82, 171, 119);
    border-radius: 6px 6px 0 0;
    transition: height 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    min-height: 4px;
}
.response-vchart-x {
    font-size: 0.75rem;
    color: #71717a;
    text-align: center;
    line-height: 1.3;
    padding-top: 0.625rem;
    height: 2.5rem;
}
.response-vchart-x strong {
    color: #18181b;
    font-weight: 700;
}
.response-vchart-baseline {
    height: 1px;
    background: #e4e4e7;
    margin-top: -2.5rem;
    position: relative;
    z-index: 1;
}
@media (min-width: 640px) {
    .response-vchart { height: 320px; }
    .response-vchart-bar-wrap { max-width: 64px; }
}

/* ===== ACCORDION ===== */
.accordion-item {
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.accordion-item.open {
    border-color: rgb(82, 171, 119);
    box-shadow: 0 4px 24px rgba(82, 171, 119, 0.08), 0 1px 4px rgba(0, 0, 0, 0.03);
}
.accordion-trigger {
    cursor: pointer;
    background: none;
    border: none;
    font-family: inherit;
}
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.accordion-item.open .accordion-content {
    max-height: 500px;
}
.accordion-item.open .accordion-icon {
    transform: rotate(180deg);
    color: rgb(82, 171, 119);
}
.accordion-item.open .agent-num {
    background: rgb(82, 171, 119) !important;
    color: white !important;
}

/* ===== AGENT BARS ===== */
.agent-bars-frame {
    border: 1px solid #e4e4e7;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04), 0 1px 3px rgba(0, 0, 0, 0.02);
}

.agent-bars {
    display: flex;
    overflow: hidden;
}

/* Desktop: horizontal expanding bars */
@media (min-width: 1024px) {
    .agent-bars {
        height: 480px;
    }
    .agent-bar {
        flex: 1;
        padding: 2rem 1.5rem;
        cursor: pointer;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        background: #ffffff;
        border-right: 1px solid #e4e4e7;
        position: relative;
        transition: flex 0.6s cubic-bezier(0.16, 1, 0.3, 1),
                    background 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                    box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .agent-bar:last-child {
        border-right: none;
    }
    .agent-bar:hover,
    .agent-bar.active {
        flex: 3.5;
        background: #fafafa;
        box-shadow: inset 2px 0 0 rgb(82, 171, 119);
    }
    .agent-bar-content {
        margin-top: auto;
        opacity: 0;
        transform: translateY(12px);
        transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1),
                    transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
        pointer-events: none;
        min-width: 260px;
    }
    .agent-bar:hover .agent-bar-content,
    .agent-bar.active .agent-bar-content {
        opacity: 1;
        transform: translateY(0);
        transition-delay: 0.15s;
        pointer-events: auto;
    }
}

/* Mobile: vertical stack */
@media (max-width: 1023px) {
    .agent-bars-frame {
        border-radius: 0;
        border-left: none;
        border-right: none;
    }
    .agent-bars {
        flex-direction: column;
    }
    .agent-bar {
        padding: 1.25rem 1.5rem;
        cursor: pointer;
        overflow: hidden;
        max-height: 72px;
        background: #ffffff;
        border-bottom: 1px solid #e4e4e7;
        transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1),
                    background 0.3s ease;
    }
    .agent-bar:last-child {
        border-bottom: none;
    }
    .agent-bar.active {
        max-height: 380px;
        background: #fafafa;
        box-shadow: inset 3px 0 0 rgb(82, 171, 119);
    }
    .agent-bar-num {
        font-size: 0.75rem !important;
        display: inline;
        margin-right: 0.75rem;
        vertical-align: middle;
    }
    .agent-bar-title {
        display: inline !important;
        margin-top: 0 !important;
        vertical-align: middle;
    }
    .agent-bar-content {
        margin-top: 1rem;
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    .agent-bar.active .agent-bar-content {
        opacity: 1;
        transition-delay: 0.15s;
    }
}

/* Shared element styles */
.agent-bar-num {
    font-size: 0.75rem;
    font-weight: 500;
    font-family: 'Inter', monospace;
    font-variant-numeric: tabular-nums;
    line-height: 1;
    color: #d4d4d8;
    letter-spacing: 0.05em;
    transition: color 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.agent-bar:hover .agent-bar-num,
.agent-bar.active .agent-bar-num {
    color: rgb(82, 171, 119);
}

.agent-bar-title {
    display: block;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #71717a;
    margin-top: 0.5rem;
    transition: color 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.agent-bar:hover .agent-bar-title,
.agent-bar.active .agent-bar-title {
    color: #18181b;
}

.agent-bar-tagline {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #18181b;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.agent-bar-desc {
    font-size: 0.8125rem;
    color: #71717a;
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.agent-bar-steps {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
    padding-top: 1rem;
    border-top: 1px solid #e4e4e7;
}

.agent-bar-step {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 0.75rem;
    color: #a1a1aa;
    font-weight: 500;
}

.agent-bar-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #d4d4d8;
    flex-shrink: 0;
}

/* ===== DEMO PHONE 2-COL OVERRIDE ===== */
.phone-v7-demo {
    transform-origin: top center;
}
@media (min-width: 1024px) {
    .phone-v7-demo {
        transform: scale(0.85) !important;
    }
}
@media (max-width: 1023px) {
    .phone-v7-demo {
        transform: scale(0.8) !important;
    }
}

/* Hero keyword highlight */
.hero-highlight {
    background: rgb(82, 171, 119);
    color: white;
}

/* Glow behind phone mockup */
.phone-hero-glow {
    position: absolute;
    top: -15%;
    left: 50%;
    transform: translateX(-50%);
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, rgba(16, 185, 129, 0.02) 40%, transparent 70%);
    pointer-events: none;
    z-index: 0;
    filter: blur(30px);
}

/* ===== ORIGIN BUTTON (secondary CTA) ===== */
.origin-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.7rem 1.75rem;
    border: 1px solid rgba(212, 212, 216, 0.8);
    background: white;
    overflow: hidden;
    cursor: pointer;
    text-decoration: none;
    transition: border-color 0.3s ease;
}
.origin-btn:hover {
    border-color: rgba(39, 39, 42, 0.4);
}
.origin-btn-label {
    position: relative;
    z-index: 2;
    font-size: 0.875rem;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    color: #18181b;
    transition: color 0.3s ease;
    pointer-events: none;
}
.origin-btn:hover .origin-btn-label {
    color: white;
}
.origin-btn-circle {
    position: absolute;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgb(82, 171, 119);
    transform: translate(-50%, -50%);
    transition: width 0.5s cubic-bezier(0.16, 1, 0.3, 1), height 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
    z-index: 1;
}
.origin-btn:hover .origin-btn-circle {
    width: 300%;
    height: 600px;
}

/* Green variant for dark backgrounds */
.origin-btn-green {
    background: transparent;
    border-color: rgb(82, 171, 119);
}
.origin-btn-green .origin-btn-label {
    color: rgb(82, 171, 119);
}
.origin-btn-green:hover {
    border-color: rgb(82, 171, 119);
}
.origin-btn-green:hover .origin-btn-label {
    color: white;
}

/* Nav variant — black bg, white text, hover fills white */
.origin-btn.origin-btn-nav {
    background: #09090b;
    border-color: #09090b;
    padding: 0.45rem 1.25rem;
    border-radius: 0;
}
.origin-btn.origin-btn-nav .origin-btn-label {
    color: white;
    font-size: 0.75rem;
    letter-spacing: 0.03em;
}
.origin-btn.origin-btn-nav .origin-btn-circle {
    background: white;
}
.origin-btn.origin-btn-nav:hover .origin-btn-label {
    color: #09090b;
}
.origin-btn.origin-btn-nav:hover {
    border-color: #09090b;
}

/* ===== SHIFT BUTTON (primary CTA) ===== */
.shift-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    background: #18181b;
    padding: 0.7rem 1.25rem 0.7rem 2.75rem;
    cursor: pointer;
    text-decoration: none;
    overflow: hidden;
    transition: padding 0.65s cubic-bezier(0, -0.12, 0, 0.98), background 0.2s ease;
}
.shift-btn:hover {
    padding: 0.7rem 2.75rem 0.7rem 1.25rem;
}
.shift-btn-dot,
.shift-btn-icon {
    position: absolute;
    left: 1.1rem;
    width: 12px;
    height: 12px;
    object-fit: contain;
    transition: left 0.65s cubic-bezier(0, -0.12, 0, 0.98);
}
.shift-btn-dot {
    background: white;
}
.shift-btn:hover .shift-btn-dot,
.shift-btn:hover .shift-btn-icon {
    left: calc(100% - 1.1rem - 12px);
}
.shift-btn-label {
    color: white;
    font-size: 0.8125rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    white-space: nowrap;
}

/* Small variant for nav */
.shift-btn-sm {
    padding: 0.45rem 1rem 0.45rem 2.25rem;
}
.shift-btn-sm:hover {
    padding: 0.45rem 2.25rem 0.45rem 1rem;
}
.shift-btn-sm .shift-btn-dot,
.shift-btn-sm .shift-btn-icon {
    width: 14px;
    height: 14px;
    left: 0.85rem;
}
.shift-btn-sm:hover .shift-btn-dot,
.shift-btn-sm:hover .shift-btn-icon {
    left: calc(100% - 0.85rem - 14px);
}
.shift-btn-sm .shift-btn-label {
    font-size: 0.6875rem;
}

/* Green variant for pre-footer CTA */
.shift-btn-green {
    background: transparent;
    border: 1.5px solid rgb(82, 171, 119);
}
.shift-btn-green:hover {
    background: white;
}
.shift-btn-dot-green {
    background: rgb(82, 171, 119);
}
.shift-btn-label-green {
    color: rgb(82, 171, 119);
}
.shift-btn-green:hover .shift-btn-label-green {
    color: rgb(53, 115, 78);
}
.shift-btn-green:hover .shift-btn-dot-green {
    background: rgb(53, 115, 78);
}

/* Nav inverted shift button */
nav.nav-inverted .shift-btn {
    background: white;
}
nav.nav-inverted .shift-btn-dot {
    background: #09090b;
}
nav.nav-inverted .shift-btn-label {
    color: #09090b;
}
nav.nav-inverted .shift-btn-icon {
    filter: invert(1);
}

/* ===== BOTTOM BLUR BAR ===== */
.bottom-blur-bar {
    position: fixed;
    bottom: 0;
    left: -1px;
    right: -1px;
    height: 120px;
    z-index: 40;
    pointer-events: none;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

/* Stacked blur layers — each covers full height, masked to its zone */
.bottom-blur-layer {
    position: absolute;
    inset: 0;
    /* Prevent subpixel gaps on mobile WebKit */
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}
.bottom-blur-layer:nth-child(1) {
    backdrop-filter: blur(1px);
    -webkit-backdrop-filter: blur(1px);
    mask-image: linear-gradient(to bottom, transparent 0%, black 100%);
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 100%);
}
.bottom-blur-layer:nth-child(2) {
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    mask-image: linear-gradient(to bottom, transparent 10%, black 100%);
    -webkit-mask-image: linear-gradient(to bottom, transparent 10%, black 100%);
}
.bottom-blur-layer:nth-child(3) {
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    mask-image: linear-gradient(to bottom, transparent 30%, black 100%);
    -webkit-mask-image: linear-gradient(to bottom, transparent 30%, black 100%);
}
.bottom-blur-layer:nth-child(4) {
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    mask-image: linear-gradient(to bottom, transparent 50%, black 100%);
    -webkit-mask-image: linear-gradient(to bottom, transparent 50%, black 100%);
}
.bottom-blur-layer:nth-child(5) {
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    mask-image: linear-gradient(to bottom, transparent 70%, black 100%);
    -webkit-mask-image: linear-gradient(to bottom, transparent 70%, black 100%);
}

/* Hide blur bar on dark sections */
.bottom-blur-bar.inverted {
    display: none;
}

.bottom-blur-hatch {
    display: none;
}

/* ===== FOOTER ===== */
#footer {
    overflow: hidden;
}

/* ===== CORNER CLIP TRANSITION ===== */
.corner-clip-black {
    position: absolute;
    inset: 0;
    bottom: -1px;
    background: transparent;
    clip-path: polygon(0 0, calc(100% - 80px) 0, 100% 100%, 0 100%);
}

/* ===== CONTACT MODAL ===== */
.contact-overlay {
    position: fixed;
    inset: 0;
    z-index: 60;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.contact-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

.contact-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.contact-panel {
    position: relative;
    width: 100%;
    max-width: 28rem;
    margin: 0 1.25rem;
    padding: 2rem 2rem 1.75rem;
    background: linear-gradient(145deg, rgba(255,255,255,0.55) 0%, rgba(255,255,255,0.35) 100%);
    backdrop-filter: blur(24px) saturate(1.8);
    -webkit-backdrop-filter: blur(24px) saturate(1.8);
    border: 1px solid rgba(255,255,255,0.6);
    border-radius: 0;
    box-shadow:
        0 0 0 0.5px rgba(0,0,0,0.03),
        0 8px 40px rgba(0,0,0,0.12),
        inset 0 1px 0 rgba(255,255,255,0.7);
    transform: translateY(16px);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.contact-overlay.open .contact-panel {
    transform: translateY(0);
}

.contact-input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(161, 161, 170, 0.4);
    border-radius: 0;
    padding: 0.625rem 0;
    font-size: 0.875rem;
    font-family: 'Inter', sans-serif;
    color: #09090b;
    outline: none;
    transition: border-color 0.2s ease;
}
.contact-input::placeholder {
    color: #27272a;
}
.contact-input:focus {
    border-bottom-color: #10B981;
}

.contact-select {
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23a1a1aa' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0 center;
}
.contact-select option {
    background: white;
    color: #09090b;
}

.contact-submit {
    background: transparent;
    color: #09090b;
    border: 1px solid rgba(82, 82, 91, 0.6);
    border-radius: 0;
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease;
    margin-top: 0.5rem;
}
.contact-submit:hover {
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(39, 39, 42, 0.8);
}
.contact-submit:disabled {
    opacity: 0.7;
    cursor: default;
}

/* ===== MOBILE MENU ===== */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 60;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.mobile-menu.open {
    opacity: 1;
    visibility: visible;
}
.mobile-menu-inner {
    position: relative;
    height: 100%;
}
.mobile-menu-link {
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.3s ease, transform 0.3s ease, color 0.2s ease;
}
.mobile-menu.open .mobile-menu-link {
    opacity: 1;
    transform: translateY(0);
}
.mobile-menu.open .mobile-menu-link:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.open .mobile-menu-link:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu.open .mobile-menu-link:nth-child(3) { transition-delay: 0.2s; }

/* ===== MOBILE OPTIMIZATIONS ===== */
@media (max-width: 768px) {
    /* Nav: hide text links, keep logo + hamburger */
    nav .nav-link {
        display: none;
    }
    nav .nav-float {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    nav.nav-inverted .nav-float {
        background: rgba(255, 255, 255, 0.25);
        border: 1px solid rgba(255, 255, 255, 0.3);
        border-top: none;
        box-shadow: 0 1px 8px rgba(0, 0, 0, 0.03);
    }
    nav.nav-inverted .nav-float img:not(.shift-btn-icon) {
        filter: invert(1) !important;
    }
    nav.nav-inverted .nav-float #mobile-menu-btn {
        color: #52525b;
    }

    /* Hero: tighter spacing */
    .hero-section {
        padding-top: 6rem;
        padding-bottom: 3rem;
    }

    /* Hide corner clip transition on mobile */
    #gradient-transition {
        display: none !important;
    }

    /* Contact panel: full-screen on mobile */
    .contact-panel {
        margin: 0;
        max-width: 100%;
        height: 100%;
        padding: 1.5rem;
        overflow-y: auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    /* Contact form: bigger touch targets */
    .contact-input {
        padding: 0.75rem 0;
        font-size: 1rem;
        min-height: 44px;
    }
    .contact-submit {
        padding: 0.875rem 1.5rem;
        min-height: 48px;
        font-size: 1rem;
    }

    /* Bottom blur bar: thinner on mobile */
    .bottom-blur-bar {
        height: 40px;
    }
    .bottom-blur-hatch-left,
    .bottom-blur-hatch-right {
        display: none;
    }

    /* Phone mockup: scale for mobile */
    .phone-v7 {
        transform: scale(0.85) !important;
    }

    /* Dashboard: reduce padding */
    #dashboard-live {
        padding: 1rem !important;
    }

    /* Dashboard: smaller metric values */
    .dash-metric .text-2xl {
        font-size: 1.125rem;
    }
    .dash-metric {
        padding: 0.75rem !important;
    }

    /* Audio play buttons: touch-friendly */
    .audio-play-btn {
        min-height: 40px;
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
    }

    /* Shift button: slightly smaller */
    .shift-btn-sm {
        padding: 0.4rem 0.85rem 0.4rem 2rem;
    }
    .shift-btn-sm:hover {
        padding: 0.4rem 2rem 0.4rem 0.85rem;
    }
    .shift-btn-sm .shift-btn-label {
        font-size: 0.6rem;
    }

    /* Origin button green: smaller padding */
    .origin-btn-green {
        padding: 0.6rem 1.25rem;
    }

    /* Response chart: mobile sizing */
    .response-vchart {
        height: 200px;
    }
    .response-vchart-yaxis span {
        font-size: 0.625rem;
        min-width: 1.5rem;
    }
    .response-vchart-yaxis {
        padding-right: 0.5rem;
    }
    .response-vchart-bar-wrap {
        width: 70%;
    }
    .response-vchart-x {
        font-size: 0.625rem;
        padding-top: 0.375rem;
        height: 2rem;
    }
    .response-vchart-baseline {
        margin-top: -2rem;
    }

    /* Agent bars: better mobile readability */
    .agent-bar-num {
        font-size: 0.875rem !important;
    }
    .agent-bar-title {
        font-size: 0.75rem !important;
    }
    .agent-bar-tagline {
        font-size: 0.875rem;
    }
    .agent-bar-desc {
        font-size: 0.8125rem;
        line-height: 1.5;
    }
    .agent-bar-step {
        font-size: 0.75rem;
    }

    /* Prevent horizontal scroll */
    body {
        overflow-x: hidden;
    }
}

/* Hide corner clip on tablet too */
@media (max-width: 1024px) {
    #gradient-transition {
        display: none !important;
    }
}

/* Extra small screens */
@media (max-width: 375px) {
    .hero-section {
        padding-top: 5.5rem;
    }
    .hero-section h1 span {
        font-size: 2.25rem;
    }
    .phone-v7 {
        transform: scale(0.78) !important;
    }
    .response-vchart {
        height: 170px;
    }
    .dash-metric .text-2xl {
        font-size: 1rem;
    }
}
