/* -------------------------------------------------------------
 * LOST SIGNAL STUDIOS - CORPORATE WEBSITE DESIGN SYSTEM
 * Style Concept: Broadcast Noir // CYTO Ecosystem
 * ------------------------------------------------------------- */

/* Define CSS Variables */
:root {
  --bg-black: #050607;
  --text-white: #E8E1D2;
  --accent-red: #D8342A;
  --static-gray: #55585D;
  --glow-green: #75FF9A;
  --border-light: rgba(85, 88, 93, 0.3);
  --border-heavy: rgba(85, 88, 93, 0.7);
  --crt-flicker-opacity: 0.15;
  --transition-speed: 0.25s;
}

/* Reset and Core Layout */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  width: 100%;
  height: 100%;
  background-color: var(--bg-black);
  color: var(--text-white);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  overflow: hidden; /* Scroll handled in container */
}

/* -------------------------------------------------------------
 * CRT Monitor Effects & Background
 * ------------------------------------------------------------- */

/* Interactive Canvas Background */
#signal-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  opacity: 0.85;
}

/* CRT Scanline Filter */
.crt-filter {
  position: relative;
}

.crt-filter::after {
  content: " ";
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.25) 50%), linear-gradient(90deg, rgba(255, 0, 0, 0.06), rgba(0, 255, 0, 0.02), rgba(0, 0, 255, 0.06));
  z-index: 99999;
  background-size: 100% 3px, 6px 100%;
  pointer-events: none;
}

/* Dynamic Static Overlay */
.overlay-static {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  z-index: 2;
  pointer-events: none;
  opacity: 0.06;
  animation: static-flicker 0.15s infinite;
}

@keyframes static-flicker {
  0% { background-image: radial-gradient(circle, var(--static-gray) 10%, transparent 11%); }
  50% { background-image: radial-gradient(circle, var(--static-gray) 20%, transparent 21%); }
  100% { background-image: radial-gradient(circle, var(--static-gray) 15%, transparent 16%); }
}

/* -------------------------------------------------------------
 * Dashboard Layout
 * ------------------------------------------------------------- */

.terminal-screen {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  height: 100vh;
  padding: 1.5rem;
  max-width: 1600px;
  margin: 0 auto;
  border-left: 1px solid var(--border-light);
  border-right: 1px solid var(--border-light);
  box-shadow: 0 0 50px rgba(0,0,0,0.8);
  animation: terminal-boot 0.8s ease-out;
}

@keyframes terminal-boot {
  0% {
    opacity: 0;
    transform: scale(0.98) translateY(10px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* Header styling */
.terminal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  border-bottom: 2px solid var(--static-gray);
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}

.brand-lockup {
  display: flex;
  align-items: center;
  min-width: 0;
}

.header-logo-link {
  display: inline-block;
  text-decoration: none;
  cursor: pointer;
  min-width: 0;
}

.horizontal-logo-img {
  height: 52px;
  width: min(300px, 100%);
  display: block;
}

.telemetry-panel {
  display: flex;
  gap: 1.5rem;
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.85rem;
  color: var(--static-gray);
}

.telemetry-item {
  display: flex;
  gap: 0.5rem;
}

.telemetry-label {
  color: var(--static-gray);
}

.telemetry-value {
  color: var(--text-white);
  font-weight: bold;
}

.text-green {
  color: var(--glow-green) !important;
}

.text-red {
  color: var(--accent-red) !important;
}

.text-gray {
  color: var(--static-gray) !important;
}

/* -------------------------------------------------------------
 * Frequency Selector (Navigation)
 * ------------------------------------------------------------- */

.frequency-tuner {
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 0.8rem;
  margin-bottom: 1.5rem;
}

.tuning-dial-label {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.75rem;
  letter-spacing: 2px;
  color: var(--static-gray);
  margin-bottom: 0.5rem;
}

.frequency-list {
  display: flex;
  list-style: none;
  justify-content: space-between;
  gap: 0.5rem;
  overflow-x: auto;
  scrollbar-width: none;
}

.frequency-list::-webkit-scrollbar {
  display: none;
}

.frequency-list li {
  flex: 1;
  min-width: 140px;
}

.freq-btn {
  width: 100%;
  background: rgba(5, 6, 7, 0.9);
  border: 1px solid var(--border-light);
  padding: 0.8rem 0.5rem;
  text-align: left;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-speed) ease;
  font-family: 'Share Tech Mono', monospace;
  outline: none;
}

.freq-btn:hover {
  border-color: var(--accent-red);
  background: rgba(216, 52, 42, 0.05);
}

.freq-btn.active {
  border-color: var(--glow-green);
  box-shadow: 0 0 10px rgba(117, 255, 154, 0.15);
  background: rgba(117, 255, 154, 0.03);
}

.freq-num {
  font-size: 1.25rem;
  font-weight: bold;
  color: var(--static-gray);
  line-height: 1;
}

.freq-btn.active .freq-num {
  color: var(--glow-green);
}

.freq-btn:hover .freq-num {
  color: var(--accent-red);
}

.freq-label {
  font-size: 0.65rem;
  letter-spacing: 1px;
  color: var(--text-white);
  margin-top: 0.3rem;
  text-transform: uppercase;
}

/* -------------------------------------------------------------
 * Main Layout & Sections
 * ------------------------------------------------------------- */

.terminal-body {
  flex: 1;
  overflow-y: auto;
  padding-right: 0.5rem;
  scrollbar-width: thin;
  scrollbar-color: var(--static-gray) var(--bg-black);
}

.terminal-body::-webkit-scrollbar {
  width: 6px;
}

.terminal-body::-webkit-scrollbar-track {
  background: var(--bg-black);
}

.terminal-body::-webkit-scrollbar-thumb {
  background-color: var(--static-gray);
  border-radius: 3px;
}

/* Section Display States & Animation */
.frequency-section {
  display: none;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.frequency-section.active-section {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

/* Glitch Wipes when tuning */
.tuning-glitch {
  animation: tune-static-glitch 0.2s steps(2) forwards;
}

@keyframes tune-static-glitch {
  0% { filter: blur(0px) contrast(1); opacity: 1; }
  50% { filter: blur(5px) contrast(3); opacity: 0.3; transform: scaleX(1.05) skewX(10deg); }
  100% { filter: blur(0px) contrast(1); opacity: 1; }
}

/* -------------------------------------------------------------
 * Page Content Styles
 * ------------------------------------------------------------- */

.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 0;
}

.section-title {
  font-family: 'Space Grotesk', 'Syne', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  border-left: 4px solid var(--accent-red);
  padding-left: 1rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.section-intro {
  color: var(--static-gray);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 800px;
}

/* --- SECTION 1: HERO / INITIALIZATION --- */
.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  min-height: 55vh;
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 0;
}

.hero-main-title {
  font-family: 'Syne', sans-serif;
  font-size: 4rem;
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -2px;
  color: var(--text-white);
  margin-bottom: 1.5rem;
  text-shadow: 0 0 15px rgba(232, 225, 210, 0.1);
}

/* Text glow styling */
.text-glow {
  text-shadow: 0 0 10px rgba(232, 225, 210, 0.15);
}

.tagline-container {
  display: flex;
  font-family: 'Share Tech Mono', monospace;
  font-size: 1.6rem;
  font-weight: bold;
  color: var(--accent-red);
  margin-bottom: 1.5rem;
  align-items: center;
  height: 2.2rem;
}

.tagline-scroller {
  padding: 0 0.8rem;
  color: var(--glow-green);
  text-shadow: 0 0 8px rgba(117, 255, 90, 0.2);
}

.tagline-bracket {
  color: var(--static-gray);
  font-size: 2rem;
}

.hero-description {
  font-size: 1.25rem;
  line-height: 1.6;
  color: #B2ACA0;
  margin-bottom: 2.5rem;
  max-width: 750px;
}

/* Visualizer Widget */
.visualizer-container {
  width: 100%;
  border: 1px solid var(--border-light);
  background: rgba(5, 6, 7, 0.8);
  padding: 1rem;
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.8rem;
}

.osc-label {
  color: var(--static-gray);
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
}

.osc-box {
  width: 100%;
  height: 80px;
  border: 1px solid rgba(85, 88, 93, 0.2);
  margin-bottom: 0.8rem;
  background: rgba(0, 0, 0, 0.4);
}

#osc-wave-canvas {
  width: 100%;
  height: 100%;
  display: block;
}

.grid-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  color: var(--static-gray);
}

.grid-stats div span {
  color: var(--text-white);
  font-weight: bold;
}

/* --- SECTION 2: ABOUT / TRANSMISSIONS --- */
.about-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 3rem;
  align-items: start;
}

.about-text-column p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #B2ACA0;
  margin-bottom: 1.5rem;
}

.about-text-column .lead-text {
  font-size: 1.25rem;
  color: var(--text-white);
  line-height: 1.6;
}

.callout-box {
  background: rgba(216, 52, 42, 0.02);
  border: 1px solid var(--border-light);
  padding: 1.5rem;
  margin-top: 2rem;
  font-family: 'Inter', sans-serif;
}

.warning-border {
  border-left: 3px solid var(--accent-red);
}

.callout-title {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.95rem;
  font-weight: bold;
  letter-spacing: 1px;
  margin-bottom: 0.8rem;
}

.callout-body {
  font-size: 0.85rem;
  line-height: 1.6;
  color: #B2ACA0;
}

.hud-box {
  border: 1px solid var(--border-light);
  background: rgba(5,6,7,0.7);
  padding: 1.5rem;
  font-family: 'Share Tech Mono', monospace;
  margin-bottom: 2rem;
}

.hud-header {
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
  color: var(--static-gray);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.8rem;
}

.telemetry-list {
  list-style: none;
  font-size: 0.85rem;
}

.telemetry-list li {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.6rem;
  border-bottom: 1px dashed rgba(85, 88, 93, 0.1);
  padding-bottom: 0.3rem;
}

.telemetry-list li strong {
  color: var(--static-gray);
  font-weight: normal;
}

.mascot-emblem {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-light);
  padding: 2rem;
  background: rgba(0,0,0,0.3);
}

.mascot-svg {
  width: 150px;
  height: 150px;
  margin-bottom: 1rem;
}

.mascot-caption {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.75rem;
  color: var(--static-gray);
  letter-spacing: 1px;
}

/* --- SECTION 3: GAMES & PROJECTS --- */
.project-panels {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 1rem;
}

.project-card {
  border: 1px solid var(--border-heavy);
  background: rgba(5, 6, 7, 0.9);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  position: relative;
}

.project-status-tag {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.7rem;
  padding: 0.2rem 0.6rem;
  letter-spacing: 1px;
}

.border-green {
  border: 1px solid var(--glow-green);
}

.border-red {
  border: 1px solid var(--accent-red);
}

.project-header {
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 1rem;
  margin-bottom: 1.5rem;
  padding-right: 8rem; /* clear status tag */
}

.project-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-white);
}

.project-id {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.75rem;
  color: var(--static-gray);
  display: block;
  margin-top: 0.2rem;
}

.project-desc {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #B2ACA0;
  margin-bottom: 1.5rem;
  flex: 1;
}

.project-meta-box {
  background: rgba(0,0,0,0.4);
  border: 1px solid var(--border-light);
  padding: 1rem;
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.8rem;
  margin-bottom: 1.5rem;
}

.meta-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.4rem;
}

.meta-row:last-child {
  margin-bottom: 0;
}

.meta-lbl {
  color: var(--static-gray);
}

.meta-val {
  color: var(--text-white);
  font-weight: bold;
}

.project-code-snip {
  background: #000;
  border-left: 2px solid var(--glow-green);
  padding: 0.8rem;
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.75rem;
  color: var(--glow-green);
  overflow-x: auto;
}

/* Redacted/Classified Styling */
.redacted-card {
  border-color: rgba(216, 52, 42, 0.4);
}

.redacted-overlay-text {
  font-family: 'Share Tech Mono', monospace;
  color: var(--accent-red);
  font-size: 1.25rem;
  font-weight: bold;
  border: 2px solid var(--accent-red);
  padding: 0.5rem;
  text-align: center;
  margin-bottom: 1.5rem;
  background: rgba(216, 52, 42, 0.05);
  letter-spacing: 2px;
}

.redacted {
  background-color: #000;
  color: #000 !important;
  display: inline-block;
  padding: 0 4px;
  user-select: none;
  cursor: help;
  transition: color var(--transition-speed) ease;
}

.redacted:hover {
  color: rgba(232, 225, 210, 0.3) !important;
}

.classified-warning {
  border: 1px dashed var(--accent-red);
  padding: 1rem;
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.75rem;
  text-align: center;
  color: var(--accent-red);
  line-height: 1.5;
}

/* Fast blink utility */
.blink-fast {
  animation: blink 0.5s infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* --- SECTION 4: PRODUCTION PHILOSOPHY --- */
.philosophy-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: start;
  margin-top: 1rem;
}

.philosophy-text h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.4rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.philosophy-text p {
  font-size: 1.02rem;
  line-height: 1.7;
  color: #B2ACA0;
  margin-bottom: 1.5rem;
}

.table-container {
  border: 1px solid var(--border-light);
  background: rgba(5,6,7,0.7);
  overflow-x: auto;
}

.telemetry-table {
  width: 100%;
  border-collapse: collapse;
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.85rem;
  text-align: left;
}

.telemetry-table th {
  background: rgba(85, 88, 93, 0.15);
  color: var(--static-gray);
  padding: 1rem;
  border-bottom: 2px solid var(--static-gray);
  font-weight: bold;
}

.telemetry-table td {
  padding: 1rem;
  border-bottom: 1px solid var(--border-light);
  color: var(--text-white);
}

.telemetry-table tr:hover {
  background: rgba(255, 255, 255, 0.02);
}

/* --- SECTION 5: INQUIRY TERMINAL (CONTACT) --- */
.contact-terminal {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  border: 1px solid var(--static-gray);
  background: #000;
  box-shadow: 0 10px 40px rgba(0,0,0,0.9);
}

.terminal-bar {
  background: rgba(85, 88, 93, 0.15);
  border-bottom: 1px solid var(--static-gray);
  padding: 0.6rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}

.red-dot { background-color: var(--accent-red); }
.yellow-dot { background-color: #e6c229; }
.green-dot { background-color: var(--glow-green); }

.terminal-title {
  margin-left: 0.5rem;
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.75rem;
  color: var(--static-gray);
  letter-spacing: 1px;
}

.terminal-form-container {
  padding: 2rem;
}

.form-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  font-family: 'Share Tech Mono', monospace;
  font-size: 1.05rem;
}

.flex-column {
  flex-direction: column;
  align-items: flex-start;
}

.term-prompt {
  color: var(--glow-green);
  font-weight: bold;
  user-select: none;
}

.form-row input[type="text"],
.form-row input[type="email"],
.form-row textarea {
  flex: 1;
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px dashed var(--border-heavy);
  color: var(--text-white);
  font-family: 'Share Tech Mono', monospace;
  font-size: 1.05rem;
  padding: 0.4rem 0.2rem;
  outline: none;
  transition: border-bottom var(--transition-speed) ease;
}

.form-row textarea {
  border: 1px dashed var(--border-heavy);
  margin-top: 0.5rem;
  padding: 0.8rem;
  resize: vertical;
}

.form-row input:focus,
.form-row textarea:focus {
  border-color: var(--glow-green);
  background: rgba(117, 255, 154, 0.01);
}

.form-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 2rem;
}

.submit-transmission-btn {
  background: transparent;
  border: 1px solid var(--accent-red);
  color: var(--accent-red);
  padding: 0.8rem 2rem;
  font-family: 'Share Tech Mono', monospace;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  outline: none;
  transition: all var(--transition-speed) ease;
  letter-spacing: 1px;
}

.submit-transmission-btn:hover {
  background: var(--accent-red);
  color: var(--bg-black);
  box-shadow: 0 0 15px rgba(216, 52, 42, 0.4);
}

.terminal-log-box {
  margin-top: 2rem;
  border-top: 1px dashed var(--border-light);
  padding-top: 1.5rem;
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.8rem;
  min-height: 80px;
  max-height: 150px;
  overflow-y: auto;
  line-height: 1.6;
}

.log-line {
  margin-bottom: 0.4rem;
}

/* -------------------------------------------------------------
 * Footer Elements
 * ------------------------------------------------------------- */

.terminal-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border-light);
  padding-top: 1rem;
  margin-top: 1.5rem;
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.75rem;
  color: var(--static-gray);
}

.footer-link {
  color: var(--static-gray);
  text-decoration: underline;
  transition: color var(--transition-speed) ease;
}

.footer-link:hover {
  color: var(--glow-green);
}

/* -------------------------------------------------------------
 * Animations and Pulse Utility
 * ------------------------------------------------------------- */

.pulse-slow {
  animation: pulse 2.5s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.45; }
}

/* -------------------------------------------------------------
 * Responsive Design (Media Queries)
 * ------------------------------------------------------------- */

@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .philosophy-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .terminal-screen {
    padding: 0.8rem;
    height: auto;
    min-height: 100vh;
    overflow-y: visible;
  }

  .terminal-header {
    align-items: flex-start;
  }

  .brand-lockup {
    flex: 1 1 auto;
  }

  .horizontal-logo-img {
    width: min(270px, 100%);
    height: auto;
  }
  
  .terminal-body {
    overflow-y: visible;
    height: auto;
  }
  
  .telemetry-panel {
    flex: 0 1 96px;
    flex-direction: column;
    font-size: 0.75rem;
    gap: 0.35rem;
    align-items: flex-end;
    text-align: right;
    overflow: hidden;
  }

  .telemetry-item {
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.25rem;
  }
  
  .hide-mobile {
    display: none;
  }
  
  .frequency-list {
    gap: 0.3rem;
  }
  
  .frequency-list li {
    min-width: 120px;
  }
  
  .freq-btn {
    padding: 0.6rem 0.4rem;
  }
  
  .freq-num {
    font-size: 1.05rem;
  }
  
  .hero-main-title {
    font-size: 2.5rem;
    letter-spacing: -1px;
  }
  
  .tagline-container {
    font-size: 1.15rem;
    height: auto;
  }
  
  .tagline-bracket {
    font-size: 1.4rem;
  }
  
  .hero-description {
    font-size: 1.05rem;
  }
  
  .grid-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }
  
  .project-panels {
    grid-template-columns: 1fr;
  }
  
  .terminal-form-container {
    padding: 1rem;
  }
  
  .form-row {
    font-size: 0.95rem;
    margin-bottom: 1.2rem;
  }
  
  .form-row input,
  .form-row textarea {
    font-size: 0.95rem;
  }
  
  .terminal-footer {
    flex-direction: column;
    gap: 0.8rem;
    text-align: center;
    padding-bottom: 1rem;
  }
}

@media (max-width: 480px) {
  .terminal-header {
    flex-direction: column;
  }

  .telemetry-panel {
    width: 100%;
    flex: none;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: left;
  }

  .horizontal-logo-img {
    width: min(300px, 100%);
  }
}

/* Oscilloscope Controls & Retro Sliders */
.osc-controls {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 1.2rem;
  padding: 0.8rem;
  background: rgba(0,0,0,0.3);
  border: 1px solid rgba(85, 88, 93, 0.2);
}

.control-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.control-label {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.75rem;
  color: var(--static-gray);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.control-label span {
  color: var(--glow-green);
  font-weight: bold;
}

.retro-slider {
  -webkit-appearance: none;
  width: 100%;
  height: 4px;
  background: var(--static-gray);
  outline: none;
  border: none;
  cursor: pointer;
}

.retro-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 12px;
  height: 12px;
  background: var(--glow-green);
  cursor: pointer;
  border-radius: 0;
  box-shadow: 0 0 5px var(--glow-green);
  transition: transform 0.1s ease;
}

.retro-slider::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

.retro-slider::-moz-range-thumb {
  width: 12px;
  height: 12px;
  background: var(--glow-green);
  cursor: pointer;
  border-radius: 0;
  border: none;
  box-shadow: 0 0 5px var(--glow-green);
  transition: transform 0.1s ease;
}

.retro-slider::-moz-range-thumb:hover {
  transform: scale(1.2);
}

@media (max-width: 600px) {
  .osc-controls {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

/* Core Creative Pillars Section 105.9 */
.pillars-container {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.pillar-card {
  display: flex;
  gap: 1.5rem;
  border: 1px solid var(--border-light);
  background: rgba(5,6,7,0.8);
  padding: 1.2rem;
  transition: all var(--transition-speed) ease;
}

.pillar-card:hover {
  border-color: var(--accent-red);
  background: rgba(216, 52, 42, 0.02);
}

.pillar-num {
  font-family: 'Share Tech Mono', monospace;
  font-size: 1.5rem;
  font-weight: bold;
}

.pillar-content {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.pillar-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.1rem;
  font-weight: bold;
  letter-spacing: 0.5px;
  color: var(--text-white);
  text-transform: uppercase;
}

.pillar-desc {
  font-size: 0.85rem;
  line-height: 1.5;
  color: #B2ACA0;
}

/* Careers Page Styles */
.career-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 1rem;
}

.job-card {
  border: 1px solid var(--border-heavy);
  background: rgba(5, 6, 7, 0.9);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all var(--transition-speed) ease;
}

.job-card:hover {
  border-color: var(--accent-red);
  background: rgba(216, 52, 42, 0.01);
}

.job-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 1rem;
  margin-bottom: 1.5rem;
}

.job-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-white);
  letter-spacing: -0.5px;
}

.job-code {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.75rem;
  color: var(--static-gray);
  letter-spacing: 1px;
}

.job-desc {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #B2ACA0;
  margin-bottom: 1.5rem;
  flex: 1;
}

.job-requirements {
  list-style: none;
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.85rem;
  color: var(--static-gray);
  margin-bottom: 2rem;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border-light);
}

.job-requirements li {
  margin-bottom: 0.6rem;
  position: relative;
  padding-left: 1.2rem;
}

.job-requirements li::before {
  content: ">";
  position: absolute;
  left: 0;
  color: var(--glow-green);
  font-weight: bold;
}

.job-requirements li:last-child {
  margin-bottom: 0;
}

.apply-link-btn {
  display: inline-block;
  text-align: center;
  text-decoration: none;
  background: transparent;
  border: 1px solid var(--accent-red);
  color: var(--accent-red);
  padding: 0.8rem 1.5rem;
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.9rem;
  font-weight: bold;
  cursor: pointer;
  transition: all var(--transition-speed) ease;
  letter-spacing: 1px;
}

.apply-link-btn:hover {
  background: var(--accent-red);
  color: var(--bg-black);
  box-shadow: 0 0 15px rgba(216, 52, 42, 0.4);
}

@media (max-width: 1024px) {
  .career-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* Audio Telemetry Toggle */
.telemetry-audio-btn {
  background: transparent;
  border: 1px solid var(--static-gray);
  color: var(--static-gray);
  padding: 0.2rem 0.6rem;
  font-size: 0.75rem;
  cursor: pointer;
  transition: all var(--transition-speed) ease;
}

.telemetry-audio-btn:hover {
  border-color: var(--accent-red);
  color: var(--accent-red);
}

.telemetry-audio-btn.active {
  border-color: var(--glow-green);
  color: var(--glow-green);
  box-shadow: 0 0 5px rgba(117, 255, 154, 0.2);
}

/* Press Kit Page Styles */
.press-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 1rem;
}

.press-downloads-column h3,
.press-media-column h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.4rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 0.5rem;
}

.asset-download-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.asset-download-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(0,0,0,0.3);
  border: 1px solid var(--border-light);
  padding: 1rem;
  transition: all var(--transition-speed) ease;
}

.asset-download-card:hover {
  border-color: var(--accent-red);
}

.asset-info {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.asset-name {
  color: var(--text-white);
  font-weight: bold;
  font-size: 0.95rem;
}

.asset-meta {
  font-size: 0.75rem;
  color: var(--static-gray);
}

.media-game-card {
  border: 1px solid var(--border-heavy);
  background: rgba(5,6,7,0.7);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.media-game-card h4 {
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
  letter-spacing: 0.5px;
}

.media-game-card p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #B2ACA0;
  margin-bottom: 1rem;
}

.game-meta {
  font-size: 0.75rem;
  color: var(--static-gray);
  border-top: 1px dashed rgba(85,88,93,0.2);
  padding-top: 0.6rem;
}

@media (max-width: 1024px) {
  .press-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* Button Hovers: Jitter keyframes */
.apply-link-btn:hover,
.submit-transmission-btn:hover,
.freq-btn:hover:not(.active),
#start-decryption-btn:hover {
  animation: button-jitter 0.15s infinite linear;
}

@keyframes button-jitter {
  0% { transform: translate(0, 0) skewX(0deg); }
  20% { transform: translate(-1px, 1px) skewX(-1.5deg); }
  40% { transform: translate(1px, -1px) skewX(1.5deg); }
  60% { transform: translate(-1px, -1px) skewX(0.5deg); }
  80% { transform: translate(1px, 1px) skewX(-0.5deg); }
  100% { transform: translate(0, 0) skewX(0deg); }
}


