/* ─────────────────────────────────────────────────────────────
   ThoughtBook LM Web Platform - Mindful Focus & Calm Zen System
   Exact Flutter Mobile App Aesthetics, Fluid Scaling (320px - 4K)
   ───────────────────────────────────────────────────────────── */

@import url('https://fonts.googleapis.com/css2?family=Fira+Code:wght@400;500;600&family=Inter:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

:root {
    /* Exact Flutter AppColors.dart (Dark Obsidian) */
    --bg-base: #141416;               /* Warm obsidian slate */
    --bg-surface: #1C1C1F;            /* Soft charcoal */
    --bg-surface-low: #18181A;        /* surface-container-low */
    --bg-surface-high: #26262A;       /* surface-container-high */
    --bg-surface-highest: #323238;    /* surface-container-highest */
    --bg-card: rgba(28, 28, 31, 0.72);
    --bg-glass: rgba(24, 24, 26, 0.82);
    
    /* Primary Accents */
    --primary: #96B8A7;               /* Luminous soft sage */
    --primary-dim: #678E7D;
    --primary-container: #1A3328;
    --on-primary-container: #CCE8D9;
    --primary-glow: rgba(150, 184, 167, 0.22);
    --primary-glow-subtle: rgba(150, 184, 167, 0.08);
    
    /* Secondary & Earth Accents */
    --secondary: #C9BAA9;             /* Warm sand */
    --tertiary: #D8A879;              /* Warm hearth amber */
    --terracotta: #C67C52;            /* Soft clay terracotta */
    
    /* Text Hierarchy */
    --text-primary: #EAE6E1;          /* Soft warm bone white */
    --text-secondary: #A6A099;        /* Muted warm sand */
    --text-tertiary: #757069;         /* Subtle charcoal */
    
    /* Borders & Dividers */
    --outline: #38383D;
    --border-subtle: rgba(255, 255, 255, 0.07);
    --border-highlight: rgba(150, 184, 167, 0.32);
    --glass-blur: blur(20px);
    
    /* Fonts */
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-mono: 'Fira Code', monospace;
    
    /* Radii */
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 9999px;
}

[data-theme="light"] {
    /* Exact Flutter AppColors.dart (Light Washi Paper) */
    --bg-base: #FBF9F5;               /* Warm washi oat paper */
    --bg-surface: #F3EFE9;            /* Warm sandstone */
    --bg-surface-low: #F3EFE9;
    --bg-surface-high: #E8E3DA;       /* Muted stone */
    --bg-surface-highest: #DDD7CD;
    --bg-card: rgba(243, 239, 233, 0.88);
    --bg-glass: rgba(251, 249, 245, 0.88);
    
    --primary: #4D7260;               /* Botanical focus sage */
    --primary-dim: #3D5A4C;
    --primary-glow: rgba(77, 114, 96, 0.18);
    --primary-glow-subtle: rgba(77, 114, 96, 0.06);
    
    --text-primary: #22201D;          /* Deep warm charcoal */
    --text-secondary: #5C5854;        /* Muted warm earth */
    --text-tertiary: #8A847C;
    
    --outline: #E5DFD4;
    --border-subtle: rgba(0, 0, 0, 0.07);
    --border-highlight: rgba(77, 114, 96, 0.28);
}

/* ── Reset & Baseline ── */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
}

img, svg, video {
    max-width: 100%;
    height: auto;
    display: block;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-base);
    color: var(--text-primary);
    transition: background-color 0.35s ease, color 0.35s ease;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-base);
    background-image: 
        radial-gradient(ellipse 60% 40% at 50% -10%, var(--primary-glow) 0%, transparent 70%),
        radial-gradient(circle 35% at 90% 25%, rgba(216, 168, 121, 0.05) 0%, transparent 60%);
    background-attachment: fixed;
    min-height: 100vh;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    color: var(--text-primary);
}

/* ── Fluid Container ── */
.container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

/* ── Calm Typography ── */
h1, h2, h3, h4, h5 {
    font-family: var(--font-main);
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.25;
    letter-spacing: -0.02em;
}

.text-gradient {
    background: linear-gradient(135deg, var(--text-primary) 25%, var(--primary) 85%, var(--tertiary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.text-muted {
    color: var(--text-secondary);
}

/* ── Brand Logo & Splash Orb ── */
.brand-orb {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(150, 184, 167, 0.12);
    border: 1px solid var(--border-highlight);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 16px 2px var(--primary-glow-subtle);
    overflow: hidden;
    flex-shrink: 0;
}

.brand-orb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.brand-orb-hero {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: rgba(150, 184, 167, 0.12);
    border: 1.5px solid rgba(150, 184, 167, 0.38);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    box-shadow: 0 0 32px 6px var(--primary-glow);
    animation: floatElement 4.5s infinite ease-in-out;
}

.brand-orb-hero img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
}

/* ── Glassmorphism ── */
.glass-card {
    background: var(--bg-card);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.glass-card:hover {
    border-color: var(--border-highlight);
    box-shadow: 0 12px 30px -8px var(--primary-glow);
}

/* ── Serene Badges ── */
.pill-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.35rem 0.9rem;
    background: rgba(150, 184, 167, 0.1);
    border: 1px solid rgba(150, 184, 167, 0.3);
    border-radius: var(--radius-full);
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    padding: 0.78rem 1.5rem;
    border-radius: var(--radius-md);
    font-family: var(--font-main);
    font-size: 0.92rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.2, 0.8, 0.2, 1);
    border: 1px solid transparent;
    user-select: none;
}

.btn:active {
    transform: scale(0.98);
}

.btn-primary {
    background: var(--primary);
    color: #141416;
    box-shadow: 0 6px 20px -4px var(--primary-glow);
    font-weight: 700;
}

.btn-primary:hover {
    background: var(--on-primary-container);
    color: #141416;
    box-shadow: 0 8px 24px 0 var(--primary-glow);
    transform: translateY(-1px);
}

.btn-glass {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-subtle);
    color: var(--text-primary);
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--border-highlight);
    color: var(--primary);
    transform: translateY(-1px);
}

.btn-store {
    background: var(--bg-surface-low);
    border: 1px solid var(--border-subtle);
    color: var(--text-primary);
    padding: 0.55rem 1.25rem;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    text-align: left;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-store:hover {
    border-color: var(--primary);
    box-shadow: 0 6px 20px -4px var(--primary-glow);
    transform: translateY(-1px);
}

.btn-store:active {
    transform: scale(0.98);
}

.btn-store .store-sub {
    font-size: 0.65rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    display: block;
}

.btn-store .store-title {
    font-size: 0.98rem;
    font-weight: 700;
    line-height: 1.1;
    color: var(--text-primary);
}

/* ── Header & Navigation ── */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 0.75rem 0;
    background: var(--bg-glass);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid var(--border-subtle);
    transition: all 0.3s ease;
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 700;
    font-size: 1.15rem;
    letter-spacing: -0.01em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.8rem;
    list-style: none;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.92rem;
    transition: color 0.2s ease;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.theme-toggle-btn {
    background: var(--bg-surface-high);
    border: 1px solid var(--border-subtle);
    color: var(--text-primary);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.2s ease;
}

.theme-toggle-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    padding: 0.25rem;
    cursor: pointer;
    line-height: 1;
}

/* ── Hero Section ── */
.hero {
    padding: 7.5rem 0 4rem;
    text-align: center;
    position: relative;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.8rem);
    max-width: 820px;
    margin: 1.1rem auto 1rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    word-break: break-word;
}

.hero-subtitle {
    font-size: clamp(0.98rem, 2vw, 1.18rem);
    color: var(--text-secondary);
    max-width: 620px;
    margin: 0 auto 2.2rem;
    font-weight: 400;
    line-height: 1.65;
}

.hero-cta-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.85rem;
    flex-wrap: wrap;
    margin-bottom: 3.5rem;
}

/* ── Mindful Interactive Editor Mockup (Mobile Perfected) ── */
.editor-mockup-wrapper {
    max-width: 780px;
    width: 100%;
    margin: 0 auto;
    position: relative;
}

.editor-mockup-glow {
    position: absolute;
    inset: -15px;
    background: radial-gradient(ellipse at center, var(--primary-glow) 0%, transparent 70%);
    filter: blur(35px);
    z-index: -1;
    opacity: 0.6;
}

.editor-mockup {
    background: var(--bg-surface-low);
    border: 1px solid var(--border-highlight);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 50px -15px rgba(0, 0, 0, 0.7), 0 0 35px -12px var(--primary-glow);
    text-align: left;
}

.editor-mockup-header {
    background: var(--bg-surface);
    padding: 0.75rem 1.1rem;
    border-bottom: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
}

.mac-dots {
    display: flex;
    gap: 6px;
    flex-shrink: 0;
}

.mac-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
}
.mac-dot.red { background: #E06C75; }
.mac-dot.yellow { background: #E5C07B; }
.mac-dot.green { background: #96B8A7; }

.editor-mockup-title {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--text-tertiary);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.editor-canvas {
    padding: 1.5rem 1.25rem;
    min-height: 220px;
}

.editor-title-input {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.65rem;
    letter-spacing: -0.01em;
}

.editor-text-body {
    font-family: var(--font-main);
    font-size: 0.98rem;
    color: var(--text-secondary);
    line-height: 1.65;
    min-height: 90px;
    white-space: pre-wrap;
    word-break: break-word;
}

.slash-pill-bar {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.65rem;
    background: var(--bg-surface-high);
    border: 1px solid var(--border-highlight);
    border-radius: 20px;
    margin-top: 1rem;
    box-shadow: 0 4px 14px -2px var(--primary-glow);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.slash-pill-bar::-webkit-scrollbar {
    display: none;
}

.slash-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.28rem 0.68rem;
    background: rgba(150, 184, 167, 0.12);
    border: 1px solid rgba(150, 184, 167, 0.32);
    border-radius: 12px;
    font-family: var(--font-mono);
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--primary);
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.slash-chip:hover, .slash-chip.active {
    background: var(--primary);
    color: #141416;
}

/* ── Bento Grid Section ── */
.bento-section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.section-title {
    font-size: clamp(1.8rem, 3.2vw, 2.5rem);
    margin: 0.75rem 0 0.5rem;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 1.25rem;
}

.bento-card {
    padding: 1.8rem 1.6rem;
    position: relative;
    overflow: hidden;
}

.bento-col-4 { grid-column: span 4; }
.bento-col-6 { grid-column: span 6; }
.bento-col-8 { grid-column: span 8; }
.bento-col-12 { grid-column: span 12; }

.bento-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(150, 184, 167, 0.12);
    border: 1px solid var(--border-highlight);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.bento-title {
    font-size: 1.18rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.bento-desc {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.6;
}

/* ── FAQ Accordion ── */
.faq-section {
    padding: 4rem 0;
}

.faq-list {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all 0.25s ease;
}

.faq-question {
    padding: 1.15rem 1.35rem;
    font-weight: 600;
    font-size: 0.98rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    cursor: pointer;
}

.faq-answer {
    padding: 0 1.35rem 1.15rem;
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.6;
    display: none;
}

.faq-item.open .faq-answer {
    display: block;
}

.faq-item.open {
    border-color: var(--border-highlight);
}

/* ── Footer ── */
.footer {
    padding: 3.5rem 0 2rem;
    border-top: 1px solid var(--border-subtle);
    margin-top: 3.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 0.88rem;
    margin-top: 0.75rem;
    max-width: 300px;
}

.footer-col h5 {
    font-size: 0.92rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.footer-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.86rem;
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: var(--primary);
}

.footer-bottom {
    padding-top: 1.75rem;
    border-top: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--text-tertiary);
    font-size: 0.8rem;
    flex-wrap: wrap;
    gap: 0.75rem;
}

/* ── Mobile Drawer (Exact Native Feel) ── */
.mobile-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    max-width: 85vw;
    height: 100vh;
    background: var(--bg-surface);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-left: 1px solid var(--border-subtle);
    z-index: 200;
    padding: 1.75rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    transition: right 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
}

.mobile-drawer.open {
    right: 0;
}

.drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 199;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.drawer-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 0.85rem;
    border-bottom: 1px solid var(--border-subtle);
}

.drawer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.drawer-link {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 600;
    padding: 0.4rem 0;
    display: block;
}

/* ── Acquisition & Contact Modal ── */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 300;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-box {
    background: var(--bg-surface);
    border: 1px solid var(--border-highlight);
    border-radius: var(--radius-lg);
    max-width: 480px;
    width: 100%;
    padding: 2rem 1.75rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.8), 0 0 40px var(--primary-glow);
    transform: translateY(20px);
    transition: transform 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
    position: relative;
}

.modal-overlay.active .modal-box {
    transform: translateY(0);
}

.modal-close-btn {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 1.4rem;
    cursor: pointer;
    line-height: 1;
}

.email-copy-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--bg-surface-high);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    padding: 0.75rem 1rem;
    margin: 1.25rem 0;
    gap: 0.5rem;
}

.email-address-text {
    font-family: var(--font-mono);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--primary);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.copy-btn {
    background: var(--primary);
    color: #141416;
    border: none;
    padding: 0.45rem 0.9rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.copy-btn:hover {
    background: var(--on-primary-container);
}

.modal-actions {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

/* ── Toast Notification ── */
.toast-notice {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--bg-surface-highest);
    color: var(--text-primary);
    border: 1px solid var(--primary);
    padding: 0.65rem 1.25rem;
    border-radius: 30px;
    font-size: 0.88rem;
    font-weight: 600;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
    z-index: 400;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    pointer-events: none;
}

.toast-notice.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

/* ── Responsive Viewport Scaling ── */
@media (max-width: 992px) {
    .bento-col-4, .bento-col-6, .bento-col-8 {
        grid-column: span 12;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-links, .nav-actions .btn-primary {
        display: none;
    }
    .mobile-menu-btn {
        display: block;
    }
    .hero {
        padding: 5.5rem 0 2.5rem;
    }
    .hero-title {
        font-size: 2.2rem;
        margin-top: 0.85rem;
    }
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.75rem;
    }
    .hero-cta-group {
        flex-direction: column;
        width: 100%;
        max-width: 320px;
        margin: 0 auto 2.5rem;
    }
    .btn-store, .hero-cta-group .btn-glass {
        width: 100%;
        justify-content: center;
    }
    .bento-section {
        padding: 3.5rem 0;
    }
    .bento-card {
        padding: 1.4rem 1.25rem;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    .hero-title {
        font-size: 1.95rem;
    }
    .editor-canvas {
        padding: 1.15rem 0.95rem;
    }
    .editor-title-input {
        font-size: 1.2rem;
    }
    .editor-text-body {
        font-size: 0.92rem;
    }
}
