/* Extracted from system-administrator.php */

/* ═══════════════════════════════════════════════════
   CYBERPUNK TERMINAL — System Admin ISP v2
   Redesigned 12.02.2026
   ═══════════════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;600;700;800;900&family=JetBrains+Mono:wght@300;400;500;600;700&display=swap');

:root {
    --cx-bg:       #0D0D0D;
    --cx-bg2:      #111113;
    --cx-surface:  #141418;
    --cx-border:   #1e1e24;
    --cx-neon:     #00F2FF;
    --cx-neon-rgb: 0,242,255;
    --cx-green:    #00FF41;
    --cx-green-rgb:0,255,65;
    --cx-pink:     #FF2D6F;
    --cx-purple:   #A855F7;
    --cx-yellow:   #FFE600;
    --cx-text:     #C8C8D0;
    --cx-dim:      #8B8B9A;
    --cx-heading:  'Orbitron', 'Michroma', sans-serif;
    --cx-mono:     'JetBrains Mono', 'Roboto Mono', 'Fira Code', monospace;
}

/* ── BASE ───────────────────────────────────────── */
.cx-page {
    background: var(--cx-bg);
    color: var(--cx-text);
    font-family: var(--cx-mono);
    font-size: 14px;
    line-height: 1.7;
    overflow-x: hidden;
    position: relative;
    -webkit-font-smoothing: antialiased;
}
.cx-page *,.cx-page *::before,.cx-page *::after { box-sizing: border-box; }
.cx-page a { color: var(--cx-neon); text-decoration: none; transition: .25s; }
.cx-page a:hover { color: #fff; text-shadow: 0 0 12px var(--cx-neon); }
/* Fix: buttons are <a> tags — force dark text on cyan bg */
.cx-page a.cx-btn-primary,
.cx-page a.cx-btn-primary:visited,
.cx-page a.cx-btn-primary:active { color: #0D0D0D !important; text-shadow: none !important; }
.cx-page a.cx-btn-primary:hover { color: #0D0D0D !important; text-shadow: none !important; transform: translateY(-2px); }
.cx-page a.cx-btn-tg,
.cx-page a.cx-btn-tg:visited,
.cx-page a.cx-btn-tg:active { color: #fff !important; text-shadow: none !important; }
.cx-page a.cx-btn-tg:hover { color: #fff !important; text-shadow: none !important; }
.cx-wrap { max-width: 1060px; margin: 0 auto; padding: 0 24px; }

/* ── ENGINEERING GRID BG ────────────────────────── */
.cx-grid-bg {
    position: fixed; inset: 0; z-index: 0;
    background:
        linear-gradient(rgba(0,242,255,.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,242,255,.025) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
}
/* Pulsing sub-grid */
.cx-grid-bg::after {
    content: '';
    position: absolute; inset: 0;
    background:
        linear-gradient(rgba(0,255,65,.012) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,255,65,.012) 1px, transparent 1px);
    background-size: 10px 10px;
    animation: cx-subgrid 6s ease-in-out infinite;
}
@keyframes cx-subgrid { 0%,100%{opacity:.4} 50%{opacity:1} }

/* ── SCAN LINES ─────────────────────────────────── */
.cx-scan {
    position: fixed; inset: 0; z-index: 1; pointer-events: none;
    background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0,0,0,.03) 2px, rgba(0,0,0,.03) 4px);
}

/* ── RUNNING BORDER ANIMATION ───────────────────── */
@keyframes cx-border-run {
    0%   { background-position: 0 0, 100% 0, 100% 100%, 0 100%; }
    100% { background-position: 300px 0, 100% 300px, -300px 100%, 0 -300px; }
}
.cx-runborder {
    position: relative;
}
.cx-runborder::before {
    content: '';
    position: absolute; inset: -1px;
    pointer-events: none;
    background:
        linear-gradient(90deg, var(--cx-neon) 50%, transparent 50%) top / 20px 1px repeat-x,
        linear-gradient(0deg, var(--cx-neon) 50%, transparent 50%) right / 1px 20px repeat-y,
        linear-gradient(90deg, var(--cx-neon) 50%, transparent 50%) bottom / 20px 1px repeat-x,
        linear-gradient(0deg, var(--cx-neon) 50%, transparent 50%) left / 1px 20px repeat-y;
    opacity: .15;
    animation: cx-border-run 8s linear infinite;
}

/* ── GLITCH ─────────────────────────────────────── */
.cx-glitch { position: relative; display: inline-block; }
.cx-glitch::before, .cx-glitch::after {
    content: attr(data-text);
    position: absolute; left: 0; top: 0;
    width: 100%; height: 100%;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}
.cx-glitch::before { color: var(--cx-pink); }
.cx-glitch::after  { color: var(--cx-neon); }
.cx-glitch:hover::before {
    opacity: .8;
    animation: cx-gl1 .3s linear;
}
.cx-glitch:hover::after {
    opacity: .8;
    animation: cx-gl2 .3s linear;
}
@keyframes cx-gl1 {
    0%   { clip-path: inset(40% 0 0 0); transform: translate(-4px, -2px); }
    20%  { clip-path: inset(10% 0 60% 0); transform: translate(4px, 2px); }
    40%  { clip-path: inset(50% 0 20% 0); transform: translate(-2px, 4px); }
    60%  { clip-path: inset(20% 0 40% 0); transform: translate(3px, -3px); }
    80%  { clip-path: inset(60% 0 5% 0); transform: translate(-3px, 2px); }
    100% { clip-path: inset(0); transform: translate(0); }
}
@keyframes cx-gl2 {
    0%   { clip-path: inset(0 0 60% 0); transform: translate(4px, 2px); }
    20%  { clip-path: inset(60% 0 10% 0); transform: translate(-3px, -2px); }
    40%  { clip-path: inset(20% 0 40% 0); transform: translate(3px, 3px); }
    60%  { clip-path: inset(50% 0 20% 0); transform: translate(-4px, -3px); }
    80%  { clip-path: inset(10% 0 50% 0); transform: translate(2px, 3px); }
    100% { clip-path: inset(0); transform: translate(0); }
}

/* ── BLINKING CURSOR ────────────────────────────── */
.cx-cursor {
    display: inline-block;
    width: 10px; height: 1.1em;
    background: var(--cx-green);
    margin-left: 4px;
    vertical-align: text-bottom;
    animation: cx-blink .8s step-end infinite;
    box-shadow: 0 0 8px rgba(var(--cx-green-rgb),.5);
}
@keyframes cx-blink { 0%,100%{opacity:1} 50%{opacity:0} }

/* ── SECTION ────────────────────────────────────── */
.cx-section {
    position: relative; z-index: 2;
    padding: 90px 0;
}
.cx-section__tag {
    font-family: var(--cx-heading);
    font-size: clamp(18px, 3vw, 26px);
    font-weight: 700;
    color: var(--cx-neon);
    letter-spacing: 3px;
    margin-bottom: 40px;
    text-shadow: 0 0 30px rgba(var(--cx-neon-rgb),.3);
}

/* ── CLIPPED CARD ───────────────────────────────── */
.cx-card {
    background: var(--cx-surface);
    border: 1px solid var(--cx-border);
    clip-path: polygon(
        0 0,
        calc(100% - 18px) 0,
        100% 18px,
        100% 100%,
        18px 100%,
        0 calc(100% - 18px)
    );
    padding: 28px 24px;
    transition: .3s;
}
.cx-card:hover {
    border-color: rgba(var(--cx-neon-rgb),.3);
    box-shadow: 0 0 40px rgba(var(--cx-neon-rgb),.06), inset 0 1px 0 rgba(var(--cx-neon-rgb),.1);
}

/* ═══════════════════════════════════════════════════
   1. HERO — [ROOT_ACCESS]
   ═══════════════════════════════════════════════════ */
.cx-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 20px 60px;
    position: relative; z-index: 2;
}
.cx-hero__init {
    font-size: 13px;
    color: var(--cx-green);
    letter-spacing: 2px;
    margin-bottom: 32px;
    opacity: 0;
    animation: cx-typein 1.2s .3s forwards;
}
@keyframes cx-typein { to { opacity: 1; } }

.cx-hero__title {
    font-family: var(--cx-heading);
    font-size: clamp(36px, 7vw, 80px);
    font-weight: 900;
    color: #fff;
    letter-spacing: 6px;
    margin: 0 0 24px;
    line-height: 1;
    text-shadow:
        0 0 40px rgba(var(--cx-neon-rgb),.25),
        0 0 80px rgba(var(--cx-neon-rgb),.1);
}
.cx-hero__sub {
    font-size: clamp(13px, 1.8vw, 17px);
    color: var(--cx-text);
    max-width: 540px;
    margin: 0 auto 12px;
    line-height: 1.8;
}
.cx-hero__note {
    font-size: 11px;
    color: var(--cx-dim);
    letter-spacing: 2px;
    margin-bottom: 48px;
    text-transform: uppercase;
}
/* CTA Button */
.cx-btn-primary {
    display: inline-block;
    font-family: var(--cx-heading);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--cx-bg);
    background: var(--cx-neon);
    border: none;
    padding: 18px 52px;
    cursor: pointer;
    text-transform: uppercase;
    text-decoration: none;
    clip-path: polygon(
        0 0, calc(100% - 14px) 0, 100% 14px,
        100% 100%, 14px 100%, 0 calc(100% - 14px)
    );
    box-shadow: 0 0 30px rgba(var(--cx-neon-rgb),.35), inset 0 0 30px rgba(255,255,255,.1);
    transition: .3s;
    position: relative;
}
.cx-btn-primary:hover {
    background: #fff;
    color: var(--cx-bg);
    box-shadow: 0 0 60px rgba(var(--cx-neon-rgb),.5);
    text-shadow: none;
    transform: translateY(-2px);
}
/* Scroll hint */
.cx-scroll-hint {
    position: absolute;
    bottom: 28px; left: 50%;
    transform: translateX(-50%);
    font-size: 11px;
    color: var(--cx-dim);
    letter-spacing: 3px;
    animation: cx-float 2.5s ease-in-out infinite;
}
@keyframes cx-float {
    0%,100% { transform: translateX(-50%) translateY(0); opacity:.4; }
    50%     { transform: translateX(-50%) translateY(10px); opacity: 1; }
}

/* ═══════════════════════════════════════════════════
   2. STACK — [HARDWARE & STACK]
   ═══════════════════════════════════════════════════ */
.cx-stack-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 16px;
}
.cx-stack-item {
    display: flex;
    align-items: baseline;
    gap: 16px;
    padding: 20px 22px;
    background: rgba(var(--cx-neon-rgb),.02);
    border-left: 3px solid var(--cx-neon);
    border-bottom: 1px solid var(--cx-border);
    transition: .3s;
}
.cx-stack-item:hover {
    background: rgba(var(--cx-neon-rgb),.06);
    border-left-color: var(--cx-green);
    transform: translateX(4px);
}
.cx-stack-label {
    font-family: var(--cx-heading);
    font-size: 10px;
    font-weight: 700;
    color: var(--cx-neon);
    letter-spacing: 1px;
    min-width: 95px;
    text-transform: uppercase;
    white-space: nowrap;
}
.cx-stack-value {
    font-size: 13px;
    color: var(--cx-text);
}

/* ═══════════════════════════════════════════════════
   3. MISSION — [MISSION_CRITICAL]
   ═══════════════════════════════════════════════════ */
.cx-task-list {
    list-style: none; padding: 0; margin: 0;
    max-width: 800px;
}
.cx-task-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid var(--cx-border);
    transition: .25s;
}
.cx-task-item:hover {
    padding-left: 10px;
    background: rgba(var(--cx-green-rgb),.03);
}
.cx-task-tag {
    font-family: var(--cx-heading);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 3px 10px;
    border: 1px solid;
    white-space: nowrap;
    min-width: 55px;
    text-align: center;
    margin-top: 2px;
}
.cx-task-tag[data-tag="RUN"]  { color: var(--cx-green);  border-color: rgba(var(--cx-green-rgb),.4); }
.cx-task-tag[data-tag="OK"]   { color: var(--cx-neon);   border-color: rgba(var(--cx-neon-rgb),.4); }
.cx-task-tag[data-tag="INFO"] { color: var(--cx-yellow); border-color: rgba(255,230,0,.3); }
.cx-task-text {
    font-size: 14px;
    line-height: 1.6;
}

/* ═══════════════════════════════════════════════════
   4. ENTRY — [ENTRY_LEVEL]
   ═══════════════════════════════════════════════════ */
.cx-quote-block {
    border-left: 3px solid var(--cx-pink);
    background: rgba(255,45,111,.04);
    padding: 24px 28px;
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.8;
}
.cx-quote-block em {
    color: var(--cx-neon);
    font-style: normal;
    font-weight: 600;
}
.cx-learn-note {
    font-size: 14px;
    color: var(--cx-green);
    padding: 14px 20px;
    border: 1px dashed rgba(var(--cx-green-rgb),.3);
    margin-bottom: 32px;
}
.cx-learn-note::before {
    content: '> ';
    opacity: .5;
}
.cx-req-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 10px;
}
.cx-req-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    font-size: 13px;
    background: var(--cx-surface);
    border: 1px solid var(--cx-border);
    transition: .2s;
}
.cx-req-item:hover { border-color: rgba(var(--cx-green-rgb),.3); }
.cx-req-item::before {
    content: '✓';
    color: var(--cx-green);
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════
   5. PERKS — [SYSTEM_REWARDS]
   ═══════════════════════════════════════════════════ */
.cx-perks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 20px;
}
.cx-perk {
    text-align: center;
    padding: 36px 20px 28px;
}
.cx-perk__icon {
    width: 56px; height: 56px;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--cx-neon);
    border: 2px solid rgba(var(--cx-neon-rgb),.3);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    background: rgba(var(--cx-neon-rgb),.06);
    transition: .3s;
}
.cx-perk:hover .cx-perk__icon {
    border-color: var(--cx-green);
    color: var(--cx-green);
    background: rgba(var(--cx-green-rgb),.08);
    box-shadow: 0 0 20px rgba(var(--cx-green-rgb),.15);
}
.cx-perk__title {
    font-family: var(--cx-heading);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #fff;
    margin-bottom: 10px;
}
.cx-perk__desc {
    font-size: 12px;
    color: var(--cx-dim);
    line-height: 1.7;
}

/* ═══════════════════════════════════════════════════
   6. FORM — [SECURE_SHELL_LOGIN] Terminal
   ═══════════════════════════════════════════════════ */
.cx-terminal {
    background: #0A0A0C;
    border: 1px solid #222;
    border-radius: 8px;
    overflow: hidden;
    max-width: 720px;
    margin: 0 auto;
    box-shadow:
        0 4px 60px rgba(0,0,0,.6),
        0 0 80px rgba(var(--cx-neon-rgb),.04);
}
.cx-term__bar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 18px;
    background: #161618;
    border-bottom: 1px solid #222;
}
.cx-term__dot { width: 12px; height: 12px; border-radius: 50%; }
.cx-term__dot--r { background: #ff5f56; }
.cx-term__dot--y { background: #ffbd2e; }
.cx-term__dot--g { background: #27c93f; }
.cx-term__bar-path {
    font-size: 11px;
    color: #888;
    margin-left: 12px;
    letter-spacing: .5px;
}
.cx-term__body {
    padding: 28px 28px 32px;
}
.cx-term__output {
    font-size: 12px;
    color: var(--cx-green);
    margin-bottom: 28px;
    line-height: 2;
}
.cx-term__output span {
    color: var(--cx-dim);
}

/* Form fields */
.cx-field {
    margin-bottom: 20px;
}
.cx-field__row {
    display: flex;
    align-items: center;
    gap: 0;
}
.cx-field__prompt {
    font-size: 12px;
    color: var(--cx-green);
    white-space: nowrap;
    padding: 12px 0 12px 2px;
    user-select: none;
    flex-shrink: 0;
}
.cx-field__input,
.cx-field__select,
.cx-field__textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid #2a2a30;
    color: var(--cx-text);
    font-family: var(--cx-mono);
    font-size: 14px;
    padding: 12px 12px;
    outline: none;
    transition: .3s;
}
.cx-field__input:focus,
.cx-field__select:focus,
.cx-field__textarea:focus {
    border-bottom-color: var(--cx-neon);
    box-shadow: 0 2px 0 rgba(var(--cx-neon-rgb),.3);
}
.cx-field__input::placeholder,
.cx-field__textarea::placeholder {
    color: #555;
    font-style: italic;
}
.cx-field__select {
    appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M0 0l5 5 5-5' stroke='%2300F2FF' fill='none' stroke-width='1.2'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 8px center;
    padding-right: 30px;
}
.cx-field__select option {
    background: #0A0A0C;
    color: var(--cx-text);
}
.cx-field__textarea {
    resize: vertical;
    min-height: 60px;
    border: 1px solid #2a2a30;
    padding: 12px;
    margin-top: 4px;
}
.cx-field__textarea:focus {
    border-color: var(--cx-neon);
    box-shadow: 0 0 0 1px rgba(var(--cx-neon-rgb),.2);
}
.cx-field__file-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 6px;
    padding-left: 2px;
}
.cx-field__file-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--cx-mono);
    font-size: 11px;
    color: var(--cx-dim);
    border: 1px dashed #333;
    padding: 8px 14px;
    cursor: pointer;
    transition: .25s;
}
.cx-field__file-btn:hover {
    border-color: var(--cx-neon);
    color: var(--cx-neon);
}
.cx-field__file-name {
    font-size: 11px;
    color: var(--cx-green);
}

/* Submit button */
.cx-submit {
    display: block;
    width: 100%;
    font-family: var(--cx-heading);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--cx-bg);
    background: var(--cx-neon);
    border: none;
    padding: 18px;
    cursor: pointer;
    text-transform: uppercase;
    margin-top: 28px;
    clip-path: polygon(
        0 0, calc(100% - 12px) 0, 100% 12px,
        100% 100%, 12px 100%, 0 calc(100% - 12px)
    );
    box-shadow: 0 0 30px rgba(var(--cx-neon-rgb),.3);
    transition: .3s;
}
.cx-submit:hover {
    background: #fff;
    box-shadow: 0 0 50px rgba(var(--cx-neon-rgb),.4);
    transform: translateY(-1px);
}
.cx-submit:disabled { opacity: .4; cursor: not-allowed; transform: none; }

.cx-form-tg {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 18px;
    font-size: 12px;
    color: var(--cx-dim);
}

/* ═══════════════════════════════════════════════════
   7. CTA BOTTOM
   ═══════════════════════════════════════════════════ */
.cx-cta {
    text-align: center;
    padding: 80px 0;
    z-index: 2; position: relative;
}
.cx-cta::before {
    content: '';
    position: absolute; top: 0; left: 50%;
    transform: translateX(-50%);
    width: 280px; height: 1px;
    background: linear-gradient(90deg, transparent, var(--cx-neon), transparent);
}
.cx-cta__cmd {
    font-family: var(--cx-mono);
    font-size: clamp(14px, 2.5vw, 22px);
    color: var(--cx-green);
    margin-bottom: 14px;
    text-shadow: 0 0 20px rgba(var(--cx-green-rgb),.3);
}
.cx-cta__desc {
    font-size: 13px;
    color: var(--cx-dim);
    margin-bottom: 36px;
}
.cx-cta__actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 28px;
}
.cx-btn-tg {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--cx-heading);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #fff;
    background: linear-gradient(135deg, #2AABEE, #229ED9);
    border: none;
    padding: 16px 36px;
    cursor: pointer;
    text-decoration: none;
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
    transition: .3s;
}
.cx-btn-tg:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(42,171,238,.3);
    color: #fff; text-shadow: none;
}
.cx-cta__phone {
    font-size: 12px;
    color: var(--cx-dim);
    margin-bottom: 6px;
}
.cx-cta__salary {
    font-size: 11px;
    color: var(--cx-dim);
    opacity: .85;
}

/* ═══════════════════════════════════════════════════
   STICKY BAR
   ═══════════════════════════════════════════════════ */
.cx-sticky {
    position: fixed;
    bottom: -80px; left: 0; right: 0;
    background: rgba(13,13,13,.96);
    border-top: 1px solid var(--cx-border);
    padding: 12px 20px;
    z-index: 100;
    backdrop-filter: blur(12px);
    transition: bottom .4s cubic-bezier(.4,0,.2,1);
}
.cx-sticky.visible { bottom: 0; }
.cx-sticky__inner {
    max-width: 1060px; margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.cx-sticky__cmd {
    font-size: 13px;
    color: var(--cx-green);
}
.cx-sticky__btn {
    font-family: var(--cx-heading);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--cx-bg);
    background: var(--cx-neon);
    border: none;
    padding: 10px 32px;
    cursor: pointer;
    clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
    transition: .25s;
}
.cx-sticky__btn:hover { background: #fff; }

/* ═══════════════════════════════════════════════════
   TOAST
   ═══════════════════════════════════════════════════ */
.cx-toast {
    position: fixed;
    bottom: 30px; right: 30px;
    background: var(--cx-surface);
    border: 1px solid var(--cx-green);
    padding: 16px 24px;
    display: none;
    align-items: center;
    gap: 12px;
    z-index: 200;
    font-size: 13px;
    color: var(--cx-green);
    box-shadow: 0 0 40px rgba(var(--cx-green-rgb),.15);
    animation: cx-slidein .4s ease;
}
@keyframes cx-slidein {
    from { transform: translateX(120%); opacity: 0; }
    to   { transform: translateX(0); opacity: 1; }
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE — Mobile = Pure Black Terminal
   ═══════════════════════════════════════════════════ */
@media (max-width: 768px) {
    .cx-hero { padding: 80px 16px 50px; min-height: auto; min-height: 90vh; }
    .cx-section { padding: 60px 0; }
    .cx-stack-grid { grid-template-columns: 1fr; }
    .cx-perks-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .cx-term__body { padding: 20px 16px; }
    .cx-sticky__inner { flex-direction: column; text-align: center; gap: 8px; }
    .cx-cta__actions { flex-direction: column; align-items: center; }
    .cx-field__file-wrap { flex-direction: column; align-items: flex-start; }
    .cx-req-grid { grid-template-columns: 1fr; }
    .cx-perk { padding: 24px 14px 20px; }
}
@media (max-width: 480px) {
    .cx-hero__title { letter-spacing: 2px; }
    .cx-section__tag { letter-spacing: 1px; font-size: 16px; }
    .cx-terminal { border-radius: 0; margin: 0 -24px; }
    .cx-perks-grid { grid-template-columns: 1fr; }
    .cx-btn-primary { padding: 16px 32px; font-size: 13px; letter-spacing: 2px; }
    .cx-field__prompt { font-size: 10px; }
}
