/* ===== CSS CUSTOM PROPERTIES - SILVER & ORANGE THEME ===== */
:root {
    /* Color Palette */
    --primary-orange: #ff6b35;
    --secondary-orange: #ff8c42;
    --accent-orange: #ffab73;
    --light-orange: #ffd4b3;
    
    --primary-silver: #c0c0c0;
    --dark-silver: #8c8c8c;
    --light-silver: #e8e8e8;
    --silver-metallic: #b8b8b8;
    
    --bg-dark: #0f0f0f;
    --bg-darker: #0a0a0a;
    --bg-card: #1a1a1a;
    --bg-card-hover: #242424;
    
    --text-primary: #ffffff;
    --text-secondary: #e0e0e0;
    --text-muted: #a0a0a0;
    --text-accent: #ff6b35;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #ff6b35 0%, #ff8c42 50%, #ffab73 100%);
    --gradient-silver: linear-gradient(135deg, #c0c0c0 0%, #e8e8e8 50%, #b8b8b8 100%);
    --gradient-mixed: linear-gradient(135deg, #ff6b35 0%, #c0c0c0 100%);
    --gradient-bg: radial-gradient(circle at 25% 25%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
                   radial-gradient(circle at 75% 75%, rgba(192, 192, 192, 0.08) 0%, transparent 50%);
    
    /* Shadows & Effects */
    --shadow-glow-orange: 0 0 30px rgba(255, 107, 53, 0.3);
    --shadow-glow-silver: 0 0 20px rgba(192, 192, 192, 0.2);
    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.4);
    --shadow-card-hover: 0 12px 48px rgba(0, 0, 0, 0.6);
    
    /* Typography */
    --font-primary: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --font-mono: 'Consolas', 'Monaco', 'Courier New', monospace;
    
    /* Animations */
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-bounce: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

*::before,
*::after {
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
}

/* ===== BACKGROUND ANIMATIONS ===== */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -3;
    background: var(--gradient-bg);
    opacity: 0.6;
}

.bg-animation::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255, 107, 53, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(192, 192, 192, 0.05) 0%, transparent 50%),
        url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.02"><circle cx="7" cy="7" r="1"/><circle cx="27" cy="7" r="1"/><circle cx="47" cy="7" r="1"/><circle cx="7" cy="27" r="1"/><circle cx="27" cy="27" r="1"/><circle cx="47" cy="27" r="1"/><circle cx="7" cy="47" r="1"/><circle cx="27" cy="47" r="1"/><circle cx="47" cy="47" r="1"/></g></g></svg>');
    animation: bgFloat 25s ease-in-out infinite;
}

@keyframes bgFloat {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg) scale(1); 
        opacity: 0.6;
    }
    33% { 
        transform: translateY(-15px) rotate(120deg) scale(1.05); 
        opacity: 0.8;
    }
    66% { 
        transform: translateY(-25px) rotate(240deg) scale(0.95); 
        opacity: 0.4;
    }
}

/* Floating Elements */
.floating-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    pointer-events: none;
}

.floating-element {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--gradient-mixed);
    border-radius: 50%;
    opacity: 0.4;
}

.floating-element-1 {
    top: 20%;
    left: 10%;
    animation: float1 20s ease-in-out infinite;
}

.floating-element-2 {
    top: 60%;
    left: 80%;
    width: 4px;
    height: 4px;
    animation: float2 25s ease-in-out infinite;
}

.floating-element-3 {
    top: 80%;
    left: 20%;
    width: 8px;
    height: 8px;
    animation: float3 18s ease-in-out infinite;
}

.floating-element-4 {
    top: 30%;
    left: 70%;
    width: 3px;
    height: 3px;
    animation: float4 22s ease-in-out infinite;
}

.floating-element-5 {
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    animation: float5 16s ease-in-out infinite;
}

@keyframes float1 {
    0%, 100% { transform: translateY(0px) translateX(0px); }
    25% { transform: translateY(-30px) translateX(20px); }
    50% { transform: translateY(-60px) translateX(-10px); }
    75% { transform: translateY(-20px) translateX(-30px); }
}

@keyframes float2 {
    0%, 100% { transform: translateY(0px) translateX(0px) rotate(0deg); }
    50% { transform: translateY(-40px) translateX(-25px) rotate(180deg); }
}

@keyframes float3 {
    0%, 100% { transform: translateY(0px) translateX(0px) scale(1); }
    33% { transform: translateY(-20px) translateX(15px) scale(1.2); }
    66% { transform: translateY(-35px) translateX(-20px) scale(0.8); }
}

@keyframes float4 {
    0%, 100% { transform: translateY(0px) translateX(0px); }
    50% { transform: translateY(-50px) translateX(30px); }
}

@keyframes float5 {
    0%, 100% { transform: translateY(0px) translateX(0px) rotate(0deg); }
    25% { transform: translateY(-15px) translateX(-20px) rotate(90deg); }
    50% { transform: translateY(-30px) translateX(0px) rotate(180deg); }
    75% { transform: translateY(-15px) translateX(20px) rotate(270deg); }
}

/* Circuit Pattern Overlay */
.circuit-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.03;
    background-image: url('data:image/svg+xml,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><path d="M10 10h80M10 20h80M10 30h80M20 10v80M30 10v80M40 10v80" stroke="%23ffffff" stroke-width="0.5" fill="none"/><circle cx="20" cy="20" r="2" fill="%23ff6b35"/><circle cx="40" cy="40" r="2" fill="%23c0c0c0"/><circle cx="60" cy="60" r="2" fill="%23ff6b35"/></svg>');
    animation: circuitMove 30s linear infinite;
}

@keyframes circuitMove {
    0% { background-position: 0px 0px; }
    100% { background-position: 100px 100px; }
}

/* ===== MAIN CONTAINER ===== */
.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem;
    min-height: 100vh;
    display: block;
    text-align: center;
    position: relative;
    z-index: 1;
}

/* Center content vertically */
body {
    font-family: var(--font-primary);
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 5vh;
}

/* ===== LOGO ===== */
.logo {
    font-size: 2.5rem;
    font-weight: bold;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 3rem;
    animation: logoFloat 3s ease-in-out infinite;
}

.logo-icon {
    font-size: 2rem;
    filter: drop-shadow(0 0 12px rgba(255, 107, 53, 0.8));
    animation: logoGlow 3s ease-in-out infinite;
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes logoGlow {
    0%, 100% { filter: drop-shadow(0 0 12px rgba(255, 107, 53, 0.8)); }
    50% { filter: drop-shadow(0 0 20px rgba(255, 107, 53, 1)); }
}

/* ===== CONSTRUCTION VISUAL ===== */
.construction-visual {
    margin-bottom: 3rem;
    animation: slideInScale 1s ease 0.3s both;
}

.tech-hub {
    position: relative;
    width: 250px;
    height: 250px;
    margin: 0 auto;
}

.tech-circle {
    position: absolute;
    border-radius: 50%;
    border: 2px solid;
}

.main-circle {
    width: 100%;
    height: 100%;
    border-color: var(--primary-orange);
    animation: rotateClockwise 20s linear infinite;
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.3);
}

.inner-circle-1 {
    width: 70%;
    height: 70%;
    top: 15%;
    left: 15%;
    border-color: var(--primary-silver);
    animation: rotateCounterClockwise 15s linear infinite;
    box-shadow: 0 0 15px rgba(192, 192, 192, 0.2);
}

.inner-circle-2 {
    width: 40%;
    height: 40%;
    top: 30%;
    left: 30%;
    border-color: var(--secondary-orange);
    animation: rotateClockwise 10s linear infinite;
    box-shadow: 0 0 10px rgba(255, 140, 66, 0.4);
}

.tech-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: var(--gradient-mixed);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: var(--shadow-glow-orange);
    animation: techPulse 2s ease-in-out infinite;
}

@keyframes techPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.1); }
}

.orbit-elements {
    position: absolute;
    width: 100%;
    height: 100%;
}

.orbit-element {
    position: absolute;
    width: 30px;
    height: 30px;
    background: rgba(26, 26, 26, 0.9);
    border: 2px solid var(--primary-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    box-shadow: var(--shadow-card);
    animation: orbitRotate 8s linear infinite;
}

.orbit-1 {
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0s;
}

.orbit-2 {
    top: 50%;
    right: -15px;
    transform: translateY(-50%);
    animation-delay: -2s;
}

.orbit-3 {
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: -4s;
}

.orbit-4 {
    top: 50%;
    left: -15px;
    transform: translateY(-50%);
    animation-delay: -6s;
}

@keyframes rotateClockwise {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes rotateCounterClockwise {
    from { transform: rotate(360deg); }
    to { transform: rotate(0deg); }
}

@keyframes orbitRotate {
    from { transform: rotate(0deg) translateX(125px) rotate(0deg); }
    to { transform: rotate(360deg) translateX(125px) rotate(-360deg); }
}

@keyframes slideInScale {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(30px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* ===== CONTENT ===== */
.content {
    max-width: 700px;
    width: 100%;
    margin: 0 auto;
    animation: slideInUp 1s ease 0.6s both;
}

.content * {
    margin-left: auto;
    margin-right: auto;
}

.content h1,
.content p,
.content .description {
    text-align: center;
    width: 100%;
    display: block;
}

.status-badge {
    display: inline-block;
    background: rgba(255, 107, 53, 0.1);
    color: var(--primary-orange);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 107, 53, 0.3);
    animation: badgeGlow 3s ease-in-out infinite;
    text-align: center;
}

.content h1 {
    font-size: 2.8rem;
    font-weight: bold;
    margin: 1.5rem auto;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    text-align: center;
    width: 100%;
    max-width: 100%;
}

.description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin: 0 auto 3rem auto;
    line-height: 1.7;
    text-align: center;
    width: 100%;
    max-width: 600px;
}

/* ===== PROGRESS BAR ===== */
.progress-container {
    margin: 3rem auto;
    width: 100%;
    max-width: 500px;
}

.progress-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.8rem;
    font-weight: 600;
    width: 100%;
}

.progress-percent {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: bold;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: var(--bg-card);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3);
}

.progress-fill {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 4px;
    width: 0%;
    transition: width 2s ease-in-out;
    box-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
    animation: progressGlow 2s ease-in-out infinite;
}

@keyframes progressGlow {
    0%, 100% { box-shadow: 0 0 10px rgba(255, 107, 53, 0.5); }
    50% { box-shadow: 0 0 20px rgba(255, 107, 53, 0.8); }
}

@keyframes badgeGlow {
    0%, 100% { box-shadow: 0 0 10px rgba(255, 107, 53, 0.3); }
    50% { box-shadow: 0 0 20px rgba(255, 107, 53, 0.6); }
}

/* ===== BUTTONS ===== */
.action-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 4rem auto;
    flex-wrap: wrap;
    width: 100%;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 15px 25px;
    border-radius: 50px;
    font-weight: bold;
    text-decoration: none;
    transition: var(--transition-bounce);
    position: relative;
    overflow: hidden;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    min-width: 160px;
    text-align: center;
    font-family: var(--font-primary);
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--bg-dark);
    box-shadow: var(--shadow-glow-orange);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--primary-silver);
    box-shadow: var(--shadow-glow-silver);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.btn:hover {
    transform: translateY(-3px) scale(1.05);
}

.btn:hover::before {
    left: 100%;
}

.btn-primary:hover {
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.6);
}

.btn-secondary:hover {
    background: rgba(192, 192, 192, 0.1);
    border-color: var(--primary-orange);
    color: var(--primary-orange);
}

.btn-icon {
    font-size: 1.1rem;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--bg-dark);
    box-shadow: var(--shadow-glow-orange);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--primary-silver);
    box-shadow: var(--shadow-glow-silver);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.btn:hover {
    transform: translateY(-3px) scale(1.05);
}

.btn:hover::before {
    left: 100%;
}

.btn-primary:hover {
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.6);
}

.btn-secondary:hover {
    background: rgba(192, 192, 192, 0.1);
    border-color: var(--primary-orange);
    color: var(--primary-orange);
}

.btn-icon {
    font-size: 1.1rem;
}

/* ===== FEATURES PREVIEW ===== */
.features-preview {
    margin: 4rem auto;
    width: 100%;
    text-align: center;
}

.features-preview h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    background: var(--gradient-silver);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.feature-item {
    background: var(--bg-card);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(192, 192, 192, 0.1);
    transition: var(--transition-smooth);
    text-align: center;
    width: 100%;
}

.feature-item:hover {
    transform: translateY(-5px);
    background: var(--bg-card-hover);
    border-color: var(--primary-orange);
    box-shadow: var(--shadow-card);
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 8px rgba(255, 107, 53, 0.5));
    display: block;
    text-align: center;
}

.feature-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    text-align: center;
}

.feature-item p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-align: center;
    margin: 0;
}

/* ===== NEWSLETTER SIGNUP ===== */
.newsletter-signup {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(192, 192, 192, 0.1);
    position: relative;
    overflow: hidden;
}

.newsletter-signup::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-mixed);
}

.newsletter-signup h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.newsletter-signup p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.input-group {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
    flex-wrap: wrap;
}

.input-group input {
    flex: 1;
    min-width: 250px;
    padding: 12px 16px;
    background: var(--bg-darker);
    border: 2px solid rgba(192, 192, 192, 0.2);
    border-radius: 50px;
    color: var(--text-primary);
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.input-group input:focus {
    outline: none;
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.input-group .btn {
    padding: 12px 20px;
    white-space: nowrap;
    min-width: auto;
}

.form-note {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-align: center;
}

.btn-loader {
    width: 16px;
    height: 16px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    display: none;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.btn.loading .btn-text {
    opacity: 0.7;
}

.btn.loading .btn-loader {
    display: block;
}

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: var(--bg-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition-bounce);
    box-shadow: var(--shadow-glow-orange);
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.6);
}

/* ===== FOOTER ===== */
.footer {
    margin-top: auto;
    padding: 2rem 0;
    border-top: 1px solid rgba(192, 192, 192, 0.1);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-mixed);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-content p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--primary-orange);
    transform: translateY(-2px);
}

/* ===== ANIMATIONS ===== */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }
    
    .logo {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .tech-hub {
        width: 200px;
        height: 200px;
    }
    
    .orbit-element {
        width: 25px;
        height: 25px;
        font-size: 0.8rem;
    }
    
    .content h1 {
        font-size: 2rem;
    }
    
    .description {
        font-size: 1rem;
    }
    
    .action-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .input-group {
        flex-direction: column;
    }
    
    .input-group input {
        min-width: 100%;
        margin-bottom: 0.5rem;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .back-to-top {
        bottom: 1rem;
        right: 1rem;
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0.5rem;
    }
    
    .logo {
        font-size: 1.8rem;
    }
    
    .tech-hub {
        width: 180px;
        height: 180px;
    }
    
    .content h1 {
        font-size: 1.8rem;
    }
    
    .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .newsletter-signup {
        padding: 1.5rem;
    }
    
    .features-preview h2 {
        font-size: 1.6rem;
    }
}

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for keyboard navigation */
button:focus,
input:focus,
a:focus {
    outline: 2px solid var(--primary-orange);
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --bg-dark: #000000;
        --text-primary: #ffffff;
        --primary-orange: #ff8c42;
    }
}

/* ===== PRINT STYLES ===== */
@media print {
    .bg-animation,
    .floating-elements,
    .circuit-overlay,
    .back-to-top,
    .newsletter-signup {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .logo,
    .content h1,
    .features-preview h2 {
        color: black !important;
        -webkit-text-fill-color: black !important;
    }
    
    .btn {
        border: 2px solid black;
        color: black;
        background: white;
    }
}