/* ==========================================================================
   DESIGN SYSTEM & VARIABLES
   ========================================================================== */
:root {
    /* Color Palette: Sage, Mint, Slate, Charcoal (No purple, no single-tone dark blue, no beige) */
    --bg-main: #f3f7f5;           /* Very light soft sage-gray background */
    --card-bg: #ffffff;           /* Clean white card background */
    --text-primary: #1c2e28;      /* Deep forest charcoal for main text */
    --text-secondary: #4a5d56;    /* Muted sage-slate for subtext */
    --accent-mint: #38b000;       /* Vibrant but professional mint green for active states */
    --accent-sage: #588157;       /* Calm sage green for primary actions */
    --accent-sage-dark: #3a5a40;  /* Darker sage for hover states */
    --accent-sage-light: #e9f0ec; /* Light tint of sage for background highlights */
    --border-color: #d8e2dc;      /* Light border color */
    
    /* Emergency & Alert colors */
    --emergency-red: #d90429;
    --emergency-bg: #fdf0f2;
    --emergency-border: #f8ccd4;
    
    /* Shadows & Border Radii */
    --shadow-sm: 0 2px 4px rgba(28, 46, 40, 0.05);
    --shadow-md: 0 10px 20px rgba(28, 46, 40, 0.08);
    --shadow-lg: 0 20px 40px rgba(28, 46, 40, 0.12);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    
    /* Transitions */
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================================================
   BASE STYLES & TYPOGRAPHY
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: var(--bg-main);
    color: var(--text-primary);
    line-height: 1.6;
    padding: 40px 20px;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* App wrapper for layout */
.app-container {
    width: 100%;
    max-width: 680px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

/* ==========================================================================
   PRIMARY SCREEN: VOICE SESSION CARD
   ========================================================================== */
.voice-session-card {
    background-color: var(--card-bg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 32px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

/* Subtle decorative top border */
.voice-session-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--accent-sage), var(--accent-mint));
}

.session-header {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.operator-badge {
    align-self: flex-start;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--accent-sage-dark);
    background-color: var(--accent-sage-light);
    padding: 4px 12px;
    border-radius: 20px;
}

.session-title {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.session-subtitle {
    font-size: 15px;
    color: var(--text-secondary);
}

/* ==========================================================================
   CONSENT BOXES
   ========================================================================== */
.consent-card {
    background-color: var(--accent-sage-light);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: var(--transition-smooth);
}

.consent-info-text {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
}

/* Custom Checkbox Design */
.checkbox-container {
    display: block;
    position: relative;
    padding-left: 32px;
    cursor: pointer;
    font-size: 13px;
    color: var(--text-secondary);
    user-select: none;
    line-height: 1.4;
}

.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 2px;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #fff;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    transition: var(--transition-smooth);
}

.checkbox-container:hover input ~ .checkmark {
    border-color: var(--accent-sage);
}

.checkbox-container input:checked ~ .checkmark {
    background-color: var(--accent-sage);
    border-color: var(--accent-sage);
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox-container input:checked ~ .checkmark:after {
    display: block;
}

.checkbox-container .checkmark:after {
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-label {
    display: inline-block;
}

/* ==========================================================================
   LIVE VOICE WIDGET PANEL
   ========================================================================== */
.voice-panel {
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 22px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    background: #fbfdfc;
}

.panel-head {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: flex-start;
}

.panel-head h2 {
    font-size: 18px;
    line-height: 1.25;
}

.panel-head p {
    color: var(--text-secondary);
    font-size: 13px;
    margin-top: 4px;
}

.status-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: var(--accent-mint);
    box-shadow: 0 0 0 6px rgba(56, 176, 0, 0.12);
    flex: 0 0 auto;
    margin-top: 8px;
}

.voice-widget-frame {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    padding: 10px 0 0;
}

#blob-container {
    width: 180px;
    height: 180px;
    min-width: 180px;
    min-height: 180px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

#blob-container::before {
    content: "";
    width: 88px;
    height: 88px;
    border-radius: 999px;
    background: radial-gradient(circle, var(--accent-mint) 0%, var(--accent-sage-dark) 100%);
    box-shadow: 0 0 34px rgba(56, 176, 0, 0.28);
}

#blob-container.voice-module-loaded::before {
    display: none;
}

.blob-fallback {
    isolation: isolate;
}

.blob-fallback-core {
    width: 124px;
    height: 124px;
    border-radius: 999px;
    position: relative;
    background:
        radial-gradient(circle at 35% 28%, rgba(255, 255, 255, 0.92) 0 8%, rgba(255, 255, 255, 0) 30%),
        radial-gradient(circle at 58% 64%, rgba(56, 176, 0, 0.72), rgba(88, 129, 87, 0.96) 58%, rgba(58, 90, 64, 1) 100%);
    box-shadow:
        0 0 0 18px rgba(88, 129, 87, 0.08),
        0 0 0 40px rgba(56, 176, 0, 0.05),
        0 24px 55px rgba(28, 46, 40, 0.22),
        inset 0 -18px 36px rgba(28, 46, 40, 0.18),
        inset 0 16px 28px rgba(255, 255, 255, 0.18);
    transform: translateZ(0);
    animation: blobBreath 3.6s ease-in-out infinite;
}

.blob-fallback-core::before,
.blob-fallback-core::after {
    content: "";
    position: absolute;
    inset: -18px;
    border-radius: inherit;
    border: 1px solid rgba(88, 129, 87, 0.22);
    animation: blobRing 3.6s ease-out infinite;
    z-index: -1;
}

.blob-fallback-core::after {
    inset: -36px;
    border-color: rgba(56, 176, 0, 0.14);
    animation-delay: 1.2s;
}

#blob-container[data-state="idle"] .blob-fallback-core,
#blob-container[data-state="disconnected"] .blob-fallback-core {
    animation-duration: 4.8s;
    filter: saturate(0.88);
}

#blob-container[data-state="connecting"] .blob-fallback-core,
#blob-container[data-state="connected"] .blob-fallback-core {
    animation-duration: 2.6s;
    box-shadow:
        0 0 0 20px rgba(88, 129, 87, 0.1),
        0 0 0 48px rgba(56, 176, 0, 0.06),
        0 24px 55px rgba(28, 46, 40, 0.24),
        inset 0 -18px 36px rgba(28, 46, 40, 0.18),
        inset 0 16px 28px rgba(255, 255, 255, 0.18);
}

#blob-container[data-state="listening"] .blob-fallback-core {
    animation: blobListen 1.6s ease-in-out infinite;
}

#blob-container[data-state="speaking"] .blob-fallback-core {
    animation: blobSpeak 0.9s ease-in-out infinite;
    background:
        radial-gradient(circle at 35% 28%, rgba(255, 255, 255, 0.9) 0 8%, rgba(255, 255, 255, 0) 30%),
        radial-gradient(circle at 58% 64%, rgba(80, 205, 110, 0.8), rgba(56, 176, 0, 0.98) 56%, rgba(58, 90, 64, 1) 100%);
}

#bot-audio {
    display: none;
}

.compat-warning {
    display: none;
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--emergency-border);
    border-radius: var(--radius-sm);
    background: var(--emergency-bg);
    color: #5f0f1a;
    font-size: 13px;
}

.compat-warning.visible {
    display: block;
}

.compat-warning strong,
.compat-warning span {
    display: block;
    margin-bottom: 4px;
}

.compat-warning a {
    color: var(--emergency-red);
    font-weight: 700;
}

.session-timer {
    font-size: 24px;
    font-weight: 700;
    font-feature-settings: "tnum";
    letter-spacing: 0.05em;
    color: var(--text-secondary);
    background-color: var(--bg-main);
    padding: 6px 16px;
    border-radius: 30px;
    border: 1px solid var(--border-color);
}

.controls {
    display: flex;
    justify-content: center;
    gap: 12px;
    width: 100%;
    flex-wrap: wrap;
}

/* Voice Blob & Animation */
.blob-container {
    position: relative;
    width: 160px;
    height: 160px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px 0;
}

.voice-blob-core {
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, var(--accent-sage) 0%, var(--accent-sage-dark) 100%);
    border-radius: 50%;
    z-index: 3;
    box-shadow: 0 0 20px rgba(88, 129, 87, 0.4);
    transition: var(--transition-smooth);
}

.voice-blob-ring {
    position: absolute;
    width: 110px;
    height: 110px;
    border: 2px solid var(--accent-sage);
    border-radius: 50%;
    opacity: 0.3;
    z-index: 2;
    transition: var(--transition-smooth);
}

.voice-blob-ring-inner {
    position: absolute;
    width: 140px;
    height: 140px;
    border: 1px dashed var(--accent-sage);
    border-radius: 50%;
    opacity: 0.15;
    z-index: 1;
    transition: var(--transition-smooth);
}

/* Active Blob State (Pulse animation) */
.blob-container.active .voice-blob-core {
    animation: blobPulse 2s infinite ease-in-out;
    background: radial-gradient(circle, var(--accent-mint) 0%, var(--accent-sage) 100%);
    box-shadow: 0 0 30px rgba(56, 176, 0, 0.5);
}

.blob-container.active .voice-blob-ring {
    animation: ringPulse 2s infinite cubic-bezier(0.215, 0.610, 0.355, 1);
    border-color: var(--accent-mint);
}

.blob-container.active .voice-blob-ring-inner {
    animation: ringPulseInner 3s infinite linear;
    border-color: var(--accent-mint);
}

/* Listening State (Waveform bars animate) */
.waveform-bars {
    position: absolute;
    bottom: -15px;
    display: flex;
    gap: 4px;
    height: 24px;
    align-items: center;
    opacity: 0;
    transition: var(--transition-smooth);
    z-index: 4;
}

.blob-container.active .waveform-bars {
    opacity: 1;
}

.bar {
    width: 4px;
    height: 8px;
    background-color: var(--accent-mint);
    border-radius: 2px;
    transition: var(--transition-smooth);
}

/* Dynamic height animations for active speaking */
.blob-container.speaking .bar:nth-child(1) { animation: wave 0.6s infinite ease-in-out alternate; }
.blob-container.speaking .bar:nth-child(2) { animation: wave 0.9s infinite ease-in-out alternate 0.15s; }
.blob-container.speaking .bar:nth-child(3) { animation: wave 0.7s infinite ease-in-out alternate 0.3s; }
.blob-container.speaking .bar:nth-child(4) { animation: wave 0.8s infinite ease-in-out alternate 0.05s; }
.blob-container.speaking .bar:nth-child(5) { animation: wave 0.5s infinite ease-in-out alternate 0.2s; }

.status-text {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-secondary);
    text-align: center;
    min-height: 24px;
}

/* Busy Banner */
.busy-banner {
    display: flex;
    align-items: center;
    gap: 12px;
    background-color: #fff9db;
    border: 1px solid #ffe066;
    border-radius: var(--radius-sm);
    padding: 12px 20px;
    width: 100%;
}

.busy-text {
    font-size: 13px;
    color: #f59f00;
    font-weight: 500;
}

/* ==========================================================================
   BUTTONS & CONTROLS
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: inherit;
    font-size: 16px;
    font-weight: 600;
    padding: 16px 32px;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    width: 100%;
    max-width: 320px;
    text-align: center;
}

.btn-connect {
    background-color: var(--accent-sage);
    color: #fff;
    box-shadow: 0 4px 12px rgba(88, 129, 87, 0.2);
}

.btn-connect:hover:not(:disabled) {
    background-color: var(--accent-sage-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(58, 90, 64, 0.3);
}

.btn-connect:disabled {
    background-color: #cbd5e1;
    color: #94a3b8;
    cursor: not-allowed;
    box-shadow: none;
}

.btn-disconnect {
    background-color: #475569;
    color: #fff;
    box-shadow: 0 4px 12px rgba(71, 85, 105, 0.15);
}

.btn-disconnect:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.btn-disconnect:hover {
    background-color: #334155;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(51, 65, 85, 0.25);
}

.btn-safety {
    background-color: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
    font-size: 13px;
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    width: auto;
    font-weight: 500;
    box-shadow: none;
}

.btn-safety:hover {
    background-color: var(--emergency-bg);
    color: var(--emergency-red);
    border-color: var(--emergency-border);
}

.btn-submit {
    background-color: var(--accent-sage-dark);
    color: #fff;
    width: 100%;
    max-width: none;
}

.btn-submit:hover {
    background-color: var(--text-primary);
    transform: translateY(-1px);
}

/* ==========================================================================
   CHAT LOG IN MVP (FOR ENGAGEMENT PROOF)
   ========================================================================== */
.assistant-chat-log {
    background-color: var(--accent-sage-light);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    padding: 20px;
    max-height: 220px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.chat-log-title {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-secondary);
    letter-spacing: 0.05em;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 8px;
}

.chat-messages {
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-size: 13px;
    padding-right: 6px;
}

/* Chat scrollbar customization */
.chat-messages::-webkit-scrollbar {
    width: 4px;
}
.chat-messages::-webkit-scrollbar-track {
    background: transparent;
}
.chat-messages::-webkit-scrollbar-thumb {
    background-color: var(--border-color);
    border-radius: 4px;
}

.chat-msg {
    padding: 8px 12px;
    border-radius: 12px;
    max-width: 85%;
}

.chat-msg.bot {
    background-color: #fff;
    color: var(--text-primary);
    align-self: flex-start;
    border-bottom-left-radius: 2px;
    border: 1px solid var(--border-color);
}

.chat-msg.user {
    background-color: var(--accent-sage);
    color: #fff;
    align-self: flex-end;
    border-bottom-right-radius: 2px;
}

/* ==========================================================================
   SAFETY & CRISIS BLOCK
   ========================================================================== */
.safety-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-top: 10px;
}

.crisis-info-block {
    background-color: var(--emergency-bg);
    border: 1px solid var(--emergency-border);
    border-radius: var(--radius-md);
    padding: 24px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: left;
    animation: slideDown 0.3s ease-out;
}

.crisis-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--emergency-red);
}

.crisis-desc {
    font-size: 13px;
    color: #5f0f1a;
}

.crisis-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 13px;
    color: var(--text-primary);
}

.crisis-org {
    font-weight: 600;
}

.crisis-phone {
    color: var(--emergency-red);
    text-decoration: none;
    font-weight: 700;
    border-bottom: 1px dashed var(--emergency-red);
}

.crisis-phone:hover {
    border-bottom-style: solid;
}

.disclaimer-text {
    font-size: 11px;
    color: var(--text-secondary);
    text-align: center;
    line-height: 1.5;
}

/* ==========================================================================
   CTA BOOKING CARD (VISIBLE AFTER SESSION)
   ========================================================================== */
.cta-card {
    background-color: var(--card-bg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    animation: fadeIn 0.5s ease-out;
}

.cta-badge {
    align-self: flex-start;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #fff;
    background-color: var(--accent-mint);
    padding: 4px 12px;
    border-radius: 20px;
}

.cta-title {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.3;
}

.cta-subtitle {
    font-size: 14px;
    color: var(--text-secondary);
}

/* Booking Form Elements */
.booking-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 10px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
}

.form-group input,
.form-group textarea {
    font-family: inherit;
    font-size: 14px;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
    background-color: #fff;
    color: var(--text-primary);
    transition: var(--transition-smooth);
    width: 100%;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-sage);
    box-shadow: 0 0 0 3px rgba(88, 129, 87, 0.15);
}

.form-consent-group {
    margin: 8px 0;
}

.booking-success {
    background-color: var(--accent-sage-light);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 8px;
    animation: scaleIn 0.3s ease-out;
}

.booking-success h3 {
    color: var(--accent-sage-dark);
    font-size: 18px;
    font-weight: 700;
}

.booking-success p {
    font-size: 14px;
    color: var(--text-secondary);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.app-footer {
    text-align: center;
    font-size: 11px;
    color: var(--text-secondary);
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 20px 0;
}

.legal-link {
    color: var(--text-secondary);
    text-decoration: none;
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition-smooth);
}

.legal-link:hover {
    color: var(--text-primary);
    border-bottom-color: var(--text-primary);
}

/* ==========================================================================
   ANIMATIONS & UTILITIES
   ========================================================================== */
.hidden {
    display: none !important;
}

@keyframes blobPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.08); }
    100% { transform: scale(1); }
}

@keyframes ringPulse {
    0% { transform: scale(1); opacity: 0.4; }
    100% { transform: scale(1.3); opacity: 0; }
}

@keyframes ringPulseInner {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes wave {
    0% { height: 6px; }
    100% { height: 20px; }
}

@keyframes blobBreath {
    0%, 100% { transform: scale(0.96) rotate(0deg); border-radius: 58% 42% 48% 52% / 48% 52% 58% 42%; }
    50% { transform: scale(1.04) rotate(2deg); border-radius: 44% 56% 55% 45% / 55% 45% 44% 56%; }
}

@keyframes blobListen {
    0%, 100% { transform: scale(1) translateY(0); border-radius: 56% 44% 46% 54% / 50% 52% 48% 50%; }
    50% { transform: scale(1.08) translateY(-2px); border-radius: 45% 55% 57% 43% / 58% 43% 57% 42%; }
}

@keyframes blobSpeak {
    0%, 100% { transform: scale(1.02); border-radius: 52% 48% 44% 56% / 44% 58% 42% 56%; }
    33% { transform: scale(1.14) translateY(-3px); border-radius: 44% 56% 58% 42% / 54% 46% 58% 42%; }
    66% { transform: scale(0.98) translateY(2px); border-radius: 60% 40% 48% 52% / 44% 56% 42% 58%; }
}

@keyframes blobRing {
    0% { transform: scale(0.78); opacity: 0.4; }
    100% { transform: scale(1.32); opacity: 0; }
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

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

@keyframes scaleIn {
    from { transform: scale(0.95); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/* ==========================================================================
   RESPONSIVENESS (MEDIA QUERIES)
   ========================================================================== */
@media (max-width: 600px) {
    body {
        padding: 12px;
        align-items: flex-start;
    }
    
    .voice-session-card {
        padding: 20px 16px;
        gap: 16px;
    }

    .session-header {
        gap: 8px;
    }
    
    .session-title {
        font-size: 21px;
    }

    .session-subtitle {
        font-size: 14px;
        line-height: 1.45;
    }

    .operator-badge {
        font-size: 10px;
        line-height: 1.3;
        padding: 4px 10px;
    }

    .consent-card {
        padding: 14px;
        gap: 10px;
    }

    .consent-info-text,
    .checkbox-container {
        font-size: 12px;
    }

    .widget-work-area {
        gap: 14px;
        padding: 6px 0 0;
    }

    .voice-panel {
        padding: 14px;
        gap: 14px;
    }

    .voice-widget-frame {
        gap: 12px;
    }

    .session-timer {
        font-size: 21px;
        padding: 4px 14px;
    }
    
    .cta-card {
        padding: 24px 16px;
    }
    
    .btn {
        padding: 14px 24px;
        font-size: 15px;
    }
    
    #blob-container {
        width: 112px;
        height: 112px;
        min-width: 112px;
        min-height: 112px;
        margin: 0;
    }

    #blob-container::before {
        width: 58px;
        height: 58px;
    }

    .blob-fallback-core {
        width: 86px;
        height: 86px;
        box-shadow:
            0 0 0 12px rgba(88, 129, 87, 0.08),
            0 0 0 28px rgba(56, 176, 0, 0.05),
            0 18px 38px rgba(28, 46, 40, 0.2),
            inset 0 -12px 26px rgba(28, 46, 40, 0.18),
            inset 0 12px 20px rgba(255, 255, 255, 0.18);
    }
    
    .voice-blob-core {
        width: 58px;
        height: 58px;
    }
    
    .voice-blob-ring {
        width: 78px;
        height: 78px;
    }
    
    .voice-blob-ring-inner {
        width: 96px;
        height: 96px;
    }

    .status-text {
        font-size: 13px;
    }

    .controls-area {
        margin-top: 0;
    }

    .disclaimer-text {
        font-size: 11px;
    }
}
