/* ══════════════════════════════════════
   PIXORA SA — Home Page Specific Styles
   Extracted from index.html for cleanup.
   ══════════════════════════════════════ */

/* Base reset — index.html only loads this file, not styles.css */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  background: #0b1220 !important;
}

html, body {
  overflow-x: hidden;
}

body {
  font-family: 'Manrope', system-ui, sans-serif;
  background: #0b1220 !important;
  color: #eaf2ff;
  line-height: 1.6;
}

#spotlight {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background: radial-gradient(600px circle at var(--mx, 50%) var(--my, 50%),
      rgba(20, 184, 166, 0.2) 0%,
      rgba(59, 130, 246, 0.1) 35%,
      transparent 65%);
  transition: background 0.1s;
}

#hero-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

#grid-overlay {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(56, 189, 248, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(56, 189, 248, 0.08) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}

@media (max-width: 900px) {
  #hero-canvas,
  #grid-overlay,
  #spotlight,
  #floating-card {
    display: none !important;
  }

  .site-header,
  .marquee-wrap,
  .teaser-card,
  footer {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .hero-badge,
  .hero-h1 .word,
  .gradient-word,
  .hero-sub,
  .hero-actions,
  .hero-stats {
    animation: none !important;
  }

  .marquee-track {
    animation: none;
    transform: none;
  }

  .teasers,
  footer {
    content-visibility: auto;
    contain-intrinsic-size: 1px 1000px;
  }
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: rgba(10, 18, 34, 0.84);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(20, 184, 166, 0.28);
}

.nav {
  max-width: 1180px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 480px) {
  .nav {
    padding: 12px 16px;
  }
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #eaf2ff;
}

.logo-mark {
  width: 40px;
  height: 40px;
  border-radius: 8px;
}

@media (max-width: 480px) {
  .logo-mark {
    width: 32px;
    height: 32px;
  }
}

.logo-text {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
}

@media (max-width: 480px) {
  .logo-text {
    font-size: 0.95rem;
  }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  color: rgba(226, 232, 240, 0.78);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: #eaf2ff;
}

.nav-cta {
  padding: 9px 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, #0f172a, #14b8a6);
  color: #fff !important;
  font-weight: 600 !important;
  font-size: 0.88rem !important;
  transition: opacity 0.2s, transform 0.2s !important;
}

.nav-cta:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 12px;
  margin-right: -12px;
  z-index: 210;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: #f5f5f5;
  border-radius: 2px;
  display: block;
  transition: all 0.3s;
}

.dark-toggle {
  background: rgba(56, 189, 248, 0.08);
  border: 1px solid rgba(56, 189, 248, 0.2);
  cursor: pointer;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: rgba(247, 243, 234, 0.72);
  font-size: 1rem;
  flex-shrink: 0;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.dark-toggle:hover {
  background: rgba(20, 184, 166, 0.22);
  border-color: rgba(20, 184, 166, 0.36);
  transform: translateY(-1px);
}

.dark-toggle__icon {
  width: 20px;
  height: 20px;
  display: block;
  position: relative;
}

.dark-toggle__icon::before,
.dark-toggle__icon::after {
  content: '';
  position: absolute;
  border-radius: 999px;
  transition: all 0.35s cubic-bezier(0.77, 0, 0.18, 1);
}

.dark-toggle__icon::before {
  inset: 1px;
  background: linear-gradient(135deg, #7dd3fc 0%, #14b8a6 100%);
  box-shadow: 0 0 16px rgba(20, 184, 166, 0.35);
}

.dark-toggle__icon::after {
  width: 11px;
  height: 11px;
  top: 1px;
  right: 0;
  background: #0b1220;
}

html:not(.dark-mode) .dark-toggle__icon::after {
  width: 6px;
  height: 6px;
  top: 3px;
  right: 3px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.28);
}

.hero-page {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  padding: 100px 28px 60px;
}

@media (max-width: 768px) {
  .hero-page {
    padding: 80px 20px 40px;
    min-height: auto;
  }
}

@media (max-width: 480px) {
  .hero-page {
    padding: 60px 16px 32px;
  }
}

.hero-center {
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
}

.consent-banner {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 24px;
  z-index: 9999;
  background: rgba(20, 18, 16, 0.96);
  border: 1px solid rgba(56, 189, 248, 0.35);
  padding: 12px 16px;
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(2, 6, 23, 0.6);
}

#cookie-consent[hidden],
.consent-banner[hidden] {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.consent-inner {
  display: flex;
  gap: 16px;
  align-items: center;
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
}

.consent-copy {
  margin: 0;
  color: rgba(247, 243, 234, 0.78);
  font-size: 0.95rem;
  flex: 1;
}

.consent-actions {
  display: flex;
  gap: 10px;
}

@media (max-width: 640px) {
  .consent-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .consent-actions {
    width: 100%;
  }

  .consent-actions .btn {
    flex: 1;
    justify-content: center;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 999px;
  background: rgba(20, 184, 166, 0.14);
  border: 1px solid rgba(56, 189, 248, 0.38);
  color: #9ddff3;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 32px;
  animation: badge-glow 3s ease-in-out infinite alternate;
}

@keyframes badge-glow {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }

  100% {
    box-shadow: 0 0 20px 4px rgba(255, 255, 255, 0.25);
  }
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #14b8a6;
  box-shadow: 0 0 10px rgba(20, 184, 166, 0.8);
  animation: blink 2s step-end infinite;
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}

.hero-h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.8rem, 5vw + 0.5rem, 6rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #f5f5f5;
  margin-bottom: 24px;
  text-wrap: balance;
}

@media (max-width: 480px) {
  .hero-h1 {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    margin-bottom: 16px;
  }
}

.hero-h1 .line {
  display: block;
  overflow: hidden;
}

.hero-h1 .word {
  display: inline-block;
  animation: word-rise 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-h1 .word:nth-child(1) {
  animation-delay: 0.1s;
}

.hero-h1 .word:nth-child(2) {
  animation-delay: 0.2s;
}

.hero-h1 .word:nth-child(3) {
  animation-delay: 0.3s;
}

.hero-h1 .line:nth-child(2) .word {
  animation-delay: 0.35s;
}

@keyframes word-rise {
  from {
    opacity: 0;
    transform: translateY(60px) skewX(-4deg);
  }

  to {
    opacity: 1;
    transform: translateY(0) skewX(0deg);
  }
}

.gradient-word {
  background: linear-gradient(135deg, #8c8c8c 0%, #d9d9d9 50%, #8c8c8c 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer-text 4s linear infinite;
}

@keyframes shimmer-text {
  0% {
    background-position: 0% 50%;
  }

  100% {
    background-position: 200% 50%;
  }
}

.italic-word {
  font-style: italic;
  color: rgba(245, 245, 245, 0.75);
}

.hero-sub {
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.2rem);
  color: rgba(245, 245, 245, 0.55);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.7;
  animation: fade-up 1s 0.5s ease both;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

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

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fade-up 1s 0.65s ease both;
}

.btn-primary-3d {
  position: relative;
  padding: 14px 32px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  color: #fff;
  text-decoration: none;
  background: linear-gradient(135deg, #0f172a 0%, #14b8a6 100%);
  border: none;
  cursor: pointer;
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.25s;
  box-shadow: 0 8px 28px rgba(20, 184, 166, 0.32), 0 1px 0 rgba(255, 255, 255, 0.1) inset;
}

.btn-primary-3d:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 14px 42px rgba(20, 184, 166, 0.45), 0 1px 0 rgba(255, 255, 255, 0.1) inset;
}

.btn-primary-3d:active {
  transform: translateY(0) scale(0.98);
}

.btn-outline-3d {
  padding: 13px 32px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  color: rgba(245, 245, 245, 0.8);
  text-decoration: none;
  background: rgba(56, 189, 248, 0.1);
  border: 1px solid rgba(56, 189, 248, 0.34);
  transition: border-color 0.25s, color 0.25s, transform 0.25s, background 0.25s;
}

.btn-outline-3d:hover {
  border-color: rgba(56, 189, 248, 0.62);
  color: #fff;
  background: rgba(56, 189, 248, 0.2);
  transform: translateY(-2px);
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-top: 64px;
  animation: fade-up 1s 0.8s ease both;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .hero-stats {
    margin-top: 40px;
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .hero-stats {
    flex-direction: column;
    gap: 0;
    margin-top: 32px;
  }
}

.hero-stat {
  padding: 20px 36px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  position: relative;
}

@media (max-width: 768px) {
  .hero-stat {
    padding: 16px 24px;
  }
}

@media (max-width: 480px) {
  .hero-stat {
    padding: 16px 20px;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }
  
  .hero-stat:last-child {
    border-bottom: none;
  }
}

.hero-stat:last-child {
  border-right: none;
}

.hero-stat-value {
  font-family: 'Fraunces', serif;
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(135deg, #8c8c8c, #d9d9d9);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.1;
}

@media (max-width: 768px) {
  .hero-stat-value {
    font-size: 1.6rem;
  }
}

@media (max-width: 480px) {
  .hero-stat-value {
    font-size: 1.4rem;
  }
}

.hero-stat-label {
  font-size: 0.8rem;
  color: rgba(245, 245, 245, 0.45);
  margin-top: 4px;
  letter-spacing: 0.04em;
}

#floating-card {
  position: fixed;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  width: 260px;
  background: rgba(18, 31, 49, 0.8);
  border: 1px solid rgba(56, 189, 248, 0.28);
  border-radius: 20px;
  padding: 22px;
  backdrop-filter: blur(24px);
  z-index: 10;
  transition: opacity 0.3s ease;
  animation: card-float 6s ease-in-out infinite;
  box-shadow: 0 20px 80px rgba(5, 10, 20, 0.45), 0 0 0 1px rgba(56, 189, 248, 0.1) inset;
}

@keyframes card-float {

  0%,
  100% {
    transform: translateY(-50%) translateY(0);
  }

  50% {
    transform: translateY(-50%) translateY(-12px);
  }
}

.fc-top {
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
}

.fc-pill {
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
}

.fc-pill--accent {
  background: rgba(20, 184, 166, 0.2);
  color: #9ddff3;
}

.fc-pill--cyan {
  background: rgba(59, 130, 246, 0.18);
  color: #bfdbfe;
}

.fc-h3 {
  font-family: 'Fraunces', serif;
  font-size: 0.95rem;
  color: #f5f5f5;
  margin-bottom: 12px;
}

.fc-list {
  list-style: none;
  display: grid;
  gap: 8px;
}

.fc-list li {
  font-size: 0.8rem;
  color: rgba(245, 245, 245, 0.55);
  display: flex;
  align-items: center;
  gap: 8px;
}

.fc-list li::before {
  content: '▸';
  color: #d9d9d9;
  font-size: 0.7rem;
}

.fc-bottom {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.fc-bottom span {
  font-size: 0.75rem;
  color: rgba(245, 245, 245, 0.35);
}

.fc-bottom strong {
  color: #8c8c8c;
  font-size: 1.1rem;
  font-family: 'Fraunces', serif;
}

@media (max-width: 1100px) {
  #floating-card {
    display: none;
  }
}

.marquee-wrap {
  position: relative;
  z-index: 3;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(10, 10, 10, 0.6);
  backdrop-filter: blur(10px);
  padding: 14px 0;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 28s linear infinite;
}

@keyframes marquee-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.marquee-track:hover {
  animation-play-state: paused;
}

.marquee-item {
  padding: 0 32px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245, 245, 245, 0.35);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 20px;
}

.marquee-item::after {
  content: '✦';
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.6rem;
}

.teasers {
  position: relative;
  z-index: 3;
  max-width: 1180px;
  margin: 0 auto;
  padding: 80px 24px 120px;
}

@media (max-width: 768px) {
  .teasers {
    padding: 60px 20px 80px;
  }
}

@media (max-width: 480px) {
  .teasers {
    padding: 40px 16px 60px;
  }
}

.teasers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

@media (max-width: 640px) {
  .teasers-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.teaser-card {
  position: relative;
  background: rgba(18, 31, 49, 0.74);
  border: 1px solid rgba(56, 189, 248, 0.22);
  border-radius: 20px;
  padding: 28px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s, background 0.3s;
  display: block;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

@media (max-width: 480px) {
  .teaser-card {
    padding: 20px;
    border-radius: 16px;
  }
}

.teaser-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 0% 0%, rgba(255, 255, 255, 0.08), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
  border-radius: inherit;
}

.teaser-card:hover {
  border-color: rgba(56, 189, 248, 0.5);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(5, 10, 20, 0.5);
  background: rgba(24, 40, 64, 0.9);
}

.teaser-card:hover::before {
  opacity: 1;
}

.teaser-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  color: #8c8c8c;
  transition: background 0.3s, transform 0.3s;
}

.teaser-card:hover .teaser-icon {
  background: rgba(255, 255, 255, 0.22);
  transform: scale(1.1) rotate(5deg);
}

.teaser-icon svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.teaser-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 8px;
}

.teaser-card h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.15rem;
  color: #f5f5f5;
  margin-bottom: 8px;
  font-weight: 600;
}

.teaser-card p {
  font-size: 0.87rem;
  color: rgba(245, 245, 245, 0.45);
  line-height: 1.6;
  margin-bottom: 20px;
}

.teaser-link {
  font-size: 0.82rem;
  font-weight: 600;
  color: #8c8c8c;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}

.teaser-card:hover .teaser-link {
  gap: 10px;
}

.teaser-link svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.section-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-label::before {
  content: '';
  width: 24px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6));
}

.section-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.2), transparent);
}

.teasers-heading {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: #f5f5f5;
  margin-bottom: 40px;
  font-weight: 600;
}

.teasers-heading span {
  color: rgba(245, 245, 245, 0.35);
  font-style: italic;
}

footer {
  position: relative;
  z-index: 3;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(16, 30, 49, 0.82);
  backdrop-filter: blur(10px);
}

.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 40px 24px 60px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}

@media (max-width: 800px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 32px;
  }
  .footer-brand p {
    margin-left: auto;
    margin-right: auto;
  }
  .social-icons {
    justify-content: center;
  }
}

.footer-brand p {
  font-size: 0.87rem;
  color: rgba(245, 245, 245, 0.4);
  margin-top: 10px;
  max-width: 260px;
  line-height: 1.6;
}

.social-icons {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: grid;
  place-items: center;
  color: rgba(245, 245, 245, 0.6);
  transition: background 0.2s, color 0.2s, transform 0.2s;
}

.social-icon:hover {
  background: rgba(255, 255, 255, 0.25);
  color: #f5f5f5;
  transform: translateY(-2px);
}

.social-icon svg {
  width: 16px;
  height: 16px;
}

footer h4 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(245, 245, 245, 0.5);
  margin-bottom: 14px;
}

.footer-col a {
  display: block;
  font-size: 0.87rem;
  color: rgba(245, 245, 245, 0.55);
  text-decoration: none;
  margin-bottom: 8px;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: #14b8a6;
}

.footer-bottom {
  max-width: 1180px;
  margin: 0 auto;
  padding: 20px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.8rem;
  color: rgba(245, 245, 245, 0.3);
}

@media (max-width: 860px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 65px;
    right: 20px;
    background: rgba(10, 18, 34, 0.95);
    border: 1px solid rgba(56, 189, 248, 0.3);
    border-radius: 16px;
    flex-direction: column;
    padding: 16px;
    display: none;
    backdrop-filter: blur(24px);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.5);
  }

  .nav-links.is-open {
    display: flex;
    z-index: 205;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  /* Increase touch target for nav links */
  .nav-links a {
    padding: 12px 16px;
    width: 100%;
    display: block;
    font-size: 1rem;
  }

  .nav-cta {
    margin-top: 8px;
    text-align: center;
  }
}

html:not(.dark-mode) {
  background: #e3edf4 !important;
}

html:not(.dark-mode) body {
  background: #e3edf4 !important;
  color: #10233a;
}

html:not(.dark-mode) #spotlight {
  background: radial-gradient(600px circle at var(--mx, 50%) var(--my, 50%),
      rgba(20, 184, 166, 0.08) 0%,
      rgba(59, 130, 246, 0.05) 35%,
      transparent 65%);
}

html:not(.dark-mode) #grid-overlay {
  background-image:
    linear-gradient(rgba(56, 189, 248, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(56, 189, 248, 0.06) 1px, transparent 1px);
}

html:not(.dark-mode) .site-header {
  background: rgba(227, 237, 244, 0.86);
  border-bottom: 1px solid rgba(56, 189, 248, 0.24);
}

html:not(.dark-mode) .logo,
html:not(.dark-mode) .logo-text,
html:not(.dark-mode) .hero-h1,
html:not(.dark-mode) .teasers-heading,
html:not(.dark-mode) .teaser-card h3,
html:not(.dark-mode) .fc-h3,
html:not(.dark-mode) footer .logo-text {
  color: #0f172a;
}

html:not(.dark-mode) .nav-links a,
html:not(.dark-mode) .dark-toggle,
html:not(.dark-mode) .hero-sub,
html:not(.dark-mode) .teaser-card p,
html:not(.dark-mode) .footer-brand p,
html:not(.dark-mode) .footer-col a,
html:not(.dark-mode) .footer-bottom {
  color: rgba(15, 23, 42, 0.72);
}

html:not(.dark-mode) .nav-links a:hover,
html:not(.dark-mode) .footer-col a:hover {
  color: #0f172a;
}

html:not(.dark-mode) .nav-toggle span {
  background: #10233a;
}

@media (max-width: 860px) {
  html:not(.dark-mode) .nav-links {
    background: rgba(243, 248, 252, 0.97);
    border-color: rgba(14, 116, 144, 0.2);
    box-shadow: 0 12px 40px rgba(15, 23, 42, 0.1);
    backdrop-filter: blur(16px);
  }

  html:not(.dark-mode) .nav-links a {
    color: rgba(15, 23, 42, 0.8);
  }

  html:not(.dark-mode) .nav-links a:hover {
    color: #0f172a;
  }
}

html:not(.dark-mode) .dark-toggle:hover {
  background: rgba(56, 189, 248, 0.12);
}

html:not(.dark-mode) .dark-toggle {
  background: rgba(56, 189, 248, 0.08);
  border-color: rgba(56, 189, 248, 0.2);
}

html:not(.dark-mode) .gradient-word,
html:not(.dark-mode) .hero-stat-value,
html:not(.dark-mode) .teaser-link,
html:not(.dark-mode) .fc-bottom strong {
  background: linear-gradient(135deg, #0f172a 0%, #14b8a6 55%, #38bdf8 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

html:not(.dark-mode) .italic-word,
html:not(.dark-mode) .hero-stat-label,
html:not(.dark-mode) .marquee-item,
html:not(.dark-mode) .teasers-heading span,
html:not(.dark-mode) .fc-list li,
html:not(.dark-mode) .fc-bottom span {
  color: rgba(15, 23, 42, 0.56);
}

html:not(.dark-mode) .hero-badge,
html:not(.dark-mode) .fc-pill--accent {
  background: rgba(20, 184, 166, 0.12);
  border-color: rgba(20, 184, 166, 0.28);
  color: #0f766e;
}

html:not(.dark-mode) .hero-badge::before {
  background: #14b8a6;
  box-shadow: 0 0 10px rgba(20, 184, 166, 0.35);
}

html:not(.dark-mode) .fc-pill--cyan {
  background: rgba(56, 189, 248, 0.12);
  color: #0369a1;
}

html:not(.dark-mode) .btn-outline-3d {
  color: #10233a;
  background: rgba(56, 189, 248, 0.08);
  border-color: rgba(56, 189, 248, 0.26);
}

html:not(.dark-mode) .btn-outline-3d:hover {
  background: rgba(56, 189, 248, 0.16);
  border-color: rgba(56, 189, 248, 0.42);
  color: #0f172a;
}

html:not(.dark-mode) .hero-stat {
  border-color: rgba(56, 189, 248, 0.18);
}

html:not(.dark-mode) #floating-card,
html:not(.dark-mode) .teaser-card,
html:not(.dark-mode) .consent-banner {
  background: rgba(241, 246, 250, 0.82);
  border-color: rgba(56, 189, 248, 0.22);
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.08);
}

html:not(.dark-mode) .fc-list li::before,
html:not(.dark-mode) .section-label,
html:not(.dark-mode) .teaser-label {
  color: #0f766e;
}

html:not(.dark-mode) .section-label::before {
  background: linear-gradient(90deg, transparent, rgba(20, 184, 166, 0.6));
}

html:not(.dark-mode) .section-label::after {
  background: linear-gradient(90deg, rgba(56, 189, 248, 0.24), transparent);
}

html:not(.dark-mode) .teaser-icon,
html:not(.dark-mode) .social-icon {
  background: rgba(56, 189, 248, 0.1);
  border-color: rgba(56, 189, 248, 0.18);
  color: #0891b2;
}

html:not(.dark-mode) .teaser-card:hover,
html:not(.dark-mode) .social-icon:hover {
  background: rgba(56, 189, 248, 0.18);
  border-color: rgba(56, 189, 248, 0.34);
}

html:not(.dark-mode) .marquee-wrap,
html:not(.dark-mode) footer {
  background: rgba(220, 232, 241, 0.86);
  border-color: rgba(56, 189, 248, 0.16);
}

html:not(.dark-mode) .marquee-item::after,
html:not(.dark-mode) footer h4 {
  color: rgba(15, 23, 42, 0.5);
}

html:not(.dark-mode) .footer-bottom {
  border-top: 1px solid rgba(56, 189, 248, 0.12);
}

.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #8c8c8c;
  cursor: pointer;
  display: grid;
  place-items: center;
  z-index: 100;
  opacity: 0;
  transition: opacity 0.3s, transform 0.3s, background 0.2s;
  transform: translateY(16px);
}

@media (max-width: 480px) {
  .back-to-top {
    bottom: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
  }
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.back-to-top:hover {
  background: rgba(255, 255, 255, 0.3);
}

.back-to-top svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.5;
}

#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  z-index: 500;
  pointer-events: none;
}

.scroll-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #111111, #d9d9d9);
  transform-origin: 0 50%;
  transform: scaleX(0);
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

#cookie-consent {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  z-index: 9999;
  background: rgba(24, 24, 24, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  backdrop-filter: blur(20px);
}

#cookie-consent[hidden] {
  display: none !important;
}

#cookie-consent p {
  color: rgba(245, 245, 245, 0.6);
  font-size: 0.88rem;
  flex: 1;
  margin: 0;
}

#cookie-consent .consent-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

#cookie-consent .btn-c {
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 0.83rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
}

#cookie-consent .btn-c--accept {
  background: linear-gradient(135deg, #111111, #d9d9d9);
  color: #fff;
}

#cookie-consent .btn-c--decline {
  background: rgba(255, 255, 255, 0.07);
  color: rgba(245, 245, 245, 0.6);
}


