:root {
    --bg: #030303;
    --panel: #0b0a08;
    --panel-2: #11100d;
    --gold: #D4AF37;
    --gold-soft: rgba(212, 175, 55, 0.15);
    --gold-line: rgba(212, 175, 55, 0.32);
    --text: #F5F1E7;
    --muted: #A5A196;
    --line: rgba(255, 255, 255, 0.085);
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
    background: var(--bg);
}

body {
    min-width: 320px;
    font-family: 'Outfit', Arial, sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at 50% 0%, rgba(212, 175, 55, 0.105), transparent 460px),
        linear-gradient(180deg, #050505 0%, #030303 46%, #080705 100%);
    line-height: 1.55;
    overflow-x: hidden;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
}

h1,
h2,
h3,
.nav-status,
.hero-tags,
.sys-footer,
.scene-kicker,
.section-kicker,
.module-index,
.trap-title,
.terminal-title,
.btn-launch {
    text-transform: uppercase;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 20;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px clamp(20px, 4vw, 52px);
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.68), transparent);
}

.logo-wrapper {
    display: inline-flex;
    transition: opacity 0.22s ease;
}

.logo-wrapper:hover {
    opacity: 0.82;
}

.logo-img {
    width: auto;
    height: clamp(42px, 5vw, 58px);
}

.nav-status {
    display: flex;
    align-items: center;
    gap: 9px;
    color: var(--gold);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
}

.status-dot {
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: var(--gold);
    box-shadow: 0 0 12px rgba(212, 175, 55, 0.55);
}

.hero-scene {
    position: relative;
    min-height: 100svh;
    display: grid;
    place-items: center;
    overflow: hidden;
    padding: 140px 20px 84px;
    text-align: center;
}

.hero-scene::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    z-index: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-line), transparent);
}

.hero-orb {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 0;
    width: min(72vw, 680px);
    aspect-ratio: 1;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    pointer-events: none;
    background:
        radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.22), transparent 30%),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.09), transparent 13%),
        conic-gradient(from 42deg, transparent, rgba(212, 175, 55, 0.13), transparent 42%, rgba(255, 255, 255, 0.055), transparent 72%);
    opacity: 0.92;
}

.hero-orb::before,
.hero-orb::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(212, 175, 55, 0.17);
}

.hero-orb::before {
    inset: 18%;
    border-color: rgba(212, 175, 55, 0.08);
    border-top-color: rgba(212, 175, 55, 0.42);
    border-right-color: rgba(255, 255, 255, 0.16);
}

.hero-orb::after {
    inset: 30% 17%;
    transform: rotate(18deg);
    border-color: rgba(255, 255, 255, 0.095);
}

body.motion-ready .hero-orb::before {
    animation: orbitalDrift 28s linear infinite;
}

@keyframes orbitalDrift {
    to { transform: rotate(360deg); }
}

.hero-content {
    position: relative;
    z-index: 1;
    width: min(920px, 100%);
}

.hero-title {
    margin-bottom: 26px;
    color: #fff;
    font-size: clamp(3rem, 6.5vw, 6rem);
    font-weight: 900;
    line-height: 0.95;
    letter-spacing: 0;
}

.hero-subtitle {
    max-width: 680px;
    margin: 0 auto 24px;
    color: var(--muted);
    font-size: clamp(1rem, 1.7vw, 1.25rem);
    font-weight: 300;
}

.hero-tags {
    margin-bottom: clamp(34px, 5vw, 56px);
    color: var(--gold);
    font-size: 0.73rem;
    font-weight: 700;
    letter-spacing: 0.24em;
}

.btn-launch {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 16px 38px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: #f5f0df;
    color: #050505;
    font-size: 0.83rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-decoration: none;
    transition: transform 0.22s var(--ease), background 0.22s var(--ease), border-color 0.22s var(--ease);
}

.btn-launch:hover {
    transform: translateY(-2px);
    background: var(--gold);
    border-color: rgba(212, 175, 55, 0.55);
}

.authority-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background:
        linear-gradient(90deg, rgba(212, 175, 55, 0.06), transparent 22%, transparent 78%, rgba(212, 175, 55, 0.06)),
        #050504;
}

.authority-strip span {
    min-height: 72px;
    display: grid;
    place-items: center;
    padding: 18px 20px;
    color: rgba(245, 241, 231, 0.76);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.17em;
    text-align: center;
    text-transform: uppercase;
}

.authority-strip span + span {
    border-left: 1px solid var(--line);
}

.storyline-wrapper {
    position: relative;
    padding: clamp(112px, 14vw, 184px) 20px;
    background:
        radial-gradient(circle at 50% 48%, rgba(212, 175, 55, 0.07), transparent 460px),
        linear-gradient(180deg, #030303 0%, #070604 58%, #030303 100%);
}

.storyline-line {
    position: absolute;
    top: 11%;
    left: 50%;
    width: 1px;
    height: 78%;
    background: linear-gradient(transparent, rgba(212, 175, 55, 0.32), transparent);
    opacity: 0.5;
    pointer-events: none;
}

.storyline-line::before,
.storyline-line::after {
    content: "";
    position: absolute;
    left: 50%;
    width: 9px;
    height: 9px;
    border: 1px solid rgba(212, 175, 55, 0.65);
    border-radius: 50%;
    background: #080705;
    transform: translateX(-50%);
    box-shadow: 0 0 18px rgba(212, 175, 55, 0.24);
}

.storyline-line::before {
    top: 20%;
}

.storyline-line::after {
    bottom: 20%;
}

.story-scene {
    position: relative;
    display: grid;
    place-items: center;
    min-height: clamp(420px, 58svh, 580px);
    padding: 76px 0;
}

.story-scene::before {
    content: attr(data-scene);
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 0;
    color: rgba(212, 175, 55, 0.048);
    font-size: clamp(9rem, 22vw, 22rem);
    font-weight: 900;
    line-height: 1;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.story-scene::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 0;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 0 6px rgba(212, 175, 55, 0.06), 0 0 24px rgba(212, 175, 55, 0.22);
    transform: translate(-50%, -50%);
}

.scene-content {
    position: relative;
    z-index: 1;
    width: min(760px, 100%);
    margin: 0 auto;
    text-align: center;
}

.scene-kicker,
.section-kicker {
    display: inline-flex;
    margin-bottom: 18px;
    color: var(--gold);
    font-size: 0.73rem;
    font-weight: 700;
    letter-spacing: 0.22em;
}

.section-title {
    margin-bottom: 26px;
    color: #fff;
    font-size: clamp(2.55rem, 5.8vw, 5.8rem);
    font-weight: 900;
    line-height: 0.94;
    letter-spacing: 0;
}

.scene-content p {
    max-width: 620px;
    margin: 0 auto;
    color: var(--muted);
    font-size: clamp(1.02rem, 1.7vw, 1.24rem);
    font-weight: 300;
}

.modules-section {
    padding: clamp(104px, 13vw, 166px) clamp(20px, 5vw, 72px);
    background: linear-gradient(180deg, #030303 0%, #080705 100%);
}

.section-heading {
    width: min(960px, 100%);
    margin: 0 auto 58px;
    text-align: center;
}

.text-gradient {
    color: #fff;
    background: linear-gradient(135deg, #fff 0%, #ead68a 44%, var(--gold) 70%, #87691c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.modules-title {
    font-size: clamp(2.4rem, 5vw, 4.9rem);
    font-weight: 900;
    line-height: 0.96;
    letter-spacing: 0;
}

.modules-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    width: min(1080px, 100%);
    margin: 0 auto;
}

.glass-module,
.glass-panel {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--line);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.045), transparent 30%),
        linear-gradient(180deg, var(--panel-2), rgba(6, 6, 6, 0.92));
}

.glass-module {
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: clamp(30px, 4vw, 46px);
    transition: transform 0.22s var(--ease), border-color 0.22s var(--ease), background 0.22s var(--ease);
}

.glass-module::before,
.glass-module::after {
    content: "";
    position: absolute;
    z-index: 2;
    width: 34px;
    height: 34px;
    pointer-events: none;
}

.glass-module::before {
    top: 0;
    left: 0;
    border-top: 1px solid rgba(212, 175, 55, 0.42);
    border-left: 1px solid rgba(212, 175, 55, 0.42);
}

.glass-module::after {
    right: 0;
    bottom: 0;
    border-right: 1px solid rgba(212, 175, 55, 0.24);
    border-bottom: 1px solid rgba(212, 175, 55, 0.24);
}

.glass-module:hover {
    transform: translateY(-3px);
    border-color: rgba(212, 175, 55, 0.32);
    background:
        linear-gradient(135deg, rgba(212, 175, 55, 0.075), transparent 30%),
        linear-gradient(180deg, rgba(19, 18, 14, 0.96), rgba(6, 6, 6, 0.92));
}

.module-index {
    position: absolute;
    top: 28px;
    left: 30px;
    color: rgba(212, 175, 55, 0.72);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
}

.module-status {
    position: absolute;
    top: 28px;
    right: 30px;
    max-width: 52%;
    color: rgba(245, 241, 231, 0.42);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    line-height: 1.45;
    text-align: right;
    text-transform: uppercase;
}

.glass-module[data-status] .module-status::after {
    content: " / " attr(data-status);
    color: rgba(212, 175, 55, 0.58);
}

.module-glow {
    position: absolute;
    top: -84px;
    right: -84px;
    width: 205px;
    height: 205px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.12), transparent 66%);
    pointer-events: none;
}

.module-glow::before {
    content: "";
    position: absolute;
    top: 118px;
    right: 82px;
    width: 180px;
    height: 1px;
    background: linear-gradient(90deg, rgba(212, 175, 55, 0.24), transparent);
}

.glass-module h3 {
    position: relative;
    z-index: 1;
    max-width: 520px;
    margin-bottom: 16px;
    color: #fff;
    font-size: clamp(1.45rem, 2.6vw, 2.1rem);
    font-weight: 700;
    line-height: 1.05;
}

.glass-module p {
    position: relative;
    z-index: 1;
    max-width: 520px;
    color: var(--muted);
    font-size: 0.98rem;
    font-weight: 300;
}

.module-trace {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.38), transparent);
    opacity: 0;
    transition: opacity 0.22s ease;
}

.glass-module:hover .module-trace {
    opacity: 1;
}

.interaction-traps {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 22px;
    padding: clamp(84px, 11vw, 130px) clamp(20px, 5vw, 72px);
    background: #080705;
}

.glass-panel {
    min-height: 350px;
    padding: clamp(28px, 4vw, 44px);
}

.trap-title {
    margin-bottom: 30px;
    color: var(--gold);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.18em;
}

.roi-simulator label {
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
}

.roi-simulator input[type="range"] {
    width: 100%;
    height: 4px;
    margin: 30px 0 34px;
    appearance: none;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--gold), rgba(255, 255, 255, 0.08));
    outline: none;
}

.roi-simulator input[type="range"]::-webkit-slider-thumb {
    width: 18px;
    height: 18px;
    appearance: none;
    border: 2px solid #070604;
    border-radius: 50%;
    background: var(--gold);
    cursor: pointer;
}

.roi-result p {
    color: var(--muted);
}

.roi-result h4 {
    margin-top: 10px;
    color: #fff;
    font-size: clamp(2rem, 4.8vw, 3.2rem);
    font-weight: 700;
    line-height: 1;
}

.terminal-wrapper {
    color: #d4f0aa;
    border-color: rgba(212, 175, 55, 0.12);
    background:
        linear-gradient(180deg, rgba(18, 18, 14, 0.94), rgba(4, 8, 5, 0.86)),
        #030603;
}

.terminal-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 28px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.12);
}

.terminal-header .dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
}

.dot.red { background: #e65f5a; }
.dot.yellow { background: #d1a938; }
.dot.green { background: #6ebf6d; }

.terminal-title {
    margin-left: auto;
    color: rgba(212, 240, 170, 0.5);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
}

.terminal-body {
    min-height: 184px;
    font-size: clamp(0.9rem, 1.5vw, 1.05rem);
    line-height: 1.9;
}

.terminal-line {
    min-height: 1.9em;
    color: rgba(224, 255, 190, 0.84);
}

.terminal-line span {
    display: inline-block;
    max-width: 0;
    overflow: hidden;
    white-space: nowrap;
    vertical-align: bottom;
}

.terminal-wrapper.is-visible .terminal-line span {
    animation: terminalType 0.85s steps(34, end) forwards;
}

.terminal-wrapper.is-visible .terminal-line:nth-child(2) span { animation-delay: 0.25s; }
.terminal-wrapper.is-visible .terminal-line:nth-child(3) span { animation-delay: 0.5s; }
.terminal-wrapper.is-visible .terminal-line:nth-child(4) span { animation-delay: 0.75s; }

@keyframes terminalType {
    to { max-width: 34ch; }
}

.control-room {
    position: relative;
    min-height: 100svh;
    display: grid;
    place-items: center;
    padding: 120px 20px 70px;
    overflow: hidden;
    text-align: center;
    background:
        radial-gradient(circle at 50% 42%, rgba(212, 175, 55, 0.1), transparent 430px),
        #000;
}

.core-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: min(96vw, 860px);
    aspect-ratio: 1;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.055), transparent 64%);
    pointer-events: none;
}

.control-content {
    position: relative;
    z-index: 1;
    width: min(880px, 100%);
}

.cta-kicker {
    display: inline-flex;
    margin-bottom: 20px;
    color: var(--gold);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.24em;
    text-transform: uppercase;
}

.control-content h2 {
    margin-bottom: 24px;
    color: #fff;
    font-size: clamp(2.5rem, 6vw, 5.4rem);
    font-weight: 900;
    line-height: 0.96;
    letter-spacing: 0;
}

.control-content > p {
    max-width: 560px;
    margin: 0 auto 48px;
    color: var(--muted);
    font-size: 1.16rem;
    font-weight: 300;
}

.massive-launch {
    min-height: 60px;
    padding: 18px 52px;
    font-size: 0.94rem;
}

.footer-logo-wrapper {
    display: flex;
    justify-content: center;
    margin: 96px 0 22px;
}

.footer-logo {
    height: 130px;
    opacity: 0.48;
}

.sys-footer {
    color: rgba(255, 255, 255, 0.25);
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.28em;
}

.reveal {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 860px) {
    .navbar {
        padding: 18px 20px;
    }

    .nav-status {
        font-size: 0.65rem;
        letter-spacing: 0.12em;
    }

    .hero-scene {
        min-height: 94svh;
        padding: 112px 20px 68px;
    }

    .hero-title {
        max-width: 720px;
        margin-right: auto;
        margin-left: auto;
        font-size: clamp(2.45rem, 10.8vw, 4.4rem);
        line-height: 1;
    }

    .hero-subtitle {
        max-width: 620px;
        font-size: 1.05rem;
    }

    .hero-tags {
        letter-spacing: 0.14em;
    }

    .storyline-wrapper {
        padding-top: 78px;
        padding-bottom: 78px;
    }

    .authority-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .authority-strip span {
        min-height: 58px;
        padding: 14px 16px;
        font-size: 0.66rem;
        letter-spacing: 0.13em;
    }

    .authority-strip span:nth-child(3) {
        border-left: 0;
        border-top: 1px solid var(--line);
    }

    .authority-strip span:nth-child(4) {
        border-top: 1px solid var(--line);
    }

    .story-scene {
        min-height: auto;
        padding: 50px 0;
    }

    .story-scene::before {
        font-size: clamp(7rem, 28vw, 12rem);
    }

    .story-scene::after {
        width: 10px;
        height: 10px;
        opacity: 0.72;
    }

    .storyline-line {
        opacity: 0.26;
    }

    .modules-grid,
    .interaction-traps {
        grid-template-columns: 1fr;
    }

    .glass-module {
        min-height: auto;
        padding: 34px 28px 30px;
    }

    .module-status {
        position: relative;
        top: auto;
        right: auto;
        max-width: none;
        margin-bottom: 18px;
        text-align: left;
    }

    .interaction-traps {
        gap: 18px;
    }

    .glass-panel {
        min-height: auto;
    }

    .control-room {
        min-height: auto;
        padding-top: 96px;
    }

    .footer-logo-wrapper {
        margin-top: 72px;
    }
}

@media (max-width: 560px) {
    body {
        background:
            radial-gradient(circle at 50% 0%, rgba(212, 175, 55, 0.09), transparent 320px),
            linear-gradient(180deg, #050505 0%, #030303 46%, #080705 100%);
    }

    .logo-img {
        height: 40px;
    }

    .nav-status {
        max-width: 112px;
        justify-content: flex-end;
        text-align: right;
        line-height: 1.2;
    }

    .hero-scene {
        min-height: auto;
        padding: 104px 18px 58px;
    }

    .hero-orb {
        top: 44%;
        width: min(108vw, 420px);
        opacity: 0.62;
    }

    .hero-title {
        margin-bottom: 20px;
        font-size: clamp(2.05rem, 10.6vw, 3.2rem);
    }

    .hero-subtitle {
        margin-bottom: 18px;
        font-size: 0.98rem;
        line-height: 1.55;
    }

    .hero-tags {
        margin-bottom: 28px;
        font-size: 0.62rem;
        letter-spacing: 0.11em;
        line-height: 1.6;
    }

    .btn-launch,
    .massive-launch {
        width: min(100%, 360px);
        min-height: 54px;
        padding-right: 22px;
        padding-left: 22px;
        font-size: 0.74rem;
        line-height: 1.25;
        text-align: center;
    }

    .terminal-title {
        display: none;
    }

    .authority-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .authority-strip span,
    .authority-strip span:nth-child(3),
    .authority-strip span:nth-child(4) {
        border-left: 0;
        border-top: 1px solid var(--line);
    }

    .authority-strip span:first-child {
        border-top: 0;
    }

    .authority-strip span:nth-child(2) {
        border-top: 0;
    }

    .storyline-wrapper {
        padding: 54px 18px;
    }

    .storyline-line,
    .story-scene::after {
        display: none;
    }

    .story-scene {
        padding: 40px 0;
    }

    .story-scene::before {
        font-size: clamp(5.6rem, 30vw, 8.5rem);
    }

    .scene-kicker,
    .section-kicker,
    .cta-kicker {
        margin-bottom: 13px;
        font-size: 0.64rem;
        letter-spacing: 0.16em;
    }

    .section-title,
    .modules-title,
    .control-content h2 {
        font-size: clamp(2rem, 9.6vw, 3rem);
        line-height: 1;
    }

    .scene-content p,
    .glass-module p,
    .control-content > p {
        font-size: 0.96rem;
        line-height: 1.6;
    }

    .modules-section {
        padding: 68px 18px;
    }

    .section-heading {
        margin-bottom: 34px;
    }

    .modules-grid,
    .interaction-traps {
        gap: 16px;
    }

    .glass-module {
        padding: 30px 22px 26px;
    }

    .module-index {
        top: 22px;
        left: 22px;
    }

    .module-status {
        margin-top: 28px;
        margin-bottom: 12px;
        font-size: 0.58rem;
        letter-spacing: 0.12em;
    }

    .glass-module[data-status] .module-status::after {
        content: "";
    }

    .glass-module h3 {
        margin-bottom: 12px;
        font-size: 1.34rem;
        line-height: 1.12;
    }

    .interaction-traps {
        padding: 62px 18px;
    }

    .glass-panel {
        padding: 28px 22px;
    }

    .trap-title {
        margin-bottom: 22px;
        font-size: 0.75rem;
    }

    .roi-simulator input[type="range"] {
        margin: 24px 0 28px;
    }

    .roi-result h4 {
        font-size: clamp(1.8rem, 10vw, 2.45rem);
    }

    .terminal-body {
        min-height: auto;
        font-size: 0.86rem;
        line-height: 1.75;
    }

    .terminal-line span,
    .terminal-wrapper.is-visible .terminal-line span {
        max-width: 100%;
        white-space: normal;
        animation: none;
    }

    .control-room {
        padding: 78px 18px 42px;
    }

    .control-content > p {
        margin-bottom: 32px;
    }

    .footer-logo-wrapper {
        margin: 54px 0 18px;
    }

    .sys-footer {
        letter-spacing: 0.18em;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .reveal,
    .reveal.is-visible {
        opacity: 1;
        transform: none;
    }

    .terminal-line span {
        max-width: 100%;
        white-space: normal;
    }
}
