/* ========================================
   MightClick.ai Landing Page
   A bold, unconventional design
   Version: 1.0.1
   ======================================== */

:root {
    --bg-primary: #09090b;
    --bg-secondary: #18181b;
    --bg-elevated: #27272a;
    --text-primary: #fafafa;
    --text-secondary: #a1a1aa;
    --text-muted: #71717a;
    --accent-purple: #a855f7;
    --accent-pink: #ec4899;
    --accent-blue: #6366f1;
    --accent-cyan: #22d3ee;
    --gradient-primary: linear-gradient(135deg, #6366f1 0%, #a855f7 50%, #ec4899 100%);
    --gradient-glow: linear-gradient(135deg, rgba(99, 102, 241, 0.4) 0%, rgba(168, 85, 247, 0.4) 50%, rgba(236, 72, 153, 0.4) 100%);
    --border-subtle: rgba(255, 255, 255, 0.08);
    --border-accent: rgba(168, 85, 247, 0.3);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Space Grotesk', -apple-system, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Cursor Glow Effect */
.cursor-glow {
    position: fixed;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s;
}

/* ========================================
   Navigation
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 3rem;
    background: rgba(9, 9, 11, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 1.25rem;
}

.brand-icon {
    font-size: 1.5rem;
}

.brand-ai {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

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

.nav-links a:hover {
    color: var(--text-primary);
}

.nav-cta {
    background: var(--gradient-primary);
    color: white;
    padding: 0.6rem 1.25rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: transform 0.2s, box-shadow 0.2s;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(168, 85, 247, 0.4);
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 8rem 5rem 4rem;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background:
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(99, 102, 241, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 60%, rgba(236, 72, 153, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border-accent);
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-purple);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.hero-title {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.title-line {
    display: block;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 500px;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--gradient-primary);
    color: white;
    padding: 1rem 2rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(168, 85, 247, 0.4);
}

.btn-icon {
    display: flex;
    align-items: center;
}

.btn-ghost {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.btn-ghost:hover {
    color: var(--text-primary);
}

/* Hero Visual - Browser Mockup */
.hero-visual {
    position: relative;
    z-index: 1;
}

.browser-mockup {
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-subtle);
    overflow: hidden;
    box-shadow:
        0 50px 100px -20px rgba(0, 0, 0, 0.5),
        0 30px 60px -30px rgba(0, 0, 0, 0.3);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(0.5deg); }
}

.browser-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1rem;
    background: var(--bg-elevated);
    border-bottom: 1px solid var(--border-subtle);
}

.browser-dots {
    display: flex;
    gap: 6px;
}

.browser-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--bg-primary);
}

.browser-dots span:nth-child(1) { background: #ff5f56; }
.browser-dots span:nth-child(2) { background: #ffbd2e; }
.browser-dots span:nth-child(3) { background: #27ca40; }

.browser-url {
    flex: 1;
    background: var(--bg-primary);
    padding: 0.4rem 1rem;
    border-radius: 6px;
    font-size: 0.8rem;
    color: var(--text-muted);
    font-family: 'JetBrains Mono', monospace;
}

.browser-content {
    padding: 2rem;
    position: relative;
    min-height: 280px;
}

.fake-text {
    height: 14px;
    background: var(--bg-elevated);
    border-radius: 4px;
    margin-bottom: 0.75rem;
}

.fake-text.selected {
    background: rgba(99, 102, 241, 0.3);
    border: 1px solid var(--accent-blue);
}

.fake-text.short {
    width: 60%;
}

/* Context Menu */
.context-menu {
    position: absolute;
    top: 70px;
    right: 40px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    animation: menuAppear 0.4s ease-out;
    min-width: 200px;
}

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

.menu-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: var(--gradient-primary);
    font-weight: 600;
    font-size: 0.85rem;
}

.menu-icon {
    font-size: 1rem;
}

.menu-items {
    padding: 0.5rem 0;
}

.menu-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.2s;
    animation: itemSlide 0.3s ease-out backwards;
}

.menu-item:nth-child(1) { animation-delay: 0.1s; }
.menu-item:nth-child(2) { animation-delay: 0.15s; }
.menu-item:nth-child(3) { animation-delay: 0.2s; }
.menu-item:nth-child(4) { animation-delay: 0.25s; }
.menu-item:nth-child(5) { animation-delay: 0.3s; }
.menu-item:nth-child(7) { animation-delay: 0.35s; }

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

.menu-item:hover,
.menu-item.active {
    background: rgba(168, 85, 247, 0.15);
    color: var(--text-primary);
}

.menu-item.active {
    background: rgba(168, 85, 247, 0.2);
    border-left: 2px solid var(--accent-purple);
}

.menu-item.subtle {
    color: var(--text-muted);
    font-size: 0.8rem;
}

.item-icon {
    font-size: 1rem;
}

.menu-divider {
    height: 1px;
    background: var(--border-subtle);
    margin: 0.5rem 0;
}

/* Floating Cards */
.floating-cards {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.float-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border-subtle);
    padding: 0.6rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.card-emoji {
    font-size: 1rem;
}

.float-card.card-1 {
    top: -20px;
    right: 20px;
    animation: floatCard 5s ease-in-out infinite;
}

.float-card.card-2 {
    bottom: 40px;
    left: -30px;
    animation: floatCard 6s ease-in-out infinite 1s;
}

.float-card.card-3 {
    top: 50%;
    right: -40px;
    animation: floatCard 5.5s ease-in-out infinite 0.5s;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* ========================================
   Features Section (Bento Grid)
   ======================================== */
.features {
    padding: 6rem 5rem;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-tag {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border-accent);
    border-radius: 50px;
    font-size: 0.8rem;
    color: var(--accent-purple);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
}

/* Bento Grid */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto auto;
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.bento-card {
    position: relative;
    background: var(--bg-secondary);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 2rem;
    overflow: hidden;
    transition: transform 0.3s, border-color 0.3s;
}

.bento-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-accent);
}

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: var(--gradient-glow);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.bento-card:hover .card-glow {
    opacity: 0.1;
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.bento-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.bento-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Large card spans 2 columns */
.bento-card.bento-large {
    grid-column: span 2;
    grid-row: span 2;
}

/* Wide card spans 2 columns */
.bento-card.bento-wide {
    grid-column: span 2;
}

/* Card-specific styles */
.card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.card-tags span {
    padding: 0.3rem 0.75rem;
    background: var(--bg-primary);
    border-radius: 50px;
    font-size: 0.75rem;
    color: var(--text-secondary);
}

/* Code Preview */
.code-preview {
    margin-top: 1.5rem;
    background: var(--bg-primary);
    padding: 1rem;
    border-radius: var(--radius-sm);
    overflow-x: auto;
}

.code-preview code {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.code-keyword { color: var(--accent-purple); }
.code-func { color: var(--accent-cyan); }
.code-string { color: #22c55e; }

/* Language Orbit */
.language-orbit {
    position: relative;
    height: 120px;
    margin-top: 1rem;
}

.lang {
    position: absolute;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-primary);
    border: 1px solid var(--border-subtle);
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 600;
    animation: orbit 20s linear infinite;
    animation-delay: calc(var(--i) * -2.5s);
}

@keyframes orbit {
    from {
        transform: rotate(0deg) translateX(50px) rotate(0deg);
    }
    to {
        transform: rotate(360deg) translateX(50px) rotate(-360deg);
    }
}

/* Summary Visual */
.summary-visual {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.long-text span,
.short-text span {
    display: block;
    height: 6px;
    background: var(--bg-elevated);
    border-radius: 3px;
    margin-bottom: 4px;
}

.long-text span { width: 80px; }
.long-text span:nth-child(2) { width: 70px; }
.long-text span:nth-child(3) { width: 75px; }
.long-text span:nth-child(4) { width: 60px; }
.long-text span:nth-child(5) { width: 50px; }

.summary-visual .arrow {
    color: var(--accent-purple);
    font-size: 1.5rem;
}

.short-text span {
    width: 60px;
    height: 12px;
    background: var(--gradient-primary);
}

/* Response Types */
.response-types {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.response-types .type {
    padding: 0.4rem 0.8rem;
    background: var(--bg-primary);
    border: 1px solid var(--border-subtle);
    border-radius: 50px;
    font-size: 0.75rem;
    color: var(--text-secondary);
    transition: all 0.2s;
}

.response-types .type.active {
    background: var(--gradient-primary);
    border-color: transparent;
    color: white;
}

/* Wave Bars */
.wave-bar {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    height: 40px;
    margin-top: 1rem;
}

.wave-bar span {
    width: 8px;
    background: var(--gradient-primary);
    border-radius: 4px;
    animation: wave 1s ease-in-out infinite;
}

.wave-bar span:nth-child(1) { height: 20px; animation-delay: 0s; }
.wave-bar span:nth-child(2) { height: 35px; animation-delay: 0.1s; }
.wave-bar span:nth-child(3) { height: 25px; animation-delay: 0.2s; }
.wave-bar span:nth-child(4) { height: 40px; animation-delay: 0.3s; }
.wave-bar span:nth-child(5) { height: 15px; animation-delay: 0.4s; }

@keyframes wave {
    0%, 100% { transform: scaleY(1); }
    50% { transform: scaleY(0.5); }
}

/* ========================================
   How It Works Section
   ======================================== */
.how-it-works {
    padding: 6rem 5rem;
    background: var(--bg-secondary);
}

.steps-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.step {
    text-align: center;
    flex: 1;
    max-width: 250px;
}

.step-number {
    font-size: 4rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 1rem;
}

.step-visual {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-primary);
    border: 1px solid var(--border-subtle);
    border-radius: 50%;
}

.step-visual svg {
    width: 40px;
    height: 40px;
    stroke: var(--accent-purple);
}

.step h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.step p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.step-connector {
    width: 80px;
    height: 20px;
}

.step-connector svg {
    width: 100%;
    height: 100%;
}

/* Select Icon Animation */
.select-icon {
    position: relative;
    width: 60px;
    height: 40px;
}

.cursor {
    position: absolute;
    top: 5px;
    left: 10px;
    width: 0;
    height: 0;
    border-left: 8px solid var(--text-primary);
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    animation: cursorMove 2s ease-in-out infinite;
}

@keyframes cursorMove {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(30px, 15px); }
}

.selection-box {
    position: absolute;
    bottom: 5px;
    left: 15px;
    width: 40px;
    height: 15px;
    background: rgba(99, 102, 241, 0.3);
    border: 1px solid var(--accent-blue);
    border-radius: 2px;
    animation: selectionPulse 2s ease-in-out infinite;
}

@keyframes selectionPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

/* Magic Icon */
.magic-icon {
    position: relative;
    font-size: 2.5rem;
}

.sparkle {
    position: absolute;
    font-size: 0.8rem;
    color: var(--accent-purple);
    animation: sparkle 1.5s ease-in-out infinite;
}

.sparkle.s1 { top: -10px; left: -5px; animation-delay: 0s; }
.sparkle.s2 { top: 0; right: -15px; animation-delay: 0.3s; }
.sparkle.s3 { bottom: -5px; left: -10px; animation-delay: 0.6s; }

@keyframes sparkle {
    0%, 100% { opacity: 0; transform: scale(0.5); }
    50% { opacity: 1; transform: scale(1); }
}

/* ========================================
   Who Section
   ======================================== */
.who-section {
    padding: 6rem 5rem;
}

.personas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.persona-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s, border-color 0.3s;
}

.persona-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-accent);
}

.persona-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.persona-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.persona-card p {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

/* ========================================
   CTA Section
   ======================================== */
.cta-section {
    padding: 8rem 5rem;
    position: relative;
    overflow: hidden;
}

.cta-background {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.cta-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
}

.cta-orb.orb-1 {
    width: 600px;
    height: 600px;
    background: rgba(99, 102, 241, 0.2);
    top: -200px;
    left: -200px;
}

.cta-orb.orb-2 {
    width: 500px;
    height: 500px;
    background: rgba(236, 72, 153, 0.15);
    bottom: -200px;
    right: -200px;
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.cta-content p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
}

.cta-note {
    display: block;
    margin-top: 1rem;
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* ========================================
   Footer
   ======================================== */
.footer {
    border-top: 1px solid var(--border-subtle);
    padding: 2rem 5rem;
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--text-primary);
}

.footer-copy {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 8rem 2rem 4rem;
    }

    .hero-content {
        order: 1;
    }

    .hero-visual {
        order: 2;
        margin-top: 2rem;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

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

    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bento-card.bento-large {
        grid-column: span 2;
        grid-row: span 1;
    }

    .steps-container {
        flex-direction: column;
        gap: 1rem;
    }

    .step-connector {
        transform: rotate(90deg);
        width: 40px;
    }

    .personas-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 1rem 1.5rem;
    }

    .nav-links {
        display: none;
    }

    .features,
    .how-it-works,
    .who-section,
    .cta-section {
        padding: 4rem 1.5rem;
    }

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

    .bento-card.bento-large,
    .bento-card.bento-wide {
        grid-column: span 1;
    }

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

    .footer {
        padding: 2rem 1.5rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .float-card.card-2,
    .float-card.card-3 {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .context-menu {
        right: 10px;
        left: 10px;
    }

    .nav-cta {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
}
