/* ============================================================
   AdityaStream Studios — Main Stylesheet
   ============================================================
   HOW TO CUSTOMIZE:
   - Change colors in :root variables below
   - --red        : Main brand red color
   - --gold       : Accent gold color
   - --dark       : Main background
   - --txt        : Main text color
   - --muted2     : Subtitle / secondary text
   ============================================================ */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

/* ── BRAND COLORS (edit these to retheme the whole site) ── */
:root {
  --red: #D10000;
  --red2: #FF2020;
  --red-glow: rgba(209, 0, 0, 0.15);
  --gold: #C9A84C;
  --dark: #06080D;
  --dark2: #090C13;
  --dark3: #0D1119;
  --card: #0B0E16;
  --card2: #10141F;
  --line: rgba(255, 255, 255, 0.07);
  --line-red: rgba(209, 0, 0, 0.35);
  --txt: #F0F2F8;
  --muted: #6B7385;
  --muted2: #9AA0B0;
  --mono: 'DM Mono', monospace;
  --sans: 'Montserrat', sans-serif;
  --body: 'Inter', var(--sans);
  --radius: 6px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
  background: var(--dark);
  color: var(--txt);
  font-family: var(--sans);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Grain texture overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9000;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)' opacity='0.03'/%3E%3C/svg%3E");
}

::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--red); }

/* ── NAVIGATION ── */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 800;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  transition: background 0.4s, box-shadow 0.4s, border-color 0.4s;
  border-bottom: 1px solid transparent;
}

#nav.scrolled {
  background: rgba(6, 8, 13, 0.85);
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.nav-logo img { height: 44px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 38px;
  list-style: none;
}

.nav-links a {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--muted2);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--txt); }

.nav-cta {
  padding: 10px 26px;
  background: var(--red);
  color: #fff !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 2px !important;
  text-transform: uppercase;
  transition: background 0.3s, box-shadow 0.3s, transform 0.3s;
  text-decoration: none;
  display: inline-block;
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
}

.nav-cta::after {
  content: '';
  position: absolute;
  top: -50%; left: -60%;
  width: 40%; height: 200%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transform: skewX(-20deg);
  transition: left 0.6s;
}

.nav-cta:hover::after { left: 120%; }

.nav-cta:hover {
  background: var(--red2);
  box-shadow: 0 4px 24px rgba(209, 0, 0, 0.5);
  transform: translateY(-1px);
}

/* Active nav link */
.nav-links a.active { color: var(--red); }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { width: 22px; height: 1.5px; background: var(--txt); transition: all 0.3s; }

/* ── HERO ── */
#hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 120px 4% 80px;
  position: relative;
  overflow: hidden;
  gap: 60px;
}

.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 90% 70% at 80% 30%, rgba(209,0,0,0.09) 0%, transparent 55%),
    radial-gradient(ellipse 60% 80% at 0% 100%, rgba(201,168,76,0.04) 0%, transparent 50%),
    linear-gradient(160deg, var(--dark) 0%, #040609 100%);
}

.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 100% 100% at 100% 0%, black 10%, transparent 70%);
  animation: gridpulse 6s ease-in-out infinite;
}

@keyframes gridpulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.7; }
}

.hero-left { position: relative; z-index: 2; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 32px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--gold);
  text-transform: uppercase;
  opacity: 0;
  animation: fadeup 1s 0.2s ease forwards;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px; height: 1px;
  background: var(--gold);
}

.hero-h1 {
  font-weight: 900;
  font-size: clamp(44px, 6vw, 80px);
  line-height: 1.0;
  letter-spacing: -1px;
  color: var(--txt);
  text-shadow: 0 2px 40px rgba(0,0,0,0.5);
  opacity: 0;
  animation: fadeup 1s 0.35s ease forwards;
}

.hero-h1 em { font-style: normal; color: var(--red); text-shadow: 0 0 60px rgba(209,0,0,0.3); }
.hero-h1 .thin { font-weight: 300; color: var(--muted2); }

.hero-sub {
  margin-top: 24px;
  font-size: 16px;
  font-weight: 400;
  color: var(--muted2);
  line-height: 1.75;
  max-width: 480px;
  opacity: 0;
  animation: fadeup 1s 0.5s ease forwards;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 44px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeup 1s 0.65s ease forwards;
}

.btn-red {
  padding: 14px 36px;
  background: var(--red);
  color: #fff;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--red);
  border-radius: var(--radius);
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
}

.btn-red::after {
  content: '';
  position: absolute;
  top: -50%; left: -60%;
  width: 40%; height: 200%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent);
  transform: skewX(-20deg);
  transition: left 0.6s;
}

.btn-red:hover::after { left: 120%; }

.btn-red:hover {
  background: var(--red2);
  box-shadow: 0 8px 32px rgba(209, 0, 0, 0.45);
  transform: translateY(-2px);
}

.btn-ghost {
  padding: 14px 36px;
  border: 1px solid var(--line);
  color: var(--muted2);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--radius);
  transition: all var(--transition);
}

.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--txt);
  background: rgba(255,255,255,0.03);
  transform: translateY(-2px);
}

.hero-metrics {
  display: flex;
  justify-content: space-between;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
  opacity: 0;
  animation: fadeup 1s 0.8s ease forwards;
}

.metric-num {
  font-weight: 800;
  font-size: clamp(18px, 2.2vw, 28px);
  color: var(--txt);
  letter-spacing: -1px;
  line-height: 1;
  white-space: nowrap;
}

.metric-num span { color: var(--red); }

.metric-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 6px;
}

/* Hero monitor */
.hero-right {
  position: relative;
  z-index: 2;
  opacity: 0;
  animation: faderight 1.2s 0.4s ease forwards;
}

@keyframes faderight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

.monitor-wrap {
  position: relative;
  padding: 2px;
  background: linear-gradient(135deg, rgba(209,0,0,0.5) 0%, rgba(255,255,255,0.05) 50%, rgba(209,0,0,0.2) 100%);
}

.monitor-inner { background: var(--card); position: relative; overflow: hidden; }

.monitor-top-bar {
  padding: 10px 16px;
  background: rgba(0, 0, 0, 0.5);
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 8px;
}

.dot { width: 8px; height: 8px; border-radius: 50%; }
.dot.r { background: #D10000; }
.dot.y { background: #C9A84C; }
.dot.g { background: #22c55e; }

.monitor-url {
  margin-left: 12px;
  font-family: var(--mono);
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 1px;
  flex: 1;
  text-align: center;
}

.monitor-screen {
  aspect-ratio: 16/9;
  background: linear-gradient(160deg, #08111e 0%, #04080f 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.screen-glow {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 70% at 50% 50%, rgba(209,0,0,0.12) 0%, transparent 65%);
}

.screen-lines {
  position: absolute; inset: 0;
  background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0,0,0,0.15) 2px, rgba(0,0,0,0.15) 3px);
}

.screen-logo { position: relative; z-index: 2; width: 55%; opacity: 0.85; }

.live-badge {
  position: absolute; top: 14px; right: 14px;
  display: flex; align-items: center; gap: 6px;
  padding: 5px 12px;
  background: rgba(209, 0, 0, 0.9);
  font-family: var(--mono);
  font-size: 9px; font-weight: 500;
  letter-spacing: 2px; color: #fff; text-transform: uppercase;
}

.live-dot {
  width: 5px; height: 5px;
  border-radius: 50%; background: #fff;
  animation: blink 1s infinite;
}

@keyframes blink {
  0%, 49% { opacity: 1; }
  50%, 100% { opacity: 0; }
}

.monitor-hud {
  padding: 12px 16px;
  background: rgba(0, 0, 0, 0.6);
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hud-stat { font-family: var(--mono); font-size: 9px; letter-spacing: 1.5px; color: var(--muted); }
.hud-stat strong { color: var(--red); font-weight: 500; }

.float-card {
  position: absolute;
  background: rgba(11, 14, 22, 0.7);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(20px) saturate(1.3);
  -webkit-backdrop-filter: blur(20px) saturate(1.3);
  padding: 16px 20px;
  border-radius: 10px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.float-card.fc1 { bottom: -20px; left: -30px; animation: float1 4s ease-in-out infinite; }
.float-card.fc2 { top: -16px; right: -20px; animation: float2 5s ease-in-out infinite; }

@keyframes float1 { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes float2 { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(8px); } }

.fc-label { font-family: var(--mono); font-size: 9px; letter-spacing: 2px; color: var(--red); text-transform: uppercase; margin-bottom: 4px; }
.fc-val { font-size: 13px; font-weight: 700; color: var(--txt); letter-spacing: 0.5px; }

/* ── TICKER ── */
.ticker { padding: 14px 0; background: var(--red); overflow: hidden; white-space: nowrap; }
.ticker-track { display: inline-flex; animation: ticker 25s linear infinite; }

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

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  padding: 0 28px;
  font-family: var(--mono);
  font-size: 11px; font-weight: 500;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
}

.ticker-item::after { content: '◆'; color: rgba(255,255,255,0.4); font-size: 8px; margin-left: 28px; }

/* ── SHARED SECTION STYLES ── */
.section { padding: 120px 5%; }
.section-alt { background: var(--dark2); }

.label-row { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.label-line { width: 40px; height: 1px; background: var(--red); }
.label-txt { font-family: var(--mono); font-size: 10px; letter-spacing: 3px; color: var(--red); text-transform: uppercase; }

.section-h {
  font-weight: 900;
  font-size: clamp(32px, 4.5vw, 58px);
  letter-spacing: -0.5px;
  line-height: 1.05;
  color: var(--txt);
}

.section-h em { font-style: normal; color: var(--red); }
.section-h .muted { color: var(--muted); font-weight: 300; }

.section-p {
  font-size: 16px;
  color: var(--muted2);
  line-height: 1.8;
  font-weight: 400;
  max-width: 540px;
  margin-top: 16px;
}

/* ── 3D ICON GLOBAL (Enhanced Professional) ── */
.icon3d {
  width: 72px; height: 72px;
  display: block; margin-bottom: 20px;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.4)) drop-shadow(0 0 15px rgba(209,0,0,0.3));
  transition: filter 0.5s cubic-bezier(0.4, 0, 0.2, 1), transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  transform-style: preserve-3d;
  perspective: 600px;
  animation: iconFloat 4s ease-in-out infinite;
  position: relative;
}

/* Stagger float animation per card */
.svc:nth-child(2) .icon3d, .pillar:nth-child(2) .icon3d { animation-delay: 0.5s; }
.svc:nth-child(3) .icon3d, .pillar:nth-child(3) .icon3d { animation-delay: 1s; }
.svc:nth-child(4) .icon3d, .pillar:nth-child(4) .icon3d { animation-delay: 1.5s; }
.svc:nth-child(5) .icon3d { animation-delay: 2s; }
.svc:nth-child(6) .icon3d { animation-delay: 2.5s; }
.svc:nth-child(7) .icon3d { animation-delay: 3s; }
.svc:nth-child(8) .icon3d { animation-delay: 3.5s; }

@keyframes iconFloat {
  0%, 100% { transform: translateY(0) rotateX(0deg) rotateY(0deg); }
  25% { transform: translateY(-6px) rotateX(3deg) rotateY(-3deg); }
  50% { transform: translateY(-10px) rotateX(-2deg) rotateY(5deg); }
  75% { transform: translateY(-4px) rotateX(4deg) rotateY(-2deg); }
}

/* Glowing ring under icon */
.pillar .icon3d::after,
.svc .icon3d::after {
  content: '';
  position: absolute;
  bottom: -8px; left: 50%;
  width: 50px; height: 10px;
  background: radial-gradient(ellipse, rgba(209,0,0,0.35) 0%, transparent 70%);
  border-radius: 50%;
  transform: translateX(-50%);
  animation: iconShadowPulse 4s ease-in-out infinite;
}

@keyframes iconShadowPulse {
  0%, 100% { opacity: 0.6; transform: translateX(-50%) scaleX(1); }
  50% { opacity: 1; transform: translateX(-50%) scaleX(1.3); }
}

.icon3d:hover,
.svc:hover .icon3d,
.pillar:hover .icon3d,
.cblock:hover .icon3d {
  filter: drop-shadow(0 6px 16px rgba(0,0,0,0.5)) drop-shadow(0 0 30px rgba(209,0,0,0.6)) drop-shadow(0 0 60px rgba(209,0,0,0.2));
  transform: rotateY(18deg) rotateX(-10deg) scale(1.18) translateY(-8px);
  animation-play-state: paused;
}

/* ── ABOUT ── */
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
  margin-top: 70px;
}

.about-body p {
  font-size: 16px; color: var(--muted2);
  line-height: 1.85; margin-bottom: 20px; font-weight: 400;
}

.about-body p strong { color: var(--txt); font-weight: 700; }

.game-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 36px; }

.gtag {
  padding: 7px 18px;
  border: 1px solid var(--line);
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 2px; color: var(--muted2);
  text-transform: uppercase; transition: all 0.2s;
}

.gtag:hover { border-color: var(--red); color: var(--red); }

.about-pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }

.pillar {
  padding: 36px 28px;
  background: var(--card2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: all var(--transition);
  position: relative; overflow: hidden; cursor: default;
}

.pillar::before {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 3px; background: var(--red);
  transform: scaleY(0); transform-origin: bottom;
  transition: transform 0.3s;
}

.pillar:hover { border-color: var(--line-red); background: var(--card); }
.pillar:hover::before { transform: scaleY(1); }

.pillar-name { font-weight: 800; font-size: 14px; letter-spacing: 1px; text-transform: uppercase; color: var(--txt); margin-bottom: 8px; }
.pillar-desc { font-size: 13px; color: var(--muted); line-height: 1.7; font-weight: 400; }

/* ── SERVICES ── */
.services-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: end; margin-bottom: 70px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border: 1px solid var(--line);
}

.svc {
  padding: 48px 36px;
  background: var(--card);
  border: 1px solid transparent;
  border-radius: var(--radius);
  position: relative; overflow: hidden; cursor: default;
  transition: background var(--transition), border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.svc-glow {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 80% at 50% 110%, var(--red-glow) 0%, transparent 60%);
  opacity: 0; transition: opacity 0.4s; pointer-events: none;
}

.svc:hover { background: var(--card2); border-color: var(--line-red); transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.3); }
.svc:hover .svc-glow { opacity: 1; }

.svc-num { font-family: var(--mono); font-size: 11px; letter-spacing: 2px; color: var(--line); margin-bottom: 6px; transition: color 0.3s; }
.svc:hover .svc-num { color: rgba(209,0,0,0.3); }

.svc-name { font-weight: 800; font-size: 17px; letter-spacing: 0.2px; color: var(--txt); margin-bottom: 12px; line-height: 1.2; }
.svc-desc { font-size: 14px; color: var(--muted); line-height: 1.75; font-weight: 400; margin-bottom: 22px; }

.svc-list { list-style: none; }
.svc-list li {
  font-size: 12px; color: var(--muted); padding: 6px 0;
  font-weight: 500; border-bottom: 1px solid rgba(255,255,255,0.04);
  display: flex; align-items: center; gap: 10px; letter-spacing: 0.3px;
}
.svc-list li::before { content: ''; width: 4px; height: 4px; border-radius: 50%; background: var(--red); flex-shrink: 0; }

.portfolio-intro { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 60px; flex-wrap: wrap; gap: 20px; }

/* ── Portfolio Swiper Slider ── */
.portfolio-slider {
  overflow: hidden;
  padding-bottom: 50px;
  position: relative;
}

.portfolio-slider .swiper-slide {
  height: auto;
}

.portfolio-slider .swiper-slide .pcard {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.portfolio-slider .swiper-slide .pcard-body {
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* Swiper pagination — red dots */
.portfolio-slider .swiper-pagination-bullet {
  background: var(--muted);
  opacity: 0.5;
  width: 10px;
  height: 10px;
  transition: all 0.3s;
}

.portfolio-slider .swiper-pagination-bullet-active {
  background: var(--red);
  opacity: 1;
  width: 28px;
  border-radius: 5px;
}

/* Game logo images in thumb */
.thumb-game-logo {
  max-width: 70%;
  max-height: 70%;
  object-fit: contain;
  filter: drop-shadow(0 4px 20px rgba(0,0,0,0.5));
  transition: transform 0.5s ease;
}

.pcard:hover .thumb-game-logo {
  transform: scale(1.1);
}

.pcard {
  background: var(--card); border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden; transition: all var(--transition);
}

.pcard:hover { border-color: var(--line-red); transform: translateY(-6px); box-shadow: 0 24px 60px rgba(0,0,0,0.4), 0 0 40px var(--red-glow); }

.pcard-thumb { height: 180px; position: relative; overflow: hidden; }
.pcard-thumb-inner { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; transition: transform 0.5s; }
.pcard:hover .pcard-thumb-inner { transform: scale(1.06); }

/* ── EDIT: Add your own thumbnail backgrounds here ── */
.thumb-bgmi { background: linear-gradient(160deg, #120810 0%, #1a0508 100%); }
.thumb-val  { background: linear-gradient(160deg, #080d1a 0%, #0c1020 100%); }
.thumb-ff   { background: linear-gradient(160deg, #0a1208 0%, #0c1510 100%); }

.thumb-label { font-weight: 900; font-size: 36px; letter-spacing: 4px; color: rgba(255,255,255,0.07); text-transform: uppercase; }

.pcard-type-badge { position: absolute; bottom: 14px; left: 14px; padding: 5px 12px; background: rgba(209,0,0,0.85); font-family: var(--mono); font-size: 9px; letter-spacing: 2px; color: #fff; text-transform: uppercase; }
.pcard-body { padding: 26px 24px 28px; }
.pcard-event { font-weight: 800; font-size: 17px; color: var(--txt); margin-bottom: 4px; letter-spacing: 0.2px; line-height: 1.25; }
.pcard-org { font-size: 12px; font-weight: 500; color: var(--red); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 18px; }

.meta-row { display: flex; justify-content: space-between; padding: 7px 0; border-bottom: 1px solid rgba(255,255,255,0.04); font-size: 12px; }
.meta-k { color: var(--muted); font-weight: 500; }
.meta-v { color: var(--txt); font-weight: 700; }

/* ── PROCESS ── */
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 70px; position: relative; }
.process-steps::before { content: ''; position: absolute; top: 28px; left: 12.5%; right: 12.5%; height: 1px; background: var(--line-red); z-index: 0; }

.step { padding: 0 20px; text-align: center; position: relative; z-index: 1; }

.step-num {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--card); border: 1px solid var(--line-red);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  font-family: var(--mono); font-size: 14px; font-weight: 500;
  color: var(--red); letter-spacing: 1px; transition: all 0.3s;
}

.step:hover .step-num { background: var(--red); color: #fff; box-shadow: 0 0 20px rgba(209,0,0,0.4); }
.step-title { font-weight: 800; font-size: 14px; text-transform: uppercase; letter-spacing: 1px; color: var(--txt); margin-bottom: 10px; }
.step-desc { font-size: 13px; color: var(--muted); line-height: 1.7; font-weight: 400; }

/* ── WHY US ── */
.why-layout { display: grid; grid-template-columns: 5fr 4fr; gap: 80px; align-items: start; margin-top: 70px; }
.why-reasons { display: flex; flex-direction: column; gap: 0; }

.reason {
  display: flex; gap: 24px;
  padding: 28px 0; border-bottom: 1px solid var(--line);
  transition: padding-left 0.3s;
}
.reason:hover { padding-left: 8px; }
.reason:first-child { padding-top: 0; }
.reason-num { font-family: var(--mono); font-size: 11px; letter-spacing: 2px; color: var(--red); min-width: 32px; padding-top: 2px; font-weight: 500; }
.reason-title { font-weight: 800; font-size: 16px; color: var(--txt); margin-bottom: 8px; }
.reason-desc { font-size: 14px; color: var(--muted2); line-height: 1.75; font-weight: 400; }

.why-sidebar { padding: 36px; background: var(--card); border: 1px solid var(--line); position: sticky; top: 100px; }

.sidebar-title {
  font-family: var(--mono); font-size: 10px; letter-spacing: 3px;
  color: var(--red); text-transform: uppercase; margin-bottom: 24px;
  display: flex; align-items: center; gap: 12px;
}
.sidebar-title::before { content: ''; flex: 1; height: 1px; background: var(--red); }

.cap-item { display: flex; align-items: center; gap: 14px; padding: 11px 0; border-bottom: 1px solid rgba(255,255,255,0.04); font-size: 13px; font-weight: 500; color: var(--muted2); letter-spacing: 0.3px; transition: color 0.2s; }
.cap-item:hover { color: var(--txt); }
.cap-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--red); flex-shrink: 0; }

/* ── CONTACT ── */
.contact-layout { display: grid; grid-template-columns: 2fr 3fr; gap: 80px; margin-top: 70px; }
.contact-details { display: flex; flex-direction: column; gap: 16px; }

.cblock {
  padding: 24px 26px;
  background: var(--card);
  border: 1px solid var(--line);
  border-left: 3px solid var(--red);
  border-radius: var(--radius);
  transition: all var(--transition);
  display: flex; gap: 16px; align-items: flex-start;
}
.cblock:hover { border-color: var(--line-red); transform: translateX(5px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }

.cblock-icon-wrap { width: 44px; height: 44px; flex-shrink: 0; }
.cblock-label { font-family: var(--mono); font-size: 9px; letter-spacing: 2.5px; color: var(--red); text-transform: uppercase; margin-bottom: 4px; }
.cblock-val { font-size: 15px; font-weight: 700; color: var(--txt); margin-bottom: 2px; }
.cblock-sub { font-size: 12px; color: var(--muted); font-weight: 400; }

.form-wrap { background: var(--card); border: 1px solid var(--line); border-radius: 10px; padding: 48px; }
.form-title { font-weight: 800; font-size: 22px; color: var(--txt); margin-bottom: 6px; letter-spacing: -0.3px; }
.form-subtitle { font-size: 13px; color: var(--muted); margin-bottom: 36px; font-weight: 400; }

.fgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.fgroup { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.fgroup label { font-family: var(--mono); font-size: 9px; letter-spacing: 2.5px; color: var(--muted); text-transform: uppercase; }

.fgroup input,
.fgroup select,
.fgroup textarea {
  background: var(--dark3); border: 1px solid var(--line);
  color: var(--txt); padding: 13px 16px;
  font-family: var(--sans); font-size: 14px; font-weight: 500;
  outline: none; width: 100%;
  border-radius: var(--radius);
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
  appearance: none;
  -webkit-appearance: none;
}

.fgroup input:focus,
.fgroup select:focus,
.fgroup textarea:focus { border-color: var(--red); background: rgba(209,0,0,0.04); box-shadow: 0 0 0 3px rgba(209,0,0,0.1); }

.fgroup textarea { resize: vertical; min-height: 110px; }
.fgroup select option { background: var(--dark2); }

.fsub {
  width: 100%; padding: 16px;
  background: var(--red); color: #fff; border: none; cursor: pointer;
  font-family: var(--sans); font-weight: 800; font-size: 13px;
  letter-spacing: 2.5px; text-transform: uppercase; transition: all var(--transition); margin-top: 4px;
  border-radius: var(--radius);
  position: relative; overflow: hidden;
}
.fsub::after {
  content: '';
  position: absolute; top: -50%; left: -60%;
  width: 40%; height: 200%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent);
  transform: skewX(-20deg); transition: left 0.6s;
}
.fsub:hover::after { left: 120%; }
.fsub:hover { background: var(--red2); box-shadow: 0 8px 32px rgba(209,0,0,0.35); transform: translateY(-2px); }

.success-bar { display: none; margin-top: 16px; padding: 14px 20px; background: rgba(34,197,94,0.1); border: 1px solid rgba(34,197,94,0.3); font-family: var(--mono); font-size: 11px; letter-spacing: 2px; color: #22c55e; text-align: center; }

/* ── FOOTER ── */
footer { background: #030407; border-top: 1px solid var(--line); padding: 72px 4% 32px; }

.footer-top { display: grid; grid-template-columns: 2.5fr 1fr 1fr 1fr; gap: 60px; padding-bottom: 52px; border-bottom: 1px solid var(--line); margin-bottom: 32px; }
.footer-brand-text { font-size: 13px; color: var(--muted); line-height: 1.8; margin-top: 16px; font-weight: 400; max-width: 280px; }

.social-row { display: flex; gap: 10px; margin-top: 20px; }
.soc { width: 38px; height: 38px; border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; text-decoration: none; transition: all 0.2s; }
.soc:hover { border-color: var(--red); }
.soc svg { transition: transform 0.3s; }
.soc:hover svg { transform: scale(1.2); }

.footer-col-title { font-weight: 800; font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--txt); margin-bottom: 20px; }
.footer-col-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col-links a { font-size: 13px; font-weight: 500; color: var(--muted); text-decoration: none; letter-spacing: 0.3px; transition: color 0.2s; display: flex; align-items: center; gap: 8px; }
.footer-col-links a::before { content: '→'; color: var(--red); font-size: 11px; }
.footer-col-links a:hover { color: var(--txt); }

.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-copy { font-family: var(--mono); font-size: 11px; color: var(--muted); letter-spacing: 1px; }
.footer-copy span { color: var(--red); }

/* ── ANIMATIONS ── */
@keyframes fadeup {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: 0.1s; }
.d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.3s; }
.d4 { transition-delay: 0.4s; }
.d5 { transition-delay: 0.5s; }

/* ── MOBILE MENU ── */
.mob-menu { display: none; position: fixed; top: 72px; left: 0; right: 0; z-index: 799; background: rgba(6,8,13,0.98); backdrop-filter: blur(20px); border-bottom: 1px solid var(--line); flex-direction: column; padding: 24px 4%; }
.mob-menu.open { display: flex; }
.mob-menu a { padding: 14px 0; border-bottom: 1px solid var(--line); font-size: 14px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--muted2); text-decoration: none; transition: color 0.2s; }
.mob-menu a:hover { color: var(--txt); }

/* ── SOCIAL PROOF STRIP ── */
.social-proof {
  padding: 48px 5%;
  background: var(--dark2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: center;
}

.social-proof-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 28px;
}

.social-proof-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.sp-badge {
  padding: 10px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.5px;
  color: var(--muted2);
  text-transform: uppercase;
  transition: all var(--transition);
  background: var(--card);
}

.sp-badge:hover {
  border-color: var(--line-red);
  color: var(--txt);
  background: var(--card2);
}

/* ── TESTIMONIALS ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.tcard {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 36px 30px;
  position: relative;
  transition: all var(--transition);
}

.tcard:hover {
  border-color: var(--line-red);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.3);
}

.tcard-quote {
  font-size: 15px;
  color: var(--muted2);
  line-height: 1.8;
  font-weight: 400;
  font-style: italic;
  margin-bottom: 24px;
  position: relative;
  padding-left: 20px;
  border-left: 2px solid var(--red);
}

.tcard-author { font-weight: 700; font-size: 14px; color: var(--txt); }
.tcard-role { font-size: 12px; color: var(--muted); margin-top: 2px; }

.tcard-stars {
  margin-bottom: 16px;
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 2px;
}

/* ── CTA BANNER ── */
.cta-banner {
  padding: 100px 5%;
  text-align: center;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 50% 50%, rgba(209,0,0,0.12) 0%, transparent 60%),
    linear-gradient(160deg, var(--dark) 0%, #0a0205 100%);
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
  opacity: 0.3;
}

.cta-banner h2 {
  font-weight: 900;
  font-size: clamp(32px, 4.5vw, 56px);
  color: var(--txt);
  letter-spacing: -0.5px;
  line-height: 1.1;
  position: relative;
  z-index: 1;
}

.cta-banner h2 em { font-style: normal; color: var(--red); }

.cta-banner p {
  font-size: 16px;
  color: var(--muted2);
  margin: 20px auto 40px;
  max-width: 520px;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.cta-banner .btn-red { position: relative; z-index: 1; }

/* ── SCROLL TO TOP ── */
.scroll-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 44px;
  height: 44px;
  background: var(--red);
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  z-index: 700;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition);
  box-shadow: 0 4px 20px rgba(209,0,0,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.scroll-top:hover {
  background: var(--red2);
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(209,0,0,0.5);
}

/* ── CURSOR GLOW ── */
.cursor-glow {
  position: fixed;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(209,0,0,0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
  transform: translate(-50%, -50%);
  transition: opacity 0.4s;
  opacity: 0;
}

.cursor-glow.active { opacity: 1; }

/* ── HERO SHOWREEL ── */
.hero-showreel {
  margin-top: 32px;
  max-width: 380px;
  opacity: 0;
  animation: fadeup 1s 0.75s ease forwards;
}

.hero-showreel .video-thumb {
  aspect-ratio: 16/9;
  max-height: 200px;
}

.hero-showreel .video-thumb img {
  position: absolute;
  inset: 0;
}

.hero-showreel .video-play-btn {
  width: 50px; height: 50px;
}

/* ── VIDEO THUMBNAIL + PLAY OVERLAY ── */
.video-thumb {
  position: relative;
  cursor: pointer;
  border-radius: 10px;
  overflow: hidden;
  background: var(--dark3);
}

.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.65) saturate(1.1);
  transition: filter 0.4s, transform 0.5s;
}

.video-thumb:hover img {
  filter: brightness(0.45) saturate(1.3);
  transform: scale(1.04);
}

.video-play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 60px; height: 60px;
  z-index: 2;
  transition: transform 0.3s, filter 0.3s;
}

.video-play-btn svg {
  width: 100%; height: 100%;
  filter: drop-shadow(0 4px 16px rgba(209,0,0,0.5));
}

.video-play-btn::after {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid rgba(209,0,0,0.4);
  animation: playPulse 2s ease-in-out infinite;
}

@keyframes playPulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.2); opacity: 0; }
}

.video-thumb:hover .video-play-btn {
  transform: translate(-50%, -50%) scale(1.15);
  filter: drop-shadow(0 0 20px rgba(209,0,0,0.6));
}

.video-thumb-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 10px 16px;
  background: linear-gradient(transparent, rgba(0,0,0,0.85));
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.8);
  text-transform: uppercase;
  z-index: 2;
}

/* ── EVENT VIDEO IN PORTFOLIO CARDS ── */
.event-video {
  margin-top: 18px;
  border-radius: 10px;
  overflow: hidden;
}

.event-video .video-thumb {
  aspect-ratio: 16/9;
}

.event-video .video-thumb img {
  position: absolute;
  inset: 0;
}

.event-video .video-play-btn {
  width: 48px; height: 48px;
}

/* ── VIDEO LIGHTBOX MODAL ── */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s;
}

.video-modal.active {
  opacity: 1;
  visibility: visible;
}

.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.video-modal-content {
  position: relative;
  width: 90%;
  max-width: 900px;
  z-index: 2;
  transform: scale(0.92) translateY(20px);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.video-modal.active .video-modal-content {
  transform: scale(1) translateY(0);
}

.video-modal-close {
  position: absolute;
  top: -40px; right: 0;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(209, 0, 0, 0.7);
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  z-index: 3;
  line-height: 1;
}

.video-modal-close:hover {
  background: var(--red);
  transform: rotate(90deg) scale(1.1);
  box-shadow: 0 0 20px rgba(209,0,0,0.5);
}

.video-modal-player {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 */
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(209,0,0,0.3);
  box-shadow: 0 24px 80px rgba(0,0,0,0.6), 0 0 60px rgba(209,0,0,0.15);
}

.video-modal-player iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .process-steps::before { display: none; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  #hero { grid-template-columns: 1fr; padding: 100px 4% 60px; }
  .hero-right { display: none; }
  .about-layout { grid-template-columns: 1fr; gap: 50px; }
  .why-layout { grid-template-columns: 1fr; }
  .why-sidebar { position: static; }
  .contact-layout { grid-template-columns: 1fr; }
  .services-intro { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .cursor-glow { display: none; }
}

@media (max-width: 640px) {
  .services-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .about-pillars { grid-template-columns: 1fr; }
  .fgrid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; gap: 32px; }
  .form-wrap { padding: 28px 20px; }
  .hero-metrics { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .section { padding: 70px 4%; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .cta-banner { padding: 70px 5%; }
  .social-proof-logos { gap: 16px; }
  .sp-badge { padding: 8px 16px; font-size: 10px; }
}
