/* Source: public\\css\\base.css */
:root {
    --teal: #00ffff;
    --teal-dark: #00cccc;
    --orange: #ff6600;
    --orange-dark: #cc5500;
    --bg-dark: #000000;
    --bg-darker: #0a0a0a;
    --bg-card: #111111;
    --text-primary: #ffffff;
    --text-secondary: #cccccc;
    --border-glow: rgba(0, 255, 255, 0.3);
}

/* Light theme overrides */
[data-theme="light"] {
    --teal: #007b7b;
    --teal-dark: #005f5f;
    --orange: #cc4400;
    --orange-dark: #993300;
    --bg-dark: #f4f4f4;
    --bg-darker: #e8e8e8;
    --bg-card: #ffffff;
    --text-primary: #111111;
    --text-secondary: #444444;
    --border-glow: rgba(0, 123, 123, 0.25);
}

/* Theme toggle button */
.theme-toggle {
    background: none;
    border: 1px solid var(--teal);
    color: var(--teal);
    border-radius: 20px;
    padding: 4px 10px;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    user-select: none;
}
.theme-toggle:hover {
    background: var(--teal);
    color: var(--bg-dark);
}

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

body {
    font-family: 'Rajdhani', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.background-pattern {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 50%, rgba(0, 255, 255, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255, 102, 0, 0.03) 0%, transparent 50%);
    z-index: -1;
    pointer-events: none;
}

/* Source: public\\css\\layout.css */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-glow);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 255, 255, 0.1);
}

.header .container {
    display: grid;
    grid-template-columns: minmax(220px, 1fr) auto minmax(220px, 1fr);
    align-items: center;
    gap: 28px;
    padding: 18px 20px;
}

.logo {
    position: relative;
}

.logo h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    background: linear-gradient(90deg, var(--teal) 0%, var(--orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
    letter-spacing: 2px;
}

.logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(0, 255, 255, 0.2) 0%, transparent 70%);
    filter: blur(20px);
    z-index: -1;
    animation: pulse 3s ease-in-out infinite;
}

.nav {
    display: flex;
    justify-self: center;
    align-items: center;
    gap: 22px;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--teal), var(--orange));
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--teal);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 14px);
    left: 50%;
    z-index: 1001;
    display: grid;
    min-width: 250px;
    overflow: hidden;
    padding: 8px;
    border: 1px solid rgba(0, 255, 255, 0.32);
    border-radius: 8px;
    background: rgba(5, 5, 5, 0.96);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.42), 0 0 24px rgba(0, 255, 255, 0.16);
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, -8px);
    transition: opacity 0.18s ease, transform 0.18s ease;
    visibility: hidden;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, 0);
    visibility: visible;
}

.nav-dropdown-menu a {
    display: block;
    padding: 10px 12px;
    border-radius: 5px;
    color: var(--text-secondary);
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus {
    background: rgba(0, 255, 255, 0.1);
    color: var(--teal);
    outline: none;
}

/* Header Updates */
.logo-link {
    text-decoration: none;
    color: inherit;
}

.auth-buttons, .user-menu {
    display: flex;
    justify-self: end;
    gap: 10px;
    align-items: center;
}

.btn-small {
    padding: 8px 20px;
    font-size: 0.9rem;
}

.user-info {
    color: var(--text-secondary);
    margin-right: 10px;
}

.logo-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    background: linear-gradient(90deg, var(--teal) 0%, var(--orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
    letter-spacing: 2px;
    margin: 0;
}

/* Sections */
section {
    padding: 80px 20px;
    position: relative;
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 10px;
    background: linear-gradient(90deg, var(--teal) 0%, var(--orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.2rem;
    margin-bottom: 50px;
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.9);
    border-top: 1px solid var(--border-glow);
    padding: 30px 20px;
    text-align: center;
}

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

.footer-links a {
    color: var(--teal);
    text-decoration: none;
}

.footer-links a:hover,
.footer-links a:focus {
    color: var(--orange);
}

/* Animated Lines Container */
#animated-lines-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header .container {
        grid-template-columns: 1fr;
        justify-items: center;
        gap: 20px;
    }

    .nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px 8px;
        align-items: flex-start;
    }

    .nav-link {
        font-size: 1rem;
    }

    .nav-dropdown {
        display: block;
        flex: 0 0 auto;
        justify-items: center;
        width: auto;
        z-index: 1002;
    }

    .nav-dropdown-menu {
        position: fixed;
        top: var(--mobile-dropdown-top, 260px);
        left: 50%;
        display: grid;
        width: min(92vw, 300px);
        min-width: 0;
        margin: 0;
        background: #050505;
        opacity: 0;
        pointer-events: none;
        transform: translate(-50%, -8px);
        transition: none;
        visibility: hidden;
    }

    .nav-dropdown:focus-within .nav-dropdown-menu,
    .nav-dropdown.open .nav-dropdown-menu {
        opacity: 1;
        pointer-events: auto;
        transform: translate(-50%, 0);
        visibility: visible;
    }

    .auth-buttons, .user-menu {
        justify-self: center;
    }

    .section-title {
        font-size: 2rem;
    }
}

/* Source: public\\css\\components.css */
/* Buttons */
.btn {
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
    font-family: 'Rajdhani', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
    color: var(--bg-dark);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.4);
}

.btn-primary:hover {
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.6);
    transform: translateY(-2px);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
    color: var(--text-primary);
    box-shadow: 0 0 20px rgba(255, 102, 0, 0.4);
}

.btn-secondary:hover {
    box-shadow: 0 0 30px rgba(255, 102, 0, 0.6);
    transform: translateY(-2px);
}

.btn-danger {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    color: var(--text-primary);
    box-shadow: 0 0 20px rgba(220, 53, 69, 0.4);
}

.btn-danger:hover {
    box-shadow: 0 0 30px rgba(220, 53, 69, 0.6);
    transform: translateY(-2px);
    background: linear-gradient(135deg, #c82333 0%, #bd2130 100%);
}

.delete-order-section {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(220, 53, 69, 0.3);
}

.btn-card {
    width: 100%;
    background: linear-gradient(135deg, var(--teal) 0%, var(--orange) 100%);
    color: var(--bg-dark);
    font-weight: 700;
    margin-top: 20px;
}

.btn-card:hover {
    box-shadow: 0 0 25px rgba(0, 255, 255, 0.5);
    transform: translateY(-2px);
}

.btn-block {
    width: 100%;
    margin-top: 10px;
}

/* Forms */
.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: var(--teal);
    font-weight: 600;
    margin-bottom: 8px;
    font-family: 'Rajdhani', sans-serif;
}

.form-group input {
    width: 100%;
    padding: 12px;
    background: var(--bg-darker);
    border: 1px solid var(--border-glow);
    border-radius: 5px;
    color: var(--text-primary);
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
}

.form-group input:focus {
    outline: none;
    border-color: var(--teal);
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

.form-group select {
    padding: 12px;
    background: var(--bg-darker);
    border: 1px solid var(--border-glow);
    border-radius: 5px;
    color: var(--text-primary);
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group select:focus {
    outline: none;
    border-color: var(--teal);
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

.form-group small {
    display: block;
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin-top: 5px;
}

.form-group textarea {
    width: 100%;
    padding: 12px;
    background: var(--bg-darker);
    border: 1px solid var(--border-glow);
    border-radius: 5px;
    color: var(--text-primary);
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    resize: vertical;
}

.form-group textarea:focus {
    outline: none;
    border-color: var(--teal);
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

.form-actions {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    justify-content: flex-end;
}

.error-message {
    background: rgba(255, 0, 0, 0.1);
    border: 1px solid rgba(255, 0, 0, 0.3);
    color: #ff6666;
    padding: 12px;
    border-radius: 5px;
    font-size: 0.9rem;
}

.success-message {
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid #00ff88;
    color: #00ff88;
    padding: 12px;
    border-radius: 5px;
    margin: 15px 0;
    font-size: 0.9em;
}

.settings-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 255, 136, 0.15);
    border-radius: 8px;
    padding: 24px;
    max-width: 420px;
}

.settings-card h4 {
    color: #00ff88;
    margin: 0 0 20px;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.settings-card .hint {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.8em;
    font-weight: normal;
}

.form-message {
    padding: 10px 14px;
    border-radius: 5px;
    font-size: 0.9rem;
    margin-bottom: 14px;
}

.form-message.error {
    background: rgba(255, 0, 0, 0.1);
    border: 1px solid rgba(255, 0, 0, 0.3);
    color: #ff6666;
}

.form-message.success {
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid #00ff88;
    color: #00ff88;
}

/* Status Badges */
.status-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.85em;
    font-weight: 600;
    text-transform: uppercase;
}

.status-pending {
    background: rgba(255, 165, 0, 0.2);
    color: #ffa500;
}

.status-active {
    background: rgba(0, 255, 0, 0.2);
    color: #00ff00;
}

.status-suspended {
    background: rgba(255, 0, 0, 0.2);
    color: #ff0000;
}

.status-payment-pending {
    background: rgba(255, 193, 7, 0.2);
    color: #ffc107;
    border: 1px solid rgba(255, 193, 7, 0.5);
}

.status-payment-received {
    background: rgba(0, 123, 255, 0.2);
    color: #007bff;
    border: 1px solid rgba(0, 123, 255, 0.5);
}

.status-order-being-prepared {
    background: rgba(255, 102, 0, 0.2);
    color: var(--orange);
    border: 1px solid rgba(255, 102, 0, 0.5);
}

.status-delivered {
    background: rgba(40, 167, 69, 0.2);
    color: #28a745;
    border: 1px solid rgba(40, 167, 69, 0.5);
}

/* Payment Badge */
.payment-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.85em;
    font-weight: 600;
    text-transform: capitalize;
}

.payment-pending {
    background: rgba(255, 193, 7, 0.2);
    color: #ffc107;
}

.payment-unconfirmed {
    background: rgba(255, 170, 0, 0.2);
    color: #ffaa00;
    border: 1px solid rgba(255, 170, 0, 0.5);
    animation: pulse-glow 2s infinite;
}

.payment-received {
    background: rgba(40, 167, 69, 0.2);
    color: #28a745;
}

.payment-failed {
    background: rgba(220, 53, 69, 0.2);
    color: #dc3545;
}

/* Stock Badge */
.stock-badge {
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 0.85em;
    font-weight: 600;
}

.stock-badge.stock-in-stock {
    background: rgba(0, 255, 136, 0.2);
    color: #00ff88;
    border: 1px solid #00ff88;
}

.stock-badge.stock-out-of-stock {
    background: rgba(255, 107, 107, 0.2);
    color: #ff6b6b;
    border: 1px solid #ff6b6b;
}

/* Token Status */
.token-status {
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 0.85em;
    font-weight: 600;
}

.token-status-available {
    background: rgba(0, 255, 136, 0.2);
    color: #00ff88;
    border: 1px solid #00ff88;
}

.token-status-unavailable {
    background: rgba(255, 107, 107, 0.2);
    color: #ff6b6b;
    border: 1px solid #ff6b6b;
}

/* Admin Badge */
.admin-badge {
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.3), rgba(255, 102, 0, 0.3));
    color: #ff0000;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: 700;
    text-align: center;
    margin-top: 10px;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    padding: 20px 0;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: var(--bg-darker);
    margin: 5% auto;
    padding: 30px;
    border: 2px solid var(--border-glow);
    border-radius: 10px;
    width: 90%;
    max-width: 600px;
    max-height: calc(100vh - 40px);
    overflow-y: auto;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 255, 255, 0.3);
}

.close-modal {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 28px;
    font-weight: bold;
    color: var(--text-secondary);
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: var(--teal);
}

/* Modal Overlay Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.show {
    opacity: 1;
}

.modal-dialog {
    background: var(--bg-card);
    border: 1px solid var(--border-glow);
    border-radius: 12px;
    padding: 30px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.7), 0 0 30px rgba(0, 255, 255, 0.3);
    transform: scale(0.9);
    transition: transform 0.3s ease;
    position: relative;
}

.modal-overlay.show .modal-dialog {
    transform: scale(1);
}

.modal-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    color: var(--teal);
    margin-bottom: 15px;
    font-weight: 700;
}

.modal-message {
    color: var(--text-primary);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    word-wrap: break-word;
}

.modal-input {
    width: 100%;
    padding: 12px;
    background: var(--bg-darker);
    border: 1px solid var(--border-glow);
    border-radius: 5px;
    color: var(--text-primary);
    font-size: 1rem;
    margin-bottom: 20px;
    font-family: 'Rajdhani', sans-serif;
    transition: all 0.2s ease;
}

.modal-input:focus {
    outline: none;
    border-color: var(--teal);
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

.modal-buttons {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    margin-top: 20px;
}

.modal-buttons .btn {
    min-width: 100px;
}

/* Notification System Styles */
.notification-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 400px;
    pointer-events: none;
}

.notification {
    background: var(--bg-card);
    border: 1px solid var(--border-glow);
    border-radius: 8px;
    padding: 15px 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    min-width: 300px;
    max-width: 400px;
    opacity: 0;
    transform: translateX(400px);
    transition: all 0.3s ease;
    pointer-events: all;
    position: relative;
    overflow: hidden;
}

.notification.show {
    opacity: 1;
    transform: translateX(0);
}

.notification::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--teal);
}

.notification-success::before {
    background: #00ff00;
}

.notification-error::before {
    background: #ff4444;
}

.notification-warning::before {
    background: var(--orange);
}

.notification-info::before {
    background: var(--teal);
}

.notification-message {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    color: var(--text-primary);
    font-size: 0.95rem;
    line-height: 1.4;
}

.notification-icon {
    font-size: 1.2rem;
    font-weight: bold;
    flex-shrink: 0;
}

.notification-success .notification-icon {
    color: #00ff00;
}

.notification-error .notification-icon {
    color: #ff4444;
}

.notification-warning .notification-icon {
    color: var(--orange);
}

.notification-info .notification-icon {
    color: var(--teal);
}

.notification-close {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: all 0.2s ease;
    flex-shrink: 0;
    line-height: 1;
}

.notification-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
}

/* Status Select */
.status-select {
    background: var(--bg-darker);
    color: var(--text-primary);
    border: 1px solid var(--border-glow);
    border-radius: 5px;
    padding: 8px 12px;
    font-family: 'Rajdhani', sans-serif;
}

/* Copy Button */
.copy-btn {
    white-space: nowrap;
    padding: 8px 16px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .notification-container {
        top: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
    }

    .notification {
        min-width: auto;
        max-width: none;
    }

    .modal-dialog {
        width: 95%;
        padding: 20px;
    }
}

/* Source: public\\css\\animations.css */
/* Keyframes */
@keyframes pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 5px rgba(255, 170, 0, 0.3);
    }
    50% {
        box-shadow: 0 0 15px rgba(255, 170, 0, 0.6);
    }
}

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

/* Pulse animation for payment status indicator */
@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
    }
    50% {
        box-shadow: 0 0 20px rgba(0, 255, 255, 0.6);
    }
}

/* Source: public\\css\\pages\\landing.css */
/* Hero Section */
.hero {
    padding: 112px 20px 92px;
    text-align: left;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(45deg, transparent 30%, rgba(0, 255, 255, 0.05) 50%, transparent 70%),
        linear-gradient(-45deg, transparent 30%, rgba(255, 102, 0, 0.05) 50%, transparent 70%);
    z-index: -1;
}

.hero-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 4.6rem;
    font-weight: 900;
    margin-bottom: 24px;
    background: linear-gradient(90deg, var(--teal) 0%, var(--orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(0, 255, 255, 0.3);
    animation: fadeInUp 1s ease-out;
}

.hero-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(400px, 0.98fr);
    gap: 40px;
    align-items: center;
}

.hero-kicker {
    display: inline-flex;
    padding: 8px 14px;
    margin-bottom: 18px;
    border: 1px solid rgba(0, 255, 255, 0.35);
    border-radius: 999px;
    color: var(--teal);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: rgba(0, 255, 255, 0.06);
}

.hero-subtitle {
    max-width: 24ch;
    font-size: 1.9rem;
    color: var(--text-secondary);
    margin-bottom: 36px;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-buttons .btn {
    padding: 20px 36px;
    font-size: 1.08rem;
}

.hero-proof-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.hero-proof-card {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 208px;
    padding: 40px 38px;
    border-radius: 16px;
    background: rgba(7, 10, 12, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.hero-proof-card-teal {
    border-color: rgba(0, 255, 255, 0.25);
}

.hero-proof-card-orange {
    border-color: rgba(255, 102, 0, 0.25);
}

.hero-proof-label {
    display: block;
    margin-bottom: 16px;
    color: var(--text-secondary);
    font-size: 1rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-proof-value {
    color: var(--text-primary);
    font-family: 'Orbitron', sans-serif;
    font-size: 1.55rem;
    line-height: 1.3;
}

.trust-strip-section {
    padding: 0 20px 12px;
}

.trust-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.trust-strip-item {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 112px;
    padding: 28px 30px;
    border-radius: 14px;
    background: rgba(7, 10, 12, 0.9);
    border: 1px solid rgba(0, 255, 255, 0.18);
    color: var(--text-primary);
    font-size: 1.35rem;
    font-weight: 700;
    line-height: 1.3;
    text-align: center;
}

.landing-page .section-title {
    font-size: 3.35rem;
}

.landing-page .section-subtitle {
    font-size: 1.4rem;
    margin-bottom: 42px;
}

.landing-pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px;
    margin-top: 28px;
    align-items: stretch;
}

.landing-pricing-card {
    display: flex;
    flex-direction: column;
    min-height: 470px;
    padding: 46px 44px;
    border-radius: 16px;
    background: var(--bg-card);
    border: 1px solid var(--border-glow);
}

.landing-pricing-kicker {
    display: inline-block;
    margin-bottom: 20px;
    color: var(--orange);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.landing-pricing-card h3 {
    margin-bottom: 16px;
    color: var(--teal);
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
}

.landing-pricing-copy {
    margin-bottom: 20px;
    font-size: 1.12rem;
    color: var(--text-secondary);
}

.landing-pricing-value {
    margin-bottom: 26px;
    color: var(--text-primary);
    font-family: 'Orbitron', sans-serif;
    font-size: 2.8rem;
    font-weight: 900;
}

.landing-pricing-value span {
    margin-left: 6px;
    color: var(--text-secondary);
    font-size: 1.1rem;
    font-weight: 600;
}

.landing-pricing-list {
    list-style: none;
    margin: auto 0 0;
    padding: 0;
}

.landing-pricing-list li {
    padding: 16px 0;
    font-size: 1.05rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--text-secondary);
}

.datacenter-note {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 16px;
    align-items: center;
    margin-top: 24px;
    padding: 22px 26px;
    border-radius: 14px;
    border: 1px solid rgba(255, 102, 0, 0.25);
    background: rgba(255, 102, 0, 0.06);
}

.datacenter-note-label {
    color: var(--orange);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.static-isp-shell {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(420px, 1fr);
    gap: 26px;
    align-items: stretch;
    margin-top: 28px;
}

.static-isp-copy {
    display: flex;
    flex-direction: column;
    min-height: 420px;
    padding: 44px 42px;
    border-radius: 16px;
    background: var(--bg-card);
    border: 1px solid var(--border-glow);
}

.static-isp-copy h3 {
    margin: 20px 0 16px;
    color: var(--teal);
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
}

.static-isp-copy p {
    font-size: 1.12rem;
    color: var(--text-secondary);
}

.static-isp-points {
    list-style: none;
    margin: auto 0 0;
    padding: 0;
}

.static-isp-points li {
    padding: 16px 0;
    font-size: 1.05rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--text-secondary);
}

.availability-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 14px;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-align: center;
    white-space: nowrap;
}

.availability-badge-in_stock {
    color: #051012;
    background: rgba(0, 255, 255, 0.9);
}

.availability-badge-low_stock {
    color: #1b1000;
    background: rgba(255, 182, 64, 0.9);
}

.availability-badge-out_of_stock {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.12);
}

/* Server Cards */
.servers-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
    margin-top: 34px;
    max-width: 1120px;
    margin-right: auto;
    margin-left: auto;
}

.server-card {
    display: flex;
    flex-direction: column;
    min-height: 0;
    background: var(--bg-card);
    border: 1px solid var(--border-glow);
    border-radius: 16px;
    padding: 36px 34px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.server-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.server-card:hover::before {
    left: 100%;
}

.server-card:hover {
    border-color: var(--teal);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.3);
    transform: translateY(-5px);
}

.server-card.featured {
    border: 2px solid var(--orange);
    box-shadow: 0 0 20px rgba(255, 102, 0, 0.2);
}

.server-card.featured:hover {
    box-shadow: 0 0 40px rgba(255, 102, 0, 0.4);
}

.server-card-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) max-content;
    grid-template-areas:
        "title title"
        "type availability";
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 22px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(0, 255, 255, 0.2);
    gap: 10px 18px;
}

.server-card-header > div {
    display: contents;
}

.server-card-header h3 {
    grid-area: title;
    min-width: 0;
    max-width: 100%;
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(1.35rem, 1.35vw, 1.7rem);
    line-height: 1.28;
    color: var(--teal);
    overflow-wrap: break-word;
    word-break: normal;
}

.server-badge {
    grid-area: type;
    justify-self: start;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--teal), var(--orange));
    color: var(--bg-dark);
    padding: 7px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    white-space: nowrap;
}

.server-card-header .availability-badge {
    grid-area: availability;
    justify-self: end;
}

.server-specs {
    margin-bottom: 24px;
}

.spec-item {
    display: grid;
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 16px;
    align-items: start;
    padding: 11px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.spec-label {
    color: var(--text-secondary);
    font-size: 1.02rem;
    font-weight: 600;
}

.spec-value {
    color: var(--text-primary);
    font-size: 1.02rem;
    line-height: 1.35;
    text-align: right;
    margin-left: 0;
    overflow-wrap: break-word;
    word-break: normal;
}

.server-pricing {
    background: rgba(0, 255, 255, 0.05);
    padding: 24px 22px;
    border-radius: 10px;
    margin: auto 0 28px;
    border: 1px solid rgba(0, 255, 255, 0.2);
}

.price-item {
    display: grid;
    grid-template-columns: max-content max-content;
    justify-content: space-between;
    align-items: end;
    gap: 14px;
    margin-bottom: 14px;
}

.price-item:last-child {
    margin-bottom: 0;
}

.price-amount {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2rem, 2.8vw, 2.75rem);
    line-height: 1;
    font-weight: 700;
    color: var(--teal);
    white-space: nowrap;
}

.price-period {
    color: var(--text-secondary);
    font-size: 1.15rem;
    font-weight: 600;
    line-height: 1.2;
    white-space: nowrap;
}

/* Proxies Section */
.proxies-section {
    background: rgba(0, 255, 255, 0.02);
    border-top: 1px solid var(--border-glow);
    border-bottom: 1px solid var(--border-glow);
}

.proxies-content {
    max-width: 900px;
    margin: 0 auto;
}

.rotating-section,
.static-isp-section {
    background: rgba(0, 255, 255, 0.02);
    border-top: 1px solid var(--border-glow);
    border-bottom: 1px solid var(--border-glow);
}

.proxy-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.feature-item {
    text-align: center;
    padding: 30px;
    background: var(--bg-card);
    border: 1px solid var(--border-glow);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    border-color: var(--teal);
    box-shadow: 0 0 25px rgba(0, 255, 255, 0.2);
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.feature-item h3 {
    font-family: 'Orbitron', sans-serif;
    color: var(--teal);
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.feature-item p {
    color: var(--text-secondary);
}

.proxy-cta {
    text-align: center;
    padding: 40px;
    background: var(--bg-card);
    border: 1px solid var(--border-glow);
    border-radius: 10px;
}

.proxy-cta p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--text-secondary);
}

/* Legal Section */
.legal-section {
    background: rgba(255, 102, 0, 0.02);
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    gap: 30px;
}

.legal-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 102, 0, 0.3);
    border-radius: 10px;
    padding: 30px;
}

.legal-card h3 {
    font-family: 'Orbitron', sans-serif;
    color: var(--orange);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.legal-card p {
    color: var(--text-secondary);
    margin-bottom: 15px;
    line-height: 1.8;
}

.legal-list {
    list-style: none;
    padding-left: 0;
}

.legal-list li {
    color: var(--text-secondary);
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.legal-list li::before {
    content: '\25B8';
    position: absolute;
    left: 0;
    color: var(--orange);
    font-weight: bold;
}

/* Contact Section */
.contact-section {
    text-align: center;
}

.support-section {
    padding-top: 64px;
}

.contact-content {
    max-width: 700px;
    margin: 0 auto;
}

.support-card {
    max-width: none;
    margin: 0 auto;
    min-height: 340px;
    padding: 52px 50px;
    text-align: left;
    border-radius: 16px;
    background: var(--bg-card);
    border: 1px solid var(--border-glow);
}

.support-card h3 {
    margin-bottom: 14px;
    color: var(--teal);
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
}

.support-card p {
    font-size: 1.12rem;
    color: var(--text-secondary);
}

.support-actions {
    display: flex;
    gap: 16px;
    margin-top: auto;
    padding-top: 28px;
}

.support-meta {
    margin-top: 18px;
    font-size: 1rem;
}

.contact-info {
    background: var(--bg-card);
    border: 1px solid var(--border-glow);
    border-radius: 10px;
    padding: 40px;
    margin-bottom: 30px;
}

.discord-embed-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.discord-embed-container iframe {
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 255, 255, 0.2);
}

.discord-fallback-card {
    background: #e0e0e0;
    border: 1px solid var(--teal);
    border-radius: 10px;
    padding: 40px 30px;
    text-align: center;
    max-width: 350px;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

.discord-fallback-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    filter: grayscale(100%);
    opacity: 0.7;
}

.discord-fallback-message {
    color: #333;
    font-size: 1rem;
    margin: 0;
    line-height: 1.5;
}

.discord-note {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.contact-info p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 15px;
}

/* Pricing Cards */
.pricing-category {
    margin-bottom: 40px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glow);
    border-radius: 8px;
    padding: 20px;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    border-color: var(--teal);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.2);
}

.pricing-card h5 {
    color: var(--teal);
    margin-bottom: 15px;
    font-size: 1.2rem;
    font-weight: 600;
}

.pricing-details {
    margin-bottom: 15px;
}

.pricing-details p {
    margin: 8px 0;
    color: var(--text-secondary);
}

.pricing-details strong {
    color: var(--text-primary);
}

.pricing-edit-form {
    padding: 20px;
}

.pricing-edit-form h4 {
    color: var(--teal);
    margin-bottom: 20px;
}

.tier-item {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-glow);
    border-radius: 6px;
    padding: 15px;
    margin-bottom: 15px;
    position: relative;
}

.tier-item .form-group {
    margin-bottom: 10px;
}

.remove-tier-btn {
    margin-top: 10px;
    background: rgba(255, 0, 0, 0.2);
    border: 1px solid rgba(255, 0, 0, 0.5);
    color: #ff6666;
}

.remove-tier-btn:hover {
    background: rgba(255, 0, 0, 0.3);
}

/* Proxy Pricing Info */
.proxy-pricing-info {
    background: var(--bg-card);
    border: 1px solid var(--border-glow);
    border-radius: 10px;
    min-height: 420px;
    padding: 42px 40px;
    margin-bottom: 20px;
}

.proxy-pricing-info h4 {
    color: var(--teal);
    font-family: 'Orbitron', sans-serif;
    margin-bottom: 18px;
    font-size: 1.55rem;
}

.proxy-pricing-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.proxy-pricing-info li {
    color: var(--text-secondary);
    padding: 10px 0;
    font-size: 1.05rem;
    padding-left: 20px;
    position: relative;
}

.proxy-pricing-info li:before {
    content: "\2022";
    color: var(--teal);
    position: absolute;
    left: 0;
}

.pricing-note {
    color: var(--orange);
    font-style: italic;
    margin-top: 10px;
}

.price-display {
    display: block;
    color: var(--teal);
    font-weight: 600;
    margin-top: 5px;
}

@media (min-width: 1600px) {
    .hero {
        padding: 76px 20px 52px;
    }

    .proxies-section,
    .servers-section {
        padding-top: 56px;
        padding-bottom: 56px;
    }

    .hero-layout {
        grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.92fr);
        gap: 36px;
        align-items: start;
    }

    .hero-subtitle {
        max-width: 30ch;
        margin-bottom: 32px;
    }

    .hero-proof-grid {
        gap: 16px;
    }

    .hero-proof-card {
        min-height: 164px;
        padding: 28px 26px;
    }

    .hero-proof-value {
        font-size: 1.4rem;
    }

    .trust-strip-section {
        padding: 0 20px 12px;
    }

    .trust-strip {
        gap: 16px;
    }

    .trust-strip-item {
        min-height: 80px;
        padding: 18px 22px;
        font-size: 1.08rem;
    }

    .landing-page .section-subtitle {
        margin-bottom: 28px;
    }

    .landing-pricing-grid {
        gap: 24px;
        margin-top: 24px;
    }

    .landing-pricing-card {
        min-height: 352px;
        padding: 32px 30px;
    }

    .landing-pricing-card h3,
    .static-isp-copy h3,
    .support-card h3 {
        font-size: 1.6rem;
    }

    .landing-pricing-value {
        font-size: 2.45rem;
        margin-bottom: 18px;
    }

    .landing-pricing-list li {
        padding: 12px 0;
    }

    .datacenter-note {
        margin-top: 18px;
        padding: 18px 20px;
    }

    .static-isp-shell {
        grid-template-columns: minmax(0, 1.02fr) minmax(340px, 0.98fr);
        gap: 24px;
        margin-top: 24px;
    }

    .static-isp-copy {
        min-height: 352px;
        padding: 32px 30px;
    }

    .proxy-pricing-info {
        min-height: 352px;
        padding: 32px 30px;
    }

    .static-isp-points li,
    .proxy-pricing-info li {
        padding: 12px 0;
    }

    .servers-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        max-width: 1180px;
        gap: 28px;
        margin-top: 24px;
    }

    .server-card {
        min-height: auto;
        padding: 34px 32px;
    }

    .server-card-header {
        margin-bottom: 20px;
        padding-bottom: 16px;
    }

    .server-card-header h3 {
        font-size: 1.45rem;
    }

    .spec-item {
        padding: 10px 0;
    }

    .server-pricing {
        margin: auto 0 26px;
        padding: 22px 20px;
    }

    .support-section {
        padding-top: 42px;
        padding-bottom: 42px;
    }

    .support-card {
        max-width: none;
        min-height: 240px;
        padding: 34px 36px;
    }

    .support-actions {
        padding-top: 20px;
    }
}

@media (max-width: 980px) {
    .servers-grid {
        grid-template-columns: 1fr;
        max-width: 620px;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero-layout,
    .static-isp-shell,
    .landing-pricing-grid,
    .trust-strip {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.28rem;
    }

    .landing-page .section-title {
        font-size: 2.4rem;
    }

    .landing-page .section-subtitle {
        font-size: 1.1rem;
        margin-bottom: 28px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .servers-grid {
        grid-template-columns: 1fr;
        max-width: 620px;
    }

    .hero-proof-grid,
    .support-actions {
        grid-template-columns: 1fr;
        display: grid;
    }

    .hero,
    .support-section {
        padding-top: 72px;
    }

    .hero,
    .proxies-section,
    .servers-section,
    .support-section {
        padding-bottom: 60px;
    }

    .hero-proof-card,
    .landing-pricing-card,
    .static-isp-copy,
    .proxy-pricing-info,
    .server-card,
    .support-card {
        min-height: auto;
        padding: 32px 28px;
    }

    .spec-item {
        grid-template-columns: 1fr;
        gap: 5px;
    }

    .spec-value {
        text-align: left;
        margin-left: 0;
    }
}

/* Source: public\\css\\pages\\growth.css */
.growth-page main {
    padding-top: 96px;
}

.growth-shell {
    width: min(1240px, calc(100% - 40px));
    margin: 0 auto;
}

.growth-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    gap: 28px;
    align-items: stretch;
    min-height: 390px;
    padding: 48px;
    border: 1px solid rgba(0, 255, 255, 0.32);
    border-radius: 18px;
    background:
        radial-gradient(circle at 14% 18%, rgba(0, 255, 255, 0.16), transparent 34%),
        radial-gradient(circle at 86% 16%, rgba(255, 102, 0, 0.15), transparent 32%),
        rgba(10, 10, 10, 0.9);
    box-shadow: var(--shadow-teal);
}

.growth-kicker {
    display: inline-flex;
    width: fit-content;
    margin-bottom: 18px;
    padding: 8px 14px;
    border: 1px solid rgba(0, 255, 255, 0.45);
    border-radius: 999px;
    color: var(--teal);
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.growth-title {
    margin: 0;
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-size: clamp(2.8rem, 5vw, 5.6rem);
    line-height: 0.98;
    text-transform: none;
}

.growth-title span {
    color: var(--teal);
    text-shadow: var(--glow-teal);
}

.growth-subtitle {
    max-width: 720px;
    margin: 20px 0 0;
    color: var(--text-secondary);
    font-size: clamp(1.2rem, 1.8vw, 1.55rem);
    line-height: 1.55;
}

.growth-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.growth-rail {
    display: grid;
    gap: 14px;
    align-content: stretch;
}

.growth-stat {
    position: relative;
    display: grid;
    align-content: center;
    gap: 12px;
    min-height: 118px;
    overflow: hidden;
    padding: 24px 28px;
    border: 1px solid rgba(0, 255, 255, 0.42);
    border-left: 5px solid var(--teal);
    border-radius: 14px;
    background:
        linear-gradient(120deg, rgba(0, 255, 255, 0.14), transparent 42%),
        linear-gradient(180deg, rgba(0, 25, 25, 0.86), rgba(5, 5, 5, 0.92));
    box-shadow:
        inset 0 0 34px rgba(0, 255, 255, 0.07),
        0 0 28px rgba(0, 255, 255, 0.12);
}

.growth-stat:nth-child(2) {
    border-color: rgba(255, 102, 0, 0.56);
    border-left-color: var(--orange);
    background:
        linear-gradient(120deg, rgba(255, 102, 0, 0.16), transparent 44%),
        linear-gradient(180deg, rgba(30, 12, 0, 0.7), rgba(5, 5, 5, 0.92));
    box-shadow:
        inset 0 0 34px rgba(255, 102, 0, 0.07),
        0 0 28px rgba(255, 102, 0, 0.13);
}

.growth-stat::before {
    content: '';
    position: absolute;
    right: -38px;
    top: -46px;
    width: 112px;
    height: 112px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 255, 255, 0.16), transparent 62%);
}

.growth-stat:nth-child(2)::before {
    background: radial-gradient(circle, rgba(255, 102, 0, 0.18), transparent 62%);
}

.growth-stat::after {
    position: absolute;
    right: 18px;
    bottom: 14px;
    color: rgba(255, 255, 255, 0.08);
    font-family: var(--font-heading);
    font-size: 3.4rem;
    font-weight: 900;
    line-height: 1;
}

.growth-stat:nth-child(1)::after {
    content: '01';
}

.growth-stat:nth-child(2)::after {
    content: '02';
}

.growth-stat:nth-child(3)::after {
    content: '03';
}

.growth-stat strong {
    position: relative;
    z-index: 1;
    color: var(--teal);
    font-family: var(--font-heading);
    font-size: clamp(1.35rem, 2.1vw, 2rem);
    line-height: 1.05;
    text-transform: uppercase;
}

.growth-stat span {
    position: relative;
    z-index: 1;
    color: var(--text-secondary);
    max-width: 86%;
    font-size: 1.12rem;
    line-height: 1.42;
}

.growth-section {
    padding: 54px 0 0;
}

.growth-section h2 {
    margin: 0 0 12px;
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3vw, 3.4rem);
}

.growth-section > p,
.growth-section .section-lead {
    max-width: 820px;
    margin: 0 0 24px;
    color: var(--text-secondary);
    font-size: 1.18rem;
    line-height: 1.6;
}

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

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

.growth-card,
.growth-table-card,
.growth-callout {
    border: 1px solid rgba(0, 255, 255, 0.28);
    border-radius: 16px;
    background: rgba(10, 10, 10, 0.9);
    box-shadow: 0 0 24px rgba(0, 255, 255, 0.08);
}

.growth-card {
    display: grid;
    align-content: start;
    gap: 14px;
    min-height: 230px;
    padding: 28px;
}

.growth-card.accent {
    border-color: rgba(255, 102, 0, 0.55);
    box-shadow: 0 0 30px rgba(255, 102, 0, 0.12);
}

.growth-card h3 {
    margin: 0;
    color: var(--teal);
    font-family: var(--font-heading);
    font-size: 1.55rem;
}

.growth-card p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 1.08rem;
    line-height: 1.55;
}

.seo-inline-link {
    align-self: end;
    width: fit-content;
    color: var(--teal);
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-decoration: none;
    text-transform: uppercase;
}

.seo-inline-link:hover,
.seo-inline-link:focus {
    color: var(--orange);
}

.growth-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3vw, 3.2rem);
    line-height: 1;
}

.growth-price span {
    color: var(--text-secondary);
    font-size: 1rem;
}

.growth-list {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.growth-list li {
    color: var(--text-secondary);
    font-size: 1.04rem;
    line-height: 1.45;
}

.growth-list li::before {
    content: '>';
    margin-right: 8px;
    color: var(--orange);
    font-family: var(--font-heading);
}

.growth-table-card {
    overflow: hidden;
}

.growth-table {
    width: 100%;
    border-collapse: collapse;
    color: var(--text-secondary);
}

.growth-table th,
.growth-table td {
    padding: 18px 20px;
    border-bottom: 1px solid rgba(0, 255, 255, 0.13);
    text-align: left;
    font-size: 1.06rem;
}

.growth-table th {
    color: var(--teal);
    font-family: var(--font-heading);
    text-transform: uppercase;
}

.growth-table td strong {
    color: var(--text-primary);
}

.growth-code {
    display: block;
    overflow-x: auto;
    padding: 18px;
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.62);
    color: var(--teal);
    font-family: 'Courier New', monospace;
    font-size: 1rem;
    line-height: 1.55;
}

.growth-callout {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: center;
    margin-top: 28px;
    padding: 28px;
}

.growth-callout h2,
.growth-callout h3 {
    margin: 0 0 8px;
    color: var(--text-primary);
    font-family: var(--font-heading);
}

.growth-callout p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 1.08rem;
}

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

.faq-item {
    padding: 24px;
    border: 1px solid rgba(0, 255, 255, 0.26);
    border-radius: 14px;
    background: rgba(10, 10, 10, 0.9);
}

.faq-item h2,
.faq-item h3 {
    margin: 0 0 10px;
    color: var(--teal);
    font-family: var(--font-heading);
    font-size: 1.25rem;
}

.faq-item p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 1.08rem;
    line-height: 1.55;
}

.status-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.status-card {
    padding: 24px;
    border: 1px solid rgba(0, 255, 255, 0.28);
    border-radius: 16px;
    background: rgba(10, 10, 10, 0.9);
}

.status-pill {
    display: inline-flex;
    margin-bottom: 16px;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(0, 255, 255, 0.12);
    color: var(--teal);
    font-family: var(--font-heading);
    font-size: 0.82rem;
    text-transform: uppercase;
}

.status-card h3 {
    margin: 0 0 8px;
    color: var(--text-primary);
    font-family: var(--font-heading);
}

.status-card p {
    margin: 0;
    color: var(--text-secondary);
    line-height: 1.5;
}

.status-live-section .section-lead {
    max-width: 920px;
}

.status-live-table-wrap {
    overflow-x: auto;
    border: 1px solid rgba(0, 255, 255, 0.32);
    border-radius: 16px;
    background: rgba(7, 7, 7, 0.92);
    box-shadow: 0 0 28px rgba(0, 255, 255, 0.1);
}

.status-live-table {
    width: 100%;
    min-width: 880px;
    border-collapse: collapse;
}

.status-live-table th,
.status-live-table td {
    padding: 20px 24px;
    border-bottom: 1px solid rgba(0, 255, 255, 0.14);
    color: var(--text-secondary);
    text-align: left;
    vertical-align: middle;
}

.status-live-table th {
    color: var(--teal);
    font-family: var(--font-heading);
    font-size: 0.94rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.status-live-table td strong {
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-size: 1.05rem;
}

.status-live-table code {
    color: var(--teal);
    font-family: 'Courier New', monospace;
    font-size: 0.98rem;
}

.status-live-table tr:last-child td {
    border-bottom: 0;
}

.status-live-pill {
    display: inline-flex;
    min-width: 90px;
    justify-content: center;
    padding: 8px 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    font-family: var(--font-heading);
    font-size: 0.84rem;
    font-weight: 900;
    text-transform: uppercase;
}

.status-live-pending {
    color: var(--text-secondary);
    background: rgba(255, 255, 255, 0.06);
}

.status-live-ok {
    border-color: rgba(0, 255, 255, 0.4);
    color: var(--teal);
    background: rgba(0, 255, 255, 0.1);
}

.status-live-down {
    border-color: rgba(255, 102, 0, 0.55);
    color: var(--orange);
    background: rgba(255, 102, 0, 0.12);
}

.trust-proof-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.trust-proof-card {
    position: relative;
    display: grid;
    gap: 14px;
    min-height: 280px;
    overflow: hidden;
    padding: 28px;
    border: 1px solid rgba(0, 255, 255, 0.34);
    border-radius: 16px;
    background:
        linear-gradient(160deg, rgba(0, 255, 255, 0.12), transparent 42%),
        rgba(10, 10, 10, 0.92);
    box-shadow: 0 0 28px rgba(0, 255, 255, 0.1);
}

.trust-proof-card:nth-child(even) {
    border-color: rgba(255, 102, 0, 0.48);
    background:
        linear-gradient(160deg, rgba(255, 102, 0, 0.13), transparent 42%),
        rgba(10, 10, 10, 0.92);
}

.trust-proof-card::after {
    content: '';
    position: absolute;
    right: -34px;
    bottom: -38px;
    width: 130px;
    height: 130px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transform: rotate(18deg);
}

.trust-proof-index {
    width: fit-content;
    padding: 6px 10px;
    border: 1px solid rgba(0, 255, 255, 0.36);
    border-radius: 999px;
    color: var(--teal);
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 900;
}

.trust-proof-card h3 {
    margin: 0;
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-size: 1.55rem;
}

.trust-proof-card p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 1.08rem;
    line-height: 1.5;
}

.trust-proof-card a {
    align-self: end;
    width: fit-content;
    color: var(--teal);
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-decoration: none;
    text-transform: uppercase;
}

.trust-ledger {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.trust-ledger-column {
    padding: 30px;
    border: 1px solid rgba(0, 255, 255, 0.34);
    border-radius: 16px;
    background:
        linear-gradient(135deg, rgba(0, 255, 255, 0.12), transparent 36%),
        rgba(10, 10, 10, 0.92);
}

.trust-ledger-column-warn {
    border-color: rgba(255, 102, 0, 0.5);
    background:
        linear-gradient(135deg, rgba(255, 102, 0, 0.14), transparent 36%),
        rgba(10, 10, 10, 0.92);
}

.trust-ledger-label {
    display: block;
    margin-bottom: 20px;
    color: var(--teal);
    font-family: var(--font-heading);
    font-size: 1.45rem;
    font-weight: 900;
    text-transform: uppercase;
}

.trust-ledger-column-warn .trust-ledger-label {
    color: var(--orange);
}

.trust-flow {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.trust-flow article {
    display: grid;
    gap: 10px;
    min-height: 210px;
    padding: 24px;
    border: 1px solid rgba(0, 255, 255, 0.28);
    border-radius: 16px;
    background: rgba(0, 18, 18, 0.68);
}

.trust-flow span {
    color: var(--orange);
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.trust-flow strong {
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-size: 1.25rem;
    line-height: 1.25;
}

.trust-flow p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.45;
}

.trust-terminal {
    overflow: hidden;
    border: 1px solid rgba(0, 255, 255, 0.36);
    border-radius: 16px;
    background: rgba(0, 0, 0, 0.82);
    box-shadow: var(--shadow-teal);
}

.trust-terminal-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 18px;
    border-bottom: 1px solid rgba(0, 255, 255, 0.18);
    background: rgba(0, 255, 255, 0.08);
}

.trust-terminal-bar span {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: var(--teal);
}

.trust-terminal-bar span:nth-child(2) {
    background: var(--orange);
}

.trust-terminal-bar span:nth-child(3) {
    background: rgba(255, 255, 255, 0.45);
}

.trust-terminal-bar strong {
    margin-left: 10px;
    color: var(--text-secondary);
    font-family: var(--font-heading);
    font-size: 0.95rem;
    text-transform: uppercase;
}

.trust-terminal code {
    display: block;
    white-space: pre-wrap;
    padding: 24px;
    color: var(--teal);
    font-family: 'Courier New', monospace;
    font-size: 1.04rem;
    line-height: 1.65;
}

@media (max-width: 980px) {
    .growth-hero,
    .growth-grid,
    .growth-grid.two,
    .status-grid,
    .trust-proof-grid,
    .trust-ledger,
    .trust-flow {
        grid-template-columns: 1fr;
    }

    .growth-hero {
        padding: 32px;
    }

    .growth-callout {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 640px) {
    .growth-page main {
        padding-top: 84px;
    }

    .growth-shell {
        width: min(100% - 24px, 1240px);
    }

    .growth-hero {
        padding: 24px;
    }

    .growth-card,
    .faq-item,
    .status-card,
    .growth-callout {
        padding: 20px;
    }
}

/* Source: public\\css\\pages\\legal.css */
.legal-doc-page {
    padding: 56px 20px 72px;
}

.legal-shell {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    gap: 28px;
}

.legal-hero-card,
.legal-nav-card,
.legal-panel,
.legal-summary-card {
    background: linear-gradient(180deg, rgba(17, 17, 17, 0.96) 0%, rgba(9, 9, 9, 0.96) 100%);
    border: 1px solid rgba(0, 255, 255, 0.16);
    border-radius: 18px;
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.25);
}

.legal-hero-card {
    padding: 36px;
    position: relative;
    overflow: hidden;
}

.legal-hero-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top right, rgba(0, 255, 255, 0.08), transparent 38%),
        radial-gradient(circle at bottom left, rgba(255, 102, 0, 0.08), transparent 32%);
    pointer-events: none;
}

.legal-breadcrumbs,
.legal-doc-nav,
.legal-quick-list,
.legal-inline-list,
.legal-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
}

.legal-breadcrumbs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

.legal-breadcrumbs a,
.legal-doc-link,
.legal-inline-list a {
    color: var(--teal);
    text-decoration: none;
}

.legal-breadcrumbs a:hover,
.legal-doc-link:hover,
.legal-inline-list a:hover {
    color: var(--orange);
}

.legal-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--orange);
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.legal-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2rem, 5vw, 3.2rem);
    line-height: 1.1;
    margin-bottom: 14px;
    background: linear-gradient(90deg, var(--teal) 0%, var(--orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.legal-intro {
    color: var(--text-secondary);
    font-size: 1.15rem;
    max-width: 760px;
    margin-bottom: 22px;
}

.legal-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.legal-meta span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.legal-nav-card {
    padding: 18px;
}

.legal-doc-nav {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.legal-doc-link {
    display: block;
    padding: 18px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.02);
    transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.legal-doc-link:hover {
    border-color: rgba(0, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 14px 24px rgba(0, 0, 0, 0.2);
}

.legal-doc-link.active {
    border-color: rgba(255, 102, 0, 0.5);
    box-shadow: inset 0 0 0 1px rgba(255, 102, 0, 0.22);
}

.legal-doc-link strong {
    display: block;
    color: var(--text-primary);
    font-family: 'Orbitron', sans-serif;
    margin-bottom: 6px;
    font-size: 1rem;
}

.legal-doc-link span {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.legal-layout {
    display: grid;
    grid-template-columns: minmax(0, 2.15fr) minmax(280px, 0.85fr);
    gap: 24px;
    align-items: start;
}

.legal-panel {
    padding: 28px;
}

.legal-panel + .legal-panel {
    margin-top: 18px;
}

.legal-panel h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.35rem;
    color: var(--orange);
    margin-bottom: 14px;
}

.legal-panel h3 {
    color: var(--teal);
    font-size: 1.02rem;
    margin: 16px 0 8px;
}

.legal-panel p {
    color: var(--text-secondary);
    line-height: 1.8;
}

.legal-panel p + p,
.legal-panel ul + p,
.legal-panel p + ul,
.legal-panel ul + ul {
    margin-top: 12px;
}

.legal-checklist li,
.legal-quick-list li,
.legal-inline-list li {
    color: var(--text-secondary);
    position: relative;
}

.legal-checklist li,
.legal-quick-list li {
    padding-left: 20px;
}

.legal-checklist li + li,
.legal-quick-list li + li,
.legal-inline-list li + li {
    margin-top: 10px;
}

.legal-checklist li::before,
.legal-quick-list li::before {
    content: '\2022';
    position: absolute;
    left: 0;
    color: var(--orange);
    font-weight: 700;
}

.legal-inline-list li {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.legal-inline-list li:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.legal-inline-list strong {
    color: var(--text-primary);
    flex: 0 0 140px;
}

.legal-callout {
    margin-top: 18px;
    padding: 16px 18px;
    border-radius: 14px;
    border: 1px solid rgba(255, 102, 0, 0.25);
    background: rgba(255, 102, 0, 0.06);
}

.legal-callout strong {
    color: var(--text-primary);
}

.legal-summary-card {
    padding: 22px;
    position: sticky;
    top: 104px;
}

.legal-summary-card h2 {
    font-family: 'Orbitron', sans-serif;
    color: var(--teal);
    font-size: 1.15rem;
    margin-bottom: 14px;
}

.legal-summary-card p {
    color: var(--text-secondary);
}

.legal-summary-card p + p,
.legal-summary-card ul + p,
.legal-summary-card p + ul {
    margin-top: 12px;
}

.legal-summary-card .legal-callout {
    margin-top: 16px;
}

.legal-footer-links {
    margin-top: 12px;
}

.legal-footer-links a {
    color: var(--teal);
    text-decoration: none;
}

.legal-footer-links a:hover {
    color: var(--orange);
}

@media (max-width: 980px) {
    .legal-layout {
        grid-template-columns: 1fr;
    }

    .legal-summary-card {
        position: static;
    }
}

@media (max-width: 720px) {
    .legal-doc-nav {
        grid-template-columns: 1fr;
    }

    .legal-hero-card,
    .legal-nav-card,
    .legal-panel,
    .legal-summary-card {
        padding: 20px;
    }

    .legal-inline-list li {
        flex-direction: column;
    }

    .legal-inline-list strong {
        flex: initial;
    }
}

/* Source: public\\css\\pages\\auth.css */
/* Auth Pages */
.auth-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: relative;
    z-index: 10;
}

.auth-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glow);
    border-radius: 15px;
    padding: 40px;
    width: 100%;
    max-width: 500px;
    box-shadow: 0 0 40px rgba(0, 255, 255, 0.1);
}

.auth-header {
    text-align: center;
    margin-bottom: 30px;
}

.auth-header h2 {
    font-family: 'Orbitron', sans-serif;
    color: var(--teal);
    margin: 20px 0 10px;
    font-size: 2rem;
}

.auth-header p {
    color: var(--text-secondary);
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.auth-footer {
    margin-top: 30px;
    text-align: center;
    color: var(--text-secondary);
}

.auth-footer a {
    color: var(--teal);
    text-decoration: none;
}

.auth-footer a:hover {
    text-decoration: underline;
}

