/* Design System CSS Variables (Use These Exact Variables) */

:root {
  /* Colors - Base */
  --color-primary: #312E81;
  --color-secondary: #94A3B8;
  --color-accent: #06B6D4;
  --color-neutral-light: #0F172A;
  --color-neutral-dark: #1F2937;
  --color-background: #ffffff;
  --color-text: #333333;

  /* Colors - Variations (for sophistication) */
  --color-primary-light: rgba(49, 46, 129, 0.1);
  --color-primary-dark: #312E81;
  --color-overlay-light: rgba(49, 46, 129, 0.05);
  --color-overlay-dark: rgba(49, 46, 129, 0.15);

  /* Typography - Fonts */
  --font-heading: Bricolage Grotesque, serif;
  --font-body: Plus Jakarta Sans, sans-serif;

  /* Typography - Weights (use variety!) */
  --font-weight-light: 300;
  --font-weight-normal: 400;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;

  /* Typography - Letter Spacing */
  --letter-spacing-tight: -0.02em;
  --letter-spacing-normal: 0;
  --letter-spacing-wide: 0.05em;
  --letter-spacing-wider: 0.1em;

  /* Typography - Line Height */
  --line-height-tight: 1.2;
  --line-height-normal: 1.5;
  --line-height-relaxed: 1.8;

  /* Shadows - Layered for depth (use multiple!) */
  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07), 0 2px 4px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15), 0 10px 10px rgba(0, 0, 0, 0.08);
  --shadow-2xl: 0 25px 50px rgba(0, 0, 0, 0.25);

  /* Spacing Scale (for rhythm) */
  --space-xs: 0.25rem;    /* 4px */
  --space-sm: 0.5rem;     /* 8px */
  --space-md: 1rem;       /* 16px */
  --space-lg: 2rem;       /* 32px */
  --space-xl: 4rem;       /* 64px */
  --space-2xl: 6rem;      /* 96px */
  --space-3xl: 8rem;      /* 128px */

  /* Container */
  --container-width: 1200px;
  --container-padding: var(--space-lg);

  /* Border Radius (vary for visual interest) */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-2xl: 32px;
  --radius-full: 9999px;

  /* Transitions (use appropriate timing) */
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 500ms cubic-bezier(0.68, -0.55, 0.265, 1.55);

  /* Z-index Scale (for layering) */
  --z-base: 1;
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-overlay: 300;
  --z-modal: 400;
  --z-tooltip: 500;
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1rem;
}

/* Accessibility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* Form Styles */
.form-message {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 0.5rem;
  font-size: 0.9rem;
  display: none;
}

.form-message.success {
  background: #d1fae5;
  color: #065f46;
  border: 1px solid #10b981;
}

.form-message.error {
  background: #fee2e2;
  color: #991b1b;
  border: 1px solid #ef4444;
}


/* navigation Section */
/* DESIGN SYSTEM VARIABLES */
:root {
  --primary: #312E81;
  --secondary: #94A3B8;
  --accent: #06B6D4;
  --neutral-dark: #0F172A;
  --neutral-mid: #1F2937;
  --neutral-light: #F3F4F6;
  --white: #ffffff;
  
  --font-heading: 'Bricolage Grotesque', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  
  --ease-out: cubic-bezier(0.215, 0.61, 0.355, 1);
  --header-height: 90px;
}

/* RESET & BASE */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  /* Padding to prevent content jump when header becomes fixed */
  padding-top: var(--header-height);
  background-color: var(--neutral-dark);
}

/* HEADER STRUCTURE */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  background-color: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(148, 163, 184, 0.1);
  transition: transform 0.4s var(--ease-out), background-color 0.3s ease;
}

.site-header.is-hidden {
  transform: translateY(-100%);
}

/* Top Accent Line */
.laser-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 50%, var(--primary) 100%);
  opacity: 0.8;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

/* LOGO */
.brand-logo {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  line-height: 1;
  color: var(--white);
  z-index: 1002;
  position: relative;
}

.brand-text {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.brand-text .text-accent {
  color: var(--accent);
}

.brand-sub {
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  color: var(--secondary);
  text-transform: uppercase;
  margin-top: 4px;
  font-weight: 600;
}

/* DESKTOP NAV */
.desktop-nav {
  display: none;
}

@media (min-width: 1024px) {
  .desktop-nav {
    display: block;
  }
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}

.nav-link {
  text-decoration: none;
  color: var(--secondary);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  position: relative;
  padding: 0.5rem 0;
  transition: color 0.3s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: var(--accent);
  transition: width 0.3s var(--ease-out);
}

.nav-link:hover,
.nav-link.active {
  color: var(--white);
}

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

/* ACTIONS AREA */
.header-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  z-index: 1002;
}

/* CTA BUTTON */
.btn-quote {
  display: none;
  text-decoration: none;
  background-color: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
  padding: 0.75rem 1.5rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
  align-items: center;
  gap: 0.5rem;
}

@media (min-width: 768px) {
  .btn-quote {
    display: flex;
  }
}

.btn-quote:hover {
  background-color: var(--accent);
  color: var(--neutral-dark);
  box-shadow: 0 0 15px rgba(6, 182, 212, 0.4);
}

.btn-icon {
  transition: transform 0.3s var(--ease-out);
}

.btn-quote:hover .btn-icon {
  transform: translate(3px, -3px);
}

/* MOBILE TOGGLE */
.menu-toggle {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--white);
  padding: 0.5rem;
}

.menu-text {
  display: none;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

@media (min-width: 768px) {
  .menu-text {
    display: block;
  }
  
  /* On desktop, hide toggle entirely since we have nav links */
  @media (min-width: 1024px) {
    .menu-toggle {
      display: none;
    }
  }
}

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

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--white);
  transition: transform 0.3s var(--ease-out), opacity 0.3s ease;
}

/* Hamburger Active State */
.menu-toggle[aria-expanded="true"] .hamburger span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
  background-color: var(--accent);
}

.menu-toggle[aria-expanded="true"] .hamburger span:nth-child(2) {
  transform: translateY(-6px) rotate(-45deg);
  background-color: var(--accent);
}

/* MOBILE OVERLAY */
.mobile-menu {
  position: fixed;
  inset: 0;
  background-color: var(--neutral-dark);
  z-index: 1001;
  display: flex;
  flex-direction: column;
  padding-top: var(--header-height);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
}

/* Background Grid Pattern for Menu */
.mobile-bg-grid {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(148, 163, 184, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  z-index: -1;
}

.mobile-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding-bottom: 2rem;
}

.mobile-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-link {
  display: block;
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  text-transform: uppercase;
  line-height: 1.1;
  opacity: 0;
  transform: translateY(20px);
  transition: color 0.3s ease, transform 0.4s var(--ease-out), opacity 0.4s ease;
  /* Staggered delay handled via JS/inline-style */
  transition-delay: var(--delay, 0s);
}

@media (max-width: 480px) {
  .mobile-link {
    font-size: 2.25rem;
  }
}

.mobile-menu.is-open .mobile-link {
  opacity: 1;
  transform: translateY(0);
}

.mobile-link:hover {
  color: var(--accent);
  -webkit-text-stroke: 1px var(--accent);
}

.mobile-footer {
  margin-top: auto;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s var(--ease-out);
  transition-delay: 0.8s;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .mobile-footer {
    grid-template-columns: 1fr auto;
    align-items: end;
  }
}

.mobile-menu.is-open .mobile-footer {
  opacity: 1;
  transform: translateY(0);
}

.mobile-contact .label {
  color: var(--accent);
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.contact-link {
  display: block;
  color: var(--secondary);
  text-decoration: none;
  font-size: 1rem;
  margin-bottom: 0.25rem;
  transition: color 0.2s;
}

.contact-link:hover {
  color: var(--white);
}

.mobile-cta {
  display: inline-block;
  background-color: var(--primary);
  color: var(--white);
  padding: 1rem 2rem;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-align: center;
  transition: background-color 0.3s;
}

.mobile-cta:hover {
  background-color: var(--accent);
  color: var(--neutral-dark);
}

/* hero Section */
:root {
  --hero-bg: #0F172A;
  --hero-text: #F8FAFC;
  --hero-accent: #06B6D4;
  --hero-primary: #312E81;
  --hero-secondary: #94A3B8;
  --font-heading: 'Bricolage Grotesque', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
}

/* Base Layout */
.hero-industrial {
  position: relative;
  background-color: var(--hero-bg);
  color: var(--hero-text);
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 120px 0 80px;
}

/* Background Elements */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(49, 46, 129, 0.4) 0%, rgba(15, 23, 42, 0) 60%);
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(148, 163, 184, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(circle at center, black 40%, transparent 100%);
  -webkit-mask-image: radial-gradient(circle at center, black 40%, transparent 100%);
}

/* Content Layout */
.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 992px) {
  .hero-layout {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

/* Typography & Text Content */
.hero-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  color: var(--hero-accent);
}

.status-indicator {
  width: 8px;
  height: 8px;
  background-color: var(--hero-accent);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--hero-accent);
  animation: blink 2s infinite;
}

.hero-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-bottom: 2rem;
  color: white;
}

.line-wrapper {
  display: block;
  overflow: hidden;
}

.text-highlight {
  color: transparent;
  -webkit-text-stroke: 1px var(--hero-accent);
  position: relative;
  display: inline-block;
}

.text-highlight::after {
  content: 'WORTH';
  position: absolute;
  left: 3px;
  top: 3px;
  color: var(--hero-accent);
  opacity: 0.3;
  -webkit-text-stroke: 0;
  z-index: -1;
}

.hero-description {
  font-family: var(--font-body);
  color: var(--hero-secondary);
  font-size: 1.125rem;
  line-height: 1.6;
  max-width: 500px;
  margin-bottom: 3rem;
  border-left: 1px solid rgba(148, 163, 184, 0.2);
  padding-left: 1.5rem;
}

/* Actions */
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  font-family: var(--font-body);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.btn-primary {
  background-color: var(--hero-accent);
  color: #0F172A;
}

.btn-primary:hover {
  background-color: white;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px -5px rgba(6, 182, 212, 0.4);
}

.btn-text {
  color: white;
  border-bottom: 1px solid transparent;
  padding-left: 0;
  padding-right: 0;
}

.btn-text:hover {
  border-bottom-color: var(--hero-accent);
}

/* Tech Specs decoration */
.tech-specs {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(148, 163, 184, 0.1);
}

.spec-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.spec-label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--hero-secondary);
  font-family: monospace;
}

.spec-value {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: white;
}

/* Visual Content */
.hero-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.image-wrapper {
  position: relative;
  width: 100%;
  max-width: 500px;
  aspect-ratio: 3/4;
  z-index: 1;
}

.image-reveal-mask {
  width: 100%;
  height: 100%;
  overflow: hidden;
  clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%); /* Start hidden bottom */
  transition: clip-path 1.2s cubic-bezier(0.19, 1, 0.22, 1);
  background-color: #1e293b;
}

.is-visible .image-reveal-mask {
  clip-path: polygon(0 100%, 100% 100%, 100% 0, 0 0); /* Reveal up */
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(20%) contrast(110%);
  transform: scale(1.1);
  transition: transform 1.5s ease-out;
}

.is-visible .hero-img {
  transform: scale(1);
}

/* Accent Frame & Decorations */
.accent-frame {
  position: absolute;
  top: 20px;
  left: -20px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--hero-accent);
  z-index: -1;
  opacity: 0;
  transform: translate(10px, 10px);
  transition: all 0.8s ease 0.4s;
}

.is-visible .accent-frame {
  opacity: 1;
  transform: translate(0, 0);
}

.marker {
  position: absolute;
  width: 20px;
  height: 20px;
  border-color: white;
  border-style: solid;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.5s ease 1s;
}

.is-visible .marker { opacity: 1; }

.marker-tl {
  top: -10px;
  left: -10px;
  border-width: 2px 0 0 2px;
}

.marker-br {
  bottom: -10px;
  right: -10px;
  border-width: 0 2px 2px 0;
}

/* Floating Badge */
.floating-badge {
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 120px;
  height: 120px;
  background: var(--hero-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
  z-index: 3;
  opacity: 0;
  transform: scale(0.5);
  transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.8s;
}

.is-visible .floating-badge {
  opacity: 1;
  transform: scale(1);
}

.floating-badge svg {
  animation: rotate 20s linear infinite;
}

.badge-center {
  position: absolute;
  font-weight: 800;
  font-family: var(--font-heading);
  color: #0F172A;
  font-size: 1.5rem;
}

.photo-credits {
  margin-top: 1rem;
  font-size: 0.75rem;
  color: var(--hero-secondary);
  opacity: 0.6;
}
.photo-credits a {
  color: var(--hero-accent);
  text-decoration: none;
}

/* Animation Classes */
.line-reveal {
  display: block;
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.8s ease;
}

.is-visible .line-reveal {
  transform: translateY(0);
  opacity: 1;
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.is-visible.fade-in {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger Delays */
.line-wrapper:nth-child(1) .line-reveal { transition-delay: 100ms; }
.line-wrapper:nth-child(2) .line-reveal { transition-delay: 200ms; }
.line-wrapper:nth-child(3) .line-reveal { transition-delay: 300ms; }
.line-wrapper:nth-child(4) .line-reveal { transition-delay: 400ms; }

.hero-description.fade-in { transition-delay: 600ms; }
.hero-actions.fade-in { transition-delay: 700ms; }
.tech-specs.fade-in { transition-delay: 800ms; }

/* Keyframes */
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Responsive Adjustments */
@media (max-width: 991px) {
  .hero-layout {
    gap: 3rem;
    text-align: center;
  }
  
  .hero-meta,
  .hero-actions {
    justify-content: center;
  }
  
  .hero-description {
    margin-left: auto;
    margin-right: auto;
    border-left: none;
    border-top: 1px solid rgba(148, 163, 184, 0.2);
    padding-top: 1.5rem;
    padding-left: 0;
  }
  
  .tech-specs {
    justify-content: center;
  }
  
  .hero-visual {
    align-items: center;
  }
  
  .floating-badge {
    width: 90px;
    height: 90px;
    bottom: -20px;
    left: -10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .line-reveal, .fade-in, .image-reveal-mask, .hero-img, .accent-frame, .floating-badge {
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
    clip-path: none !important;
  }
  .status-indicator, .floating-badge svg {
    animation: none !important;
  }
}

/* about Section */
/* INDUSTRIAL INDIGO & CONCRETE THEME - ABOUT SECTION */
:root {
  --c-primary: #312E81;
  --c-dark: #0F172A;
  --c-slate: #1E293B;
  --c-accent: #06B6D4;
  --c-text: #F8FAFC;
  --c-text-muted: #94A3B8;
  --font-heading: 'Bricolage Grotesque', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
}

.about-industrial {
  position: relative;
  background-color: var(--c-dark);
  color: var(--c-text);
  padding: 120px 0;
  overflow: hidden;
  isolation: isolate;
}

/* Decorative Background Grid */
.industrial-grid-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  opacity: 0.1;
}

.grid-line {
  position: absolute;
  background-color: var(--c-accent);
}

.grid-line.vertical {
  width: 1px;
  height: 100%;
  top: 0;
}

.grid-line.horizontal {
  width: 100%;
  height: 1px;
  left: 0;
}

.pos-1 { left: 15%; }
.pos-2 { left: 50%; }
.pos-3 { left: 85%; }
.pos-4 { top: 30%; }

/* Main Layout - 12 Column Grid */
.about-layout {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 2rem;
  align-items: center;
}

/* Header Area */
.about-header {
  grid-column: 1 / 13;
  margin-bottom: 4rem;
  position: relative;
}

.tech-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.875rem;
  letter-spacing: 0.2em;
  color: var(--c-accent);
  margin-bottom: 1rem;
  font-weight: 600;
}

.headline {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 0.95;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  max-width: 100%;
}

.text-outline {
  color: transparent;
  -webkit-text-stroke: 1px var(--c-text-muted);
  transition: all 0.4s ease;
}

.about-header:hover .text-outline {
  color: var(--c-accent);
  -webkit-text-stroke: 0px;
  opacity: 0.8;
}

/* Visual Area (Image) */
.about-visual {
  grid-column: 6 / 13;
  grid-row: 2;
  position: relative;
  z-index: 1;
}

.image-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--c-slate);
  overflow: visible;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.2);
  transition: filter 0.5s ease;
}

.image-frame:hover img {
  filter: grayscale(0%) contrast(1.1);
}

/* Tech Overlay & Brackets */
.tech-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, rgba(6, 182, 212, 0.2), transparent 40%);
  pointer-events: none;
  mix-blend-mode: overlay;
}

.corner-bracket {
  position: absolute;
  width: 40px;
  height: 40px;
  border: 2px solid var(--c-accent);
  z-index: 2;
  transition: all 0.3s ease;
}

.top-left {
  top: -10px;
  left: -10px;
  border-right: none;
  border-bottom: none;
}

.bottom-right {
  bottom: -10px;
  right: -10px;
  border-left: none;
  border-top: none;
}

.image-frame:hover .top-left {
  transform: translate(5px, 5px);
}

.image-frame:hover .bottom-right {
  transform: translate(-5px, -5px);
}

/* Floating Stat Box */
.stat-box {
  position: absolute;
  bottom: 40px;
  left: -60px;
  background: var(--c-primary);
  padding: 2rem;
  box-shadow: 10px 10px 0px rgba(0,0,0,0.3);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1;
  color: #fff;
}

.stat-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: var(--c-accent);
  margin-top: 0.5rem;
}

/* Text Content Area */
.about-content {
  grid-column: 1 / 6;
  grid-row: 2;
  position: relative;
  z-index: 2;
  padding-right: 2rem;
}

.sub-headline {
  font-family: var(--font-heading);
  font-size: 2rem;
  line-height: 1.1;
  margin-bottom: 2rem;
  color: #fff;
  border-left: 3px solid var(--c-accent);
  padding-left: 1.5rem;
}

.body-text {
  font-family: var(--font-body);
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--c-text-muted);
  margin-bottom: 1.5rem;
}

.body-text strong {
  color: var(--c-accent);
  font-weight: 600;
}

.tech-link {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
  text-decoration: none;
  color: #fff;
  font-weight: 700;
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--c-accent);
  transition: gap 0.3s ease;
}

.tech-link:hover {
  gap: 1.5rem;
}

.photo-credits {
  position: absolute;
  bottom: -30px;
  right: 0;
  font-size: 0.7rem;
  color: var(--c-text-muted);
  opacity: 0.6;
}

.photo-credits a {
  color: inherit;
  text-decoration: underline;
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in:nth-child(2) { transition-delay: 0.2s; }
.fade-in:nth-child(3) { transition-delay: 0.4s; }

/* Responsive Design */
@media (max-width: 1024px) {
  .about-layout {
    display: flex;
    flex-direction: column;
    gap: 4rem;
  }
  
  .about-header, .about-visual, .about-content {
    grid-column: auto;
  }

  .about-content {
    order: 2;
    padding-right: 0;
  }
  
  .about-visual {
    order: 3;
    width: 100%;
    margin-top: 2rem;
    padding-left: 20px;
  }

  .stat-box {
    left: 0;
    bottom: -30px;
  }
}

@media (max-width: 768px) {
  .about-industrial {
    padding: 80px 0;
  }
  
  .headline {
    font-size: 2.5rem;
  }
  
  .sub-headline {
    font-size: 1.5rem;
  }

  .image-frame {
    aspect-ratio: 16/9;
  }
}

/* services Section */
/* Industrial Spec-Sheet Services Layout */
.section-services {
  position: relative;
  background-color: #0F172A; /* Slate 900 */
  color: #F8FAFC;
  padding: 120px 0;
  overflow: hidden;
  isolation: isolate;
}

/* --- Tech Grid Background --- */
.tech-grid-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.15;
}

.grid-line {
  position: absolute;
  background-color: #06B6D4; /* Cyan accent */
}

.vert-1 { left: 15%; top: 0; bottom: 0; width: 1px; }
.vert-2 { right: 15%; top: 0; bottom: 0; width: 1px; }
.horz-1 { top: 20%; left: 0; right: 0; height: 1px; }
.horz-2 { bottom: 20%; left: 0; right: 0; height: 1px; }

.crosshair {
  position: absolute;
  width: 20px;
  height: 20px;
}

.crosshair::before, .crosshair::after {
  content: '';
  position: absolute;
  background: #06B6D4;
}
.crosshair::before { width: 100%; height: 2px; top: 9px; }
.crosshair::after { height: 100%; width: 2px; left: 9px; }

.c-tl { top: 20px; left: 20px; }
.c-tr { top: 20px; right: 20px; }
.c-bl { bottom: 20px; left: 20px; }
.c-br { bottom: 20px; right: 20px; }

/* --- Typography & Header --- */
.services-header {
  margin-bottom: 80px;
  max-width: 800px;
  position: relative;
  z-index: 2;
}

.meta-label {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  color: #06B6D4;
  font-size: 0.875rem;
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
}

.section-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.1;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 2rem;
  color: #fff;
}

.text-highlight {
  color: transparent;
  -webkit-text-stroke: 1px #fff;
  opacity: 0.7;
}

.section-intro {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.125rem;
  color: #94A3B8;
  max-width: 600px;
  line-height: 1.7;
  border-left: 2px solid #06B6D4;
  padding-left: 1.5rem;
}

/* --- Service List Layout --- */
.services-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2px; /* Slight gap for background bleed */
  background: #1E293B; /* Border color simulation */
  border: 1px solid #1E293B;
}

.service-card {
  background-color: #0F172A;
  padding: 3rem 2rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 3rem;
  align-items: start;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: #06B6D4;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.4s ease;
}

.service-card:hover {
  background-color: #151F32;
}

.service-card:hover::before {
  transform: scaleY(1);
}

/* Index Number */
.card-index {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: #1E293B;
  line-height: 1;
  transition: color 0.4s ease;
}

.service-card:hover .card-index {
  color: #312E81;
}

/* Content Area */
.card-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.card-header {
  display: flex;
  align-items: baseline;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.card-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  margin: 0;
  color: #F8FAFC;
}

.tech-badge {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  color: #06B6D4;
  border: 1px solid #06B6D4;
  padding: 0.25em 0.75em;
  border-radius: 99px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.card-desc {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: #94A3B8;
  line-height: 1.6;
  max-width: 90%;
}

.specs-list {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  padding: 0;
  margin-top: 1rem;
  opacity: 0.7;
  transition: opacity 0.3s ease;
  flex-wrap: wrap;
}

.service-card:hover .specs-list {
  opacity: 1;
}

.specs-list li {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.8125rem;
  color: #CBD5E1;
  position: relative;
  padding-left: 1rem;
}

.specs-list li::before {
  content: '>';
  position: absolute;
  left: 0;
  color: #06B6D4;
}

/* Action Arrow */
.card-action {
  align-self: center;
}

.arrow-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border: 1px solid #334155;
  color: #94A3B8;
  font-size: 1.5rem;
  transition: all 0.3s ease;
  border-radius: 50%;
}

.service-card:hover .arrow-box {
  background: #06B6D4;
  border-color: #06B6D4;
  color: #0F172A;
  transform: translateX(10px) rotate(-45deg);
}

/* --- Responsive Adjustments --- */
@media (max-width: 900px) {
  .service-card {
    grid-template-columns: 1fr auto;
    gap: 1.5rem;
  }

  .card-index {
    grid-column: 1 / -1;
    font-size: 2rem;
    color: #312E81; /* Visible on mobile */
  }

  .card-content {
    grid-column: 1 / 2;
  }

  .card-action {
    grid-column: 2 / 3;
    align-self: start;
  }
  
  .tech-grid-bg {
    display: none;
  }
}

@media (max-width: 600px) {
  .section-title {
    font-size: 2.25rem;
  }
  
  .card-header {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .specs-list {
    display: none;
  }
  
  .service-card {
    padding: 2rem 1.5rem;
  }
}

/* features Section */
/* Industrial Features Section */
.features-industrial {
  position: relative;
  background-color: #0F172A;
  color: #F3F4F6;
  padding: 120px 0;
  overflow: hidden;
  isolation: isolate;
}

/* Decorative Background Grid */
.industrial-bg-grid {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(6, 182, 212, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(6, 182, 212, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  z-index: -1;
  mask-image: radial-gradient(circle at center, black 40%, transparent 80%);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Layout */
.features-header {
  max-width: 800px;
  margin-bottom: 80px;
}

.tech-badge {
  display: inline-block;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 0.875rem;
  color: #06B6D4;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  border: 1px solid rgba(6, 182, 212, 0.3);
  padding: 0.25rem 0.75rem;
  background: rgba(6, 182, 212, 0.05);
}

.section-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.1;
  font-weight: 800;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.text-outline {
  -webkit-text-stroke: 1px #F3F4F6;
  color: transparent;
}

.text-cyan {
  color: #06B6D4;
}

.section-intro {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.125rem;
  color: #94A3B8;
  max-width: 600px;
  line-height: 1.6;
}

/* Grid Layout */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  width: 100%;
}

@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

/* Feature Cards */
.feature-card {
  position: relative;
  background: #1F2937;
  border: 1px solid #334155;
  padding: 2.5rem;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 320px;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: #06B6D4;
  box-shadow: 0 20px 40px -10px rgba(6, 182, 212, 0.15);
}

/* Technical Decorations */
.card-decoration {
  position: absolute;
  width: 10px;
  height: 10px;
  border-color: #06B6D4;
  border-style: solid;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.card-decoration.top-right {
  top: -1px;
  right: -1px;
  border-width: 2px 2px 0 0;
}

.card-decoration.bottom-left {
  bottom: -1px;
  left: -1px;
  border-width: 0 0 2px 2px;
}

.feature-card:hover .card-decoration {
  opacity: 1;
}

/* Content Styling */
.feature-index {
  display: block;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  color: #334155;
  line-height: 1;
  margin-bottom: 2rem;
  transition: color 0.3s ease;
}

.feature-card:hover .feature-index {
  color: #06B6D4;
}

.feature-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #F3F4F6;
  margin-bottom: 1rem;
}

.feature-desc {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: #94A3B8;
  line-height: 1.6;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.tech-specs {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #334155;
  padding-top: 1rem;
  font-family: 'Bricolage Grotesque', monospace;
  font-size: 0.75rem;
  color: #64748B;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Hover Sweep Effect */
.card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(6, 182, 212, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.feature-card:hover .card-overlay {
  opacity: 1;
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .fade-in {
    transition: none;
    opacity: 1;
    transform: none;
  }
}

/* portfolio Section */
/* Industrial Portfolio Section */
.portfolio-industrial {
  position: relative;
  background-color: #0F172A;
  color: #F8FAFC;
  padding: 100px 0;
  overflow: hidden;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

/* Subtle Grid Background Overlay */
.tech-grid-overlay {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(30, 41, 59, 0.4) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30, 41, 59, 0.4) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  z-index: 1;
}

.portfolio-industrial .container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Header Styling */
.portfolio-header {
  margin-bottom: 3.5rem;
  max-width: 700px;
}

.header-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: #06B6D4;
}

.status-dot {
  width: 8px;
  height: 8px;
  background-color: #06B6D4;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(6, 182, 212, 0.6);
  animation: pulse-dot 2s infinite;
}

.mono-text {
  font-family: 'Courier New', monospace;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.section-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1;
  margin-bottom: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.text-outline {
  -webkit-text-stroke: 1px #F8FAFC;
  color: transparent;
  position: relative;
}

.section-subtitle {
  color: #94A3B8;
  font-size: 1.125rem;
  line-height: 1.6;
  max-width: 500px;
}

/* Cinematic Grid Layout */
.project-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.5rem;
  margin-bottom: 4rem;
}

/* Grid Item Placements */
.project-card {
  position: relative;
  border-radius: 2px;
  overflow: hidden;
  background: #1E293B;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.card-hero {
  grid-column: span 12;
  aspect-ratio: 16/9;
}

.card-secondary, 
.card-detail {
  grid-column: span 6;
  aspect-ratio: 4/3;
}

.card-small {
  grid-column: span 4;
  aspect-ratio: 1/1;
}

/* Responsive Grid Adjustments */
@media (min-width: 768px) {
  .card-hero {
    grid-column: span 7;
    grid-row: span 2;
    aspect-ratio: auto;
    min-height: 500px;
  }
  
  .card-secondary {
    grid-column: span 5;
    grid-row: span 1;
    aspect-ratio: auto;
  }
  
  .card-detail {
    grid-column: span 5;
    grid-row: span 1;
    aspect-ratio: auto;
  }
  
  .card-small {
    grid-column: span 4;
    aspect-ratio: 4/3;
  }
}

@media (min-width: 1024px) {
  .card-hero { grid-column: span 8; }
  .card-secondary { grid-column: span 4; }
  .card-detail { grid-column: span 4; }
  /* Bottom row */
  .card-small { grid-column: span 4; }
}

/* Card Styling & Interaction */
.image-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1), filter 0.4s ease;
}

.project-card:hover .image-wrapper img {
  transform: scale(1.05);
  filter: contrast(110%) brightness(110%);
}

.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0) 50%);
  opacity: 0.8;
  transition: opacity 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
}

.project-card:hover .overlay {
  opacity: 1;
  background: linear-gradient(0deg, rgba(15, 23, 42, 0.95) 10%, rgba(6, 182, 212, 0.1) 100%);
}

.project-info {
  transform: translateY(10px);
  transition: transform 0.4s ease;
}

.project-card:hover .project-info {
  transform: translateY(0);
}

.project-code {
  display: block;
  font-family: 'Courier New', monospace;
  font-size: 0.75rem;
  color: #06B6D4;
  margin-bottom: 0.5rem;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease 0.1s;
}

.project-card:hover .project-code {
  opacity: 1;
  transform: translateX(0);
}

.project-name {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin: 0;
}

.view-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #94A3B8;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease 0.2s;
}

.project-card:hover .view-btn {
  opacity: 1;
  transform: translateY(0);
}

/* CTA Button */
.btn-industrial {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  background-color: transparent;
  border: 1px solid #312E81;
  color: #F8FAFC;
  padding: 1rem 2rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  min-width: 250px;
}

.btn-industrial:hover {
  background-color: #312E81;
  border-color: #06B6D4;
  box-shadow: 0 0 20px rgba(49, 46, 129, 0.4);
}

.portfolio-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.photo-credits {
  font-size: 0.75rem;
  color: #64748B;
  text-align: center;
  max-width: 600px;
}

.photo-credits a {
  color: #94A3B8;
  text-decoration: underline;
  transition: color 0.2s;
}

.photo-credits a:hover {
  color: #06B6D4;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.95);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(10px);
}

.lightbox.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
  font-size: 2rem;
  line-height: 1;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.lightbox-close:hover {
  border-color: #06B6D4;
  color: #06B6D4;
  transform: rotate(90deg);
}

.lightbox-content {
  max-width: 90vw;
  max-height: 85vh;
  position: relative;
}

.lightbox-image {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  border: 1px solid #334155;
}

/* Animations */
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays */
.project-card:nth-child(1) { transition-delay: 0.1s; }
.project-card:nth-child(2) { transition-delay: 0.2s; }
.project-card:nth-child(3) { transition-delay: 0.3s; }
.project-card:nth-child(4) { transition-delay: 0.1s; }
.project-card:nth-child(5) { transition-delay: 0.2s; }
.project-card:nth-child(6) { transition-delay: 0.3s; }

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}


/* team Section */
/* TEAM SECTION - INDUSTRIAL DOSSIER STYLE */
.team-industrial {
  position: relative;
  background-color: #0F172A;
  color: #F3F4F6;
  padding: 120px 0;
  overflow: hidden;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

/* Background Grid Overlay */
.grid-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  z-index: 0;
  opacity: 0.1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.grid-col {
  width: 1px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, #312E81, transparent);
}

.team-industrial .container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Header Styling */
.team-header {
  margin-bottom: 5rem;
  max-width: 800px;
}

.meta-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: 'Courier New', monospace;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  color: #06B6D4;
  margin-bottom: 1.5rem;
  background: rgba(6, 182, 212, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 4px;
  border: 1px solid rgba(6, 182, 212, 0.2);
}

.status-dot {
  width: 8px;
  height: 8px;
  background-color: #06B6D4;
  border-radius: 50%;
  box-shadow: 0 0 8px #06B6D4;
  animation: pulse 2s infinite;
}

.section-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.text-outline {
  color: transparent;
  -webkit-text-stroke: 1px #94A3B8;
  opacity: 0.7;
}

.text-cyan {
  color: #06B6D4;
}

.section-desc {
  font-size: 1.125rem;
  line-height: 1.6;
  color: #94A3B8;
  max-width: 540px;
}

/* Grid Layout */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-bottom: 3rem;
}

@media (max-width: 1024px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .team-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

/* Card Styling */
.team-card {
  position: relative;
  background: #1F2937;
  border: 1px solid #312E81;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.4s ease;
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  border-color: #06B6D4;
  z-index: 2;
}

.card-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Visual Area */
.card-visual {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  border-bottom: 1px solid #312E81;
}

.member-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.1);
  transition: filter 0.5s ease, transform 0.8s ease;
}

.team-card:hover .member-photo {
  filter: grayscale(0%) contrast(1);
  transform: scale(1.05);
}

.visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.9), transparent 60%);
  z-index: 1;
}

/* Tech Markers (The corners) */
.tech-markers .corner {
  position: absolute;
  width: 10px;
  height: 10px;
  border-color: #06B6D4;
  border-style: solid;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.team-card:hover .tech-markers .corner {
  opacity: 1;
}

.tech-markers .tl { top: 12px; left: 12px; border-width: 2px 0 0 2px; }
.tech-markers .tr { top: 12px; right: 12px; border-width: 2px 2px 0 0; }
.tech-markers .bl { bottom: 12px; left: 12px; border-width: 0 0 2px 2px; }
.tech-markers .br { bottom: 12px; right: 12px; border-width: 0 2px 2px 0; }

/* Content Area */
.card-content {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  position: relative;
}

.member-id {
  font-family: 'Courier New', monospace;
  color: #06B6D4;
  font-size: 0.75rem;
  margin-bottom: 0.5rem;
  opacity: 0.7;
}

.member-name {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: white;
}

.member-role {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #94A3B8;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid #374151;
  padding-bottom: 1rem;
}

/* Stats Grid */
.member-stats {
  display: flex;
  gap: 2rem;
  margin-top: auto;
}

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

.stat .label {
  font-size: 0.65rem;
  color: #6B7280;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.stat .value {
  font-size: 1rem;
  font-weight: 700;
  color: #F3F4F6;
  font-family: 'Bricolage Grotesque', sans-serif;
}

/* Credits */
.photo-credits {
  margin-top: 3rem;
  border-top: 1px solid #1F2937;
  padding-top: 1.5rem;
  font-size: 0.75rem;
  color: #4B5563;
  text-align: right;
}

.photo-credits a {
  color: #64748B;
  transition: color 0.2s;
}

.photo-credits a:hover {
  color: #06B6D4;
}

/* Animation */
@keyframes pulse {
  0% { opacity: 1; box-shadow: 0 0 0 0 rgba(6, 182, 212, 0.4); }
  70% { opacity: 0.7; box-shadow: 0 0 0 6px rgba(6, 182, 212, 0); }
  100% { opacity: 1; box-shadow: 0 0 0 0 rgba(6, 182, 212, 0); }
}

/* testimonials Section */
/* Industrial Indigo & Concrete Design System */
:root {
  --color-primary: #312E81;
  --color-secondary: #94A3B8;
  --color-accent: #06B6D4;
  --color-dark: #0F172A;
  --color-darker: #020617;
  --color-card-bg: #1E1B4B;
  --font-heading: 'Bricolage Grotesque', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --ease-industrial: cubic-bezier(0.2, 0.0, 0.2, 1);
}

.testimonials-industrial {
  background-color: var(--color-dark);
  color: white;
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  font-family: var(--font-body);
}

/* Ambient Blueprint Grid Background */
.blueprint-grid {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(6, 182, 212, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(6, 182, 212, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  z-index: 0;
}

.industrial-glow {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(49, 46, 129, 0.4) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

/* Header Styling */
.header-block {
  margin-bottom: 5rem;
}

.tech-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(6, 182, 212, 0.1);
  border: 1px solid rgba(6, 182, 212, 0.3);
  padding: 0.5rem 1rem;
  margin-bottom: 1.5rem;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.status-light {
  width: 8px;
  height: 8px;
  background-color: var(--color-accent);
  box-shadow: 0 0 10px var(--color-accent);
  border-radius: 50%;
  animation: blink 2s infinite;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.1;
  font-weight: 700;
  margin-bottom: 2rem;
}

.text-outline {
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.3);
  display: block;
}

.header-line {
  width: 100px;
  height: 4px;
  background: var(--color-accent);
  margin-top: 1rem;
}

/* Reviews Track / Grid */
.reviews-track {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .reviews-track {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .reviews-track {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Review Card Styling */
.review-card {
  background: var(--color-card-bg);
  border-top: 2px solid rgba(255, 255, 255, 0.1);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.4s var(--ease-industrial);
  position: relative;
  height: 100%;
  min-height: 320px;
}

.review-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-top: none;
  pointer-events: none;
  transition: border-color 0.4s ease;
}

.review-card:hover {
  transform: translateY(-8px);
  background: #25225d;
  border-top-color: var(--color-accent);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.5);
}

.review-card:hover::before {
  border-color: rgba(6, 182, 212, 0.2);
}

/* Card Meta */
.card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  font-family: monospace;
  color: var(--color-secondary);
  font-size: 0.875rem;
}

.project-id {
  background: rgba(255, 255, 255, 0.05);
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
}

.rating {
  color: var(--color-accent);
  letter-spacing: 2px;
}

/* Content */
.review-content {
  font-size: 1.125rem;
  line-height: 1.6;
  color: #E2E8F0;
  margin: 0 0 2.5rem 0;
  flex-grow: 1;
}

/* Footer */
.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
}

.author {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-style: normal;
}

.author-name {
  font-family: var(--font-heading);
  font-weight: 700;
  color: white;
  font-size: 1.1rem;
}

.author-role {
  color: var(--color-secondary);
  font-size: 0.875rem;
}

.verified-badge {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: var(--color-accent);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

/* Tech Ruler Decoration */
.tech-ruler {
  margin-top: 4rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--color-secondary);
  font-family: monospace;
  opacity: 0.5;
}

.ruler-marks {
  flex-grow: 1;
  height: 10px;
  background-image: linear-gradient(90deg, currentColor 1px, transparent 1px);
  background-size: 20px 100%;
}

/* Animations */
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease-out forwards;
}

.reviews-track.fade-in {
  animation-delay: 0.2s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile Snap Scroll Override */
@media (max-width: 767px) {
  .reviews-track {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 2rem;
    /* Hide scrollbar */
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  
  .reviews-track::-webkit-scrollbar {
    display: none;
  }

  .review-card {
    min-width: 85vw;
    scroll-snap-align: start;
    margin-right: 1rem;
  }
  
  .review-card:last-child {
    margin-right: 0;
  }
}

/* cta Section */
/* Industrial CTA Section */
.cta-industrial {
  position: relative;
  background-color: #0F172A;
  color: #F3F4F6;
  padding: 120px 0;
  overflow: hidden;
  isolation: isolate;
  /* Technical Grid Background */
  --grid-color: rgba(6, 182, 212, 0.05);
  --grid-size: 40px;
}

/* Full Bleed Background Grid */
.cta-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, var(--grid-color) 1px, transparent 1px),
    linear-gradient(to bottom, var(--grid-color) 1px, transparent 1px);
  background-size: var(--grid-size) var(--grid-size);
  mask-image: radial-gradient(circle at center, black 40%, transparent 80%);
  z-index: -2;
  pointer-events: none;
}

/* Ambient Glow */
.cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60vw;
  height: 60vw;
  background: radial-gradient(circle, rgba(49, 46, 129, 0.4) 0%, transparent 70%);
  z-index: -1;
  pointer-events: none;
}

/* Layout Grid */
.cta-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  border: 1px solid rgba(148, 163, 184, 0.1);
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(10px);
  padding: 3rem;
  position: relative;
}

@media (min-width: 992px) {
  .cta-layout {
    grid-template-columns: 200px 1fr 280px;
    gap: 4rem;
    padding: 4rem;
  }
}

/* Decorative Corners for the Card */
.cta-layout::before,
.cta-layout::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  border: 2px solid #06B6D4;
  transition: all 0.3s ease;
}

.cta-layout::before {
  top: -1px;
  left: -1px;
  border-right: none;
  border-bottom: none;
}

.cta-layout::after {
  bottom: -1px;
  right: -1px;
  border-left: none;
  border-top: none;
}

/* Meta Data Column */
.cta-meta {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  border-bottom: 1px solid rgba(148, 163, 184, 0.1);
  padding-bottom: 1.5rem;
}

@media (min-width: 992px) {
  .cta-meta {
    flex-direction: column;
    gap: 1.5rem;
    border-bottom: none;
    border-right: 1px solid rgba(148, 163, 184, 0.1);
    padding-bottom: 0;
    padding-right: 1.5rem;
  }
}

.meta-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.meta-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #94A3B8;
}

.meta-value {
  font-size: 0.875rem;
  font-weight: 600;
  color: #06B6D4;
  font-family: 'Bricolage Grotesque', sans-serif;
}

.status-blink {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.status-blink::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  background-color: #06B6D4;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

/* Main Content */
.cta-content {
  text-align: left;
}

.cta-heading {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: #fff;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
}

.cta-heading .line-2 {
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.3s ease;
}

.cta-layout:hover .cta-heading .line-2 {
  color: #fff;
}

.cta-subtext {
  font-size: 1.125rem;
  color: #94A3B8;
  max-width: 500px;
  line-height: 1.6;
}

/* Action Column */
.cta-action {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

@media (min-width: 992px) {
  .cta-action {
    align-items: flex-end;
    text-align: right;
  }
}

/* Industrial Button */
.industrial-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background-color: #06B6D4;
  color: #0F172A;
  padding: 1.25rem 2.5rem;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
  overflow: hidden;
  transition: all 0.3s ease;
  clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
}

.industrial-btn:hover {
  background-color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(6, 182, 212, 0.4);
}

.btn-icon {
  font-size: 1.25rem;
  transition: transform 0.3s ease;
}

.industrial-btn:hover .btn-icon {
  transform: translateX(4px);
}

.action-note {
  font-size: 0.75rem;
  color: #6B7280;
  letter-spacing: 0.05em;
}

/* Bottom Decoration */
.cta-border-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: rgba(148, 163, 184, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.border-notch {
  width: 20px;
  height: 8px;
  background: #06B6D4;
  opacity: 0.5;
}

.border-line {
  flex-grow: 1;
  height: 1px;
  background: repeating-linear-gradient(90deg, transparent, transparent 10px, rgba(6, 182, 212, 0.3) 10px, rgba(6, 182, 212, 0.3) 20px);
}

/* Keyframes */
@keyframes pulse {
  0% { opacity: 1; box-shadow: 0 0 0 0 rgba(6, 182, 212, 0.7); }
  70% { opacity: 0.5; box-shadow: 0 0 0 6px rgba(6, 182, 212, 0); }
  100% { opacity: 1; box-shadow: 0 0 0 0 rgba(6, 182, 212, 0); }
}

/* Mobile Adjustments */
@media (max-width: 768px) {
  .cta-industrial {
    padding: 80px 0;
  }
  
  .cta-layout {
    padding: 2rem;
    gap: 2.5rem;
  }
  
  .industrial-btn {
    width: 100%;
  }
  
  .cta-action {
    width: 100%;
  }
}

/* footer Section */
/* Industrial Foundation Footer */
.footer-industrial {
  background-color: #0F172A; /* Slate 900 */
  color: #94A3B8; /* Slate 400 */
  position: relative;
  overflow: hidden;
  padding-top: 80px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  z-index: 10;
}

/* Top Tech Border */
.footer-border {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, #06B6D4 50%, transparent 100%);
  opacity: 0.5;
}

.footer-container {
  max-width: 1400px; /* Wider container for footer */
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
}

/* Main Grid Layout */
.footer-main-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 60px;
}

/* Brand Column */
.brand-col {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-logo {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: white;
  letter-spacing: -0.02em;
  margin: 0;
  line-height: 1;
}

.text-accent {
  color: #06B6D4;
}

.footer-mission {
  font-size: 1.125rem;
  line-height: 1.6;
  max-width: 400px;
}

.footer-meta-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Bricolage Grotesque', monospace;
  font-size: 0.75rem;
  color: #06B6D4;
  background: rgba(6, 182, 212, 0.1);
  padding: 0.25rem 0.75rem;
  border: 1px solid rgba(6, 182, 212, 0.2);
  border-radius: 4px;
  width: fit-content;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.status-dot {
  width: 6px;
  height: 6px;
  background-color: #06B6D4;
  border-radius: 50%;
  box-shadow: 0 0 8px #06B6D4;
}

/* Headings */
.footer-heading {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 0.875rem;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.heading-line {
  flex-grow: 1;
  height: 1px;
  background: rgba(148, 163, 184, 0.2);
}

/* Navigation Links */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.link-hover-reveal {
  color: #94A3B8;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: all 0.3s ease;
  font-weight: 500;
}

.link-num {
  font-family: 'Bricolage Grotesque', monospace;
  font-size: 0.75rem;
  color: #475569;
  transition: color 0.3s ease;
}

.link-hover-reveal:hover {
  color: white;
  transform: translateX(10px);
}

.link-hover-reveal:hover .link-num {
  color: #06B6D4;
}

/* Contact Matrix */
.contact-details {
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.icon-box {
  color: #06B6D4;
  background: rgba(6, 182, 212, 0.05);
  padding: 8px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.95rem;
  color: #E2E8F0;
}

.contact-text .label {
  font-family: 'Bricolage Grotesque', monospace;
  font-size: 0.7rem;
  color: #64748B;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.contact-text a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}

.contact-text a:hover {
  color: #06B6D4;
}

/* Massive Typography Foundation */
.footer-massive-type {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 14vw;
  font-weight: 900;
  line-height: 0.8;
  color: rgba(255, 255, 255, 0.03);
  text-align: center;
  white-space: nowrap;
  user-select: none;
  pointer-events: none;
  margin-bottom: -2vw;
  margin-top: 2rem;
  letter-spacing: -0.04em;
  overflow: hidden;
}

/* Footer Bottom Bar */
.footer-bottom {
  border-top: 1px solid rgba(148, 163, 184, 0.1);
  padding: 1.5rem 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
  background: #0F172A; /* Cover the text overflow */
  position: relative;
  z-index: 2;
}

.social-links {
  display: flex;
  gap: 1.5rem;
}

.social-link {
  font-family: 'Bricolage Grotesque', monospace;
  color: #94A3B8;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.875rem;
  transition: color 0.2s;
}

.social-link:hover {
  color: #06B6D4;
}

.back-to-top {
  background: #1E293B;
  border: 1px solid rgba(148, 163, 184, 0.2);
  color: #94A3B8;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 4px;
}

.back-to-top:hover {
  background: #06B6D4;
  color: white;
  border-color: #06B6D4;
  transform: translateY(-2px);
}

/* Responsive Grid */
@media (max-width: 1024px) {
  .footer-main-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
  
  .brand-col {
    grid-column: 1 / -1;
    max-width: 100%;
    border-bottom: 1px solid rgba(148, 163, 184, 0.1);
    padding-bottom: 2rem;
    margin-bottom: -1rem;
  }
}

@media (max-width: 768px) {
  .footer-main-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
  
  .footer-massive-type {
    font-size: 18vw;
    margin-bottom: -4vw;
  }
}

@media (prefers-reduced-motion: reduce) {
  .link-hover-reveal:hover,
  .back-to-top:hover {
    transform: none;
  }
}