/* ==========================================================================
   THE BACK OFFICE GLOBAL - INDUSTRIAL-CHIC HOLDING SYSTEM STYLESHEET
   Design System: Deep Matte Charcoal (#121417) & Electric Teal (#0D9488)
   ========================================================================== */

/* --- Custom Properties & Design Tokens --- */
:root {
  --bg-base: #121417;
  --bg-base-radial: radial-gradient(circle at 50% 0%, #1c2128 0%, #121417 65%, #0b0d10 100%);
  --bg-surface: #181b20;
  --bg-surface-elevated: #1f242d;
  --bg-surface-glass: rgba(24, 27, 32, 0.85);
  
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-medium: rgba(255, 255, 255, 0.14);
  --border-metallic: linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.03));
  
  --teal-primary: #0D9488;
  --teal-bright: #14B8A6;
  --teal-light: #2DD4BF;
  --teal-glow: rgba(13, 148, 136, 0.35);
  --teal-glow-sm: 0 0 16px rgba(13, 148, 136, 0.3);
  --teal-glow-lg: 0 0 32px rgba(13, 148, 136, 0.25);
  --teal-badge-bg: rgba(13, 148, 136, 0.12);
  --teal-border: rgba(13, 148, 136, 0.4);

  --text-primary: #F3F4F6;
  --text-secondary: #9CA3AF;
  --text-muted: #64748B;
  --text-dim: #475569;
  
  --font-display: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', 'SFMono-Regular', Consolas, Menlo, monospace;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --transition-fast: 0.15s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-bounce: 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  
  --container-max: 1180px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
}

/* --- Global Reset & Box Sizing --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  background-color: var(--bg-base);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  min-height: 100vh;
  position: relative;
  background: var(--bg-base-radial);
  overflow-x: hidden;
}

/* --- Procedural Industrial Noise & Blueprint Grid Overlay --- */
.noise-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

.grid-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  background-size: 40px 40px;
  background-image: 
    linear-gradient(to right, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  mask-image: radial-gradient(ellipse at 50% 30%, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.1) 80%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 30%, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.1) 80%);
}

/* --- Layout Container --- */
.layout-wrapper {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 2rem 1.5rem 4rem;
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
}

/* --- Technical Navigation / Telemetry Top Bar --- */
.telemetry-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 0.75rem 1.25rem;
  background: var(--bg-surface-glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-muted);
}

.telemetry-left, .telemetry-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.status-indicator {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--teal-bright);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal-bright);
  box-shadow: 0 0 0 rgba(20, 184, 166, 0.6);
  animation: pulse-ring 2s infinite cubic-bezier(0.4, 0, 0.6, 1);
}

@keyframes pulse-ring {
  0% {
    box-shadow: 0 0 0 0 rgba(20, 184, 166, 0.7);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(20, 184, 166, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(20, 184, 166, 0);
  }
}

.tech-tag {
  background: rgba(255, 255, 255, 0.04);
  padding: 0.2rem 0.6rem;
  border-radius: 3px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--text-secondary);
}

/* ==========================================================================
   HEADER & BRANDING SECTION
   ========================================================================== */
.hero-branding {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  padding: 2rem 1rem 1rem;
}

/* Ambient Logo Illumination Halo */
.hero-glow-backdrop {
  position: absolute;
  top: 15%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, rgba(13, 148, 136, 0.2) 0%, rgba(13, 148, 136, 0.05) 50%, transparent 75%);
  pointer-events: none;
  z-index: -1;
  filter: blur(28px);
}

/* Metallic Steel Logo Showcase Framing */
.logo-frame {
  position: relative;
  display: inline-block;
  padding: 10px;
  background: linear-gradient(145deg, #222730, #14171c);
  border-radius: var(--radius-lg);
  box-shadow: 
    0 20px 40px -15px rgba(0, 0, 0, 0.8),
    0 0 0 1px rgba(255, 255, 255, 0.1),
    inset 0 1px 1px rgba(255, 255, 255, 0.2),
    0 0 25px rgba(13, 148, 136, 0.15);
  margin-bottom: 2rem;
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.logo-frame:hover {
  transform: translateY(-2px);
  box-shadow: 
    0 24px 48px -12px rgba(0, 0, 0, 0.85),
    0 0 0 1px rgba(13, 148, 136, 0.5),
    0 0 30px rgba(13, 148, 136, 0.3);
}

.logo-frame::before {
  content: '';
  position: absolute;
  top: -4px;
  left: -4px;
  width: 14px;
  height: 14px;
  border-top: 2px solid var(--teal-bright);
  border-left: 2px solid var(--teal-bright);
}

.logo-frame::after {
  content: '';
  position: absolute;
  bottom: -4px;
  right: -4px;
  width: 14px;
  height: 14px;
  border-bottom: 2px solid var(--teal-bright);
  border-right: 2px solid var(--teal-bright);
}

.hero-logo-img {
  display: block;
  width: 155px;
  height: auto;
  border-radius: var(--radius-md);
  object-fit: contain;
  filter: contrast(1.04) brightness(1.02);
}

/* Typography Hierarchy */
.brand-title-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  max-width: 860px;
}

.brand-title {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.15;
  text-transform: uppercase;
  color: #FFFFFF;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.brand-title span.title-accent {
  background: linear-gradient(135deg, #FFFFFF 40%, var(--teal-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.brand-subtitle {
  font-family: var(--font-mono);
  font-size: clamp(0.85rem, 2vw, 1.1rem);
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--teal-light);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.25rem;
}

.brand-subtitle::before,
.brand-subtitle::after {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--teal-border);
}

.hero-manifesto {
  margin-top: 1.25rem;
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-secondary);
  max-width: 660px;
  font-weight: 400;
  line-height: 1.6;
}

.hero-manifesto em {
  font-style: normal;
  color: var(--text-primary);
  font-weight: 500;
}

/* Coming Soon Indicator Badge */
.wip-badge-container {
  margin-top: 1.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 1.4rem;
  background: rgba(13, 148, 136, 0.08);
  border: 1px solid rgba(13, 148, 136, 0.35);
  border-radius: 9999px;
  box-shadow: 0 0 20px rgba(13, 148, 136, 0.12);
}

.wip-badge-text {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-light);
}

.wip-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal-light);
  animation: pulse-ring 1.5s infinite;
}

/* ==========================================================================
   INTERACTIVE VCARD & EXECUTIVE QR MODULE
   ========================================================================== */
.vcard-section {
  width: 100%;
}

.industrial-card {
  position: relative;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.4);
  transition: border-color var(--transition-smooth), box-shadow var(--transition-smooth);
}

.industrial-card:hover {
  border-color: rgba(13, 148, 136, 0.3);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.5);
}

/* Corner Technical Markings */
.card-corners::before,
.card-corners::after {
  content: '';
  position: absolute;
  width: 12px;
  height: 12px;
  pointer-events: none;
}

.card-corners::before {
  top: 8px;
  left: 8px;
  border-top: 1.5px solid var(--text-dim);
  border-left: 1.5px solid var(--text-dim);
}

.card-corners::after {
  bottom: 8px;
  right: 8px;
  border-bottom: 1.5px solid var(--text-dim);
  border-right: 1.5px solid var(--text-dim);
}

.card-header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-subtle);
  padding-bottom: 1rem;
  margin-bottom: 2rem;
}

.card-title-meta {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--teal-bright);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.card-id-stamp {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-dim);
}

/* vCard Grid Layout: Balanced 3-Column Executive Architecture */
.vcard-grid {
  display: grid;
  grid-template-columns: 205px 1fr 205px;
  gap: 2.25rem;
  align-items: center;
}

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

@media (max-width: 880px) {
  .vcard-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2.25rem;
  }
  
  .qr-container {
    order: 2;
  }
  
  .vcard-details {
    order: 1;
  }
  
  .gateway-logo-container {
    order: 3;
  }
}

/* Standalone QR Code Display & Industrial Scan Frame */
.qr-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.qr-frame {
  position: relative;
  width: 200px;
  height: 200px;
  padding: 10px;
  background: #0d0f12;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-medium);
  box-shadow: 
    0 12px 28px rgba(0, 0, 0, 0.65),
    0 0 0 1px rgba(255, 255, 255, 0.05),
    0 0 20px rgba(13, 148, 136, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: transform var(--transition-smooth), border-color var(--transition-smooth), box-shadow var(--transition-smooth);
}

.qr-frame:hover {
  transform: translateY(-2px);
  border-color: rgba(13, 148, 136, 0.5);
  box-shadow: 
    0 16px 36px rgba(0, 0, 0, 0.8),
    0 0 28px rgba(13, 148, 136, 0.3);
}

.qr-frame::before {
  content: '';
  position: absolute;
  top: 4px;
  left: 4px;
  width: 12px;
  height: 12px;
  border-top: 2px solid var(--teal-bright);
  border-left: 2px solid var(--teal-bright);
  pointer-events: none;
  z-index: 2;
}

.qr-frame::after {
  content: '';
  position: absolute;
  bottom: 4px;
  right: 4px;
  width: 12px;
  height: 12px;
  border-bottom: 2px solid var(--teal-bright);
  border-right: 2px solid var(--teal-bright);
  pointer-events: none;
  z-index: 2;
}

.qr-pad {
  width: 100%;
  height: 100%;
  background: #FFFFFF;
  border-radius: var(--radius-sm);
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.08);
}

.qr-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.qr-caption {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  letter-spacing: 0.03em;
}

/* Right-Hand High-Contrast Metallic Logo Display Element */
.gateway-logo-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.gateway-logo-frame {
  position: relative;
  width: 200px;
  height: 200px;
  padding: 10px;
  background: linear-gradient(145deg, #1d2128, #0e1014);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-medium);
  box-shadow: 
    0 12px 28px rgba(0, 0, 0, 0.65),
    0 0 0 1px rgba(255, 255, 255, 0.06),
    0 0 25px rgba(13, 148, 136, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: transform var(--transition-smooth), border-color var(--transition-smooth), box-shadow var(--transition-smooth);
}

.gateway-logo-frame:hover {
  transform: translateY(-2px);
  border-color: rgba(13, 148, 136, 0.5);
  box-shadow: 
    0 16px 36px rgba(0, 0, 0, 0.8),
    0 0 30px rgba(13, 148, 136, 0.35);
}

.gateway-logo-frame::before {
  content: '';
  position: absolute;
  top: 4px;
  left: 4px;
  width: 12px;
  height: 12px;
  border-top: 2px solid var(--teal-bright);
  border-left: 2px solid var(--teal-bright);
  pointer-events: none;
  z-index: 2;
}

.gateway-logo-frame::after {
  content: '';
  position: absolute;
  bottom: 4px;
  right: 4px;
  width: 12px;
  height: 12px;
  border-bottom: 2px solid var(--teal-bright);
  border-right: 2px solid var(--teal-bright);
  pointer-events: none;
  z-index: 2;
}

.gateway-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: var(--radius-sm);
  filter: contrast(1.05) brightness(1.02);
  transition: transform var(--transition-smooth);
}

.gateway-logo-frame:hover .gateway-logo-img {
  transform: scale(1.03);
}

.gateway-logo-caption {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Executive Details Column */
.vcard-details {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.exec-header {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.exec-role-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--teal-bright);
  background: var(--teal-badge-bg);
  border: 1px solid var(--teal-border);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-sm);
  width: fit-content;
}

@media (max-width: 768px) {
  .exec-role-pill {
    margin: 0 auto;
  }
}

.exec-name {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #FFFFFF;
  margin-top: 0.25rem;
}

.exec-title {
  font-size: 1.05rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.exec-org {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.exec-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 0.25rem;
}

.exec-contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

@media (max-width: 768px) {
  .exec-contact-item {
    justify-content: center;
  }
}

.exec-contact-icon {
  width: 18px;
  height: 18px;
  color: var(--teal-bright);
  flex-shrink: 0;
}

.exec-contact-link {
  color: var(--text-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.exec-contact-link:hover {
  color: var(--teal-bright);
  text-decoration: underline;
}

/* Action Button Container */
.vcard-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 0.5rem;
}

@media (max-width: 768px) {
  .vcard-actions {
    justify-content: center;
  }
}

/* Primary Industrial CTA Button */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: var(--teal-primary);
  color: #FFFFFF;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.85rem 1.6rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  border: 1px solid var(--teal-bright);
  box-shadow: 0 4px 14px rgba(13, 148, 136, 0.4);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.btn-primary:hover {
  background: var(--teal-bright);
  box-shadow: 0 6px 20px rgba(13, 148, 136, 0.6);
  transform: translateY(-1px);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.85rem 1.4rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  border: 1px solid var(--border-medium);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.25);
  color: #FFFFFF;
}

/* ==========================================================================
   ENTITY & FUNCTIONAL CONTACT SECTION (BALANCED 2-COLUMN GRID)
   ========================================================================== */
.contact-section {
  width: 100%;
}

.section-title-wrap {
  margin-bottom: 2rem;
  text-align: left;
}

.section-label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--teal-bright);
  display: block;
  margin-bottom: 0.4rem;
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: 0.02em;
}

.contact-dual-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 2rem;
  align-items: stretch;
}

@media (max-width: 960px) {
  .contact-dual-grid {
    grid-template-columns: 1fr;
  }
}

/* Corporate Credentials Column */
.corp-details-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
}

.corp-info-block {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.corp-entry {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  position: relative;
}

.corp-entry-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--teal-bright);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.corp-entry-value {
  font-size: 1.05rem;
  color: var(--text-primary);
  line-height: 1.5;
  word-break: break-word;
}

.corp-link {
  color: var(--text-primary);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: color var(--transition-fast);
}

.corp-link:hover {
  color: var(--teal-bright);
}

.copy-mini-btn {
  background: transparent;
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  border-radius: 3px;
  padding: 2px 7px;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  cursor: pointer;
  margin-left: 0.5rem;
  transition: all var(--transition-fast);
  text-transform: uppercase;
}

.copy-mini-btn:hover {
  border-color: var(--teal-border);
  color: var(--teal-bright);
  background: var(--teal-badge-bg);
}

/* Operational Readiness Widget */
.ops-readiness {
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.1rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.ops-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 0.78rem;
}

.ops-label {
  color: var(--text-muted);
}

.ops-value {
  color: var(--text-secondary);
  font-weight: 500;
}

.ops-value.live-time {
  color: var(--teal-bright);
}

/* Interactive Contact Form Column */
.contact-form-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.industrial-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  position: relative;
}

.form-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.required-asterisk {
  color: var(--teal-bright);
}

.form-input,
.form-textarea {
  width: 100%;
  background: #0f1115;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 0.8rem 1rem;
  transition: all var(--transition-fast);
  outline: none;
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--teal-bright);
  box-shadow: 0 0 0 1px var(--teal-bright), 0 0 16px var(--teal-glow);
  background: #14171d;
}

.form-input.is-invalid,
.form-textarea.is-invalid {
  border-color: #ef4444;
  box-shadow: 0 0 0 1px #ef4444, 0 0 12px rgba(239, 68, 68, 0.25);
}

.form-textarea {
  resize: vertical;
  min-height: 115px;
}

.field-error-msg {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: #f87171;
  display: none;
}

.form-input.is-invalid + .field-error-msg,
.form-textarea.is-invalid + .field-error-msg {
  display: block;
}

.form-submit-row {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.btn-submit {
  width: 100%;
  padding: 1rem;
  font-size: 0.9rem;
}

.form-notice {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-muted);
  text-align: center;
}

/* Transmission Success Confirmation State */
.form-feedback-modal {
  display: none;
  background: rgba(13, 148, 136, 0.08);
  border: 1px solid var(--teal-bright);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  margin-top: 1rem;
  text-align: center;
  animation: fadeIn 0.3s ease-in-out forwards;
}

.form-feedback-modal.is-visible {
  display: block;
}

.feedback-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--teal-light);
  margin-bottom: 0.4rem;
}

.feedback-text {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ==========================================================================
   FOOTER & COMPLIANCE SECTION
   ========================================================================== */
.industrial-footer {
  border-top: 1px solid var(--border-subtle);
  padding-top: 2rem;
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--text-primary);
}

.footer-meta {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-muted);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-links {
  display: flex;
  gap: 1.25rem;
  list-style: none;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  transition: color var(--transition-fast);
}

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

/* ==========================================================================
   TOAST NOTIFICATION COMPONENT
   ========================================================================== */
.toast-container {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  pointer-events: none;
}

.toast {
  pointer-events: auto;
  background: #191d24;
  color: #FFFFFF;
  border: 1px solid var(--teal-bright);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), 0 0 15px var(--teal-glow);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-mono);
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  animation: toastIn 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes toastIn {
  from { opacity: 0; transform: translateY(12px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes toastOut {
  from { opacity: 1; transform: translateY(0) scale(1); }
  to { opacity: 0; transform: translateY(-8px) scale(0.96); }
}

/* ==========================================================================
   PRINT / HIGH CONTRAST FALLBACKS
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
