:root {
  --bg-primary: #F1F3EC;
  --bg-secondary: #FAFBF8;
  --bg-tertiary: #E8EAE5;
  --text-primary: #0F172A;
  --text-secondary: #475569;
  --text-muted: #94A3B8;
  --accent-volt: #DFFF00;
  --accent-cyan: #00E5FF;
  --accent-magenta: #FF006E;
  --accent-orange: #FF9500;
  --border-light: #E2E8F0;
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-glow: 0 0 20px rgba(223, 255, 0, 0.3);
  --font-body: 'Inter', system-ui, sans-serif;
  --font-display: 'Space Grotesk', system-ui, sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background: linear-gradient(160deg, #FDF6E3 0%, #F5EDE0 40%, #FAF3E6 100%);
  background-attachment: fixed;
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(248, 250, 252, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--text-primary);
}

.nav-logo {
  width: 64px;
  height: 64px;
  filter: drop-shadow(0 0 1px rgba(15, 23, 42, 0.8)) drop-shadow(0 0 2px rgba(15, 23, 42, 0.4));
}

.brand-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 0.9375rem;
  transition: color 0.2s;
  position: relative;
}

.nav-links a:hover {
  color: var(--text-primary);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-volt);
  transition: width 0.3s ease;
  box-shadow: 0 0 8px var(--accent-volt);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a.active {
  color: var(--text-primary);
  font-weight: 600;
}

.nav-links a.active::after {
  width: 100%;
  background: var(--accent-volt);
  box-shadow: 0 0 10px var(--accent-volt);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: 0.3s;
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--bg-secondary);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    border-bottom: 1px solid var(--border-light);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .glass-stage {
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
  }

  .glass-glow {
    display: none;
  }

  .glass-pane {
    position: relative !important;
    width: 100% !important;
    height: auto !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    transform: none !important;
  }

  .glass-pane-content {
    padding: 1.5rem;
  }

  .glass-stage > div:not(.glass-pane):not(.glass-glow) {
    position: relative !important;
    bottom: auto !important;
    left: auto !important;
    right: auto !important;
    margin-top: 0.5rem;
  }
}

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 72px;
}

.hero-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 140%;
  height: 140%;
  z-index: 0;
  -webkit-mask-image: linear-gradient(160deg, rgba(0,0,0,1) 50%, rgba(0,0,0,0) 85%);
  mask-image: linear-gradient(160deg, rgba(0,0,0,1) 50%, rgba(0,0,0,0) 85%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: linear-gradient(135deg, rgba(223,255,0,0.15), rgba(0,229,255,0.15));
  border: 1px solid rgba(223,255,0,0.3);
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  backdrop-filter: blur(4px);
}

.hero-badge .pulse {
  width: 8px;
  height: 8px;
  background: var(--accent-volt);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent-volt);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.hero h1 .gradient-text {
  background: linear-gradient(135deg, #8ec400 0%, #00b894 50%, #0099cc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
  filter: drop-shadow(0 2px 0 rgba(255,255,255,0.9))
          drop-shadow(0 -2px 0 rgba(255,255,255,0.9))
          drop-shadow(2px 0 0 rgba(255,255,255,0.9))
          drop-shadow(-2px 0 0 rgba(255,255,255,0.9))
          drop-shadow(0 3px 6px rgba(15,23,42,0.15));
}

.hero p {
  font-size: 1.25rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 12px;
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-volt), #c8f500);
  color: #0a0a0a;
  box-shadow: 0 4px 14px rgba(223, 255, 0, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(223, 255, 0, 0.45);
}

.btn-secondary {
  background: var(--bg-secondary);
  color: var(--text-primary);
  border: 1px solid var(--border-light);
}

.btn-secondary:hover {
  border-color: var(--accent-cyan);
  box-shadow: 0 0 0 3px rgba(0, 229, 255, 0.1);
}

/* Sections */
.section {
  padding: 6rem 0;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 4rem;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.section-header p {
  color: var(--text-secondary);
  font-size: 1.125rem;
}

.section-label {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-magenta);
  margin-bottom: 0.75rem;
  text-shadow: -1px -1px 0 rgba(255,255,255,0.7), 1px -1px 0 rgba(255,255,255,0.7), -1px 1px 0 rgba(255,255,255,0.7), 1px 1px 0 rgba(255,255,255,0.7), 0 1px 2px rgba(15,23,42,0.12);
}

.section-label-glow {
  text-shadow: 0 0 8px currentColor, 0 0 16px currentColor !important;
}

/* Cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(223, 255, 0, 0.3);
}

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}

.card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.card p {
  color: var(--text-secondary);
  font-size: 0.9375rem;
}

/* Vision Teaser */
.vision-teaser {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.vision-teaser .section-header h2,
.vision-teaser .section-header p {
  color: white;
}

.vision-teaser .section-header p {
  opacity: 0.8;
}

.glass-showcase {
  position: relative;
  height: 500px;
  border-radius: 24px;
  overflow: hidden;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
}

.glass-layers {
  position: absolute;
  inset: 0;
  perspective: 1000px;
}

.glass-layer {
  position: absolute;
  background: linear-gradient(135deg, rgba(223,255,0,0.08), rgba(0,229,255,0.08));
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(20px);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.glass-layer:nth-child(1) {
  width: 70%;
  height: 60%;
  top: 10%;
  left: 5%;
  transform: rotateY(-15deg) rotateX(5deg);
  background: linear-gradient(135deg, rgba(223,255,0,0.12), rgba(0,229,255,0.05));
}

.glass-layer:nth-child(2) {
  width: 60%;
  height: 50%;
  top: 25%;
  right: 5%;
  transform: rotateY(10deg) rotateX(-3deg);
  background: linear-gradient(135deg, rgba(255,0,110,0.08), rgba(223,255,0,0.08));
}

.glass-layer:nth-child(3) {
  width: 50%;
  height: 45%;
  bottom: 10%;
  left: 20%;
  transform: rotateY(-5deg) rotateX(8deg);
  background: linear-gradient(135deg, rgba(0,229,255,0.1), rgba(255,0,110,0.05));
}

.glass-glow {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  animation: floatGlow 8s ease-in-out infinite;
}

.glass-glow:nth-of-type(4) {
  background: var(--accent-volt);
  top: 10%;
  left: 20%;
  animation-delay: 0s;
}

.glass-glow:nth-of-type(5) {
  background: var(--accent-cyan);
  bottom: 20%;
  right: 15%;
  animation-delay: -3s;
}

.glass-glow:nth-of-type(6) {
  background: var(--accent-magenta);
  top: 40%;
  left: 50%;
  animation-delay: -6s;
}

@keyframes floatGlow {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.1); }
  66% { transform: translate(-20px, 20px) scale(0.9); }
}

.glass-content {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  right: 2rem;
  z-index: 10;
}

.glass-content h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.glass-content p {
  opacity: 0.7;
}

/* Vision Page Specific */
.vision-hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  background: linear-gradient(180deg, #0a0a0a 0%, #111827 100%);
  color: white;
  position: relative;
  overflow: hidden;
  overflow: hidden;
  padding-top: 72px;
}

.vision-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 140%;
  height: 140%;
  z-index: 0;
  -webkit-mask-image: linear-gradient(160deg, rgba(0,0,0,1) 50%, rgba(0,0,0,0) 85%);
  mask-image: linear-gradient(160deg, rgba(0,0,0,1) 50%, rgba(0,0,0,0) 85%);
  pointer-events: none;
}

.vision-hero-content {
  position: relative;
  z-index: 1;
}

.vision-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 1.5rem;
}

.vision-hero h1 span {
  background: linear-gradient(135deg, var(--accent-volt), var(--accent-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.vision-hero p {
  font-size: 1.25rem;
  opacity: 0.8;
  max-width: 600px;
  margin-bottom: 2rem;
}

.lcars-blocks {
  display: flex;
  gap: 0.5rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.lcars-block {
  height: 32px;
  border-radius: 16px;
  animation: lcarsPulse 4s ease-in-out infinite;
}

.lcars-block:nth-child(1) { width: 120px; background: var(--accent-volt); animation-delay: 0s; }
.lcars-block:nth-child(2) { width: 80px; background: var(--accent-magenta); animation-delay: 0.5s; }
.lcars-block:nth-child(3) { width: 160px; background: var(--accent-cyan); animation-delay: 1s; }
.lcars-block:nth-child(4) { width: 60px; background: var(--accent-orange); animation-delay: 1.5s; }
.lcars-block:nth-child(5) { width: 100px; background: var(--accent-volt); animation-delay: 2s; }

@keyframes lcarsPulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; box-shadow: 0 0 20px currentColor; }
}

.glass-preview-section {
  background: #0a0a0a;
  color: white;
  padding: 6rem 0;
}

.glass-stage {
  position: relative;
  height: 600px;
  border-radius: 24px;
  overflow: hidden;
  background: radial-gradient(ellipse at center, rgba(223,255,0,0.05) 0%, transparent 70%);
  border: 1px solid rgba(255,255,255,0.08);
}

.glass-pane {
  position: absolute;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(40px) saturate(180%);
  border-radius: 20px;
  overflow: hidden;
}

.glass-pane::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(223,255,0,0.1) 0%, transparent 50%, rgba(0,229,255,0.1) 100%);
  pointer-events: none;
}

.glass-pane-content {
  padding: 2rem;
  position: relative;
  z-index: 1;
}

.glass-pane-content h4 {
  font-family: var(--font-display);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  opacity: 0.6;
  margin-bottom: 0.5rem;
}

.glass-pane-content .data-line {
  height: 8px;
  border-radius: 4px;
  margin-bottom: 0.5rem;
  background: linear-gradient(90deg, var(--accent-volt), var(--accent-cyan));
  opacity: 0.4;
  animation: dataFlow 3s ease-in-out infinite;
}

.glass-pane-content .data-line:nth-child(2n) {
  animation-delay: -1s;
  background: linear-gradient(90deg, var(--accent-magenta), var(--accent-volt));
}

.glass-pane-content .data-line:nth-child(3n) {
  animation-delay: -2s;
  width: 70%;
  background: linear-gradient(90deg, var(--accent-cyan), var(--accent-magenta));
}

@keyframes dataFlow {
  0%, 100% { opacity: 0.2; transform: scaleX(0.95); }
  50% { opacity: 0.5; transform: scaleX(1); }
}

/* Research page */
.research-hero {
  background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 50%, #f5f3ff 100%);
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.pillar-card {
  background: var(--bg-secondary);
  border-radius: 24px;
  padding: 2.5rem;
  border: 1px solid var(--border-light);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.pillar-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-volt), var(--accent-cyan));
}

.pillar-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.pillar-card:nth-child(2)::before {
  background: linear-gradient(90deg, var(--accent-cyan), var(--accent-magenta));
}

.pillar-card:nth-child(3)::before {
  background: linear-gradient(90deg, var(--accent-magenta), var(--accent-volt));
}

.pillar-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent-volt);
  line-height: 1;
  margin-bottom: 1rem;
  text-shadow: -2px -2px 0 rgba(255,255,255,0.9), 2px -2px 0 rgba(255,255,255,0.9), -2px 2px 0 rgba(255,255,255,0.9), 2px 2px 0 rgba(255,255,255,0.9), 0 0 18px rgba(223,255,0,0.45);
}

.pillar-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.pillar-card p {
  color: var(--text-secondary);
}

/* About page */
.about-hero {
  background: linear-gradient(135deg, var(--bg-primary) 0%, #fffbeb 100%);
}

.profile-section {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  align-items: start;
}

.profile-card {
  background: var(--bg-secondary);
  border-radius: 24px;
  padding: 2rem;
  border: 1px solid var(--border-light);
  text-align: center;
  position: sticky;
  top: 100px;
}

.profile-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-volt), var(--accent-cyan));
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: #0a0a0a;
}

.profile-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.profile-card .role {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  margin-bottom: 1.5rem;
}

.profile-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.profile-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--bg-tertiary);
  color: var(--text-primary);
  text-decoration: none;
  transition: all 0.2s;
}

.profile-links a:hover {
  background: var(--accent-volt);
  color: #0a0a0a;
  transform: translateY(-2px);
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.timeline-item {
  background: var(--bg-secondary);
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid var(--border-light);
  position: relative;
  transition: all 0.2s;
}

.timeline-item:hover {
  border-color: rgba(223, 255, 0, 0.3);
}

.timeline-item .period {
  display: inline-block;
  padding: 0.375rem 0.875rem;
  background: linear-gradient(135deg, rgba(223,255,0,0.15), rgba(0,229,255,0.15));
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.timeline-item h4 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.timeline-item .company {
  color: var(--text-secondary);
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.timeline-item ul {
  list-style: none;
  padding: 0;
}

.timeline-item ul li {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  padding-left: 1.25rem;
  position: relative;
  margin-bottom: 0.375rem;
}

.timeline-item ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-volt);
  box-shadow: 0 0 6px var(--accent-volt);
}

@media (max-width: 768px) {
  .profile-section {
    grid-template-columns: 1fr;
  }
  .profile-card {
    position: static;
  }
}

/* Contact page */
.contact-hero {
  min-height: calc(100vh - 72px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 72px;
  background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 40%, #fef3c7 100%);
}

.contact-card {
  background: var(--bg-secondary);
  border-radius: 32px;
  padding: 4rem;
  max-width: 600px;
  width: 100%;
  text-align: center;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
}

.contact-card h1 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.contact-card > p {
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: var(--bg-tertiary);
  border-radius: 16px;
  text-decoration: none;
  color: var(--text-primary);
  transition: all 0.2s;
  text-align: left;
}

.contact-link:hover {
  background: linear-gradient(135deg, rgba(223,255,0,0.1), rgba(0,229,255,0.1));
  border: 1px solid rgba(223,255,0,0.3);
  transform: translateX(4px);
}

.contact-link .icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent-volt), var(--accent-cyan));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-link .info {
  display: flex;
  flex-direction: column;
}

.contact-link .info strong {
  font-weight: 600;
}

.contact-link .info span {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

/* Footer */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-light);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo {
  width: 96px;
  height: 96px;
  filter: drop-shadow(0 0 1.5px rgba(15, 23, 42, 0.8)) drop-shadow(0 0 3px rgba(15, 23, 42, 0.4));
  margin-bottom: 1rem;
}

.footer-tagline {
  color: var(--text-secondary);
  font-size: 0.9375rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links h4 {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9375rem;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--text-primary);
}

.footer-legal {
  grid-column: 1 / -1;
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border-light);
  color: var(--text-muted);
  font-size: 0.875rem;
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .contact-card {
    padding: 2rem;
  }
}

/* Scroll animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Noise texture overlay */
.noise-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}
