@font-face {
    font-family: 'Rajdhani';
    src: url('rajdhani-light.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: block;
}

/* --- Global Variables and Resets --- */

:root {
    --color-primary: #00FF00; /* Neon Green */
    --color-secondary: #0D0D0D; /* Dark background for dashboard elements */
    --color-tertiary: #111111; /* Slightly lighter dark background */
    --color-text-light: #F0F0F0;
    --color-text-dim: #AAAAAA;
    --border-radius: 8px;
    --font-family: 'Rajdhani', sans-serif;
    --font-weight-bold: 800;
}

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

body {
    background-color: #000000;
    color: var(--color-text-light);
    font-family: var(--font-family);
    line-height: 1.6;
    min-width: 1000px;
}

a {
    color: var(--color-text-light);
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: var(--color-primary);
}

h1, h2, h3, h4 {
    font-weight: var(--font-weight-bold);
    font-family: var(--font-family);
}

h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    text-align: center;
    margin-bottom: 20px;
    letter-spacing: -2px;
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin: 60px 0 30px;
}

/* --- Utility Classes --- */
.subtitle {
    text-align: center;
    color: var(--color-text-dim);
    font-size: 1.1rem;
    margin-bottom: 40px;
}

/* --- Buttons --- */
.btn {
    padding: 10px 25px;
    border: 2px solid var(--color-primary);
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s, color 0.3s;
    font-family: var(--font-family);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background-color: var(--color-primary);
    color: #000000;
    border-color: var(--color-primary);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-primary);
    padding: 8px 20px;
}

.btn-secondary:hover {
    background-color: rgba(0, 255, 0, 0.1);
}

/* Small Dashboard Buttons */
.btn-sm {
    background-color: var(--color-secondary);
    color: var(--color-text-dim);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 6px 15px;
    font-size: 0.8rem;
    font-weight: 400;
    border-radius: 4px;
    margin-left: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.btn-secure {
    background-color: var(--color-primary);
    color: #000000;
    border: none;
    padding: 6px 15px;
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 4px;
    margin-left: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.btn-recalculate {
    background-color: var(--color-secondary);
    color: var(--color-primary);
    border: 1px solid var(--color-primary);
    padding: 5px 10px;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 4px;
    margin-top: 15px;
    text-transform: uppercase;
}


/* --- Header & Navigation --- */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background-color: #000000;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(0, 255, 0, 0.1);
    font-weight: 600;
}

.logo {
    font-size: 2.2rem;
    font-weight: var(--font-weight-bold);
    display: flex;
    align-items: center;
}

.logo-icon { width: 100px; height: 100px; }

/* --- Hero Section --- */
nav a {
    margin: 0 15px;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
}

.hero {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 100px 5% 50px;
    position: relative;
    overflow: hidden;
}

.hero-actions {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-top: 30px;
}

.follow-link {
    color: var(--color-primary);
    font-weight: 600;
    text-decoration: underline;
}

.endorsement {
    color: var(--color-text-dim);
    margin-top: 50px;
    font-size: 0.9rem;
}

/* Placeholder for the complex visual elements (Spectre/Coin) */
.hero-visuals {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    opacity: 0.25;
}

.spectre-visual {
    position: absolute;
    top: 15%;
    right: 5%;
    width: 250px;
    height: 250px;
    background-color: var(--color-primary);
    border-radius: 50%;
    filter: blur(50px) brightness(1.5);
}

.coin-visual {
    position: absolute;
    bottom: 10%;
    left: 10%;
    width: 200px;
    height: 200px;
    background-color: var(--color-primary);
    border-radius: 50%;
    filter: blur(50px) brightness(0.8);
}


/* --- Dashboard Section (Structure) --- */
.dashboard-section-wrapper {
    display: flex;
    gap: 0;
    margin: 0 5%;
    background-color: var(--color-secondary);
    border-radius: 12px;
    border: 1px solid rgba(0, 255, 0, 0.2);
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.1);
    min-height: 600px;
}

/* Left Panel */
.dashboard-sidebar {
    width: 80px;
    background-color: #0A0A0A;
    padding: 20px 0;
    border-right: 1px solid rgba(0, 255, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.sidebar-icon {
    width: 28px;
    height: 28px;
    background-color: var(--color-text-dim);
    border-radius: 4px;
    transition: all 0.2s;
    cursor: pointer;
}

.sidebar-icon.active {
    background-color: transparent;
    background-image: url('spectre-face.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 80%;
    box-shadow: 0 0 15px var(--color-primary);
}


/* Main Dashboard Content Area */
.dashboard-preview {
    flex-grow: 1;
    padding: 25px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Dashboard Header Row */
.dashboard-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 15px;
}

.dashboard-title {
    display: flex;
    align-items: center;
    font-size: 1.3rem;
    font-weight: var(--font-weight-bold);
}

.dashboard-title .logo-icon.small {
    width: 28px;
    height: 28px;
}

.dashboard-title .subtext {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--color-text-dim);
    margin-left: 15px;
}


/* Top Card Row */
.dashboard-top-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.card {
    background-color: #0D0D0D;
    padding: 20px;
    border-radius: var(--border-radius);
    border: 1px solid rgba(0, 255, 0, 0.1);
    flex: 1;
    min-width: 180px;
    text-align: center;
}

.card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.card-number span {
    display: block;
    font-size: 2.8rem;
    font-weight: var(--font-weight-bold);
    color: var(--color-primary);
    line-height: 1;
}

.card-number br + span {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--color-text-dim);
    margin-top: 5px;
}

.rating-circle {
    width: 100px;
    height: 100px;
    margin: 0 auto;
    border: 8px solid var(--color-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.5rem;
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.5);
    border-left-color: var(--color-primary);
    border-bottom-color: var(--color-primary);
    border-right-color: var(--color-primary);
}


/* System Status Panel */
.system-status-panel {
    background-color: var(--color-tertiary);
    padding: 20px;
    border-radius: var(--border-radius);
    margin-bottom: 20px;
}

.system-status-panel h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 15px;
}

.status-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    color: var(--color-text-dim);
    font-size: 0.9rem;
}

.status-grid span {
    display: block;
    color: var(--color-text-light);
    font-weight: 600;
    margin-top: 5px;
}

/* Bottom Panels */
.bottom-panels {
    display: flex;
    gap: 20px;
}

.panel-left, .panel-right {
    background-color: var(--color-tertiary);
    padding: 20px;
    border-radius: var(--border-radius);
}

.panel-left {
    flex: 2;
}

.panel-right {
    flex: 1;
}

.panel-left h4, .panel-right h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 15px;
}

.panel-left ul, .panel-right ul {
    list-style: none;
    font-size: 0.9rem;
}

.panel-left li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.panel-left li:last-child {
    border-bottom: none;
}

.activity-time {
    color: var(--color-text-dim);
    margin-right: 10px;
}
.success {
    color: var(--color-primary);
    margin-right: 10px;
}
.warning {
    color: #FFCC00;
    margin-right: 10px;
}


/* --- Core Modules Grid Section --- */
.core-modules-grid-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 80px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.core-module-item {
    background-color: var(--color-secondary);
    border: 1px solid rgba(0, 255, 0, 0.2);
    border-radius: var(--border-radius);
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 400px;
    position: relative;
    overflow: hidden;
}

.core-module-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(0deg, transparent 24%, rgba(0, 255, 0, 0.05) 25%, rgba(0, 255, 0, 0.05) 26%, transparent 27%, transparent 74%, rgba(0, 255, 0, 0.05) 75%, rgba(0, 255, 0, 0.05) 76%, transparent 77%, transparent), linear-gradient(90deg, transparent 24%, rgba(0, 255, 0, 0.05) 25%, rgba(0, 255, 0, 0.05) 26%, transparent 27%, transparent 74%, rgba(0, 255, 0, 0.05) 75%, rgba(0, 255, 0, 0.05) 76%, transparent 77%, transparent);
    background-size: 50px 50px;
    opacity: 0.1;
    z-index: 0;
}

.core-module-item .module-content {
    position: relative;
    z-index: 1;
}

.core-module-item h3 {
    font-size: 1.8rem;
    color: var(--color-primary);
    margin-bottom: 10px;
}

.core-module-item p {
    color: var(--color-text-dim);
    font-size: 1rem;
    margin-bottom: 20px;
    line-height: 1.4;
}

.core-module-item ul {
    list-style: none;
    padding-left: 0;
    color: var(--color-text-light);
    font-size: 0.95rem;
}

.core-module-item ul li {
    margin-bottom: 8px;
    display: flex;
    align-items: flex-start;
}

.core-module-item ul li .fas {
    color: var(--color-primary);
    margin-right: 10px;
    margin-top: 2px;
    font-size: 1.1rem;
}

/* Module Icons */
.module-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
    align-self: flex-end;
    position: relative;
    right: -10px;
    bottom: -10px;
    opacity: 0.8;
}

.module-mask .module-icon {
    background-color: #00FFFF;
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.6);
}

.module-scrub .module-icon {
    background-color: #FF8C00;
    box-shadow: 0 0 30px rgba(255, 140, 0, 0.6);
}

.module-relay .module-icon {
    background-color: #9400D3;
    box-shadow: 0 0 30px rgba(148, 0, 211, 0.6);
}




/* --- Comparison Section --- */
.comparison-section {
    padding: 80px 5%;
    background-color: #050505;
    border-top: 1px solid rgba(0, 255, 0, 0.1);
    border-bottom: 1px solid rgba(0, 255, 0, 0.1);
    text-align: center;
}

.comparison-section h2 {
    font-size: 2.6rem;
    margin-bottom: 10px;
}

.comparison-section .subtitle {
    color: var(--color-text-dim);
    font-size: 0.95rem;
    margin-bottom: 40px;
}

.comparison-table {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
    background: radial-gradient(circle at top, rgba(0,255,0,0.1), #050505 55%);
    box-shadow: 0 0 40px rgba(0, 255, 0, 0.1);
    border: 1px solid rgba(0, 255, 0, 0.3);
}

.table-header,
.table-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    padding: 14px 24px;
    align-items: center;
}

.table-header {
    background: rgba(0, 0, 0, 0.8);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    color: #00ff40;
    border-bottom: 1px solid rgba(0, 255, 0, 0.2);
}

.table-row {
    font-size: 0.9rem;
    color: #e4e4e4;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 20, 0, 0.7));
    border-top: 1px solid rgba(0, 255, 0, 0.04);
}

.table-row:nth-child(even) {
    background: linear-gradient(to right, rgba(0, 0, 0, 0.85), rgba(0, 25, 0, 0.85));
}

.table-row div:first-child {
    text-align: left;
}

/* Icon cells */

.check-cell,
.x-cell {
    display: flex;
    justify-content: center;
    align-items: center;
}

.icon-check,
.icon-x {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    font-size: 13px;
}

/* Neon green check */
.icon-check {
    background: radial-gradient(circle at 30% 30%, #00ff80, #00ff00 60%, #008800 100%);
    box-shadow: 0 0 10px rgba(0, 255, 0, 0.9);
    color: #021502;
}

.icon-check::before {
    content: "✓";
    position: relative;
    top: -1px;
}

/* Red X */
.icon-x {
    background: radial-gradient(circle at 30% 30%, #ff7360, #ff0033 60%, #800010 100%);
    box-shadow: 0 0 10px rgba(255, 0, 60, 0.9);
    color: #190003;
}

.icon-x::before {
    content: "✕";
    position: relative;
    top: -1px;
}

/* Bottom buttons */

.comparison-buttons {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 35px;
    font-family: 'Rajdhani', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1.6px;
}

/* Coming Soon! with white corner brackets */
.btn-comingsoon {
    position: relative;
    padding: 11px 32px;
    background: #050505;
    color: #e6e6e6;
    border: none;
    font-size: 13px;
    overflow: visible;
}

.btn-comingsoon::before,
.btn-comingsoon::after {
    content: "";
    position: absolute;
    width: 14px;
    height: 14px;
    border: 2px solid #ffffff;
}

/* top-left + bottom-right corners */
.btn-comingsoon::before {
    left: -6px;
    top: -6px;
    border-right: 0;
    border-bottom: 0;
}
.btn-comingsoon::after {
    right: -6px;
    bottom: -6px;
    border-left: 0;
    border-top: 0;
}

.btn-comingsoon:hover {
    color: #ffffff;
}

/* SEE DOCS -> thin outlined button */
.btn-docs {
    padding: 11px 32px;
    border: 1px solid #666666;
    background: transparent;
    color: #e6e6e6;
    font-size: 13px;
}

.btn-docs:hover {
    border-color: #ffffff;
    color: #ffffff;
}
/* --- Footer --- */
footer {
    padding: 50px 5%;
    text-align: center;
    background-color: #000000;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 80px;
    margin-bottom: 40px;
    text-align: left;
}

.footer-links h4 {
    font-size: 1.1rem;
    color: var(--color-primary);
    margin-bottom: 15px;
}

.footer-links a {
    display: block;
    color: var(--color-text-dim);
    margin-bottom: 8px;
    font-size: 0.95rem;
}

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

.copyright {
    color: var(--color-text-dim);
    font-size: 0.9rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 20px;
}



/* --- Spectre Modules (Ghost-style layout) --- */

.spectre-modules {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 5%;
    display: grid;
    gap: 40px;
}

/* Card container */
.spectre-module {
    display: grid;
    grid-template-columns: 1.3fr 1fr; /* text : orb */
    background: radial-gradient(circle at top left, rgba(0,255,0,0.06), transparent 55%),
                #050505;
    border-radius: 18px;
    border: 1px solid rgba(0,255,0,0.18);
    overflow: hidden;
    position: relative;
}

/* Subtle grid background */
.spectre-module::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(0deg, transparent 24%, rgba(255,255,255,0.03) 25%, rgba(255,255,255,0.03) 26%, transparent 27%, transparent 74%, rgba(255,255,255,0.03) 75%, rgba(255,255,255,0.03) 76%, transparent 77%, transparent),
        linear-gradient(90deg, transparent 24%, rgba(255,255,255,0.03) 25%, rgba(255,255,255,0.03) 26%, transparent 27%, transparent 74%, rgba(255,255,255,0.03) 75%, rgba(255,255,255,0.03) 76%, transparent 77%, transparent);
    background-size: 40px 40px;
    opacity: 0.6;
    pointer-events: none;
}

/* Left side: text */
.spectre-module .module-left {
    position: relative;
    z-index: 1;
    padding: 40px 40px 40px 40px;
}

.spectre-module h3 {
    font-size: 1.9rem;
    margin-bottom: 14px;
    color: var(--color-primary);
}

.spectre-module p {
    color: var(--color-text-dim);
    font-size: 0.95rem;
    max-width: 420px;
    margin-bottom: 22px;
}

.spectre-module ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.spectre-module li {
    display: flex;
    align-items: flex-start;
    font-size: 0.95rem;
    margin-bottom: 10px;
}


/* Square check boxes */
/* Clean single neon checkbox used for the bullet points */
.check-box {
    width: 16px;
    height: 16px;
    border-radius: 3px;
    border: 1px solid var(--color-primary);
    background: rgba(0,0,0,0.6);
    box-shadow: 0 0 4px rgba(0,255,0,0.6);
    margin-right: 10px;
    margin-top: 3px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Single tick drawn with borders (no extra glyphs) */
.check-box::before {
    content: "";
    width: 7px;
    height: 4px;
    border-left: 2px solid var(--color-primary);
    border-bottom: 2px solid var(--color-primary);
    transform: rotate(-45deg);
    transform-origin: center;
}
/* Right side: ghost icon area */
.spectre-module .module-right {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

/* Each module gets its own ghost image */
.spectre-mask .module-right {
    background: url("spectre-mask.png") no-repeat center;
    background-size: 55%;
    min-height: 220px;
}

.spectre-scrub .module-right {
    background: url("spectre-scrub.png") no-repeat center;
    background-size: 55%;
    min-height: 220px;
}

.spectre-relay .module-right {
    background: url("spectre-relay.png") no-repeat center;
    background-size: 55%;
    min-height: 220px;
}

/* --- Static Dashboard Screenshot Section --- */
.dashboard-image-section {
    padding: 60px 5% 40px;
    display: flex;
    justify-content: center;
}

.dashboard-image-wrapper {
    max-width: 1400px;
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 0 40px rgba(0, 255, 0, 0.25);
    border: 1px solid rgba(0, 255, 0, 0.35);
}

.dashboard-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}


/* === HEADER LAYOUT OVERRIDES (center nav + blended logo) === */

header {
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: flex-start; /* logo on left, buttons on right */
}

/* center the nav relative to full viewport */
header nav {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
}

/* make sure header actions pin to the right */
.header-actions {
    margin-left: auto;
    display: flex;
    gap: 12px;
}

/* blend logo with background: neon tile with face inside */
.logo {
    display: flex;
    align-items: center;
    font-size: 2.2rem;
}

.logo-icon { width: 100px; height: 100px; }


/* === LOGO CLEANUP: no glow tile, just the raw face image === */
.logo-icon { width: 100px; height: 100px; }


/* === HEADER LOGO + TEXT BALANCE ADJUST === */
.logo-icon { width: 100px; height: 100px; }

.logo {
    font-size: 1.6rem !important;
    font-weight: 800;
}


/* === COMPARISON ICON PERFECT CENTERING OVERRIDE === */
.comparison-table .table-row {
    display: grid;
    grid-template-columns: 2.2fr 0.9fr 0.9fr;
    align-items: center;
}

.check-cell,
.x-cell {
    display: flex;
    justify-content: center;
    align-items: center;
}

.icon-check,
.icon-x {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
}

/* neon green check */
.icon-check {
    background: radial-gradient(circle at 30% 30%, #00ff80, #00ff00 60%, #008800 100%);
    box-shadow: 0 0 9px rgba(0, 255, 0, 0.9);
    color: #021502;
}

.icon-check::before {
    content: "✓";
    font-size: 13px;
    position: relative;
    top: -1px;
}

/* neon red X */
.icon-x {
    background: radial-gradient(circle at 30% 30%, #ff7a6b, #ff0033 60%, #8a0010 100%);
    box-shadow: 0 0 9px rgba(255, 0, 60, 0.9);
    color: #190003;
}

.icon-x::before {
    content: "✕";
    font-size: 13px;
    position: relative;
    top: -1px;
}

/* === NEON INTERACTIVE BUTTONS UNDER TABLE === */

.comparison-buttons {
    display: flex;
    justify-content: center;
    gap: 26px;
    margin-top: 40px;
}

/* Coming Soon neon pill */
.btn-comingsoon {
    position: relative;
    padding: 11px 34px;
    background: radial-gradient(circle at 0 0, rgba(0,255,0,0.25), #020602);
    color: #eaffea;
    border: 1px solid rgba(0, 255, 0, 0.6);
    border-radius: 999px;
    font-size: 13px;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    overflow: hidden;
}

.btn-comingsoon::before,
.btn-comingsoon::after {
    display: none;
}

.btn-comingsoon:hover {
    box-shadow: 0 0 18px rgba(0,255,0,0.9);
    border-color: #00ff66;
    transform: translateY(-1px);
}

/* See Docs button neon outline */
.btn-docs {
    padding: 11px 34px;
    border-radius: 999px;
    border: 1px solid rgba(0, 255, 0, 0.7);
    background: transparent;
    color: #eaffea;
    font-size: 13px;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    transition: all 0.18s ease-out;
}

.btn-docs:hover {
    background: #00ff2a;
    color: #020602;
    box-shadow: 0 0 18px rgba(0,255,0,0.9);
    transform: translateY(-1px);
}


/* === SPECTRE BRACKET BUTTONS (accurate to reference) === */

.comparison-buttons {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
}

.bracket-btn {
    position: relative;
    padding: 11px 34px;
    background: #0A0A0A;
    color: #FFFFFF;
    border: 1px solid rgba(255,255,255,0.35);
    font-family: 'Rajdhani', sans-serif;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.3px;
    cursor: pointer;
    transition: 0.25s ease;
}

/* Corner brackets */
.bracket-btn::before,
.bracket-btn::after {
    content: "";
    position: absolute;
    width: 14px;
    height: 14px;
    border: 2px solid #FFFFFF;
}

/* Top-left bracket */
.bracket-btn::before {
    top: -6px;
    left: -6px;
    border-right: 0;
    border-bottom: 0;
}

/* Bottom-right bracket */
.bracket-btn::after {
    bottom: -6px;
    right: -6px;
    border-left: 0;
    border-top: 0;
}

/* Hover state */
.bracket-btn:hover {
    background: #111111;
    border-color: #FFFFFF;
    transform: translateY(-1px);
}

.logo-icon { width: 100px; height: 100px; }

/* X icon link */
.x-icon-link img {
    width: 28px;
    height: 28px;
    display: block;
    filter: brightness(0) invert(1);
    transition: opacity 0.15s ease, transform 0.15s ease;
}
.x-icon-link img:hover {
    opacity: 0.8;
    transform: translateY(-1px);
}

/* NAV BUTTON REPLACEMENT FIX */
.header-links {
    display: flex;
    gap: 24px;
    align-items: center;
    justify-content: center;
}
.header-links .nav-btn {
    font-family: 'Rajdhani', sans-serif !important;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    color: #ffffff;
    text-transform: uppercase;
    display: inline-block;
    padding: 6px 14px;
    border: 1px solid #00ff00;
    border-radius: 6px;
    transition: 0.2s;
}
.header-links .nav-btn:hover {
    background: #00ff00;
    color: #000000;
}

/* X Icon Fix */
.x-icon {
    width: 26px;
    height: 26px;
    object-fit: contain;
    display: block;
}



/* HEADER LAYOUT FIX */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 5%;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-center {
    display: flex;
    align-items: center;
    gap: 24px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 18px;
}

.nav-btn {
    font-family: 'Rajdhani', sans-serif !important;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 16px;
    border: 1px solid #00ff00;
    border-radius: 6px;
    color: #ffffff;
    transition: 0.2s ease;
}

.nav-btn:hover {
    background: #00ff00;
    color: #000;
}


.hero-buttons.single-button {
    display: flex;
    justify-content: center;
    margin-top: 25px;
}

.hero-buttons.single-button .bracket-btn {
    margin: 0 auto;
}


/* HEADER GRID FIX FOR PERFECT CENTERING */
header {
    display: grid !important;
    grid-template-columns: 1fr auto 1fr !important;
    align-items: center !important;
    padding: 22px 5% !important;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-center {
    display: flex;
    justify-content: center !important;
    align-items: center;
    gap: 24px;
}

.header-right {
    display: flex;
    justify-content: flex-end !important;
    align-items: center;
    gap: 18px;
}
