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

:root {
    --clemson-orange: #F56600;
    --orange-glow: rgba(245, 102, 0, 0.8);
    --deep-blue: #0A1628;
    --blue-mid: #0d1e35;
    --blue-light: #132238;
    --blue-accent: #1a3a5c;
    --trace-color: #1e5a8a;
    --trace-bright: #2d7ab8;
    --text-light: #E8ECF1;
    --text-muted: #8B98A8;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    background-color: var(--deep-blue);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Welcome Animation Overlay */
.welcome-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--deep-blue);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.welcome-overlay.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.welcome-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Circuit Background */
.circuit-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* Main Content */
.main-content {
    position: relative;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.main-content.visible {
    opacity: 1;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 1.5rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    background: linear-gradient(to bottom, var(--deep-blue) 0%, var(--deep-blue) 50%, transparent 100%);
}

.logo {
    font-family: 'Space Mono', monospace;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--clemson-orange);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    width: 36px;
    height: 36px;
    position: relative;
}

.logo-icon svg {
    width: 100%;
    height: 100%;
}

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

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--clemson-orange);
    transition: width 0.3s ease;
    box-shadow: 0 0 8px var(--orange-glow);
}

.nav-links a:hover {
    color: var(--clemson-orange);
}

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

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 4rem 4rem;
    position: relative;
}

.hero-content {
    max-width: 700px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(245, 102, 0, 0.1);
    border: 1px solid rgba(245, 102, 0, 0.3);
    border-radius: 50px;
    font-family: 'Space Mono', monospace;
    font-size: 0.8rem;
    color: var(--clemson-orange);
    margin-bottom: 1.5rem;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--clemson-orange);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--orange-glow), 0 0 20px var(--orange-glow);
    animation: glow-pulse 2s infinite;
}

@keyframes glow-pulse {

    0%,
    100% {
        opacity: 1;
        box-shadow: 0 0 10px var(--orange-glow), 0 0 20px var(--orange-glow);
    }

    50% {
        opacity: 0.6;
        box-shadow: 0 0 5px var(--orange-glow), 0 0 10px var(--orange-glow);
    }
}

.hero h1 {
    font-family: 'Space Mono', monospace;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero h1 span {
    color: var(--clemson-orange);
    text-shadow: 0 0 30px rgba(245, 102, 0, 0.3);
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 550px;
}

.cta-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2rem;
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary {
    background: var(--clemson-orange);
    color: white;
    border: 2px solid var(--clemson-orange);
    box-shadow: 0 0 20px rgba(245, 102, 0, 0.2);
}

.btn-primary:hover {
    background: transparent;
    color: var(--clemson-orange);
    box-shadow: 0 0 30px rgba(245, 102, 0, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--blue-accent);
}

.btn-secondary:hover {
    border-color: var(--clemson-orange);
    color: var(--clemson-orange);
}

/* Section Styles */
section {
    padding: 6rem 4rem;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-label {
    font-family: 'Space Mono', monospace;
    font-size: 0.85rem;
    color: var(--clemson-orange);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.section-title {
    font-family: 'Space Mono', monospace;
    font-size: 2.5rem;
    font-weight: 700;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: linear-gradient(135deg, var(--blue-light) 0%, var(--blue-mid) 100%);
    border: 1px solid var(--blue-accent);
    border-radius: 12px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--clemson-orange), transparent);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 6px;
    height: 6px;
    background: var(--clemson-orange);
    border-radius: 50%;
    transform: translateX(-50%) scale(0);
    transition: transform 0.3s ease;
    box-shadow: 0 0 10px var(--orange-glow), 0 0 20px var(--orange-glow);
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(245, 102, 0, 0.3);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3), 0 0 60px rgba(245, 102, 0, 0.1);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover::after {
    transform: translateX(-50%) scale(1);
}

.service-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1.5rem;
    color: var(--clemson-orange);
    filter: drop-shadow(0 0 8px rgba(245, 102, 0, 0.4));
}

.service-card h3 {
    font-family: 'Space Mono', monospace;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Process Section */
#process {
    background: linear-gradient(180deg, var(--blue-light) 0%, var(--deep-blue) 100%);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.process-step {
    text-align: center;
    padding: 2rem;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--deep-blue);
    border: 2px solid var(--clemson-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Space Mono', monospace;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--clemson-orange);
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 1;
    box-shadow: 0 0 20px rgba(245, 102, 0, 0.2), inset 0 0 20px rgba(245, 102, 0, 0.1);
}

.process-step h3 {
    font-family: 'Space Mono', monospace;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.process-step p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Pricing Section */
.pricing-card {
    max-width: 500px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--blue-light) 0%, var(--blue-mid) 100%);
    border: 2px solid var(--clemson-orange);
    border-radius: 16px;
    padding: 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 40px rgba(245, 102, 0, 0.15);
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(245, 102, 0, 0.15) 0%, transparent 70%);
    animation: float 8s ease-in-out infinite;
}

.pricing-card::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(245, 102, 0, 0.1) 0%, transparent 70%);
    animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(30px, 30px);
    }
}

.pricing-content {
    position: relative;
    z-index: 1;
}

.pricing-label {
    font-family: 'Space Mono', monospace;
    font-size: 0.9rem;
    color: var(--clemson-orange);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.pricing-title {
    font-family: 'Space Mono', monospace;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.pricing-price {
    font-family: 'Space Mono', monospace;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--clemson-orange);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 30px rgba(245, 102, 0, 0.3);
}

.pricing-note {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
}

.pricing-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.check-icon {
    color: var(--clemson-orange);
    flex-shrink: 0;
    filter: drop-shadow(0 0 4px rgba(245, 102, 0, 0.5));
}

/* Contact Section */
#contact {
    background: linear-gradient(180deg, var(--deep-blue) 0%, var(--blue-light) 100%);
}

.contact-container {
    max-width: 600px;
    margin: 0 auto;
}

.contact-intro {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group label {
    font-family: 'Space Mono', monospace;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.form-group input,
.form-group textarea {
    padding: 1rem;
    background: var(--deep-blue);
    border: 1px solid var(--blue-accent);
    border-radius: 8px;
    color: var(--text-light);
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--clemson-orange);
    box-shadow: 0 0 0 3px rgba(245, 102, 0, 0.1), 0 0 20px rgba(245, 102, 0, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.honeypot {
    position: absolute;
    left: -9999px;
}

/* Footer */
footer {
    padding: 3rem 4rem;
    text-align: center;
    border-top: 1px solid var(--blue-accent);
    background: var(--blue-light);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.footer-logo {
    font-family: 'Space Mono', monospace;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--clemson-orange);
}

.footer-text {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    nav {
        padding: 1rem 1.5rem;
    }

    .nav-links {
        display: none;
    }

    .hero {
        padding: 6rem 1.5rem 3rem;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    section {
        padding: 4rem 1.5rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .cta-group {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .pricing-card {
        padding: 2rem;
    }

    .pricing-price {
        font-size: 2.5rem;
    }
}

/* Scroll animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}