:root {
    --bg-main: #0a0a0a;
    --bg-surface: #141414;
    --bg-surface-hover: #1c1c1c;
    
    --border-color: #2a2a2a;
    --border-hover: #444;
    
    --text-main: #f0f0f0;
    --text-muted: #888;
    
    --accent-1: #00E5FF; /* Electric Cyan */
    --accent-2: #ccff00; /* Toxic Green */
    
    --color-nvidia: #76b900;
    --color-amd: #ed1c24;
    
    --transition-snappy: 0.15s ease-out;
    
    --font-stack: 'Outfit', -apple-system, sans-serif;
    --font-mono: 'Fira Code', monospace;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    background-color: var(--bg-main);
    color: var(--text-main);
    font-family: var(--font-stack);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    /* Hard geometric grid */
    background-image: 
        linear-gradient(var(--border-color) 1px, transparent 1px),
        linear-gradient(90deg, var(--border-color) 1px, transparent 1px);
    background-size: 40px 40px;
    background-position: center top;
}

/* Remove the old glow orbs */
body::before, body::after {
    display: none;
}

h1, h2, h3, h4, h5 {
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

p {
    color: var(--text-muted);
}

.glow-text {
    /* Repurposed class name to just be high contrast */
    color: var(--text-main);
}

span {
    color: var(--accent-1);
}

/* Buttons (Neobrutalist/Hardware) */
.btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 2px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition-snappy);
    cursor: pointer;
    font-family: var(--font-mono);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: var(--accent-1);
    color: #000;
    border: 2px solid var(--accent-1);
    box-shadow: 4px 4px 0px rgba(0, 0, 0, 0.8);
}

.btn-primary:hover {
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0px var(--accent-1);
    background: #000;
    color: var(--accent-1);
}

.btn-secondary {
    background: var(--bg-surface);
    color: var(--text-main);
    border: 2px solid var(--border-color);
    box-shadow: 4px 4px 0px rgba(0,0,0,0.8);
}

.btn-secondary:hover {
    transform: translate(-2px, -2px);
    border-color: var(--accent-2);
    box-shadow: 6px 6px 0px var(--accent-2);
    color: var(--accent-2);
}

.btn-small {
    padding: 0.5rem 1.25rem;
    font-size: 0.85rem;
}

.large-btn {
    font-size: 1.1rem;
    padding: 1.25rem 2.5rem; 
}

/* Glass Panels -> Brutalist Hardware Panels */
.glass-panel {
    background: var(--bg-surface);
    border: 2px solid var(--border-color);
    border-radius: 4px;
    padding: 2.5rem;
    transition: var(--transition-snappy);
    box-shadow: 8px 8px 0px rgba(0,0,0,0.5);
    /* Remove backdrop blur completely */
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.hover-glow:hover {
    border-color: var(--accent-1);
    transform: translate(-4px, -4px);
    box-shadow: 12px 12px 0px rgba(0, 229, 255, 0.15);
}

/* Nav Bar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.25rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: all 0.3s ease;
    background: var(--bg-main);
    border-bottom: 2px solid var(--border-color);
}

.navbar.glass-nav {
    /* Keep class for JS but override style */
    background: var(--bg-main);
    border-bottom: 2px solid var(--accent-1);
}

.logo {
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a:not(.btn-primary) {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
    font-size: 0.95rem;
    text-transform: uppercase;
    font-family: var(--font-mono);
}

.nav-links a:not(.btn-primary):hover {
    color: var(--accent-1);
}

.mobile-menu-btn {
    display: none;
    color: #fff;
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start; /* Asymmetrical */
    text-align: left;
    padding: 8rem 5% 0;
}

.hero-glow {
    display: none;
}

.hero-content {
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--bg-surface);
    color: var(--accent-2);
    padding: 0.5rem 1rem;
    border-radius: 2px;
    font-weight: 600;
    font-size: 0.85rem;
    border: 1px solid var(--accent-2);
    font-family: var(--font-mono);
    text-transform: uppercase;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: var(--accent-2);
    border-radius: 0; /* Square dot */
    animation: pulse-animation 1.5s infinite steps(2);
}

@keyframes pulse-animation {
    0% { opacity: 1; }
    50% { opacity: 0; }
    100% { opacity: 1; }
}

.hero h1 {
    font-size: clamp(3.5rem, 7vw, 6.5rem);
    letter-spacing: -1px;
    color: var(--text-main);
    /* Hard text shadow */
    text-shadow: 4px 4px 0px rgba(0, 229, 255, 0.2);
}

.hero p {
    font-size: 1.25rem;
    max-width: 650px;
    border-left: 4px solid var(--accent-1);
    padding-left: 1rem;
    font-family: var(--font-mono);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    justify-content: flex-start;
}

/* Standard Section Spacing */
section {
    padding: 6rem 5%;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: left;
    margin-bottom: 4rem;
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 1rem;
}

.section-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    margin-bottom: 0.5rem;
}

.section-subtitle {
    font-size: 1.15rem;
    max-width: 600px;
    font-family: var(--font-mono);
}

/* Pricing Section */
.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.price-card {
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.price-icon {
    width: 50px;
    height: 50px;
    background: var(--bg-main);
    border: 2px solid var(--border-hover);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-1);
    margin-bottom: 1rem;
}

.price-card h3 {
    font-size: 1.5rem;
    font-family: var(--font-mono);
}

.price-amount {
    font-size: 3rem;
    font-weight: 900;
    color: var(--text-main);
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.price-amount span {
    font-size: 1rem;
    color: var(--text-muted);
    font-family: var(--font-mono);
}

.total-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    background: var(--accent-1);
    color: #000;
    border-color: var(--accent-1);
    box-shadow: 8px 8px 0px rgba(0,0,0,0.8);
}

.total-bar h4 {
    color: #000;
    font-family: var(--font-mono);
}

.total-bar p {
    color: #111;
    font-weight: 600;
}

.total-bar .btn-primary {
    background: #000;
    color: var(--accent-1);
    border-color: #000;
}

.total-bar .btn-primary:hover {
    background: var(--bg-surface);
    color: var(--text-main);
    box-shadow: 4px 4px 0px rgba(0,0,0,0.9);
}

/* Custom Highlight styles */
.highlight-gradient {
    border-color: var(--accent-2);
    box-shadow: 8px 8px 0px rgba(204, 255, 0, 0.15);
}

.popular-badge {
    background: var(--accent-2);
    color: #000;
    padding: 0.25rem 0.75rem;
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 2px;
    display: inline-block;
    margin-bottom: 1rem;
    text-transform: uppercase;
    font-family: var(--font-mono);
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.icon-wrap {
    width: 60px;
    height: 60px;
    background: var(--bg-main);
    border: 2px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-1);
}

.builder-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.builder-card {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.builder-card.glass-panel {
    padding: 1.5rem;
}

.builder-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 1rem;
}

.builder-avatar {
    width: 50px;
    height: 50px;
    background: var(--accent-1);
    color: #000;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
    font-family: var(--font-mono);
}

.builder-info h4 {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.builder-info span {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-family: var(--font-mono);
}

.builder-specs {
    list-style: none;
}

.builder-specs li {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px dotted var(--border-hover);
    font-size: 0.9rem;
}

.builder-specs li:last-child {
    border-bottom: none;
}

.spec-label {
    color: var(--text-muted);
    font-family: var(--font-mono);
}

.spec-value {
    font-weight: 600;
}

.target-nvidia { color: var(--color-nvidia); }
.target-amd { color: var(--color-amd); }

/* CTA Section */
.cta {
    padding: 6rem 5%;
}

.cta-inner {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    background: var(--bg-surface);
    border: 2px dashed var(--border-hover);
}

/* Commission Page Header */
.page-header {
    padding: 10rem 5% 4rem;
    text-align: left;
    border-bottom: 2px solid var(--border-color);
    background: var(--bg-main);
}

.pt-0 {
    padding-top: 4rem;
}

/* Tiers Grid */
.tiers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.tier-card {
    display: flex;
    flex-direction: column;
}

.tier-badge {
    background: var(--border-color);
    color: var(--text-main);
    padding: 0.4rem 0.8rem;
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 2px;
    display: inline-block;
    margin-bottom: 1rem;
    align-self: flex-start;
    font-family: var(--font-mono);
    text-transform: uppercase;
}

.elite-badge {
    background: var(--accent-1);
    color: #000;
}

.tier-desc {
    margin: 1rem 0;
    flex-grow: 1;
}

.tier-price {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--text-main);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    font-family: var(--font-mono);
}

.tier-price span {
    font-size: 1rem;
    color: var(--text-muted);
    text-transform: none;
}

.tier-specs {
    list-style: none;
    margin-bottom: 2rem;
    background: var(--bg-main);
    padding: 1rem;
    border: 1px solid var(--border-color);
}

.tier-specs li {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px dashed var(--border-hover);
    font-size: 0.95rem;
}

.tier-specs li:last-child {
    border-bottom: none;
}

.tier-btn {
    margin-top: auto;
}

.w-full {
    width: 100%;
}

.mt-4 {
    margin-top: 1.5rem;
}

/* Form Styles */
.form-section {
    position: relative;
    padding-bottom: 8rem;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
}

.form-title {
    margin-bottom: 0.5rem;
}

.form-subtitle {
    margin-bottom: 2.5rem;
    font-family: var(--font-mono);
}

.commission-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

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

.full-width {
    grid-column: 1 / -1;
}

label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-main);
    font-family: var(--font-mono);
    text-transform: uppercase;
}

input, select, textarea {
    width: 100%;
    background: var(--bg-main);
    border: 2px solid var(--border-color);
    border-radius: 2px;
    padding: 1rem;
    color: var(--text-main);
    font-family: var(--font-stack);
    font-size: 1rem;
    transition: var(--transition-snappy);
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--accent-1);
    box-shadow: 4px 4px 0px rgba(0, 229, 255, 0.2);
    background: var(--bg-surface-hover);
}

textarea {
    resize: vertical;
    min-height: 120px;
}

select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23f8fafc' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1em;
}

input:disabled, textarea:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: var(--bg-main);
}

/* Success Modal */
.modal-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-snappy);
    z-index: 9999;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    max-width: 500px;
    width: 90%;
    text-align: center;
    transform: translateY(20px);
    border: 2px solid var(--accent-1);
    box-shadow: 12px 12px 0px rgba(0, 229, 255, 0.2);
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.modal-icon {
    width: 80px;
    height: 80px;
    background: var(--bg-main);
    border: 2px solid var(--accent-1);
    color: var(--accent-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.modal-content h3 {
    margin-bottom: 1rem;
}

.modal-content p {
    margin-bottom: 2rem;
}

/* Footer */
.footer {
    border-top: 2px solid var(--border-color);
    padding: 3rem 5%;
    background: var(--bg-main);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    font-size: 1.25rem;
    font-weight: 900;
}

/* Animations & Utilities */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.text-center { text-align: center; }

@media (max-width: 900px) {
    .commission-form {
        grid-template-columns: 1fr;
    }
    .about-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .navbar { padding: 1rem 5%; }
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--bg-main);
        flex-direction: column;
        justify-content: center;
        transition: 0.3s ease-in-out;
        border-top: 2px solid var(--border-color);
    }
    .nav-links.active { left: 0; }
    .mobile-menu-btn { display: block; }
    
    .hero {
        align-items: flex-start;
        padding-top: 8rem;
    }
    .hero-content { align-items: flex-start; text-align: left; }
    .hero-buttons { flex-direction: column; width: 100%; }
    .hero-buttons a { width: 100%; }
    
    .section-title { font-size: 2rem; }
}
