body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-tap-highlight-color: transparent;
}

::-moz-selection {
  background-color: #f0ebe3;
  color: #080808;
}

::selection {
  background-color: #f0ebe3;
  color: #080808;
}

.noise-bg {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.hero-line {
  clip-path: polygon(0 -10%, 100% -10%, 100% 100%, 0 100%);
}

.reveal-clip {
  clip-path: polygon(0 -10%, 100% -10%, 100% -10%, 0 -10%);
}

.parallax-hero {
  will-change: transform;
}

.tilt-card {
  will-change: transform;
}

.cta-glow {
  position: relative;
  overflow: hidden;
}

.cta-glow::before,
.cta-glow::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  z-index: 0;
  transition: all 0.5s ease;
}

.cta-glow::before {
  width: 48px;
  height: 48px;
  right: 4px;
  top: 4px;
  background: #f0ebe3;
  opacity: 0.15;
  filter: blur(16px);
}

.cta-glow::after {
  width: 64px;
  height: 64px;
  right: 24px;
  top: 10px;
  background: #fff;
  opacity: 0.08;
  filter: blur(24px);
}

.cta-glow:hover::before {
  right: 40px;
  bottom: -16px;
  top: auto;
  opacity: 0.28;
  box-shadow: 15px 15px 15px 20px rgba(240, 235, 227, 0.2);
}

.cta-glow:hover::after {
  right: -16px;
  opacity: 0.18;
}

.cta-glow > * {
  position: relative;
  z-index: 10;
}

.card-glow {
  position: relative;
  overflow: hidden;
}

.card-glow::after {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(240, 235, 227, 0.04);
  filter: blur(30px);
  z-index: 0;
  transition: all 0.6s ease;
  pointer-events: none;
}

.card-glow:hover::after {
  width: 200px;
  height: 200px;
  top: -60px;
  right: -60px;
  background: rgba(240, 235, 227, 0.08);
}

.timeline-dot {
  animation: dotPulse 3s ease-in-out infinite;
}

@keyframes dotPulse {
  0%, 100% { box-shadow: 0 0 12px rgba(255,255,255,0.25), 0 0 24px rgba(255,255,255,0.10); }
  50% { box-shadow: 0 0 20px rgba(255,255,255,0.40), 0 0 36px rgba(255,255,255,0.18); }
}

