/* Header & Tabs Menu */
.bento-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 2rem 0 1rem 0;
    border-bottom: var(--border-resting);
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(18, 22, 28, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: padding 0.4s ease, background-color 0.4s ease;
}

.bento-header.scrolled {
    padding: 0.8rem 0 0.5rem 0;
    background: rgba(13, 17, 23, 0.95);
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--accent-green);
    text-shadow: 0 0 15px var(--accent-green-glow);
    letter-spacing: -1px;
    padding: 0;
    /* Ensures logo fits tightly */
}

.logo-img {
    height: 180px;
    width: auto;
    object-fit: contain;
    object-position: left center;
    /* Align with leftmost part of cascading data */
    transition: height 0.4s ease, transform 0.1s ease;
}

.bento-header.scrolled .logo-img {
    height: 75px;
}

.logo-img:hover {
    animation: sys-glitch 0.2s cubic-bezier(.25, .46, .45, .94) both infinite;
}

@keyframes sys-glitch {
    0% {
        transform: translate(0);
        filter: drop-shadow(1px 0 0 rgba(255, 0, 0, 0.8)) drop-shadow(-1px 0 0 rgba(0, 255, 255, 0.8)) !important;
    }

    25% {
        transform: translate(-1px, 1px);
        filter: drop-shadow(-1px 0 0 rgba(255, 0, 0, 0.8)) drop-shadow(1px 0 0 rgba(0, 255, 255, 0.8)) !important;
    }

    50% {
        transform: translate(1px, -1px);
        filter: drop-shadow(1px 0 0 rgba(255, 0, 0, 0.8)) drop-shadow(-1px 0 0 rgba(0, 255, 255, 0.8)) !important;
    }

    75% {
        transform: translate(-1px, -1px);
        filter: drop-shadow(-1px 0 0 rgba(255, 0, 0, 0.8)) drop-shadow(1px 0 0 rgba(0, 255, 255, 0.8)) !important;
    }

    100% {
        transform: translate(0);
        filter: drop-shadow(1px 0 0 rgba(255, 0, 0, 0.8)) drop-shadow(-1px 0 0 rgba(0, 255, 255, 0.8)) !important;
    }
}

.tabs-nav {
    display: flex;
    gap: 0.25rem;
}

.tab {
    text-decoration: none;
    color: var(--text-muted);
    padding: 0.6rem 1.25rem;
    border: var(--border-resting);
    border-bottom: none;
    border-radius: 0;
    background: var(--box-bg);
    font-size: 0.9rem;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.2);
    position: relative;
    top: 1px;
    text-transform: uppercase;
}

.tab:hover {
    color: var(--text-main);
}

.tab.active {
    color: var(--accent-green);
    background: var(--bg-color);
    border-color: var(--accent-green);
    padding-bottom: 0.7rem;
    z-index: 2;
}

/* Mac-like but retro Window Controls */
.window-controls {
    position: absolute;
    top: 1.2rem;
    left: 1.5rem;
    display: flex;
    gap: 8px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #333;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.drop-red {
    background: #ff5f56;
}

.drop-yellow {
    background: #ffbd2e;
}

.drop-green {
    background: #27c93f;
}

/* Hero Text */
.hero-text h1 {
    font-size: 4rem;
    line-height: 1.05;
    margin-bottom: 1.5rem;
    letter-spacing: -1.5px;
    color: var(--text-main);
}

.text-gradient {
    background: linear-gradient(90deg, #fff, var(--accent-green));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(50, 205, 50, 0.2);
}

.hero-text p {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 85%;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

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

.btn-terminal {
    background: transparent;
    border: 1px solid var(--accent-green);
    color: var(--accent-green);
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(50, 205, 50, 0.15);
    transition: all 0.2s;
    border-radius: 4px;
}

.btn-terminal:hover {
    background: rgba(50, 205, 50, 0.1);
    box-shadow: 0 0 20px rgba(50, 205, 50, 0.3);
    text-shadow: 0 0 5px var(--accent-green);
}

.system-status {
    font-size: 0.9rem;
    font-family: var(--font-heading);
    color: var(--text-muted);
}

.blink {
    animation: blinker 1.5s steps(2, start) infinite;
    will-change: opacity;
}

@keyframes blinker {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

/* Hero Visual (Right) */
.oscilloscope-container {
    width: 100%;
    height: 100%;
    min-height: 250px;
    position: relative;
    border: 1px solid rgba(50, 205, 50, 0.2);
    border-radius: 0;
    overflow: hidden;
    background: radial-gradient(circle at center, #111a13 0%, #0a0e0b 100%);
}

canvas {
    width: 100%;
    height: 100%;
    display: block;
}

.scanline {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0) 50%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.2));
    background-size: 100% 4px;
    pointer-events: none;
}

.visual-label {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    color: var(--accent-green);
    background: rgba(0, 0, 0, 0.5);
    padding: 2px 6px;
    border: 1px solid rgba(50, 205, 50, 0.3);
}

/* Service Headers */
.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.15);
    padding-bottom: 1.2rem;
    margin-bottom: 1.5rem;
}

.service-header h2 {
    font-size: 1.4rem;
    color: var(--text-main);
    letter-spacing: -0.5px;
}

/* Manifesto Block */
.manifesto-body {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.manifesto-text {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.8;
}

.manifesto-text strong {
    color: var(--text-main);
    font-weight: 500;
}

/* Service 1: IT Solutions */
.service-body {
    margin-bottom: 2rem;
}

.service-subtitle {
    font-size: 1.15rem;
    color: var(--text-main);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.service-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.status-badge {
    background: rgba(50, 205, 50, 0.1);
    color: var(--accent-green);
    padding: 0.3rem 0.8rem;
    font-size: 0.85rem;
    border: 1px solid rgba(50, 205, 50, 0.4);
    border-radius: 4px;
    box-shadow: 0 0 10px rgba(50, 205, 50, 0.1);
}

.specs-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    flex-grow: 1;
    justify-content: center;
}

.spec-item {
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.2);
    padding: 1rem 1.5rem;
    border-radius: 6px;
    border-left: 3px solid var(--accent-green);
    box-shadow: var(--shadow-inset);
}

.spec-label {
    color: var(--accent-green);
    font-size: 1rem;
    font-weight: 700;
}

.dotted-spacer {
    flex-grow: 1;
    border-bottom: 2px dotted rgba(255, 255, 255, 0.1);
    margin: 0 1rem;
    position: relative;
    top: -4px;
}

.spec-value {
    color: var(--text-main);
    font-size: 0.95rem;
    font-weight: 500;
}

/* Service 2: Consultoría */
.official-report {
    background: repeating-linear-gradient(0deg,
            rgba(30, 36, 43, 0.8),
            rgba(30, 36, 43, 0.8) 23px,
            rgba(255, 255, 255, 0.02) 24px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.report-header {
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
}

.report-header h2 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.barcode {
    font-family: 'Courier New', Courier, monospace;
    font-size: 1.5rem;
    letter-spacing: 2px;
    color: var(--text-muted);
    opacity: 0.5;
}

.report-body {
    position: relative;
    flex-grow: 1;
}

.classified-text {
    color: #ef4444;
    border: 2px solid #ef4444;
    display: inline-block;
    padding: 0.2rem 0.6rem;
    margin-bottom: 1rem;
    transform: rotate(-3deg);
    font-weight: bold;
    font-size: 0.85rem;
    letter-spacing: 1px;
    box-shadow: 0 0 8px rgba(239, 68, 68, 0.2);
}

.report-list {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.report-item {
    font-size: 0.85rem;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
}

.stamp {
    position: absolute;
    bottom: 0;
    right: 0;
    color: var(--accent-green);
    border: 3px double var(--accent-green);
    padding: 0.5rem 1.5rem;
    font-weight: bold;
    font-size: 1.5rem;
    transform: rotate(12deg);
    opacity: 0.2;
    font-family: var(--font-heading);
}

/* Impact Grid */
.impact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto 1fr;
    gap: 1rem;
    height: 100%;
}

.impact-cell {
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: var(--shadow-inset);
}

.impact-cell.metric {
    grid-column: span 2;
    align-items: center;
    background: rgba(50, 205, 50, 0.05);
    border-color: rgba(50, 205, 50, 0.2);
    padding: 1.5rem;
}

.metric-value {
    font-size: 2.75rem;
    color: var(--accent-green);
    text-shadow: 0 0 15px rgba(50, 205, 50, 0.3);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.metric-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    letter-spacing: 1px;
}

.impact-cell.chart {
    flex-direction: row;
    align-items: flex-end;
    gap: 6px;
    padding: 1rem;
}

.bar-container {
    flex: 1;
    height: 100%;
    display: flex;
    align-items: flex-end;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 2px;
}

.bar {
    width: 100%;
    background: var(--accent-green);
    border-radius: 2px 2px 0 0;
    box-shadow: 0 0 8px rgba(50, 205, 50, 0.4);
    transition: height 1s ease-out;
}

.h-40 {
    height: 40%;
    opacity: 0.5;
}

.h-60 {
    height: 60%;
    opacity: 0.7;
}

.h-80 {
    height: 80%;
    opacity: 0.85;
}

.h-100 {
    height: 100%;
    opacity: 1;
}

.impact-cell.description {
    padding: 1rem;
    justify-content: flex-start;
}

.impact-cell.description p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Tech Stack Marquee / Grid */
.tech-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
    justify-content: center;
    align-content: center;
    flex-grow: 1;
}

.tech-item {
    font-family: var(--font-heading);
    color: var(--text-muted);
    font-size: 0.95rem;
    padding: 0.6rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.3);
    transition: all 0.3s;
    cursor: default;
}

.tech-item:hover {
    color: var(--text-main);
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.05);
}

/* Impact Metrics */
.metrics-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 1.5rem;
    flex-grow: 1;
    align-content: center;
}

.metric-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1.5rem;
    border: 1px dashed rgba(50, 205, 50, 0.2);
    background: rgba(50, 205, 50, 0.02);
}

.metric-card:nth-child(3) {
    grid-column: span 2;
}

.metric-val {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--accent-green);
    font-weight: bold;
    text-shadow: 0 0 10px rgba(50, 205, 50, 0.2);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.metric-lbl {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    color: var(--text-muted);
    letter-spacing: 1px;
}

/* Philosophy Block */
.philosophy-card {
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    box-shadow: var(--shadow-inset);
    transition: transform 0.2s, border-color 0.2s;
}

.philosophy-card:hover {
    transform: translateY(-2px);
    border-color: rgba(50, 205, 50, 0.3);
}

.phil-num {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
}

/* Success Cases Carousel */
.cases-section {
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cases-viewer {
    display: flex;
    flex-direction: column;
    min-height: 250px;
}

.cases-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.2);
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
}

.case-btn {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-family: var(--font-heading);
    font-size: 1.25rem;
    cursor: pointer;
    transition: color 0.2s, text-shadow 0.2s;
}

.case-btn:hover {
    color: var(--accent-green);
    text-shadow: 0 0 10px var(--accent-green-glow);
}

.case-btn:disabled {
    color: rgba(255, 255, 255, 0.1);
    cursor: not-allowed;
    text-shadow: none;
}

.case-indicator {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    color: var(--accent-green);
    letter-spacing: 2px;
}

.case-content {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    flex-grow: 1;
    opacity: 1;
    transition: opacity 0.4s ease;
}

.case-content.fade-out {
    opacity: 0;
}

.case-title {
    font-size: 1.5rem;
    font-family: var(--font-heading);
    color: var(--text-main);
}

.case-detail {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.case-label {
    font-size: 0.8rem;
    color: var(--accent-amber);
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1px;
}

.case-text {
    font-size: 0.95rem;
    color: var(--text-muted);
    border-left: 2px solid rgba(255, 255, 255, 0.1);
    padding-left: 1rem;
}

.case-metrics {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px dashed rgba(255, 255, 255, 0.1);
}

.c-metric {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    color: var(--accent-green);
}

.c-metric::before {
    content: '>';
    color: var(--text-muted);
}

/* Clients / Alliances */
.clients-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-top: 1rem;
    justify-content: center;
    align-items: center;
    flex-grow: 1;
}

.client-logo {
    height: 45px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
    filter: grayscale(100%) opacity(50%);
    transition: filter 0.3s ease, transform 0.3s ease;
    cursor: default;
}

.client-logo:hover {
    filter: drop-shadow(0 0 10px var(--accent-green-glow)) brightness(0) invert(1) sepia(100%) hue-rotate(60deg) saturate(500%);
    transform: scale(1.05);
}

/* Dispatch Center Form */
.dispatch-section {
    border: 2px double rgba(50, 205, 50, 0.4);
    background: repeating-linear-gradient(0deg, rgba(26, 30, 36, 1), rgba(26, 30, 36, 1) 2px, rgba(0, 0, 0, 0.2) 3px);
}

.dispatch-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid var(--text-muted);
    padding-bottom: 0.5rem;
    margin-bottom: 2rem;
}

.dispatch-header h2 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    letter-spacing: 1px;
    color: var(--text-main);
}

.line-accents .line {
    width: 100px;
    height: 2px;
    background: var(--text-muted);
    margin-bottom: 2px;
}

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

.retro-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.dispatch-sidebar {
    border-left: 1px dashed rgba(255, 255, 255, 0.2);
    padding-left: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    font-family: var(--font-heading);
}

/* Cascade Data Setup */
.cascade-data {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    font-family: var(--font-heading);
    color: var(--text-main);
    font-size: 0.95rem;
}

.cascade-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.cascade-item.level-1 {
    margin-left: 0;
}

.cascade-item.level-2 {
    margin-left: 1.5rem;
}

.cascade-item.level-3 {
    margin-left: 3rem;
}

.cascade-prefix {
    color: var(--accent-amber);
    font-weight: bold;
}

.cascade-link {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.cascade-link:hover {
    color: var(--accent-green);
    text-shadow: 0 0 8px var(--accent-green-glow);
}

@media (max-width: 800px) {
    .dispatch-body {
        grid-template-columns: 1fr;
    }

    .dispatch-sidebar {
        border-left: none;
        border-top: 1px dashed rgba(255, 255, 255, 0.2);
        padding-left: 0;
        padding-top: 1.5rem;
    }
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    color: var(--accent-green);
    display: flex;
    justify-content: space-between;
}

.form-hint {
    color: var(--text-muted);
    font-size: 0.75rem;
}

.retro-input,
.retro-textarea,
.retro-select {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid var(--text-muted);
    color: var(--accent-amber);
    font-family: var(--font-heading);
    padding: 0.75rem;
    font-size: 1rem;
    outline: none;
    transition: all 0.2s;
    border-radius: 0;
}

.retro-input:focus,
.retro-textarea:focus,
.retro-select:focus {
    border-color: var(--accent-amber);
    box-shadow: 0 0 10px rgba(255, 176, 0, 0.2);
    background: rgba(0, 0, 0, 0.8);
}

.retro-textarea {
    resize: vertical;
}

.custom-select-wrapper {
    position: relative;
}

.retro-select {
    width: 100%;
    appearance: none;
    cursor: pointer;
}

.custom-select-wrapper::after {
    content: '▼';
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    pointer-events: none;
    font-size: 0.8rem;
}

.form-actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 1rem;
}

.btn-execute {
    background: transparent;
    border: 2px solid var(--accent-green);
    color: var(--accent-green);
    padding: 0.75rem 2.5rem;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-execute:hover {
    background: var(--accent-green);
    color: #000;
    box-shadow: 0 0 15px var(--accent-green-glow);
}

.dispatch-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px dashed rgba(255, 255, 255, 0.2);
    padding-top: 1rem;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    color: var(--text-muted);
    flex-wrap: wrap;
    gap: 1rem;
}

.sys-status {
    display: flex;
    align-items: center;
    gap: 8px;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-green);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--accent-green);
    animation: blinker 1.5s steps(2, start) infinite;
    will-change: opacity;
}

.sys-security {
    font-weight: 700;
    color: rgba(255, 255, 255, 0.5);
}

/* Easter Egg Terminal */
.hidden-terminal {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    max-width: 90vw;
    background: rgba(0, 0, 0, 0.95);
    border: 1px solid var(--accent-green);
    box-shadow: 0 0 30px rgba(50, 205, 50, 0.3);
    z-index: 9999;
    border-radius: 4px;
    overflow: hidden;
}

.hidden-terminal.active {
    display: block;
}

.terminal-header {
    background: var(--accent-green);
    color: #000;
    padding: 0.25rem 1rem;
    font-family: var(--font-heading);
    font-weight: bold;
    font-size: 0.85rem;
    text-align: center;
}

.terminal-body {
    padding: 1.5rem;
    height: 300px;
    overflow-y: auto;
    font-family: var(--font-heading);
    color: var(--accent-green);
    font-size: 0.95rem;
    line-height: 1.6;
}

.terminal-body .cmd-input {
    background: transparent;
    border: none;
    color: var(--accent-amber);
    font-family: var(--font-heading);
    font-size: 0.95rem;
    outline: none;
    width: 80%;
}

/* Footer Terminal */
.bento-footer {
    background-color: #0d1014;
    background-image: var(--noise-texture);
    border: 1px solid #2d333b;
    border-radius: 0;
    padding: 2rem;
    font-family: var(--font-heading);
    box-shadow: var(--shadow-inset);
}

.terminal-prompt p {
    margin-bottom: 0.75rem;
    color: var(--text-main);
    font-size: 1rem;
}

.prompt-host {
    color: var(--accent-green);
    font-weight: bold;
}

.prompt-dir {
    color: #3b82f6;
    font-weight: bold;
}

.terminal-output {
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
    color: #a5b4fc;
    line-height: 1.8;
}

.cursor-block {
    display: inline-block;
    color: var(--text-main);
}