/* ==========================================================================
   327.Group - Modern Futuristic Design System
   Theme: Neural Cybernetic (Titanium Dark + Neural Cyan/Teal) 
          Synthesized with Human Creative Spark (Acid Yellow + Crimson)
   ========================================================================== */

@font-face {
  font-family: 'Flux Architect';
  src: url('../fonts/Flux_Architect_Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Flux Architect';
  src: url('../fonts/Flux_Architect_Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  /* Core Obsidian Titanium Base */
  --bg-darkest: #06090d;
  --bg-canvas: #090e14;
  --bg-surface: #0d141d;
  --bg-card: rgba(13, 20, 29, 0.75);
  --bg-card-hover: rgba(18, 28, 40, 0.88);
  --bg-glass: rgba(10, 15, 22, 0.82);

  /* Neural Cyan & Bioluminescent Teal (from background_image.jpeg) */
  --neural-cyan: #00f0ff;
  --neural-teal: #2ce5c8;
  --neural-teal-bright: #4eecd2;
  --neural-teal-dim: rgba(44, 229, 200, 0.35);
  --neural-teal-subtle: rgba(44, 229, 200, 0.1);
  --neural-glow: rgba(44, 229, 200, 0.3);
  --neural-glow-high: rgba(0, 240, 255, 0.5);

  /* Human Creative Spark & Brave Initiatives (from 327-sketch-identity.jpg) */
  --creative-yellow: #e5dc35;
  --creative-yellow-bright: #ffe600;
  --creative-yellow-dim: rgba(229, 220, 53, 0.35);
  --creative-yellow-subtle: rgba(229, 220, 53, 0.08);
  --creative-yellow-glow: rgba(255, 230, 0, 0.3);

  --initiative-red: #ff3b30;
  --initiative-red-dim: rgba(255, 59, 48, 0.35);
  --initiative-red-subtle: rgba(255, 59, 48, 0.12);

  /* Borders & Grids */
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-glass: rgba(44, 229, 200, 0.16);
  --border-glass-hover: rgba(44, 229, 200, 0.45);
  --border-yellow: rgba(229, 220, 53, 0.3);

  /* Typography */
  --font-display: 'Orbitron', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --font-architect: 'Flux Architect', cursive, sans-serif;

  /* Text Colors */
  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --text-tertiary: #64748b;
  --text-neural: #2ce5c8;
  --text-creative: #e5dc35;

  /* Spacing Grid (8pt system) */
  --space-1: 0.25rem;  /* 4px */
  --space-2: 0.5rem;   /* 8px */
  --space-3: 0.75rem;  /* 12px */
  --space-4: 1rem;     /* 16px */
  --space-5: 1.5rem;   /* 24px */
  --space-6: 2rem;     /* 32px */
  --space-8: 3rem;     /* 48px */
  --space-10: 4rem;    /* 64px */
  --space-12: 6rem;    /* 96px */

  /* Structural Radii */
  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  /* Shadows & Elevations */
  --shadow-card: 0 12px 36px -6px rgba(0, 0, 0, 0.7), 0 0 0 1px var(--border-glass);
  --shadow-card-hover: 0 20px 48px -8px rgba(0, 0, 0, 0.85), 0 0 28px -4px var(--neural-glow), 0 0 0 1px var(--border-glass-hover);
  --shadow-primary-btn: 0 4px 25px rgba(44, 229, 200, 0.35);

  --transition-smooth: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Base Setup */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  color-scheme: dark;
}

body {
  min-height: 100vh;
  background-color: var(--bg-darkest);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  position: relative;
}

/* Anti-Spam Bot Honeypot Field */
.form-hp {
  display: none !important;
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

/* App Wrapper */
.app-layout {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.container {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 var(--space-5);
}

/* Futuristic Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: rgba(6, 9, 13, 0.8);
  border-bottom: 1px solid var(--border-glass);
  padding: var(--space-3) 0;
  transition: var(--transition-smooth);
}

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

/* Fixed Cinematic Background with Dynamic Scroll Darkening */
.fixed-bg-media {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.fixed-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% center;
  display: block;
  opacity: 0.95;
  filter: contrast(1.04) brightness(0.96);
}

.fixed-bg-overlay-base {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    var(--bg-darkest) 0%,
    rgba(6, 9, 13, 0.95) 36%,
    rgba(6, 9, 13, 0.65) 58%,
    rgba(6, 9, 13, 0.25) 78%,
    rgba(6, 9, 13, 0.55) 100%
  );
}

.fixed-bg-radial {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 85% 42%,
    rgba(44, 229, 200, 0.12) 0%,
    transparent 55%
  );
}

.fixed-bg-overlay-darken {
  position: absolute;
  inset: 0;
  background: var(--bg-darkest);
  opacity: 0;
  will-change: opacity;
  transition: opacity 0.12s linear;
}

/* Brand Logo using 327-sketch-identity.jpg */
.brand-logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
  color: var(--text-primary);
  height: 44px;
}

.brand-logo-frame {
  position: relative;
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: var(--radius-sm);
  background: #000;
  border: 1px solid var(--border-glass);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 0 16px rgba(44, 229, 200, 0.2);
  transition: var(--transition-smooth);
}

.brand-logo:hover .brand-logo-frame {
  border-color: var(--neural-teal);
  box-shadow: 0 0 24px rgba(44, 229, 200, 0.45);
  transform: scale(1.04);
}

.brand-logo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.brand-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.15rem;
  letter-spacing: -0.03em;
  line-height: 1;
  display: flex;
  align-items: center;
  height: 44px;
}

.brand-dot {
  color: var(--neural-teal);
}

/* Nav Links - Positioned on Right Side */
.nav-wrapper {
  margin-left: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  list-style: none;
}

.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: var(--transition-smooth);
  padding: var(--space-2) 0;
  position: relative;
}

.nav-link:hover {
  color: var(--neural-teal);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, var(--neural-teal), var(--creative-yellow));
  transition: width 0.25s ease;
  border-radius: 2px;
}

.nav-link:hover::after {
  width: 100%;
}

/* Mobile Hamburger Button & Drawer - Hidden on Desktop */
.btn-hamburger {
  display: none;
  background: rgba(13, 20, 30, 0.7);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
  width: 44px;
  height: 44px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: var(--text-primary);
  transition: var(--transition-smooth);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: relative;
  z-index: 1001;
}

.btn-hamburger:hover,
.btn-hamburger:focus-visible {
  border-color: var(--neural-teal);
  box-shadow: 0 0 16px rgba(44, 229, 200, 0.35);
  outline: none;
}

.hamburger-box {
  width: 22px;
  height: 16px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hamburger-line {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--text-primary);
  border-radius: 2px;
  transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.2s ease, background-color 0.2s ease;
  transform-origin: center;
}

.btn-hamburger.is-active .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
  background-color: var(--neural-teal);
}

.btn-hamburger.is-active .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.btn-hamburger.is-active .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
  background-color: var(--neural-teal);
}

.mobile-nav-drawer {
  display: none;
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: min(88vh, 880px);
  max-height: 920px;
  display: flex;
  align-items: center;
  padding: var(--space-8) 0 var(--space-10);
  background: transparent;
}

.hero-container {
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 680px;
  text-align: left;
}

/* Hero Typography */
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-5);
}

.text-human-creativity {
  font-family: var(--font-architect);
  font-weight: 400;
  font-synthesis: none;
  color: #ffffff;
  display: inline-block;
  font-size: 0.98em;
  letter-spacing: 0.02em;
  text-shadow: 0 0 25px rgba(255, 255, 255, 0.4);
  line-height: 1;
  white-space: nowrap;
}

.text-neural {
  color: var(--neural-teal);
  background: linear-gradient(135deg, #00f0ff 0%, #2ce5c8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  text-shadow: 0 0 35px rgba(44, 229, 200, 0.35);
}

.text-creative {
  color: var(--creative-yellow);
  background: linear-gradient(135deg, #ffe600 0%, #e5dc35 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  text-shadow: 0 0 35px rgba(229, 220, 53, 0.3);
}

.hero-lead {
  font-size: clamp(1.1rem, 1.8vw, 1.3rem);
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: var(--space-8);
  font-weight: 400;
  max-width: 600px;
}

/* Hero Action Buttons */
.hero-actions {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  flex-wrap: wrap;
  margin-bottom: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 0.9rem 1.8rem;
  font-family: var(--font-display);
  font-size: 0.96rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: var(--transition-smooth);
  cursor: pointer;
  border: 1px solid transparent;
  letter-spacing: 0.01em;
}

.btn-hero-primary {
  background: linear-gradient(135deg, #2ce5c8 0%, #00f0ff 100%);
  color: #06090d;
  box-shadow: var(--shadow-primary-btn);
}

.btn-hero-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(44, 229, 200, 0.55), 0 0 15px rgba(255, 230, 0, 0.3);
  filter: brightness(1.05);
}

.btn-hero-secondary {
  background: rgba(13, 20, 29, 0.85);
  color: var(--text-primary);
  border: 1px solid var(--border-glass);
  backdrop-filter: blur(12px);
}

.btn-hero-secondary:hover {
  background: rgba(20, 32, 45, 0.95);
  border-color: var(--neural-teal);
  color: var(--neural-teal);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(44, 229, 200, 0.2);
}

/* ==========================================================================
   Common Section Styles
   ========================================================================== */

.section {
  padding: var(--space-12) 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto var(--space-10);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-3);
}

.section-subtitle {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.6;
}

/* ==========================================================================
   Vision & Manifesto Section
   ========================================================================== */

.vision-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--space-6);
}

.vision-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: var(--space-6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-card);
  transition: var(--transition-smooth);
  overflow: hidden;
}

.card-neural-hairline {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--neural-teal), transparent);
  opacity: 0.4;
  transition: opacity 0.3s ease;
}

.vision-card:hover {
  border-color: var(--border-glass-hover);
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
}

.vision-card:hover .card-neural-hairline {
  opacity: 1;
}

.card-index-tag {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--text-tertiary);
  margin-bottom: var(--space-4);
}

.vision-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-4);
  transition: var(--transition-smooth);
}

.icon-creative {
  background: rgba(229, 220, 53, 0.1);
  border: 1px solid var(--creative-yellow-dim);
  color: var(--creative-yellow);
}

.icon-initiative {
  background: rgba(255, 59, 48, 0.1);
  border: 1px solid var(--initiative-red-dim);
  color: var(--initiative-red);
}

.icon-neural {
  background: rgba(44, 229, 200, 0.1);
  border: 1px solid var(--neural-teal-dim);
  color: var(--neural-teal);
}

.vision-card-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: var(--space-2);
}

.vision-card-desc {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ==========================================================================
   Portfolio Section
   ========================================================================== */

.portfolio-grid {
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
  width: 100%;
}

.project-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: var(--space-8) var(--space-10);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-card);
  transition: var(--transition-smooth);
  overflow: hidden;
}

.project-card-layout {
  display: flex;
  align-items: flex-start;
  gap: var(--space-8);
}

.project-logo-frame {
  flex-shrink: 0;
  width: 170px;
  height: 170px;
  border-radius: var(--radius-md);
  background: linear-gradient(145deg, rgba(13, 20, 29, 0.85) 0%, rgba(8, 13, 19, 0.95) 100%);
  border: 1px solid var(--border-glass);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.5), 0 8px 24px rgba(0, 0, 0, 0.35);
  transition: var(--transition-smooth);
}

.project-card:hover .project-logo-frame {
  border-color: var(--border-glass-hover);
  box-shadow: inset 0 0 25px rgba(44, 229, 200, 0.12), 0 12px 30px rgba(0, 0, 0, 0.45);
}

.project-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: var(--space-3);
  display: block;
  filter: drop-shadow(0 4px 14px rgba(0, 0, 0, 0.6));
  transition: transform 0.4s ease;
}

.project-card:hover .project-logo-img {
  transform: scale(1.05);
}


.project-card-body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.card-glow-edge {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--neural-teal), transparent);
  opacity: 0.4;
  transition: opacity 0.3s ease;
}

.project-card:hover {
  border-color: var(--border-glass-hover);
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
}

.project-card:hover .card-glow-edge {
  opacity: 1;
}

.project-title {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: var(--space-1);
}

.project-tagline {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--neural-teal);
  letter-spacing: 0.01em;
  margin-bottom: var(--space-2);
}

.project-description {
  font-size: 0.96rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 0;
}

/* Card Actions */
.project-actions {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-3);
  padding-top: var(--space-5);
  border-top: 1px solid var(--border-subtle);
  width: 100%;
}

.btn-card-primary {
  height: 42px;
  box-sizing: border-box;
  width: auto;
  padding: 0 1.25rem;
  background: rgba(44, 229, 200, 0.12);
  border: 1px solid var(--border-glass);
  color: var(--neural-teal);
  font-family: var(--font-mono);
  font-size: 0.88rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  white-space: nowrap;
  transition: var(--transition-smooth);
}

.btn-card-primary:hover {
  background: var(--neural-teal);
  color: #06090d;
  border-color: var(--neural-teal);
  box-shadow: 0 4px 20px rgba(44, 229, 200, 0.4);
}

.btn-store {
  height: 42px;
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 0 1rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  transition: var(--transition-smooth);
}

.btn-store:hover {
  background: rgba(44, 229, 200, 0.08);
  border-color: var(--border-glass);
  color: var(--text-primary);
}

.badge-soon {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.1rem 0.35rem;
  background: rgba(229, 220, 53, 0.15);
  border: 1px solid rgba(229, 220, 53, 0.35);
  color: var(--creative-yellow);
  border-radius: var(--radius-xs);
  margin-left: var(--space-1);
}

/* ==========================================================================
   Initiatives Banner
   ========================================================================== */

.initiatives-banner {
  background: linear-gradient(135deg, rgba(13, 20, 29, 0.9) 0%, rgba(20, 32, 45, 0.9) 100%);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: var(--space-8) var(--space-10);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  flex-wrap: wrap;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 30px rgba(44, 229, 200, 0.1);
  position: relative;
  overflow: hidden;
}

.initiatives-banner::after {
  content: '';
  position: absolute;
  right: -50px;
  bottom: -50px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(229, 220, 53, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.initiatives-content {
  max-width: 620px;
}

.initiatives-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-2);
}

.initiatives-desc {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Expandable Contact Form within Initiatives Banner */
.initiatives-form-wrapper {
  width: 100%;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease, margin-top 0.35s ease, padding-top 0.35s ease;
  margin-top: 0;
  padding-top: 0;
  border-top: 1px solid transparent;
}

.initiatives-form-wrapper.is-expanded {
  max-height: 850px;
  opacity: 1;
  pointer-events: auto;
  margin-top: var(--space-6);
  padding-top: var(--space-6);
  border-top-color: var(--border-glass);
}

.initiatives-section {
  scroll-margin-top: 90px;
}

.initiative-contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  width: 100%;
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.form-row-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.form-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-secondary);
}

.label-req {
  color: var(--neural-teal);
  font-size: 0.68rem;
  letter-spacing: 0.04em;
}

.label-opt {
  color: var(--text-tertiary);
  font-size: 0.68rem;
  text-transform: capitalize;
}

.form-input,
.form-textarea {
  width: 100%;
  background: rgba(6, 9, 13, 0.85);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  line-height: 1.5;
  transition: var(--transition-smooth);
  box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.4);
  outline: none;
  box-sizing: border-box;
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--neural-teal);
  background: rgba(8, 14, 20, 0.95);
  box-shadow: 0 0 0 2px rgba(44, 229, 200, 0.15), 0 0 20px rgba(44, 229, 200, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-tertiary);
  opacity: 0.55;
}

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

.form-footer {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex-wrap: wrap;
  padding-top: var(--space-2);
}

.btn-form-cancel {
  background: transparent;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1.4rem;
  color: var(--text-tertiary);
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
  height: 42px;
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-form-cancel:hover {
  color: var(--text-primary);
  border-color: var(--border-glass);
  background: rgba(255, 255, 255, 0.04);
}

.form-status-alert {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  line-height: 1.4;
  padding: 0.55rem 0.9rem;
  border-radius: var(--radius-xs);
  display: none;
  animation: fadeIn 0.3s ease;
  width: 100%;
}

.form-status-alert.is-success {
  display: flex;
  align-items: center;
  color: var(--neural-teal);
  background: rgba(44, 229, 200, 0.08);
  border: 1px solid var(--neural-teal-dim);
}

.form-status-alert.is-error {
  display: flex;
  align-items: center;
  color: #ff6b6b;
  background: rgba(255, 107, 107, 0.08);
  border: 1px solid rgba(255, 107, 107, 0.25);
}

/* ==========================================================================
   Footer
   ========================================================================== */

.footer {
  margin-top: auto;
  border-top: 1px solid var(--border-glass);
  background: #05070a;
  padding: var(--space-10) 0 var(--space-6);
  position: relative;
}

.footer-top-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--space-8);
  padding-bottom: var(--space-8);
  border-bottom: 1px solid var(--border-subtle);
}

.footer-brand-col {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  max-width: 380px;
}

.footer-mission-statement {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.footer-col-title {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--neural-teal);
  margin-bottom: var(--space-4);
}

.footer-links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: var(--neural-teal);
}

.footer-bottom-row {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-top: var(--space-6);
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--text-tertiary);
}

/* ==========================================================================
   Interactive Toast Notification
   ========================================================================== */

.toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1000;
  pointer-events: none;
}

.toast {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: 0.9rem 1.4rem;
  background: rgba(10, 15, 23, 0.95);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.9), 0 0 20px rgba(44, 229, 200, 0.25);
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: 500;
  transform: translateY(100px);
  opacity: 0;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
  pointer-events: auto;
  backdrop-filter: blur(16px);
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

.toast-beacon {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--creative-yellow);
  box-shadow: 0 0 8px var(--creative-yellow);
}

/* ==========================================================================
   Responsive Adaptations
   ========================================================================== */

@media (max-width: 900px) {
  .hero-section {
    min-height: auto;
    padding: var(--space-8) 0 var(--space-10);
  }

  .footer-top-row {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 var(--space-4);
  }

  .nav-wrapper {
    display: none;
  }

  .nav-links {
    display: none;
  }

  .btn-hamburger {
    display: flex;
    margin-left: auto;
  }

  .mobile-nav-drawer {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(6, 9, 13, 0.98);
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
    border-bottom: 1px solid var(--border-glass-cyan);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.95), 0 0 24px rgba(44, 229, 200, 0.12);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.25s ease, visibility 0.25s ease;
    z-index: 1000;
  }

  .mobile-nav-drawer.is-open {
    max-height: 280px;
    opacity: 1;
    visibility: visible;
  }

  .mobile-nav-inner {
    padding-top: var(--space-4);
    padding-bottom: var(--space-4);
  }

  .mobile-nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
    margin: 0;
    padding: 0;
  }

  .mobile-nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.95rem var(--space-4);
    color: var(--text-primary);
    text-decoration: none;
    font-family: var(--font-display);
    font-size: 0.98rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    border-radius: var(--radius-sm);
    background: rgba(13, 20, 30, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: var(--transition-smooth);
  }

  .mobile-nav-link svg {
    color: var(--text-muted);
    transition: var(--transition-smooth);
  }

  .mobile-nav-link:hover,
  .mobile-nav-link:active {
    background: rgba(44, 229, 200, 0.12);
    border-color: var(--border-glass-cyan);
    color: var(--neural-teal);
    box-shadow: 0 0 14px rgba(44, 229, 200, 0.2);
  }

  .mobile-nav-link:hover svg,
  .mobile-nav-link:active svg {
    color: var(--neural-teal);
    transform: translateX(4px);
  }

  /* Fixed Background repositioning for mobile - capture her face! */
  .fixed-bg-img {
    object-position: 68% center;
  }

  .fixed-bg-radial {
    background: radial-gradient(
      ellipse at 68% 36%,
      rgba(44, 229, 200, 0.16) 0%,
      transparent 60%
    );
  }

  .hero-section {
    min-height: auto;
    padding: var(--space-6) 0 var(--space-8);
  }

  .hero-headline {
    font-size: clamp(1.65rem, 6.8vw, 2.4rem);
    line-height: 1.16;
    word-break: normal;
    overflow-wrap: break-word;
  }

  .hero-lead {
    font-size: 0.98rem;
    line-height: 1.55;
    margin-bottom: var(--space-6);
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: var(--space-3);
  }

  .hero-actions .btn {
    width: 100%;
  }

  .vision-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .project-card {
    padding: var(--space-6);
  }

  .project-card-layout {
    flex-direction: column;
    gap: var(--space-5);
    align-items: flex-start;
  }

  .project-logo-frame {
    width: 130px;
    height: 130px;
  }

  .project-actions {
    max-width: 100%;
  }

  .initiatives-banner {
    padding: var(--space-6);
  }
}

@media (max-width: 600px) {
  .project-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-card-primary,
  .btn-store {
    width: 100%;
    justify-content: center;
  }

  .form-row-2col {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .text-human-creativity {
    white-space: normal;
  }
}

@media (max-width: 420px) {
  .brand-name {
    font-size: 1.15rem;
  }
}

