@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:wght@400;500;600;700&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

/* CSS Variables */
:root {
  /* Colors - Carbon & Canary System */
  --primary-color: #030712; /* Deep Carbon Black */
  --secondary-color: #1a1a1a;
  
  /* Canary Yellow Accent */
  --accent-color: #FFD700; /* Canary Gold */
  --accent-soft: #4d4100; /* Darker yellow/gold mix */
  
  --cta-color: #FFD700;
  --cta-soft: #E6C200;
  
  /* Shimmering Silver Text */
  --text-color: #e0e0e0; /* Silver-ish white base */
  --text-muted: rgba(224, 224, 224, 0.7);
  --text-shimmer-gradient: linear-gradient(120deg, #ffffff 0%, #c0c0c0 40%, #e0e0e0 60%, #ffffff 100%);
  
  /* Carbon Fiber Textures */
  --carbon-fiber-dark: repeating-linear-gradient(
    45deg,
    #111111 0,
    #111111 2px,
    #000000 2px,
    #000000 4px
  );
  
  --carbon-fiber-light: repeating-linear-gradient(
    45deg,
    #f5f5f5 0,
    #f5f5f5 2px,
    #ffffff 2px,
    #ffffff 4px
  );

  --carbon-fiber-bg: var(--carbon-fiber-dark);

  /* Backgrounds */
  --background-color: var(--carbon-fiber-bg);
  --background-gradient: var(--carbon-fiber-bg);

  /* Legacy Brand mappings (updated) */
  --brand-quantum-blue: #020617;
  --brand-luminous-cyan: #FFD700; /* Remapped to Canary */
  --brand-reality-bronze: #FFD700; /* Remapped to Canary */
  --brand-deep-space: #030712;
  --brand-probability-silver: #C0C0C0;
  --brand-quantum-white: #f6f8ff;
  --brand-alert-amber: #FFD700;
  --brand-success-teal: #FFD700; /* Remapped to Canary */
  
  /* Spacing */
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 2rem;
  
  /* Typography */
  --font-family: 'Plus Jakarta Sans', 'Helvetica Neue', Arial, sans-serif;
  --font-display: 'Bricolage Grotesque', 'Plus Jakarta Sans', 'Helvetica Neue', Arial, sans-serif;
  --font-size-base: 1rem;
  --font-size-lg: 1.1rem;
  --letter-spacing: 0.5px;
  
  /* Layout */
  --nav-gap: 1.5rem;
  --underline-height: 2px;
  --underline-offset: 0;
  
  /* Transitions */
  --transition-speed: 0.3s;
  --transition-timing: ease;

  /* Extras */
  --grid-line: rgba(255, 255, 255, 0.1);
  --glass-border: 1px solid rgba(192, 192, 192, 0.3);
  --surface-border: rgba(255, 255, 255, 0.16);
}

@media (prefers-color-scheme: light) {
  :root {
    --carbon-fiber-bg: var(--carbon-fiber-light);
    --text-color: #0c0c0c;
    --text-muted: rgba(0, 0, 0, 0.65);
    --surface-border: rgba(0, 0, 0, 0.18);
    --text-shimmer-gradient: linear-gradient(120deg, #0f0f0f 0%, #2c2c2c 40%, #1a1a1a 60%, #000000 100%);
  }
}

@media (prefers-color-scheme: dark) {
  :root {
    --carbon-fiber-bg: var(--carbon-fiber-dark);
    --text-color: #e0e0e0;
    --text-muted: rgba(224, 224, 224, 0.7);
    --surface-border: rgba(255, 255, 255, 0.16);
  }
}

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

body {
  font-family: var(--font-family);
  color: var(--text-color);
  background: var(--background-color); /* Carbon fiber texture */
  background-attachment: fixed;
  overflow-x: hidden;
  position: relative;
  overflow-y: auto;
  line-height: 1.6;
}

body::before {
  content: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  letter-spacing: -0.01em;
  /* Shimmering Silver Text Effect */
  background: var(--text-shimmer-gradient);
  background-size: 200% auto;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 1px 3px rgba(0,0,0,0.3); /* Metallic depth */
  animation: shimmer 8s linear infinite;
}

@keyframes shimmer {
  to {
    background-position: 200% center;
  }
}

/* -------------------------------------------------------------------------- */
/* Hero and Feature Video Containers                                          */
/* -------------------------------------------------------------------------- */

.hero-section {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(2rem, 4vw, 4.4rem);
  align-items: center;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-width: 640px;
  transform: none;
  position: relative;
  z-index: 2;
}

.hero-media {
  justify-self: start;
  max-width: clamp(360px, 46vw, 580px);
  transform: none;
  position: relative;
  z-index: 2;
}

.hero-video,
.blog-hero-video {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 32px 72px rgba(0, 0, 0, 0.8);
  background: linear-gradient(135deg, rgba(8, 8, 8, 0.95), rgba(35, 35, 35, 0.9));
  isolation: isolate;
}

.hero-video {
  aspect-ratio: 5 / 6;
  background: radial-gradient(circle at 20% 20%, rgba(127, 245, 255, 0.12), rgba(8, 10, 20, 0.82));
}

.blog-hero-video {
  aspect-ratio: 16 / 9;
  max-width: clamp(320px, 60vw, 760px);
}

.hero-video video,
.blog-hero-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-video-glow {
  position: absolute;
  inset: -18%;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.2), rgba(0, 0, 0, 0));
  filter: blur(46px);
  opacity: 0.5;
  pointer-events: none;
  z-index: -1;
}

.hero-caption {
  margin-top: 1rem;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.home-hero .headline {
  font-family: var(--font-display);
  letter-spacing: -0.02em;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-color);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.pill-amber {
  border-color: rgba(246, 173, 85, 0.6);
  background: rgba(246, 173, 85, 0.14);
  color: #fbe7d0;
}

.hero-meta-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.9rem;
  margin-top: 0.25rem;
}

.meta-card {
  position: relative;
  padding: 1rem 1.1rem;
  border-radius: 14px;
  border: 1px solid var(--surface-border);
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.4);
}

.meta-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at 20% 20%, rgba(127, 245, 255, 0.12), transparent 38%);
  opacity: 0.8;
  z-index: -1;
}

.meta-label {
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.meta-value {
  font-size: 1.4rem;
  font-weight: 700;
  margin-top: 0.2rem;
  color: var(--text-color);
}

.meta-sub {
  margin-top: 0.15rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.hero-orb {
  position: relative;
}

.orb-glow {
  position: absolute;
  inset: -14%;
  background: radial-gradient(circle at 40% 40%, rgba(127, 245, 255, 0.18), rgba(5, 8, 16, 0));
  filter: blur(28px);
  z-index: -2;
}

.ops-console {
  position: relative;
  left: auto;
  bottom: auto;
  right: auto;
  background: rgba(8, 12, 20, 0.7);
  border: 1px solid var(--surface-border);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.5);
  border-radius: 14px;
  padding: 1rem 1.1rem;
  backdrop-filter: blur(18px);
  width: min(100%, 360px);
  transform: none;
  margin: 1rem auto 0;
}

.console-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.95rem;
  color: var(--text-muted);
  padding: 0.25rem 0;
}

.console-value {
  font-weight: 700;
  color: var(--text-color);
}

.console-pulse {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.35rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.pulse-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, #FFD700, #E6C200);
  box-shadow: 0 0 16px rgba(127, 245, 255, 0.9);
  display: inline-block;
}

.blog-hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 var(--spacing-lg);
}

.blog-hero-media {
  order: 2;
  justify-self: end;
}

.blog-hero-content {
  order: 1;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 520px;
}

.blog-hero-content .blog-subtitle {
  margin: 0 0 1.5rem 0;
}

.blog-hero-content .blog-coming-soon {
  color: var(--text-muted);
  line-height: 1.6;
}

/* Hero Section */
.page-content {
  padding: 0;
  margin: 0;
  position: relative;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 2rem;
}

.contact-form {
  background: var(--surface-elevated);
  backdrop-filter: blur(18px);
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid var(--surface-border);
}

.contact-form h2 {
  color: var(--accent-color);
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--text-muted);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid rgba(201, 206, 214, 0.35);
  background: rgba(255, 255, 255, 0.85);
  border-radius: 0.5rem;
  color: var(--text-color);
}

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


.contact-info {
  background: var(--surface-elevated);
  backdrop-filter: blur(18px);
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid var(--surface-border);
}

.contact-info h2 {
  color: var(--accent-color);
  margin-bottom: 2rem;
}

.info-group {
  margin-bottom: 1.5rem;
}

.info-group h3 {
  color: var(--text-color);
  margin-bottom: 0.5rem;
}

.info-group p {
  color: var(--text-muted);
  margin: 0;
}

.info-group a {
  color: var(--accent-color);
  text-decoration: none;
}

.info-group a:hover {
  text-decoration: underline;
}

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

.lab-container .lab-logo {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.lab-container .lab-message {
  text-align: left;
  max-width: 600px;
}

.lab-container .lab-logo {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-left: -80px;
}

.lab-container .lab-message {
  text-align: center;
  max-width: 600px;
  margin-bottom: 3rem;
}

.lab-container .lab-message h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--accent-color);
}

.lab-container .lab-message p {
  font-size: 1.2rem;
  line-height: 1.6;
}

.hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  text-align: center;
  padding: 0 2rem;
  background: transparent;
  position: relative;
  top: 27.5vh;
  left: 0;
  transform: none;
  width: 100%;
  perspective: 1000px;
  z-index: 10;
  pointer-events: none;
}

.cylinder-container {
  width: 100%;
  height: 200px;
  position: relative;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-perspective: 1000px;
  perspective: 1000px;
}

.text-cylinder {
  width: 100%;
  height: 100%;
  position: relative;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-animation: cylinderRotate 12s linear infinite;
  animation: cylinderRotate 12s linear infinite;
  -webkit-transform-origin: center center;
  transform-origin: center center;
}

.text-face {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
}

.text-face-1 {
  -webkit-transform: rotateX(0deg) translateZ(105px);
  transform: rotateX(0deg) translateZ(105px);
  opacity: 1;
}

.text-face-2 {
  -webkit-transform: rotateX(180deg) translateZ(105px);
  transform: rotateX(180deg) translateZ(105px);
  opacity: 1;
}

@-webkit-keyframes cylinderRotate {
  from {
    -webkit-transform: rotateX(0deg);
    transform: rotateX(0deg);
  }
  to {
    -webkit-transform: rotateX(360deg);
    transform: rotateX(360deg);
  }
}

@keyframes cylinderRotate {
  from {
    -webkit-transform: rotateX(0deg);
    transform: rotateX(0deg);
  }
  to {
    -webkit-transform: rotateX(360deg);
    transform: rotateX(360deg);
  }
}

/* Fallback for browsers that don't support 3D transforms */
@supports not (transform-style: preserve-3d) {
  .text-cylinder {
    -webkit-animation: none;
    animation: none;
  }
  
  .text-face-1, .text-face-2 {
    -webkit-transform: none !important;
    transform: none !important;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
  }
  
  .text-face-1 {
    -webkit-animation: fadeInOut1 12s linear infinite;
    animation: fadeInOut1 12s linear infinite;
    opacity: 1;
  }
  
  .text-face-2 {
    -webkit-animation: fadeInOut2 12s linear infinite;
    animation: fadeInOut2 12s linear infinite;
    opacity: 0;
  }
  
  @-webkit-keyframes fadeInOut1 {
    0%, 45% { opacity: 1; z-index: 2; }
    50%, 95% { opacity: 0; z-index: 1; }
    100% { opacity: 1; z-index: 2; }
  }
  
  @keyframes fadeInOut1 {
    0%, 45% { opacity: 1; z-index: 2; }
    50%, 95% { opacity: 0; z-index: 1; }
    100% { opacity: 1; z-index: 2; }
  }
  
  @-webkit-keyframes fadeInOut2 {
    0%, 45% { opacity: 0; z-index: 1; }
    50%, 95% { opacity: 1; z-index: 2; }
    100% { opacity: 0; z-index: 1; }
  }
  
  @keyframes fadeInOut2 {
    0%, 45% { opacity: 0; z-index: 1; }
    50%, 95% { opacity: 1; z-index: 2; }
    100% { opacity: 0; z-index: 1; }
  }
}

/* Emergency fallback - ensure text is always visible */
.text-face-1 .headline,
.text-face-1 .tagline,
.text-face-2 .headline,
.text-face-2 .tagline {
  color: var(--text-color);
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.9), 0 0 20px rgba(0, 0, 0, 0.7);
  position: relative;
  z-index: 15;
  pointer-events: auto;
}

/* If all else fails, show only the first text face */
.no-animation .text-face-2 {
  display: none !important;
}

.no-animation .text-face-1 {
  opacity: 1 !important;
  visibility: visible !important;
  display: flex !important;
  z-index: 15 !important;
}

/* Hostinger-specific fixes only when needed */
@media screen and (max-width: 0px) {
  /* This media query will never match, but provides fallback */
  .text-face-1 .headline,
  .text-face-1 .tagline,
  .text-face-2 .headline,
  .text-face-2 .tagline {
    visibility: visible !important;
    display: block !important;
    opacity: 1 !important;
    color: var(--text-color) !important;
    z-index: 999 !important;
    position: relative !important;
  }
}

/* Lab Page Background */
.lab-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  min-height: 100vh;
  padding: 2rem;
  position: relative;
  z-index: 1;
  color: white;
  width: 100%;
  max-width: 800px;
  margin: 4rem;
}

body.lab-page {
  background: var(--background-color);
  background-attachment: fixed;
}

.headline {
  font-size: calc(1.6rem + 0.8vw);
  font-weight: 700;
  margin-bottom: 1.2rem;
  text-transform: lowercase;
  letter-spacing: 1.5px;
  opacity: 1;
}

.tagline {
  font-size: calc(0.9rem + 0.4vw);
  font-weight: 300;
  max-width: 500px;
  line-height: 1.3;
  opacity: 1;
}

/* Override for specific page layouts */
.page-content.with-header-spacing {
  max-width: 1200px;
  margin: 120px auto 60px;
  padding: 80px 2rem 0;
}

.page-content h1 {
  font-size: 2.7rem;
  margin-bottom: 2rem;
  text-align: center;
}

.content-wrapper {
  background-color: rgba(19, 27, 36, 0.72);
  padding: 2rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
}

/* Only add this - no other changes */
/* -------------------------------------------------------------------------- */
/* Modern Layout Refresh                                                      */
/* -------------------------------------------------------------------------- */

:root {
  --surface-elevated: rgba(255, 255, 255, 0.06);
  --surface-highlight: rgba(127, 245, 255, 0.12);
  --surface-glow: rgba(127, 245, 255, 0.35);
  --max-content-width: 1440px;
}

.page-shell {
  position: relative;
  z-index: 3;
  max-width: var(--max-content-width);
  margin: 0 auto;
  padding: 140px var(--spacing-lg) 120px;
}

.page-shell > section + section {
  margin-top: 5rem;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--surface-elevated);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--surface-border);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.45);
  z-index: 200;
  display: block;
}

.site-header .header-inner {
  max-width: var(--max-content-width);
  margin: 0 auto;
  padding: var(--spacing-md) var(--spacing-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--spacing-lg);
}

.logo-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  outline: none;
  color: var(--text-color);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 0.6rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 12px;
}

.logo-link:focus-visible {
  outline: 2px solid var(--accent-color);
  outline-offset: 4px;
}

.site-header nav {
  display: flex;
  align-items: center;
}

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

.nav-links a {
  color: var(--text-color);
  text-decoration: none;
  position: relative;
  font-size: calc(0.95rem + 2pt);
  letter-spacing: 0.06em;
  transition: color var(--transition-speed) ease, text-shadow var(--transition-speed) ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 2px;
  background: var(--text-color);
  opacity: 0;
  transform: scaleX(0.4);
  transition: opacity var(--transition-speed) ease, transform var(--transition-speed) ease, background-color var(--transition-speed) ease;
}

.nav-links a.active::after {
  background: var(--accent-color); /* Canary Yellow Underline */
}

.nav-links a:hover,
.nav-links a.is-hovered {
  color: var(--text-color);
  text-shadow: 0 0 16px rgba(255, 215, 0, 0.6); /* Canary Glow */
}

.nav-links a:hover::after,
.nav-links a.is-hovered::after {
  opacity: 1;
  transform: scaleX(1);
  background: var(--accent-color); /* Canary Yellow on hover */
}
.nav-links a.active::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-links a:focus-visible {
  outline: 2px solid var(--accent-color);
  outline-offset: 6px;
}

.lab-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1.1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid var(--surface-border);
  color: var(--text-color);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-decoration: none;
  transition: background var(--transition-speed) ease, transform var(--transition-speed) ease;
}

.lab-pill:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.lab-pill:focus-visible {
  outline: 2px solid var(--accent-color);
  outline-offset: 4px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 0.78rem;
  color: rgba(127, 245, 255, 0.82);
}

.eyebrow .critical-line {
  display: inline-block;
  padding-left: 0.5rem;
  font-size: calc(0.78rem + 4pt);
}

.headline {
  font-size: clamp(2.5rem, 6vw, 4rem);
  line-height: 1.05;
  text-transform: lowercase;
}

.lead {
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 36rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.cta-primary,
.cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.6rem;
  border-radius: 999px;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease, border-color var(--transition-speed) ease, color var(--transition-speed) ease, background var(--transition-speed) ease;
}

.cta-primary {
  background: var(--accent-color); /* Canary Yellow */
  color: #000000; /* High contrast black */
  font-weight: 700;
  box-shadow: 0 16px 40px rgba(255, 215, 0, 0.25);
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.cta-primary:hover {
  transform: translateY(-2px) scale(1.02);
  background: #ffffff; /* Becomes white/silver on hover for shimmer effect */
  box-shadow: 0 22px 56px rgba(255, 215, 0, 0.4);
}

.cta-secondary {
  background: rgba(192, 192, 192, 0.05);
  border: 1px solid rgba(192, 192, 192, 0.4); /* Silver border */
  color: var(--text-color);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.cta-secondary:hover {
  transform: translateY(-2px);
  border-color: var(--accent-color); /* Glows Canary on hover */
  color: var(--accent-color);
  background: rgba(255, 215, 0, 0.05);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.4);
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}

.pillar {
  position: relative;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  border: 1px solid var(--surface-border);
  padding: 1.8rem 1.6rem;
  border-radius: 16px;
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(14px);
  overflow: hidden;
}

.pillar::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 18% 12%, rgba(127, 245, 255, 0.18), transparent 38%);
  opacity: 0.9;
  z-index: -1;
}

.pillar h2 {
  font-size: 1.5rem;
  margin-bottom: 0.7rem;
  color: var(--text-color);
  text-transform: lowercase;
  letter-spacing: -0.01em;
}

.pillar p {
  color: var(--text-muted);
  line-height: 1.7;
}

.pillar-label {
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
}

.pillar-meta {
  margin-top: 0.75rem;
  color: var(--text-color);
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

.video-feature {
  display: grid;
  grid-template-columns: minmax(0, 520px) minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
}

.feature-media video {
  width: 100%;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 26px 60px rgba(8, 15, 22, 0.5);
}

.feature-copy {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.feature-copy h2 {
  font-size: 2.2rem;
}

.feature-copy p {
  color: var(--text-muted);
  line-height: 1.7;
}

.text-link {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.text-link:hover {
  text-decoration: underline;
}

.media-gallery .section-header,
.about-gallery .section-header {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.section-header h2 {
  font-size: 2.1rem;
}

.section-header p {
  color: var(--text-muted);
  max-width: 38rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2rem;
}

.gallery-item {
  background: var(--surface-elevated);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--surface-border);
  box-shadow: 0 22px 48px rgba(18, 35, 54, 0.16);
  backdrop-filter: blur(18px);
  display: flex;
  flex-direction: column;
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
}

.gallery-item h3 {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 1.1rem 1.25rem 0.35rem;
  color: var(--text-color);
  line-height: 1.3;
  min-height: 2.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.gallery-item h3 span:empty::after {
  content: "";
  visibility: hidden;
}

.gallery-item figcaption {
  padding: 0 1.25rem 1.5rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-top: auto;
}

.gallery-item figcaption span {
  display: block;
}

.status-marquee {
  margin-top: 2.5rem;
  padding: 0.85rem 1.25rem;
  border-radius: 999px;
  border: 1px solid var(--surface-border);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  overflow: hidden;
  position: relative;
}

.status-marquee::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(3, 7, 18, 0) 0%, rgba(3, 7, 18, 0.4) 50%, rgba(3, 7, 18, 0) 100%);
  pointer-events: none;
}

.marquee-track {
  display: flex;
  gap: 1.5rem;
  min-width: max-content;
  animation: marquee 22s linear infinite;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.brand-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  align-items: center;
}

.brand-card {
  background: var(--surface-elevated);
  border: 1px solid var(--surface-border);
  padding: 1.75rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 18px 40px rgba(18, 35, 54, 0.15);
  backdrop-filter: blur(18px);
}

.brand-card img {
  max-width: 180px;
  width: 100%;
  height: auto;
  display: inline-block;
}

.systems-section {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--surface-border);
  border-radius: 18px;
  padding: 2.6rem 2.2rem;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.35);
}

.systems-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.system-card {
  background: var(--surface-elevated);
  border-radius: 16px;
  border: 1px solid var(--surface-border);
  overflow: hidden;
  box-shadow: 0 22px 46px rgba(0, 0, 0, 0.32);
  display: flex;
  flex-direction: column;
}

.system-card img {
  width: 100%;
  height: auto;
  display: block;
}

.system-body {
  padding: 1.25rem 1.25rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.system-body h3 {
  font-size: 1.25rem;
  margin: 0;
}

.system-body p {
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.3rem;
}

.chip {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.82rem;
  color: var(--text-color);
  letter-spacing: 0.04em;
}

.results-section {
  padding: 0.5rem 0;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.result-card {
  padding: 1.6rem 1.5rem;
  border-radius: 16px;
  background: var(--surface-elevated);
  border: 1px solid var(--surface-border);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.3);
}

.result-label {
  font-size: 0.85rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.result-value {
  font-size: 2rem;
  font-weight: 700;
  margin: 0.4rem 0;
  color: var(--text-color);
}

.result-copy {
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
}

.cta-ribbon {
  margin-top: 4rem;
  padding: 2.5rem 2rem;
  border-radius: 22px;
  border: 1px solid var(--surface-border);
  background: radial-gradient(circle at 10% 20%, rgba(127, 245, 255, 0.14), transparent 45%), radial-gradient(circle at 80% 40%, rgba(246, 173, 85, 0.2), transparent 45%), linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.4);
  flex-wrap: wrap;
}

.cta-ribbon h2 {
  margin: 0.35rem 0;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
}

.cta-ribbon p {
  margin: 0;
  color: var(--text-muted);
  max-width: 560px;
}

.cta-buttons {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.testimonial-banner {
  padding: 3rem 3.5rem;
  border-radius: 20px;
  background: linear-gradient(150deg, rgba(5, 5, 5, 0.92), rgba(14, 14, 14, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.38);
  text-align: center;
  backdrop-filter: blur(22px);
}

.testimonial-banner blockquote {
  font-size: 1.6rem;
  line-height: 1.7;
  color: var(--text-color);
  margin-bottom: 1.5rem;
}

.testimonial-banner cite {
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.8rem;
  color: rgba(168, 184, 200, 0.72);
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 380px);
  gap: 3rem;
  align-items: center;
}

.page-hero img {
  width: 100%;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 24px 54px rgba(8, 15, 22, 0.45);
}

.story-panels {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.story-card {
  background: rgba(22, 31, 41, 0.78);
  padding: 2.2rem 2rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 24px 52px rgba(8, 15, 22, 0.42);
  backdrop-filter: blur(18px);
}

.story-card h2 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  color: var(--accent-color);
}

.story-card p {
  color: var(--text-muted);
  line-height: 1.7;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.value-card {
  background: var(--surface-elevated);
  border-radius: 18px;
  padding: 2.25rem 2rem;
  border: 1px solid var(--surface-border);
  box-shadow: 0 22px 48px rgba(18, 35, 54, 0.16);
  backdrop-filter: blur(18px);
}

.value-card h3 {
  color: var(--accent-color);
  margin-bottom: 0.75rem;
}

.value-card p {
  color: var(--text-muted);
  line-height: 1.7;
}

.milestones {
  background: var(--surface-elevated);
  border-radius: 20px;
  border: 1px solid var(--surface-border);
  padding: 2.5rem 2.75rem 3rem;
  box-shadow: 0 26px 56px rgba(18, 35, 54, 0.18);
  backdrop-filter: blur(20px);
}

.milestones h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
}

.timeline {
  list-style: none;
  display: grid;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

.timeline li {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 1.5rem;
  align-items: baseline;
  color: var(--text-muted);
}

.timeline time {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--accent-color);
  letter-spacing: 0.18em;
}

.timeline p {
  margin: 0;
  line-height: 1.7;
  color: var(--text-muted);
}

.cta-section {
  background: linear-gradient(145deg, rgba(26, 36, 48, 0.85), rgba(12, 18, 26, 0.92));
  border-radius: 20px;
  padding: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 34px 70px rgba(6, 12, 18, 0.5);
  text-align: center;
  backdrop-filter: blur(22px);
}

.cta-section h2 {
  font-size: 2.4rem;
  margin-bottom: 1rem;
}

.cta-section p {
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.blog-main {
  position: relative;
  z-index: 3;
  padding-top: 140px;
}

.blog-hero-section {
  margin-bottom: 3rem;
}

.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.panel-illustration {
  margin-top: 2rem;
  background: var(--surface-elevated);
  border-radius: 16px;
  border: 1px solid var(--surface-border);
  overflow: hidden;
  text-align: left;
  box-shadow: 0 22px 52px rgba(18, 35, 54, 0.16);
  backdrop-filter: blur(18px);
}

.panel-illustration img {
  width: 100%;
  display: block;
}

.panel-illustration figcaption {
  padding: 1rem 1.25rem 1.4rem;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.contact-main .contact-grid {
  align-items: stretch;
}

.contact-main .contact-info-section {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-main .info-card {
  background: var(--surface-elevated);
  border-radius: 16px;
  padding: 1.5rem;
  border: 1px solid var(--surface-border);
  box-shadow: 0 20px 46px rgba(18, 35, 54, 0.14);
  backdrop-filter: blur(18px);
}

.contact-main a {
  color: var(--accent-color);
}

.lab-page .lab-container {
  margin-top: 160px;
}

video.reduced-motion {
  filter: grayscale(0.1);
}

.video-fallback {
  background: var(--brand-deep-space);
}

@media (max-width: 1100px) {
  .hero-section,
  .blog-hero-shell,
  .video-feature,
  .page-hero {
    grid-template-columns: 1fr;
  }

  .hero-media,
  .blog-hero-media {
    order: -1;
    justify-self: start;
    max-width: min(90vw, 420px);
    transform: none;
  }

  .hero-video,
  .blog-hero-video {
    margin: 0 auto;
  }

  .ops-console {
    width: 100%;
  }

  .brand-strip {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  }
}

@media (max-width: 900px) {
  .page-shell {
    padding: 120px 1.5rem 100px;
  }

  .pillars-grid,
  .values-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .blog-hero-shell {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .blog-hero-media {
    justify-self: center;
  }

  .blog-hero-content {
    align-items: center;
  }

  .blog-hero-content .blog-subtitle {
    margin: 0 auto 1.5rem;
  }

  .hero-caption {
    text-align: center;
  }
}

@media (max-width: 640px) {
  .site-header .header-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .pillars-grid,
  .values-grid {
    grid-template-columns: 1fr;
  }

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

  .brand-strip {
    grid-template-columns: 1fr;
  }

  .timeline li {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .search-input {
    min-width: 0;
    width: 100%;
  }

  .hero-search {
    flex-direction: column;
    align-items: stretch;
  }
}

/* Services Page Styles */
.services-page {
  background: var(--background-gradient);
  min-height: 100vh;
}

.services-main {
  padding-top: 70px;
}

/* Services Hero */
.services-hero {
  padding: 4rem 0;
  text-align: center;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.12) 0%, transparent 70%);
}

.services-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-color);
  text-transform: lowercase;
  letter-spacing: 2px;
}

.services-subtitle {
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  color: var(--accent-color);
  margin-bottom: 3rem;
  font-weight: 300;
}

.hero-visual {
  max-width: 400px;
  margin: 0 auto;
}

.circuit-board {
  position: relative;
  height: 200px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  overflow: hidden;
}

.circuit-line {
  position: absolute;
  background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
  height: 2px;
  animation: circuitFlow 3s linear infinite;
}

.circuit-line-1 {
  top: 30%;
  left: 0;
  right: 0;
  animation-delay: 0s;
}

.circuit-line-2 {
  top: 50%;
  left: 0;
  right: 0;
  animation-delay: 1s;
}

.circuit-line-3 {
  top: 70%;
  left: 0;
  right: 0;
  animation-delay: 2s;
}

.circuit-node {
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--accent-color);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent-color);
  animation: nodeFlash 2s ease-in-out infinite;
}

.circuit-node:nth-child(4) {
  top: 30%;
  left: 20%;
  animation-delay: 0.5s;
}

.circuit-node:nth-child(5) {
  top: 50%;
  right: 30%;
  animation-delay: 1.5s;
}

.circuit-node:nth-child(6) {
  top: 70%;
  left: 60%;
  animation-delay: 2.5s;
}

@keyframes circuitFlow {
  0% { opacity: 0.3; transform: scaleX(0); }
  50% { opacity: 1; transform: scaleX(1); }
  100% { opacity: 0.3; transform: scaleX(0); }
}

@keyframes nodeFlash {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.3); }
}

/* Services Overview */
.services-overview {
  padding: 4rem 0;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(22px);
}

.overview-content h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: var(--accent-color);
  text-align: center;
}

.overview-text {
  font-size: 1.3rem;
  line-height: 1.6;
  color: var(--text-muted);
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

/* Services Showcase */
.services-showcase {
  padding: 4rem 0;
}

.showcase-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
  color: var(--accent-color);
}

.service-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.tab-button {
  padding: 1rem 2rem;
  background: rgba(248, 250, 251, 0.08);
  border: 2px solid rgba(255, 255, 255, 0.24);
  border-radius: 5px;
  color: var(--text-muted);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tab-button:hover {
  background: rgba(248, 250, 251, 0.14);
  border-color: var(--accent-color);
  color: var(--accent-color);
}

.tab-button.active {
  background: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--brand-deep-space);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.service-panels {
  position: relative;
}

.service-panel {
  display: none;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

.service-panel.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.panel-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: center;
  background: var(--surface-elevated);
  padding: 3rem;
  border-radius: 15px;
  border: 1px solid var(--surface-border);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(20px);
}

.panel-content h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--accent-color);
}

.service-description {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: var(--text-muted);
}

.feature-list {
  margin-bottom: 2rem;
}

.feature-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}

.feature-icon,
.reason-icon {
  --icon-tone: linear-gradient(135deg, #FFD700, #E6C200);
  --icon-shadow: rgba(127, 245, 255, 0.32);
  position: relative;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  flex-shrink: 0;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  overflow: hidden;
  isolation: isolate;
  color: var(--brand-deep-space);
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.2), transparent 42%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0) 45%),
    var(--icon-tone);
  box-shadow:
    0 16px 36px var(--icon-shadow),
    inset 0 0 0 1px rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.feature-icon::before,
.reason-icon::before {
  content: '';
  position: absolute;
  inset: 6px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  opacity: 0.75;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.32);
  mix-blend-mode: screen;
}

.feature-icon::after,
.reason-icon::after {
  content: attr(data-icon);
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.22rem 0.52rem;
  min-width: 34px;
  height: 28px;
  border-radius: 999px;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.58));
  color: var(--brand-deep-space);
  font-size: 0.72rem;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.8),
    0 10px 26px rgba(0, 0, 0, 0.35);
  z-index: 1;
}

.reason-icon {
  width: 76px;
  height: 76px;
  border-radius: 16px;
  margin: 0 auto 1rem;
}

.icon-tonal-cyan {
  --icon-tone: linear-gradient(135deg, #8ff2ff, #59c3ff);
  --icon-shadow: rgba(119, 228, 255, 0.35);
}

.icon-tonal-amber {
  --icon-tone: linear-gradient(135deg, #f6ad55, #ff7f4d);
  --icon-shadow: rgba(246, 173, 85, 0.38);
}

.icon-tonal-violet {
  --icon-tone: linear-gradient(135deg, #8c7bff, #cc6cff);
  --icon-shadow: rgba(160, 140, 255, 0.36);
}

.icon-tonal-mint {
  --icon-tone: linear-gradient(135deg, #65f7c0, #4fddff);
  --icon-shadow: rgba(101, 247, 192, 0.38);
}

.feature-text h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--text-color);
}

.feature-text p {
  color: var(--text-muted);
  line-height: 1.5;
}

.service-benefits h4 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: var(--accent-color);
}

.service-benefits ul {
  list-style: none;
  padding: 0;
}

.service-benefits li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--text-muted);
}

.service-benefits li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-weight: bold;
}

/* Panel Visualizations */
.panel-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.ai-visualization,
.security-visualization,
.forecast-visualization,
.app-visualization {
  width: 200px;
  height: 200px;
  position: relative;
}

/* AI Visualization */
.data-flow {
  position: relative;
  width: 100%;
  height: 100%;
}

.data-point {
  position: absolute;
  width: 12px;
  height: 12px;
  background: var(--accent-color);
  border-radius: 50%;
  animation: dataFlow 3s ease-in-out infinite;
}

.data-point:nth-child(1) {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.data-point:nth-child(2) {
  top: 60%;
  left: 15%;
  animation-delay: 1s;
}

.data-point:nth-child(3) {
  top: 40%;
  left: 5%;
  animation-delay: 2s;
}

.processing-center {
  position: absolute;
  top: 50%;
  right: 20%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  border: 2px solid var(--accent-color);
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.ai-core {
  width: 30px;
  height: 30px;
  background: var(--accent-color);
  border-radius: 50%;
  animation: coreProcess 2s ease-in-out infinite;
}

@keyframes dataFlow {
  0% { transform: translateX(0) scale(1); opacity: 1; }
  50% { transform: translateX(100px) scale(1.2); opacity: 0.7; }
  100% { transform: translateX(150px) scale(0.8); opacity: 0.3; }
}

@keyframes coreProcess {
  0%, 100% { box-shadow: 0 0 10px var(--accent-color); }
  50% { box-shadow: 0 0 25px var(--accent-color); }
}

/* Security Visualization */
.security-shield {
  position: relative;
  width: 100px;
  height: 120px;
  margin: 0 auto;
}

.shield-layer {
  position: absolute;
  border: 2px solid var(--accent-color);
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  animation: shieldPulse 3s ease-in-out infinite;
}

.shield-layer:nth-child(1) {
  width: 100%;
  height: 100%;
  opacity: 0.3;
  animation-delay: 0s;
}

.shield-layer:nth-child(2) {
  width: 80%;
  height: 80%;
  top: 10%;
  left: 10%;
  opacity: 0.6;
  animation-delay: 1s;
}

.shield-core {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  background: var(--accent-color);
  border-radius: 50%;
  animation: coreProcess 2s ease-in-out infinite;
}

@keyframes shieldPulse {
  0%, 100% { transform: scale(1); opacity: 0.3; }
  50% { transform: scale(1.1); opacity: 0.8; }
}

/* Forecast Visualization */
.forecast-visualization {
  position: relative;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  padding: 2rem;
}

.trend-line {
  position: absolute;
  bottom: 30%;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-color), rgba(255, 255, 255, 0.3));
  transform: rotate(-10deg);
  animation: trendGrow 3s ease-out infinite;
}

.data-points {
  position: relative;
  height: 100px;
}

.data-dot {
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--accent-color);
  border-radius: 50%;
  animation: dotBounce 2s ease-in-out infinite;
}

.data-dot:nth-child(1) {
  bottom: 40%;
  left: 20%;
  animation-delay: 0s;
}

.data-dot:nth-child(2) {
  bottom: 60%;
  left: 50%;
  animation-delay: 0.5s;
}

.data-dot:nth-child(3) {
  bottom: 80%;
  right: 20%;
  animation-delay: 1s;
}

@keyframes trendGrow {
  0% { transform: rotate(-10deg) scaleX(0); }
  100% { transform: rotate(-10deg) scaleX(1); }
}

@keyframes dotBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* App Visualization */
.app-interface {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.interface-header {
  height: 20px;
  background: var(--accent-color);
  border-radius: 5px;
  margin-bottom: 1rem;
  animation: interfaceGlow 2s ease-in-out infinite;
}

.interface-content {
  height: 80px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 5px;
  margin-bottom: 1rem;
  position: relative;
  overflow: hidden;
}

.interface-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: scanLine 3s linear infinite;
}

.interface-buttons {
  display: flex;
  gap: 0.5rem;
}

.button {
  flex: 1;
  height: 15px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 3px;
  animation: buttonFlash 4s ease-in-out infinite;
}

.button:nth-child(2) {
  animation-delay: 2s;
}

@keyframes interfaceGlow {
  0%, 100% { box-shadow: 0 0 5px var(--accent-color); }
  50% { box-shadow: 0 0 15px var(--accent-color); }
}

@keyframes scanLine {
  0% { left: -100%; }
  100% { left: 100%; }
}

@keyframes buttonFlash {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

/* Why Choose Section */
.why-choose-section {
  padding: 4rem 0;
  background: rgba(255, 255, 255, 0.02);
}

.reasons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.reason-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.reason-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--accent-color);
  transform: translateY(-5px);
}

.reason-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--accent-color);
}

.reason-card p {
  color: var(--text-muted);
  line-height: 1.6;
}

/* Services CTA */
.services-cta {
  padding: 4rem 0;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.12) 0%, transparent 70%);
}

.services-cta .cta-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.services-cta h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--accent-color);
}

.services-cta p {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: var(--text-muted);
}

/* Responsive Design for Services */
@media (max-width: 768px) {
  .panel-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem;
  }
  
  .service-tabs {
    flex-direction: column;
    align-items: center;
  }
  
  .tab-button {
    width: 250px;
    text-align: center;
  }
  
  .reasons-grid {
    grid-template-columns: 1fr;
  }
}

/* Blog Page Styles */
.blog-page {
  background: var(--background-gradient);
  min-height: 100vh;
}

.blog-main {
  padding-top: 140px;
}

/* Blog Hero Section */
.blog-hero-section {
  padding: 4rem 0 3rem;
  background: radial-gradient(circle at top, rgba(255, 255, 255, 0.16) 0%, transparent 65%);
}

.blog-hero-section .blog-title,
.blog-hero-section .blog-subtitle,
.blog-hero-section .blog-coming-soon {
  text-align: left;
}

.blog-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-color);
  text-transform: lowercase;
  letter-spacing: 2px;
}

.blog-subtitle {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: var(--accent-color);
  margin-bottom: 2rem;
  font-weight: 300;
  max-width: 600px;
  margin: 0;
}

.blog-coming-soon {
  max-width: 640px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text-muted);
}

.hero-search {
  display: flex;
  max-width: 400px;
  margin: 0 auto;
  gap: 0.5rem;
}

.search-input {
  flex: 1;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  color: var(--text-color);
  font-size: 1rem;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
}

.search-input::placeholder {
  color: rgba(168, 184, 200, 0.7);
}

.search-input:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 12px rgba(255, 45, 45, 0.4);
}

.search-button {
  padding: 1rem;
  background: linear-gradient(135deg, #ffffff 0%, #ff2d2d 100%);
  border: none;
  border-radius: 8px;
  color: #000;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.3);
}

.search-button:hover {
  background: linear-gradient(135deg, #ffffff 0%, #ff2d2d 100%);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.4);
}

.featured-article {
  padding: 3rem 0;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(18px);
}

.featured-content {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

/* Featured Article */
.featured-badge {
  position: absolute;
  top: -10px;
  left: 2rem;
  background: var(--accent-color);
  color: var(--brand-deep-space);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  z-index: 2;
}

.featured-post {
  background: var(--surface-elevated);
  padding: 3rem;
  border-radius: 15px;
  border: 1px solid var(--surface-border);
  transition: all 0.3s ease;
  box-shadow: 0 24px 52px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
}

.featured-post:hover {
  border-color: var(--accent-color);
  background: rgba(255, 255, 255, 0.08);
}

.post-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: center;
  flex-wrap: wrap;
}

.category-tag {
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.category-tag.data-sovereignty {
  background: rgba(255, 45, 45, 0.15);
  color: var(--accent-color);
  border: 1px solid rgba(255, 45, 45, 0.32);
}

.category-tag.wave-collapse {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-color);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.category-tag.close-circuit {
  background: rgba(192, 192, 192, 0.14);
  color: var(--brand-reality-bronze);
  border: 1px solid rgba(192, 192, 192, 0.28);
}

.category-tag.ai-independence {
  background: rgba(255, 135, 135, 0.18);
  color: var(--brand-success-teal);
  border: 1px solid rgba(255, 135, 135, 0.28);
}

.category-tag.tech-leadership {
  background: rgba(168, 184, 200, 0.16);
  color: var(--brand-probability-silver);
  border: 1px solid rgba(168, 184, 200, 0.28);
}

.read-time, .post-date {
  color: rgba(168, 184, 200, 0.7);
  font-size: 0.9rem;
}

.featured-title {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  color: var(--text-color);
  line-height: 1.3;
}

.featured-excerpt {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.featured-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.author-avatar {
  width: 50px;
  height: 50px;
  background: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--brand-deep-space);
}

.author-info {
  display: flex;
  flex-direction: column;
}

.author-name {
  font-weight: 600;
  color: var(--text-color);
}

.author-title {
  font-size: 0.9rem;
  color: rgba(22, 33, 44, 0.5);
}

.read-article-btn {
  display: inline-block;
  background: var(--accent-color);
  color: var(--brand-deep-space);
  padding: 1rem 2rem;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.read-article-btn:hover {
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

/* Blog Filters */
.blog-filters {
  padding: 2rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.filter-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.filter-tab {
  padding: 0.8rem 1.5rem;
  background: rgba(248, 250, 251, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 25px;
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-tab:hover {
  background: rgba(248, 250, 251, 0.14);
  border-color: var(--accent-color);
  color: var(--accent-color);
}

.filter-tab.active {
  background: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--brand-deep-space);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.35);
}

/* Articles Grid */
.articles-grid {
  padding: 3rem 0;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.blog-card {
  background: var(--surface-elevated);
  padding: 2rem;
  border-radius: 10px;
  border: 1px solid var(--surface-border);
  transition: all 0.3s ease;
  height: fit-content;
  box-shadow: 0 18px 40px rgba(18, 35, 54, 0.14);
  backdrop-filter: blur(18px);
}

.blog-card:hover {
  border-color: var(--accent-color);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-5px);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.24);
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.card-title {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--text-color);
  line-height: 1.3;
}

.card-excerpt {
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.card-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.tag {
  background: rgba(248, 250, 251, 0.08);
  padding: 0.2rem 0.6rem;
  border-radius: 10px;
  font-size: 0.8rem;
  color: var(--text-muted);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.card-link {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.card-link:hover {
  color: rgba(255, 255, 255, 0.8);
  text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}

/* Load More */
.load-more-section {
  text-align: center;
}

.load-more-btn {
  background: rgba(248, 250, 251, 0.1);
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
  padding: 1rem 2rem;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 14px 32px rgba(18, 35, 54, 0.12);
}

.load-more-btn:hover {
  background: var(--accent-color);
  color: var(--brand-deep-space);
  box-shadow: 0 20px 40px rgba(255, 255, 255, 0.42);
}

/* Newsletter Section */
.newsletter-section {
  padding: 4rem 0;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.12) 0%, transparent 70%);
}

.newsletter-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
}

.newsletter-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--accent-color);
}

.newsletter-text p {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.newsletter-form {
  display: flex;
  gap: 1rem;
}

.newsletter-input {
  flex: 1;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(201, 206, 214, 0.35);
  border-radius: 5px;
  color: var(--text-color);
  font-size: 1rem;
  box-shadow: 0 12px 28px rgba(18, 35, 54, 0.12);
}

.newsletter-input::placeholder {
  color: rgba(168, 184, 200, 0.7);
}

.newsletter-input:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.28);
}

.newsletter-btn {
  background: linear-gradient(135deg, var(--brand-luminous-cyan), var(--brand-reality-bronze));
  border: none;
  color: var(--brand-deep-space);
  padding: 1rem 2rem;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.3);
}

.newsletter-btn:hover {
  background: linear-gradient(135deg, var(--brand-luminous-cyan), var(--brand-reality-bronze));
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.35);
}

/* Blog Placeholder */
.articles-placeholder {
  padding: 4rem 0 6rem;
}

.placeholder-card {
  margin: 0 auto;
  max-width: 720px;
  padding: 3.5rem;
  border-radius: 20px;
  background: var(--surface-elevated);
  border: 1px solid var(--surface-border);
  box-shadow: 0 30px 60px rgba(18, 35, 54, 0.18);
  backdrop-filter: blur(20px);
  text-align: center;
  display: grid;
  gap: 1.5rem;
}

.placeholder-card h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--text-color);
  letter-spacing: 0.08em;
  text-transform: lowercase;
}

.placeholder-card p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-muted);
}

.articles-placeholder .cta-secondary {
  justify-self: center;
}

@media (max-width: 768px) {
  .placeholder-card {
    padding: 2.5rem;
  }
  
  .placeholder-card p {
    font-size: 1rem;
  }
}

/* Careers Page Styles */
.careers-page {
  background: var(--background-gradient);
  min-height: 100vh;
}

.careers-main {
  padding-top: 70px;
}

/* Careers Hero Section */
.careers-hero-section {
  padding: 4rem 0;
  text-align: center;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.12) 0%, transparent 70%);
}

.careers-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-color);
  text-transform: lowercase;
  letter-spacing: 2px;
}

.careers-subtitle {
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  color: var(--accent-color);
  margin-bottom: 2rem;
  font-weight: 300;
}

/* Openings Section */
.openings-section {
  padding: 4rem 0;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(18px);
}

.coming-soon-container {
  text-align: center;
  padding: 3rem;
  background: var(--surface-elevated);
  border-radius: 15px;
  border: 1px solid var(--surface-border);
  box-shadow: 0 24px 48px rgba(18, 35, 54, 0.16);
  backdrop-filter: blur(18px);
  max-width: 900px;
  margin: 0 auto;
}

.coming-soon-icon {
  font-size: 4rem;
  margin-bottom: 1.5rem;
}

.coming-soon-title {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--accent-color);
}

.coming-soon-text {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.roles-preview {
  margin: 3rem 0;
  text-align: left;
}

.roles-preview h4 {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: var(--accent-color);
  text-align: center;
}

.roles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.role-card {
  background: var(--surface-elevated);
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid var(--surface-border);
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 20px 44px rgba(18, 35, 54, 0.16);
  backdrop-filter: blur(16px);
}

.role-card:hover {
  border-color: var(--accent-color);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.14);
}

.role-card h5 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--text-color);
  font-weight: 600;
}

.role-card p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.6;
}

.notify-section {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.notify-section h4 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: var(--accent-color);
}

.notify-section p {
  margin-bottom: 1.5rem;
  color: var(--text-muted);
}

.notify-section .cta-secondary {
  display: inline-flex;
  margin: 0 auto;
}

/* Why Work Section */
.why-work-section {
  padding: 4rem 0;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.benefit-card {
  background: var(--surface-elevated);
  padding: 2.5rem;
  border-radius: 12px;
  text-align: center;
  border: 1px solid var(--surface-border);
  transition: all 0.3s ease;
  box-shadow: 0 22px 48px rgba(18, 35, 54, 0.16);
  backdrop-filter: blur(18px);
}

.benefit-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--accent-color);
  transform: translateY(-3px);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.24);
}

.benefit-card h3 {
  font-size: 1.6rem;
  margin-bottom: 1.2rem;
  color: var(--accent-color);
  font-weight: 600;
}

.benefit-card p {
  color: var(--text-muted);
  line-height: 1.7;
  font-size: 1rem;
}

/* Careers CTA */
.careers-cta {
  padding: 4rem 0;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.12) 0%, transparent 70%);
}

.careers-cta .cta-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.careers-cta h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--accent-color);
}

.careers-cta p {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: var(--text-muted);
}

/* Contact Page Styles */
.contact-page {
  background: var(--background-gradient);
  min-height: 100vh;
}

.contact-main {
  padding-top: 70px;
}

/* Contact Hero Section */
.contact-hero-section {
  padding: 4rem 0;
  text-align: center;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.12) 0%, transparent 70%);
}

.contact-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-color);
  text-transform: lowercase;
  letter-spacing: 2px;
}

.contact-subtitle {
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  color: var(--accent-color);
  margin-bottom: 2rem;
  font-weight: 300;
}

/* Contact Content */
.contact-content-section {
  padding: 4rem 0;
  background: rgba(255, 255, 255, 0.02);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: flex-start;
}

.contact-form-section,
.contact-info-section {
  background: rgba(255, 255, 255, 0.05);
  padding: 3rem;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-form-section h2,
.contact-info-section h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: var(--accent-color);
}

.contact-coming-soon {
  text-align: center;
}

.contact-methods {
  margin-top: 2rem;
  text-align: left;
}

.contact-method {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  align-items: flex-start;
}

.method-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.method-info h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--text-color);
}

.method-info p {
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.5;
}

.contact-email-btn {
  display: inline-block;
  background: var(--accent-color);
  color: var(--brand-deep-space);
  padding: 0.8rem 1.5rem;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.contact-email-btn:hover {
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}

.info-cards {
  margin-bottom: 2rem;
}

.info-card {
  background: var(--surface-elevated);
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid var(--surface-border);
  margin-bottom: 2rem;
  transition: all 0.3s ease;
  box-shadow: 0 20px 44px rgba(18, 35, 54, 0.14);
  backdrop-filter: blur(16px);
}

.info-card:hover {
  border-color: var(--accent-color);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
  box-shadow: 0 24px 46px rgba(0, 0, 0, 0.22);
}

.info-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--accent-color);
  font-weight: 600;
}

.info-card p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.6;
  font-size: 1rem;
}

.info-card a {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.info-card a:hover {
  color: rgba(255, 255, 255, 0.8);
  text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}

.response-time {
  background: rgba(255, 255, 255, 0.03);
  padding: 1.5rem;
  border-radius: 10px;
  border-left: 4px solid var(--accent-color);
}

.response-time h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--accent-color);
}

.response-time p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Expectations Section */
.expectations-section {
  padding: 4rem 0;
}

.expectations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.expectation-card {
  background: var(--surface-elevated);
  padding: 2.5rem 2rem;
  border-radius: 12px;
  text-align: center;
  border: 1px solid var(--surface-border);
  transition: all 0.3s ease;
  position: relative;
  box-shadow: 0 22px 48px rgba(18, 35, 54, 0.16);
  backdrop-filter: blur(18px);
}

.expectation-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--accent-color);
  transform: translateY(-3px);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.24);
}

.expectation-number {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-color);
  color: var(--brand-deep-space);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
}

.expectation-card h3 {
  font-size: 1.4rem;
  margin: 1.5rem 0 1rem 0;
  color: var(--text-color);
  font-weight: 600;
}

.expectation-card p {
  color: var(--text-muted);
  line-height: 1.7;
  font-size: 1rem;
}

/* Responsive Design for Careers and Contact */
@media (max-width: 768px) {
  .roles-grid {
    grid-template-columns: 1fr;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .expectations-grid {
    grid-template-columns: 1fr;
  }
  
  .notify-form {
    flex-direction: column;
  }
  
  .contact-method {
    flex-direction: column;
    text-align: center;
  }
}

.contact-page .contact-form,
.contact-page .contact-info {
  background: rgba(255, 255, 255, 0.05);
}

.contact-page .contact-form h2,
.contact-page .contact-info h2 {
  color: var(--text-color);
}

.contact-page .form-group label {
  color: var(--text-color);
}

.contact-page .info-group h3 {
  color: var(--text-color);
}

.contact-page .info-group p {
  color: var(--text-muted);
}

.coming-soon-container {
  text-align: center;
  padding: 2rem;
}

.coming-soon {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.5rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-color);
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

/* About Page Styles */
.about-page {
  background: var(--background-gradient);
  min-height: 100vh;
}

.about-main {
  padding-top: 70px;
}

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

/* Hero Section */
.about-hero {
  padding: 4rem 0;
  text-align: center;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
}

.about-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-color);
  text-transform: lowercase;
  letter-spacing: 2px;
}

.about-subtitle {
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  color: var(--accent-color);
  margin-bottom: 2rem;
  font-weight: 300;
}

.quantum-divider {
  width: 100px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
  margin: 0 auto;
  position: relative;
}

.quantum-divider::before {
  content: '';
  position: absolute;
  top: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  background: var(--accent-color);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent-color);
  animation: pulse 2s infinite;
}

/* Philosophy Section */
.philosophy-section {
  padding: 4rem 0;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(18px);
}

.philosophy-content h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: var(--accent-color);
  text-align: center;
}

.lead-text {
  font-size: 1.3rem;
  line-height: 1.6;
  color: var(--text-muted);
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

/* Story Section */
.story-section {
  padding: 4rem 0;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.story-text h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: var(--accent-color);
}

.story-text p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  color: var(--text-muted);
}

.wave-function-viz {
  position: relative;
  height: 200px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  overflow: hidden;
}

.wave-line {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-color), rgba(255, 255, 255, 0.3), var(--accent-color));
  transform: translateY(-50%);
  animation: waveCollapse 4s ease-in-out infinite;
}

.collapse-point {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  background: var(--accent-color);
  border-radius: 50%;
  box-shadow: 0 0 20px var(--accent-color);
  animation: collapsePoint 4s ease-in-out infinite;
}

@keyframes waveCollapse {
  0%, 100% { transform: translateY(-50%) scaleY(1); opacity: 1; }
  50% { transform: translateY(-50%) scaleY(0.2); opacity: 0.6; }
}

@keyframes collapsePoint {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-50%, -50%) scale(2); }
}

/* Differentiators Section */
.differentiators-section {
  padding: 4rem 0;
  background: rgba(255, 255, 255, 0.02);
}

.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
  color: var(--accent-color);
}

.differentiators-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.diff-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.diff-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--accent-color);
  transform: translateY(-5px);
}

.diff-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.diff-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-color);
}

.diff-card p {
  color: var(--text-muted);
  line-height: 1.6;
}

/* Services Section */
.services-section {
  padding: 4rem 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.service-card {
  background: var(--surface-elevated);
  padding: 2rem;
  border-radius: 10px;
  border-left: 4px solid var(--accent-color);
  transition: all 0.3s ease;
  box-shadow: 0 18px 40px rgba(18, 35, 54, 0.14);
  backdrop-filter: blur(16px);
}

.service-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateX(10px);
}

.service-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--accent-color);
}

.service-card p {
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.service-highlight {
  font-size: 0.9rem;
  color: var(--accent-color);
  font-style: italic;
}

/* Clients Section */
.clients-section {
  padding: 4rem 0;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(18px);
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.client-type {
  text-align: center;
  padding: 2rem;
}

.client-type h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--accent-color);
}

.client-type p {
  color: var(--text-muted);
  line-height: 1.6;
}

/* CTA Section */
.cta-section {
  padding: 4rem 0;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
}

.cta-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--accent-color);
}

.cta-content p {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: var(--text-muted);
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-buttons .cta-primary,
.cta-buttons .cta-secondary {
  padding: 1rem 2rem;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid var(--cta-color);
}

.cta-buttons .cta-primary {
  background: linear-gradient(135deg, var(--cta-color) 0%, var(--cta-soft) 100%);
  color: #050505;
}

.cta-buttons .cta-primary:hover {
  background: transparent;
  color: var(--cta-color);
  box-shadow: 0 0 20px rgba(255, 45, 45, 0.3);
}

.cta-buttons .cta-secondary {
  background: transparent;
  color: var(--text-color);
}

.cta-buttons .cta-secondary:hover {
  background: var(--cta-color);
  color: #050505;
  box-shadow: 0 0 20px rgba(255, 45, 45, 0.3);
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

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

@keyframes slideLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes slideRight {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.8); }
  to { opacity: 1; transform: scale(1); }
}

.animate-fade-in {
  animation: fadeIn 1s ease-out forwards;
}

.animate-slide-up {
  animation: slideUp 0.8s ease-out forwards;
}

.animate-slide-left {
  animation: slideLeft 0.8s ease-out forwards;
}

.animate-slide-right {
  animation: slideRight 0.8s ease-out forwards;
}

.animate-scale-in {
  animation: scaleIn 0.6s ease-out forwards;
}

/* Responsive Design */

/* -------------------------------------------------------------------------- */
/* Brand Guidelines                                                           */
/* -------------------------------------------------------------------------- */

.brand-page {
  background: var(--background-gradient);
  color: var(--brand-quantum-white);
}

.brand-page .site-header {
  background: rgba(5, 5, 5, 0.9);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.65);
}

.brand-page .nav-links a {
  color: var(--brand-quantum-white);
}

.brand-page .lab-pill {
  border-color: rgba(255, 255, 255, 0.25);
  color: var(--brand-quantum-white);
}

.brand-page .page-shell {
  padding-top: 160px;
}

.brand-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: clamp(2.5rem, 5vw, 4rem);
  align-items: center;
  padding: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(8, 8, 8, 0.94), rgba(14, 14, 14, 0.98));
  box-shadow: 0 26px 68px rgba(0, 0, 0, 0.65);
}

.brand-hero h1 {
  color: var(--secondary-color);
  text-transform: lowercase;
  letter-spacing: 0.02em;
}

.brand-hero .eyebrow {
  color: var(--brand-probability-silver);
}

.brand-hero .lead {
  color: rgba(248, 250, 251, 0.78);
}

.brand-meta {
  display: grid;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 18px;
  padding: 1.2rem 1.4rem;
  color: var(--brand-quantum-white);
}

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

.brand-section {
  margin-top: 3rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 2rem 2.5rem;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.45);
}

.brand-section h2 {
  color: var(--brand-quantum-white);
  margin-bottom: 1rem;
  letter-spacing: 0.04em;
}

.brand-section p {
  color: rgba(248, 250, 251, 0.85);
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.brand-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 1.4rem;
  color: var(--brand-quantum-white);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.brand-card h3 {
  color: var(--brand-quantum-white);
  margin-bottom: 0.75rem;
}

.color-swatch {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 0.75rem;
  align-items: center;
}

.swatch-chip {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.swatch-meta strong {
  display: block;
  color: var(--brand-quantum-white);
}

.swatch-meta span {
  color: var(--brand-probability-silver);
  font-size: 0.9rem;
}

.usage-list {
  margin-top: 1rem;
  padding-left: 1.2rem;
  color: rgba(248, 250, 251, 0.85);
}

.usage-list li + li {
  margin-top: 0.35rem;
}

.type-stack {
  display: grid;
  gap: 0.5rem;
  color: rgba(248, 250, 251, 0.9);
}

.brand-pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.brand-pillars li {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 0.9rem 1rem;
  list-style: none;
  color: var(--brand-quantum-white);
}

.dos-donts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}

.do-card,
.dont-card {
  border-radius: 14px;
  padding: 1.2rem 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
}

.dont-card {
  border-color: rgba(255, 45, 45, 0.25);
}

.dos-donts ul {
  margin-top: 0.6rem;
  padding-left: 1.1rem;
  color: rgba(248, 250, 251, 0.85);
}

.applications-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
  margin-top: 1rem;
}

.voice-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

.accent-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: rgba(201, 206, 214, 0.14);
  color: var(--secondary-color);
}

.brand-note {
  margin-top: 0.75rem;
  color: var(--brand-probability-silver);
}

/* Transparent card shells so carbon fiber texture shows through */
.meta-card,
.pillar,
.contact-form,
.content-wrapper,
.brand-card,
.system-card,
.result-card,
.story-card,
.value-card,
.info-card,
.reason-card,
.blog-card,
.placeholder-card,
.role-card,
.benefit-card,
.expectation-card,
.service-card,
.diff-card,
.do-card,
.dont-card {
  background: transparent;
  backdrop-filter: none;
}

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

@media (max-width: 768px) {
  .story-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .differentiators-grid {
    grid-template-columns: 1fr;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .clients-grid {
    grid-template-columns: 1fr;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-primary, .cta-secondary {
    width: 200px;
    text-align: center;
  }
}
