/* ===========================
   HARVESTIFY — style.css
   Palette: Medium Sage Green + Off-White
   =========================== */

:root {
    --sage: #6B8F71;
    --sage-dark: #3E5E44;
    --sage-light: #A8C5AD;
    --sage-xlight: #D6E8D9;
    --sage-pale: #EEF5EF;
    --off-white: #F7F5F0;
    --cream: #FDFCF8;
    --ink: #1A1E1B;
    --ink-soft: #3A4040;
    --muted: #8A9B8E;
    --border: #D4E0D6;
    --font-display: 'Syne', sans-serif;
    --font-body: 'Inter', sans-serif;
    --radius-sm: 10px;
    --radius-md: 18px;
    --radius-lg: 28px;
    --radius-full: 999px;
    --shadow-sm: 0 2px 12px rgba(60, 90, 65, 0.08);
    --shadow-md: 0 8px 32px rgba(60, 90, 65, 0.12);
    --shadow-lg: 0 20px 60px rgba(60, 90, 65, 0.18);
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--off-white);
    color: var(--ink);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.65;
    overflow-x: hidden;
}

/* ── HEADER ── */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(247, 245, 240, 0.92);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.logo-leaf {
    font-size: 1.4rem;
}

.logo-name {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--sage-dark);
    letter-spacing: -0.5px;
}

.header-nav {
    display: flex;
    gap: 2rem;
}

.header-nav a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--ink-soft);
    text-decoration: none;
    transition: color 0.2s;
}

.header-nav a:hover {
    color: var(--sage-dark);
}

/* ── HERO ── */
.hero {
    min-height: 88vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2rem 4rem;
}

.hero-eyebrow {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--sage);
    margin-bottom: 1rem;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.05;
    color: var(--ink);
    margin-bottom: 1.5rem;
    letter-spacing: -1.5px;
}

.hero-accent {
    color: var(--sage-dark);
    position: relative;
}

.hero-accent::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--sage-light);
    border-radius: 2px;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--ink-soft);
    max-width: 480px;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--sage-dark);
    color: white;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    padding: 0.9rem 2rem;
    border-radius: var(--radius-full);
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background: var(--sage);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* ── GLOBE ── */
.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* CHANGED: soft diffused aura blob — not a perfect circle */
.globe-wrap {
    position: relative;
    width: 400px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
}

.globe-wrap::before {
    content: '';
    position: absolute;
    /* Slightly off-center and non-circular to match the organic blob look */
    width: 115%;
    height: 108%;
    top: 50%;
    left: 50%;
    transform: translate(-52%, -48%);
    background: radial-gradient(ellipse at 48% 52%, #0a1f5e 0%, #1a3a8f 30%, #2a52b0 55%, transparent 75%);
    border-radius: 44% 56% 52% 48% / 48% 44% 56% 52%;
    filter: blur(38px);
    opacity: 0.55;
    z-index: 0;
    pointer-events: none;
}

#globeCanvas {
    border-radius: 50%;
    display: block;
    position: relative;
    z-index: 1;
    background: transparent;
}

/* ── FLOATING PILLS ── */
.floating-pill {
    position: absolute;
    background: white;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-full);
    padding: 0.5rem 1.1rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--sage-dark);
    box-shadow: var(--shadow-sm);
    white-space: nowrap;
    animation: floatPill 4s ease-in-out infinite;
    z-index: 2;
}

.pill-1 {
    top: 12%;
    left: -8%;
    animation-delay: 0s;
}

.pill-2 {
    top: 48%;
    right: -12%;
    animation-delay: 1.3s;
}

.pill-3 {
    bottom: 12%;
    left: -4%;
    animation-delay: 0.7s;
}

@keyframes floatPill {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* ── CROP TICKER ── */
.crop-scroll-section {
    background: var(--sage-dark);
    padding: 2rem 0;
    overflow: hidden;
}

.scroll-label {
    text-align: center;
    color: var(--sage-xlight);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.crop-ticker-wrapper {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.crop-ticker-wrapper::before,
.crop-ticker-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
}

.crop-ticker-wrapper::before {
    left: 0;
    background: linear-gradient(to right, var(--sage-dark), transparent);
}

.crop-ticker-wrapper::after {
    right: 0;
    background: linear-gradient(to left, var(--sage-dark), transparent);
}

.crop-ticker {
    display: flex;
    gap: 1.5rem;
    animation: tickerScroll 40s linear infinite;
    width: max-content;
}

.crop-ticker:hover {
    animation-play-state: paused;
}

@keyframes tickerScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.crop-card-mini {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-md);
    padding: 1.2rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    min-width: 160px;
    transition: background 0.2s, transform 0.2s;
    cursor: default;
}

.crop-card-mini:hover {
    background: rgba(255, 255, 255, 0.14);
    transform: translateY(-4px);
}

.crop-card-mini .mini-emoji {
    font-size: 2.4rem;
}

.crop-card-mini .mini-name {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.9rem;
    color: white;
    text-align: center;
}

.crop-card-mini .mini-tag {
    font-size: 0.72rem;
    color: var(--sage-light);
    text-align: center;
}

/* ── ABOUT ── */
.about-section {
    padding: 7rem 2rem;
    background: var(--cream);
}

.about-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 5rem;
    align-items: start;
}

.section-eyebrow {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--sage);
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--ink);
    margin-bottom: 1.5rem;
    letter-spacing: -0.8px;
}

.section-title em {
    font-style: normal;
    color: var(--sage-dark);
}

.about-body {
    color: var(--ink-soft);
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
}

.stat-card {
    background: var(--off-white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-md);
    padding: 1.8rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.stat-card:hover {
    border-color: var(--sage-light);
    box-shadow: var(--shadow-sm);
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--sage-dark);
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--muted);
    font-weight: 500;
}

/* ── QUIZ ── */
.quiz-section {
    padding: 7rem 2rem;
    background: var(--sage-pale);
}

.quiz-container {
    max-width: 760px;
    margin: 0 auto;
}

.quiz-header {
    text-align: center;
    margin-bottom: 3rem;
}

.quiz-subtitle {
    color: var(--muted);
    font-size: 1.05rem;
    margin-top: 0.8rem;
}

.progress-bar-wrapper {
    margin-bottom: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.progress-track {
    height: 6px;
    background: var(--sage-xlight);
    border-radius: var(--radius-full);
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--sage), var(--sage-dark));
    border-radius: var(--radius-full);
    width: 25%;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.progress-label {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--muted);
    text-align: right;
}

.quiz-step {
    display: none;
    animation: stepIn 0.35s ease;
}

.quiz-step.active {
    display: block;
}

@keyframes stepIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

.question-num {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 4rem;
    color: var(--sage-xlight);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.question-text {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 2rem;
    letter-spacing: -0.5px;
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.option-btn {
    background: white;
    border: 2px solid var(--border);
    border-radius: var(--radius-md);
    padding: 1.5rem 1.2rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
    cursor: pointer;
    transition: all 0.2s;
    text-align: left;
    position: relative;
    overflow: hidden;
}

.option-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--sage-pale);
    opacity: 0;
    transition: opacity 0.2s;
}

.option-btn:hover {
    border-color: var(--sage);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.option-btn:hover::before {
    opacity: 1;
}

.option-btn.selected {
    border-color: var(--sage-dark);
    background: var(--sage-pale);
    box-shadow: 0 0 0 3px rgba(62, 94, 68, 0.15);
}

.option-icon {
    font-size: 2rem;
    position: relative;
}

.option-label {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    color: var(--ink);
    position: relative;
}

.option-desc {
    font-size: 0.8rem;
    color: var(--muted);
    position: relative;
}

/* ── RESULTS ── */
.quiz-results {
    animation: stepIn 0.4s ease;
}

.quiz-results.hidden {
    display: none;
}

.results-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.results-title {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 0.5rem;
}

.results-subtitle {
    color: var(--muted);
    font-size: 1.05rem;
}

.results-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.result-card {
    background: white;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.8rem;
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s, box-shadow 0.2s;
    animation: cardPop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

.result-card:nth-child(1) {
    animation-delay: 0.1s;
}

.result-card:nth-child(2) {
    animation-delay: 0.2s;
}

.result-card:nth-child(3) {
    animation-delay: 0.3s;
}

@keyframes cardPop {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(20px);
    }

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

.result-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.result-img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid var(--sage-xlight);
}

.result-emoji {
    font-size: 4rem;
    line-height: 1;
}

.result-name {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--ink);
}

.result-badge {
    background: var(--sage-pale);
    color: var(--sage-dark);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 0.3rem 0.8rem;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.result-reason {
    font-size: 0.88rem;
    color: var(--ink-soft);
    line-height: 1.6;
}

.result-grow-time {
    font-size: 0.78rem;
    color: var(--muted);
    font-weight: 500;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    border: 2px solid var(--sage-dark);
    color: var(--sage-dark);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    padding: 0.8rem 1.8rem;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all 0.2s;
    margin-top: 1rem;
}

.btn-secondary:hover {
    background: var(--sage-dark);
    color: white;
}

/* ── FOOTER ── */
.site-footer {
    background: var(--ink);
    padding: 4rem 2rem;
    text-align: center;
}

.footer-inner {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
}

.site-footer .logo-name {
    color: white;
}

.footer-tagline {
    color: #888;
    font-size: 0.95rem;
}

.footer-copy {
    color: #555;
    font-size: 0.8rem;
}

/* ── CONFETTI ── */
#confettiCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
}

.confetti-banner {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    z-index: 10000;
    background: var(--sage-dark);
    color: white;
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 4vw, 2.5rem);
    font-weight: 800;
    padding: 1.2rem 3rem;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.confetti-banner.show {
    animation: bannerPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.confetti-banner.hide {
    animation: bannerFade 0.4s ease forwards;
}

@keyframes bannerPop {
    from {
        transform: translate(-50%, -50%) scale(0);
        opacity: 0;
    }

    to {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
}

@keyframes bannerFade {
    from {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }

    to {
        transform: translate(-50%, -50%) scale(0.9);
        opacity: 0;
    }
}

.confetti-banner.hidden {
    display: none;
}

.hidden {
    display: none !important;
}

/* ── CHAT ── */
#chatWrapper {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 5000;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1rem;
}

.chat-bubble {
    background: var(--sage-dark);
    color: white;
    border-radius: var(--radius-full);
    padding: 0.78rem 1.4rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.92rem;
    transition: background 0.2s, transform 0.2s;
    user-select: none;
}

.chat-bubble:hover {
    background: var(--sage);
    transform: translateY(-2px);
}

.chat-bubble-icon {
    font-size: 1.2rem;
}

.chat-panel {
    width: 370px;
    height: 520px;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1.5px solid var(--border);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    animation: panelOpen 0.25s cubic-bezier(0.34, 1.4, 0.64, 1);
}

.chat-panel.hidden {
    display: none;
}

@keyframes panelOpen {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(10px);
    }

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

.chat-panel-header {
    background: var(--sage-dark);
    color: white;
    padding: 0.9rem 1.2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
}

.chat-header-title {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.98rem;
}

.chat-close {
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.chat-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

.chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    background: var(--sage-pale);
}

.chat-messages::-webkit-scrollbar {
    width: 4px;
}

.chat-messages::-webkit-scrollbar-thumb {
    background: var(--sage-xlight);
    border-radius: 2px;
}

.chat-msg {
    display: flex;
    gap: 0.55rem;
    align-items: flex-start;
    animation: msgSlide 0.28s ease;
}

@keyframes msgSlide {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

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

.chat-msg--user {
    flex-direction: row-reverse;
}

.msg-avatar {
    font-size: 1.3rem;
    flex-shrink: 0;
    line-height: 1;
    margin-top: 3px;
}

.msg-bubble {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 0.65rem 0.9rem;
    font-size: 0.84rem;
    line-height: 1.65;
    color: var(--ink-soft);
    max-width: 84%;
}

.chat-msg--user .msg-bubble {
    background: var(--sage-dark);
    color: white;
    border-color: transparent;
    font-weight: 500;
}

.chat-suggestions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-top: 0.3rem;
}

.chat-suggestion-btn {
    background: white;
    border: 1.5px solid var(--sage-light);
    color: var(--sage-dark);
    font-size: 0.76rem;
    font-weight: 600;
    padding: 0.35rem 0.75rem;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all 0.15s;
    font-family: var(--font-body);
}

.chat-suggestion-btn:hover {
    background: var(--sage-dark);
    color: white;
    border-color: var(--sage-dark);
}

.chat-input-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    border-top: 1px solid var(--border);
    background: white;
    flex-shrink: 0;
}

.chat-input {
    flex: 1;
    padding: 0.6rem 0.9rem;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-full);
    font-family: var(--font-body);
    font-size: 0.88rem;
    color: var(--ink);
    background: var(--off-white);
    outline: none;
    transition: border-color 0.2s;
}

.chat-input:focus {
    border-color: var(--sage);
    background: white;
}

.chat-input::placeholder {
    color: var(--muted);
}

.chat-send-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--sage-dark);
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.2s, transform 0.15s;
}

.chat-send-btn:hover {
    background: var(--sage);
    transform: scale(1.08);
}

/* ── CUSTOM CURSOR ── */
* {
    cursor: none !important;
}

#customCursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(26, 58, 143, 0.25);
    border: 2px solid #1a3a8f;
    pointer-events: none;
    z-index: 99999;
    transition: width 0.2s ease, height 0.2s ease, background 0.2s ease;
    will-change: transform;
}

#customCursor.cursor-hover {
    width: 36px;
    height: 36px;
    background: rgba(26, 58, 143, 0.15);
    border-color: #2a52b0;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 3rem 1.5rem;
        min-height: auto;
    }

    .hero-subtitle {
        margin: 0 auto 2rem;
    }

    .hero-visual {
        justify-content: center;
    }

    .globe-wrap {
        width: 300px;
        height: 300px;
    }

    .about-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .header-nav {
        display: none;
    }

    .options-grid {
        grid-template-columns: 1fr;
    }

    .results-cards {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .quiz-section,
    .about-section {
        padding: 4rem 1.2rem;
    }

    #chatWrapper {
        bottom: 1rem;
        right: 1rem;
    }

    .chat-panel {
        width: calc(100vw - 2rem);
        height: 480px;
    }

    .chat-bubble-label {
        display: none;
    }

    .pill-1,
    .pill-2,
    .pill-3 {
        font-size: 0.72rem;
        padding: 0.4rem 0.8rem;
    }
}