@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');
@import url('https://api.fontshare.com/v2/css?f[]=cabinet-grotesk@500,700,800,900&display=swap');

:root {
  --primary-accent: #ff5e14;
  --primary-glow: rgba(255, 94, 20, 0.4);
  --bg-dark: #08080a;
  --bg-card: #121216;
  --bg-card-hover: #181820;
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-active: rgba(255, 94, 20, 0.45);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Space Grotesk', 'Plus Jakarta Sans', sans-serif;
  background-color: var(--bg-dark);
  color: #f1f1f5;
  overflow-x: hidden;
  letter-spacing: -0.01em;
}

::selection {
  background: #ff5e14;
  color: #ffffff;
}

/* Headings font */
h1, h2, h3, h4, .font-display {
  font-family: 'Space Grotesk', 'Cabinet Grotesk', sans-serif;
  letter-spacing: -0.035em;
}

/* White and Silver Metallic Gradient Classes */
.text-silver-gradient {
  background: linear-gradient(180deg, #ffffff 0%, #e2e8f0 45%, #94a3b8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-silver-bright {
  background: linear-gradient(135deg, #ffffff 10%, #f1f5f9 45%, #cbd5e1 75%, #ffffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-silver-subtle {
  background: linear-gradient(180deg, #f8fafc 0%, #cbd5e1 60%, #64748b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-accent {
  color: #ff5e14;
}

.text-accent-gradient {
  background: linear-gradient(135deg, #ff8e50, #ff5e14);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 7px;
}
::-webkit-scrollbar-track {
  background: #09090c;
}
::-webkit-scrollbar-thumb {
  background: #25252e;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary-accent);
}

/* Glass Card */
.glass-card {
  background: rgba(18, 18, 22, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-subtle);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
	.glass-card:hover {
  border-color: rgba(255, 94, 20, 0.4);
  box-shadow: 0 14px 35px -10px rgba(0, 0, 0, 0.8), 0 0 25px -5px var(--primary-glow);
}

/* Glowing Border Pill */
.glow-badge {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Vibrant Orange Button */
.btn-accent {
  background: linear-gradient(135deg, #ff6b2b 0%, #ff4500 100%);
  color: #ffffff;
  box-shadow: 0 8px 24px -6px rgba(255, 69, 0, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px -4px rgba(255, 69, 0, 0.75), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #ffffff;
  transition: all 0.25s ease;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

/* Ambient Glows */
.glow-ambient {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  pointer-events: none;
  z-index: 0;
}

/* Grid Background */
.bg-grid-pattern {
  background-size: 40px 40px;
  background-image: 
    linear-gradient(to right, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
}

/* Hero Portrait Styles */
.hero-portrait-container {
  position: relative;
  width: 100%;
  max-width: 580px;
  margin: 0 auto;
}

.hero-portrait-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center 15%;
  border-radius: 28px;
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 50%, rgba(0,0,0,0) 98%);
  mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 50%, rgba(0,0,0,0) 98%);
  filter: contrast(108%) brightness(95%);
}

@media (max-width: 768px) {
  .hero-portrait-img {
    height: 380px;
  }
}

.hero-giant-name {
  font-family: 'Space Grotesk', 'Cabinet Grotesk', sans-serif;
  font-weight: 700;
  letter-spacing: -0.06em;
  line-height: 0.82;
  background: linear-gradient(180deg, #ffffff 15%, #e2e8f0 50%, #94a3b8 95%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: clamp(4.5rem, 18vw, 16.5rem);
  user-select: none;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.5));
}

.btn-hero-cta {
  background: #ff5e14;
  color: #ffffff;
  padding: 8px 24px 8px 10px;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 10px 30px -5px rgba(255, 94, 20, 0.4);
}

.btn-hero-cta:hover {
  transform: translateY(-2px) scale(1.02);
  background: #ff4500;
  box-shadow: 0 16px 36px -4px rgba(255, 94, 20, 0.6);
}
	.btn-hero-arrow {
  width: 36px;
  height: 36px;
  background: #ffffff;
  color: #ff5e14;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.btn-hero-cta:hover .btn-hero-arrow {
  transform: translateX(3px);
}

/* Dual Infinite Animated Marquee Showcase */
.marquee-wrapper {
  display: flex;
  overflow: hidden;
  user-select: none;
  width: 100%;
  position: relative;
  padding: 10px 0;
  mask-image: linear-gradient(to right, transparent 0%, black 2%, black 98%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 2%, black 98%, transparent 100%);
}

.marquee-track-left {
  display: flex;
  flex-shrink: 0;
  gap: 24px;
  animation: marqueeLeft 28s linear infinite;
  will-change: transform;
}

.marquee-track-right {
  display: flex;
  flex-shrink: 0;
  gap: 24px;
  animation: marqueeRight 28s linear infinite;
  will-change: transform;
}

.marquee-track-left-reviews {
  display: flex;
  flex-shrink: 0;
  gap: 24px;
  animation: marqueeLeft 36s linear infinite;
  will-change: transform;
}

.marquee-track-right-reviews {
  display: flex;
  flex-shrink: 0;
  gap: 24px;
  animation: marqueeRight 36s linear infinite;
  will-change: transform;
}

.marquee-wrapper:hover .marquee-track-left,
.marquee-wrapper:hover .marquee-track-right,
.marquee-wrapper:hover .marquee-track-left-reviews,
.marquee-wrapper:hover .marquee-track-right-reviews {
  animation-play-state: paused;
}



.marquee-card {
  width: 300px;
  aspect-ratio: 16 / 9;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  background: #111116;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 12px 30px -8px rgba(0, 0, 0, 0.8);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .marquee-card {
    width: 380px;
  }
}

.marquee-card:hover {
  transform: translateY(-6px) scale(1.04);
  border-color: #ff5e14;
  box-shadow: 0 20px 45px -10px rgba(255, 94, 20, 0.45);
}

/* Testimonial Marquee Card */
.testimonial-marquee-card {
  width: 340px;
  min-height: 220px;
  border-radius: 22px;
  background: rgba(18, 18, 22, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.09);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.7);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .testimonial-marquee-card {
    width: 400px;
    min-height: 230px;
  }
}

.testimonial-marquee-card:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: rgba(255, 94, 20, 0.4);
  background: rgba(24, 24, 30, 0.95);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.9), 0 0 20px rgba(255, 94, 20, 0.12);
}

/* 60 FPS GPU Acceleration & Smooth Motion */
*, *::before, *::after {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.gpu-accelerated,
.marquee-track-left,
.marquee-track-right,
.marquee-track-left-reviews,
.marquee-track-right-reviews,
.marquee-card,
.testimonial-marquee-card,
.thumb-card,
.hero-portrait-img {
  transform: translate3d(0, 0, 0);
  -webkit-transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

@keyframes marqueeLeft {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(calc(-50% - 12px), 0, 0); }
}

@keyframes marqueeRight {
  0% { transform: translate3d(calc(-50% - 12px), 0, 0); }
  100% { transform: translate3d(0, 0, 0); }
}

/* Framer-Style Blur Reveal Animation on Scroll */
.reveal {
  opacity: 0;
  filter: blur(14px);
  transform: translate3d(0, 32px, 0) scale(0.97);
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1),
              filter 0.85s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, filter, transform;
}

.reveal.is-revealed {
  opacity: 1;
  filter: blur(0px);
  transform: translate3d(0, 0, 0) scale(1);
}

/* Stagger Delays */
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* Image Blur Reveal Effect */
img.img-reveal {
  opacity: 0;
  filter: blur(12px);
  transform: scale(1.08) translate3d(0, 0, 0);
  transition: opacity 0.95s cubic-bezier(0.16, 1, 0.3, 1),
              filter 0.95s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.95s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, filter, transform;
}

img.img-reveal.is-revealed {
  opacity: 1;
  filter: blur(0px);
  transform: scale(1) translate3d(0, 0, 0);
}

/* Individual Hero Components Staggered Blur Reveal Animations */
@keyframes heroRevealLeft {
  0% {
    opacity: 0;
    filter: blur(14px);
    transform: translate3d(-30px, 20px, 0);
  }
  100% {
    opacity: 1;
    filter: blur(0px);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes heroRevealCenter {
  0% {
    opacity: 0;
    filter: blur(18px);
    transform: translate3d(0, 40px, 0) scale(0.90);
  }
  100% {
    opacity: 1;
    filter: blur(0px);
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes heroRevealRight {
  0% {
    opacity: 0;
    filter: blur(14px);
    transform: translate3d(30px, 20px, 0);
  }
  100% {
    opacity: 1;
    filter: blur(0px);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes heroRevealBottomName {
  0% {
    opacity: 0;
    filter: blur(20px);
    transform: translate3d(0, 50px, 0) scale(0.94);
  }
  100% {
    opacity: 1;
    filter: blur(0px);
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes heroRevealLogos {
  0% {
    opacity: 0;
    filter: blur(10px);
    transform: translate3d(0, 15px, 0);
  }
  100% {
    opacity: 1;
    filter: blur(0px);
    transform: translate3d(0, 0, 0);
  }
}

.hero-reveal-left {
  opacity: 0;
  animation: heroRevealLeft 0.95s cubic-bezier(0.16, 1, 0.3, 1) 0.1s forwards;
  will-change: opacity, filter, transform;
}

.hero-reveal-center {
  opacity: 0;
  animation: heroRevealCenter 1.05s cubic-bezier(0.16, 1, 0.3, 1) 0.25s forwards;
  will-change: opacity, filter, transform;
}

.hero-reveal-right {
  opacity: 0;
  animation: heroRevealRight 0.95s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
  will-change: opacity, filter, transform;
}

.hero-reveal-bottom-name {
  opacity: 0;
  animation: heroRevealBottomName 1.1s cubic-bezier(0.16, 1, 0.3, 1) 0.55s forwards;
  will-change: opacity, filter, transform;
}

.hero-reveal-logos {
  opacity: 0;
  animation: heroRevealLogos 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.7s forwards;
  will-change: opacity, filter, transform;
}

/* Modal Backdrop */
.modal-backdrop {
  background: rgba(4, 4, 6, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
