/* ===============================
   GLOBAL TRON STYLE
   =============================== */

   :root {
    --tron-black: #050505;
    --tron-yellow: #FFD700;
    --tron-green: #00FF7F;
    --tron-blue: #1E90FF;
    --tron-white: #e8e8e8;
    --tron-cyan: #7df9ff;
    --tron-border: rgba(125, 249, 255, 0.16);
    --tron-surface: rgba(8, 14, 24, 0.7);
    --tron-surface-strong: rgba(5, 10, 18, 0.9);
    --platform-max-width: 1520px;
}

/* Background */
body {
    margin: 0;
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    background:
        radial-gradient(circle at top left, rgba(14, 61, 91, 0.3), transparent 30%),
        radial-gradient(circle at top right, rgba(78, 60, 16, 0.22), transparent 28%),
        linear-gradient(180deg, #06090f 0%, #04070d 52%, #020409 100%);
    color: var(--tron-white);
    min-height: 100vh;
    position: relative;
}
body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: linear-gradient(180deg, rgba(0,0,0,0.55), transparent 90%);
    opacity: 0.45;
}

/* ===============================
   NAVBAR
   =============================== */

.tron-navbar {
    width: 100%;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0, 0, 0, 0.65);
    border-bottom: 2px solid var(--tron-yellow);
    backdrop-filter: blur(8px);
    box-shadow: 0 0 12px var(--tron-yellow);
    transition: box-shadow 0.4s ease, border-bottom-color 0.4s ease;
}

body.scrolled .tron-navbar {
    box-shadow: 0 0 20px var(--tron-yellow), 0 0 30px var(--tron-yellow) inset;
    border-bottom-color: var(--tron-green);
}

.nav-left {
    font-size: 1.4rem;
    font-weight: bold;
    letter-spacing: 2px;
    color: var(--tron-yellow);
}

.nav-right {
    display: flex;
    gap: 25px;
}

.nav-item {
    text-decoration: none;
    color: var(--tron-white);
    padding: 8px 12px;
    border: 1px solid var(--tron-yellow);
    border-radius: 6px;
    transition: 0.25s ease;
}

.nav-item:hover {
    color: var(--tron-green);
    border-color: var(--tron-green);
    box-shadow: 0 0 12px var(--tron-green);
}

.nav-item:active {
    color: var(--tron-blue);
    border-color: var(--tron-blue);
    box-shadow: 0 0 12px var(--tron-blue);
}

/* NAV UNDERLINE ANIMATION */
.underline-anim {
    position: relative;
}
.underline-anim::after {
    content: "";
    position: absolute;
    bottom: -3px;
    left: 0;
    height: 2px;
    width: 0%;
    background: var(--tron-yellow);
    box-shadow: 0 0 6px var(--tron-yellow);
    transition: width 0.3s ease;
}
.underline-anim:hover::after {
    width: 100%;
}

/* MOBILE NAV */
.nav-mobile-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}
.nav-mobile-toggle span {
    width: 25px;
    height: 3px;
    background: var(--tron-yellow);
    border-radius: 3px;
    transition: 0.3s ease;
}

@media (max-width: 900px) {
    .nav-right {
        position: fixed;
        top: 70px;
        right: -300px;
        width: 250px;
        background: rgba(0,0,0,0.9);
        border-left: 2px solid var(--tron-yellow);
        box-shadow: 0 0 15px var(--tron-yellow);
        padding: 20px;
        flex-direction: column;
        gap: 18px;
        transition: 0.3s ease;
        z-index: 999;
    }
    .nav-right.nav-open {
        right: 0px;
    }
    .nav-mobile-toggle {
        display: flex !important;
    }
}

/* ===============================
   CONTAINER
   =============================== */

.tron-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 30px;
    background: rgba(10,10,10,0.65);
    border: 2px solid var(--tron-yellow);
    border-radius: 12px;
    box-shadow: 0 0 25px var(--tron-yellow);
    backdrop-filter: blur(8px);
    animation: tron-glow 3s infinite ease-in-out;
}

@keyframes tron-glow {
    0% { box-shadow: 0 0 8px var(--tron-yellow); }
    50% { box-shadow: 0 0 18px var(--tron-yellow); }
    100% { box-shadow: 0 0 8px var(--tron-yellow); }
}

/* ===============================
   BUTTONS
   =============================== */

.tron-btn {
    display: inline-block;
    padding: 12px 24px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--tron-white);
    background: transparent;
    text-decoration: none;
    cursor: pointer;
    border: 2px solid var(--tron-yellow);
    border-radius: 10px;
    transition: all 0.25s ease;
    box-shadow: 0 0 12px var(--tron-yellow);
}
.tron-btn:hover {
    border-color: var(--tron-green);
    color: var(--tron-green);
    box-shadow: 0 0 16px var(--tron-green);
}
.tron-btn:active {
    border-color: var(--tron-blue);
    color: var(--tron-blue);
    box-shadow: 0 0 16px var(--tron-blue);
}

.tron-btn-full {
    width: 100%;
    text-align: center;
}

/* ===============================
   FOOTER (MERGED VERSION)
   =============================== */

.tron-footer {
    margin-top: 50px;
    text-align: center;
    padding: 20px 0;
    background: rgba(0,0,0,0.5);
    border-top: 2px solid var(--tron-yellow);
    color: var(--tron-white);
    font-size: 0.9rem;
    box-shadow: 0 -3px 12px rgba(255,255,80,0.4);
}

.footer-buttons {
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-btn {
    padding: 8px 16px;
    color: var(--tron-white);
    text-decoration: none;
    border: 1px solid var(--tron-yellow);
    border-radius: 8px;
    transition: 0.25s ease;
    font-size: 0.9rem;
    box-shadow: 0 0 8px rgba(255,255,100,0.4);
}
.footer-btn:hover {
    color: var(--tron-green);
    border-color: var(--tron-green);
    box-shadow: 0 0 16px rgba(0,255,150,0.6);
}
.footer-btn:active {
    color: var(--tron-blue);
    border-color: var(--tron-blue);
    box-shadow: 0 0 16px rgba(0,150,255,0.6);
}

.footer-text {
    margin-top: 10px;
    opacity: 0.8;
}

/* ===============================
   TRON UPLOAD PANEL + INPUTS
   =============================== */

.upload-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 28px;
    margin-bottom: 80px;
    padding-inline: 10px;
}

.neon-panel {
    width: 95%;
    max-width: 940px;
    padding: 34px 34px;
    background: rgba(0,0,0,0.72);
    border: 1px solid rgba(245, 215, 66, 0.45);
    border-radius: 24px;
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.28),
        0 0 18px rgba(255,255,100,0.18),
        inset 0 0 18px rgba(255,255,130,0.08);
    backdrop-filter: blur(12px);
    animation: panelFadeIn 0.4s ease-out;
    overflow: visible;
}

@keyframes panelFadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

.upload-title {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 800;
    color: #ffe066;
    text-shadow: 0 0 12px rgba(255,240,150,0.6);
}

.upload-subtext {
    text-align: center;
    color: #d4dde7;
    margin: 0 auto 16px;
    max-width: 60ch;
    line-height: 1.65;
}

.upload-field {
    margin-bottom: 18px;
    overflow: visible;
}
.upload-field label {
    color: #fff8b0;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 10px;
    display: block;
}
.upload-field .optional {
    color: #9db0c1;
    font-size: 0.9rem;
}

.upload-input {
    width: 100%;
    padding: 12px 14px;
    border-radius: 12px;
    background: rgba(0,0,0,0.52);
    border: 1px solid rgba(245, 215, 66, 0.45);
    color: #fdfdfd;
    cursor: pointer;
    transition: 0.25s ease;
}
.upload-input:hover {
    border-color: #00ff95;
    box-shadow: 0 0 12px rgba(0,255,140,0.26);
}
.upload-input:active {
    border-color: #33a6ff;
    box-shadow: 0 0 12px rgba(0,160,255,0.28);
}

.upload-input.uploaded {
    border-color: #00ff7f !important;
    box-shadow: 0 0 15px #00ff7f;
}
.upload-input.waiting {
    border-color: #ff4444 !important;
    box-shadow: 0 0 12px #ff4444aa;
}

/* Upload button */
.upload-btn {
    width: 100%;
    margin-top: 24px;
    padding: 14px 20px;
    border-radius: 14px;
    background: linear-gradient(90deg, #ffe066, #ffcc33);
    color: #000;
    font-size: 1.12rem;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 12px 28px rgba(255,220,120,0.22);
    transition: 0.25s ease;
}
.upload-btn:hover {
    background: linear-gradient(90deg, #00ff95, #00cc7a);
    box-shadow: 0 16px 30px rgba(0,255,140,0.22);
    transform: translateY(-1px);
}
.upload-btn:active {
    background: linear-gradient(90deg, #33a6ff, #008cff);
    box-shadow: 0 12px 26px rgba(0,150,255,0.2);
    transform: scale(0.98);
}

/* ===============================
   DROP ZONES
   =============================== */

.drop-zone {
    border: 2px dashed var(--tron-yellow);
    padding: 18px;
    border-radius: 18px;
    margin-bottom: 0;
    transition: 0.25s ease;
    background: linear-gradient(180deg, rgba(255,255,255,0.025), rgba(255,255,255,0.01));
    overflow: visible;
}
.drop-zone.drag-active {
    background: rgba(255,255,0,0.08);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.2);
}
.drop-zone.uploaded {
    border-color: #00ff7f;
    box-shadow: 0 0 15px rgba(0,255,127,0.22);
}
.drop-zone.missing {
    border-color: #ff4444;
    box-shadow: 0 0 15px rgba(255,68,68,0.18);
}
.drop-overlay {
    font-size: 0.83rem;
    color: rgba(220, 231, 242, 0.66);
    margin-top: 8px;
    opacity: 1;
}

/* ===============================
   TOOLTIP SYSTEM
   =============================== */

.tooltip-wrapper {
    position: relative;
    display: inline-flex;
    align-items: center;
    overflow: visible;
}

.tooltip-icon {
    margin-left: 8px;
    width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border: 1px solid rgba(255, 215, 0, 0.35);
    background: rgba(255, 215, 0, 0.08);
    font-size: 0.78rem;
    cursor: pointer;
    color: var(--tron-yellow);
    text-shadow: 0 0 6px var(--tron-yellow);
    outline: none;
}

.tooltip-box {
    position: absolute;
    left: 50%;
    bottom: calc(100% + 12px);
    transform: translateX(-50%);
    min-width: 260px;
    max-width: 360px;
    width: min(320px, calc(100vw - 36px));
    white-space: normal;
    line-height: 1.45;
    background: rgba(3,7,14,0.96);
    color: #f6f9ff;
    padding: 14px 16px;
    border-radius: 14px;
    border: 1px solid rgba(255, 215, 0, 0.5);
    box-shadow:
        0 16px 38px rgba(0,0,0,0.4),
        0 0 18px rgba(255,215,0,0.14);
    font-size: 0.85rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 9999;
    transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.tooltip-box::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 100%;
    width: 12px;
    height: 12px;
    background: rgba(3,7,14,0.96);
    border-right: 1px solid rgba(255, 215, 0, 0.4);
    border-bottom: 1px solid rgba(255, 215, 0, 0.4);
    transform: translate(-50%, -50%) rotate(45deg);
}

.tooltip-wrapper:hover .tooltip-box,
.tooltip-wrapper:focus-within .tooltip-box {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-2px);
}

@media (max-width: 640px) {
    .tooltip-box {
        left: 0;
        transform: translateX(0);
        min-width: 0;
        width: min(300px, calc(100vw - 36px));
    }

    .tooltip-box::after {
        left: 22px;
        transform: translateY(-50%) rotate(45deg);
    }

    .tooltip-wrapper:hover .tooltip-box,
    .tooltip-wrapper:focus-within .tooltip-box {
        transform: translateX(0) translateY(-2px);
    }
}

/* ===============================
   MODALS
   =============================== */

.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.75);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.modal-content {
    max-width: 600px;
    padding: 32px;
    border-radius: 16px;
    text-align: center;
    border: 2px solid #ffe066;
    background: rgba(0,0,0,0.85);
    box-shadow:
        0 0 25px rgba(255,255,100,0.4),
        inset 0 0 15px rgba(255,255,150,0.2);
}

.modal-btn {
    margin-top: 20px;
    padding: 10px 18px;
    border-radius: 10px;
    background: #ffe066;
    color: #000;
    font-weight: 700;
    cursor: pointer;
    transition: 0.2s ease;
}
.modal-btn:hover {
    background: #00ff95;
    box-shadow: 0 0 12px rgba(0,255,150,0.5);
}
.modal-btn:active {
    background: #33a6ff;
}

/* Success modal */
.success-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
}
.success-modal.hidden {
    display: none;
}
.success-box {
    background: #000;
    border: 2px solid var(--tron-yellow);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 0 25px var(--tron-yellow);
    text-align: center;
}

/* ===============================
   LOADING SPINNER
   =============================== */

.tron-spinner {
    width: 80px;
    height: 80px;
    border: 6px solid rgba(255,255,0,0.2);
    border-top-color: var(--tron-yellow);
    border-radius: 50%;
    animation: spinTron 1s linear infinite, glowTron 2s ease-in-out infinite;
}

@keyframes spinTron {
    100% { transform: rotate(360deg); }
}
@keyframes glowTron {
    0% { box-shadow: 0 0 10px var(--tron-yellow); }
    50% { box-shadow: 0 0 25px var(--tron-yellow); }
    100% { box-shadow: 0 0 10px var(--tron-yellow); }
}

.tron-loading-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(4px);
    z-index: 99999;
    justify-content: center;
    align-items: center;
}

/* ===============================
   ABOUT PANEL
   =============================== */

.about-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    margin-bottom: 60px;
}
.about-panel {
    max-width: 800px;
    padding: 36px;
}
.about-panel ul {
    padding-left: 20px;
    margin: 20px 0;
    color: #fff8b0;
}

/* ===============================
   FADE SECTIONS (ABOUT PAGE)
   =============================== */

.fade-section {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity .8s, transform .8s;
}
.fade-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===============================
   PLATFORM SHELL
   =============================== */

html, body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden !important;
    padding: 0;
}

*, *::before, *::after {
    box-sizing: border-box;
}

img, div, section, header, footer {
    max-width: 100%;
}

.platform-bg {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.platform-bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(30px);
    opacity: 0.28;
}

.platform-bg-orb-a {
    width: 340px;
    height: 340px;
    top: 76px;
    left: -60px;
    background: radial-gradient(circle, rgba(0,255,255,0.34), transparent 70%);
}

.platform-bg-orb-b {
    width: 380px;
    height: 380px;
    right: -90px;
    top: 180px;
    background: radial-gradient(circle, rgba(255,215,0,0.18), transparent 72%);
}

.platform-bg-grid {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 50% 0%, rgba(0, 255, 255, 0.05), transparent 36%),
        linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.2));
}

.platform-shell {
    width: 100%;
    padding-inline: clamp(14px, 2.6vw, 30px);
}

.platform-main {
    width: min(var(--platform-max-width), 100%);
    margin: 0 auto;
    padding-top: 20px;
    padding-bottom: 24px;
}

.header-spacer {
    margin: 0 !important;
    height: 0;
}

.container,
.container-fluid {
    position: relative;
}

.glass-panel {
    background:
        linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.015)),
        rgba(4, 8, 16, 0.82);
    border: 1px solid var(--tron-border);
    border-radius: 20px;
    box-shadow:
        0 18px 44px rgba(0, 0, 0, 0.25),
        inset 0 1px 0 rgba(255,255,255,0.03),
        0 0 26px rgba(0, 255, 255, 0.06);
    backdrop-filter: blur(14px);
}

.status-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid rgba(125, 249, 255, 0.18);
    background: rgba(125, 249, 255, 0.06);
    color: rgba(225, 247, 255, 0.88);
    font-size: 0.78rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    white-space: nowrap;
}

.status-pill-subtle {
    border-color: rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.04);
    color: rgba(215, 229, 241, 0.78);
    text-transform: none;
    letter-spacing: 0.01em;
}

.neon-divider {
    height: 1px;
    width: 100%;
    background: linear-gradient(90deg, transparent, rgba(125, 249, 255, 0.3), transparent);
    box-shadow: 0 0 18px rgba(125, 249, 255, 0.08);
}

.platform-footer {
    width: min(var(--platform-max-width), 100%);
    margin: 20px auto 18px;
    padding: 22px clamp(18px, 2vw, 26px) 14px;
    border: 1px solid rgba(125, 249, 255, 0.12);
    border-radius: 28px;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01)),
        rgba(4, 8, 16, 0.88);
    box-shadow:
        0 -1px 0 rgba(255,255,255,0.03) inset,
        0 24px 64px rgba(0,0,0,0.28),
        0 0 28px rgba(0,255,255,0.06);
    backdrop-filter: blur(16px);
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(260px, 1.5fr) repeat(4, minmax(170px, 1fr));
    gap: 20px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 0;
}

.footer-heading {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.86rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--tron-cyan);
    margin-bottom: 2px;
}

.footer-copy {
    margin: 0;
    color: rgba(222, 234, 245, 0.82);
    line-height: 1.6;
    font-size: 0.96rem;
}

.footer-copy-subtle {
    color: rgba(194, 210, 225, 0.64);
    font-size: 0.88rem;
}

.footer-link {
    color: rgba(232, 240, 250, 0.86);
    text-decoration: none;
    transition: color 160ms ease, transform 160ms ease;
    font-size: 0.94rem;
}

.footer-link:hover {
    color: var(--tron-cyan);
    transform: translateX(2px);
}

.content-page {
    width: min(1180px, 100%);
    margin: 0 auto;
}

.content-hero,
.content-section,
.content-card,
.content-sidebar-card {
    background:
        linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015)),
        rgba(4, 8, 16, 0.82);
    border: 1px solid rgba(125, 249, 255, 0.12);
    border-radius: 24px;
    box-shadow:
        0 18px 42px rgba(0, 0, 0, 0.24),
        inset 0 1px 0 rgba(255,255,255,0.03);
}

.content-hero {
    padding: clamp(28px, 4vw, 42px);
    margin-bottom: 22px;
}

.content-kicker {
    font-size: 0.76rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: rgba(176, 214, 238, 0.68);
    margin-bottom: 10px;
}

.content-title {
    margin: 0;
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2rem, 4vw, 3.25rem);
    line-height: 1.08;
    color: #f4fbff;
}

.content-subtitle {
    margin: 12px 0 0;
    color: var(--tron-cyan);
    font-size: 1.05rem;
    letter-spacing: 0.02em;
}

.content-lead {
    max-width: 72ch;
    margin: 18px 0 0;
    color: rgba(220, 232, 242, 0.84);
    line-height: 1.72;
    font-size: 1rem;
}

.content-actions,
.content-link-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 22px;
}

.content-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.9fr);
    gap: 20px;
    align-items: start;
}

.content-stack {
    display: grid;
    gap: 20px;
}

.content-section,
.content-card,
.content-sidebar-card {
    padding: 24px;
}

.content-section h2,
.content-card h2,
.content-sidebar-card h2 {
    margin-top: 0;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.18rem;
    color: var(--tron-cyan);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.content-section h3,
.content-card h3,
.content-sidebar-card h3 {
    color: #ffe066;
    margin-top: 1.1em;
    margin-bottom: 0.45em;
}

.content-section p,
.content-card p,
.content-sidebar-card p,
.content-section li,
.content-card li,
.content-sidebar-card li {
    color: rgba(221, 232, 242, 0.82);
    line-height: 1.7;
}

.content-section ul,
.content-card ul,
.content-sidebar-card ul {
    margin: 0;
    padding-left: 1.2rem;
}

.content-pill {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 7px 12px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.03);
    color: rgba(228, 238, 248, 0.88);
    text-decoration: none;
    font-size: 0.86rem;
    font-weight: 600;
}

.content-pill:hover {
    border-color: rgba(0, 255, 255, 0.26);
    color: var(--tron-cyan);
}

.content-note {
    margin-top: 16px;
    padding: 14px 16px;
    border-radius: 16px;
    border: 1px solid rgba(255, 224, 102, 0.18);
    background: rgba(255, 224, 102, 0.05);
    color: rgba(241, 232, 192, 0.92);
}

.faq-list {
    display: grid;
    gap: 14px;
}

.faq-item {
    padding: 18px 18px 16px;
    border-radius: 18px;
    border: 1px solid rgba(125, 249, 255, 0.12);
    background: rgba(255,255,255,0.02);
}

.faq-item h3 {
    margin: 0 0 8px;
}

.homepage-shell {
    width: min(1180px, 100%);
    margin: 0 auto;
}

.homepage-hero {
    padding: clamp(30px, 5vw, 46px);
    text-align: left;
}

.homepage-card-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 24px;
}

.homepage-card {
    padding: 26px;
    min-height: 100%;
    cursor: pointer;
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.homepage-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 42px rgba(0, 0, 0, 0.28), 0 0 24px rgba(0, 255, 255, 0.1);
}

.homepage-card-title {
    margin: 0;
    color: var(--tron-cyan);
    font-family: 'Orbitron', sans-serif;
    font-size: 1.15rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.homepage-card-secondary {
    color: #ffe066;
}

.homepage-card-copy {
    color: rgba(214, 227, 239, 0.8);
    line-height: 1.7;
}

.fx-enabled .reveal {
    opacity: 0;
    transform: translateY(22px);
    transition:
        opacity 520ms ease,
        transform 520ms ease,
        filter 520ms ease;
    filter: saturate(0.92);
}

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

.wh-hero,
.wh-section,
.wh-feature-card,
.wh-step-card,
.wh-output-card,
.wh-cta-panel,
.wh-code-card,
.wh-mini-metric,
.wh-scanline-panel {
    position: relative;
    overflow: hidden;
}

.wh-hero,
.wh-section,
.wh-feature-card,
.wh-step-card,
.wh-output-card,
.wh-cta-panel,
.wh-code-card,
.wh-mini-metric,
.wh-scanline-panel {
    background:
        linear-gradient(180deg, rgba(255,255,255,0.034), rgba(255,255,255,0.016)),
        rgba(4, 8, 16, 0.86);
    border: 1px solid rgba(125, 249, 255, 0.14);
    border-radius: 24px;
    box-shadow:
        0 20px 52px rgba(0, 0, 0, 0.24),
        inset 0 1px 0 rgba(255,255,255,0.035);
}

.wh-hero::before,
.wh-section::before,
.wh-feature-card::before,
.wh-step-card::before,
.wh-output-card::before,
.wh-cta-panel::before,
.wh-code-card::before,
.wh-mini-metric::before,
.wh-scanline-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at top right, rgba(125, 249, 255, 0.12), transparent 24%),
        radial-gradient(circle at bottom left, rgba(255, 215, 0, 0.08), transparent 24%);
    opacity: 0.85;
}

.wh-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.88fr);
    gap: 28px;
    padding: clamp(28px, 4vw, 42px);
    align-items: center;
}

.wh-hero-copy,
.wh-hero-visual,
.wh-section-inner {
    position: relative;
    z-index: 1;
}

.wh-hero-visual {
    min-height: 320px;
    display: grid;
    place-items: center;
}

.wh-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    padding: 7px 12px;
    border-radius: 999px;
    border: 1px solid rgba(125, 249, 255, 0.18);
    background: rgba(125, 249, 255, 0.05);
    color: rgba(215, 248, 255, 0.82);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.72rem;
}

.wh-hero-title {
    margin: 0;
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2.2rem, 5vw, 4rem);
    line-height: 1.02;
    letter-spacing: -0.02em;
    color: #f4fbff;
}

.wh-hero-subtitle {
    margin: 14px 0 0;
    color: var(--tron-cyan);
    font-size: clamp(1rem, 2vw, 1.2rem);
    line-height: 1.55;
}

.wh-hero-lead {
    margin: 18px 0 0;
    max-width: 70ch;
    color: rgba(221, 232, 242, 0.82);
    line-height: 1.78;
    font-size: 1rem;
}

.wh-pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.wh-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 34px;
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.09);
    background: rgba(255,255,255,0.04);
    color: rgba(235, 243, 252, 0.86);
    font-size: 0.84rem;
    font-weight: 600;
    text-decoration: none;
}

.wh-pill-strong {
    border-color: rgba(255, 215, 0, 0.22);
    background: rgba(255, 215, 0, 0.08);
    color: #ffeaa2;
}

.wh-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.wh-section {
    padding: clamp(22px, 3vw, 28px);
}

.wh-glow-divider {
    height: 1px;
    width: 100%;
    margin: 24px 0;
    background: linear-gradient(90deg, transparent, rgba(125, 249, 255, 0.34), rgba(255, 215, 0, 0.26), transparent);
    box-shadow: 0 0 20px rgba(125, 249, 255, 0.1);
}

.wh-card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

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

.wh-card-grid-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.wh-feature-card,
.wh-step-card,
.wh-output-card,
.wh-mini-metric,
.wh-code-card {
    padding: 20px;
    transition:
        transform 180ms ease,
        box-shadow 220ms ease,
        border-color 220ms ease;
}

.wh-feature-card:hover,
.wh-step-card:hover,
.wh-output-card:hover,
.wh-mini-metric:hover,
.wh-code-card:hover {
    transform: translateY(-4px);
    border-color: rgba(125, 249, 255, 0.28);
    box-shadow:
        0 26px 54px rgba(0, 0, 0, 0.28),
        0 0 28px rgba(125, 249, 255, 0.08);
}

.wh-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    border-radius: 14px;
    margin-bottom: 14px;
    border: 1px solid rgba(125, 249, 255, 0.16);
    background: linear-gradient(180deg, rgba(125, 249, 255, 0.14), rgba(255, 215, 0, 0.08));
    color: #dffcff;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.82rem;
    letter-spacing: 0.08em;
}

.wh-card-title,
.wh-step-title,
.wh-output-title,
.wh-metric-title {
    margin: 0;
    color: #f4fbff;
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.wh-card-copy,
.wh-step-copy,
.wh-output-copy,
.wh-metric-copy {
    margin: 10px 0 0;
    color: rgba(216, 229, 242, 0.82);
    line-height: 1.68;
    font-size: 0.95rem;
}

.wh-mini-metric-value {
    display: block;
    margin-top: 8px;
    color: var(--tron-yellow);
    font-family: 'Orbitron', sans-serif;
    font-size: 1.25rem;
    letter-spacing: 0.04em;
}

.wh-mini-metric-label {
    display: block;
    margin-top: 6px;
    color: rgba(194, 213, 229, 0.75);
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.wh-step-timeline {
    display: grid;
    gap: 16px;
}

.wh-step-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 16px;
    align-items: start;
}

.wh-step-number {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(255, 215, 0, 0.32);
    background: rgba(255, 215, 0, 0.08);
    color: #ffe58f;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.92rem;
}

.wh-step-card + .wh-step-card::after {
    content: "";
    position: absolute;
    left: 40px;
    top: -18px;
    width: 1px;
    height: 18px;
    background: linear-gradient(180deg, rgba(125,249,255,0), rgba(125,249,255,0.3));
}

.wh-pipeline {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 12px;
    align-items: stretch;
}

.wh-pipeline-node {
    position: relative;
    display: grid;
    gap: 10px;
    padding: 16px 14px;
    border-radius: 18px;
    border: 1px solid rgba(125, 249, 255, 0.14);
    background: rgba(255,255,255,0.025);
    min-height: 118px;
}

.wh-pipeline-node:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 50%;
    left: calc(100% + 5px);
    width: calc(100% - 10px);
    height: 1px;
    background: linear-gradient(90deg, rgba(125,249,255,0.26), rgba(255,215,0,0.18));
    transform: translateY(-50%);
    box-shadow: 0 0 14px rgba(125,249,255,0.08);
    animation: wh-pulse-line 3.4s linear infinite;
}

.wh-pipeline-label {
    color: rgba(255, 229, 143, 0.88);
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.wh-pipeline-title {
    font-family: 'Orbitron', sans-serif;
    color: #f4fbff;
    font-size: 0.95rem;
    letter-spacing: 0.04em;
}

.wh-pipeline-copy {
    color: rgba(204, 220, 236, 0.76);
    font-size: 0.86rem;
    line-height: 1.55;
}

.wh-output-list,
.wh-link-list {
    display: grid;
    gap: 10px;
    margin-top: 14px;
}

.wh-output-item,
.wh-link-item {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    color: rgba(220, 232, 242, 0.84);
    line-height: 1.6;
}

.wh-output-bullet,
.wh-link-bullet {
    color: var(--tron-cyan);
    font-family: 'Orbitron', sans-serif;
}

.wh-cta-panel {
    padding: 24px;
}

.wh-cta-title {
    margin: 0;
    color: #f4fbff;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.wh-cta-copy {
    margin: 12px 0 0;
    color: rgba(218, 231, 242, 0.82);
    line-height: 1.72;
}

.wh-code-card pre {
    margin: 12px 0 0;
    padding: 16px;
    border-radius: 16px;
    background: rgba(0, 0, 0, 0.48);
    border: 1px solid rgba(125, 249, 255, 0.12);
    color: #dffcff;
    overflow-x: auto;
    font-size: 0.9rem;
    line-height: 1.62;
}

.wh-scanline-panel::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(
        180deg,
        rgba(255,255,255,0.02) 0%,
        rgba(255,255,255,0.004) 40%,
        rgba(125,249,255,0.05) 50%,
        rgba(255,255,255,0.004) 60%,
        rgba(255,255,255,0.02) 100%
    );
    background-size: 100% 160px;
    mix-blend-mode: screen;
    opacity: 0.45;
    animation: wh-scanlines 7s linear infinite;
}

.wh-orbit-visual {
    position: relative;
    width: min(100%, 360px);
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    background:
        radial-gradient(circle at center, rgba(125,249,255,0.16), transparent 42%),
        radial-gradient(circle at center, rgba(255,215,0,0.08), transparent 58%);
    border: 1px solid rgba(125, 249, 255, 0.12);
    box-shadow:
        inset 0 0 60px rgba(125,249,255,0.06),
        0 0 48px rgba(125,249,255,0.08);
}

.wh-orbit-visual::before,
.wh-orbit-visual::after {
    content: "";
    position: absolute;
    inset: 14%;
    border-radius: 50%;
    border: 1px solid rgba(125,249,255,0.16);
    animation: wh-rotate 15s linear infinite;
}

.wh-orbit-visual::after {
    inset: 26%;
    border-color: rgba(255,215,0,0.18);
    animation-direction: reverse;
    animation-duration: 20s;
}

.wh-orbit-core,
.wh-orbit-node,
.wh-orbit-tag {
    position: absolute;
}

.wh-orbit-core {
    top: 50%;
    left: 50%;
    width: 86px;
    height: 86px;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    display: grid;
    place-items: center;
    background: radial-gradient(circle, rgba(255,215,0,0.24), rgba(125,249,255,0.08));
    border: 1px solid rgba(255,255,255,0.12);
    color: #fff3bf;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.72rem;
    text-align: center;
    letter-spacing: 0.08em;
}

.wh-orbit-node {
    display: grid;
    place-items: center;
    padding: 8px 10px;
    border-radius: 999px;
    background: rgba(4, 8, 16, 0.92);
    border: 1px solid rgba(125,249,255,0.18);
    color: #dffcff;
    font-size: 0.76rem;
    box-shadow: 0 0 22px rgba(125,249,255,0.08);
}

.wh-orbit-node-a { top: 12%; right: 7%; }
.wh-orbit-node-b { top: 56%; right: -3%; }
.wh-orbit-node-c { bottom: 12%; left: 10%; }
.wh-orbit-node-d { top: 18%; left: -2%; }

.wh-orbit-tag {
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(4, 8, 16, 0.92);
    color: rgba(220, 232, 242, 0.82);
    font-size: 0.8rem;
}

.wh-visual-stack {
    display: grid;
    gap: 14px;
}

.wh-visual-caption {
    margin: 0;
    color: rgba(194, 212, 228, 0.74);
    line-height: 1.62;
    font-size: 0.9rem;
}

.wh-section-head {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 14px;
    align-items: end;
    margin-bottom: 18px;
}

.wh-section-kicker {
    color: rgba(176, 214, 238, 0.68);
    font-size: 0.76rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.wh-section-title {
    margin: 6px 0 0;
    color: #f4fbff;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.45rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.wh-section-copy {
    margin: 0;
    max-width: 72ch;
    color: rgba(214, 227, 239, 0.8);
    line-height: 1.72;
}

.wh-warning {
    padding: 16px 18px;
    border-radius: 18px;
    border: 1px solid rgba(255, 215, 0, 0.24);
    background: rgba(255, 215, 0, 0.06);
    color: rgba(246, 237, 192, 0.92);
    line-height: 1.7;
}

.wh-link-card {
    text-decoration: none;
    color: inherit;
}

.wh-link-card .wh-card-copy {
    color: rgba(220, 232, 242, 0.8);
}

@keyframes wh-rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes wh-scanlines {
    from { transform: translateY(-8%); }
    to { transform: translateY(8%); }
}

@keyframes wh-pulse-line {
    0%, 100% { opacity: 0.35; }
    50% { opacity: 0.92; }
}

.footer-bottom-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding-top: 16px;
    margin-top: 16px;
    flex-wrap: wrap;
}

.footer-meta-line {
    color: rgba(205, 220, 234, 0.68);
    font-size: 0.88rem;
}

.footer-status-cluster {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

@media (max-width: 980px) {
    .content-grid,
    .homepage-card-grid {
        grid-template-columns: 1fr;
    }

    .wh-hero,
    .wh-card-grid,
    .wh-card-grid-2,
    .wh-card-grid-4,
    .wh-pipeline {
        grid-template-columns: 1fr;
    }

    .wh-pipeline-node:not(:last-child)::after {
        top: auto;
        bottom: -9px;
        left: 50%;
        width: 1px;
        height: 18px;
        transform: translateX(-50%);
        background: linear-gradient(180deg, rgba(125,249,255,0.26), rgba(255,215,0,0.18));
    }
}

@media (max-width: 1100px) {
    .footer-grid {
        grid-template-columns: repeat(2, minmax(220px, 1fr));
    }
}

@media (max-width: 720px) {
    .platform-shell {
        padding-inline: 12px;
    }

    .platform-main {
        padding-top: 18px;
    }

    .platform-footer {
        padding: 20px 16px 14px;
        border-radius: 22px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .footer-bottom-bar {
        flex-direction: column;
        align-items: flex-start;
    }

    .homepage-card-grid,
    .content-grid {
        grid-template-columns: 1fr;
    }

    .wh-step-card {
        grid-template-columns: 1fr;
    }

    .wh-hero {
        gap: 20px;
        padding: 24px 20px;
    }

    .wh-orbit-visual {
        width: min(100%, 300px);
    }
}

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


/* ================================
   ECOSYSTEM — TRON GLOW CARDS
================================ */

.ecosystem-section {
    max-width: 1100px;
    margin: 60px auto;
    padding: 20px;
    text-align: center;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 35px;
    color: var(--tron-yellow);
    text-shadow: 0 0 10px var(--tron-yellow);
}

/* GRID */
.ecosystem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    position: relative;
}

/* TRON GLOW CARDS */
.eco-card {
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid var(--tron-green);
    padding: 25px;
    border-radius: 14px;
    box-shadow: 0 0 10px var(--tron-green), inset 0 0 12px var(--tron-green);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.eco-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 0 25px var(--tron-yellow), inset 0 0 20px var(--tron-green);
}

.eco-icon {
    font-size: 2.2rem;
    margin-bottom: 10px;
}

/* TITLE + DESCRIPTION */
.eco-card h3 {
    color: var(--tron-yellow);
    margin-bottom: 10px;
    text-shadow: 0 0 10px var(--tron-yellow);
}

.eco-card p {
    color: white;
    font-size: 0.95rem;
    opacity: 0.9;
}

/* LINKS */
.eco-link {
    display: inline-block;
    margin-top: 15px;
    color: var(--tron-green);
    text-decoration: none;
    font-weight: bold;
    text-shadow: 0 0 8px var(--tron-green);
}

.eco-link:hover {
    color: var(--tron-yellow);
    text-shadow: 0 0 10px var(--tron-yellow);
}

/* CONNECTIVE TRON LINE */
.ecosystem-links {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    position: relative;
}

.eco-line {
    width: 90%;
    height: 3px;
    background: var(--tron-yellow);
    box-shadow: 0 0 12px var(--tron-yellow), 0 0 25px var(--tron-yellow);
    border-radius: 50px;
}


.tron-footer {
    margin-top: 4rem;
    padding: 2.5rem 1.25rem 2rem;
    border-top: 1px solid rgba(0, 255, 255, 0.16);
    background:
        linear-gradient(
            to bottom,
            rgba(0, 18, 30, 0.82),
            rgba(0, 8, 18, 0.92)
        );
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.tron-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(
        circle at top center,
        rgba(0, 255, 255, 0.08),
        transparent 55%
    );
}

.footer-buttons {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.85rem;
    margin-bottom: 1.4rem;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.footer-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.78rem 1.1rem;
    min-height: 44px;
    border-radius: 999px;
    text-decoration: none;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    line-height: 1;
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow:
        0 0 0 rgba(0, 255, 255, 0),
        0 0 10px rgba(0, 255, 255, 0.06),
        inset 0 0 0 rgba(255, 255, 255, 0);
    transition:
        transform 0.18s ease,
        box-shadow 0.22s ease,
        border-color 0.22s ease,
        background 0.22s ease,
        color 0.22s ease;
    white-space: nowrap;
}

.footer-btn:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow:
        0 0 14px rgba(255, 255, 255, 0.12),
        0 0 22px rgba(0, 255, 255, 0.08);
}

.footer-btn:active {
    transform: translateY(0) scale(0.99);
}

.footer-btn:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.65);
    outline-offset: 3px;
}

/* Internal buttons */
.footer-btn-internal {
    color: var(--tron-cyan);
    background: rgba(0, 255, 255, 0.055);
    border-color: rgba(0, 255, 255, 0.24);
}

.footer-btn-internal:hover {
    color: #dffcff;
    background: rgba(0, 255, 255, 0.1);
    border-color: rgba(0, 255, 255, 0.42);
}

/* V-LiSEMOD */
.footer-btn-vlise {
    color: #7df9ff;
    background: rgba(125, 249, 255, 0.085);
    border-color: rgba(125, 249, 255, 0.32);
}

.footer-btn-vlise:hover {
    color: #e8fdff;
    background: rgba(125, 249, 255, 0.13);
    border-color: rgba(125, 249, 255, 0.5);
}

/* PROTAC Builder */
.footer-btn-builder {
    color: #ffd166;
    background: rgba(255, 209, 102, 0.085);
    border-color: rgba(255, 209, 102, 0.32);
}

.footer-btn-builder:hover {
    color: #fff3cf;
    background: rgba(255, 209, 102, 0.13);
    border-color: rgba(255, 209, 102, 0.5);
}

/* E3 Ligandalyzer */
.footer-btn-ligand {
    color: #ff8fab;
    background: rgba(255, 143, 171, 0.085);
    border-color: rgba(255, 143, 171, 0.32);
}

.footer-btn-ligand:hover {
    color: #ffe3eb;
    background: rgba(255, 143, 171, 0.13);
    border-color: rgba(255, 143, 171, 0.5);
}

/* AutoDock */
.footer-btn-dock {
    color: #baffc9;
    background: rgba(186, 255, 201, 0.085);
    border-color: rgba(186, 255, 201, 0.32);
}

.footer-btn-dock:hover {
    color: #effff4;
    background: rgba(186, 255, 201, 0.13);
    border-color: rgba(186, 255, 201, 0.5);
}

.footer-meta {
    position: relative;
    z-index: 1;
}

.footer-text {
    margin: 0;
    font-family: 'Roboto Mono', monospace;
    font-size: 0.9rem;
    color: rgba(225, 245, 255, 0.84);
    letter-spacing: 0.02em;
}

.footer-subtext {
    margin: 0.35rem 0 0;
    font-family: 'Roboto Mono', monospace;
    font-size: 0.82rem;
    color: rgba(200, 230, 240, 0.68);
}

.footer-cartman {
    color: var(--tron-cyan);
    font-weight: 700;
    text-shadow:
        0 0 8px rgba(0, 255, 255, 0.3),
        0 0 16px rgba(0, 255, 255, 0.14);
    letter-spacing: 0.04em;
}

@media (max-width: 768px) {
    .tron-footer {
        padding: 2rem 1rem 1.7rem;
        margin-top: 3rem;
    }

    .footer-buttons {
        gap: 0.65rem;
        margin-bottom: 1.15rem;
    }

    .footer-btn {
        width: 100%;
        max-width: 320px;
        font-size: 0.78rem;
        padding: 0.8rem 1rem;
    }

    .footer-text {
        font-size: 0.82rem;
    }

    .footer-subtext {
        font-size: 0.76rem;
    }
}


/* =========================================================
   Warhead Hunter Example Workflow Hero Fix
   Fixes clipped mini metric titles like "Accessible Outputs"
   ========================================================= */

.wh-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(340px, 0.75fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  overflow: visible;
}

.wh-hero-copy,
.wh-hero-visual,
.wh-card-grid,
.wh-mini-metric {
  min-width: 0;
}

.wh-hero-visual {
  width: 100%;
  overflow: visible;
}

.wh-hero-visual .wh-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(165px, 1fr));
  gap: 1.15rem;
  width: 100%;
}

.wh-mini-metric {
  position: relative;
  width: 100%;
  min-width: 0;
  overflow: visible;
  padding: clamp(1rem, 1.8vw, 1.35rem);
  border-radius: 1.25rem;
  box-sizing: border-box;
}

.wh-metric-title {
  max-width: 100%;
  white-space: normal !important;
  overflow: visible !important;
  text-overflow: unset !important;
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
  text-wrap: balance;
  line-height: 1.18;
  letter-spacing: 0.055em;
  font-size: clamp(0.78rem, 0.85vw, 0.95rem);
}

.wh-mini-metric-value {
  display: block;
  max-width: 100%;
  white-space: normal;
  overflow-wrap: anywhere;
  line-height: 1.18;
  font-size: clamp(1.05rem, 1.5vw, 1.45rem);
}

.wh-mini-metric-label {
  display: block;
  max-width: 100%;
  white-space: normal;
  overflow-wrap: normal;
  word-break: normal;
  line-height: 1.35;
  letter-spacing: 0.075em;
}

/* Tablet: stack hero, keep metric cards readable */
@media (max-width: 980px) {
  .wh-hero {
    grid-template-columns: 1fr;
  }

  .wh-hero-visual .wh-card-grid {
    grid-template-columns: repeat(2, minmax(220px, 1fr));
  }
}

/* Mobile: stack mini metric cards */
@media (max-width: 620px) {
  .wh-hero-visual .wh-card-grid {
    grid-template-columns: 1fr;
  }

  .wh-mini-metric {
    min-height: auto;
  }

  .wh-metric-title {
    font-size: 0.9rem;
    letter-spacing: 0.045em;
  }
}