/* ==========================================================================
   PLATYPUS SOUND MASTER CONSOLE STYLESHEET
   ========================================================================== */

/* 1. Global Reset: Clears default browser spacing so things look identical everywhere */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* 2. Hardware Console Core Colors & Fonts */
:root {
  --bg-obsidian: #0B0B0C;
  --bg-rack: #1C1D1F;
  --text-silver: #FFFFFF;
  --text-muted: #8E9196;
  --accent-iron: #FF4500;
  --accent-glow: #00FFCC;
  
  --font-display: 'Inter Tight', sans-serif;
  --font-mono: 'Courier Prime', monospace;
  --font-body: 'Inter', sans-serif;
}

/* 3. Base Layout Settings */
body {
  background-color: var(--bg-obsidian);
  color: var(--text-silver);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  padding-top: 80px; /* Leaves space for our fixed top navigation bar */
}

/* 4. Typography Rules */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

p {
  color: var(--text-muted);
  font-weight: 300;
  font-size: 16px;
  margin-bottom: 24px;
}

/* 5. Structural Components */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ==========================================================================
   6. Navigation Bar Styles & Hover Interactions
   ========================================================================== */
.global-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(11, 11, 12, 0.95);
  border-bottom: 1px solid var(--bg-rack);
  z-index: 1000;
  padding: 20px 0;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

/* Base Navigation Link State */
.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.3s ease;
}

/* Hover State */
.nav-links a:hover {
  color: var(--text-silver);
}

/* Active Page State - Console LED Glow */
.nav-links a.current-page {
  color: var(--accent-glow) !important;
  font-weight: 700;
  text-shadow: 0 0 8px rgba(0, 255, 204, 0.4);
}

/* Logo Alignment & Brand Link Styles (PASTED HERE AT THE END) */
.nav-brand-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text-silver);
  font-weight: 700;
  font-size: 16px;
}

.nav-logo {
  height: 32px;
  width: auto;
  display: block;
  /* filter: invert(0.9) brightness(1.2); mix-blend-mode: screen; */
}
/* 7. Reusable Brand Utility Classes */
.studio-mono {
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 13px;
}

/* 8. Elite Mechanical Button Layout */
.mst-bttn {
  display: inline-block;
  background-color: transparent;
  color: var(--text-silver);
  border: 1px solid var(--text-silver);
  padding: 12px 28px;
  font-family: var(--font-mono);
  text-transform: uppercase;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.mst-bttn:hover {
  background-color: var(--accent-iron);
  border-color: var(--accent-iron);
  color: var(--text-silver);
}

/* ==========================================================================
   9. Services Grid Layout
   ========================================================================== */
.services-section {
  padding: 60px 0 100px 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 11fr); /* Creates a perfectly balanced 2-column grid */
  gap: 24px; /* Space between the cards */
  margin-top: 40px;
}

/* Individual Card Blocks */
.service-card {
  background-color: var(--bg-rack);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 40px;
  text-decoration: none; /* Removes underlines from links inside the card */
  display: block;
  transition: all 0.3s ease;
}

/* Hover effects for an interactive rack gear feel */
.service-card:hover {
  border-color: var(--accent-iron);
  transform: translateY(-4px); /* Gently slides the card upward on hover */
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.service-card h3 {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--text-silver);
  margin-bottom: 16px;
  letter-spacing: 1px;
}

.service-card:hover h3 {
  color: var(--accent-glow); /* Text accent color glows up on hover */
}

.service-card p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 0; /* Keeps paragraph spacing tight inside cards */
}

/* Responsive adjustment: Drops to 1 column on small screens (mobile devices) */
@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   10. Global Footer Matrix Layout
   ========================================================================== */
.global-footer {
  background-color: var(--bg-obsidian);
  border-top: 1px solid var(--bg-rack); /* Clean structural divider line separating content */
  padding: 60px 0 40px 0;
  margin-top: 80px; /* Forces spacing below your main body sections */
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap; /* Ensures elements stack gracefully on mobile screens */
  gap: 24px;
}

.footer-copyright {
  color: var(--text-muted);
  font-size: 13px;
}

.footer-links {
  display: flex;
  gap: 24px;
  list-style: none;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

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

/* ==========================================================================
   11. Analog Master Prints Layout Engine
   ========================================================================== */
.flavors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* Creates a distinct 3-column hardware module array */
  gap: 32px;
  margin: 40px 0 80px 0;
}

.flavor-card {
  background-color: var(--bg-rack);
  padding: 32px;
  border-top: 2px solid var(--text-muted);
}

.flavor-card h3 {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--accent-glow);
  margin-bottom: 16px;
}

/* Submission Forms Styling Matrix */
.form-wrapper {
  background-color: var(--bg-rack);
  padding: 48px;
  max-width: 600px;
  margin: 40px auto 80px auto;
  border-radius: 4px;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: var(--text-silver);
  letter-spacing: 1px;
}

.form-input {
  width: 100%;
  background-color: var(--bg-obsidian);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 14px;
  color: var(--text-silver);
  font-family: var(--font-body);
  font-size: 15px;
  transition: border-color 0.3s ease;
}

.form-input:focus {
  outline: none;
  border-color: var(--accent-glow);
}

/* Hard Rules Parameter List Layout */
.parameter-list {
  list-style: none;
  margin-top: 32px;
}

.parameter-list li {
  position: relative;
  padding-left: 32px;
  color: var(--text-muted);
  font-weight: 300;
  margin-bottom: 20px;
}

.parameter-list li::before {
  content: "//"; /* Injects the studio double slash as a list bullet marker */
  position: absolute;
  left: 0;
  color: var(--accent-iron);
  font-family: var(--font-mono);
  font-weight: 700;
}

/* Mobile responsive balancing */
@media (max-width: 992px) {
  .flavors-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   12. Hybrid Mixing Suite Layout Engine
   ========================================================================== */
.pricing-badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--accent-glow);
  border: 1px dashed var(--accent-glow);
  padding: 8px 16px;
  margin: 24px 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.metrics-split {
  display: grid;
  grid-template-columns: 1fr 1fr; /* Splitting project descriptions and list columns cleanly */
  gap: 48px;
  background-color: var(--bg-rack);
  padding: 60px;
  border-radius: 4px;
  margin: 60px 0;
}

.metrics-left h2 {
  font-size: 32px;
  line-height: 1.2;
}

.metrics-list {
  list-style: none;
}

.metrics-list li {
  position: relative;
  padding-left: 28px;
  color: var(--text-silver);
  margin-bottom: 24px;
  font-size: 15px;
  font-weight: 300;
}

.metrics-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--accent-glow);
  font-weight: 700;
}

/* Mobile responsive layout collapse */
@media (max-width: 768px) {
  .metrics-split {
    grid-template-columns: 1fr;
    padding: 32px;
  }
}
/* ==========================================================================
   13. Sync Licensing & Catalog Layout Engine
   ========================================================================== */
.audio-playlist {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 40px auto 80px auto;
  max-width: 940px;
}

.audio-track-row {
  background-color: var(--bg-rack);
  border-left: 4px solid var(--accent-iron); /* Accent highlights indicating analog hardware channels */
  padding: 24px;
  border-radius: 4px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.audio-track-info {
  flex: 1;
  min-width: 280px;
}

.audio-track-info h4 {
  font-family: var(--font-mono);
  font-size: 16px;
  color: var(--text-silver);
  margin-bottom: 6px;
}

.audio-track-controls {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

/* Custom dark-mode utility modifier for native audio elements */
.audio-track-controls audio {
  width: 280px;
  height: 36px;
  filter: invert(0.92) contrast(1.2) brightness(0.95);
  opacity: 0.85;
}

.audio-track-meta {
  font-family: var(--font-mono);
  color: var(--accent-glow);
  font-weight: 700;
  font-size: 13px;
  min-width: 140px;
  text-align: right;
}

/* Mobile responsive alignment adjustment */
@media (max-width: 768px) {
  .audio-track-meta {
    text-align: left;
    min-width: auto;
  }
}
/* ==========================================================================
   14. The Platypus Process Production Engine Layout
   ========================================================================== */
.financing-card {
  background-color: var(--bg-rack);
  border: 1px solid rgba(0, 255, 204, 0.15); /* Subtly tinted boundary lines utilizing console glow colors */
  border-radius: 4px;
  padding: 48px;
  margin: 60px auto;
  max-width: 940px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.financing-card h2 {
  font-size: 28px;
  line-height: 1.3;
  margin-bottom: 20px;
  color: var(--text-silver);
}
/* ==========================================================================
   15. Contact & Booking Tab Layout Engine
   ========================================================================== */
.tabs-menu {
  display: flex;
  gap: 16px;
  margin: 40px auto;
  max-width: 600px;
  justify-content: center;
}

.tab-link {
  background-color: var(--bg-rack);
  color: var(--text-muted);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 14px 28px;
  font-family: var(--font-mono);
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* State changes for the actively clicked tab button */
.tab-link.active {
  color: var(--text-silver);
  border-color: var(--accent-iron);
  background-color: transparent;
}

/* Managing visibility of tab blocks */
.tab-pane {
  display: none; /* Hides the pane by default */
}

.tab-pane.active {
  display: block; /* Reveals only the active block */
}

/* Questionnaire Box Constraints */
.contact-card {
  background-color: var(--bg-rack);
  padding: 48px;
  max-width: 600px;
  margin: 0 auto 60px auto;
  border-radius: 4px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.contact-card h2 {
  font-size: 24px;
  margin-bottom: 32px;
  text-align: center;
}

.form-textarea {
  width: 100%;
  background-color: var(--bg-obsidian);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 14px;
  color: var(--text-silver);
  font-family: var(--font-body);
  font-size: 15px;
  min-height: 120px;
  resize: vertical;
  transition: border-color 0.3s ease;
}

.form-textarea:focus {
  outline: none;
  border-color: var(--accent-glow);
}

/* Cal.com Interactive Wrapper Box Constraints */
.calendar-wrapper {
  background-color: var(--bg-rack);
  padding: 32px;
  max-width: 940px;
  margin: 0 auto 60px auto;
  border-radius: 4px;
  min-height: 1000px;
}
/* ==========================================================================
   16. About / Manifesto Page Layout Engine
   ========================================================================== */
.manifesto-wrapper {
  max-width: 740px; /* Constrains the layout line-length so text is highly readable */
  margin: 60px auto 100px auto;
}

.manifesto-text {
  font-size: 18px;
  line-height: 1.8;
  color: #E2E4E9; /* Slightly brighter text tone for long-form narrative contrast */
  font-weight: 300;
  margin-bottom: 28px;
}
/* ==========================================================================
   17. Privacy Policy Layout Engine
   ========================================================================== */
.privacy-wrapper {
  max-width: 800px;
  margin: 60px auto 100px auto;
}

.privacy-block {
  margin-bottom: 40px;
}

.privacy-block h3 {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--accent-glow);
  margin-bottom: 12px;
}
/* ==========================================================================
   18. Remote Session Instrumentation Engine Layout
   ========================================================================== */
.instrument-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin: 40px 0 80px 0;
}

.instrument-card {
  background-color: var(--bg-rack);
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: 4px;
  padding: 40px;
}

.instrument-card h3 {
  font-family: var(--font-mono);
  font-size: 15px;
  color: var(--accent-iron);
  margin-bottom: 8px;
}

.instrument-card h4 {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--text-silver);
  margin-bottom: 20px;
}

.spec-sheet {
  list-style: none;
  margin-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 16px;
}

.spec-sheet li {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 8px;
  text-transform: uppercase;
}

.spec-sheet li strong {
  color: var(--accent-glow);
}

@media (max-width: 768px) {
  .instrument-grid {
    grid-template-columns: 1fr;
  }
}
/* ==========================================================================
   19. Cinematic About // Manifesto Page Layout Engine
   ========================================================================== */
.about-hero-section {
  padding: 100px 0 0 0; /* Space for the top fixed navigation */
  text-align: center;
}

.cinematic-hero-wrapper {
  width: 100%;
  background-color: var(--bg-obsidian);
  border-bottom: 1px solid var(--bg-rack);
  overflow: hidden;
  margin-bottom: 60px;
}

.cinematic-hero-image {
  width: 100%;
  height: auto;
  display: block;
  mix-blend-mode: luminosity; /* Enhances B&W rendering and deep obsidian blend */
  opacity: 0.9; /* Subtle overlay for atmospheric depth */
  filter: contrast(1.1) brightness(1.05); /* Slight analog color print correction */
}

/* Updated columns layout for long-form narrative contrast */
.manifesto-columns {
  display: grid;
  grid-template-columns: 3fr 2fr; /* Narrative-heavy left column, utility list right */
  gap: 48px;
  margin-bottom: 100px;
}

.manifesto-left-narrative h2 {
  font-size: 32px;
  line-height: 1.2;
  margin-bottom: 24px;
  color: var(--accent-glow); /* LED glow color highlight */
}

.about-gear-list {
  list-style: none;
  background-color: var(--bg-rack);
  padding: 32px;
  border-radius: 4px;
}

.about-gear-list li {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 16px;
  text-transform: uppercase;
}

.about-gear-list li strong {
  color: var(--text-silver);
}

@media (max-width: 991px) {
  .manifesto-columns {
    grid-template-columns: 1fr;
  }
}
/* ==========================================================================
   20. Master Hardware Inventory Vault Layout Engine
   ========================================================================== */
.inventory-vault-section {
  padding: 60px 0 100px 0;
  border-top: 1px dashed var(--bg-rack);
  margin-top: 40px;
}

.vault-category-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* Balanced multi-column configuration */
  gap: 32px;
  margin-top: 40px;
}

.vault-card {
  background-color: var(--bg-rack);
  border-radius: 4px;
  padding: 32px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}

.vault-card h3 {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--accent-iron); /* Accent highlights indicating hardware rails */
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 12px;
}

.vault-list {
  list-style: none;
}

.vault-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  font-family: var(--font-mono);
  font-size: 13px;
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.03);
}

.vault-row:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.vault-model {
  color: var(--text-silver);
  font-weight: 700;
  text-transform: uppercase;
}

.vault-brand {
  color: var(--text-muted);
  font-size: 12px;
  margin-left: 6px;
  text-transform: none;
}

.vault-qty {
  color: var(--accent-glow); /* LED glow indicators marking item density */
  font-weight: 700;
}

@media (max-width: 991px) {
  .vault-category-grid {
    grid-template-columns: 1fr;
  }
}