﻿/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   WEBTIUS â€” Premium Agency Website
   Design System: Light, Elegant, Glassmorphism + Skeumorphism
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

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

:root {
  /* Palette */
  --bg:           #F5F2EE;
  --bg-alt:       #EDE9E3;
  --surface:      rgba(255,255,255,0.65);
  --surface-2:    rgba(255,255,255,0.45);
  --border:       rgba(107,79,255,0.12);
  --border-soft:  rgba(0,0,0,0.06);

  --primary:      #6B4FFF;
  --primary-dark: #4E34D4;
  --primary-soft: rgba(107,79,255,0.12);
  --accent:       #FF6B35;
  --accent-soft:  rgba(255,107,53,0.12);

  --text-head:    #0A0A0F;
  --text-body:    #3D3D47;
  --text-muted:   #7A7A8A;
  --text-light:   #A8A8B8;

  /* Glass */
  --glass-blur:   20px;
  --glass-bg:     rgba(255,255,255,0.60);
  --glass-border: rgba(255,255,255,0.80);
  --glass-shadow: 0 8px 40px rgba(0,0,0,0.08), 0 1px 0 rgba(255,255,255,0.9) inset;

  /* Radii */
  --r-sm:  10px;
  --r-md:  18px;
  --r-lg:  28px;
  --r-xl:  40px;
  --r-pill: 999px;

  /* Spacing */
  --section-gap: 140px;
  --container:   1200px;

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --dur-fast: 0.25s;
  --dur-med:  0.45s;
  --dur-slow: 0.8s;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background-color: var(--bg);
  color: var(--text-body);
  line-height: 1.7;
  overflow-x: hidden;
  cursor: none;
}

/* â”€â”€â”€ Typography â”€â”€â”€ */
h1, h2, h3, h4, h5 {
  font-family: 'Syne', sans-serif;
  color: var(--text-head);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
ul { list-style: none; }

/* â”€â”€â”€ Container â”€â”€â”€ */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
}

/* â”€â”€â”€ Section â”€â”€â”€ */
.section { padding: var(--section-gap) 0; position: relative; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   CUSTOM CURSOR
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.cursor {
  width: 10px;
  height: 10px;
  background: var(--primary);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.2s var(--ease-out), height 0.2s var(--ease-out), background 0.2s;
  will-change: transform;
  mix-blend-mode: multiply;
}
.cursor-follower {
  width: 36px;
  height: 36px;
  border: 1.5px solid var(--primary);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  background: transparent;
  transition: width 0.3s var(--ease-out), height 0.3s var(--ease-out), border-color 0.2s;
  will-change: transform;
  opacity: 0.7;
}
.cursor.is-hovering { width: 20px; height: 20px; background: var(--accent); }
.cursor-follower.is-hovering { width: 60px; height: 60px; border-color: var(--accent); opacity: 0.4; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   PRELOADER
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.preloader__inner {
  text-align: center;
}
.preloader__logo {
  display: flex;
  gap: 2px;
  justify-content: center;
  margin-bottom: 20px;
}
.preloader__letter {
  font-family: 'Syne', sans-serif;
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 800;
  color: var(--text-head);
  opacity: 0;
  transform: translateY(40px);
  display: inline-block;
}
.preloader__tagline {
  font-family: 'DM Mono', monospace;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
  opacity: 0;
  margin-bottom: 32px;
}
.preloader__bar-wrap {
  width: 200px;
  height: 2px;
  background: var(--border-soft);
  border-radius: var(--r-pill);
  overflow: hidden;
  margin: 0 auto;
  opacity: 0;
}
.preloader__bar {
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: var(--r-pill);
  width: 0%;
  transition: width 0.05s linear;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   NAVBAR
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0;
  transition: background var(--dur-fast), box-shadow var(--dur-fast), backdrop-filter var(--dur-fast);
}
.navbar.scrolled {
  background: rgba(245,242,238,0.80);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-soft);
  box-shadow: 0 4px 30px rgba(0,0,0,0.04);
}
.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container);
  margin: 0 auto;
  padding: 22px 40px;
}
.navbar__logo {
  display: flex;
  align-items: center;
  gap: 6px;
}
.logo-text {
  font-family: 'Syne', sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-head);
  letter-spacing: -0.03em;
}
.logo-dot {
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  display: inline-block;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.7; }
}
.navbar__links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-link {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-body);
  padding: 8px 16px;
  border-radius: var(--r-pill);
  transition: background var(--dur-fast), color var(--dur-fast);
  position: relative;
}
.nav-link:hover { background: var(--primary-soft); color: var(--primary); }
.nav-link.active { color: var(--primary); }
.nav-cta {
  background: var(--text-head);
  color: #FFF !important;
  padding: 10px 22px;
  border-radius: var(--r-pill);
  font-weight: 600;
  transition: background var(--dur-fast), transform var(--dur-fast);
}
.nav-cta:hover { background: var(--primary) !important; transform: translateY(-1px); }
.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.navbar__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-head);
  border-radius: 2px;
  transition: transform var(--dur-fast), opacity var(--dur-fast);
}
.navbar__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar__hamburger.open span:nth-child(2) { opacity: 0; }
.navbar__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.navbar__mobile {
  display: none;
  flex-direction: column;
  background: rgba(245,242,238,0.95);
  backdrop-filter: blur(20px);
  padding: 0 40px;
  border-top: 1px solid var(--border-soft);
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--dur-med) var(--ease-out), padding var(--dur-med) var(--ease-out);
}
.navbar__mobile.open { max-height: 400px; padding: 20px 40px 30px; }
.navbar__mobile ul { display: flex; flex-direction: column; gap: 4px; }
.mobile-nav-link {
  display: block;
  font-family: 'Syne', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-head);
  padding: 10px 0;
  border-bottom: 1px solid var(--border-soft);
  transition: color var(--dur-fast), padding-left var(--dur-fast);
}
.mobile-nav-link:hover { color: var(--primary); padding-left: 12px; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   GLASS CARD BASE
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  border-radius: var(--r-lg);
  position: relative;
  overflow: hidden;
}
/* Skeuomorphic inner highlight */
.glass-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255,255,255,0.6) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   BUTTONS
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--r-pill);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: none;
  transition: transform var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast), background var(--dur-fast);
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: rgba(255,255,255,0.15);
  opacity: 0;
  transition: opacity var(--dur-fast);
}
.btn:hover::after { opacity: 1; }
.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(0,0,0,0.15); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--primary);
  color: #FFF;
  box-shadow: 0 4px 14px rgba(107,79,255,0.35);
}
.btn--primary:hover { box-shadow: 0 8px 30px rgba(107,79,255,0.45); }

.btn--ghost {
  background: transparent;
  color: var(--text-head);
  border: 1.5px solid var(--border-soft);
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.btn--ghost:hover { border-color: var(--primary); color: var(--primary); }

.btn--outline {
  background: transparent;
  color: var(--primary);
  border: 1.5px solid var(--primary);
}
.btn--outline:hover { background: var(--primary); color: #FFF; }

.btn--full { width: 100%; justify-content: center; }
.btn-arrow { transition: transform var(--dur-fast); }
.btn:hover .btn-arrow { transform: translateX(4px); }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   SECTION LABELS & HEADERS
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'DM Mono', monospace;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 20px;
}
.label-line {
  display: block;
  width: 32px;
  height: 1px;
  background: var(--primary);
}
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 80px;
}
.section-header .section-label { margin-bottom: 20px; justify-content: center; }
.section-headline {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--text-head);
  margin-bottom: 20px;
  line-height: 1.1;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   HERO
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.hero {
  min-height: 100vh;
  padding-top: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: 40px;
  padding-right: 40px;
  position: relative;
  overflow: hidden;
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  width: 100%;
}

/* Floating Orbs */
.orbs-container {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.5;
  animation: float-orb 12s ease-in-out infinite;
  will-change: transform;
}
.orb--1 { width: 400px; height: 400px; background: radial-gradient(circle, rgba(107,79,255,0.3), transparent); top: -100px; right: 100px; animation-delay: 0s; animation-duration: 15s; }
.orb--2 { width: 300px; height: 300px; background: radial-gradient(circle, rgba(255,107,53,0.25), transparent); bottom: 50px; right: 250px; animation-delay: -3s; animation-duration: 13s; }
.orb--3 { width: 250px; height: 250px; background: radial-gradient(circle, rgba(107,79,255,0.2), transparent); top: 200px; left: -50px; animation-delay: -6s; animation-duration: 18s; }
.orb--4 { width: 180px; height: 180px; background: radial-gradient(circle, rgba(255,107,53,0.3), transparent); top: 80px; left: 300px; animation-delay: -2s; animation-duration: 10s; }
.orb--5 { width: 120px; height: 120px; background: radial-gradient(circle, rgba(107,79,255,0.4), transparent); bottom: 200px; left: 100px; animation-delay: -8s; animation-duration: 14s; }
.orb--6 { width: 350px; height: 350px; background: radial-gradient(circle, rgba(255,205,100,0.15), transparent); top: 50%; right: -80px; animation-delay: -5s; animation-duration: 20s; }

@keyframes float-orb {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -40px) scale(1.05); }
  66% { transform: translate(-20px, 20px) scale(0.98); }
}

/* Grid overlay */
.hero__grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(107,79,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(107,79,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 0;
}

.hero__visual { position: relative; z-index: 1; }

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
  border-radius: var(--r-pill);
  padding: 8px 18px;
  font-family: 'DM Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 32px;
  box-shadow: 0 4px 20px rgba(107,79,255,0.1);
  opacity: 0;
}
.badge-dot {
  width: 8px;
  height: 8px;
  background: #22C55E;
  border-radius: 50%;
  animation: pulse-dot 1.8s ease-in-out infinite;
}

.hero__headline {
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 800;
  color: var(--text-head);
  line-height: 1.05;
  letter-spacing: -0.035em;
  margin-bottom: 28px;
  opacity: 0;
}
.hero__headline-line { display: block; }
.hero__headline-line--accent {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 500px;
  margin-bottom: 40px;
  opacity: 0;
}

.hero__cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 60px;
  opacity: 0;
}

.hero__stats {
  display: flex;
  align-items: center;
  gap: 32px;
  opacity: 0;
}
.stat-item { display: flex; flex-direction: column; gap: 2px; }
.stat-num {
  font-family: 'Syne', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-head);
  line-height: 1;
}
.stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.05em;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border-soft);
}

/* Hero Visual */
.hero__glass-card--main {
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
  transform: perspective(1000px) rotateY(-5deg) rotateX(3deg);
  transition: transform var(--dur-med) var(--ease-out);
  opacity: 0;
}
.hero__glass-card--main:hover {
  transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}
.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__glass-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(107,79,255,0.08) 0%, transparent 60%);
}

.hero__glass-card--float-1,
.hero__glass-card--float-2 {
  position: absolute;
  padding: 14px 20px;
  border-radius: var(--r-md);
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  opacity: 0;
}
.hero__glass-card--float-1 {
  bottom: -20px;
  left: -40px;
  animation: float-card-1 6s ease-in-out infinite;
}
.hero__glass-card--float-2 {
  top: -20px;
  right: -30px;
  animation: float-card-2 8s ease-in-out infinite;
}
@keyframes float-card-1 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
@keyframes float-card-2 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(10px); }
}
.float-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-head);
  white-space: nowrap;
}
.float-icon { font-size: 1rem; }

/* Scroll hint */
.hero__scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
  opacity: 0;
}
.scroll-line {
  display: block;
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--primary), transparent);
  animation: scroll-line 2s ease-in-out infinite;
}
@keyframes scroll-line {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}
.scroll-text {
  font-family: 'DM Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   ABOUT
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.about {
  background: #000;
  position: relative;
  overflow: hidden;
}

/* Video background */
.about__video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.about__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about__video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.72) 0%,
    rgba(10, 5, 30, 0.65) 50%,
    rgba(0, 0, 0, 0.75) 100%
  );
  backdrop-filter: blur(1px);
}

/* Container sits above video */
.about .container {
  position: relative;
  z-index: 1;
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.about__headline {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 28px;
  line-height: 1.1;
  color: #fff;
}
.about__body {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.75;
  margin-bottom: 20px;
}

/* Section label overrides for dark bg */
.about .section-label { color: #a78bfa; }
.about .label-line { background: #a78bfa; }
.about .btn--outline {
  color: #a78bfa;
  border-color: #a78bfa;
}
.about .btn--outline:hover {
  background: #a78bfa;
  color: #fff;
}

.about__values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.value-card {
  padding: 28px 24px;
  background: rgba(255, 255, 255, 0.07) !important;
  backdrop-filter: blur(18px) !important;
  -webkit-backdrop-filter: blur(18px) !important;
  border: 1px solid rgba(255, 255, 255, 0.14) !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35) !important;
  transition: transform var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast);
}
.value-card:hover {
  transform: translateY(-6px) rotate(-0.5deg);
  box-shadow: 0 20px 60px rgba(107, 79, 255, 0.22) !important;
  border-color: rgba(167, 139, 250, 0.35) !important;
}
.value-icon {
  display: block;
  font-size: 1.8rem;
  margin-bottom: 14px;
}
.value-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #fff;
}
.value-desc {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

/* â”€â”€ Shared video background utility (services, work, team, contact) â”€â”€ */
.section-video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.section-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.section-video-overlay {
  position: absolute;
  inset: 0;
}
/* Ensure container content sits above video */
.services .container,
.work .container,
.team .container,
.contact .container { position: relative; z-index: 1; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   SERVICES
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.services {
  background: #0a0a0f;
  position: relative;
  overflow: hidden;
}
.services .section-video-overlay {
  background: linear-gradient(
    160deg,
    rgba(5, 3, 20, 0.82) 0%,
    rgba(20, 10, 50, 0.70) 50%,
    rgba(5, 3, 20, 0.85) 100%
  );
}
/* All text on dark bg */
.services .section-headline { color: #fff; }
.services .section-sub { color: rgba(255,255,255,0.65); }
.services .section-label { color: #c4b5fd; }
.services .label-line { background: #c4b5fd; }

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  padding: 36px 30px;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.06) !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
  border: 1px solid rgba(255, 255, 255, 0.10) !important;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4) !important;
  transition: transform var(--dur-med) var(--ease-out), box-shadow var(--dur-med), border-color var(--dur-med);
  position: relative;
  overflow: hidden;
}
.service-card:hover {
  transform: translateY(-8px) skewX(-0.5deg);
  box-shadow: 0 24px 60px rgba(107,79,255,0.22) !important;
  border-color: rgba(167,139,250,0.35) !important;
}
.service-card:hover .service-card__hover-line {
  width: 100%;
}
.service-card__number {
  font-family: 'DM Mono', monospace;
  font-size: 0.7rem;
  font-weight: 500;
  color: #c4b5fd;
  letter-spacing: 0.15em;
  margin-bottom: 20px;
  opacity: 0.7;
  position: relative;
  z-index: 1;
}
.service-card__icon {
  color: #c4b5fd;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.service-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}
.service-card__desc {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.62);
  line-height: 1.65;
  position: relative;
  z-index: 1;
}
.service-card__hover-line {
  position: absolute;
  bottom: 0; left: 0;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, #7c3aed, #f97316);
  border-radius: 0 0 var(--r-lg) var(--r-lg);
  transition: width var(--dur-med) var(--ease-out);
}

/* Work card link wrapper */
.work-card-link {
  display: contents;
  color: inherit;
  text-decoration: none;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   WORK
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.work {
  background: #050510;
  position: relative;
  overflow: hidden;
}
.work .section-video-overlay {
  background: linear-gradient(
    180deg,
    rgba(2, 2, 18, 0.80) 0%,
    rgba(5, 5, 30, 0.68) 50%,
    rgba(2, 2, 18, 0.85) 100%
  );
}
.work .section-headline { color: #fff; }
.work .section-sub { color: rgba(255,255,255,0.60); }
.work .section-label { color: #93c5fd; }
.work .label-line { background: #93c5fd; }

.work__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto;
  gap: 28px;
}
.work-card {
  border-radius: var(--r-lg);
  overflow: hidden;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 8px 40px rgba(0,0,0,0.5);
  cursor: pointer;
  transition: transform var(--dur-med) var(--ease-out), box-shadow var(--dur-med);
}
.work-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 70px rgba(0,0,0,0.6), 0 0 0 1px rgba(147,197,253,0.2);
}
.work-card--wide {
  grid-column: 1 / -1;
}
.work-card__image-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
}
.work-card--wide .work-card__image-wrap {
  aspect-ratio: 21/7;
}
.work-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease-out);
}
.work-card:hover .work-card__image { transform: scale(1.05); }
.work-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(14,165,233,0.55);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--dur-fast);
}
.work-card:hover .work-card__overlay { opacity: 1; }
.work-card__view {
  font-family: 'Syne', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #FFF;
  letter-spacing: 0.02em;
}
.work-card__info { padding: 28px 30px; }
.work-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.work-card__tag {
  font-family: 'DM Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #93c5fd;
  background: rgba(147,197,253,0.12);
  padding: 4px 12px;
  border-radius: var(--r-pill);
}
.work-card__year {
  font-family: 'DM Mono', monospace;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.40);
}
.work-card__title {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.work-card__desc {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.62);
  line-height: 1.6;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   TEAM
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.team {
  background: #040a10;
  position: relative;
  overflow: hidden;
}
.team .section-video-overlay {
  background: linear-gradient(
    135deg,
    rgba(2, 8, 16, 0.82) 0%,
    rgba(5, 20, 35, 0.70) 50%,
    rgba(2, 8, 16, 0.85) 100%
  );
}
.team .section-headline { color: #fff; }
.team .section-sub { color: rgba(255,255,255,0.60); }
.team .section-label { color: #6ee7b7; }
.team .label-line { background: #6ee7b7; }

.team__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.team-card {
  overflow: visible;
  padding: 0;
  border-radius: var(--r-lg);
  background: rgba(255,255,255,0.06) !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
  border: 1px solid rgba(255,255,255,0.10) !important;
  box-shadow: 0 8px 40px rgba(0,0,0,0.5) !important;
  transition: transform var(--dur-med) var(--ease-out), box-shadow var(--dur-med);
  cursor: default;
}
.team-card:hover {
  transform: translateY(-10px) scale(1.01);
  box-shadow: 0 30px 80px rgba(110,231,183,0.2) !important;
  border-color: rgba(110,231,183,0.3) !important;
}
.team-card:hover .team-card__glow { opacity: 1; }
.team-card__image-wrap {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-lg) var(--r-lg) 0 0;
  aspect-ratio: 1;
}
.team-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform var(--dur-slow) var(--ease-out);
}
.team-card:hover .team-card__image { transform: scale(1.04); }
.team-card__glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(110,231,183,0.18) 100%);
  opacity: 0;
  transition: opacity var(--dur-med);
}
.team-card__info {
  padding: 24px 28px 30px;
  position: relative;
  z-index: 1;
}
.team-card__name {
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}
.team-card__role {
  display: block;
  font-family: 'DM Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: #6ee7b7;
  margin-bottom: 14px;
}
.team-card__bio {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.62);
  line-height: 1.65;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   CONTACT
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.contact {
  background: #08040f;
  position: relative;
  overflow: hidden;
}
.contact .section-video-overlay {
  background: linear-gradient(
    145deg,
    rgba(8, 4, 20, 0.85) 0%,
    rgba(20, 10, 40, 0.72) 50%,
    rgba(8, 4, 20, 0.88) 100%
  );
}
.contact__inner {
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  border-radius: var(--r-xl);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 20px 80px rgba(0,0,0,0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.contact__left {
  padding: 70px 60px;
  background: linear-gradient(135deg, rgba(107,79,255,0.15), rgba(255,107,53,0.08));
  border-right: 1px solid rgba(255,255,255,0.08);
  position: relative;
  overflow: hidden;
}
.contact__left::after {
  content: 'WEBTIUS';
  position: absolute;
  bottom: -20px;
  right: -20px;
  font-family: 'Syne', sans-serif;
  font-size: 7rem;
  font-weight: 800;
  color: rgba(167,139,250,0.07);
  letter-spacing: -0.05em;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.contact__headline {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 20px;
}
.contact__body {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 36px;
}
.contact__details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-detail-link {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  font-weight: 500;
  transition: color var(--dur-fast);
}
a.contact-detail-link:hover { color: #c4b5fd; }
.contact-detail-icon {
  font-size: 1rem;
  width: 36px;
  height: 36px;
  background: rgba(167,139,250,0.15);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-style: normal;
}

/* Section label overrides for dark bg */
.contact .section-label { color: #c4b5fd; }
.contact .label-line { background: #c4b5fd; }

.contact__right { padding: 70px 60px; }

/* Form */
.contact-form { display: flex; flex-direction: column; gap: 22px; }
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.80);
  letter-spacing: 0.02em;
}
.form-input {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(255,255,255,0.12);
  border-radius: var(--r-md);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: #fff;
  outline: none;
  transition: border-color var(--dur-fast), box-shadow var(--dur-fast), background var(--dur-fast);
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  -webkit-appearance: none;
  appearance: none;
}
.form-input:focus {
  border-color: #a78bfa;
  box-shadow: 0 0 0 4px rgba(167,139,250,0.15), 0 2px 8px rgba(0,0,0,0.2);
  background: rgba(255,255,255,0.10);
}
.form-input::placeholder { color: rgba(255,255,255,0.30); }
.form-textarea { resize: vertical; min-height: 110px; }
.form-select { cursor: pointer; color: #fff; }
.form-select option { background: #1a1025; color: #fff; }
.form-success {
  background: rgba(34,197,94,0.12);
  border: 1px solid rgba(34,197,94,0.3);
  border-radius: var(--r-md);
  padding: 14px 18px;
  font-size: 0.9rem;
  color: #86efac;
  font-weight: 600;
  text-align: center;
  display: none;
}
.form-success.visible { display: block; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   FOOTER
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.footer {
  background: var(--text-head);
  padding: 70px 0 30px;
  color: rgba(255,255,255,0.7);
}
.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 30px;
}
.footer__logo { display: flex; align-items: center; gap: 6px; margin-bottom: 20px; }
.footer__logo .logo-text { color: #FFF; }
.footer__logo .logo-dot { background: var(--primary); }
.footer__tagline {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
}
.footer__nav {
  display: flex;
  gap: 80px;
}
.footer__nav-group { position: relative; }
.footer__nav-title {
  font-family: 'Syne', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 18px;
}
.footer__nav-group ul { display: flex; flex-direction: column; gap: 10px; }
.footer__nav-group a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--dur-fast);
}
.footer__nav-group a:hover { color: #FFF; }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer__copy, .footer__made {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   SCROLL REVEAL ANIMATIONS
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.reveal-child {
  opacity: 0;
  transform: translateY(40px);
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   RESPONSIVE
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
@media (max-width: 1024px) {
  .hero {
    padding-top: 120px;
    padding-bottom: 80px;
  }
  .hero__content { max-width: 100%; }
  .hero__headline { font-size: clamp(2.5rem, 7vw, 4.5rem); }
  .hero__sub { max-width: 100%; }
  .hero__scroll-hint { display: none; }

  .about__grid { grid-template-columns: 1fr; gap: 50px; }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .team__grid { grid-template-columns: repeat(2, 1fr); }
  .contact__inner { grid-template-columns: 1fr; }
  .contact__left { padding: 50px 40px; }
  .contact__right { padding: 50px 40px; }
}

@media (max-width: 768px) {
  /* Base */
  html, body { overflow-x: hidden; }
  .container { padding: 0 20px; }
  body { cursor: auto; }
  .cursor, .cursor-follower { display: none; }
  .navbar__links { display: none; }
  .navbar__hamburger { display: flex; }
  .navbar__mobile { display: flex; }
  .navbar__inner { padding: 18px 20px; }
  .navbar {
    background: rgba(245,242,238,0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-soft);
  }

  .hero {
    padding: 130px 20px 60px;
    min-height: auto;
    text-align: center;
    align-items: center;
    background: #F5F2EE;
    max-width: 100%;
    margin: 0;
    width: 100%;
  }
  .hero__content { max-width: 100%; }
  .hero__headline {
    font-size: 2.4rem;
    letter-spacing: -0.025em;
    line-height: 1.1;
  }
  .hero__headline-line { display: block; }
  .hero__eyebrow {
    margin-bottom: 16px;
    font-size: 0.6rem;
    justify-content: center;
  }
  .hero__sub { font-size: 0.95rem; max-width: 100%; }
  .hero__cta-group {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 40px;
  }
  .hero__cta-group .btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
  .hero__stats {
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
  }
  .stat-num { font-size: 1.5rem; }
  .stat-divider { height: 28px; }
  .hero__scroll-hint { display: none; }
  .hero__canvas-wrap { display: none; }
  .canvas-hint { display: none; }
  .orb--1 { width: 160px; height: 160px; }
  .orb--2 { width: 120px; height: 120px; }
  .orb--3 { width: 100px; height: 100px; }
  .orb--4 { display: none; }
  .orb--5 { display: none; }
  .orb--6 { width: 140px; height: 140px; }
  .about__grid { grid-template-columns: 1fr; gap: 40px; }
  .about__headline { font-size: clamp(1.8rem, 6vw, 2.5rem); }
  .about__body { font-size: 0.92rem; }
  .about__values-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .value-card { padding: 20px 16px; }
  .value-title { font-size: 0.95rem; }
  .value-desc { font-size: 0.8rem; }
  .section-header { margin: 0 auto 44px; }
  .section-headline { font-size: clamp(1.7rem, 5.5vw, 2.4rem); }
  .section-sub { font-size: 0.92rem; }
  .services__grid { grid-template-columns: 1fr; gap: 16px; }
  .service-card { padding: 26px 20px; }
  .service-card__title { font-size: 1.1rem; }
  .service-card__desc { font-size: 0.85rem; }
  .work__grid { grid-template-columns: 1fr; gap: 20px; }
  .work-card--wide { grid-column: 1; }
  .work-card--wide .work-card__image-wrap { aspect-ratio: 16/9; }
  .work-card__info { padding: 20px; }
  .work-card__title { font-size: 1.2rem; }
  .work-card__desc { font-size: 0.85rem; }
  .team__grid { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; gap: 20px; }
  .team-card__image-wrap { aspect-ratio: 3/2; }
  .team-card__info { padding: 20px 22px 24px; }
  .team-card__name { font-size: 1.1rem; }
  .team-card__bio { font-size: 0.82rem; }
  .contact__inner { grid-template-columns: 1fr; border-radius: var(--r-lg); }
  .contact__left { padding: 36px 24px; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .contact__right { padding: 36px 24px; }
  .contact__left::after { display: none; }
  .contact__headline { font-size: clamp(1.6rem, 5vw, 2.2rem); }
  .contact__body { font-size: 0.9rem; margin-bottom: 24px; }
  .contact-form { gap: 16px; }
  .form-input { padding: 12px 14px; font-size: 0.85rem; }
  .footer__inner { flex-direction: column; gap: 36px; }
  .footer__nav { flex-direction: column; gap: 24px; }
  .footer__bottom { flex-direction: column; gap: 8px; text-align: center; }
  .cursor, .cursor-follower { display: none; }
  body { cursor: auto; }
}

@media (max-width: 480px) {
  .hero { padding: 110px 16px 50px; }
  .hero__headline { font-size: clamp(1.8rem, 8vw, 2.3rem); }
  .hero__eyebrow { font-size: 0.55rem; }
  .hero__sub { font-size: 0.88rem; }
  .hero__stats { gap: 14px; }
  .stat-num { font-size: 1.3rem; }
  .about__values-grid { grid-template-columns: 1fr; }
  .navbar__inner { padding: 14px 16px; }
  .logo-text { font-size: 1.1rem; }
  .contact__left, .contact__right { padding: 28px 16px; }
  .service-card { padding: 22px 16px; }
  .team__grid { max-width: 100%; }
}

/* Remove old embossed divider that conflicts with dark video sections */
/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   INTERACTIVE CANVAS ANIMATION
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.hero__canvas-wrap {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  pointer-events: auto;
  overflow: hidden;
}

.hero__canvas {
  display: block;
  width: 100%;
  height: 100%;
  /* Keep original orbs visible beneath */
}

/* Click hint pill */
.canvas-hint {
  position: absolute;
  bottom: 24px;
  right: 28px;
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(107,79,255,0.18);
  border-radius: var(--r-pill);
  padding: 8px 18px;
  font-family: 'DM Mono', monospace;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  pointer-events: none;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
  box-shadow: 0 4px 20px rgba(107,79,255,0.08);
  white-space: nowrap;
}
.canvas-hint.visible {
  opacity: 1;
  transform: translateY(0);
}
.canvas-hint.fade-out {
  opacity: 0;
  transform: translateY(-4px);
}

/* Ensure hero content and all page content sits ABOVE the fixed canvas */
.hero { z-index: 1; }
.hero .orbs-container { z-index: 0; }
.hero__content { z-index: 2; }
.hero__visual   { z-index: 2; }
.hero__scroll-hint { z-index: 2; }
.hero__grid { z-index: 0; }

/* Nav is always above canvas */
.navbar { z-index: 1000; }
#preloader { z-index: 10000; }
.cursor, .cursor-follower { z-index: 9999; }

/* â”â” GLOBAL CANVAS BLEED-THROUGH â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”
   Sections use semi-transparent backgrounds so the fixed canvas
   animation is visible across the entire website as you scroll.
   â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â”â” */

/* Light sections â€” warm off-white at 86% opacity */
.about,
.work,
.contact {
  position: relative;
  z-index: 2;
  background: rgba(245, 242, 238, 0.86);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

/* Alternate light sections â€” slightly warmer tint at 86% */
.services,
.team {
  position: relative;
  z-index: 2;
  background: rgba(237, 233, 227, 0.86);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

/* Footer â€” dark background so white text stays readable, 93% opaque */
.footer {
  position: relative;
  z-index: 2;
  background: rgba(10, 10, 15, 0.93);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

/* On mobile â€” hide canvas completely */
@media (max-width: 768px) {
  .hero__canvas-wrap { display: none; }
  .canvas-hint { display: none; }
  .about, .work, .contact { background: rgba(245, 242, 238, 1); backdrop-filter: none; }
  .services, .team { background: rgba(237, 233, 227, 1); backdrop-filter: none; }
  .footer { background: rgba(10, 10, 15, 1); backdrop-filter: none; }
}
