
@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@400;500;600;700&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
    --bg-base: #0A0D14;
    --bg-surface: #121620;
    --bg-card: #1A202C;
    --bg-card-hover: #222A38;
    
    --accent-primary: #FF5A1F; /* Neon Sunset Orange */
    --accent-secondary: #00E5FF; /* Electric Cyan */
    --accent-tertiary: #FF0055; /* Hot Pink */
    
    --text-main: #F8FAFC;
    --text-muted: #94A3B8;
    --text-dark: #0A0D14;
    
    --border-color: rgba(255, 255, 255, 0.08);
    --border-highlight: rgba(0, 229, 255, 0.3);
    
    --font-heading: 'Rajdhani', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-base);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 1px;
}

h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }

.text-accent { color: var(--accent-primary); }
.text-cyan { color: var(--accent-secondary); }

.container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 var(--spacing-sm); }
.section { padding: var(--spacing-xl) 0; }
.section-sm { padding: var(--spacing-lg) 0; }

.grid { display: grid; gap: var(--spacing-md); }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 400px), 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); }

.site-header {
    background: rgba(10, 13, 20, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-wrapper { display: flex; justify-content: space-between; align-items: center; height: 80px; }
.logo { display: flex; align-items: center; gap: 12px; }
.logo img { height: 48px; width: 48px; object-fit: cover; border-radius: 8px; border: 1px solid var(--accent-primary); }
.logo span { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 700; color: var(--text-main); letter-spacing: 2px; text-transform: uppercase; }

.nav-links { display: flex; gap: 2rem; }
.nav-links a { font-size: 0.9rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; position: relative; padding: 0.5rem 0; }
.nav-links a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--accent-secondary); transition: var(--transition); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a:hover, .nav-links a.active { color: var(--accent-secondary); }

.mobile-toggle { display: none; background: none; border: none; color: var(--text-main); font-size: 1.5rem; cursor: pointer; }

@media (max-width: 992px) {
    .nav-links {
        position: fixed; top: 80px; left: -100%; width: 100%; height: calc(100vh - 80px);
        background: var(--bg-surface); flex-direction: column; align-items: center; justify-content: center;
        gap: 2.5rem; transition: var(--transition);
    }
    .nav-links.is-open { left: 0; }
    .mobile-toggle { display: block; }
}

.hero { position: relative; min-height: 80vh; display: flex; align-items: center; border-bottom: 1px solid var(--border-color); overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.4; }
.hero-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to right, rgba(10,13,20,0.95) 0%, rgba(10,13,20,0.7) 50%, rgba(10,13,20,0.3) 100%); }
@media (max-width: 768px) { .hero-bg::after { background: linear-gradient(to bottom, rgba(10,13,20,0.8) 0%, rgba(10,13,20,0.95) 100%); } }

.hero-content { position: relative; z-index: 1; max-width: 800px; padding: var(--spacing-sm) 0; }
.hero-tagline { color: var(--accent-secondary); font-weight: 600; text-transform: uppercase; letter-spacing: 3px; margin-bottom: 1rem; display: block; }
.hero h1 { margin-bottom: 1.5rem; text-shadow: 0 4px 12px rgba(0,0,0,0.5); }
.hero p { font-size: 1.25rem; color: var(--text-muted); margin-bottom: 2.5rem; max-width: 600px; }

.btn { display: inline-flex; align-items: center; justify-content: center; padding: 1rem 2rem; background: var(--bg-surface); color: var(--text-main); font-family: var(--font-heading); font-weight: 700; font-size: 1.1rem; text-transform: uppercase; letter-spacing: 1px; border: 1px solid var(--border-color); cursor: pointer; transition: var(--transition); border-radius: 4px; }
.btn-primary { background: var(--accent-primary); border-color: var(--accent-primary); color: var(--text-dark); }
.btn-primary:hover { background: #FF7333; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(255, 90, 31, 0.3); }
.btn-outline { border-color: var(--accent-secondary); color: var(--accent-secondary); }
.btn-outline:hover { background: rgba(0, 229, 255, 0.1); transform: translateY(-2px); }

.card { background: var(--bg-surface); border: 1px solid var(--border-color); border-radius: 12px; overflow: hidden; transition: var(--transition); display: flex; flex-direction: column; }
.card:hover { transform: translateY(-4px); border-color: var(--border-highlight); box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5); }
.card-img-wrap { position: relative; aspect-ratio: 16/9; overflow: hidden; }
.card-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.card:hover .card-img-wrap img { transform: scale(1.05); }
.badge { position: absolute; top: 1rem; right: 1rem; background: var(--accent-primary); color: var(--text-dark); padding: 0.25rem 0.75rem; font-family: var(--font-heading); font-weight: 700; font-size: 0.85rem; border-radius: 4px; text-transform: uppercase; }
.card-content { padding: 1.5rem; display: flex; flex-direction: column; flex-grow: 1; }
.card-title { font-size: 1.5rem; margin-bottom: 0.75rem; }
.card-desc { color: var(--text-muted); margin-bottom: 1.5rem; flex-grow: 1; }

.feature-row { display: flex; align-items: center; gap: var(--spacing-lg); margin-bottom: var(--spacing-xl); }
.feature-row:last-child { margin-bottom: 0; }
.feature-row.reverse { flex-direction: row-reverse; }
.feature-img { flex: 1; border-radius: 16px; overflow: hidden; position: relative; }
.feature-img::after { content: ''; position: absolute; inset: 0; border: 1px solid var(--border-color); border-radius: 16px; pointer-events: none; }
.feature-text { flex: 1; }
@media (max-width: 768px) { .feature-row, .feature-row.reverse { flex-direction: column; gap: var(--spacing-md); } }

.benchmark-item { margin-bottom: 1.5rem; }
.benchmark-header { display: flex; justify-content: space-between; margin-bottom: 0.5rem; font-family: var(--font-heading); font-weight: 600; font-size: 1.1rem; text-transform: uppercase; }
.benchmark-bar-bg { width: 100%; height: 12px; background: var(--bg-card); border-radius: 6px; overflow: hidden; }
.benchmark-bar-fill { height: 100%; background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary)); border-radius: 6px; }
.benchmark-bar-fill.red { background: linear-gradient(90deg, #ff416c, #ff4b2b); }
.benchmark-bar-fill.cyan { background: linear-gradient(90deg, #00c6ff, #0072ff); }
.benchmark-bar-fill.green { background: linear-gradient(90deg, #11998e, #38ef7d); }

.specs-table { width: 100%; border-collapse: collapse; margin: 2rem 0; }
.specs-table th, .specs-table td { padding: 1rem; text-align: left; border-bottom: 1px solid var(--border-color); }
.specs-table th { font-family: var(--font-heading); color: var(--accent-secondary); text-transform: uppercase; width: 30%; }
@media (max-width: 600px) { .specs-table th, .specs-table td { display: block; width: 100%; } .specs-table th { border-bottom: none; padding-bottom: 0.25rem; } .specs-table td { margin-bottom: 1rem; padding-top: 0; } }

.site-footer { background: var(--bg-card); padding: var(--spacing-xl) 0 var(--spacing-sm); border-top: 1px solid var(--border-color); margin-top: auto; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: var(--spacing-lg); margin-bottom: var(--spacing-xl); }
.footer-col h4 { color: var(--text-main); margin-bottom: 1.5rem; font-size: 1.5rem; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.75rem; }
.footer-links a { color: var(--text-muted); font-size: 0.95rem; }
.footer-links a:hover { color: var(--accent-secondary); }
.footer-bottom { text-align: center; padding-top: var(--spacing-md); border-top: 1px solid var(--border-color); color: var(--text-muted); font-size: 0.85rem; }

.form-group { margin-bottom: 1.5rem; }
.form-label { display: block; margin-bottom: 0.5rem; font-family: var(--font-heading); text-transform: uppercase; color: var(--text-muted); letter-spacing: 1px; }
.form-control { width: 100%; padding: 1rem; background: var(--bg-base); border: 1px solid var(--border-color); color: var(--text-main); border-radius: 4px; font-family: var(--font-body); transition: var(--transition); }
.form-control:focus { outline: none; border-color: var(--accent-secondary); box-shadow: 0 0 0 2px rgba(0, 229, 255, 0.1); }
textarea.form-control { min-height: 150px; resize: vertical; }

.content-wrapper { max-width: 800px; margin: 0 auto; background: var(--bg-surface); padding: var(--spacing-lg); border-radius: 12px; border: 1px solid var(--border-color); }
.content-wrapper p { margin-bottom: 1.5rem; color: var(--text-muted); font-size: 1.1rem; }
.content-wrapper h2 { margin: 2.5rem 0 1.5rem; color: var(--accent-secondary); }
.content-wrapper h3 { margin: 2rem 0 1rem; }
.content-wrapper ul { margin-bottom: 1.5rem; padding-left: 1.5rem; color: var(--text-muted); }
.content-wrapper li { margin-bottom: 0.5rem; }
@media (max-width: 768px) { .content-wrapper { padding: var(--spacing-md); border: none; background: transparent; } }

.tier-list { display: flex; flex-direction: column; gap: var(--spacing-md); margin-top: 2rem; }
.tier-row { display: flex; background: var(--bg-surface); border: 1px solid var(--border-color); border-radius: 12px; overflow: hidden; }
.tier-label { display: flex; align-items: center; justify-content: center; width: 100px; font-family: var(--font-heading); font-size: 3rem; font-weight: 700; color: var(--bg-base); }
.tier-label.s-tier { background: #FF7F50; }
.tier-label.a-tier { background: #FFD700; }
.tier-label.b-tier { background: #00E5FF; }
.tier-content { padding: 1.5rem; flex-grow: 1; display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1rem; }
.tier-item { background: var(--bg-card); padding: 1rem; border-radius: 8px; border: 1px solid var(--border-color); }
.tier-item h4 { margin-bottom: 0.5rem; color: var(--text-main); }
@media (max-width: 600px) { .tier-row { flex-direction: column; } .tier-label { width: 100%; padding: 1rem 0; } }
