/* ============================================
   Umar Farook — Premium Personal Brand
   Style: Minimal · Luxury · Editorial · Cinematic
   ============================================ */

/* ----- Reset & Base ----- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --black: #0a0a0a;
  --graphite: #1a1a1a;
  --charcoal: #2a2a2a;
  --white: #f5f5f0;
  --white-muted: rgba(245, 245, 240, 0.6);
  --electric-blue: #4a9eff;
  --cyan: #22d3ee;
  --purple: #8b5cf6;
  --purple-muted: rgba(139, 92, 246, 0.3);
  --glass-bg: rgba(255, 255, 255, 0.04);
  --glass-border: rgba(255, 255, 255, 0.08);
  --radius: 16px;
  --radius-sm: 8px;
  --transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}

html {
  scroll-behavior: smooth;
  background: var(--black);
  color: var(--white);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  overflow-x: hidden;
  background: var(--black);
}

::selection {
  background: rgba(74, 158, 255, 0.3);
  color: var(--white);
}

/* ----- Loading Screen ----- */
#loader {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  background: var(--black);
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

#loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-ring {
  width: 48px;
  height: 48px;
  border: 2px solid rgba(255, 255, 255, 0.06);
  border-top-color: var(--electric-blue);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

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

.loader-text {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--white-muted);
}

/* ----- Section Base ----- */
.section {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 700px;
}

.section:not(.hero):not(.outcomes) {
  overflow: hidden;
}

/* ----- Navigation ----- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 24px;
  transition: transform 0.5s var(--transition);
}

.navbar.hidden {
  transform: translateY(-100%);
}

.nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 24px;
  background: var(--glass-bg);
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  border: 1px solid var(--glass-border);
  border-radius: 100px;
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav-logo-img {
  height: 45px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.nav-link {
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--white-muted);
  text-decoration: none;
  border-radius: 100px;
  transition: color var(--transition), background var(--transition);
}

.nav-link:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

.nav-cta {
  background: var(--white);
  color: var(--black);
  margin-left: 8px;
}

.nav-cta:hover {
  background: var(--electric-blue);
  color: var(--white);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s ease;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 12px;
}

/* ----- Theme Toggle ----- */
.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-left: 0;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  color: var(--white-muted);
  cursor: pointer;
  flex-shrink: 0;
  transition: color var(--transition), background var(--transition), border-color var(--transition), transform var(--transition);
}

.theme-toggle:hover {
  color: var(--white);
  border-color: rgba(74, 158, 255, 0.4);
  background: rgba(74, 158, 255, 0.12);
  transform: scale(1.05);
}

.theme-toggle svg {
  width: 18px;
  height: 18px;
}

.theme-icon-sun {
  display: block;
}

.theme-icon-moon {
  display: none;
}

html.light .theme-icon-sun {
  display: none !important;
}

html.light .theme-icon-moon {
  display: block !important;
}

/* ============ HERO ============ */
.hero {
  min-height: 100vh;
}

/* Video Background */
.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  filter: brightness(1.15) contrast(1.05);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(10, 10, 10, 0.4) 0%,
      rgba(10, 10, 10, 0.15) 40%,
      rgba(10, 10, 10, 0.1) 60%,
      rgba(10, 10, 10, 0.35) 100%);
}

@keyframes auroraDrift {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 0.6;
  }

  50% {
    transform: translate(40px, -30px) scale(1.1);
    opacity: 0.8;
  }

  100% {
    transform: translate(-20px, 20px) scale(0.95);
    opacity: 0.5;
  }
}

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 120px 40px 40px;
  max-width: 1440px;
  margin: 0 auto;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  width: 100%;
  max-width: 800px;
  align-items: center;
}

/* Tag */
.hero-tag-wrap {
  margin-bottom: 24px;
}

.hero-tag {
  display: inline-block;
  padding: 8px 20px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white-muted);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 100px;
  backdrop-filter: blur(12px);
}

/* Title */
.hero-title {
  display: flex;
  flex-direction: column;
  margin-bottom: 32px;
}

.hero-line {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25em;
  line-height: 1.05;
}

.reveal-word {
  display: inline-block;
  font-size: clamp(43px, 7.2vw, 90px);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--white);
  opacity: 0;
  transform: translateY(40px);
  animation: wordReveal 0.8s var(--transition) forwards;
}

.reveal-word:nth-child(1) {
  animation-delay: 0.3s;
}

.reveal-word:nth-child(2) {
  animation-delay: 0.45s;
}

.hero-line:nth-child(2) .reveal-word:nth-child(1) {
  animation-delay: 0.6s;
}

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

.hero-line:nth-child(3) .reveal-word:nth-child(1) {
  animation-delay: 0.9s;
}

.hero-line:nth-child(3) .reveal-word:nth-child(2) {
  animation-delay: 1.05s;
}

.hero-line-accent .reveal-word {
  background: linear-gradient(135deg, var(--electric-blue), var(--cyan), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

/* Reveal Text (tag + description) */
.reveal-text {
  opacity: 0;
  transform: translateY(20px);
  animation: textReveal 0.8s var(--transition) forwards;
}

.hero-tag.reveal-text {
  animation-delay: 0.1s;
}

.hero-desc.reveal-text {
  animation-delay: 1.2s;
}

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

/* Description */
.hero-desc {
  max-width: 560px;
  font-size: 16.5px;
  font-weight: 600;
  line-height: 1.7;
  color: rgba(245, 245, 240, 0.95);
  margin-bottom: 40px;
}

/* Buttons */
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  animation: textReveal 0.8s var(--transition) 1.4s forwards;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: all 0.4s var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--white);
  color: var(--black);
}

.btn-primary:hover {
  background: var(--electric-blue);
  color: var(--white);
  gap: 16px;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(74, 158, 255, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-2px);
}

.portrait-frame {
  position: relative;
  width: 100%;
  max-width: 500px;
  aspect-ratio: 3/4.5;
  mask-image: linear-gradient(to bottom, rgb(255, 249, 216) 55%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, rgb(255, 249, 216) 55%, transparent 100%);
}

.portrait-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: sepia(0.7) saturate(2.5) brightness(0.85) contrast(1.05);
  mix-blend-mode: luminosity;
  will-change: transform;
}

.portrait-rim-light {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(255, 200, 50, 0.1) 0%, transparent 50%),
    linear-gradient(to top, rgba(10, 10, 10, 0.6) 0%, transparent 40%);
  pointer-events: none;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.3;
  animation: textReveal 0.8s var(--transition) 2s forwards;
}

.section-scroll {
  opacity: 0.6;
  animation: none;
}

.scroll-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white-muted);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--white-muted), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {

  0%,
  100% {
    opacity: 0.4;
    transform: scaleY(0.5);
  }

  50% {
    opacity: 1;
    transform: scaleY(1);
  }
}

/* ============ VIDEO SHOWCASE (Section 2) ============ */
.outcomes {
  position: relative;
  overflow: visible;
}

.outcomes::before {
  content: '';
  position: absolute;
  top: -30px;
  left: 0;
  width: 100%;
  height: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  pointer-events: none;
  z-index: 2;
}

.video-showcase {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
}

.showcase-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(1.4) contrast(1.05);
}

.showcase-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 10, 10, 0.55) 30%, rgba(10, 10, 10, 0.15) 60%, rgba(10, 10, 10, 0.35) 100%);
}

.showcase-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.showcase-left {
  flex: 0 0 auto;
  max-width: 400px;
}

.showcase-left .section-number {
  margin-bottom: 16px;
}

.showcase-left .section-title {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 20px;
}

.showcase-left .section-desc {
  font-size: 15px;
  line-height: 1.7;
  color: var(--white-muted);
}

.showcase-right {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

/* ============ PLACEHOLDER SECTIONS (others) ============ */
.section-placeholder {
  text-align: center;
}

.section-number {
  font-family: var(--font-mono);
  font-size: 14px;
  letter-spacing: 0.1em;
  color: var(--white-muted);
  margin-bottom: 12px;
}

.section-title-placeholder {
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 700;
  letter-spacing: -0.03em;
}

/* ============ CASE STUDIES (Section 3) ============ */
.case-studies {
  height: auto;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding: 140px 40px 120px;
}

.cases-glow {
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 60%;
  background: radial-gradient(ellipse at center, rgba(74, 158, 255, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 80%, rgba(139, 92, 246, 0.06) 0%, transparent 55%);
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
}

.cases-container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}

.cases-head {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 64px;
}

.cases-head .section-number {
  margin-bottom: 16px;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--electric-blue);
}

.cases-title {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--white);
}

.cases-title span {
  background: linear-gradient(135deg, var(--electric-blue) 0%, var(--cyan) 50%, var(--purple) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.cases-subtitle {
  font-size: 16px;
  line-height: 1.7;
  color: var(--white-muted);
  max-width: 680px;
  margin: 0 auto;
}

/* Grid */
.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Card */
.case-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 32px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  overflow: hidden;
  transition: transform 0.5s var(--transition), border-color 0.5s var(--transition), box-shadow 0.5s var(--transition);
}

.case-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, var(--electric-blue), transparent 35%, transparent 65%, var(--purple));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.5s var(--transition);
  pointer-events: none;
}

.case-card:hover {
  transform: translateY(-6px);
  border-color: rgba(74, 158, 255, 0.25);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(74, 158, 255, 0.06);
}

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

.case-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: var(--electric-blue);
  background: rgba(74, 158, 255, 0.08);
  border: 1px solid rgba(74, 158, 255, 0.18);
  margin-bottom: 24px;
  transition: color 0.5s var(--transition), background 0.5s var(--transition), transform 0.5s var(--transition);
}

.case-card:hover .case-icon {
  color: var(--white);
  background: linear-gradient(135deg, var(--electric-blue), var(--purple));
  transform: scale(1.05);
}

.case-title {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.case-desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--white-muted);
  margin-bottom: 20px;
}

.case-highlights {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0 0 24px;
}

.case-highlights li {
  position: relative;
  padding-left: 22px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(245, 245, 240, 0.85);
}

.case-highlights li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--electric-blue), var(--cyan));
  box-shadow: 0 0 10px rgba(74, 158, 255, 0.5);
}

.case-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  text-decoration: none;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  transition: color var(--transition), gap 0.4s var(--transition);
}

.case-link svg {
  transition: transform 0.4s var(--transition);
}

.case-link:hover {
  color: var(--electric-blue);
  gap: 12px;
}

.case-link:hover svg {
  transform: translateX(2px);
}

.span-2 {
  grid-column: span 2;
}

/* Show only the first 6 case studies; expand on "Read More" */
.case-card:nth-child(n + 7) {
  display: none;
}

.cases-grid.expanded .case-card {
  display: flex;
}

.cases-grid.expanded .case-card:nth-child(n + 7) {
  animation: caseReveal 0.5s cubic-bezier(0.16, 1, 0.3, 1) both;
}

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

/* "Read More" button */
.cases-more {
  margin-top: 48px;
  text-align: center;
}

/* Hide per-card links */
.case-link {
  display: none;
}

/* ============ CAPABILITIES & TECHNOLOGY ECOSYSTEM (Section 3) ============ */
.eco-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

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

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

.eco-cat {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 32px 28px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015));
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  overflow: hidden;
  transition: transform 0.4s var(--transition), border-color 0.4s var(--transition), box-shadow 0.4s var(--transition);
}

.eco-cat-featured {
  background: linear-gradient(160deg, rgba(74, 158, 255, 0.07), rgba(139, 92, 246, 0.03));
  border-color: rgba(74, 158, 255, 0.3);
}

.eco-cat:hover {
  transform: translateY(-6px);
  border-color: rgba(74, 158, 255, 0.35);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(74, 158, 255, 0.08);
}

.eco-cat-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.eco-cat-icon {
  width: 22px;
  height: 22px;
  color: var(--electric-blue);
  flex-shrink: 0;
}

.eco-cat-title {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--white);
}

.eco-cat-note {
  font-size: 12px;
  line-height: 1.5;
  color: var(--white-muted);
  margin-bottom: 16px;
  font-style: italic;
}

.eco-cat-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 0;
  align-content: flex-start;
}

.eco-item {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.02em;
  padding: 6px 14px;
  border-radius: 999px;
  color: rgba(245, 245, 240, 0.85);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: color 0.3s var(--transition), background 0.3s var(--transition), border-color 0.3s var(--transition), transform 0.3s var(--transition);
}

.eco-item:hover {
  color: var(--white);
  border-color: rgba(74, 158, 255, 0.45);
  background: rgba(74, 158, 255, 0.12);
  transform: translateY(-2px);
}

/* ============ COMPANIES & BRANDS (Section 4) ============ */
.brands-group {
  margin-bottom: 48px;
}

.brands-group:last-child {
  margin-bottom: 0;
}

.brands-group-label {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white-muted);
  margin-bottom: 20px;
}

/* Marquee rows */
.marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}

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

.marquee-reverse .marquee-track {
  animation-name: marquee-ltr;
}

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

.marquee-row {
  display: flex;
  align-items: stretch;
  gap: 20px;
  padding-right: 20px;
}

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

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

.brand-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 168px;
  padding: 24px 28px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: transform 0.5s var(--transition), border-color 0.5s var(--transition), box-shadow 0.5s var(--transition);
}

.brand-card:hover {
  transform: translateY(-6px);
  border-color: rgba(74, 158, 255, 0.25);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(74, 158, 255, 0.06);
}

.brand-mark {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--white);
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(74, 158, 255, 0.18), rgba(139, 92, 246, 0.18));
  border: 1px solid rgba(74, 158, 255, 0.25);
}

.brand-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand-name {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.brand-role {
  font-size: 12px;
  color: var(--white-muted);
}

/* Logo mark in brand cards */
.brand-logo {
  width: 64px;
  height: 56px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: border-color 0.5s var(--transition), background 0.5s var(--transition);
}

.brand-logo img {
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
  transition: transform 0.5s var(--transition);
}

/* php.jpeg has an opaque white background — blend it over the glass card */
.brand-logo img[src$="php.jpeg"] {
  mix-blend-mode: multiply;
  max-width: 92%;
  max-height: 92%;
}

.brand-card:hover .brand-logo {
  border-color: rgba(74, 158, 255, 0.25);
  background: rgba(74, 158, 255, 0.06);
}

.brand-card:hover .brand-logo img {
  transform: scale(1.05);
}

/* ============ FEATURED PRODUCTS (Section 5) ============ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid var(--glass-border);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: transform 0.5s var(--transition), border-color 0.5s var(--transition), box-shadow 0.5s var(--transition);
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(74, 158, 255, 0.25);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(74, 158, 255, 0.06);
}

.product-visual {
  position: relative;
  height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  padding: 24px;
  overflow: hidden;
  background: radial-gradient(120% 160% at 0% 0%, var(--g1) 0%, transparent 55%),
    radial-gradient(120% 160% at 100% 100%, var(--g2) 0%, transparent 55%),
    rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.product-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 8, 14, 0.35) 0%, rgba(6, 8, 14, 0.05) 45%, rgba(6, 8, 14, 0.4) 100%);
  pointer-events: none;
}

.product-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.7s var(--transition);
}

.product-card:hover .product-visual img {
  transform: scale(1.05);
}

.product-index {
  position: relative;
  z-index: 1;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.12em;
  color: rgba(245, 245, 240, 0.7);
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(10, 10, 10, 0.35);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.product-cat {
  position: relative;
  z-index: 1;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(10, 10, 10, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.product-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 26px;
}

.product-name {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.product-desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--white-muted);
  margin-bottom: 20px;
}

.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
}

.product-tags span {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.02em;
  padding: 5px 10px;
  border-radius: 999px;
  color: rgba(245, 245, 240, 0.7);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-content {
    padding: 100px 24px 24px;
  }

  .hero-title .reveal-word {
    font-size: clamp(36px, 10vw, 60px);
  }

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

  .span-2 {
    grid-column: span 2;
  }

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

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

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .navbar {
    padding: 12px 16px;
  }

  .hero-content {
    padding: 80px 20px 20px;
  }

  .hero-title .reveal-word {
    font-size: clamp(32px, 12vw, 48px);
  }

  .hero-desc {
    font-size: 14px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-portrait-col {
    width: 60%;
    opacity: 0.2;
  }

  .hero-tag {
    font-size: 10px;
    padding: 6px 14px;
  }

  .case-studies {
    padding: 110px 20px 90px;
  }

  .cases-head {
    margin-bottom: 48px;
  }

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

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

  .case-card {
    padding: 26px;
  }

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

  .eco-cat {
    padding: 24px;
  }

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

/* ============ GLOBAL COLLABORATION ============ */
.collaboration-section {
  height: auto !important;
  min-height: 100vh;
  padding: 140px 24px 100px;
}

.collab-head {
  max-width: 800px;
  margin-bottom: 60px;
}

.collab-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 64px;
}

/* Globe Left Column */
.collab-globe-col {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.earth-globe {
  position: relative;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  overflow: hidden;
  background-image: url('https://pub-940ccf6255b54fa799a9b01050e6c227.r2.dev/globe.jpeg');
  background-size: cover;
  background-position: left;
  animation: earthRotate 30s linear infinite;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.2), -5px 0 8px #c3f4ff inset, 15px 2px 25px #000 inset,
    -24px -2px 34px #c3f4ff99 inset, 250px 0 44px #00000066 inset, 150px 0 38px #000000aa inset;
}

.earth-star {
  position: absolute;
  width: 4px;
  height: 4px;
  background: #fff;
  border-radius: 50%;
  animation: twinkling 3s infinite;
}

@keyframes earthRotate {
  0% { background-position: 0 0; }
  100% { background-position: 400px 0; }
}

@keyframes twinkling {
  0%, 100% { opacity: 0.1; }
  50% { opacity: 1; }
}

/* Right Content Column */
.collab-content-col {
  display: flex;
  flex-direction: column;
}

.collab-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 100px;
  background: rgba(74, 158, 255, 0.08);
  border: 1px solid rgba(74, 158, 255, 0.2);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.05em;
  color: var(--electric-blue);
  width: fit-content;
  margin-bottom: 20px;
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 8px var(--cyan);
  animation: pulse-dot 2s infinite;
}

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

.collab-heading {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 20px;
}

.collab-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
}

.collab-body p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--white-muted);
}

/* Metrics Grid */
.collab-metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}

.metric-card {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 20px 16px;
  transition: transform var(--transition), border-color var(--transition), background var(--transition);
}

.metric-card:hover {
  transform: translateY(-4px);
  border-color: rgba(74, 158, 255, 0.3);
  background: rgba(255, 255, 255, 0.06);
}

.metric-value-wrap {
  display: flex;
  align-items: baseline;
  margin-bottom: 6px;
}

.metric-number {
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 900;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, #ffffff 0%, var(--white-muted) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}

.metric-plus {
  font-size: 20px;
  font-weight: 700;
  color: var(--electric-blue);
  margin-left: 2px;
}

.metric-label {
  font-size: 12px;
  font-weight: 500;
  line-height: 1.35;
  color: var(--white-muted);
}

/* Country Chips */
.collab-chips-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.chips-label {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white-muted);
}

.collab-chips-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.country-chip {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  color: var(--white-muted);
  font-size: 13px;
  font-weight: 500;
  padding: 8px 18px;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  outline: none;
}

.country-chip:hover, .country-chip.active {
  background: rgba(74, 158, 255, 0.15);
  border-color: rgba(74, 158, 255, 0.5);
  color: var(--white);
  box-shadow: 0 0 20px rgba(74, 158, 255, 0.25);
  transform: translateY(-2px);
}

/* Bottom Callout Statement */
.collab-bottom-callout {
  margin-top: 40px;
  width: 100%;
  display: flex;
  justify-content: center;
}

.callout-glass-card {
  width: 100%;
  max-width: 900px;
  text-align: center;
  padding: 40px 36px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(74, 158, 255, 0.05) 50%, rgba(139, 92, 246, 0.03) 100%);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: calc(var(--radius) * 1.5);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

.callout-headline {
  font-size: clamp(24px, 3.5vw, 34px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 16px;
  background: linear-gradient(135deg, #ffffff 30%, var(--electric-blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.callout-text {
  font-size: 16px;
  line-height: 1.7;
  color: var(--white-muted);
  max-width: 760px;
  margin: 0 auto;
}

/* Responsive Collaboration Section */
@media (max-width: 1024px) {
  .collab-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .collab-metrics-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 640px) {
  .collab-metrics-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .callout-glass-card {
    padding: 28px 20px;
  }
  .earth-globe {
    width: 200px;
    height: 200px;
  }
}

/* ============ CONTACT (Section 9) ============ */
.contact-section {
  height: auto !important;
  min-height: 100vh;
  padding: 140px 24px 120px;
  display: flex;
  align-items: center;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 72px;
  align-items: center;
}

/* Left Callout Column */
.contact-callout {
  display: flex;
  justify-content: center;
}

.contact-callout .callout-glass-card {
  max-width: 520px;
  text-align: left;
}

.contact-callout .callout-text {
  margin: 0;
}

/* Right Content Column */
.contact-content {
  display: flex;
  flex-direction: column;
}

.contact-content .section-number {
  margin-bottom: 16px;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--electric-blue);
}

.contact-title {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 20px;
}

.contact-title span {
  background: linear-gradient(135deg, var(--electric-blue) 0%, var(--cyan) 50%, var(--purple) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-intro {
  font-size: 17px;
  line-height: 1.7;
  color: var(--white-muted);
  max-width: 540px;
  margin-bottom: 36px;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 48px;
}

.contact-channels {
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-channel {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 8px;
  text-decoration: none;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.35s var(--transition);
}

.contact-channel:hover {
  padding-left: 16px;
  background: rgba(74, 158, 255, 0.04);
}

.channel-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 12px;
  color: var(--electric-blue);
  background: rgba(74, 158, 255, 0.08);
  border: 1px solid rgba(74, 158, 255, 0.2);
  transition: all 0.35s var(--transition);
}

.contact-channel:hover .channel-icon {
  background: var(--electric-blue);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(74, 158, 255, 0.3);
}

.channel-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}

.channel-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white-muted);
}

.channel-value {
  font-size: 16px;
  font-weight: 500;
  color: var(--white);
  transition: color 0.35s var(--transition);
}

.contact-channel:hover .channel-value {
  color: var(--electric-blue);
}

.channel-arrow {
  color: var(--white-muted);
  transform: translateX(0);
  transition: all 0.35s var(--transition);
  flex-shrink: 0;
}

.contact-channel:hover .channel-arrow {
  color: var(--electric-blue);
  transform: translateX(4px);
}

/* Responsive Contact */
@media (max-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }
}

@media (max-width: 640px) {
  .contact-section {
    padding: 100px 20px 90px;
  }
  .contact-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .contact-actions .btn {
    justify-content: center;
  }
  .contact-channel {
    gap: 14px;
  }
}

/* ============ LIGHT THEME ============ */
html {
  --mobile-menu-bg: rgba(10, 10, 10, 0.95);
}

html.light {
  color-scheme: light;
  --black: #f4f3ef;
  --graphite: #ebebe5;
  --charcoal: #d9d8d1;
  --white: #141620;
  --white-muted: rgba(20, 22, 32, 0.6);
  --glass-bg: rgba(255, 255, 255, 0.55);
  --glass-border: rgba(20, 22, 32, 0.1);
  --mobile-menu-bg: rgba(255, 255, 255, 0.96);
}

html.light .hero,
html.light .video-showcase {
  --black: #0a0a0a;
  --white: #f5f5f0;
  --white-muted: rgba(245, 245, 240, 0.6);
  --glass-bg: rgba(255, 255, 255, 0.04);
  --glass-border: rgba(255, 255, 255, 0.08);
}

html.light .nav-inner {
  box-shadow: 0 8px 40px rgba(20, 22, 32, 0.08);
}

html.light .nav-logo-img {
  filter: invert(1);
}

html.light .nav-link:hover {
  background: rgba(20, 22, 32, 0.06);
}

html.light .nav-cta:hover {
  color: #f5f5f0;
}

html.light .loader-ring {
  border-right-color: rgba(20, 22, 32, 0.08);
  border-bottom-color: rgba(20, 22, 32, 0.08);
  border-left-color: rgba(20, 22, 32, 0.08);
}

html.light .case-card,
html.light .eco-cat,
html.light .brand-card,
html.light .product-card {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.65), rgba(255, 255, 255, 0.35));
}

html.light .case-card:hover,
html.light .eco-cat:hover,
html.light .brand-card:hover,
html.light .product-card:hover {
  box-shadow: 0 24px 60px rgba(20, 22, 32, 0.14), 0 0 40px rgba(74, 158, 255, 0.12);
}

html.light .eco-item:hover {
  background: rgba(74, 158, 255, 0.14);
}

html.light .eco-item,
html.light .product-tags span {
  color: rgba(20, 22, 32, 0.72);
  background: rgba(255, 255, 255, 0.6);
  border-color: rgba(20, 22, 32, 0.1);
}

html.light .brand-logo {
  background: rgba(255, 255, 255, 0.6);
  border-color: rgba(20, 22, 32, 0.1);
}

html.light .case-highlights li {
  color: rgba(20, 22, 32, 0.78);
}

html.light .case-link {
  border-top-color: rgba(20, 22, 32, 0.1);
}

html.light .metric-card:hover {
  background: rgba(20, 22, 32, 0.05);
}

html.light .metric-number {
  background: linear-gradient(135deg, #141620 0%, rgba(20, 22, 32, 0.55) 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

html.light .country-chip {
  background: rgba(255, 255, 255, 0.55);
  border-color: rgba(20, 22, 32, 0.1);
}

html.light .earth-star {
  background: var(--electric-blue);
}

html.light .earth-globe {
  box-shadow: 0 0 20px rgba(74, 158, 255, 0.25),
    -5px 0 8px #c3f4ff inset,
    15px 2px 25px #000 inset,
    -24px -2px 34px #c3f4ff99 inset,
    250px 0 44px #00000066 inset,
    150px 0 38px #000000aa inset;
}

html.light .callout-glass-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(74, 158, 255, 0.1) 50%, rgba(139, 92, 246, 0.08) 100%);
  border-color: rgba(20, 22, 32, 0.1);
  box-shadow: 0 30px 80px rgba(20, 22, 32, 0.12);
}

html.light .callout-headline {
  background: linear-gradient(135deg, #141620 30%, var(--electric-blue) 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

html.light .contact-channels {
  border-top-color: rgba(20, 22, 32, 0.1);
}

html.light .contact-channel {
  border-bottom-color: rgba(20, 22, 32, 0.1);
}

html.light .contact-channel:hover {
  background: rgba(74, 158, 255, 0.06);
}

html.light .channel-icon {
  background: rgba(74, 158, 255, 0.1);
  border-color: rgba(74, 158, 255, 0.25);
}

/* ===== Floating Back to Top Button ===== */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px) scale(0.9);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  text-decoration: none;
}

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

.back-to-top:hover {
  background: var(--electric-blue);
  color: var(--white);
  border-color: var(--electric-blue);
  box-shadow: 0 12px 35px rgba(74, 158, 255, 0.4);
  transform: translateY(-4px) scale(1.05);
}

/* ===== Footer Credits ===== */
.footer-credits {
  margin-top: 64px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.footer-designed-by {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white-muted);
}

.footer-logo {
  height: 54px;
  width: auto;
  object-fit: contain;
  opacity: 0.95;
  filter: brightness(1);
  transition: opacity 0.3s var(--transition), transform 0.3s var(--transition);
}

.footer-credits:hover .footer-logo {
  opacity: 1;
  transform: scale(1.05);
}

html.light .footer-credits {
  border-top-color: rgba(20, 22, 32, 0.1);
}

html.light .footer-logo {
  filter: invert(1) brightness(0.2);
}