/* ===== HOME PAGE CINEMATIC STYLES ===== */

.btn-glass {
  background: rgba(255,255,255,0.08);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.btn-glass:hover { background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.5); transform: translateY(-2px); }

/* VIDEO HERO */
.video-hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}
.video-wrap { position: absolute; inset: 0; z-index: 0; }
.hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.3;
  filter: saturate(0.5) brightness(0.8);
}

/* Animated gradient overlay */
.hero-gradient-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(110deg,
    rgba(6,14,31,0.94) 0%,
    rgba(10,24,56,0.80) 45%,
    rgba(6,14,31,0.60) 100%
  );
  animation: gradientPulse 10s ease-in-out infinite alternate;
}
@keyframes gradientPulse {
  0%   { opacity: 1; }
  100% { opacity: 0.88; }
}

/* Grid lines */
.hero-grid-lines {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(26,111,232,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26,111,232,0.07) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.6) 20%, rgba(0,0,0,0.6) 80%, transparent 100%);
}

/* Glow orbs */
.glow-orb { position: absolute; border-radius: 50%; pointer-events: none; filter: blur(80px); }
.orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(26,111,232,0.22), transparent 65%);
  top: -100px; left: -150px;
  animation: orb1 18s ease-in-out infinite;
}
.orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(0,198,255,0.12), transparent 65%);
  bottom: 0; right: 8%;
  animation: orb2 22s ease-in-out infinite;
}
.orb-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(240,165,0,0.07), transparent 65%);
  top: 40%; left: 55%;
  animation: orb3 16s ease-in-out infinite;
}
@keyframes orb1 {
  0%,100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(80px,60px) scale(1.1); }
  66% { transform: translate(-40px,100px) scale(0.9); }
}
@keyframes orb2 {
  0%,100% { transform: translate(0,0); }
  50% { transform: translate(-80px,-70px); }
}
@keyframes orb3 {
  0%,100% { transform: translate(-50%,-50%) scale(1); }
  50% { transform: translate(-50%,-50%) scale(1.5); }
}

/* Hero content */
.video-hero-content {
  position: relative; z-index: 2;
  padding: 100px 28px 80px;
  max-width: 880px;
}

/* Eyebrow badge */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 32px;
  padding: 7px 18px 7px 10px;
  background: rgba(0,198,255,0.08);
  border: 1px solid rgba(0,198,255,0.2);
  border-radius: 50px;
  backdrop-filter: blur(8px);
}
.eyebrow-dot {
  width: 8px; height: 8px;
  background: var(--cyan);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--cyan), 0 0 22px rgba(0,198,255,0.4);
  animation: pulseCyan 2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes pulseCyan {
  0%,100% { transform: scale(1); box-shadow: 0 0 10px var(--cyan); }
  50% { transform: scale(0.6); box-shadow: 0 0 3px var(--cyan); }
}

/* Title lines */
.video-hero-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(3rem, 7.5vw, 6rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.0;
  margin-bottom: 28px;
  letter-spacing: -2px;
  display: flex;
  flex-direction: column;
}
.title-line {
  display: block;
  opacity: 0;
  transform: translateY(40px);
  animation: lineReveal 0.85s cubic-bezier(0.16,1,0.3,1) forwards;
}
.delay-1 { animation-delay: 0.18s; }
.delay-2 { animation-delay: 0.36s; }
.delay-3 { animation-delay: 0.54s; }
.delay-4 { animation-delay: 0.72s; }
.delay-5 { animation-delay: 0.90s; }
@keyframes lineReveal {
  to { opacity: 1; transform: translateY(0); }
}

/* Gradient animated text */
.gradient-text {
  background: linear-gradient(135deg, #00c6ff 0%, #1a6fe8 45%, #a855f7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200%;
  animation: gradientMove 5s ease infinite;
}
@keyframes gradientMove {
  0%,100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* Fade-up animations */
.reveal-fade {
  opacity: 0;
  transform: translateY(22px);
  animation: fadeUp 0.8s cubic-bezier(0.16,1,0.3,1) forwards;
}
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

.video-hero-sub {
  font-size: 1.08rem;
  color: rgba(255,255,255,0.68);
  max-width: 560px;
  line-height: 1.82;
  margin-bottom: 44px;
}

.video-hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 64px; }

/* Stats bar */
.hero-stats-bar {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 20px 28px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  backdrop-filter: blur(16px);
  width: fit-content;
  flex-wrap: wrap;
  row-gap: 16px;
}
.hstat { display: flex; flex-direction: column; padding: 0 28px; }
.hstat:first-child { padding-left: 0; }
.hstat-n {
  font-family: 'Oswald', sans-serif;
  font-size: 1.9rem; font-weight: 700;
  color: var(--white); line-height: 1; letter-spacing: -1px;
}
.hstat-l { font-size: 0.68rem; color: rgba(255,255,255,0.45); margin-top: 4px; text-transform: uppercase; letter-spacing: 1.5px; }
.hstat-sep { width: 1px; height: 32px; background: rgba(255,255,255,0.1); }

/* Scroll cue */
.hero-scroll-cue {
  position: absolute; bottom: 32px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  opacity: 0;
  animation: fadeUp 0.8s 1.3s forwards;
}
.hero-scroll-cue span { font-size: 0.62rem; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,0.28); }
.scroll-mouse { width: 24px; height: 40px; border: 1.5px solid rgba(255,255,255,0.18); border-radius: 12px; display: flex; justify-content: center; padding-top: 6px; }
.scroll-wheel { width: 3px; height: 7px; background: var(--cyan); border-radius: 3px; box-shadow: 0 0 6px var(--cyan); animation: wheelScroll 2s ease-in-out infinite; }
@keyframes wheelScroll {
  0% { transform: translateY(0); opacity: 1; }
  80% { transform: translateY(14px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

/* ===== TICKER BAND ===== */
.ticker-band {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  border-top: 1px solid rgba(26,111,232,0.25);
  border-bottom: 1px solid rgba(26,111,232,0.25);
  overflow: hidden;
  height: 52px;
  display: flex;
  align-items: center;
}
.ticker-track {
  display: flex; align-items: center;
  white-space: nowrap;
  animation: tickerScroll 32s linear infinite;
  width: max-content;
}
.ticker-track:hover { animation-play-state: paused; }
.ticker-track span {
  font-size: 0.78rem; font-weight: 500;
  letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  padding: 0 28px;
  transition: color 0.2s;
}
.ticker-track span:hover { color: var(--cyan); }
.ticker-dot { color: var(--blue) !important; font-size: 0.5rem !important; padding: 0 4px !important; }
@keyframes tickerScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== BIG STATEMENT SECTION ===== */
.big-statement {
  padding: 120px 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.big-statement::before {
  content: 'TCM';
  position: absolute;
  right: -40px; top: 50%;
  transform: translateY(-50%);
  font-family: 'Oswald', sans-serif;
  font-size: 22vw;
  font-weight: 700;
  color: rgba(26,111,232,0.025);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  letter-spacing: -8px;
}
.statement-inner {
  display: grid;
  grid-template-columns: 200px 1fr auto;
  gap: 60px;
  align-items: center;
}
.statement-label { padding-top: 8px; }
.statement-text {}
.statement-p1 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.6rem, 3.5vw, 2.8rem);
  font-weight: 400;
  color: var(--gray-500);
  line-height: 1.2;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}
.statement-p1 em { font-style: italic; color: var(--navy); }
.statement-p2 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2rem, 4.5vw, 3.8rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: -1.5px;
}
.statement-p3 {
  font-size: 1.12rem;
  color: var(--gray-500);
  line-height: 1.75;
  max-width: 580px;
}
.statement-p3 strong { color: var(--blue); font-weight: 600; }
.statement-cta { flex-shrink: 0; }

/* ===== SPLIT SHOWCASE ===== */
.split-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
}
.split-left, .split-right {
  position: relative;
  background-size: cover;
  background-position: center;
  display: flex; align-items: flex-end;
  overflow: hidden;
}
.split-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(6,14,31,0.92) 0%, rgba(6,14,31,0.45) 55%, rgba(6,14,31,0.15) 100%);
  transition: all 0.4s ease;
}
.split-left:hover .split-overlay,
.split-right:hover .split-overlay { background: linear-gradient(0deg, rgba(6,14,31,0.97) 0%, rgba(6,14,31,0.65) 100%); }
.split-content { position: relative; z-index: 2; padding: 52px 44px; }
.split-content .solution-tag {
  font-size: 10px; font-weight: 700; letter-spacing: 3.5px; text-transform: uppercase;
  color: var(--cyan); margin-bottom: 14px;
  display: flex; align-items: center; gap: 8px;
}
.split-content .solution-tag::before { content: ''; width: 20px; height: 1.5px; background: var(--cyan); display: inline-block; }
.split-content h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 2rem; font-weight: 600; color: var(--white);
  margin-bottom: 14px; letter-spacing: -0.5px;
}
.split-content p { font-size: 0.9rem; color: rgba(255,255,255,0.65); margin-bottom: 28px; line-height: 1.72; max-width: 380px; }

/* ===== PHOTO STRIP ===== */
.photo-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: 280px;
}
.photo-strip-item {
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  transition: flex 0.5s ease;
}
.photo-strip-item::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(6,14,31,0.35);
  transition: background 0.4s ease;
}
.photo-strip-item:hover::after { background: rgba(6,14,31,0.05); }
.photo-strip-item:hover { transform: scaleY(1.03); }

/* ===== RESPONSIVE OVERRIDES ===== */
@media (max-width: 1024px) {
  .statement-inner { grid-template-columns: 1fr; gap: 28px; }
  .statement-cta { margin-top: 4px; }
  .photo-strip { grid-template-columns: 1fr 1fr; height: 320px; }
}

@media (max-width: 768px) {
  .video-hero { min-height: 100svh; min-height: 100vh; }
  .video-hero-content { padding: 80px 18px 60px; }
  .video-hero-title { font-size: clamp(2.4rem, 10vw, 3.4rem) !important; letter-spacing: -1px; }
  .video-hero-sub { font-size: 0.95rem; max-width: 100%; }
  .video-hero-cta { flex-direction: column; gap: 12px; }
  .video-hero-cta .btn { width: 100% !important; justify-content: center; }
  .hero-stats-bar {
    width: 100%; padding: 16px 18px;
    display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
    border-radius: 12px;
  }
  .hstat { padding: 0; }
  .hstat-sep { display: none; }
  .hstat-n { font-size: 1.5rem; }
  .hstat-l { font-size: 0.62rem; }
  .ticker-band { height: 42px; }
  .ticker-track span { font-size: 0.7rem; padding: 0 16px; }
  .big-statement { padding: 60px 0; }
  .big-statement::before { display: none; }
  .statement-inner { display: flex; flex-direction: column; gap: 20px; }
  .statement-p1 { font-size: clamp(1.2rem, 5vw, 1.7rem); }
  .statement-p2 { font-size: clamp(1.7rem, 7vw, 2.6rem); letter-spacing: -0.5px; }
  .statement-p3 { font-size: 0.97rem; }
  .split-showcase { grid-template-columns: 1fr; }
  .split-left, .split-right { min-height: 300px; }
  .split-content { padding: 32px 20px; }
  .split-content h3 { font-size: 1.5rem; }
  .photo-strip { grid-template-columns: 1fr 1fr; height: 240px; }
  .hero-scroll-cue { display: none; }
  .hero-eyebrow { font-size: 0.64rem; letter-spacing: 2.5px; padding: 6px 14px 6px 8px; }
}

@media (max-width: 420px) {
  .video-hero-content { padding: 72px 14px 52px; }
  .video-hero-title { font-size: clamp(2rem, 11vw, 2.8rem) !important; }
  .photo-strip { height: 200px; }
  .hero-stats-bar { grid-template-columns: 1fr 1fr; padding: 14px; gap: 12px; }
  .split-left, .split-right { min-height: 260px; }
}
