@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:ital,wght@0,100..800;1,100..800&family=Space+Grotesk:wght@300..700&family=Inter:wght@100..900&display=swap');@import url('https://fonts.googleapis.com/css2?family=Frank+Ruhl+Libre:wght@300..900&family=Roboto+Slab:wght@100..900&family=Work+Sans:ital,wght@0,100..900&display=swap');@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');/* Global Reset & Cyberpunk / Observability Design Tokens */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    /* Core Obsidian Palette */
    --bg-obsidian: #090a0f;
    --bg-panel: #0e1118;
    --bg-elevated: #141824;
    --bg-surface: rgba(20, 24, 36, 0.85);
    
    /* Primary Precision Accents */
    --accent-cyan: #00f0ff;
    --accent-cyan-dim: rgba(0, 240, 255, 0.15);
    --accent-cyan-glow: rgba(0, 240, 255, 0.35);
    
    /* Secondary Telemetry Accents */
    --accent-magenta: #ff007f;
    --accent-magenta-dim: rgba(255, 0, 127, 0.15);
    --accent-violet: #a855f7;
    --accent-violet-dim: rgba(168, 85, 247, 0.15);
    
    /* Diagnostics / Status States */
    --status-lime: #10b981;
    --status-lime-dim: rgba(16, 185, 129, 0.15);
    --status-amber: #f59e0b;
    --status-amber-dim: rgba(245, 158, 11, 0.15);
    --status-crimson: #ef4444;
    --status-crimson-dim: rgba(239, 68, 68, 0.15);
    
    /* Text Typography Levels */
    --text-primary: #f1f5f9;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    --text-dark: #090a0f;
    
    /* Structural Borders & Shadows */
    --border-tech: rgba(0, 240, 255, 0.25);
    --border-muted: rgba(255, 255, 255, 0.08);
    --border-active: rgba(0, 240, 255, 0.6);
    --shadow-cyan: 0 0 25px rgba(0, 240, 255, 0.2);
    --shadow-magenta: 0 0 25px rgba(255, 0, 127, 0.2);
    --shadow-elevated: 0 12px 36px rgba(0, 0, 0, 0.65);
    
    /* Typography Font Stacks */
    --font-heading: 'Space Grotesk', 'Syne', sans-serif;
    --font-mono: 'JetBrains Mono', 'Fira Code', monospace;
    --font-body: 'Inter', sans-serif;
}

/* Custom Selection & Scrollbar */
::selection {
    background: var(--accent-cyan);
    color: var(--bg-obsidian);
}

::-moz-selection {
    background: var(--accent-cyan);
    color: var(--bg-obsidian);
}

::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: var(--bg-obsidian);
}

::-webkit-scrollbar-thumb {
    background: #1e293b;
    border-radius: 2px;
    border: 1px solid var(--border-muted);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-cyan);
    box-shadow: var(--shadow-cyan);
}

html {
    scrollbar-width: thin;
    scrollbar-color: #1e293b var(--bg-obsidian);
}

/* --- Global Technical Utility Classes --- */
.tech-panel {
    background: var(--bg-panel);
    border: 1px solid var(--border-muted);
    border-radius: 6px;
    position: relative;
    overflow: hidden;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.tech-panel:hover {
    border-color: var(--border-tech);
    box-shadow: var(--shadow-cyan);
}

/* Technical corner markers for cyberpunk panels */
.tech-panel::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 8px;
    height: 8px;
    border-top: 1px solid var(--accent-cyan);
    border-right: 1px solid var(--accent-cyan);
    opacity: 0.6;
    pointer-events: none;
}

.glow-border {
    border: 1px solid var(--accent-cyan) !important;
    box-shadow: var(--shadow-cyan) !important;
}

.mono-font {
    font-family: var(--font-mono) !important;
}

.heading-font {
    font-family: var(--font-heading) !important;
}

.terminal-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.25rem 0.65rem;
    background: var(--bg-elevated);
    border: 1px solid var(--border-muted);
    border-radius: 4px;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--accent-cyan);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.terminal-badge.magenta {
    color: var(--accent-magenta);
    border-color: rgba(255, 0, 127, 0.3);
    background: var(--accent-magenta-dim);
}

.terminal-badge.lime {
    color: var(--status-lime);
    border-color: rgba(16, 185, 129, 0.3);
    background: var(--status-lime-dim);
}

.scanline-overlay {
    background: linear-gradient(
        to bottom,
        rgba(255,255,255,0),
        rgba(255,255,255,0) 50%,
        rgba(0, 240, 255, 0.03) 50%,
        rgba(0, 240, 255, 0.03)
    );
    background-size: 100% 4px;
}

:root {
  --bg: #090a0f;
  --primary-text: #00f0ff;
  --secondary-text: #f1f5f9;
}

body {
  background-color: #090a0f;
  background-image: 
    radial-gradient(circle at 50% 0%, rgba(0, 240, 255, 0.07) 0%, transparent 60%),
    radial-gradient(circle at 85% 30%, rgba(255, 0, 127, 0.05) 0%, transparent 50%),
    radial-gradient(circle, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 100% 100%, 100% 100%, 28px 28px;
  background-attachment: fixed;
  color: #f1f5f9;
  font-family: "Inter", sans-serif;
  scroll-behavior: smooth;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

/* Global Typography Styles */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Space Grotesk', sans-serif;
  color: #f1f5f9;
  letter-spacing: -0.02em;
  font-weight: 700;
}

code, pre, .font-mono {
  font-family: 'JetBrains Mono', monospace;
}

a {
  color: #00f0ff;
  text-decoration: none;
  transition: all 0.2s ease;
}

a:hover {
  text-shadow: 0 0 12px rgba(0, 240, 255, 0.5);
}

::selection {
  background-color: #00f0ff;
  color: #090a0f;
}

::-moz-selection {
  background-color: #00f0ff;
  color: #090a0f;
}

.frank-ruhl-libre {
  font-family: "Frank Ruhl Libre", serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
}
#tsparticles {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
/* Navbar */
.navbar {
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 0 40px;
}
.navbar .title {
  font-weight: 500;
  letter-spacing: 0.5px;
}
.logo-nav {
  height: 55px;
  width: auto;
  max-width: 180px;
  display: block;
  object-fit: contain;
  position: absolute;
  left: 40px;
  margin-top: 10px;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.2s ease;
}
.logo-nav:hover {
  transform: translateY(-50%) scale(1.02);
}
.nav-links {
  display: flex;
  gap: 200px;
  align-items: center;
  top: 50%;
  margin-top: 30px;
}
.link {
  color: #60A5FA;
  text-shadow: 0 0 24px rgba(96, 165, 250, 0.18);
  text-decoration: none;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.mask {
  position: relative;
  overflow: hidden;
  display: block;
  height: 20px;
}
.link-container {
  position: relative;
  transition: transform 0.4s ease;
}
.title {
  display: block;
  font-size: 20px;
  line-height: 20px;
  transition: transform 0.4s ease;
}
.link-title1 {
  font-size: 20px;
  transform-origin: right center;
}
.link-title2 {
  transform-origin: left center;
  transform: rotate(0deg);
}
.pricing {
  font-size: 20px;
  text-decoration: none;
  color: #60A5FA;
  display: block;
  line-height: 20px;
  transition: transform 0.4s ease;
}
.pricing-title1 {
  transform-origin: right center;
}
.pricing-title2 {
  transform-origin: left center;
  transform: rotate(0deg);
}
.pricing:hover .pricing-container {
  transform: translateY(-20px);
}
.pricing-mask {
  position: relative;
  overflow: hidden;
  display: block;
  height: 20px;
}
.pricing-container {
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease;
}
.about {
  font-size: 20px;
  text-decoration: none;
  color: #60A5FA;
  display: block;
  line-height: 20px;
  transition: transform 0.4s ease;
}
.about-title1 {
  transform-origin: right center;
}
.about-title2 {
  transform-origin: left center;
  transform: rotate(0deg);
}
.about:hover .about-container {
  transform: translateY(-20px);
}
.about-mask {
  position: relative;
  overflow: hidden;
  display: block;
  height: 20px;
}
.about-container {
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease;
}
/* Hover Action */
.link:hover .link-container {
  transform: translateY(-20px);
}
.link:hover .link-title1 {
  transform: rotate(0deg);
}
.link:hover .link-title2 {
  transform: rotate(0deg);
}
/* Cyber-Hero Split-Screen Command Center */
.cyber-hero-section {
    position: relative;
    min-height: 100vh;
    padding-top: 6.5rem;
    padding-bottom: 5rem;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--bg-obsidian);
}
.hero-grid-overlay {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(to right, rgba(0, 240, 255, 0.03) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(0, 240, 255, 0.03) 1px, transparent 1px);
    background-size: 32px 32px;
    mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
    pointer-events: none;
    z-index: 0;
}
.hero-glow-cyan {
    position: absolute;
    top: 15%;
    left: 10%;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(0, 240, 255, 0.12) 0%, transparent 70%);
    filter: blur(60px);
    pointer-events: none;
    z-index: 0;
}
.hero-glow-magenta {
    position: absolute;
    top: 30%;
    right: 5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 0, 127, 0.1) 0%, transparent 70%);
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
}
.hero-split-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 4rem;
    align-items: center;
}
/* Left Panel: Command Editorial */
.hero-command-panel {
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
}
.hero-system-status {
    display: inline-flex;
    align-items: center;
    gap: 1.2rem;
}
.system-ping {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.72rem;
    color: var(--status-lime);
    letter-spacing: 0.05em;
}
.ping-indicator {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--status-lime);
    box-shadow: 0 0 10px var(--status-lime);
    display: inline-block;
    animation: pingPulse 1.8s infinite ease-out;
}
@keyframes pingPulse {
    0% { transform: scale(0.9); opacity: 1; }
    50% { transform: scale(1.6); opacity: 0.4; }
    100% { transform: scale(0.9); opacity: 1; }
}
.hero-editorial-headline {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 4.8vw, 4.25rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: var(--text-primary);
}
.hero-technical-subtext {
    font-size: 1.05rem;
    line-height: 1.65;
    color: var(--text-secondary);
    max-width: 580px;
}
/* Command Form Panel */
.hero-command-form {
    padding: 0;
    overflow: hidden;
    max-width: 620px;
    margin-top: 0.5rem;
    border: 1px solid var(--accent-cyan-dim);
    box-shadow: 0 0 25px rgba(0, 240, 255, 0.08);
}
.command-input-header {
    background: var(--bg-panel);
    padding: 0.5rem 1rem;
    border-bottom: 1px solid var(--border-muted);
    font-size: 0.72rem;
    color: var(--text-muted);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.status-badge-mini {
    background: rgba(16, 185, 129, 0.15);
    color: var(--status-lime);
    padding: 0.1rem 0.4rem;
    border-radius: 3px;
    font-size: 0.65rem;
}
.command-input-body {
    display: flex;
    align-items: center;
    background: var(--bg-obsidian);
    padding: 0.5rem 0.5rem 0.5rem 1rem;
    gap: 0.6rem;
}
.command-prompt {
    color: var(--accent-cyan);
    font-weight: 700;
    font-size: 1.1rem;
}
.command-input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: var(--text-primary);
    font-size: 0.88rem;
}
.command-input::placeholder {
    color: var(--text-muted);
}
.hero-execute-btn {
    background: var(--accent-cyan);
    color: var(--bg-obsidian);
    border: none;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    font-weight: 700;
    padding: 0.7rem 1.3rem;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}
.hero-execute-btn:hover {
    box-shadow: var(--shadow-cyan);
    transform: scale(1.02);
}
/* Metrics Strip */
.hero-telemetry-metrics {
    display: flex;
    gap: 2.5rem;
    margin-top: 0.8rem;
}
.metric-pill {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}
.metric-num {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}
.metric-lbl {
    font-size: 0.65rem;
    color: var(--accent-cyan);
    letter-spacing: 0.08em;
}
/* Right Panel: Interactive Diagnostics Console */
.hero-diagnostics-console {
    position: relative;
    width: 100%;
}
.console-wrapper {
    position: relative;
    background: rgba(14, 17, 24, 0.95);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
}
.console-header {
    background: #0b0d13;
    padding: 0.65rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-muted);
    font-size: 0.72rem;
    color: var(--text-secondary);
}
.console-window-actions {
    display: flex;
    gap: 0.4rem;
}
.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
}
.dot-red { background: #ef4444; }
.dot-yellow { background: #f59e0b; }
.dot-green { background: #10b981; }
.console-live-tag {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--accent-cyan);
    font-size: 0.68rem;
}
.pulse-circle {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent-cyan);
    box-shadow: 0 0 8px var(--accent-cyan);
    animation: blinkCircle 1s infinite alternate;
}
@keyframes blinkCircle {
    from { opacity: 1; }
    to { opacity: 0.3; }
}
.console-tabs {
    display: flex;
    background: rgba(9, 10, 15, 0.8);
    border-bottom: 1px solid var(--border-muted);
}
.console-tab {
    flex: 1;
    background: transparent;
    border: none;
    border-right: 1px solid var(--border-muted);
    padding: 0.65rem 0.5rem;
    color: var(--text-muted);
    font-family: var(--font-mono);
    font-size: 0.72rem;
    cursor: pointer;
    transition: all 0.2s ease;
}
.console-tab:last-child {
    border-right: none;
}
.console-tab:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.02);
}
.console-tab.active {
    color: var(--accent-cyan);
    background: rgba(0, 240, 255, 0.06);
    border-bottom: 2px solid var(--accent-cyan);
}
.console-body {
    padding: 1.4rem;
    min-height: 280px;
    font-size: 0.82rem;
    position: relative;
    z-index: 2;
}
/* Tab 1: Telemetry Pane */
.scan-progress-strip {
    background: var(--bg-obsidian);
    padding: 0.9rem 1rem;
    border-radius: 6px;
    border: 1px solid var(--border-muted);
    margin-bottom: 1.25rem;
}
.progress-label {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}
.score-highlight {
    color: var(--status-lime);
    font-weight: 700;
}
.progress-bar-bg {
    height: 6px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 3px;
    overflow: hidden;
}
.progress-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-cyan), var(--status-lime));
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.5);
    transition: width 0.5s ease;
}
.console-log-feed {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-bottom: 1.25rem;
    font-size: 0.76rem;
}
.log-item {
    display: flex;
    gap: 0.6rem;
    padding: 0.35rem 0.5rem;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.02);
}
.log-time {
    color: var(--text-muted);
}
.log-item.success .log-msg { color: var(--status-lime); }
.log-item.warn .log-msg { color: #fbbf24; }
.log-item.info .log-msg { color: var(--accent-cyan); }
.console-radar-preview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    border-top: 1px solid var(--border-muted);
    padding-top: 1rem;
}
.radar-metric {
    display: flex;
    justify-content: space-between;
    background: rgba(9, 10, 15, 0.5);
    padding: 0.5rem 0.75rem;
    border-radius: 4px;
    font-size: 0.74rem;
}
.radar-lbl { color: var(--text-secondary); }
.radar-val { color: var(--accent-cyan); font-weight: 700; }
/* Tab 2: Personas Pane */
.personas-pane {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.persona-sim-card {
    background: var(--bg-obsidian);
    border: 1px solid var(--border-muted);
    border-radius: 6px;
    padding: 1rem;
}
.persona-sim-card.active-persona {
    border-color: var(--accent-cyan);
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.08);
}
.sim-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.6rem;
}
.sim-role {
    font-weight: 700;
    color: var(--text-primary);
    font-size: 0.8rem;
}
.sim-comment {
    font-size: 0.78rem;
    line-height: 1.5;
    color: var(--text-secondary);
    font-style: italic;
}
/* Tab 3: DOM Pane */
.code-stream {
    background: #07080c;
    padding: 1rem;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.75rem;
    line-height: 1.7;
    overflow-x: auto;
    margin-bottom: 1rem;
}
.code-key { color: var(--accent-violet); font-weight: 600; }
.code-attr { color: #93c5fd; }
.code-val { color: var(--status-lime); }
.indent-1 { padding-left: 1.2rem; }
.indent-2 { padding-left: 2.4rem; }
.dom-footer-status {
    display: flex;
    justify-content: space-between;
    background: var(--bg-obsidian);
    padding: 0.65rem 1rem;
    border-radius: 4px;
    border: 1px solid var(--border-muted);
    font-size: 0.74rem;
}
.status-lime { color: var(--status-lime); font-weight: 700; }
/* Scanline and Footer Bar */
.scanline-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(255,255,255,0), rgba(255,255,255,0) 50%, rgba(0, 240, 255, 0.03) 50%, rgba(0, 240, 255, 0.03));
    background-size: 100% 4px;
    pointer-events: none;
    z-index: 1;
}
.console-footer-bar {
    background: #0b0d13;
    padding: 0.5rem 1rem;
    border-top: 1px solid var(--border-muted);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.68rem;
    color: var(--text-muted);
}
.live-blink {
    color: var(--accent-cyan);
    animation: blinkCircle 0.8s infinite alternate;
}
/* Responsive Rules */
@media screen and (max-width: 1024px) {
    .hero-split-container {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }

    .hero-command-panel {
        align-items: center;
        text-align: center;
    }

    .hero-technical-subtext {
        max-width: 100%;
    }

    .hero-command-form {
        width: 100%;
    }
}
@media screen and (max-width: 600px) {
    .command-input-body {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-execute-btn {
        width: 100%;
        text-align: center;
    }

    .hero-telemetry-metrics {
        flex-direction: column;
        gap: 1.2rem;
        align-items: center;
    }

    .console-tabs {
        flex-direction: column;
    }
}
/* Cyberpunk Resource Allocation & Pricing Section */
.cyber-pricing-section {
    position: relative;
    padding: 6rem 0;
    background: var(--bg-obsidian);
    border-top: 1px solid var(--border-tech);
    overflow: hidden;
}

.pricing-terminal-header {
    max-width: 780px;
    margin: 0 auto 3.5rem auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.billing-toggle-strip {
    display: inline-flex;
    align-items: center;
    gap: 1.2rem;
    background: rgba(14, 17, 24, 0.9);
    padding: 0.6rem 1.4rem;
    border-radius: 99px;
    border: 1px solid var(--border-muted);
    font-size: 0.74rem;
    margin-top: 1rem;
}

.active-label {
    color: var(--text-primary);
    font-weight: 700;
}

.discount-tag {
    color: var(--status-lime);
    font-size: 0.68rem;
}

/* Switch */
.cyber-switch {
    width: 44px;
    height: 22px;
    background: #11141d;
    border: 1px solid var(--accent-cyan);
    border-radius: 11px;
    position: relative;
    cursor: pointer;
    transition: all 0.25s ease;
    padding: 0;
}

.switch-thumb {
    position: absolute;
    top: 2px;
    left: 2px;
    width: 16px;
    height: 16px;
    background: var(--accent-cyan);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--accent-cyan);
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.cyber-switch.annual .switch-thumb {
    transform: translateX(22px);
    background: var(--status-lime);
    box-shadow: 0 0 8px var(--status-lime);
}

.cyber-switch.annual {
    border-color: var(--status-lime);
}

/* Grid */
.cyber-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3.5rem;
    align-items: stretch;
}

.cyber-tier-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 2rem;
    border-radius: 8px;
    position: relative;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.cyber-tier-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
}

.cyber-tier-card.is-featured {
    border-color: var(--accent-cyan);
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.12);
    transform: scale(1.03);
}

.cyber-tier-card.is-featured:hover {
    transform: scale(1.03) translateY(-5px);
}

.featured-banner {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-cyan);
    color: var(--bg-obsidian);
    font-size: 0.65rem;
    font-weight: 700;
    padding: 0.2rem 0.8rem;
    border-radius: 3px;
    letter-spacing: 0.1em;
}

.tier-header {
    margin-bottom: 1.5rem;
}

.tier-code {
    font-size: 0.72rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.tier-name {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.tier-price-box {
    display: flex;
    align-items: baseline;
    gap: 0.4rem;
}

.tier-price {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
}

.tier-period {
    font-size: 0.72rem;
    color: var(--text-secondary);
}

/* Command Trigger Box */
.tier-command-trigger {
    background: #080a0f;
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 0.65rem 0.8rem;
    border-radius: 4px;
    font-size: 0.72rem;
    color: var(--text-muted);
    margin-bottom: 1.8rem;
    word-break: break-all;
}

.tier-command-trigger.active {
    border-color: rgba(0, 240, 255, 0.3);
    color: var(--accent-cyan);
}

.tier-command-trigger.super {
    border-color: rgba(255, 0, 127, 0.3);
    color: var(--accent-magenta);
}

/* Specs List */
.tier-specs {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    font-size: 0.8rem;
    color: var(--text-primary);
    flex-grow: 1;
}

.tier-specs li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.tier-specs li.locked {
    color: var(--text-muted);
    text-decoration: line-through;
}

.spec-bullet {
    font-weight: 700;
}

/* Buttons */
.cyber-tier-btn {
    display: block;
    text-align: center;
    padding: 0.85rem 1rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.78rem;
    transition: all 0.25s ease;
}

.cyber-tier-btn.outline {
    background: transparent;
    border: 1px solid var(--border-muted);
    color: var(--text-secondary);
}

.cyber-tier-btn.outline:hover {
    border-color: var(--text-primary);
    color: var(--text-primary);
}

.cyber-tier-btn.primary {
    background: var(--accent-cyan);
    color: var(--bg-obsidian);
}

.cyber-tier-btn.primary:hover {
    box-shadow: var(--shadow-cyan);
    transform: translateY(-2px);
}

.cyber-tier-btn.magenta {
    background: transparent;
    border: 1px solid var(--accent-magenta);
    color: var(--accent-magenta);
}

.cyber-tier-btn.magenta:hover {
    background: var(--accent-magenta);
    color: var(--bg-obsidian);
    box-shadow: var(--shadow-magenta);
}

/* Explore Bar */
.pricing-explore-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    padding: 1.2rem;
    background: rgba(14, 17, 24, 0.8);
    border-radius: 6px;
    border: 1px dashed var(--border-muted);
    font-size: 0.76rem;
    color: var(--text-secondary);
    text-align: center;
    flex-wrap: wrap;
}

.cyber-explore-link {
    color: var(--accent-cyan);
    text-decoration: none;
    font-weight: 700;
    transition: all 0.2s ease;
}

.cyber-explore-link:hover {
    color: #80efff;
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.6);
}

/* Responsive */
@media screen and (max-width: 1024px) {
    .cyber-pricing-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .cyber-tier-card.is-featured {
        transform: none;
    }

    .cyber-tier-card.is-featured:hover {
        transform: translateY(-5px);
    }
}/* Modular Capability Matrix Section */
.spec-matrix-section {
    position: relative;
    padding: 6rem 0;
    background: var(--bg-obsidian);
    border-top: 1px solid var(--border-tech);
    overflow: hidden;
}

.matrix-header {
    max-width: 780px;
    margin: 0 auto 3.5rem auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.matrix-filter-pills {
    display: flex;
    gap: 0.6rem;
    margin-top: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-pill {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-muted);
    color: var(--text-muted);
    padding: 0.4rem 0.9rem;
    border-radius: 4px;
    font-size: 0.74rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.filter-pill:hover {
    color: var(--text-primary);
    border-color: rgba(255, 255, 255, 0.2);
}

.filter-pill.active {
    background: rgba(0, 240, 255, 0.08);
    border-color: var(--accent-cyan);
    color: var(--accent-cyan);
    box-shadow: 0 0 12px rgba(0, 240, 255, 0.15);
}

/* Spec Table */
.spec-table-container {
    max-width: 1060px;
    margin: 0 auto;
    border-radius: 8px;
    overflow: hidden;
}

.spec-table-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    background: #080a0f;
    padding: 1rem 1.4rem;
    border-bottom: 1px solid var(--border-muted);
    font-size: 0.72rem;
    color: var(--text-secondary);
    letter-spacing: 0.05em;
}

.spec-table-body {
    display: flex;
    flex-direction: column;
}

.spec-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    align-items: center;
    padding: 1.4rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    transition: background 0.2s ease;
}

.spec-row:last-child {
    border-bottom: none;
}

.spec-row:hover {
    background: rgba(255, 255, 255, 0.015);
}

.col-feature {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    padding-right: 1.5rem;
}

.col-tier {
    font-size: 0.8rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
}

.col-tier.highlight {
    color: var(--accent-cyan);
    font-weight: 700;
}

.spec-code {
    font-size: 0.68rem;
    color: var(--accent-violet);
    letter-spacing: 0.08em;
}

.spec-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
}

.spec-desc {
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Glyphs */
.spec-glyph {
    padding: 0.2rem 0.6rem;
    border-radius: 3px;
    font-size: 0.7rem;
    letter-spacing: 0.05em;
}

.spec-glyph.pass {
    background: rgba(16, 185, 129, 0.15);
    color: var(--status-lime);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.spec-glyph.limit {
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-muted);
    border: 1px solid var(--border-muted);
}

.matrix-footer-note {
    max-width: 1060px;
    margin: 1.2rem auto 0 auto;
    text-align: right;
    font-size: 0.68rem;
    color: var(--text-muted);
}

/* Responsive */
@media screen and (max-width: 850px) {
    .spec-table-header,
    .spec-row {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .col-feature {
        padding-right: 0;
        margin-bottom: 0.5rem;
    }

    .col-tier {
        background: rgba(255, 255, 255, 0.02);
        padding: 0.5rem 0.8rem;
        border-radius: 4px;
        justify-content: space-between;
    }

    .col-tier::before {
        content: "TIER SPECS:";
        color: var(--text-muted);
        font-size: 0.68rem;
    }
}/* Automated Execution Pipeline Section */
.pipeline-section {
    position: relative;
    padding: 6rem 0;
    background: var(--bg-obsidian);
    border-top: 1px solid var(--border-tech);
    overflow: hidden;
}

.section-header-terminal {
    max-width: 760px;
    margin: 0 auto 4rem auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.header-badge-row {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3.8vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}

.section-subtitle {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

/* Pipeline Grid */
.pipeline-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
    margin-bottom: 3rem;
}

.pipeline-node {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    padding: 1.6rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.pipeline-node:hover,
.pipeline-node.is-selected {
    border-color: var(--accent-cyan);
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.1);
    transform: translateY(-4px);
}

.pipeline-node.is-selected::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--accent-cyan);
    box-shadow: 0 0 12px var(--accent-cyan);
}

.node-top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.25rem;
    font-size: 0.72rem;
}

.node-code {
    color: var(--accent-cyan);
    font-weight: 700;
    letter-spacing: 0.1em;
}

.node-badge {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-muted);
    padding: 0.2rem 0.5rem;
    border-radius: 3px;
    color: var(--text-muted);
    font-size: 0.65rem;
}

.node-header {
    margin-bottom: 1rem;
}

.node-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.node-subtitle {
    font-size: 0.68rem;
    color: var(--accent-violet);
    letter-spacing: 0.08em;
}

.node-desc {
    font-size: 0.88rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

/* Terminal Snippet inside Node */
.node-terminal-box {
    background: #080a0f;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 4px;
    padding: 0.75rem 0.9rem;
    margin-bottom: 1.25rem;
    font-size: 0.72rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.terminal-cmd {
    color: var(--accent-cyan);
    word-break: break-all;
}

.terminal-out {
    color: var(--status-lime);
    opacity: 0.9;
    word-break: break-word;
}

/* Node Footer LED */
.node-footer {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.68rem;
    color: var(--text-muted);
    border-top: 1px solid var(--border-muted);
    padding-top: 0.9rem;
}

.status-indicator {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--status-lime);
    box-shadow: 0 0 6px var(--status-lime);
}

/* Status Strip */
.pipeline-status-strip {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    font-size: 0.74rem;
    color: var(--text-secondary);
}

.strip-left,
.strip-right {
    display: flex;
    align-items: center;
    gap: 1.8rem;
}

/* Responsive */
@media screen and (max-width: 1024px) {
    .pipeline-grid {
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }
}

@media screen and (max-width: 600px) {
    .pipeline-status-strip {
        flex-direction: column;
        gap: 0.8rem;
        align-items: flex-start;
    }

    .strip-left,
    .strip-right {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}/* Cyberpunk System Briefing & Telemetry Video Feed */
.tf-section {
    position: relative;
    padding: 6rem 0;
    background: var(--bg-obsidian);
    border-top: 1px solid var(--border-tech);
    overflow: hidden;
}

.tf-terminal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px dashed var(--border-muted);
}

.header-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.72rem;
    color: var(--text-secondary);
}

.video-tech-wrapper {
    position: relative;
    width: 100%;
    height: 38rem;
    background: rgba(8, 10, 15, 0.95);
    border: 1px solid var(--border-tech);
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 0 40px rgba(0, 240, 255, 0.07);
}

/* Corner brackets */
.corner-bracket {
    position: absolute;
    width: 16px;
    height: 16px;
    border-color: var(--accent-cyan);
    pointer-events: none;
    z-index: 5;
}

.corner-bracket.tl { top: 6px; left: 6px; border-top: 2px solid; border-left: 2px solid; }
.corner-bracket.tr { top: 6px; right: 6px; border-top: 2px solid; border-right: 2px solid; }
.corner-bracket.bl { bottom: 6px; left: 6px; border-bottom: 2px solid; border-left: 2px solid; }
.corner-bracket.br { bottom: 6px; right: 6px; border-bottom: 2px solid; border-right: 2px solid; }

.video-element {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    transition: filter 0.3s ease;
}

.video-element.interactible {
    pointer-events: auto;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(14, 17, 24, 0.85) 0%, rgba(8, 10, 15, 0.98) 100%);
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.video-overlay.active-preview {
    background: 
        linear-gradient(rgba(0, 240, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 240, 255, 0.03) 1px, transparent 1px),
        radial-gradient(circle at center, rgba(14, 17, 24, 0.9) 0%, rgba(8, 10, 15, 0.98) 100%);
    background-size: 30px 30px, 30px 30px, 100% 100%;
}

.video-overlay:hover {
    background: radial-gradient(circle at center, rgba(14, 17, 24, 0.6) 0%, rgba(8, 10, 15, 0.9) 100%);
}

.video-preview-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding: 2.5rem;
    border: 1px dashed var(--border-muted);
    border-radius: 6px;
    background: rgba(8, 10, 15, 0.8);
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.05);
}

.preview-center-badge {
    background: rgba(14, 17, 24, 0.95);
    border: 1px solid var(--accent-cyan);
    color: var(--text-primary);
    padding: 1.1rem 2rem;
    border-radius: 4px;
    font-size: 0.88rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    box-shadow: 0 0 25px rgba(0, 240, 255, 0.25);
    transition: all 0.25s ease;
}

.video-overlay:hover .preview-center-badge {
    transform: scale(1.05);
    box-shadow: 0 0 35px rgba(0, 240, 255, 0.5);
    background: var(--accent-cyan);
    color: var(--bg-obsidian);
}

.preview-meta {
    display: flex;
    gap: 2rem;
    font-size: 0.72rem;
    color: var(--text-secondary);
    letter-spacing: 0.08em;
}

.play-icon {
    font-size: 1.1rem;
}


/* Mission Statement Box */
.about-1 {
    padding-top: 3.5rem;
}

.about-terminal-box {
    padding: 2.5rem;
    border-radius: 8px;
    width: 100%;
    background: rgba(14, 17, 24, 0.85);
}

.box-top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.72rem;
    color: var(--text-secondary);
    padding-bottom: 1.2rem;
    border-bottom: 1px solid var(--border-muted);
    margin-bottom: 1.8rem;
}

.about-1-text {
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 1.6;
    color: var(--text-primary);
    margin: 0;
}

.about-1-text.typing-done::after {
    content: "_";
    display: inline-block;
    color: var(--accent-cyan);
    margin-left: 6px;
    animation: blinkCursor 1s infinite;
}

@keyframes blinkCursor {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* Responsive */
@media screen and (max-width: 1024px) {
    .video-tech-wrapper {
        height: 24rem;
    }

    .about-1-text {
        font-size: 1.25rem;
    }
}

@media screen and (max-width: 768px) {
    .tf-terminal-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .video-tech-wrapper {
        height: 16rem;
    }

    .about-terminal-box {
        padding: 1.5rem;
    }

    .about-1-text {
        font-size: 1.05rem;
    }
}/* Cyberpunk Communication Terminal */
.git-cyber-section {
    position: relative;
    padding: 6rem 0;
    background: var(--bg-obsidian);
    border-top: 1px solid var(--border-tech);
    overflow: hidden;
}

.git-terminal-box {
    padding: 3rem;
    border-radius: 8px;
}

.git-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

.git-text-side {
    text-align: left;
}

.git-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin: 0 0 1.2rem 0;
    line-height: 1.15;
}

.git-subtitle {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.git-actions-side {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.git-action-card {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1.4rem;
    background: rgba(8, 10, 15, 0.85);
    border: 1px solid var(--border-tech);
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.25s ease;
}

.git-action-card:hover {
    border-color: var(--accent-cyan);
    background: rgba(0, 240, 255, 0.05);
    transform: translateX(6px);
    box-shadow: -5px 0 20px rgba(0, 240, 255, 0.1);
}

.git-icon-box {
    width: 48px;
    height: 48px;
    background: #11141d;
    border: 1px solid var(--accent-cyan);
    color: var(--accent-cyan);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.git-icon-box.magenta {
    border-color: var(--accent-magenta);
    color: var(--accent-magenta);
}

.git-action-text {
    flex-grow: 1;
}

.git-action-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 0.4rem;
}

.git-action-header h3 {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-primary);
}

.git-cmd {
    font-size: 0.68rem;
    color: var(--text-muted);
}

.git-action-text p {
    margin: 0;
    font-size: 0.85rem;
    font-weight: 600;
}

/* Responsive */
@media screen and (max-width: 900px) {
    .git-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .git-terminal-box {
        padding: 2rem;
    }
}

@media screen and (max-width: 600px) {
    .git-action-header {
        flex-direction: column;
        gap: 0.2rem;
    }
}/* Cyberpunk Deployment Initialization Node */
.gs-cyber-section {
    position: relative;
    padding: 6rem 0;
    background: var(--bg-obsidian);
    border-top: 1px solid var(--border-tech);
    overflow: hidden;
}

.gs-node-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3.5rem;
    padding: 3rem;
    border-radius: 8px;
    align-items: center;
}

/* Wireframe Radar Box */
.gs-visual-side {
    width: 100%;
}

.gs-wireframe-box {
    background: #080a0f;
    border: 1px solid var(--border-tech);
    border-radius: 6px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.06);
}

.wireframe-header,
.wireframe-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.7rem 1rem;
    background: #11141d;
    font-size: 0.72rem;
    color: var(--text-secondary);
}

.wireframe-header { border-bottom: 1px solid var(--border-muted); }
.wireframe-footer { border-top: 1px solid var(--border-muted); }

.wireframe-body {
    position: relative;
    height: 18rem;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-image: radial-gradient(rgba(0, 240, 255, 0.1) 1px, transparent 1px);
    background-size: 20px 20px;
}

.gs-radar-img {
    max-height: 80%;
    max-width: 80%;
    object-fit: contain;
    filter: drop-shadow(0 0 15px rgba(0, 240, 255, 0.3));
}

.radar-sweep-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-cyan), transparent);
    animation: radarSweep 3.5s infinite linear;
    box-shadow: 0 0 10px var(--accent-cyan);
}

@keyframes radarSweep {
    0% { top: 0%; opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { top: 100%; opacity: 0; }
}

/* Content Side */
.gs-content-side {
    text-align: left;
}

.gs-title {
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.15;
    margin: 0 0 1.2rem 0;
}

.gs-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.gs-launch-row {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
}

.gs-cmd-preview {
    background: #080a0f;
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 0.6rem 1rem;
    border-radius: 4px;
    font-size: 0.74rem;
    color: var(--text-muted);
}

.gs-cyber-btn {
    display: inline-flex;
    align-items: center;
    padding: 0.9rem 1.8rem;
    background: var(--accent-cyan);
    color: var(--bg-obsidian);
    text-decoration: none;
    font-weight: 800;
    font-size: 0.82rem;
    border-radius: 4px;
    letter-spacing: 0.05em;
    transition: all 0.25s ease;
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.3);
}

.gs-cyber-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.6);
    background: #80efff;
}

/* Responsive */
@media screen and (max-width: 900px) {
    .gs-node-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding: 2rem;
    }

    .gs-title {
        font-size: 2rem;
    }
}/* Core Differentials Section */
.whyus-section {
    position: relative;
    padding: 6rem 0;
    background: var(--bg-obsidian);
    border-top: 1px solid var(--border-tech);
    overflow: hidden;
}

.whyus-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.whyus-panel {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1.8rem;
    border-radius: 8px;
    height: 100%;
    transition: all 0.3s ease;
}

.whyus-panel:hover,
.whyus-panel.active-highlight {
    border-color: var(--accent-cyan);
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.08);
    transform: translateY(-4px);
}

.panel-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.2rem;
    font-size: 0.72rem;
}

.panel-tag {
    color: var(--text-muted);
}

.panel-metric {
    font-weight: 700;
}

.panel-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.8rem;
}

.panel-desc {
    font-size: 0.88rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.panel-benchmark {
    padding-top: 1rem;
    border-top: 1px dashed var(--border-muted);
    font-size: 0.72rem;
    color: var(--text-muted);
}

/* Side by side comparison */
.whyus-comparison {
    padding: 1.8rem;
    border-radius: 8px;
    margin-bottom: 2.5rem;
    background: rgba(14, 17, 24, 0.8);
}

.comp-header {
    text-align: center;
    font-size: 0.78rem;
    color: var(--text-secondary);
    letter-spacing: 0.06em;
    padding-bottom: 1.2rem;
    border-bottom: 1px solid var(--border-muted);
    margin-bottom: 1.5rem;
}

.comp-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.comp-side {
    padding: 1.2rem;
    border-radius: 6px;
}

.comp-side.old {
    background: rgba(239, 68, 68, 0.04);
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.comp-side.new {
    background: rgba(0, 240, 255, 0.05);
    border: 1px solid rgba(0, 240, 255, 0.3);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.05);
}

.comp-label {
    font-size: 0.76rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
    color: var(--text-secondary);
}

.comp-side ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    font-size: 0.78rem;
    line-height: 1.5;
}

.comp-side.old ul li {
    color: #f87171;
}

.comp-side.new ul li {
    color: var(--status-lime);
}

/* FAQ link row */
.whyus-faq-link-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    font-size: 0.78rem;
    color: var(--text-secondary);
}

.cyber-faq-link {
    color: var(--accent-cyan);
    text-decoration: none;
    font-weight: 700;
    transition: all 0.2s ease;
}

.cyber-faq-link:hover {
    color: #80efff;
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.6);
}

/* Responsive */
@media screen and (max-width: 1024px) {
    .whyus-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media screen and (max-width: 700px) {
    .comp-grid {
        grid-template-columns: 1fr;
    }

    .whyus-faq-link-row {
        flex-direction: column;
        gap: 0.4rem;
    }
}/* Cyber-Observability Terminal Footer */
.terminal-footer {
    background-color: var(--bg-obsidian);
    color: var(--text-primary);
    border-top: 1px solid var(--border-tech);
    position: relative;
    overflow: hidden;
    margin-top: 6rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Top Telemetry Diagnostic Strip */
.footer-top-telemetry {
    background: var(--bg-panel);
    border-bottom: 1px solid var(--border-muted);
    padding: 0.65rem 0;
}

.telemetry-strip {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.72rem;
}

.telemetry-block {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    color: var(--text-secondary);
}

/* Main Content Area */
.footer-main-content {
    display: grid;
    grid-template-columns: 1.2fr 1.8fr;
    gap: 4rem;
    padding: 4.5rem 1.5rem;
    position: relative;
    z-index: 2;
}

.footer-system-summary {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.footer-brand-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-logo-glyph {
    width: 2.2rem;
    height: 2.2rem;
    background: var(--accent-cyan-dim);
    border: 1px solid var(--accent-cyan);
    color: var(--accent-cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.1rem;
}

.footer-logo-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    letter-spacing: 0.15em;
    color: var(--text-primary);
}

.footer-system-desc {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-secondary);
    max-width: 380px;
}

.footer-system-specs {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    font-size: 0.72rem;
    color: var(--accent-cyan);
    background: var(--bg-elevated);
    padding: 0.85rem 1rem;
    border: 1px solid var(--border-muted);
    border-left: 2px solid var(--accent-cyan);
    border-radius: 4px;
    margin-top: 0.5rem;
}

/* Links Grid */
.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.footer-col h4 {
    font-size: 0.82rem;
    color: var(--accent-cyan);
    letter-spacing: 0.08em;
    margin-bottom: 1.25rem;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-col ul li a {
    color: var(--text-secondary);
    font-size: 0.82rem;
    text-decoration: none;
    transition: all 0.2s ease;
}

.footer-col ul li a:hover {
    color: var(--accent-cyan);
    padding-left: 0.35rem;
}

/* Giant Watermark Backdrop */
.footer-big-backdrop {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem 0;
    pointer-events: none;
    user-select: none;
    border-top: 1px solid var(--border-muted);
    border-bottom: 1px solid var(--border-muted);
    background: rgba(14, 17, 24, 0.4);
}

.footer-giant-text {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 11vw, 12rem);
    font-weight: 800;
    letter-spacing: 0.15em;
    color: transparent;
    -webkit-text-stroke: 1px rgba(0, 240, 255, 0.12);
    line-height: 1;
}

/* Bottom Bar */
.footer-bottom-bar {
    background: var(--bg-panel);
    padding: 1.25rem 0;
    font-size: 0.72rem;
    color: var(--text-muted);
}

.bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bottom-meta {
    color: var(--accent-cyan);
    opacity: 0.8;
}

/* Responsive */
@media screen and (max-width: 900px) {
    .footer-main-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-links-grid {
        grid-template-columns: 1fr 1fr;
    }

    .telemetry-strip {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

@media screen and (max-width: 600px) {
    .footer-links-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .bottom-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.6rem;
    }
}/* --- Cyberpunk Protocol Knowledgebase Layout --- */
.faq-page-container {
  max-width: 1040px;
  margin: 100px auto 80px;
  padding: 0 1.5rem;
  font-family: var(--font-body, "Inter", sans-serif);
  color: var(--text-bright, #f8fafc);
  min-height: 85vh;
}

/* Header Section */
.faq-header-section {
  text-align: center;
  margin-bottom: 3.5rem;
}

.faq-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(56, 189, 248, 0.1);
  border: 1px solid rgba(56, 189, 248, 0.3);
  padding: 6px 14px;
  border-radius: 999px;
  font-family: var(--font-mono, "JetBrains Mono", monospace);
  font-size: 0.75rem;
  color: var(--text-cyan, #38bdf8);
  margin-bottom: 1.25rem;
  letter-spacing: 0.08em;
  box-shadow: 0 0 15px rgba(56, 189, 248, 0.15);
}

.status-dot {
  width: 6px;
  height: 6px;
  background-color: var(--text-cyan, #38bdf8);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--text-cyan, #38bdf8);
  animation: pulseNeon 2s infinite ease-in-out;
}

@keyframes pulseNeon {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.3); }
}

.faq-title {
  font-family: var(--font-display, "Space Grotesk", sans-serif);
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
  color: var(--text-bright, #f8fafc);
  text-shadow: 0 0 25px rgba(56, 189, 248, 0.25);
}

.faq-subtitle {
  font-family: var(--font-mono, "JetBrains Mono", monospace);
  font-size: 0.95rem;
  color: var(--text-muted, #94a3b8);
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Category Tabs Section */
.faq-tabs-section {
  margin-bottom: 2.5rem;
}

.faq-tabs-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.faq-tab-btn {
  background: rgba(14, 21, 36, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 10px 18px;
  font-family: var(--font-mono, "JetBrains Mono", monospace);
  font-size: 0.82rem;
  color: #94a3b8;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  align-items: center;
  gap: 6px;
}

.tab-bracket {
  color: #475569;
  transition: color 0.25s ease;
}

.faq-tab-btn:hover {
  background: rgba(56, 189, 248, 0.1);
  border-color: rgba(56, 189, 248, 0.4);
  color: #f8fafc;
  transform: translateY(-2px);
}

.faq-tab-btn:hover .tab-bracket {
  color: var(--text-cyan, #38bdf8);
}

.faq-tab-btn.active {
  background: rgba(56, 189, 248, 0.15);
  border-color: var(--text-cyan, #38bdf8);
  color: var(--text-bright, #f8fafc);
  box-shadow: 0 0 18px rgba(56, 189, 248, 0.3);
}

.faq-tab-btn.active .tab-bracket {
  color: var(--text-cyan, #38bdf8);
}

/* Accordion Modules Section */
.faq-modules-section {
  margin-bottom: 4rem;
}

.faq-accordion-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-module-card {
  background: rgba(14, 21, 36, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-module-card:hover {
  border-color: rgba(139, 92, 246, 0.35);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.faq-module-card.expanded {
  border-color: var(--text-cyan, #38bdf8);
  background: rgba(14, 21, 36, 0.95);
  box-shadow: 
    0 12px 35px rgba(0, 0, 0, 0.7),
    0 0 20px rgba(56, 189, 248, 0.15);
}

.faq-module-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.35rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 1rem;
}

.faq-module-left {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1;
}

.faq-module-badge {
  font-family: var(--font-mono, "JetBrains Mono", monospace);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
  background: rgba(139, 92, 246, 0.15);
  border: 1px solid rgba(139, 92, 246, 0.4);
  color: #c084fc;
  white-space: nowrap;
  letter-spacing: 0.06em;
}

.faq-module-question {
  font-family: var(--font-body, "Inter", sans-serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-bright, #f8fafc);
  margin: 0;
  transition: color 0.2s ease;
}

.faq-module-card.expanded .faq-module-question {
  color: var(--text-cyan, #38bdf8);
}

.faq-module-toggle {
  font-family: var(--font-mono, "JetBrains Mono", monospace);
  font-size: 0.95rem;
  color: var(--text-cyan, #38bdf8);
  font-weight: 700;
  min-width: 36px;
  text-align: right;
}

.faq-module-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
  opacity: 0;
}

.faq-module-card.expanded .faq-module-body {
  max-height: 450px;
  opacity: 1;
}

.faq-module-content {
  padding: 0 1.5rem 1.5rem 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 1.25rem;
}

.faq-answer-text {
  font-family: var(--font-body, "Inter", sans-serif);
  font-size: 0.94rem;
  color: #cbd5e1;
  line-height: 1.65;
  margin: 0 0 1.25rem 0;
}

/* Code Snippet Box */
.faq-code-box {
  background: rgba(8, 10, 15, 0.95);
  border: 1px solid rgba(56, 189, 248, 0.25);
  border-radius: 8px;
  overflow: hidden;
}

.code-box-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.03);
  padding: 6px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-family: var(--font-mono, "JetBrains Mono", monospace);
  font-size: 0.72rem;
}

.code-label {
  color: #94a3b8;
  font-weight: 600;
}

.code-status {
  color: #4ade80;
}

.code-text {
  margin: 0;
  padding: 14px;
  font-family: var(--font-mono, "JetBrains Mono", monospace);
  font-size: 0.82rem;
  color: var(--text-cyan, #38bdf8);
  overflow-x: auto;
}

/* Diagnostics Strip */
.faq-diagnostics-section {
  margin-bottom: 4rem;
}

.diagnostics-panel {
  background: rgba(14, 21, 36, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 2rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
}

.diag-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 1rem;
}

.diag-header h3 {
  font-family: var(--font-display, "Space Grotesk", sans-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-bright, #f8fafc);
  margin: 0;
}

.diag-live {
  font-family: var(--font-mono, "JetBrains Mono", monospace);
  font-size: 0.75rem;
  color: #4ade80;
  background: rgba(74, 222, 128, 0.1);
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(74, 222, 128, 0.3);
}

.diag-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.diag-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.diag-icon {
  font-size: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.diag-info h4 {
  font-family: var(--font-mono, "JetBrains Mono", monospace);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-bright, #f8fafc);
  margin: 0 0 0.25rem 0;
}

.diag-info p {
  font-family: var(--font-body, "Inter", sans-serif);
  font-size: 0.82rem;
  color: #94a3b8;
  margin: 0;
}

/* Contact Console */
.faq-contact-console {
  margin-bottom: 3rem;
}

.console-box {
  background: linear-gradient(135deg, rgba(14, 21, 36, 0.9) 0%, rgba(20, 15, 38, 0.9) 100%);
  border: 1px solid rgba(139, 92, 246, 0.4);
  border-radius: 16px;
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: 0 0 40px rgba(139, 92, 246, 0.15);
}

.console-box h2 {
  font-family: var(--font-display, "Space Grotesk", sans-serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-bright, #f8fafc);
  margin: 0 0 0.75rem 0;
}

.console-box p {
  font-family: var(--font-mono, "JetBrains Mono", monospace);
  font-size: 0.92rem;
  color: #94a3b8;
  max-width: 600px;
  margin: 0 auto 2rem auto;
}

.console-actions {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.console-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--text-cyan, #38bdf8);
  color: #080a0f;
  font-family: var(--font-mono, "JetBrains Mono", monospace);
  font-size: 0.88rem;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s ease;
  box-shadow: 0 0 20px rgba(56, 189, 248, 0.4);
}

.console-btn-primary:hover {
  background: #7dd3fc;
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(56, 189, 248, 0.6);
}

.console-btn-secondary {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  color: #f8fafc;
  font-family: var(--font-mono, "JetBrains Mono", monospace);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  text-decoration: none;
  transition: all 0.2s ease;
}

.console-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #c084fc;
}

/* Responsive */
@media (max-width: 768px) {
  .faq-title {
    font-size: 2.1rem;
  }

  .faq-module-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .faq-module-left {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .faq-module-toggle {
    align-self: flex-end;
  }

  .diag-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .diag-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
}.legal-page-wrapper {
  background-color: #0a0a0a;
  min-height: 100vh;
  padding-top: 100px; /* Space for fixed navbar */
  color: #e5e5e5;
  font-family: 'Inter', sans-serif;
  display: flex;
  flex-direction: column;
}

.legal-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
  flex: 1;
  margin-bottom: 60px;
}

.legal-header {
  margin-bottom: 48px;
  text-align: center;
}

.legal-header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 12px;
  background: linear-gradient(to right, #ffffff, #a3a3a3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.last-updated {
  font-size: 0.9rem;
  color: #737373;
}

.legal-content p {
  line-height: 1.7;
  color: #d4d4d4;
  margin-bottom: 24px;
}

.legal-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #ffffff;
  margin-top: 40px;
  margin-bottom: 16px;
}

.legal-content ul {
  list-style-type: disc;
  padding-left: 24px;
  margin-bottom: 24px;
}

.legal-content li {
  color: #d4d4d4;
  margin-bottom: 8px;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .legal-header h1 {
      font-size: 2rem;
  }
}
/* --- Cyberpunk Terminal Authentication Layout --- */
.bg-container {
  width: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: var(--bg-obsidian, #080a0f);
  background-image: 
    radial-gradient(circle at 50% 30%, rgba(139, 92, 246, 0.12) 0%, transparent 60%),
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 100% 100%, 30px 30px, 30px 30px;
  font-family: var(--font-body, "Inter", sans-serif);
  position: relative;
  overflow: hidden;
  padding: 3rem 1rem;
}

/* Watermark Logo */
.watermark-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 650px;
  height: 650px;
  opacity: 0.03;
  z-index: 0;
  pointer-events: none;
  fill: var(--text-violet, #8b5cf6);
}

/* Wrapper */
.signup-wrapper {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 440px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Header */
.signup-header {
  text-align: center;
  margin-bottom: 2rem;
}

.signup-header h1 {
  font-family: var(--font-display, "Space Grotesk", sans-serif);
  font-weight: 700;
  font-size: 2.1rem;
  color: var(--text-bright, #f8fafc);
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
  text-shadow: 0 0 20px rgba(139, 92, 246, 0.3);
}

.signup-header p {
  font-family: var(--font-mono, "JetBrains Mono", monospace);
  font-size: 0.88rem;
  color: var(--text-muted, #94a3b8);
  margin: 0.25rem 0;
}

.tagline {
  font-family: var(--font-mono, "JetBrains Mono", monospace);
  font-size: 0.8rem;
  color: #c084fc;
  margin-top: 0.5rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  opacity: 0.9;
}

/* Form Box */
.form-box {
  width: 100%;
  background: rgba(14, 21, 36, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 16px;
  box-shadow: 
    0 25px 50px rgba(0, 0, 0, 0.8),
    0 0 30px rgba(139, 92, 246, 0.15);
  overflow: hidden;
  margin-bottom: 2rem;
}

.form {
  display: flex;
  flex-direction: column;
  padding: 2.25rem;
  gap: 1.35rem;
}

.form-container {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.input {
  width: 100%;
  height: 48px;
  background: rgba(8, 10, 15, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 0 16px;
  font-family: var(--font-mono, "JetBrains Mono", monospace);
  font-size: 0.9rem;
  color: var(--text-bright, #f8fafc);
  transition: all 0.2s ease;
}

.input::placeholder {
  color: #64748b;
}

.input:focus {
  outline: none;
  border-color: #c084fc;
  box-shadow: 0 0 15px rgba(139, 92, 246, 0.25);
}

.form button[type="submit"] {
  height: 48px;
  background: var(--text-violet, #8b5cf6);
  color: #f8fafc;
  border: none;
  border-radius: 8px;
  font-family: var(--font-mono, "JetBrains Mono", monospace);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-top: 0.5rem;
  box-shadow: 0 0 18px rgba(139, 92, 246, 0.4);
}

.form button[type="submit"]:hover {
  background: #a78bfa;
  transform: translateY(-2px);
  box-shadow: 0 0 25px rgba(139, 92, 246, 0.6);
}

/* Google Button */
.google-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.05) !important;
  color: var(--text-bright, #f8fafc) !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  border-radius: 8px;
  height: 48px;
  font-family: var(--font-mono, "JetBrains Mono", monospace);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s ease;
  width: 100%;
}

.google-btn:hover {
  background: rgba(255, 255, 255, 0.1) !important;
  border-color: #c084fc !important;
  box-shadow: 0 0 15px rgba(139, 92, 246, 0.2);
}

/* Trust Strip */
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1.75rem;
  opacity: 0.85;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono, "JetBrains Mono", monospace);
  font-size: 0.78rem;
  color: var(--text-muted, #94a3b8);
}

.trust-icon {
  font-size: 0.95em;
}

/* Social Proof */
.social-proof {
  text-align: center;
  margin-bottom: 2rem;
}

.social-proof p {
  font-family: var(--font-body, "Inter", sans-serif);
  font-size: 0.88rem;
  color: #64748b;
  margin: 0;
}

/* Footer Micro-text */
.auth-footer-text {
  font-family: var(--font-mono, "JetBrains Mono", monospace);
  font-size: 0.75rem;
  color: #475569;
  text-align: center;
  letter-spacing: 0.05em;
}

/* Divider */
.divider {
  display: flex;
  align-items: center;
  color: var(--text-muted, #94a3b8);
  font-family: var(--font-mono, "JetBrains Mono", monospace);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  margin: 1rem 0;
}

.divider::before,
.divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.divider::before {
  margin-right: 1rem;
}

.divider::after {
  margin-left: 1rem;
}

.form-section {
  margin-top: 1.25rem;
  text-align: center;
  font-family: var(--font-mono, "JetBrains Mono", monospace);
  font-size: 0.85rem;
  color: var(--text-muted, #94a3b8);
}

.form-section a {
  color: var(--text-cyan, #38bdf8);
  text-decoration: none;
  margin-left: 0.4rem;
  font-weight: 600;
  transition: color 0.2s ease, text-shadow 0.2s ease;
}

.form-section a:hover {
  color: #fff;
  text-decoration: underline;
  text-shadow: 0 0 10px rgba(56, 189, 248, 0.5);
}

@media (max-width: 640px) {
  .auth-box {
    padding: 2rem 1.5rem;
  }

  .auth-title {
    font-size: 1.6rem;
  }

  .name-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}
/* --- Cyberpunk Terminal Authentication Layout --- */
.bg-container {
  width: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: var(--bg-obsidian, #080a0f);
  background-image: 
    radial-gradient(circle at 50% 30%, rgba(56, 189, 248, 0.12) 0%, transparent 60%),
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 100% 100%, 30px 30px, 30px 30px;
  font-family: var(--font-body, "Inter", sans-serif);
  position: relative;
  overflow: hidden;
  padding: 3rem 1rem;
}

/* Watermark Logo */
.watermark-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 650px;
  height: 650px;
  opacity: 0.03;
  z-index: 0;
  pointer-events: none;
  fill: var(--text-cyan, #38bdf8);
}

/* Wrapper */
.login-wrapper {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 440px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Header */
.login-header {
  text-align: center;
  margin-bottom: 2rem;
}

.login-header h1 {
  font-family: var(--font-display, "Space Grotesk", sans-serif);
  font-weight: 700;
  font-size: 2.1rem;
  color: var(--text-bright, #f8fafc);
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
  text-shadow: 0 0 20px rgba(56, 189, 248, 0.3);
}

.login-header p {
  font-family: var(--font-mono, "JetBrains Mono", monospace);
  font-size: 0.88rem;
  color: var(--text-muted, #94a3b8);
  margin: 0.25rem 0;
}

.tagline {
  font-family: var(--font-mono, "JetBrains Mono", monospace);
  font-size: 0.8rem;
  color: var(--text-cyan, #38bdf8);
  margin-top: 0.5rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  opacity: 0.9;
}

/* Form Box */
.form-box {
  width: 100%;
  background: rgba(14, 21, 36, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(56, 189, 248, 0.3);
  border-radius: 16px;
  box-shadow: 
    0 25px 50px rgba(0, 0, 0, 0.8),
    0 0 30px rgba(56, 189, 248, 0.15);
  overflow: hidden;
  margin-bottom: 2rem;
}

.form {
  display: flex;
  flex-direction: column;
  padding: 2.25rem;
  gap: 1.35rem;
}

.form-container {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.input {
  width: 100%;
  height: 48px;
  background: rgba(8, 10, 15, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 0 16px;
  font-family: var(--font-mono, "JetBrains Mono", monospace);
  font-size: 0.9rem;
  color: var(--text-bright, #f8fafc);
  transition: all 0.2s ease;
}

.input::placeholder {
  color: #64748b;
}

.input:focus {
  outline: none;
  border-color: var(--text-cyan, #38bdf8);
  box-shadow: 0 0 15px rgba(56, 189, 248, 0.25);
}

.form button[type="submit"] {
  height: 48px;
  background: var(--text-cyan, #38bdf8);
  color: #080a0f;
  border: none;
  border-radius: 8px;
  font-family: var(--font-mono, "JetBrains Mono", monospace);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-top: 0.5rem;
  box-shadow: 0 0 18px rgba(56, 189, 248, 0.4);
}

.form button[type="submit"]:hover {
  background: #7dd3fc;
  transform: translateY(-2px);
  box-shadow: 0 0 25px rgba(56, 189, 248, 0.6);
}

/* Google Button */
.google-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.05) !important;
  color: var(--text-bright, #f8fafc) !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  border-radius: 8px;
  height: 48px;
  font-family: var(--font-mono, "JetBrains Mono", monospace);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s ease;
  width: 100%;
}

.google-btn:hover {
  background: rgba(255, 255, 255, 0.1) !important;
  border-color: var(--text-cyan, #38bdf8) !important;
  box-shadow: 0 0 15px rgba(56, 189, 248, 0.2);
}

/* Trust Strip */
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1.75rem;
  opacity: 0.85;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono, "JetBrains Mono", monospace);
  font-size: 0.78rem;
  color: var(--text-muted, #94a3b8);
}

.trust-icon {
  font-size: 0.95em;
}

/* Social Proof */
.social-proof {
  text-align: center;
  margin-bottom: 2rem;
}

.social-proof p {
  font-family: var(--font-body, "Inter", sans-serif);
  font-size: 0.88rem;
  color: #64748b;
  margin: 0;
}

/* Footer Micro-text */
.auth-footer-text {
  font-family: var(--font-mono, "JetBrains Mono", monospace);
  font-size: 0.75rem;
  color: #475569;
  text-align: center;
  letter-spacing: 0.05em;
}

/* Divider */
.divider {
  display: flex;
  align-items: center;
  color: var(--text-muted, #94a3b8);
  font-family: var(--font-mono, "JetBrains Mono", monospace);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  margin: 1rem 0;
}

.divider::before,
.divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.divider::before {
  margin-right: 1rem;
}

.divider::after {
  margin-left: 1rem;
}

.form-section {
  margin-top: 1rem;
  text-align: center;
  font-family: var(--font-mono, "JetBrains Mono", monospace);
  font-size: 0.85rem;
  color: var(--text-muted, #94a3b8);
}

.form-section a {
  color: var(--text-cyan, #38bdf8);
  font-weight: 600;
  text-decoration: none;
  margin-left: 0.3rem;
}

.form-section a:hover {
  color: #7dd3fc;
  text-decoration: underline;
}

/* Mobile */
@media (max-width: 640px) {
  .trust-strip {
    flex-direction: column;
    gap: 0.6rem;
    align-items: center;
  }
}/* Cyberpunk Integrated Toolchain & Neural Nodes Strip */
.icon-strip-container {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 3rem 0;
    margin-top: 2rem;
    overflow-x: hidden;
    position: relative;
    z-index: 10;
    background: var(--bg-obsidian);
    border-top: 1px dashed var(--border-muted);
    border-bottom: 1px dashed var(--border-muted);
}

.icon-strip {
    display: flex;
    width: 100%;
    justify-content: space-between;
    padding: 1rem 2rem;
    gap: 15px;
}

.icon-circle {
    width: 70px;
    height: 70px;
    background-color: #0c0f17;
    border: 1px solid var(--accent-cyan);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.12);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.icon-circle:hover {
    transform: scale(1.1) translateY(-5px);
    border-color: #80efff;
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.4);
    background-color: var(--accent-cyan);
}

.icon-svg {
    width: 30px;
    height: 30px;
    stroke: var(--accent-cyan);
    stroke-width: 1.5;
    fill: none;
    transition: stroke 0.3s ease;
}

.icon-circle:hover .icon-svg {
    stroke: var(--bg-obsidian);
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .icon-strip-container {
        overflow-x: auto;
        justify-content: flex-start;
        padding-left: 1rem;
        padding-right: 1rem;
        margin-top: 1rem;
    }

    .icon-strip {
        width: auto;
        gap: 1.5rem;
        justify-content: flex-start;
    }

    .icon-circle {
        width: 58px;
        height: 58px;
        border-radius: 10px;
    }

    .icon-svg {
        width: 24px;
        height: 24px;
    }
}

@keyframes floatNode {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

.icon-circle {
    animation: floatNode 3.5s ease-in-out infinite;
    will-change: transform;
}


/* Cyberpunk Telemetry HUD Header & Navigation */
.hud-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background-color: rgba(9, 10, 15, 0.88);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-muted);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.3s ease;
}

.hud-header.hidden {
    transform: translateY(-100%);
}

.hud-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Top Telemetry Micro-Strip */
.hud-topbar {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(14, 17, 24, 0.7);
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--text-muted);
    letter-spacing: 0.06em;
    padding: 0.25rem 0;
}

.topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.telemetry-group {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.telemetry-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    display: inline-block;
}

.status-dot.online {
    background: var(--status-lime);
    box-shadow: 0 0 8px var(--status-lime);
    animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
    0% { opacity: 1; transform: scale(1); }
    100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

.topbar-action-btn {


    background: transparent;
    border: 1px solid rgba(239, 68, 68, 0.4);
    color: var(--status-crimson);
    font-family: var(--font-mono);
    font-size: 0.68rem;
    padding: 0.1rem 0.5rem;
    border-radius: 3px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.topbar-action-btn:hover {
    background: rgba(239, 68, 68, 0.15);
    box-shadow: 0 0 10px rgba(239, 68, 68, 0.3);
}

/* Main Command Navigation Bar */
.hud-navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4.5rem;
}

.hud-brand {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hud-brand:hover .brand-logo-box {
    border-color: var(--accent-cyan);
    box-shadow: var(--shadow-cyan);
    transform: rotate(45deg);
}

.brand-logo-box {
    width: 2.2rem;
    height: 2.2rem;
    background: var(--bg-panel);
    border: 1px solid var(--border-tech);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.brand-symbol {
    font-family: var(--font-heading);
    color: var(--accent-cyan);
    font-size: 1.15rem;
    font-weight: 800;
}

.brand-text-box {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.brand-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--text-primary);
}

.brand-subtitle {
    font-family: var(--font-mono);
    font-size: 0.62rem;
    color: var(--accent-cyan);
    letter-spacing: 0.08em;
    opacity: 0.8;
}

/* Navigation Links */
.hud-menu-inner {
    display: flex;
    align-items: center;
    gap: 2.2rem;
    list-style: none;
}

.hud-link {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-family: var(--font-mono);
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text-secondary);
    letter-spacing: 0.06em;
    text-decoration: none;
    transition: all 0.2s ease;
}

.hud-link-prefix {
    color: var(--accent-cyan);
    opacity: 0.5;
    transition: opacity 0.2s ease;
}

.hud-link:hover {
    color: var(--accent-cyan);
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.4);
}

.hud-link:hover .hud-link-prefix {
    opacity: 1;
}

/* Console CTA Button */
.hud-actions {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.hud-console-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 1.15rem;
    background: var(--accent-cyan-dim);
    border: 1px solid var(--accent-cyan);
    border-radius: 4px;
    font-family: var(--font-mono);
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--accent-cyan);
    letter-spacing: 0.05em;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.hud-console-btn:hover {
    background: var(--accent-cyan);
    color: var(--bg-obsidian);
    box-shadow: var(--shadow-cyan);
    transform: translateY(-1px);
}

/* Burger Toggle */
.hud-burger {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    width: 2rem;
    height: 1.5rem;
    position: relative;
}

.hud-burger .burger-line {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--text-primary);
    margin: 5px 0;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.hud-burger.is-active .burger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
    background-color: var(--accent-cyan);
}

.hud-burger.is-active .burger-line:nth-child(2) {
    opacity: 0;
}

.hud-burger.is-active .burger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
    background-color: var(--accent-cyan);
}

/* Responsive Rules */
@media screen and (max-width: 992px) {
    .hide-mobile {
        display: none !important;
    }

    .hud-burger {
        display: block;
    }

    .hud-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: var(--bg-obsidian);
        border-right: 1px solid var(--border-tech);
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        padding: 5rem 2rem 2rem 2rem;
        transition: left 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 90;
    }

    .hud-menu.is-active {
        left: 0;
    }

    .hud-menu-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
        width: 100%;
    }

    .hud-link {
        font-size: 1.25rem;
    }

    .hud-console-btn {
        width: 100%;
        margin-top: 1rem;
        text-align: center;
    }
}

@media screen and (min-width: 993px) {
    .hide-desktop {
        display: none !important;
    }
}.toast-container {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10000;
    pointer-events: none;
}

.toast-box {
    background: rgba(255, 255, 255, 0.85);
    /* Slightly more opaque for readability */
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    padding: 12px 24px;
    border-radius: 99px;
    /* Pill shape */
    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.5);

    display: flex;
    align-items: center;
    gap: 12px;

    font-family: 'Work Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: #1a1a1a;
    pointer-events: auto;
}

.toast-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: #22c55e;
    /* Success Green */
    color: white;
    border-radius: 50%;
    font-size: 12px;
}.loader-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-obsidian, #080a0f);
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.4s ease-in-out, visibility 0.4s ease-in-out;
}

.loader-container.fade-out {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.loader-logo-wrapper {
    position: relative;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader-symbol {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--accent-cyan, #00f0ff);
    text-shadow: 0 0 15px rgba(0, 240, 255, 0.8);
    animation: pulseSymbol 1.2s ease-in-out infinite;
}

.loader-ring {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid transparent;
    border-top-color: var(--accent-cyan, #00f0ff);
    border-bottom-color: var(--accent-magenta, #ff007f);
    border-radius: 50%;
    animation: rotateRing 1s linear infinite;
}

.loader-text-status {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.8rem;
    color: var(--text-secondary, #94a3b8);
    letter-spacing: 0.1em;
}

.loader-bar-bg {
    width: 160px;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.loader-bar-fill {
    width: 40%;
    height: 100%;
    background: linear-gradient(90deg, var(--accent-cyan, #00f0ff), var(--accent-magenta, #ff007f));
    animation: loadBar 0.8s ease-in-out infinite alternate;
}

@keyframes pulseSymbol {
    0%, 100% { transform: scale(0.95); opacity: 0.8; }
    50% { transform: scale(1.08); opacity: 1; text-shadow: 0 0 25px rgba(0, 240, 255, 1); }
}

@keyframes rotateRing {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes loadBar {
    0% { transform: translateX(-100%); width: 30%; }
    100% { transform: translateX(300%); width: 60%; }
}/* Cyberpunk HUD Precision Analysis Console CSS */

.scan-page {
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 7rem;
  padding-bottom: 5rem;
  background-color: var(--bg-obsidian, #080a0f);
  color: var(--text-muted, #94a3b8);
  font-family: var(--font-body, "Inter", sans-serif);
  position: relative;
  overflow-x: hidden;
}

/* Background Cyber Grid & Ambient Glow */
.scan-page::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(56, 189, 248, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(56, 189, 248, 0.04) 1px, transparent 1px);
  background-size: 50px 50px;
  z-index: 0;
  pointer-events: none;
}

.scan-page::after {
  content: "";
  position: absolute;
  top: 15%;
  right: 10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.12) 0%, rgba(139, 92, 246, 0.06) 50%, transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
  z-index: 0;
  pointer-events: none;
}

.scan-hero,
.scan-container,
.scan-results,
.scan-features-wrapper,
.scan-tools-section,
.plan-upsell-container {
  position: relative;
  z-index: 1;
}

/* Hero Title Area */
.scan-hero {
  text-align: center;
  margin-bottom: 2.5rem;
  padding: 0 1.5rem;
  max-width: 900px;
}

.scan-hero h1 {
  font-family: var(--font-display, "Space Grotesk", sans-serif);
  font-size: 3.25rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--text-bright, #f8fafc);
  line-height: 1.15;
  letter-spacing: -0.02em;
  text-shadow: 0 0 30px rgba(56, 189, 248, 0.25);
}

.scan-hero p {
  font-family: var(--font-body, "Inter", sans-serif);
  color: var(--text-muted, #94a3b8);
  font-size: 1.15rem;
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Scanner Input Console Box */
.scan-container {
  width: 100%;
  max-width: 850px;
  background: rgba(14, 21, 36, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(56, 189, 248, 0.25);
  border-radius: 20px;
  padding: 2.5rem 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 30px rgba(56, 189, 248, 0.08);
  margin: 0 auto;
}

.url-input-group {
  width: 100%;
  position: relative;
  display: flex;
  gap: 1rem;
}

.url-input-wrapper {
  flex: 1;
  position: relative;
}

.url-input {
  width: 100%;
  padding: 1.1rem 1.5rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(8, 10, 15, 0.85);
  color: var(--text-bright, #f8fafc);
  font-size: 1.05rem;
  font-family: var(--font-mono, "JetBrains Mono", monospace);
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.6);
}

.url-input::placeholder {
  color: rgba(148, 163, 184, 0.4);
}

.url-input:focus {
  outline: none;
  border-color: var(--text-cyan, #38bdf8);
  background: rgba(8, 10, 15, 0.95);
  box-shadow: 0 0 20px rgba(56, 189, 248, 0.25), inset 0 2px 6px rgba(0, 0, 0, 0.6);
}

.url-input.valid {
  border-color: #10b981;
}

.url-input.invalid {
  border-color: #ef4444;
}

.scan-btn {
  padding: 1.1rem 2.8rem;
  border-radius: 12px;
  border: 1px solid rgba(56, 189, 248, 0.5);
  background: linear-gradient(135deg, #0284c7 0%, #2563eb 50%, #7c3aed 100%);
  color: var(--text-bright, #ffffff);
  font-weight: 700;
  font-size: 1.05rem;
  font-family: var(--font-display, "Space Grotesk", sans-serif);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  white-space: nowrap;
  box-shadow: 0 0 25px rgba(37, 99, 235, 0.4);
}

.scan-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 0 35px rgba(56, 189, 248, 0.6), 0 10px 20px rgba(0, 0, 0, 0.5);
  filter: brightness(1.1);
}

.scan-btn:active:not(:disabled) {
  transform: translateY(0);
}

.scan-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
  border-color: rgba(255, 255, 255, 0.1);
}

.scan-error-container {
  width: 100%;
}

.scan-error {
  color: #ef4444;
  font-family: var(--font-mono, "JetBrains Mono", monospace);
  font-size: 0.9rem;
  margin-top: 1rem;
  text-align: center;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  padding: 0.75rem;
  border-radius: 8px;
  width: 100%;
}

/* --- Features Grid when idle --- */
.scan-features-wrapper {
  margin-top: 4rem;
  width: 100%;
  max-width: 950px;
  text-align: center;
}

.scan-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-top: 1.5rem;
  padding: 0 1rem;
}

.feature-glass-card {
  background: rgba(14, 21, 36, 0.6);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 2.25rem 1.5rem;
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.feature-glass-card:hover {
  transform: translateY(-6px);
  background: rgba(14, 21, 36, 0.85);
  border-color: rgba(56, 189, 248, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7), 0 0 20px rgba(56, 189, 248, 0.15);
}

.feature-icon-box {
  width: 56px;
  height: 56px;
  background: rgba(56, 189, 248, 0.1);
  border: 1px solid rgba(56, 189, 248, 0.3);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem auto;
  font-size: 1.5rem;
  color: var(--text-cyan, #38bdf8);
  box-shadow: 0 0 15px rgba(56, 189, 248, 0.2);
}

.feature-glass-card h3 {
  font-family: var(--font-display, "Space Grotesk", sans-serif);
  font-weight: 700;
  color: var(--text-bright, #f8fafc);
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.feature-glass-card p {
  color: var(--text-muted, #94a3b8);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* --- Scan Results Area --- */
.scan-results {
  width: 100%;
  max-width: 900px;
  margin-top: 3.5rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.results-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(14, 21, 36, 0.8);
  border: 1px solid rgba(56, 189, 248, 0.25);
  border-radius: 16px;
  padding: 1.5rem 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.results-header h2 {
  font-family: var(--font-display, "Space Grotesk", sans-serif);
  font-size: 2.2rem;
  color: var(--text-bright, #f8fafc);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.score-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(8, 10, 15, 0.8);
  padding: 0.75rem 1.5rem;
  border-radius: 14px;
  border: 1px solid var(--text-cyan, #38bdf8);
  box-shadow: 0 0 25px rgba(56, 189, 248, 0.3);
}

.score-label {
  font-family: var(--font-mono, "JetBrains Mono", monospace);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-cyan, #38bdf8);
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.score-value {
  font-family: var(--font-display, "Space Grotesk", sans-serif);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-bright, #f8fafc);
  line-height: 1;
  text-shadow: 0 0 15px var(--text-cyan, #38bdf8);
}

.results-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem;
}

.result-card {
  background: rgba(14, 21, 36, 0.75);
  border-radius: 16px;
  padding: 2.25rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.result-card:hover {
  transform: translateY(-4px);
  border-color: rgba(56, 189, 248, 0.3);
}

.result-card h3 {
  font-family: var(--font-display, "Space Grotesk", sans-serif);
  font-size: 1.35rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.insights-card {
  border-left: 4px solid #10b981;
}

.insights-card h3 {
  color: #34d399;
}

.suggestions-card {
  border-left: 4px solid #f59e0b;
}

.suggestions-card h3 {
  color: #fbbf24;
}

.result-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.result-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-muted, #cbd5e1);
  line-height: 1.6;
  font-size: 0.95rem;
}

.result-list li::before {
  content: "▶";
  position: absolute;
  left: 0;
  top: 2px;
  font-family: var(--font-mono, "JetBrains Mono", monospace);
  font-size: 0.75rem;
  color: var(--text-cyan, #38bdf8);
}

/* AI Deep Dive Section */
.result-card.ai-questions-card {
  border-left: 4px solid var(--text-cyan, #38bdf8);
  background: rgba(14, 21, 36, 0.85);
  grid-column: span 2;
  border: 1px solid rgba(56, 189, 248, 0.25);
}

@media (max-width: 768px) {
  .result-card.ai-questions-card {
    grid-column: span 1;
  }
}

.ai-badge {
  display: inline-block;
  background: rgba(56, 189, 248, 0.15);
  border: 1px solid var(--text-cyan, #38bdf8);
  color: var(--text-cyan, #38bdf8);
  padding: 0.3rem 0.8rem;
  border-radius: 6px;
  font-family: var(--font-mono, "JetBrains Mono", monospace);
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.ai-subtext {
  font-size: 0.9rem;
  color: var(--text-muted, #94a3b8);
  margin-bottom: 1.25rem;
  margin-top: -0.5rem;
}

.ai-questions-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.ai-question-bubble {
  background: rgba(8, 10, 15, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.2s ease;
}

.ai-question-bubble.open {
  border-color: var(--text-cyan, #38bdf8);
  box-shadow: 0 0 15px rgba(56, 189, 248, 0.15);
}

.ai-question-summary {
  padding: 1rem 1.25rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-bright, #f8fafc);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}

.ai-toggle-icon {
  font-family: var(--font-mono, "JetBrains Mono", monospace);
  font-weight: 600;
  color: var(--text-cyan, #38bdf8);
  font-size: 1.25rem;
  transition: transform 0.3s ease;
}

.ai-question-bubble.open .ai-toggle-icon {
  transform: rotate(45deg);
  color: #ec4899;
}

.ai-question-content-wrapper {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.ai-question-bubble.open .ai-question-content-wrapper {
  grid-template-rows: 1fr;
}

.ai-question-answer {
  overflow: hidden;
  color: var(--text-muted, #cbd5e1);
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  padding: 0 1.25rem;
}

.ai-question-bubble.open .ai-question-answer {
  opacity: 1;
  transform: translateY(0);
  padding-bottom: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 1rem;
}

/* --- Tools & Actions Section --- */
.scan-tools-section {
  width: 100%;
  margin-top: 3.5rem;
  text-align: left;
}

.scan-tools-section h3 {
  font-family: var(--font-display, "Space Grotesk", sans-serif);
  font-size: 1.5rem;
  color: var(--text-bright, #f8fafc);
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .tools-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.tool-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: rgba(14, 21, 36, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 1.5rem 1rem;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
  min-height: 190px;
  justify-content: flex-start;
  gap: 1rem;
}

.tool-card:hover:not(.locked) {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.7), 0 0 20px rgba(56, 189, 248, 0.2);
  border-color: var(--text-cyan, #38bdf8);
  background: rgba(14, 21, 36, 0.95);
}

.tool-card.locked {
  background: rgba(8, 10, 15, 0.5);
  border-color: rgba(255, 255, 255, 0.04);
  opacity: 0.5;
  cursor: not-allowed;
}

.tool-icon {
  font-size: 1.8rem;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(56, 189, 248, 0.1);
  border: 1px solid rgba(56, 189, 248, 0.3);
  border-radius: 12px;
  flex-shrink: 0;
  color: var(--text-cyan, #38bdf8);
}

.tool-card.locked .tool-icon {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
  color: #64748b;
}

.tool-info {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.tool-info h4 {
  font-family: var(--font-display, "Space Grotesk", sans-serif);
  font-size: 1rem;
  color: var(--text-bright, #f8fafc);
  margin: 0;
  font-weight: 700;
}

.tool-info span {
  font-size: 0.8rem;
  color: var(--text-muted, #94a3b8);
  line-height: 1.4;
}

.tool-feedback-message {
  text-align: center;
  margin-bottom: 1rem;
  padding: 0.75rem;
  border-radius: 8px;
  font-family: var(--font-mono, "JetBrains Mono", monospace);
  font-size: 0.9rem;
  font-weight: 600;
}

.tool-feedback-message.error {
  background: rgba(239, 68, 68, 0.15);
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.4);
}

.tool-feedback-message.success {
  background: rgba(16, 185, 129, 0.15);
  color: #10b981;
  border: 1px solid rgba(16, 185, 129, 0.4);
}

/* --- Plan Status Bar & Upsell --- */
.plan-upsell-container {
  margin-top: 3rem;
  background: rgba(14, 21, 36, 0.8);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(56, 189, 248, 0.2);
  display: flex;
  flex-direction: column;
}

.current-plan-status {
  background: rgba(8, 10, 15, 0.9);
  padding: 1.2rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.status-label {
  font-family: var(--font-mono, "JetBrains Mono", monospace);
  font-weight: 500;
  color: var(--text-muted, #94a3b8);
  font-size: 0.95rem;
}

.status-value {
  font-family: var(--font-mono, "JetBrains Mono", monospace);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
  padding: 0.35rem 1rem;
  border-radius: 6px;
  letter-spacing: 0.1em;
}

.status-value.free {
  background: rgba(255, 255, 255, 0.1);
  color: #cbd5e1;
}

.status-value.pro {
  background: rgba(56, 189, 248, 0.2);
  color: var(--text-cyan, #38bdf8);
  border: 1px solid var(--text-cyan, #38bdf8);
}

.status-value.super_pro {
  background: rgba(139, 92, 246, 0.2);
  color: #c084fc;
  border: 1px solid #c084fc;
  box-shadow: 0 0 15px rgba(139, 92, 246, 0.3);
}

.upsell-content {
  padding: 2.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.upsell-content h4 {
  font-family: var(--font-display, "Space Grotesk", sans-serif);
  font-size: 1.4rem;
  color: var(--text-bright, #f8fafc);
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.upsell-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
  width: 100%;
  max-width: 600px;
}

.upsell-feature {
  background: rgba(8, 10, 15, 0.6);
  padding: 0.85rem 1.2rem;
  border-radius: 8px;
  color: var(--text-muted, #cbd5e1);
  font-size: 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-align: left;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.upgrade-btn {
  display: inline-block;
  background: linear-gradient(135deg, #0284c7 0%, #2563eb 100%);
  color: white;
  padding: 1rem 3rem;
  border-radius: 10px;
  border: 1px solid rgba(56, 189, 248, 0.5);
  font-family: var(--font-display, "Space Grotesk", sans-serif);
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 0 20px rgba(37, 99, 235, 0.4);
}

.upgrade-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(56, 189, 248, 0.6);
}

/* --- Modals --- */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
}

.modal-content {
  background: rgba(14, 21, 36, 0.95);
  padding: 2.5rem;
  border-radius: 20px;
  width: 90%;
  max-width: 520px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.8), 0 0 40px rgba(56, 189, 248, 0.15);
  text-align: center;
  border: 1px solid rgba(56, 189, 248, 0.3);
}

.modal-content.large {
  max-width: 850px;
  padding: 2.5rem;
}

.modal-content h3 {
  font-family: var(--font-display, "Space Grotesk", sans-serif);
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
  color: var(--text-bright, #f8fafc);
  font-weight: 700;
}

.modal-content p {
  color: var(--text-muted, #94a3b8);
  margin-bottom: 1.75rem;
  line-height: 1.6;
}

.brand-palette-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin: 2rem 0;
}

.palette-swatch {
  height: 90px;
  border-radius: 12px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 0.6rem;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.5);
  transition: transform 0.2s ease;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.palette-swatch:hover {
  transform: translateY(-4px) scale(1.04);
}

.palette-swatch span {
  background: rgba(8, 10, 15, 0.9);
  padding: 3px 8px;
  border-radius: 4px;
  font-family: var(--font-mono, "JetBrains Mono", monospace);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text-bright, #f8fafc);
}

/* Mockup Frame */
.mockup-frame {
  background: #000;
  border-radius: 36px;
  padding: 10px;
  display: inline-block;
  box-shadow: 0 0 0 2px rgba(56, 189, 248, 0.4), 0 25px 50px rgba(0, 0, 0, 0.8);
  width: 100%;
  max-width: 320px;
  margin: 1.5rem auto;
  position: relative;
}

.mockup-frame::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 110px;
  height: 22px;
  background: #000;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  z-index: 10;
}

.mockup-screen {
  background: #080a0f;
  border-radius: 26px;
  overflow: hidden;
  height: 580px;
  position: relative;
  border: 1px solid #1e293b;
}

.mockup-iframe {
  width: 100%;
  height: 100%;
  border: none;
  background: #fff;
}

.rewrite-container {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 1rem;
  text-align: left;
}

.rewrite-input {
  width: 100%;
  min-height: 110px;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  font-family: var(--font-body, "Inter", sans-serif);
  font-size: 0.95rem;
  resize: vertical;
  background: rgba(8, 10, 15, 0.8);
  color: var(--text-bright, #f8fafc);
}

.rewrite-input:focus {
  outline: none;
  border-color: var(--text-cyan, #38bdf8);
  background: rgba(8, 10, 15, 0.95);
  box-shadow: 0 0 15px rgba(56, 189, 248, 0.2);
}

.rewrite-controls {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.rewrite-controls label {
  font-family: var(--font-mono, "JetBrains Mono", monospace);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text-muted, #94a3b8);
}

.rewrite-controls select {
  padding: 0.5rem 1rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(8, 10, 15, 0.9);
  color: var(--text-bright, #f8fafc);
  font-family: var(--font-mono, "JetBrains Mono", monospace);
  font-size: 0.85rem;
  cursor: pointer;
}

.rewrite-result-box {
  background: rgba(8, 10, 15, 0.8);
  border: 1px solid var(--text-cyan, #38bdf8);
  border-radius: 10px;
  padding: 1.25rem;
  padding-right: 4.5rem;
  margin-top: 0.75rem;
  position: relative;
}

.result-label {
  font-family: var(--font-mono, "JetBrains Mono", monospace);
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--text-cyan, #38bdf8);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.rewrite-result-box p {
  color: var(--text-bright, #f8fafc);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0;
}

.copy-mini-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(56, 189, 248, 0.2);
  border: 1px solid var(--text-cyan, #38bdf8);
  color: var(--text-cyan, #38bdf8);
  padding: 0.3rem 0.75rem;
  border-radius: 6px;
  font-family: var(--font-mono, "JetBrains Mono", monospace);
  font-size: 0.75rem;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.2s;
}

.copy-mini-btn:hover {
  background: var(--text-cyan, #38bdf8);
  color: #080a0f;
}

.close-text-btn {
  background: none;
  border: none;
  color: var(--text-muted, #94a3b8);
  font-family: var(--font-mono, "JetBrains Mono", monospace);
  font-size: 0.85rem;
  cursor: pointer;
  margin-top: 1.25rem;
  text-decoration: underline;
}

.close-text-btn:hover {
  color: var(--text-bright, #f8fafc);
}

/* Skeleton Dark Override */
.skeleton-wrapper {
  width: 100%;
  max-width: 900px;
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.skeleton-circle,
.skeleton-line,
.skeleton-card {
  background: rgba(14, 21, 36, 0.8);
  border-color: rgba(255, 255, 255, 0.08);
}

.skeleton-circle::after,
.skeleton-line::after,
.skeleton-card::after {
  background: linear-gradient(90deg, transparent, rgba(56, 189, 248, 0.08), transparent);
}

/* Responsive */
@media (max-width: 768px) {
  .scan-page {
    padding-top: 6rem;
  }

  .scan-hero h1 {
    font-size: 2.2rem;
  }

  .scan-container {
    padding: 1.75rem 1.25rem;
  }

  .url-input-group {
    flex-direction: column;
  }

  .scan-btn {
    width: 100%;
  }

  .results-grid {
    grid-template-columns: 1fr;
  }

  .results-header {
    flex-direction: column;
    gap: 1.25rem;
    text-align: center;
  }
}/* Cyberpunk HUD Persona & Benchmark Styling */

.persona-selector {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2.5rem;
    gap: 0.8rem;
    width: 100%;
}

.persona-label {
    font-family: var(--font-mono, "JetBrains Mono", monospace);
    font-size: 0.75rem;
    color: var(--text-cyan, #38bdf8);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.persona-options {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    background: rgba(10, 15, 24, 0.85);
    padding: 0.5rem;
    border-radius: 12px;
    border: 1px solid rgba(56, 189, 248, 0.2);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.6), inset 0 0 15px rgba(56, 189, 248, 0.05);
}

.persona-btn {
    background: rgba(14, 21, 36, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0.6rem 1.4rem;
    border-radius: 8px;
    font-family: var(--font-mono, "JetBrains Mono", monospace);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted, #94a3b8);
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.persona-btn:hover:not(.locked-persona) {
    color: var(--text-bright, #f8fafc);
    background: rgba(56, 189, 248, 0.1);
    border-color: rgba(56, 189, 248, 0.4);
    box-shadow: 0 0 15px rgba(56, 189, 248, 0.2);
}

.persona-btn.active {
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.2) 0%, rgba(139, 92, 246, 0.2) 100%);
    color: var(--text-cyan, #38bdf8);
    border-color: var(--text-cyan, #38bdf8);
    box-shadow: 0 0 20px rgba(56, 189, 248, 0.3), inset 0 0 10px rgba(56, 189, 248, 0.15);
    font-weight: 600;
}

.persona-btn.locked-persona {
    opacity: 0.5;
    cursor: not-allowed;
    background: rgba(10, 15, 24, 0.4);
}

.persona-btn.locked-persona:hover {
    border-color: rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

/* Persona Badge in Results */
.persona-badge-display {
    font-family: var(--font-mono, "JetBrains Mono", monospace);
    font-size: 0.85rem;
    color: var(--text-muted, #94a3b8);
    margin-top: 0.5rem;
}

.persona-badge-display strong {
    color: var(--text-cyan, #38bdf8);
    font-weight: 600;
    text-shadow: 0 0 10px rgba(56, 189, 248, 0.4);
}

/* Benchmarking Cards */
.benchmarks-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}

.benchmark-card {
    background: rgba(14, 21, 36, 0.7);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(56, 189, 248, 0.2);
    padding: 1.5rem;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

.benchmark-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--text-cyan, #38bdf8), transparent);
}

.bench-cat {
    font-family: var(--font-mono, "JetBrains Mono", monospace);
    font-size: 0.75rem;
    color: var(--text-muted, #94a3b8);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.bench-stat {
    font-family: var(--font-display, "Space Grotesk", sans-serif);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-bright, #f8fafc);
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.bench-percent {
    font-family: var(--font-mono, "JetBrains Mono", monospace);
    font-size: 0.8rem;
    color: var(--text-cyan, #38bdf8);
    font-weight: 600;
}.social-share-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    /* transition: transform 0.2s ease, box-shadow 0.2s ease; */
}

.social-share-card h3 {
    font-size: 1rem;
    color: #1A1A1A;
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.share-preview {
    background: #F9FAFB;
    border: 1px dashed #D1D5DB;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    color: #4B5563;
    font-style: italic;
    text-align: center;
}

.score-highlight {
    color: #2563EB;
    font-weight: 700;
}

.share-buttons {
    display: flex;
    gap: 1rem;
}

.share-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
    border: 1px solid transparent;
}

.share-btn.twitter {
    background-color: #1A1A1A;
    color: #fff;
}

.share-btn.twitter:hover {
    background-color: #333;
    transform: translateY(-2px);
}

.share-btn.linkedin {
    background-color: #0077B5;
    color: #fff;
}

.share-btn.linkedin:hover {
    background-color: #005E93;
    transform: translateY(-2px);
}

.social-icon {
    width: 18px;
    height: 18px;
}.spinner-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    min-height: 200px;
    /* Ensure space so it doesn't collapse */
}

.spinner {
    border: 3px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    border-top: 3px solid #3b82f6;
    /* Primary Blue */
    width: 40px;
    height: 40px;
    -webkit-animation: spin 1s linear infinite;
    /* Safari */
    animation: spin 1s linear infinite;
}

.spinner.white {
    border-top-color: #ffffff;
    border-right-color: rgba(255, 255, 255, 0.2);
    border-bottom-color: rgba(255, 255, 255, 0.2);
    border-left-color: rgba(255, 255, 255, 0.2);
}

.spinner-wrapper.small .spinner {
    width: 24px;
    height: 24px;
    border-width: 2px;
}

.spinner-wrapper.large .spinner {
    width: 60px;
    height: 60px;
    border-width: 4px;
}

/* Safari */
@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}/* Cyberpunk Operator Identity & Telemetry Audit Dashboard CSS */

.profile-page-wrapper {
  width: 100%;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  background-color: var(--bg-obsidian, #080a0f);
  color: var(--text-muted, #94a3b8);
  font-family: var(--font-body, "Inter", sans-serif);
  padding: 7rem 2rem 4rem;
}

/* Background Cyber Grid & Ambient Glow */
.profile-page-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(56, 189, 248, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(56, 189, 248, 0.04) 1px, transparent 1px);
  background-size: 50px 50px;
  z-index: 0;
  pointer-events: none;
}

.profile-page-wrapper::after {
  content: "";
  position: absolute;
  top: 15%;
  left: 5%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.1) 0%, rgba(139, 92, 246, 0.05) 50%, transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
  z-index: 0;
  pointer-events: none;
}

.profile-container {
  width: 100%;
  max-width: 1350px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.profile-card {
  position: relative;
  z-index: 2;
  background: rgba(14, 21, 36, 0.75);
  border: 1px solid rgba(56, 189, 248, 0.25);
  border-radius: 20px;
  padding: 2.5rem;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 30px rgba(56, 189, 248, 0.08);
}

.profile-header-compact {
  margin-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.header-text h1 {
  font-family: var(--font-display, "Space Grotesk", sans-serif);
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
  color: var(--text-bright, #f8fafc);
  letter-spacing: -0.02em;
  text-shadow: 0 0 20px rgba(56, 189, 248, 0.2);
}

.greeting-text {
  font-family: var(--font-body, "Inter", sans-serif);
  font-size: 1.05rem;
  color: var(--text-muted, #94a3b8);
}

.tier-badge {
  padding: 0.5rem 1.25rem;
  background: rgba(56, 189, 248, 0.15);
  border: 1px solid var(--text-cyan, #38bdf8);
  color: var(--text-cyan, #38bdf8);
  border-radius: 8px;
  font-family: var(--font-mono, "JetBrains Mono", monospace);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  box-shadow: 0 0 15px rgba(56, 189, 248, 0.25);
}

.tier-badge.super_pro {
  background: rgba(139, 92, 246, 0.2);
  border-color: #c084fc;
  color: #c084fc;
  box-shadow: 0 0 20px rgba(139, 92, 246, 0.35);
}

/* --- Content Row Layout --- */
.profile-content-row {
  display: flex;
  gap: 3rem;
  align-items: flex-start;
}

/* Left Sidebar: Operator Settings */
.settings-column {
  width: 380px;
  flex-shrink: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  padding-right: 2.5rem;
}

/* Right Content: Telemetry Analytics */
.analytics-column {
  flex-grow: 1;
  min-width: 0;
}

@media (max-width: 1024px) {
  .profile-content-row {
    flex-direction: column;
    gap: 3rem;
  }

  .settings-column {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-right: 0;
    padding-bottom: 2.5rem;
  }
}

.section-title {
  font-family: var(--font-mono, "JetBrains Mono", monospace);
  font-size: 0.8rem;
  text-transform: uppercase;
  color: var(--text-cyan, #38bdf8);
  letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
  font-weight: 700;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(56, 189, 248, 0.2);
}

.info-group,
.sec-item {
  margin-bottom: 1.25rem;
}

.info-group label,
.sec-item label {
  display: block;
  font-family: var(--font-mono, "JetBrains Mono", monospace);
  font-size: 0.75rem;
  color: var(--text-muted, #94a3b8);
  margin-bottom: 0.3rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.info-group .info-value {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-bright, #f8fafc);
}

.section-block {
  margin-bottom: 2.5rem;
}

/* Hardware Usage Status Box */
.usage-card {
  background: rgba(8, 10, 15, 0.85);
  border: 1px solid rgba(56, 189, 248, 0.25);
  padding: 1.5rem;
  border-radius: 14px;
  margin-bottom: 2.5rem;
  box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.6);
}

.usage-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.85rem;
  align-items: center;
}

.usage-header h3 {
  font-family: var(--font-display, "Space Grotesk", sans-serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-bright, #f8fafc);
  margin: 0;
}

.limit-label {
  font-family: var(--font-mono, "JetBrains Mono", monospace);
  font-size: 0.8rem;
  color: var(--text-cyan, #38bdf8);
  font-weight: 600;
}

.progress-bar-container {
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 0.75rem;
}

.progress-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #0284c7, #38bdf8);
  border-radius: 4px;
  transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0 12px rgba(56, 189, 248, 0.5);
}

.usage-sub {
  font-family: var(--font-mono, "JetBrains Mono", monospace);
  font-size: 0.75rem;
  color: #64748b;
  margin: 0;
}

/* Security */
.security-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.sec-item span {
  font-family: var(--font-mono, "JetBrains Mono", monospace);
  font-size: 0.95rem;
  color: var(--text-bright, #f8fafc);
  font-weight: 600;
}

.profile-input {
  width: 100%;
  padding: 0.9rem 1.2rem;
  background: rgba(8, 10, 15, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  color: var(--text-bright, #f8fafc);
  font-family: var(--font-mono, "JetBrains Mono", monospace);
  font-size: 0.9rem;
  margin-bottom: 0.85rem;
  transition: all 0.25s ease;
}

.profile-input::placeholder {
  color: rgba(148, 163, 184, 0.35);
}

.profile-input:focus {
  outline: none;
  border-color: var(--text-cyan, #38bdf8);
  background: rgba(8, 10, 15, 0.95);
  box-shadow: 0 0 15px rgba(56, 189, 248, 0.2);
}

.password-block {
  background: transparent;
  border: none;
  padding: 0;
  margin-bottom: 2.5rem;
}

.update-btn {
  width: 100%;
  margin-top: 0.5rem;
  padding: 0.9rem;
  border-radius: 10px;
  border: 1px solid rgba(56, 189, 248, 0.5);
  background: linear-gradient(135deg, #0284c7 0%, #2563eb 100%);
  color: white;
  font-family: var(--font-display, "Space Grotesk", sans-serif);
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 15px rgba(37, 99, 235, 0.3);
}

.update-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 0 25px rgba(56, 189, 248, 0.5);
}

.logout-btn {
  background: rgba(8, 10, 15, 0.8);
  color: var(--text-muted, #94a3b8);
  border: 1px solid rgba(255, 255, 255, 0.12);
  width: 100%;
  font-family: var(--font-display, "Space Grotesk", sans-serif);
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
  padding: 0.85rem;
  border-radius: 10px;
  transition: all 0.25s ease;
  margin-top: 1rem;
  cursor: pointer;
}

.logout-btn:hover {
  background: rgba(239, 68, 68, 0.15) !important;
  border-color: #ef4444;
  color: #ef4444;
  box-shadow: 0 0 15px rgba(239, 68, 68, 0.25);
}

.delete-btn {
  width: 100%;
  margin-top: 0.75rem;
  padding: 0.85rem;
  font-family: var(--font-display, "Space Grotesk", sans-serif);
  font-size: 0.9rem;
  border-radius: 10px;
  transition: all 0.25s ease;
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.35);
  font-weight: 600;
  cursor: pointer;
}

.delete-btn:hover {
  background: #dc2626;
  border-color: #dc2626;
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 0 20px rgba(220, 38, 38, 0.4);
}

/* Notifications */
.message {
  padding: 0.85rem;
  margin-bottom: 1.5rem;
  border-radius: 10px;
  font-family: var(--font-mono, "JetBrains Mono", monospace);
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
}

.message.success {
  background: rgba(16, 185, 129, 0.15);
  color: #10b981;
  border: 1px solid rgba(16, 185, 129, 0.4);
}

.message.error {
  background: rgba(239, 68, 68, 0.15);
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.4);
}

/* Analytics Dashboard */
.analytics-section-inner {
  width: 100%;
}

.charts-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 1400px) {
  .charts-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.chart-card {
  background: rgba(8, 10, 15, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 1.75rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.chart-card h4 {
  font-family: var(--font-display, "Space Grotesk", sans-serif);
  font-size: 1.05rem;
  color: var(--text-bright, #f8fafc);
  font-weight: 700;
  margin-bottom: 1.5rem;
  align-self: flex-start;
}

.no-data-placeholder {
  text-align: center;
  padding: 5rem 2rem;
  background: rgba(8, 10, 15, 0.6);
  border-radius: 16px;
  border: 1px dashed rgba(255, 255, 255, 0.15);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.no-data-placeholder h3 {
  font-family: var(--font-display, "Space Grotesk", sans-serif);
  font-size: 1.4rem;
  color: var(--text-bright, #f8fafc);
  margin-bottom: 0.5rem;
}

/* Delete Confirmation Modal */
.modal-backdrop {
  z-index: 9999;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.delete-modal-content {
  background: rgba(14, 21, 36, 0.95);
  padding: 2.5rem;
  border-radius: 20px;
  width: 90%;
  max-width: 440px;
  text-align: center;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.8), 0 0 40px rgba(239, 68, 68, 0.2);
  border: 1px solid rgba(239, 68, 68, 0.4);
}

.delete-modal-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.delete-modal-content h3 {
  font-family: var(--font-display, "Space Grotesk", sans-serif);
  margin: 0 0 0.75rem 0;
  color: var(--text-bright, #f8fafc);
  font-size: 1.5rem;
  font-weight: 700;
}

.delete-modal-content p {
  color: var(--text-muted, #94a3b8);
  font-size: 0.95rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.delete-modal-actions {
  display: flex;
  gap: 1rem;
}

.delete-modal-actions button {
  flex: 1;
  padding: 0.9rem;
  border-radius: 10px;
  font-family: var(--font-display, "Space Grotesk", sans-serif);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: all 0.25s ease;
}

.cancel-btn {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-bright, #f8fafc);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.cancel-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}

.confirm-delete-btn {
  background: #ef4444;
  color: white;
  box-shadow: 0 0 15px rgba(239, 68, 68, 0.4);
}

.confirm-delete-btn:hover {
  background: #dc2626;
  box-shadow: 0 0 25px rgba(239, 68, 68, 0.6);
}

@media (max-width: 640px) {
  .profile-page-wrapper {
    padding: 6rem 1rem 3rem;
  }

  .profile-card {
    padding: 1.5rem;
  }

  .delete-modal-actions {
    flex-direction: column;
  }
}/* Cyberpunk Terminal Telemetry Table Theme */
.history-table-container {
  background: rgba(8, 10, 15, 0.85);
  border: 1px solid rgba(56, 189, 248, 0.25);
  border-radius: 16px;
  padding: 1.75rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  margin-top: 2rem;
}

.table-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.table-header h3 {
  font-family: var(--font-display, "Space Grotesk", sans-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-bright, #f8fafc);
  margin: 0;
}

.count-label {
  font-family: var(--font-mono, "JetBrains Mono", monospace);
  font-size: 0.8rem;
  color: var(--text-cyan, #38bdf8);
  background: rgba(56, 189, 248, 0.12);
  border: 1px solid rgba(56, 189, 248, 0.3);
  padding: 0.3rem 0.85rem;
  border-radius: 6px;
  letter-spacing: 0.05em;
  box-shadow: 0 0 10px rgba(56, 189, 248, 0.15);
}

.table-responsive {
  overflow-x: auto;
}

.scan-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.scan-table th {
  text-align: left;
  padding: 1rem;
  font-family: var(--font-mono, "JetBrains Mono", monospace);
  font-weight: 600;
  color: var(--text-cyan, #38bdf8);
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  border-bottom: 1px solid rgba(56, 189, 248, 0.2);
}

.scan-table td {
  padding: 1.15rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--text-bright, #f8fafc);
  font-family: var(--font-body, "Inter", sans-serif);
}

.scan-table tr:last-child td {
  border-bottom: none;
}

.date-cell {
  white-space: nowrap;
  font-family: var(--font-mono, "JetBrains Mono", monospace);
  font-size: 0.82rem;
  color: var(--text-muted, #94a3b8) !important;
}

.url-cell {
  max-width: 220px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-family: var(--font-mono, "JetBrains Mono", monospace);
  font-weight: 500;
  color: var(--text-bright, #f8fafc) !important;
}

.persona-tag {
  background: rgba(139, 92, 246, 0.15);
  color: #c084fc;
  padding: 0.3rem 0.65rem;
  border-radius: 6px;
  font-family: var(--font-mono, "JetBrains Mono", monospace);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 1px solid rgba(139, 92, 246, 0.3);
}

.score-cell {
  font-weight: 700;
  font-family: var(--font-mono, "JetBrains Mono", monospace);
}

.score-badge {
  display: inline-block;
  font-size: 0.95rem;
  font-weight: 700;
  background: transparent !important;
  padding: 0;
  border: none;
}

.score-badge.high {
  color: #10b981;
  text-shadow: 0 0 10px rgba(16, 185, 129, 0.4);
}

.score-badge.med {
  color: #f59e0b;
  text-shadow: 0 0 10px rgba(245, 158, 11, 0.4);
}

.score-badge.low {
  color: #ef4444;
  text-shadow: 0 0 10px rgba(239, 68, 68, 0.4);
}

.action-col,
.action-cell {
  text-align: right;
}

.view-btn {
  background: rgba(56, 189, 248, 0.1);
  border: 1px solid rgba(56, 189, 248, 0.3);
  color: var(--text-cyan, #38bdf8);
  padding: 0.45rem 0.9rem;
  font-family: var(--font-mono, "JetBrains Mono", monospace);
  font-size: 0.8rem;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.view-btn:hover {
  background: var(--text-cyan, #38bdf8);
  color: #080a0f;
  box-shadow: 0 0 12px rgba(56, 189, 248, 0.5);
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
  font-family: var(--font-mono, "JetBrains Mono", monospace);
  font-size: 0.85rem;
  color: var(--text-muted, #94a3b8);
}

.pagination button {
  background: rgba(8, 10, 15, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  cursor: pointer;
  color: var(--text-bright, #f8fafc);
  transition: all 0.2s ease;
}

.pagination button:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.pagination button:not(:disabled):hover {
  background: rgba(56, 189, 248, 0.15);
  border-color: var(--text-cyan, #38bdf8);
  color: var(--text-cyan, #38bdf8);
}/* Cyberpunk Terminal Diagnostic Detail Modal CSS */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2000;
}

.modal-content-dashboard {
  background: rgba(14, 21, 36, 0.95);
  border: 1px solid rgba(56, 189, 248, 0.3);
  width: 90%;
  max-width: 850px;
  max-height: 88vh;
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.8), 0 0 40px rgba(56, 189, 248, 0.15);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.modal-header {
  background: rgba(8, 10, 15, 0.8);
  padding: 1.5rem 2.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.modal-header h2 {
  font-family: var(--font-display, "Space Grotesk", sans-serif);
  font-size: 1.6rem;
  color: var(--text-bright, #f8fafc);
  margin: 0 0 0.35rem 0;
  font-weight: 700;
  text-shadow: 0 0 15px rgba(56, 189, 248, 0.2);
}

.modal-url {
  color: var(--text-cyan, #38bdf8);
  font-family: var(--font-mono, "JetBrains Mono", monospace);
  font-size: 0.9rem;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.modal-url:hover {
  color: #7dd3fc;
  text-decoration: underline;
}

.close-btn {
  background: transparent;
  border: none;
  font-size: 2rem;
  line-height: 1;
  color: var(--text-muted, #94a3b8);
  cursor: pointer;
  padding: 0;
  margin-left: 1rem;
  transition: all 0.2s ease;
}

.close-btn:hover {
  color: #ef4444;
  transform: rotate(90deg);
}

.modal-body {
  padding: 2.25rem;
  overflow-y: auto;
  flex-grow: 1;
  background: rgba(8, 10, 15, 0.6);
  color: var(--text-muted, #94a3b8);
}

/* Stats Row */
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.25rem;
}

.stat-card {
  background: rgba(14, 21, 36, 0.8);
  padding: 1.35rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.5);
}

.stat-card .label {
  font-family: var(--font-mono, "JetBrains Mono", monospace);
  font-size: 0.75rem;
  color: var(--text-cyan, #38bdf8);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.6rem;
}

.stat-card .value {
  font-family: var(--font-mono, "JetBrains Mono", monospace);
  font-size: 2.2rem;
  font-weight: 700;
}

.stat-card .value.high {
  color: #10b981;
  text-shadow: 0 0 12px rgba(16, 185, 129, 0.4);
}

.stat-card .value.med {
  color: #f59e0b;
  text-shadow: 0 0 12px rgba(245, 158, 11, 0.4);
}

.stat-card .value.low {
  color: #ef4444;
  text-shadow: 0 0 12px rgba(239, 68, 68, 0.4);
}

.stat-card .value-text {
  font-family: var(--font-mono, "JetBrains Mono", monospace);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-bright, #f8fafc);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Detail Sections */
.detail-section {
  background: rgba(14, 21, 36, 0.6);
  padding: 1.75rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 2rem;
}

.detail-section h3 {
  font-family: var(--font-display, "Space Grotesk", sans-serif);
  font-size: 1.2rem;
  color: var(--text-bright, #f8fafc);
  margin-top: 0;
  margin-bottom: 1.25rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(56, 189, 248, 0.2);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.summary-text {
  color: var(--text-bright, #f8fafc);
  line-height: 1.65;
  font-size: 1rem;
  margin-bottom: 1.75rem;
}

.strengths-weaknesses {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.sw-col h4 {
  font-family: var(--font-mono, "JetBrains Mono", monospace);
  font-size: 0.9rem;
  color: var(--text-cyan, #38bdf8);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.85rem;
}

.sw-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sw-col li {
  font-size: 0.95rem;
  color: #cbd5e1;
  margin-bottom: 0.65rem;
  padding-left: 0.5rem;
  line-height: 1.5;
  border-left: 2px solid rgba(56, 189, 248, 0.4);
}

/* Suggestions */
.suggestions-list {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.suggestion-cat-title {
  font-family: var(--font-mono, "JetBrains Mono", monospace);
  font-size: 0.85rem;
  color: var(--text-cyan, #38bdf8);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.6rem;
  font-weight: 700;
}

.suggestion-group ul {
  list-style: disc;
  padding-left: 1.5rem;
  color: #cbd5e1;
  font-size: 0.95rem;
  line-height: 1.65;
}

@media (max-width: 768px) {
  .stats-row {
    grid-template-columns: 1fr;
  }

  .strengths-weaknesses {
    grid-template-columns: 1fr;
  }

  .modal-content-dashboard {
    width: 100%;
    height: 100%;
    max-height: 100%;
    border-radius: 0;
  }
}