/* =============================================================================
   Cre8sphere LLP - Premium Design System
   Theme: White / Teal (#008080) | Fonts: Manrope & Poppins
============================================================================= */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Poppins:wght@400;500;600;700&display=swap');

/* ---------------------------------------------------------------------------
   1. DESIGN TOKENS
--------------------------------------------------------------------------- */
:root {
  /* Brand Gradients & Colors */
  --brand-primary: #008080;
  --brand-dark: #004d4d;
  --brand-light: #20b2aa;
  --brand-muted: #5c9999;
  
  --gradient-teal: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-dark) 50%, var(--brand-light) 100%);
  --gradient-teal-hover: linear-gradient(135deg, var(--brand-light) 0%, var(--brand-primary) 50%, var(--brand-dark) 100%);
  --gradient-glow: rgba(0, 128, 128, 0.15);

  /* Colors - Light Theme */
  --bg: #FFFFFF; 
  --bg-subtle: #F8F9FA; /* Warm/neutral off-white */
  --bg-dark: #111827;
  --teal: var(--brand-primary);
  --teal-dark: var(--brand-dark);
  --teal-light: var(--brand-light);
  --teal-a08: rgba(0,128,128,0.08);
  --teal-a12: rgba(0,128,128,0.12);
  --teal-a20: rgba(0,128,128,0.20);

  /* Semantic - Light Theme */
  --color-accent: var(--brand-primary);
  --color-text-dark: #1a1a1a; /* Dark charcoal */
  --color-text: #334155;
  --color-text-muted: #64748b;
  --color-text-light: #f8fafc;
  --color-border: rgba(15, 23, 42, 0.08);
  --color-border-teal: rgba(0, 128, 128, 0.2);
  --color-bg: #F8F9FA; 
  --color-bg-subtle: #F1F5F9;
  --header-bg: rgba(248, 249, 250, 0.85);
  --header-bg-scrolled: rgba(248, 249, 250, 0.95);
  --dot-teal: rgba(0, 128, 128, 0.15);
  --dot-grey: rgba(100, 116, 139, 0.15);

  /* Typography */
  --font: 'Manrope', sans-serif;
  --font-secondary: 'Poppins', sans-serif;

  /* Shadows - Light Theme */
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.05);
  --shadow-lg: 0 12px 32px rgba(0,0,0,0.08);
  --shadow-teal: 0 8px 32px var(--gradient-glow);
  --shadow-teal-sm: 0 4px 16px rgba(0,128,128,0.08);
}

/* Colors - Dark Theme Overrides */
[data-theme="dark"] {
  --bg: #333333; /* Dark grey for cards */
  --bg-subtle: #222222; /* Slightly darker grey for featured elements */
  --bg-dark: #000000; /* Pure black */
  
  --teal: var(--brand-light);
  --teal-dark: var(--brand-primary);
  --teal-light: #4fd1c5;
  
  --teal-a08: rgba(32, 178, 170, 0.1);
  --teal-a12: rgba(32, 178, 170, 0.15);
  --teal-a20: rgba(32, 178, 170, 0.25);
  --gradient-glow: rgba(32, 178, 170, 0.15);

  /* Semantic - Dark Theme */
  --color-accent: var(--brand-light);
  --color-text-dark: #f8fafc; /* Off-white */
  --color-text: #e2e8f0;
  --color-text-muted: #94a3b8; /* Muted secondary */
  --color-text-light: #ffffff;
  --color-border: rgba(255, 255, 255, 0.08);
  --color-border-teal: rgba(32, 178, 170, 0.25);
  --color-bg: #000000; /* Pure black background for body/sections */
  --color-bg-subtle: #000000; /* Pure black for alternating sections */
  --header-bg: rgba(0, 0, 0, 0.85);
  --header-bg-scrolled: rgba(0, 0, 0, 0.95);
  --dot-teal: rgba(32, 178, 170, 0.2);
  --dot-grey: rgba(148, 163, 184, 0.15);

  /* Shadows - Dark Theme */
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.5);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.6);
  --shadow-lg: 0 12px 32px rgba(0,0,0,0.8);
  --shadow-teal: 0 8px 32px rgba(32, 178, 170, 0.15);
  --shadow-teal-sm: 0 4px 16px rgba(32, 178, 170, 0.1);
}

/* Spacing, Radius & Transitions */
:root {
  /* Spacing */
  --sp-1: 0.25rem;
  --sp-2: 0.5rem;
  --sp-3: 0.75rem;
  --sp-4: 1rem;
  --sp-6: 1.5rem;
  --sp-8: 2rem;
  --sp-12: 3rem;
  --sp-16: 4rem;
  --sp-20: 5rem;
  --sp-24: 6rem;
  --sp-32: 8rem;
  --spacing-xl: 10rem;
  --spacing-lg: 6rem;
  --spacing-md: 4rem;
  --spacing-sm: 2rem;

  /* Border radius */
  --radius-sm: 4px;
  --radius: 8px; /* Slightly sharper, modern tech feel */
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --transition-fast: 150ms var(--ease);
  --transition-normal: 300ms var(--ease);
}

/* ---------------------------------------------------------------------------
   2. RESET & BASE
--------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  font-weight: 400;
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  transition: background-color 0.3s ease, color 0.3s ease;
}

img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition-fast); }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; transition: transform var(--transition-fast), background-color var(--transition-fast); }
input, textarea, select { font-family: inherit; }

/* Accessibility Focus States */
:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 4px;
  transition: outline-offset 0.1s ease;
}

/* Skip to Content Link */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--teal);
  color: white;
  padding: 8px;
  z-index: 10000;
  transition: top 0.2s ease;
}
.skip-link:focus { top: 0; }

/* Reduced Motion Preference */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ---------------------------------------------------------------------------
   3. CUSTOM SCROLLBAR
--------------------------------------------------------------------------- */
::-webkit-scrollbar { width: 4px; height: 4px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--teal-a20); border-radius: var(--radius-full); }
::-webkit-scrollbar-thumb:hover { background: var(--teal); }
* { scrollbar-width: thin; scrollbar-color: var(--teal-a20) transparent; }

/* ---------------------------------------------------------------------------
   4. SCROLL PROGRESS BAR & BACK TO TOP
--------------------------------------------------------------------------- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: var(--gradient-teal);
  z-index: 9999;
  transition: width 0.1s linear;
}

.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  z-index: 9000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition-normal);
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  background: var(--teal-dark);
  transform: translateY(-4px);
}

/* ---------------------------------------------------------------------------
   5. CUSTOM CURSOR
--------------------------------------------------------------------------- */
.cursor-dot,
.cursor-ring {
  display: none !important;
}

/* ---------------------------------------------------------------------------
   6. LAYOUT UTILITIES
--------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
}

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

.grid-col-1 { grid-column: 1; }
.grid-col-2 { grid-column: 2; }

.max-w-lg { max-width: 680px; }
.mx-auto { margin-left: auto; margin-right: auto; }
.text-center { text-align: center; }

.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.pt-0 { padding-top: 0; }

.d-none-mobile { display: inline-flex; }

.grid-2col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

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

/* ---------------------------------------------------------------------------
   7. SECTION TYPES
--------------------------------------------------------------------------- */
.section-light {
  background: var(--color-bg);
  padding: var(--spacing-xl) 0;
}

.section-dark {
  background: var(--color-bg-subtle);
  padding: var(--spacing-xl) 0;
}

.cta-black {
  background: var(--bg-dark);
  background-image: 
    radial-gradient(circle at 50% 0%, var(--teal-a12) 0%, transparent 60%),
    linear-gradient(to bottom, rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(to right, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 100% 100%, 40px 40px, 40px 40px;
  background-position: center top, center center, center center;
  padding: 8rem 0;
  color: #FFFFFF;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.cta-black::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: linear-gradient(to top, var(--bg-dark), transparent);
  pointer-events: none;
}

.cta-black .container { position: relative; z-index: 1; }

.cta-black .heading-large { color: #FFFFFF; }
.cta-black .body-text-large { color: rgba(255,255,255,0.7); }

/* ---------------------------------------------------------------------------
   8. TYPOGRAPHY
--------------------------------------------------------------------------- */
.heading-large {
  font-family: var(--font);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.1;
  color: var(--color-text-dark);
}

.heading-medium {
  font-family: var(--font);
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--color-text-dark);
}

.body-text-large {
  font-family: var(--font);
  font-size: clamp(1.125rem, 1.5vw, 1.25rem);
  line-height: 1.6;
  color: var(--color-text);
}

.body-text {
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text-muted);
}

.section-label {
  display: inline-block;
  font-family: var(--font-secondary);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1rem;
}

.text-teal { color: var(--teal); }
.text-gradient,
.text-gradient .word span,
.word > .text-gradient {
  background: var(--gradient-teal) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  color: transparent !important;
  display: inline-block !important;
}

/* ---------------------------------------------------------------------------
   9. KEYFRAME ANIMATIONS
--------------------------------------------------------------------------- */
@keyframes fadeUpIn {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes blobPulse {
  0%, 100% { transform: scale(1) translate(0, 0); }
  33%       { transform: scale(1.15) translate(12px, -8px); }
  66%       { transform: scale(0.9) translate(-8px, 12px); }
}

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

@keyframes pulseRing {
  0%   { box-shadow: 0 0 0 0 rgba(0,128,128,0.4); }
  70%  { box-shadow: 0 0 0 10px rgba(0,128,128,0); }
  100% { box-shadow: 0 0 0 0 rgba(0,128,128,0); }
}

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

@keyframes scrollLineAnim {
  0%   { transform: scaleY(0) translateY(-100%); opacity: 0; }
  30%  { opacity: 1; }
  100% { transform: scaleY(1) translateY(0); opacity: 0.4; }
}

/* ---------------------------------------------------------------------------
   10. SCROLL ANIMATION CLASSES
--------------------------------------------------------------------------- */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

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

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

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

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* Word Reveal */
.reveal-text .word,
.reveal-text-stagger .word {
  display: inline-block;
}

.reveal-text .word span,
.reveal-text-stagger .word span {
  display: inline-block;
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal-text .word.is-visible span,
.reveal-text-stagger .word.is-visible span {
  opacity: 1;
  transform: translateY(0);
}

/* Badge dot */
.badge-dot {
  width: 6px;
  height: 6px;
  background: var(--teal);
  border-radius: 50%;
  display: inline-block;
  animation: pulseRing 2s infinite;
}

/* ---------------------------------------------------------------------------
   11. NAVIGATION
--------------------------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  background: var(--header-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--color-border);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.01);
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.site-header.scrolled {
  background: var(--header-bg-scrolled);
  border-bottom-color: var(--color-border-teal);
  box-shadow: 0 8px 30px rgba(0, 128, 128, 0.03);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 68px;
}

.logo { display: flex; align-items: center; gap: 0.5rem; }

.logo img {
  width: 90px !important;
  height: auto !important;
  transition: opacity 0.2s var(--ease), filter 0.3s var(--ease);
}

[data-theme="dark"] .logo img {
  filter: invert(1) hue-rotate(180deg);
}

.wordmark {
  font-size: 1.125rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--color-text-dark);
  transition: color 0.2s var(--ease);
}

.wordmark:hover { color: var(--teal); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text-muted);
  padding: 0.5rem 0.25rem;
  margin: 0 0.5rem;
  transition: color 0.2s var(--ease);
}

.nav-link:hover {
  color: var(--color-text-dark);
}

.nav-hover-pill {
  position: absolute;
  bottom: 0;
  left: 0;
  background: var(--teal);
  border-radius: var(--radius-full);
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  width: 0;
  height: 2px;
  transition: width 0.3s var(--ease), transform 0.3s var(--ease), opacity 0.2s var(--ease);
}

.nav-link.active {
  color: var(--color-text-dark);
  font-weight: 600;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.theme-toggle {
  background: transparent;
  border: none;
  color: var(--color-text-dark);
  cursor: pointer;
  width: 2.25rem;
  height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 50%;
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
}

.theme-toggle:hover {
  background: var(--teal-a08);
  color: var(--teal);
}

.theme-toggle svg {
  width: 1.125rem;
  height: 1.125rem;
  transition: transform 0.4s var(--ease);
}

.theme-toggle:hover svg {
  transform: rotate(20deg);
}

.theme-toggle .sun-icon {
  display: none;
}

.theme-toggle .moon-icon {
  display: block;
}

[data-theme="dark"] .theme-toggle .sun-icon {
  display: block;
}

[data-theme="dark"] .theme-toggle .moon-icon {
  display: none;
}

.site-header .btn-primary {
  padding: 0.5rem 1.125rem !important;
  font-size: 0.8125rem !important;
  font-weight: 600 !important;
  letter-spacing: -0.01em;
  border-radius: var(--radius-full) !important;
  box-shadow: 0 4px 12px rgba(0, 128, 128, 0.1);
  transition: background 0.3s var(--ease), transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.site-header .btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0, 128, 128, 0.18);
}

/* Hamburger */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: background 0.2s var(--ease);
}

.menu-toggle:hover { background: var(--teal-a08); }

.menu-toggle span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--color-text-dark);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease), width 0.3s var(--ease);
}

.menu-toggle.is-active span:first-child { transform: translateY(6.5px) rotate(45deg); }
.menu-toggle.is-active span:last-child  { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile nav panel */
.mobile-nav-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: 80%;
  max-width: 360px;
  height: 100vh;
  background: var(--bg);
  box-shadow: -8px 0 40px rgba(0,0,0,0.12);
  z-index: 999;
  display: flex;
  flex-direction: column;
  padding: 6rem 2rem 2rem;
  gap: 0.25rem;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease);
}

.mobile-nav-panel.is-active { transform: translateX(0); }

.mobile-nav-link {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-text-dark);
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--color-border);
  transition: color 0.2s var(--ease), padding-left 0.2s var(--ease);
}

.mobile-nav-link:hover { color: var(--teal); padding-left: 0.5rem; }

/* ---------------------------------------------------------------------------
   12. BUTTONS
--------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: var(--radius-full);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--transition-fast);
  white-space: nowrap;
  text-decoration: none;
  font-family: var(--font);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--teal);
  color: #FFFFFF;
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background: var(--gradient-teal);
  transform: translateY(-2px);
  box-shadow: var(--shadow-teal-sm);
  color: #FFFFFF;
}

.btn-secondary {
  background: var(--bg-subtle);
  color: var(--color-text-dark);
  border-color: var(--color-border);
}

.btn-secondary:hover {
  background: var(--teal-a08);
  border-color: var(--color-border-teal);
  color: var(--teal);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--teal);
  border-color: var(--color-border-teal);
}

.btn-outline:hover {
  background: var(--teal-a08);
  border-color: var(--teal);
  transform: translateY(-2px);
}

.btn-submit {
  background: var(--teal);
  color: #FFFFFF;
  width: 100%;
  padding: 1rem;
}

.btn-submit:hover {
  background: var(--gradient-teal);
  transform: translateY(-2px);
  box-shadow: var(--shadow-teal-sm);
}

.btn.btn-dark {
  background: var(--bg-dark);
  color: #FFFFFF;
  border-color: var(--color-border);
}

.btn.btn-dark:hover {
  background: var(--bg);
  color: var(--color-text-dark);
  border-color: var(--color-border);
  transform: translateY(-2px);
}

/* ---------------------------------------------------------------------------
   13. HERO SECTION
--------------------------------------------------------------------------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 10rem 0 6rem;
  position: relative;
  overflow: hidden;
  background-image: 
    radial-gradient(var(--dot-teal) 1.5px, transparent 1.5px),
    radial-gradient(var(--dot-grey) 1.5px, transparent 1.5px);
  background-size: 32px 32px;
  background-position: 0 0, 16px 16px;
}

/* Blob background */
.hero::before,
.hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}

.hero.section-dark::before {
  width: 600px;
  height: 600px;
  background: rgba(0,128,128,0.06);
  top: -200px;
  right: -200px;
  animation: blobPulse 12s ease-in-out infinite;
}

.hero.section-dark::after {
  width: 400px;
  height: 400px;
  background: rgba(0,160,160,0.05);
  bottom: -100px;
  left: 10%;
  animation: blobPulse 15s ease-in-out infinite reverse;
}

.hero-content { position: relative; z-index: 1; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 1.125rem;
  background: linear-gradient(135deg, var(--teal-a08), var(--teal-a12));
  border: 1px solid var(--color-border-teal);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--teal);
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 16px rgba(0, 128, 128, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

[data-theme="dark"] .hero-badge {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.hero-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 128, 128, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.hero-badge::after {
  content: '';
  position: absolute;
  top: 0; left: -100%; width: 50%; height: 100%;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.3), transparent);
  transform: skewX(-20deg);
  animation: badgeShine 4s infinite;
}

[data-theme="dark"] .hero-badge::after {
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.1), transparent);
}

@keyframes badgeShine {
  0% { left: -100%; }
  20% { left: 200%; }
  100% { left: 200%; }
}

.badge-icon { font-size: 0.875rem; }

.hero-title {
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.1;
  color: var(--color-text-dark);
  margin-bottom: 1.5rem;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-ecosystem {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 1rem;
}

.ecosystem-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 0.875rem;
  background: var(--bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--color-text-muted);
  white-space: nowrap;
}

.scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin-top: 3rem;
}

.scroll-text {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--teal), transparent);
  animation: scrollLineAnim 2s ease-in-out infinite;
  transform-origin: top;
}

/* ---------------------------------------------------------------------------
   14. STATS GRID
--------------------------------------------------------------------------- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.stat-item {
  padding: 1.5rem;
  background: var(--teal-a08);
  border: 1px solid var(--color-border-teal);
  border-radius: var(--radius);
}

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--color-text-muted);
}

/* ---------------------------------------------------------------------------
   15. ECOSYSTEM GRID
--------------------------------------------------------------------------- */
.ecosystem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.eco-card {
  padding: 2rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--bg);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.5rem;
  position: relative;
  overflow: hidden;
  cursor: default;
  transition: all var(--transition-normal);
}

.eco-card:hover {
  border-color: var(--color-border-teal);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.eco-card-1 {
  grid-column: span 2;
  background: var(--bg-subtle);
}

.eco-card-2 {
  grid-column: span 1;
}

.eco-card-3 {
  grid-column: span 1;
}

.eco-card-4 {
  grid-column: span 2;
}

.eco-title {
  font-size: 1.375rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--color-text-dark);
  margin-bottom: 0.5rem;
}

.eco-desc {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.eco-products { margin-bottom: 1rem; }

.eco-products-label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.375rem;
}

.eco-products-list {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  font-weight: 500;
}

.eco-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--teal);
  transition: gap 0.2s var(--ease);
}

.eco-link:hover { gap: 0.5rem; }

/* ---------------------------------------------------------------------------
   16. PRODUCT CARDS
--------------------------------------------------------------------------- */
.product-showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

@media (max-width: 1024px) {
  .product-showcase-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .product-showcase-grid { grid-template-columns: 1fr; }
}

.product-card {
  padding: 2.25rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--bg);
  position: relative;
  overflow: hidden;
  transition: all var(--transition-normal);
  cursor: default;
}

.product-card:hover {
  border-color: var(--color-border-teal);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.product-card-featured { background: var(--bg-subtle); }

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

.product-division {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
}

.product-title {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--color-text-dark);
  margin-bottom: 0.25rem;
}

.product-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.product-category {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  display: block;
  margin-top: 0.25rem;
}

/* ---------------------------------------------------------------------------
   17. STATUS BADGES
--------------------------------------------------------------------------- */
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.25rem 0.625rem;
  border-radius: var(--radius-full);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.status-live {
  background: rgba(0,128,128,0.1);
  color: var(--teal-dark);
  border: 1px solid rgba(0,128,128,0.2);
  animation: pulseRing 2.5s ease-out infinite;
}

.status-live::before {
  content: '';
  width: 5px;
  height: 5px;
  background: var(--teal);
  border-radius: 50%;
  display: inline-block;
}

.status-beta {
  background: rgba(234,179,8,0.1);
  color: #a16207;
  border: 1px solid rgba(234,179,8,0.2);
}

.status-soon {
  background: rgba(139, 92, 246, 0.1);
  color: #6d28d9;
  border: 1px solid rgba(139, 92, 246, 0.2);
}

.status-dev {
  background: rgba(59,130,246,0.08);
  color: #1d4ed8;
  border: 1px solid rgba(59,130,246,0.15);
}

/* ---------------------------------------------------------------------------
   18. NUMBERED LIST
--------------------------------------------------------------------------- */
.numbered-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.numbered-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--color-border);
  cursor: default;
  transition: padding-left 0.2s var(--ease);
}

.numbered-item:hover { padding-left: 0.5rem; }
.numbered-item:hover .numbered-num { color: var(--teal); }

.numbered-num {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-text-muted);
  min-width: 2rem;
  transition: color 0.2s var(--ease);
}

.numbered-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-text-dark);
  letter-spacing: -0.01em;
}

/* ---------------------------------------------------------------------------
   19. NEWSROOM GRID
--------------------------------------------------------------------------- */
.newsroom-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

.news-featured {
  grid-column: 1;
}

.featured-article {
  padding: 2rem;
  background: var(--bg-subtle);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-lg);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.featured-article:hover {
  border-color: var(--color-border-teal);
  box-shadow: var(--shadow-teal);
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  font-size: 0.8125rem;
  color: var(--color-text-muted);
}

.article-category {
  color: var(--teal);
  font-weight: 600;
}

.featured-title {
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--color-text-dark);
  line-height: 1.2;
}

.news-feed {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.journal-entry {
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--color-border);
  display: block;
  transition: padding-left 0.2s var(--ease);
}

.journal-entry:hover { padding-left: 0.5rem; }

.journal-entry .article-meta { margin-bottom: 0.5rem; }

.entry-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text-dark);
  line-height: 1.4;
  transition: color 0.2s var(--ease);
}

.journal-entry:hover .entry-title { color: var(--teal); }

/* ---------------------------------------------------------------------------
   20. NEWS CARDS (Newsroom page)
--------------------------------------------------------------------------- */
.news-card {
  padding: 2rem 0;
  border-bottom: 1px solid var(--color-border);
  display: block;
  transition: padding-left 0.2s var(--ease);
}

.news-card:hover { padding-left: 0.5rem; }

.news-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
}

.news-tag {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  background: var(--teal-a08);
  border: 1px solid var(--color-border-teal);
  border-radius: var(--radius-full);
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--teal-dark);
}

/* Category nav */
.category-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
}

.category-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.375rem 0.875rem;
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-text-muted);
  border: 1px solid var(--color-border);
  background: var(--bg);
  transition: all 0.2s var(--ease);
}

.category-pill:hover {
  color: var(--teal);
  border-color: var(--color-border-teal);
  background: var(--teal-a08);
}

.category-pill.active {
  color: var(--teal);
  border-color: var(--teal);
  background: var(--teal-a08);
}

.search-bar {
  width: 240px;
  padding: 0.625rem 1rem;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-family: var(--font);
  color: var(--color-text-dark);
  background: var(--bg);
  outline: none;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.search-bar:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px var(--teal-a08);
}

.search-bar::placeholder { color: var(--color-text-muted); }

/* ---------------------------------------------------------------------------
   21. TIMELINE
--------------------------------------------------------------------------- */
.timeline-progression {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  margin-top: 4rem;
  position: relative;
}

.timeline-progression::before {
  content: '';
  position: absolute;
  top: 1.5rem;
  left: 15%;
  right: 15%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--teal), transparent);
}

.timeline-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  flex: 1;
  position: relative;
  z-index: 1;
}

.timeline-year {
  display: inline-block;
  font-size: 1rem;
  font-weight: 800;
  color: var(--teal);
  background: var(--bg-subtle);
  border: 1.5px solid var(--color-border-teal);
  border-radius: var(--radius-full);
  padding: 0.375rem 1rem;
}

.timeline-desc {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  font-weight: 500;
}

/* ---------------------------------------------------------------------------
   22. MISSION / VISION CARDS
--------------------------------------------------------------------------- */
.mission-vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.mission-card {
  padding: 2.5rem;
  background: var(--bg);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-lg);
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}

.mission-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--teal-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}

.mission-card:hover {
  border-color: var(--color-border-teal);
  box-shadow: var(--shadow-teal);
}

.mission-card:hover::before { transform: scaleX(1); }

/* ---------------------------------------------------------------------------
   23. AT A GLANCE
--------------------------------------------------------------------------- */
.glance-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.glance-item {
  padding: 1.75rem;
  background: var(--bg);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius);
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.glance-item:hover {
  border-color: var(--color-border-teal);
  box-shadow: var(--shadow-teal-sm);
}

.glance-label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.5rem;
}

.glance-value {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text-dark);
  line-height: 1.3;
}

/* ---------------------------------------------------------------------------
   24. SERVICES LIST
--------------------------------------------------------------------------- */
.services-list {
  display: flex;
  flex-direction: column;
}

.service-item {
  padding: 1.5rem 0;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  flex-wrap: wrap;
  position: relative;
  transition: padding-left 0.2s var(--ease);
}

.service-item:hover { padding-left: 0.5rem; }

.service-num {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--teal);
  min-width: 1.75rem;
  padding-top: 0.2rem;
}

.service-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-text-dark);
  flex: 1;
}

.service-line {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--color-border);
}

/* ---------------------------------------------------------------------------
   25. TEAM GRID
--------------------------------------------------------------------------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.team-member {
  padding: 1.75rem;
  background: var(--bg-subtle);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-lg);
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
}

.team-member:hover {
  border-color: var(--color-border-teal);
  box-shadow: var(--shadow-teal-sm);
  transform: translateY(-3px);
}

.team-name {
  font-size: 1rem;
  font-weight: 800;
  color: var(--color-text-dark);
  margin-bottom: 0.25rem;
}

.team-role {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--teal);
  letter-spacing: 0.04em;
  margin-bottom: 0.75rem;
}

/* ---------------------------------------------------------------------------
   26. SOLUTION CARDS
--------------------------------------------------------------------------- */
.solution-card {
  padding: 2.25rem;
  background: var(--bg-dark);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  color: rgba(255,255,255,0.85);
  margin-bottom: 1.5rem;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.solution-card:hover {
  border-color: rgba(0,128,128,0.3);
  box-shadow: var(--shadow-lg);
}

.solution-card.light {
  background: var(--bg);
  border-color: var(--color-border);
  color: var(--color-text);
}

.solution-card.light:hover {
  border-color: var(--color-border-teal);
}

.solution-header { margin-bottom: 1rem; }

.solution-header h3 {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  margin-bottom: 0.25rem;
}

.solution-card.light .solution-header h3 { color: var(--color-text-dark); }

.solution-header h4 {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
}

.solution-card.light .solution-header h4 { color: var(--color-text-muted); }

.solution-scope {
  margin: 1rem 0;
  padding-left: 1rem;
}

.solution-scope ul {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.solution-scope li {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  padding-left: 0.875rem;
  position: relative;
}

.solution-scope li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--teal);
  font-size: 0.75rem;
}

.solution-card.light .solution-scope li { color: var(--color-text-muted); }

.solution-target {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.45);
  font-style: italic;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.solution-card.light .solution-target {
  color: var(--color-text-muted);
  border-top-color: var(--color-border);
}

/* ---------------------------------------------------------------------------
   27. STANDARDS GRID
--------------------------------------------------------------------------- */
.standard-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.standard-item {
  padding: 1.75rem;
  background: var(--bg-subtle);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius);
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.standard-item:hover {
  border-color: var(--color-border-teal);
  box-shadow: var(--shadow-teal-sm);
}

.standard-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--teal-a20);
  letter-spacing: -0.03em;
  margin-bottom: 0.75rem;
  line-height: 1;
}

.standard-item h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 0.5rem;
}

/* ---------------------------------------------------------------------------
   28. DIVISION NAV (Ecosystem nav pills)
--------------------------------------------------------------------------- */
.ecosystem-nav,
.ecosystem-nav-dark {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 3rem;
}

.ecosystem-nav .eco-link,
.ecosystem-nav-dark .eco-link {
  display: inline-flex;
  align-items: center;
  padding: 0.4375rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 600;
  border: 1.5px solid var(--color-border);
  color: var(--color-text-muted);
  background: var(--bg);
  transition: all 0.2s var(--ease);
}

.ecosystem-nav .eco-link:hover,
.ecosystem-nav-dark .eco-link:hover {
  color: var(--teal);
  border-color: var(--color-border-teal);
  background: var(--teal-a08);
}

.ecosystem-nav .eco-link.active,
.ecosystem-nav-dark .eco-link.active {
  color: var(--teal);
  border-color: var(--teal);
  background: var(--teal-a08);
}

.ecosystem-nav-dark .eco-link {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.6);
}

.ecosystem-nav-dark .eco-link:hover {
  background: var(--teal-a12);
  border-color: var(--color-border-teal);
  color: var(--teal);
}

.ecosystem-nav-dark .eco-link.active {
  background: var(--teal-a12);
  border-color: var(--teal);
  color: var(--teal);
}

/* Division header */
.division-header { margin-bottom: 2.5rem; }

.division-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--color-text-dark);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.division-subtitle {
  font-size: 1rem;
  font-weight: 500;
  color: var(--teal);
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
}

/* ---------------------------------------------------------------------------
   29. EVOLUTION SECTION
--------------------------------------------------------------------------- */
.evolution-flow-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
}

.evolution-arrow-connector {
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
}

.evolution-arrow-connector svg {
  transform: rotate(0deg);
  transition: transform 0.3s var(--ease);
}

@media (max-width: 768px) {
  .evolution-flow-container {
    flex-direction: column;
    gap: 1.5rem;
  }
  .evolution-arrow-connector svg {
    transform: rotate(90deg);
  }
}

/* ---------------------------------------------------------------------------
   30. CONTACT
--------------------------------------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-block {
  margin-bottom: 2rem;
}

.contact-block h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.75rem;
}

.contact-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

.contact-link {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--teal);
  transition: opacity 0.2s var(--ease);
}

.contact-link:hover { opacity: 0.7; }

/* ---------------------------------------------------------------------------
   31. CONTACT FORM
--------------------------------------------------------------------------- */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group { display: flex; flex-direction: column; gap: 0.5rem; }

.form-label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-text-dark);
}

.form-control {
  padding: 0.75rem 1rem;
  background: var(--bg);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-size: 0.9375rem;
  font-family: var(--font);
  color: var(--color-text-dark);
  outline: none;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s var(--ease);
  width: 100%;
}

.form-control:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px var(--teal-a12);
  background: var(--bg);
}

.form-control::placeholder {
  color: var(--color-text-muted);
  opacity: 0.6;
}

.form-select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23374151' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1rem;
  padding-right: 2.5rem;
}

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

/* ---------------------------------------------------------------------------
   32. FOOTER
--------------------------------------------------------------------------- */
.site-footer {
  background: var(--bg-subtle);
  color: var(--color-text-muted);
  padding: 4rem 0 2.5rem;
  position: relative;
  border-top: 1px solid var(--color-border);
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1.5px;
  background: linear-gradient(90deg, transparent, var(--teal-a20), var(--teal), var(--teal-a20), transparent);
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--color-border);
  flex-wrap: wrap;
}

.footer-brand {
  flex: 0 1 320px;
}

.footer-brand .body-text {
  color: var(--color-text-muted);
  margin-top: 0.5rem;
}

.footer-column {
  display: flex;
  flex-direction: column;
}

.footer-column h5 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-dark);
  margin-bottom: 1.25rem;
}

.footer-column a {
  display: block;
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin-bottom: 0.75rem;
  transition: color 0.2s var(--ease), transform 0.2s var(--ease);
  transform-origin: left;
}

.footer-column a:last-child {
  margin-bottom: 0;
}

.footer-column a:hover {
  color: var(--teal);
  transform: translateX(4px);
}

.footer-legal {
  margin-top: 2rem;
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ---------------------------------------------------------------------------
   33. MISC COMPONENTS
--------------------------------------------------------------------------- */
.about-statement {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
  color: var(--color-text-dark);
  margin: 1.5rem 0;
}

.careers-wrap {
  max-width: 680px;
  margin: 0 auto;
}

/* ---------------------------------------------------------------------------
   34. RESPONSIVE BREAKPOINTS
--------------------------------------------------------------------------- */

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

/* 900px */
@media (max-width: 900px) {
  .grid-layout { grid-template-columns: 1fr; gap: 2rem; }
  .grid-col-1, .grid-col-2 { grid-column: 1; }
  .newsroom-grid { grid-template-columns: 1fr; }
  .news-featured { grid-column: 1; }
  .mission-vision-grid { grid-template-columns: 1fr; }
  .standard-grid { grid-template-columns: 1fr; }
  .product-showcase-grid { grid-template-columns: 1fr; }
  .product-card-featured { grid-column: 1; grid-row: auto; }
  .ecosystem-grid { grid-template-columns: 1fr; }
  .eco-card-1, .eco-card-2, .eco-card-3, .eco-card-4 { grid-column: span 1 !important; }
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-grid { flex-direction: column; }
}

/* 768px */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .d-none-mobile { display: none !important; }
  .menu-toggle { display: flex; }

  .hero { padding: 8rem 0 4rem; min-height: 90vh; }
  .hero-title { font-size: clamp(1.85rem, 6vw, 2.75rem); }
  .hero-buttons { flex-direction: column; align-items: center; }

  .section-light,
  .section-dark,
  .cta-black { padding: 5rem 0; }

  .glance-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: 1fr; }
}

/* 480px */
@media (max-width: 480px) {
  .container { padding-left: 1.25rem; padding-right: 1.25rem; }
  .glance-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
  .standard-grid { grid-template-columns: 1fr; }
  .ecosystem-nav, .ecosystem-nav-dark { gap: 0.375rem; }
  .category-nav { gap: 0.25rem; }
  .search-bar { width: 100%; }
  .timeline-progression { flex-direction: column; align-items: center; gap: 1rem; }
  .timeline-progression::before { display: none; }
  .hero-title { font-size: clamp(1.6rem, 7vw, 2.25rem); }
  .mobile-nav-panel { width: 100%; max-width: 100%; }
}

/* ---------------------------------------------------------------------------
   35. INSIGHT DETAIL VIEWS (EDITORIAL)
--------------------------------------------------------------------------- */
.insight-detail {
  padding: 10rem 0 6rem;
}
.insight-header {
  margin-bottom: 3.5rem;
  text-align: center;
}
.insight-header .category-pill {
  display: inline-block;
  padding: 0.35rem 1.25rem;
  background: transparent;
  color: var(--teal);
  border: 1px solid var(--color-border-teal);
  border-radius: var(--radius-full);
  font-family: var(--font-secondary);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
}
.insight-header h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.04em;
  margin-bottom: 2.5rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.insight-meta {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 3rem;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: 1.5rem 0;
  max-width: 720px;
  margin: 0 auto;
}
.meta-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.375rem;
}
.meta-label {
  font-family: var(--font-secondary);
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
}
.meta-value {
  font-family: var(--font-secondary);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text-dark);
}
.insight-body {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--color-text);
  max-width: 680px;
  margin: 4rem auto 5rem;
}
.insight-body p {
  margin-bottom: 2rem;
}
.insight-body h2 {
  font-size: 2rem;
  color: var(--color-text-dark);
  margin: 4rem 0 1.5rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.2;
}
.insight-body h3 {
  font-size: 1.5rem;
  color: var(--color-text-dark);
  margin: 3rem 0 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.insight-body ul, .insight-body ol {
  margin-bottom: 2rem;
  padding-left: 1.5rem;
}
.insight-body li {
  margin-bottom: 0.75rem;
}
.insight-body blockquote {
  position: relative;
  border-left: none;
  padding: 2rem 2rem 2rem 3rem;
  margin: 3.5rem -2rem;
  font-style: italic;
  font-size: 1.5rem;
  line-height: 1.5;
  color: var(--color-text-dark);
  background: var(--bg-subtle);
  border-radius: var(--radius-lg);
  box-shadow: inset 4px 0 0 var(--teal);
}
.insight-body blockquote::before {
  content: '“';
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-size: 4rem;
  line-height: 1;
  color: var(--teal-a20);
  font-family: serif;
}
.insight-footer {
  border-top: 1px solid var(--color-border);
  padding-top: 4rem;
  text-align: center;
}

@media (max-width: 768px) {
  .insight-detail {
    padding: 8rem 0 6rem;
  }
  .insight-body blockquote {
    margin: 2.5rem 0;
    padding: 1.5rem 1.5rem 1.5rem 2.5rem;
    font-size: 1.25rem;
  }
  .insight-meta {
    gap: 1.5rem;
    flex-wrap: wrap;
  }
}

.social-icons-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.social-icon-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--color-border);
  color: var(--color-text-dark);
  transition: all 0.2s var(--ease);
  background: transparent;
}

.social-icon-link:hover {
  border-color: var(--teal);
  color: var(--teal);
  background: var(--teal-a08);
  transform: translateY(-2px);
}

.social-icon-link svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: currentColor;
}

.legal-content h1, .legal-content h2, .legal-content h3, .legal-content h4 {
  color: var(--color-text-dark);
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-weight: 700;
  font-family: var(--font);
}
.legal-content h2 {
  font-size: 1.5rem;
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 0.5rem;
}
.legal-content h3 {
  font-size: 1.25rem;
}
.legal-content h4 {
  font-size: 1.05rem;
}
.legal-content p {
  margin-bottom: 1.25rem;
  color: var(--color-text-muted);
  line-height: 1.8;
}
.legal-content ul, .legal-content ol {
  margin-bottom: 1.25rem;
  padding-left: 1.5rem;
  color: var(--color-text-muted);
  line-height: 1.8;
}
.legal-content li {
  margin-bottom: 0.5rem;
}

/* ---------------------------------------------------------------------------
   33. COOKIE CONSENT BANNER
--------------------------------------------------------------------------- */
.cookie-banner-toast {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  z-index: 9999;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1.5px solid var(--border-teal);
  box-shadow: 0 12px 40px rgba(0, 128, 128, 0.12);
  border-radius: var(--radius-sm);
  padding: 1.25rem;
  width: calc(100% - 4rem);
  max-w: 420px;
  transform: translateY(100px);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.4s var(--ease), opacity 0.4s var(--ease);
}

.cookie-banner-toast.show {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.cookie-banner-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.cookie-banner-content p {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  line-height: 1.5;
  margin: 0;
}

.cookie-banner-content a {
  color: var(--teal);
  font-weight: 600;
  text-decoration: underline;
}

.cookie-banner-content .btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.8125rem;
  flex-shrink: 0;
}

@media (max-width: 480px) {
  .cookie-banner-toast {
    left: 1rem;
    bottom: 1rem;
    width: calc(100% - 2rem);
  }
  .cookie-banner-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  .cookie-banner-content .btn-sm {
    width: 100%;
  }
}

/* ---------------------------------------------------------------------------
   34. PREMIUM BRAND POLISH DEFINITIONS
--------------------------------------------------------------------------- */
.hero-title, .heading-large, .heading-medium {
  color: var(--color-text-dark);
}

.reveal-text, .reveal-text-stagger,
.reveal-text .word, .reveal-text-stagger .word,
.reveal-text .word span, .reveal-text-stagger .word span {
  background: none !important;
  -webkit-background-clip: initial !important;
  -webkit-text-fill-color: initial !important;
}

.cta-black .hero-title, 
.cta-black .heading-large, 
.cta-black .heading-medium,
.cta-black h2,
.cta-black h3 {
  background: none !important;
  -webkit-background-clip: initial !important;
  -webkit-text-fill-color: initial !important;
  color: #FFFFFF !important;
}



.ambient-glow {
  position: absolute;
  width: 45vw;
  height: 45vw;
  max-width: 600px;
  max-height: 600px;
  background: radial-gradient(circle, var(--teal-a08) 0%, transparent 80%);
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.25;
  border-radius: 50%;
}

.parallax-glow {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.section-divider {
  width: 100%;
  height: 1.5px;
  background: linear-gradient(90deg, transparent, var(--color-border), transparent);
  margin: var(--spacing-lg) 0;
  border: none;
}

/* Card hover enhancements */
.product-card, .eco-card, .solution-card {
  position: relative;
  transition: border-color 0.4s var(--ease), box-shadow 0.4s var(--ease), transform 0.4s var(--ease);
}

.product-card:hover, .eco-card:hover, .solution-card:hover {
  border-color: var(--color-border-teal) !important;
  box-shadow: var(--shadow-lg), var(--shadow-teal-sm) !important;
  transform: translateY(-2.5px);
}

/* ---------------------------------------------------------------------------
   35. BENTO GRID LAYOUT
--------------------------------------------------------------------------- */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

@media (max-width: 900px) {
  .bento-grid {
    grid-template-columns: 1fr;
  }
  .bento-hero {
    grid-column: span 1 !important;
    grid-row: span 1 !important;
  }
}

/* ---------------------------------------------------------------------------
   36. PROCESS GRID
--------------------------------------------------------------------------- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

@media (max-width: 900px) {
  .process-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .process-step {
    border-bottom: 1px dashed var(--color-border);
    padding-bottom: 1.5rem;
  }
  .process-step:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
}

/* ---------------------------------------------------------------------------
   37. ACCORDION PANELS
--------------------------------------------------------------------------- */
.accordion-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.accordion-item {
  background: var(--bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.accordion-item.active {
  border-color: rgba(0, 128, 128, 0.22);
  box-shadow: 0 12px 30px rgba(0, 128, 128, 0.05);
}

.accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2rem;
  cursor: pointer;
  user-select: none;
  background: transparent;
  transition: background 0.3s var(--ease);
}

.accordion-header:hover {
  background: rgba(0, 128, 128, 0.02);
}

.accordion-header-content {
  flex: 1;
  padding-right: 1.5rem;
}

.accordion-header-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text-dark);
  margin: 0 0 0.25rem 0;
}

.accordion-header-content h4 {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text-muted);
  margin: 0;
}

.accordion-arrow {
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  color: var(--color-text-muted);
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), color 0.4s var(--ease);
  flex-shrink: 0;
}

.accordion-arrow svg {
  width: 1rem;
  height: 1rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.accordion-item.active .accordion-arrow {
  border-color: rgba(0, 128, 128, 0.22);
  color: var(--teal);
}

.accordion-body {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  padding: 0 2rem;
  transition: max-height 0.4s var(--ease), opacity 0.4s var(--ease), padding-top 0.4s var(--ease), padding-bottom 0.4s var(--ease);
}

.accordion-item.active .accordion-body {
  padding-top: 1.5rem;
  padding-bottom: 2rem;
  border-top: 1px dashed var(--color-border);
}

/* ---------------------------------------------------------------------------
   38. FOOTER WATERMARK
--------------------------------------------------------------------------- */
.footer-watermark {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 3.5rem;
  user-select: none;
  pointer-events: none;
}

.footer-watermark img {
  max-width: 320px;
  width: 45%;
  height: auto;
  opacity: 0.025;
  filter: grayscale(100%) brightness(0.85);
}



/* ---------------------------------------------------------------------------
   39. DYNAMIC SPEC MODALS
--------------------------------------------------------------------------- */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(6, 38, 38, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease);
  padding: 1.5rem;
}

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

.modal-card {
  background: var(--bg);
  border: 1px solid var(--border-teal);
  border-radius: var(--radius);
  max-width: 540px;
  width: 100%;
  padding: 2.5rem;
  box-shadow: 0 20px 50px rgba(0, 128, 128, 0.08);
  position: relative;
  transform: scale(0.95) translateY(10px);
  transition: transform 0.3s var(--ease);
}

.modal-overlay.active .modal-card {
  transform: scale(1) translateY(0);
}

.modal-close-btn {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: transparent;
  border: none;
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  color: var(--color-text-muted);
  transition: color 0.2s var(--ease);
}

.modal-close-btn:hover {
  color: var(--color-text-dark);
}

.modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 1.5rem;
}

/* ---------------------------------------------------------------------------
   40. SLIDING CAREERS DRAWER
--------------------------------------------------------------------------- */
.drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(6, 38, 38, 0.3);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 1999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease);
}

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

.side-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 480px;
  background: var(--bg);
  border-left: 1px solid var(--border-teal);
  z-index: 2000;
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.05);
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  padding: 3rem 2.5rem;
}

.side-drawer.active {
  transform: translateX(0);
}

.drawer-close-btn {
  align-self: flex-start;
  background: transparent;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--color-text-muted);
  transition: color 0.2s var(--ease);
  margin-bottom: 2rem;
  padding: 0;
}

.drawer-close-btn:hover {
  color: var(--color-text-dark);
}

.role-pill {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: var(--teal-a08);
  color: var(--teal);
  font-weight: 700;
  font-size: 0.75rem;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
  width: max-content;
}

/* ---------------------------------------------------------------------------
   41. UI PLAYGROUND
--------------------------------------------------------------------------- */
.playground-card {
  background: var(--bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.playground-card:hover {
  border-color: rgba(0, 128, 128, 0.22);
  box-shadow: 0 12px 30px rgba(0, 128, 128, 0.05);
}

.playground-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 2rem;
}

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

.playground-controls {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.control-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.control-group label {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text-muted);
}

.color-swatches {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.swatch {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s var(--ease), border-color 0.2s var(--ease);
}

.swatch.active {
  border-color: var(--color-text-dark);
  transform: scale(1.1);
}

.range-slider {
  width: 100%;
  height: 4px;
  border-radius: 2px;
  background: var(--color-border);
  outline: none;
  -webkit-appearance: none;
  accent-color: var(--teal);
}

.playground-preview {
  background: var(--bg-subtle);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 250px;
  transition: background 0.3s var(--ease);
}

.preview-widget {
  background: var(--bg);
  border: 1.5px solid var(--color-border);
  padding: 2rem;
  border-radius: var(--radius-sm);
  width: 100%;
  max-width: 280px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  transition: border-radius 0.3s var(--ease), border-color 0.3s var(--ease), background 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

/* Ultimate Text Gradient Overrides (Order of appearance and higher specificity overrides reveal-text resets) */
.text-gradient,
.text-gradient .word span,
.reveal-text-stagger .word span.text-gradient,
.reveal-text-stagger .word .text-gradient {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-light) 100%) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  display: inline-block !important;
}


/* =============================================================================
   ENHANCEMENT LAYER — Purely additive polish. No existing rules overridden.
============================================================================= */

/* ── 1. Text selection colour ─────────────────────────────────────────── */
::selection {
  background: var(--teal-a20);
  color: var(--teal-dark);
}

/* ── 2. Smoother anchor underline on hover for prose links ────────────── */
.body-text a,
.body-text-large a {
  color: var(--teal);
  text-underline-offset: 3px;
  text-decoration-color: var(--teal-a20);
  text-decoration-thickness: 1px;
  transition: text-decoration-color 0.2s var(--ease), color 0.2s var(--ease);
}
.body-text a:hover,
.body-text-large a:hover {
  text-decoration-color: var(--teal);
}

/* ── 3. Card depth enhancement — subtle inner highlight ─────────────── */
.eco-card,
.product-card,
.solution-card,
.news-card,
.featured-article,
.stat-item {
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}

/* ── 4. Slightly warmer hover box-shadow for light mode cards ─────────── */
@media (prefers-color-scheme: light) {
  .eco-card:hover,
  .product-card:hover {
    box-shadow: 0 12px 48px rgba(0,128,128,0.10), 0 2px 8px rgba(0,128,128,0.06);
  }
}

/* ── 5. Shimmer sweep on primary CTA button ──────────────────────────── */
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    transparent 25%,
    rgba(255,255,255,0.15) 50%,
    transparent 75%
  );
  background-size: 200% 100%;
  background-position: -200% center;
  transition: background-position 0.6s var(--ease);
  pointer-events: none;
  border-radius: inherit;
}
.btn-primary:hover::after {
  background-position: 200% center;
}

/* ── 6. Section label — subtle teal underline accent ─────────────────── */
.section-label::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--teal);
  margin-top: 6px;
  border-radius: var(--radius-full);
  opacity: 0.5;
}

/* ── 7. Ecosystem tags — subtle colour pop on hover ──────────────────── */
.ecosystem-tag {
  transition: border-color 0.2s var(--ease), color 0.2s var(--ease), background 0.2s var(--ease);
}
.ecosystem-tag:hover {
  border-color: var(--color-border-teal);
  color: var(--teal);
  background: var(--teal-a08);
}

/* ── 8. Smooth focus-visible ring (accessibility + aesthetics) ────────── */
:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

/* ── 9. Statistic items — number counter glow ────────────────────────── */
.stat-number {
  text-shadow: 0 0 20px rgba(0,128,128,0.15);
}

/* ── 10. Heading large & medium — refined letter-spacing rhythm ───────── */
.heading-large {
  word-spacing: -0.01em;
}
.heading-medium {
  word-spacing: -0.005em;
}

/* ── 11. Hero badge — soft ambient glow ──────────────────────────────── */
.hero-badge {
  box-shadow: 0 0 16px rgba(0,128,128,0.08);
}

/* ── 12. Richer blob background for .section-dark hero ───────────────── */
.hero.section-dark::before {
  background: rgba(0,128,128,0.09);
}

/* ── 13. News card hover — tinted left border accent ─────────────────── */
.news-card {
  border-left: 2px solid transparent;
  transition: border-color 0.2s var(--ease), padding-left 0.2s var(--ease);
}
.news-card:hover {
  border-left-color: var(--teal);
}

/* ── 14. Nav link active state — bolder weight ───────────────────────── */
.nav-link.active {
  letter-spacing: -0.01em;
}

/* ── 15. Section separators — faint teal gradient divider ────────────── */
.section-light + .section-dark,
.section-dark + .section-light,
.section-light + .cta-black,
.section-dark + .cta-black {
  border-top: 1px solid var(--color-border);
}

/* ── 16. Smoother body transition on theme switch ────────────────────── */
body {
  transition: background-color 0.4s var(--ease), color 0.4s var(--ease);
}

/* ── 17. Product card category pill — refined spacing ────────────────── */
.product-category {
  letter-spacing: 0.12em;
}

/* ── 18. Scroll indicator line — more vivid ──────────────────────────── */
.scroll-line {
  background: linear-gradient(to bottom, var(--teal), rgba(0,128,128,0));
  opacity: 0.7;
}

/* ── 19. Footer links — smooth underline on hover ────────────────────── */
.site-footer a {
  transition: color 0.2s var(--ease), opacity 0.2s var(--ease);
}
.site-footer a:hover {
  color: var(--teal);
  opacity: 1;
}

/* ── 20. Solution card — left accent border on hover ────────────────── */
.solution-card {
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease), transform 0.25s var(--ease);
}
.solution-card.light:hover {
  border-color: var(--color-border-teal);
  box-shadow: var(--shadow-teal);
  transform: translateY(-3px);
}

/* ── 21. Numbered item line — grow left accent on hover ──────────────── */
.numbered-item {
  position: relative;
}
.numbered-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--teal);
  transform: scaleY(0);
  transform-origin: center;
  transition: transform 0.3s var(--ease);
  border-radius: var(--radius-full);
}
.numbered-item:hover::before {
  transform: scaleY(1);
}

/* ── 22. Accordion items — smooth border accent ──────────────────────── */
.accordion-item {
  transition: box-shadow 0.3s var(--ease);
}
.accordion-item.is-active {
  box-shadow: 0 4px 24px rgba(0,128,128,0.06);
}


/* ── 24. Eco-link arrow — bolder transition ──────────────────────────── */
.eco-link {
  position: relative;
}
.eco-link::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--teal);
  transition: width 0.3s var(--ease);
}
.eco-link:hover::after {
  width: 100%;
}

/* ── 25. Scroll progress bar — taller, more visible ─────────────────── */
.scroll-progress {
  height: 2.5px;
  background: linear-gradient(90deg, var(--teal-dark), var(--teal), var(--teal-light));
}
}

/* ---------------------------------------------------------------------------
   36. LEGAL CONTENT (PRIVACY, TERMS, COOKIES)
--------------------------------------------------------------------------- */
.legal-content {
  font-family: var(--font);
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--color-text);
}
.legal-content p { margin-bottom: 1.5rem; }
.legal-content h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-text-dark);
  margin: 3rem 0 1.5rem;
}
.legal-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-text-dark);
  margin: 2rem 0 1rem;
}
.legal-content ul, .legal-content ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}
.legal-content li { margin-bottom: 0.5rem; }
.legal-content a {
  color: var(--teal);
  text-decoration: underline;
  text-decoration-color: var(--color-border-teal);
  text-underline-offset: 4px;
}
.legal-content a:hover {
  text-decoration-color: var(--teal);
}
