@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500;700&family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --brand-dark: #07090E;
  --card-dark: #0F121C;
  --border-glow: rgba(0, 245, 212, 0.15);
  --accent-cyan: #00F5D4;
  --accent-blue: #00B4D8;
  --accent-purple: #9D4EDD;
  --accent-emerald: #10B981;
}

body {
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--brand-dark);
  color: #E2E8F0;
  overflow-x: hidden;
}

code, pre, .font-mono {
  font-family: 'JetBrains Mono', monospace;
}

/* Glassmorphism & High-tech Cards */
.glassmorphism {
  background: rgba(15, 18, 28, 0.72);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.glassmorphism-card {
  background: linear-gradient(135deg, rgba(20, 24, 38, 0.8) 0%, rgba(12, 14, 23, 0.9) 100%);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.07);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.glassmorphism-card:hover {
  border-color: rgba(0, 245, 212, 0.35);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px -10px rgba(0, 245, 212, 0.15);
}

/* Glow effects */
.glow-cyan {
  box-shadow: 0 0 35px -5px rgba(0, 245, 212, 0.35);
}

.glow-purple {
  box-shadow: 0 0 35px -5px rgba(157, 78, 221, 0.35);
}

.text-gradient-cyan {
  background: linear-gradient(135deg, #00F5D4 0%, #00B4D8 50%, #9D4EDD 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-purple {
  background: linear-gradient(135deg, #9D4EDD 0%, #00F5D4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Soundwave Animation for Swara Voice */
.sound-wave {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  height: 20px;
}

.sound-bar {
  width: 3px;
  background: #00F5D4;
  border-radius: 9999px;
  animation: soundWaveAnim 1.2s ease-in-out infinite alternate;
}

.sound-bar:nth-child(1) { height: 6px; animation-delay: 0.1s; }
.sound-bar:nth-child(2) { height: 16px; animation-delay: 0.3s; }
.sound-bar:nth-child(3) { height: 22px; animation-delay: 0.2s; }
.sound-bar:nth-child(4) { height: 12px; animation-delay: 0.4s; }
.sound-bar:nth-child(5) { height: 18px; animation-delay: 0.15s; }

@keyframes soundWaveAnim {
  0% { transform: scaleY(0.3); opacity: 0.5; }
  100% { transform: scaleY(1.3); opacity: 1; }
}

/* Animated grid background */
.bg-grid-pattern {
  background-size: 40px 40px;
  background-image: 
    linear-gradient(to right, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: #07090E;
}

::-webkit-scrollbar-thumb {
  background: #1E293B;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #00F5D4;
}

/* Terminal Cursor */
.terminal-cursor {
  display: inline-block;
  width: 8px;
  height: 15px;
  background-color: #00F5D4;
  vertical-align: middle;
  animation: blink 1s infinite;
}

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

/* =========================================================
   NIA 1.0 FOOTER STYLES (Glassmorphic + Cyber Accent)
   ========================================================= */
.nia-footer {
  position: relative;
  background-color: #07090e;
  color: #94a3b8;
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  padding-top: 5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

/* Ambient Background Glows */
.footer-glow {
  position: absolute;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  filter: blur(140px);
  pointer-events: none;
  opacity: 0.18;
  z-index: 0;
}
.glow-left {
  top: -80px;
  left: -100px;
  background: radial-gradient(circle, #00f2fe, #0072ff);
}
.glow-right {
  bottom: 0;
  right: -50px;
  background: radial-gradient(circle, #8b5cf6, #7f00ff);
}

/* Pre-Footer Action Banner */
.footer-pre-cta {
  position: relative;
  z-index: 1;
  max-width: 1240px;
  margin: 0 auto 5rem;
  padding: 2.8rem 3.5rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
  border: 1px solid rgba(0, 242, 254, 0.25);
  border-radius: 20px;
  backdrop-filter: blur(16px);
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.15);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.pre-cta-content {
  max-width: 650px;
}
.pre-cta-content h2 {
  font-size: 1.85rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0.75rem 0 0.5rem;
  letter-spacing: -0.02em;
}
.pre-cta-content p {
  color: #94a3b8;
  font-size: 0.98rem;
  line-height: 1.6;
}

.badge-pulse {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #00f2fe;
  padding: 4px 12px;
  border-radius: 20px;
  background: rgba(0, 242, 254, 0.1);
  border: 1px solid rgba(0, 242, 254, 0.25);
}
.badge-pulse .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #00f2fe;
  box-shadow: 0 0 8px #00f2fe;
}

.pre-cta-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-shrink: 0;
}
.btn-primary-neon {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: 12px;
  background: linear-gradient(135deg, #00f2fe, #4facfe);
  color: #07090e;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 0 25px rgba(0, 242, 254, 0.35);
}
.btn-primary-neon:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 35px rgba(0, 242, 254, 0.55);
}
.btn-secondary-glass {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #f1f5f9;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}
.btn-secondary-glass:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.25);
}

/* Main Grid */
.footer-main-container {
  position: relative;
  z-index: 1;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem 4rem;
  display: grid;
  grid-template-columns: 2fr 1.3fr 1.3fr 1.3fr 1.8fr;
  gap: 2.5rem;
}

/* Brand Section */
.brand-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1.1rem;
}
.brand-logo-hex {
  width: 36px;
  height: 36px;
}
.brand-title {
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #ffffff;
}
.version-tag {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 6px;
  background: rgba(139, 92, 246, 0.2);
  color: #c084fc;
  border: 1px solid rgba(139, 92, 246, 0.4);
  vertical-align: middle;
}
.brand-desc {
  font-size: 0.9rem;
  line-height: 1.65;
  color: #94a3b8;
  margin-bottom: 1.4rem;
}

/* Operational Status Badge */
.system-status-badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 12px;
  border-radius: 8px;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.25);
  font-size: 0.78rem;
  font-weight: 600;
  color: #34d399;
  margin-bottom: 1.4rem;
}
.status-indicator-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10b981;
}
.status-indicator-ping {
  position: absolute;
  left: 12px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10b981;
  animation: ping 1.8s cubic-bezier(0, 0, 0.2, 1) infinite;
}
@keyframes ping {
  75%, 100% {
    transform: scale(2.4);
    opacity: 0;
  }
}

/* Social Icon Badges */
.social-links {
  display: flex;
  gap: 10px;
}
.social-links a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #94a3b8;
  transition: all 0.2s;
}
.social-links a:hover {
  color: #00f2fe;
  background: rgba(0, 242, 254, 0.1);
  border-color: rgba(0, 242, 254, 0.3);
  transform: translateY(-2px);
}

/* Columns & Links */
.col-title {
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #f8fafc;
  margin-bottom: 1.3rem;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li {
  margin-bottom: 0.75rem;
}
.footer-links a {
  text-decoration: none;
  color: #94a3b8;
  font-size: 0.88rem;
  transition: color 0.2s ease, transform 0.2s ease;
  display: inline-block;
}
.footer-links a:hover {
  color: #38bdf8;
  transform: translateX(3px);
}

/* Newsletter Inset Form */
.newsletter-desc {
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 1.1rem;
}
.footer-form {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}
.form-icon {
  position: absolute;
  left: 14px;
  width: 17px;
  height: 17px;
  color: #64748b;
}
.input-wrapper input {
  width: 100%;
  padding: 11px 14px 11px 40px;
  border-radius: 10px;
  background: #0d1117;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-size: 0.88rem;
  outline: none;
  box-shadow: inset 2px 2px 5px rgba(0, 0, 0, 0.6);
  transition: border 0.2s ease;
}
.input-wrapper input:focus {
  border-color: #00f2fe;
}
.btn-subscribe {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  padding: 10px;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-subscribe:hover {
  background: rgba(0, 242, 254, 0.15);
  border-color: rgba(0, 242, 254, 0.4);
  color: #00f2fe;
}
.form-subtext {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.74rem;
  color: #64748b;
  margin-top: 0.5rem;
}

/* Bottom Bar */
.footer-bottom {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 1.8rem 1.5rem;
  background: #05070a;
}
.bottom-container {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.82rem;
}
.corp-link {
  color: #38bdf8;
  text-decoration: none;
  font-weight: 600;
}
.corp-link:hover {
  text-decoration: underline;
}

.bottom-badges {
  display: flex;
  gap: 10px;
}
.security-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  color: #94a3b8;
  font-size: 0.75rem;
}

.bottom-right {
  display: flex;
  align-items: center;
  gap: 10px;
}
.bottom-right a {
  color: #64748b;
  text-decoration: none;
  transition: color 0.2s;
}
.bottom-right a:hover {
  color: #cbd5e1;
}
.divider {
  color: #334155;
}

/* Responsive Behavior */
@media (max-width: 1024px) {
  .footer-main-container {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 3rem 2rem;
  }
  .brand-col {
    grid-column: span 3;
  }
  .newsletter-col {
    grid-column: span 3;
  }
}
@media (max-width: 640px) {
  .footer-pre-cta {
    padding: 1.8rem;
    flex-direction: column;
    align-items: flex-start;
  }
  .pre-cta-actions {
    width: 100%;
    flex-direction: column;
  }
  .pre-cta-actions a, .pre-cta-actions button {
    width: 100%;
    justify-content: center;
  }
  .footer-main-container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .brand-col, .newsletter-col {
    grid-column: span 1;
  }
  .bottom-container {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* =========================================================
   ABOUT US & CONTACT SECTION STYLES (Cyber / Bento)
   ========================================================= */
.bento-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border-radius: 9999px;
  margin-bottom: 0.85rem;
}

.bento-pill-cyan {
  color: #00f2fe;
  background: rgba(0, 242, 254, 0.1);
  border: 1px solid rgba(0, 242, 254, 0.25);
}

.bento-pill-purple {
  color: #c084fc;
  background: rgba(139, 92, 246, 0.12);
  border: 1px solid rgba(139, 92, 246, 0.3);
}

.bento-pill-blue {
  color: #38bdf8;
  background: rgba(56, 189, 248, 0.1);
  border: 1px solid rgba(56, 189, 248, 0.25);
}

.about-tech-tag {
  display: inline-block;
  padding: 4px 11px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.75rem;
  font-weight: 600;
  color: #cbd5e1;
  transition: all 0.2s ease;
}

.about-tech-tag:hover {
  background: rgba(0, 242, 254, 0.12);
  border-color: rgba(0, 242, 254, 0.35);
  color: #00f2fe;
}

/* Timeline in Journey Card */
.timeline-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: relative;
  padding-left: 1.5rem;
  border-left: 2px solid rgba(255, 255, 255, 0.08);
}

.timeline-item {
  position: relative;
}

.timeline-dot {
  position: absolute;
  left: calc(-1.5rem - 5px);
  top: 4px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #00f2fe;
  box-shadow: 0 0 10px #00f2fe;
}

.timeline-year {
  font-size: 0.72rem;
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
  color: #38bdf8;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.timeline-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0.15rem 0 0.25rem;
}

.timeline-desc {
  font-size: 0.82rem;
  line-height: 1.55;
  color: #94a3b8;
}

/* Contact Input Fields */
.contact-input {
  width: 100%;
  padding: 0.75rem 1rem;
  background: rgba(10, 14, 23, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.75rem;
  color: #ffffff;
  font-size: 0.88rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.contact-input:focus {
  border-color: #00f2fe;
  box-shadow: 0 0 15px rgba(0, 242, 254, 0.2);
}

/* =========================================================
   2026-ERA LIQUID GLASS MORPHISM SYSTEM
   ========================================================= */

/* Liquid Glass Navbar */
.liquid-glass-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(180deg, rgba(13, 17, 28, 0.78) 0%, rgba(7, 9, 14, 0.86) 100%);
  backdrop-filter: blur(28px) saturate(200%);
  -webkit-backdrop-filter: blur(28px) saturate(200%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: 
    inset 0 1px 0 0 rgba(255, 255, 255, 0.22),
    inset 0 -1px 0 0 rgba(0, 0, 0, 0.5),
    0 20px 40px -15px rgba(0, 0, 0, 0.85);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.liquid-glass-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 15%;
  right: 15%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 242, 254, 0.6), rgba(157, 78, 221, 0.6), transparent);
  pointer-events: none;
}

/* Liquid Glass Pill Navigation Link */
.liquid-nav-link {
  position: relative;
  padding: 6px 14px;
  border-radius: 9999px;
  color: #cbd5e1;
  font-weight: 500;
  font-size: 0.875rem;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.liquid-nav-link:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  box-shadow: 
    inset 0 1px 1px rgba(255, 255, 255, 0.25),
    0 4px 12px rgba(0, 242, 254, 0.15);
  border: 1px solid rgba(0, 242, 254, 0.25);
  transform: translateY(-1px);
}

/* Liquid Glass Social Icons (2026-Era Pods) */
.liquid-social-container {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.liquid-social-btn {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  box-shadow: 
    inset 0 1px 1px 0 rgba(255, 255, 255, 0.35),
    inset 0 -1px 1px 0 rgba(0, 0, 0, 0.6),
    0 6px 16px -2px rgba(0, 0, 0, 0.6);
  color: #94a3b8;
  font-size: 1.15rem;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

.liquid-social-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 12px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.4), transparent);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

/* Specific Platform Colored Hover Glows */
/* GitHub */
.liquid-social-btn.social-github {
  color: #f1f5f9;
}
.liquid-social-btn.social-github:hover {
  color: #00f2fe;
  background: rgba(0, 242, 254, 0.15);
  border-color: rgba(0, 242, 254, 0.5);
  box-shadow: 
    inset 0 1px 1px rgba(255, 255, 255, 0.5),
    0 0 24px rgba(0, 242, 254, 0.55),
    0 8px 20px rgba(0, 0, 0, 0.7);
  transform: translateY(-4px) scale(1.08);
}

/* X / Twitter */
.liquid-social-btn.social-x {
  color: #f1f5f9;
}
.liquid-social-btn.social-x:hover {
  color: #38bdf8;
  background: rgba(56, 189, 248, 0.15);
  border-color: rgba(56, 189, 248, 0.5);
  box-shadow: 
    inset 0 1px 1px rgba(255, 255, 255, 0.5),
    0 0 24px rgba(56, 189, 248, 0.55),
    0 8px 20px rgba(0, 0, 0, 0.7);
  transform: translateY(-4px) scale(1.08);
}

/* LinkedIn */
.liquid-social-btn.social-linkedin {
  color: #0a66c2;
}
.liquid-social-btn.social-linkedin:hover {
  color: #60a5fa;
  background: rgba(10, 102, 194, 0.2);
  border-color: rgba(10, 102, 194, 0.6);
  box-shadow: 
    inset 0 1px 1px rgba(255, 255, 255, 0.5),
    0 0 24px rgba(10, 102, 194, 0.6),
    0 8px 20px rgba(0, 0, 0, 0.7);
  transform: translateY(-4px) scale(1.08);
}

/* Instagram */
.liquid-social-btn.social-instagram {
  color: #f43f5e;
}
.liquid-social-btn.social-instagram:hover {
  color: #fda4af;
  background: linear-gradient(135deg, rgba(225, 48, 108, 0.25), rgba(247, 119, 55, 0.25));
  border-color: rgba(225, 48, 108, 0.6);
  box-shadow: 
    inset 0 1px 1px rgba(255, 255, 255, 0.5),
    0 0 24px rgba(225, 48, 108, 0.6),
    0 8px 20px rgba(0, 0, 0, 0.7);
  transform: translateY(-4px) scale(1.08);
}

/* Facebook */
.liquid-social-btn.social-facebook {
  color: #1877f2;
}
.liquid-social-btn.social-facebook:hover {
  color: #93c5fd;
  background: rgba(24, 119, 242, 0.2);
  border-color: rgba(24, 119, 242, 0.6);
  box-shadow: 
    inset 0 1px 1px rgba(255, 255, 255, 0.5),
    0 0 24px rgba(24, 119, 242, 0.6),
    0 8px 20px rgba(0, 0, 0, 0.7);
  transform: translateY(-4px) scale(1.08);
}

/* WhatsApp */
.liquid-social-btn.social-whatsapp {
  color: #25d366;
}
.liquid-social-btn.social-whatsapp:hover {
  color: #86efac;
  background: rgba(37, 211, 102, 0.2);
  border-color: rgba(37, 211, 102, 0.6);
  box-shadow: 
    inset 0 1px 1px rgba(255, 255, 255, 0.5),
    0 0 24px rgba(37, 211, 102, 0.6),
    0 8px 20px rgba(0, 0, 0, 0.7);
  transform: translateY(-4px) scale(1.08);
}

/* =========================================================
   BENTO SEGMENTED NAVBAR (FUTURISTIC HUD EFFECT)
   ========================================================= */
.bento-header-wrapper {
  position: sticky;
  top: 12px;
  z-index: 50;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

.bento-navbar-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 7px 12px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(16, 21, 36, 0.85) 0%, rgba(8, 10, 18, 0.92) 100%);
  backdrop-filter: blur(28px) saturate(210%);
  -webkit-backdrop-filter: blur(28px) saturate(210%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 
    inset 0 1px 1px 0 rgba(255, 255, 255, 0.25),
    inset 0 -1px 1px 0 rgba(0, 0, 0, 0.6),
    0 24px 48px -12px rgba(0, 0, 0, 0.85),
    0 0 25px -5px rgba(0, 242, 254, 0.12);
}

/* Bento Segment: Brand Pod */
.bento-brand-pod {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 6px 14px 6px 8px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15);
  transition: all 0.25s ease;
}
.bento-brand-pod:hover {
  background: rgba(0, 242, 254, 0.06);
  border-color: rgba(0, 242, 254, 0.3);
}

/* Bento Segment: Links Pod (Center Segmented Capsule) */
.bento-links-pod {
  display: none;
  align-items: center;
  gap: 4px;
  padding: 4px 6px;
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.4);
}
@media (min-width: 1024px) {
  .bento-links-pod {
    display: flex;
  }
}

.bento-pill {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 12px;
  font-size: 0.84rem;
  font-weight: 500;
  color: #94a3b8;
  text-decoration: none;
  transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid transparent;
}
.bento-pill:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 2px 8px rgba(0, 0, 0, 0.4);
  transform: translateY(-1px);
}
.bento-pill.active, .bento-pill.bento-pill-highlight {
  color: #00f2fe;
  background: rgba(0, 242, 254, 0.12);
  border-color: rgba(0, 242, 254, 0.35);
  box-shadow: 0 0 12px rgba(0, 242, 254, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  font-weight: 700;
}

/* Bento Segment: Actions Pod */
.bento-actions-pod {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* =========================================================
   DARK NEUMORPHISM CONTACT FORM SYSTEM
   ========================================================= */

/* Soft Dark Neumorphic Card Container */
.neumorph-card {
  background: #090c14;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 
    16px 16px 36px #030407,
    -12px -12px 32px rgba(255, 255, 255, 0.025),
    inset 1px 1px 1px rgba(255, 255, 255, 0.09);
  transition: all 0.3s ease;
}

/* Neumorphic Info Card Tiles (Extruded Tile) */
.neumorph-info-tile {
  background: #0a0d16;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  box-shadow: 
    8px 8px 20px #040508,
    -6px -6px 16px rgba(255, 255, 255, 0.02),
    inset 1px 1px 0 rgba(255, 255, 255, 0.08);
  transition: all 0.25s ease;
}
.neumorph-info-tile:hover {
  transform: translateY(-2px);
  box-shadow: 
    10px 10px 24px #030406,
    -8px -8px 20px rgba(255, 255, 255, 0.035),
    inset 1px 1px 0 rgba(0, 242, 254, 0.2);
  border-color: rgba(0, 242, 254, 0.25);
}

/* Neumorphic Inset Input & Textarea */
.neumorph-input {
  width: 100%;
  padding: 0.85rem 1.15rem;
  background: #06080e;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  color: #f1f5f9;
  font-size: 0.88rem;
  outline: none;
  box-shadow: 
    inset 4px 4px 8px #020306,
    inset -3px -3px 7px rgba(255, 255, 255, 0.025);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
.neumorph-input:focus {
  border-color: rgba(0, 242, 254, 0.45);
  box-shadow: 
    inset 5px 5px 10px #020305,
    inset -3px -3px 8px rgba(0, 242, 254, 0.08),
    0 0 16px rgba(0, 242, 254, 0.22);
}

/* Neumorphic Tactile Push Button */
.neumorph-btn {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 1rem 1.5rem;
  border-radius: 14px;
  background: linear-gradient(145deg, #101726, #070a12);
  border: 1px solid rgba(0, 242, 254, 0.3);
  color: #00f2fe;
  font-weight: 800;
  font-size: 0.92rem;
  cursor: pointer;
  box-shadow: 
    6px 6px 16px #030407,
    -5px -5px 14px rgba(255, 255, 255, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.neumorph-btn:hover {
  background: linear-gradient(145deg, #141c2e, #090e18);
  box-shadow: 
    8px 8px 20px #020305,
    -6px -6px 18px rgba(255, 255, 255, 0.06),
    0 0 25px rgba(0, 242, 254, 0.35),
    inset 0 1px 0 rgba(0, 242, 254, 0.5);
  color: #ffffff;
  transform: translateY(-2px);
}
.neumorph-btn:active {
  transform: translateY(1px);
  box-shadow: 
    inset 4px 4px 10px #020305,
    inset -3px -3px 8px rgba(0, 242, 254, 0.15);
}