/* css/main.css */

/* ══ CORE TOKENS & RESET ══ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --orange: #ff5c1a;
  --orange2: #e84a00;
  --cyan: #00f2ff;
  --green: #10b981;
  --purple: #8b5cf6;
  --bg: #0d0d0d;
  --light-bg: #f5f4f2;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: #ff5c1a;
  overflow-x: hidden;
  background-color: #0d0d0d;
  user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}

/* ══ INTRO SCREEN ══ */
#intro {
  background: #080401; /* Match sleek dark theme background */
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  inset: 0;
  z-index: 9999;
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.7s;
}

#intro.hide {
  opacity: 0;
  visibility: hidden;
}

.intro-circle {
  position: absolute;
  width: 280px;
  height: 280px;
  border: 1.5px dashed rgba(255, 92, 26, 0.4);
  border-radius: 50%;
  animation: rotCW 12s linear infinite;
  box-shadow: 0 0 30px rgba(255, 92, 26, 0.05);
}

.intro-circle-inner {
  position: absolute;
  width: 240px;
  height: 240px;
  border: 1px solid rgba(0, 224, 239, 0.25);
  border-radius: 50%;
  animation: rotCCW 8s linear infinite;
}

.intro-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.6s ease;
  z-index: 2;
  text-align: center;
}

.intro-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.intro-icon img {
  height: 64px; /* Perfectly sized logo */
  width: auto;
  filter: drop-shadow(0 0 15px rgba(255, 92, 26, 0.35));
}

.intro-wordmark {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  letter-spacing: 8px; /* Clean tracking */
  color: #fff;
  font-size: 13px; /* Properly scaled to not overflow */
  text-transform: uppercase;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
  margin-top: 10px;
}

@keyframes rotCW {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes rotCCW {
  from { transform: rotate(360deg); }
  to { transform: rotate(0deg); }
}

/* ══ SCROLL FX OVERLAY ══ */
#scrollFx {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9998;
  opacity: 0;
  transition: opacity 0.3s ease;
}

#scrollFx.active {
  opacity: 1;
}

#fxCanvas,
#speedSVG {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.wipe-bars {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  pointer-events: none;
}

.wipe-bar {
  flex: 1;
  background: #070301;
  transform: scaleX(0);
  width: 100%;
}

.fx-stamp {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.85);
  font-size: clamp(32px, 6vw, 84px);
  font-weight: 900;
  color: #fff;
  text-align: center;
  line-height: 1.05;
  letter-spacing: -2px;
  opacity: 0;
  text-transform: uppercase;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.fx-stamp.show {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/* ══ PILL NAVIGATION ══ */
.pill-nav {
  position: fixed;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 24px;
  background: rgba(13, 13, 13, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 40px;
  width: 90%;
  max-width: 1100px;
  z-index: 1000;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.6);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.nav-logo-icon {
  display: flex;
  align-items: center;
}

.nav-logo-text {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.5px;
  font-size: 17px;
}

.nav-links-pill {
  display: flex;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 30px;
  padding: 3px;
  gap: 2px;
}

.nl-item {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  padding: 6px 16px;
  border-radius: 20px;
  transition: all 0.3s;
}

.nl-item:hover {
  color: #fff;
}

.nl-item.active {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 2px 10px rgba(255, 92, 26, 0.3);
}

.nav-menu-btn {
  display: none;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

/* ══ SECTION 1 — DARK HERO ══ */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 120px 40px 80px;
  box-sizing: border-box;
}

.glow-beam {
  position: absolute;
  top: -10%;
  left: 20%;
  width: 50%;
  height: 60%;
  background: radial-gradient(ellipse at center, rgba(255, 92, 26, 0.12) 0%, transparent 70%);
  filter: blur(90px);
  pointer-events: none;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.012) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.012) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero-content {
  z-index: 2;
}

.beta-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 92, 26, 0.1);
  border: 1px solid rgba(255, 92, 26, 0.2);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.b-dot {
  width: 6px;
  height: 6px;
  background: var(--orange);
  border-radius: 50%;
  animation: pulseDot 1.5s infinite alternate;
}

@keyframes pulseDot {
  0% {
    transform: scale(0.8);
    opacity: 0.5;
  }

  100% {
    transform: scale(1.2);
    opacity: 1;
  }
}

.hero-content h1 {
  font-size: clamp(38px, 5.5vw, 68px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -2.5px;
  color: #fff;
  background: linear-gradient(180deg, #fff 50%, #888 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 24px;
}

.hero-desc {
  font-size: 15.5px;
  color: #888;
  line-height: 1.6;
  margin-bottom: 36px;
  max-width: 520px;
}

.hero-btns {
  display: flex;
  gap: 16px;
}

.btn-hp {
  background: var(--orange);
  border: 1px solid var(--orange);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-hp:hover {
  background: var(--orange2);
  border-color: var(--orange2);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(255, 92, 26, 0.25);
}

.btn-hg {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-hg:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-2px);
}

@media (max-width: 1200px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 60px;
  }

  .hero-desc {
    margin: 0 auto 36px;
  }

  .hero-btns {
    justify-content: center;
  }
}

/* ══ SECTION 2 — RETHEMED TO HIGH-FIDELITY DARK ══ */
.white-section {
  background: #0a0a0a;
  padding: 100px 40px;
  position: relative;
  overflow: hidden;
  border-top: 1px solid #1a1a1a;
  border-bottom: 1px solid #1a1a1a;
}

/* Subtle futuristic tech grid background */
.white-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .015) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 1;
}

/* Deep orange background radial glow behind the interactive card */
.white-section::after {
  content: '';
  position: absolute;
  top: -150px;
  left: -150px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 92, 26, 0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.ws-inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.ws-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  color: #fff;
  text-align: center;
  line-height: 1.15;
  margin-bottom: 64px;
  letter-spacing: -1.5px;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .7s ease, transform .7s ease;
  background: linear-gradient(180deg, #fff 60%, #888 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ws-title.in {
  opacity: 1;
  transform: translateY(0);
}

.ws-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.ws-image {
  background: linear-gradient(135deg, #1a0005, #2d000a 40%, #0d0005);
  border-radius: 20px;
  aspect-ratio: 4/5;
  max-width: 380px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(255, 0, 50, 0.2), 0 0 0 1px #33000a;
  display: flex;
  align-items: flex-end;
  padding: 24px;
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity .7s ease .15s, transform .7s ease .15s;
  border: 1px solid #33000a;
}

.ws-image.in {
  opacity: 1;
  transform: translateX(0);
}

.red-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 40%, rgba(255, 0, 50, 0.4), transparent 70%);
}

.vr-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), filter 0.8s;
  opacity: 0.9;
  z-index: 0;
}

.ws-image:hover .vr-hero-img {
  transform: scale(1.04);
  filter: brightness(1.1) contrast(1.05);
}

.text-red {
  color: #ff5555 !important;
  text-shadow: 0 0 10px rgba(255,0,0,0.5);
}

.ws-image-label {
  position: relative;
  z-index: 2;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}

.ws-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity .7s ease .3s, transform .7s ease .3s;
}

.ws-right.in {
  opacity: 1;
  transform: translateX(0);
}

.ws-right h2 {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 800;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 16px;
  letter-spacing: -.5px;
  background: linear-gradient(180deg, #fff 60%, #999 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ws-right p {
  font-size: 15px;
  color: #888;
  line-height: 1.7;
  margin-bottom: 32px;
}

.ws-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.ws-feat {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13.5px;
  font-weight: 700;
  color: #ccc;
  opacity: 0;
  transform: translateY(20px);
  transition: transform .4s cubic-bezier(0.16, 1, 0.3, 1), background .4s, border-color .4s, box-shadow .4s, border-radius .4s;
  background: rgba(17, 17, 17, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 16px 4px 16px 4px;
  padding: 14px 18px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  cursor: pointer;
}

.ws-feat:hover {
  background: rgba(17, 17, 17, 0.6);
  border-color: var(--orange);
  color: #fff;
  transform: translateY(-4px);
  border-radius: 10px 10px 10px 10px;
  box-shadow: 0 16px 32px rgba(255, 92, 26, 0.12);
}

.ws-feat.in {
  opacity: 1;
  transform: translateY(0);
}

.ws-feat-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px 4px 10px 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  transition: transform 0.4s ease, border-color 0.3s, background 0.3s;
}

.ws-feat:hover .ws-feat-icon {
  border-color: rgba(255, 92, 26, 0.4);
  background: rgba(255, 92, 26, 0.12);
  transform: rotate(5deg) scale(1.1);
}

@media (max-width: 900px) {
  .ws-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .ws-image {
    margin: 0 auto;
  }
}

/* ══ SHARED SECTION STYLES ══ */
.sec {
  padding: 96px 40px;
  position: relative;
  overflow: hidden;
}

.sec-dark {
  background: var(--bg);
}

.sec-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 56px;
}

.sec-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--orange);
  text-transform: uppercase;
  background: rgba(255, 92, 26, .08);
  border: 1px solid rgba(255, 92, 26, .15);
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.sec-title {
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 900;
  color: #fff;
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 16px;
  background: linear-gradient(180deg, #fff 60%, #999 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.sec-desc {
  font-size: 14.5px;
  color: #777;
  line-height: 1.6;
}

/* ══ 5 — FILM REEL ══ */
.reel-bg {
  background: #050505;
}

.reel-hd {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 36px;
  flex-wrap: wrap;
  gap: 16px;
}

.reel-sig {
  font-size: 10px;
  font-family: monospace;
  color: rgba(255, 92, 26, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.07);
  padding: 8px 16px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.reel-sig::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ff5c1a;
  animation: blink 1.4s infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.2;
  }
}

.reel-scroll {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 20px;
  scrollbar-width: none;
  cursor: grab;
}

.reel-scroll::-webkit-scrollbar {
  display: none;
}

.reel-c {
  flex: 0 0 300px;
  aspect-ratio: 2/3;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
  transition: border-color 0.3s;
}

.reel-c:hover {
  border-color: rgba(255, 92, 26, 0.35);
  box-shadow: 0 0 28px rgba(255, 92, 26, 0.1);
}

.reel-c img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(40%);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.reel-c:hover img {
  filter: grayscale(0);
  transform: scale(1.05);
}

.reel-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  font-family: monospace;
  font-size: 9px;
  background: rgba(0, 0, 0, 0.85);
  color: #ff5c1a;
  border: 1px solid rgba(255, 92, 26, 0.3);
  padding: 3px 8px;
  border-radius: 4px;
}

.reel-ov {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.92) 0%, transparent 60%);
}

.reel-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  transform: translateY(6px);
  transition: transform 0.4s;
}

.reel-c:hover .reel-info {
  transform: translateY(0);
}

.reel-info h3 {
  font-size: 17px;
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  margin-bottom: 6px;
}

.reel-role {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #ff5c1a;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 0.3s;
}

.reel-c:hover .reel-role {
  opacity: 1;
}

.reel-line {
  height: 1px;
  width: 0;
  background: rgba(255, 92, 26, 0.5);
  margin-top: 8px;
  transition: width 0.5s 0.15s ease;
}

.reel-c:hover .reel-line {
  width: 100%;
}

/* ══ 6 — TESTIMONIALS ══ */
.tst-bg {
  background: #070707;
}

.tst-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 56px;
}

.tst-card {
  padding: 32px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.tst-card:hover {
  border-color: rgba(255, 92, 26, 0.2);
  background: rgba(255, 255, 255, 0.03);
  transform: translateY(-2px);
}

.tst-q {
  font-size: 13.5px;
  color: #888;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 24px;
  position: relative;
  padding-left: 20px;
}

.tst-q::before {
  content: '"';
  position: absolute;
  left: 0;
  top: -4px;
  font-size: 40px;
  color: rgba(255, 92, 26, 0.15);
  line-height: 1;
  font-style: normal;
}

.tst-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.tst-av {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 92, 26, 0.2), rgba(255, 51, 51, 0.15));
  border: 1px solid rgba(255, 92, 26, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.tst-name {
  font-size: 13.5px;
  font-weight: 800;
  color: #fff;
}

.tst-role {
  font-size: 9px;
  color: #555;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 2px;
}

@media (max-width: 900px) {
  .tst-grid {
    grid-template-columns: 1fr;
  }
}

/* ══ 7 — TECH STACK ══ */
.stk-bg {
  background: #060606;
}

.stk-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 48px;
}

.stk-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: 40px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 13px;
  font-weight: 700;
  color: #888;
  letter-spacing: 0.5px;
  cursor: default;
  transition: all 0.3s ease;
}

.stk-pill:hover {
  border-color: rgba(255, 92, 26, 0.4);
  color: #ff5c1a;
  background: rgba(255, 92, 26, 0.04);
  box-shadow: 0 0 16px rgba(255, 92, 26, 0.07);
}

.stk-pill span {
  font-size: 17px;
  opacity: 0.5;
  transition: opacity 0.3s;
}

.stk-pill:hover span {
  opacity: 1;
}

/* ══ 8 — CONTACT & FOOTER ══ */
.ct-bg {
  background: #050505;
}

.ct-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.ct-form {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 92, 26, 0.12);
  border-radius: 22px;
  padding: 44px;
}

.ct-form h3 {
  font-size: 28px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -1px;
  margin-bottom: 32px;
}

.ct-form h3 em {
  color: #ff5c1a;
  font-style: normal;
}

.cf-g {
  margin-bottom: 18px;
}

.cf-lbl {
  display: block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #ff5c1a;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.cf-inp,
.cf-ta {
  width: 100%;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 10px;
  padding: 13px 16px;
  font-size: 14px;
  color: #fff;
  font-family: inherit;
  transition: border-color 0.25s;
  box-sizing: border-box;
}

.cf-inp:focus,
.cf-ta:focus {
  outline: none;
  border-color: #ff5c1a;
}

.cf-ta {
  height: 110px;
  resize: none;
}

.cf-sbm {
  width: 100%;
  margin-top: 8px;
  padding: 15px;
  border: 1px solid rgba(255, 92, 26, 0.4);
  border-radius: 10px;
  background: transparent;
  color: #ff5c1a;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.3s ease;
}

.cf-sbm:hover {
  background: rgba(255, 92, 26, 0.07);
  box-shadow: 0 0 24px rgba(255, 92, 26, 0.15);
}

.ct-inf-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  color: #ff5c1a;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.ct-inf-h {
  font-size: clamp(34px, 3.5vw, 50px);
  font-weight: 900;
  color: #fff;
  letter-spacing: -2px;
  line-height: 1.05;
  margin-bottom: 40px;
}

.ct-inf-h em {
  color: #ff5c1a;
  font-style: normal;
}

.ct-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ct-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 22px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 14px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.ct-item:hover {
  border-color: rgba(255, 92, 26, 0.25);
  transform: translateY(-2px);
}

.ct-ico {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 92, 26, 0.07);
  border: 1px solid rgba(255, 92, 26, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
}

.ct-lbl {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #555;
  text-transform: uppercase;
  margin-bottom: 3px;
}

.ct-val {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  transition: color 0.25s ease;
}

.ct-item:hover .ct-val {
  color: #ff5c1a;
}

@media (max-width: 900px) {
  .ct-grid {
    grid-template-columns: 1fr;
  }
}

/* ══ FOOTER ══ */
.sf {
  background: #040404;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding: 72px 48px 36px;
}

.sf-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.sf-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.sf-logo {
  font-size: 22px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -1px;
  margin-bottom: 12px;
}

.sf-logo em {
  color: #ff5c1a;
  font-style: normal;
}

.sf-desc {
  font-size: 13px;
  color: #666;
  line-height: 1.7;
  max-width: 240px;
  margin-bottom: 24px;
}

.sf-socs {
  display: flex;
  gap: 10px;
}

.sf-soc {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #666;
  cursor: pointer;
  transition: all 0.25s ease;
}

.sf-soc:hover {
  border-color: #ff5c1a;
  color: #ff5c1a;
}

.sf-col h4 {
  font-size: 10px;
  font-weight: 900;
  color: #fff;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.sf-col ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sf-col ul a {
  font-size: 13px;
  color: #666;
  text-decoration: none;
  transition: all 0.2s ease;
  display: inline-block;
}

.sf-col ul a:hover {
  color: #ff5c1a;
  transform: translateX(4px);
}

.sf-bot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  flex-wrap: wrap;
  gap: 12px;
}

.sf-copy {
  font-size: 11px;
  color: #444;
}

.sf-links {
  display: flex;
  gap: 20px;
}

.sf-links a {
  font-size: 11px;
  color: #444;
  text-decoration: none;
  transition: color 0.2s ease;
}

.sf-links a:hover {
  color: #ff5c1a;
}

@media (max-width: 900px) {
  .sf-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 580px) {
  .sf-top {
    grid-template-columns: 1fr;
  }
}

/* ══ ENHANCED MOBILE RESPONSIVENESS ══ */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-content {
    align-items: center;
    margin-bottom: 40px;
  }
}

@media (max-width: 768px) {
  .pill-nav {
    flex-wrap: wrap;
    border-radius: 20px;
    padding: 10px 20px;
    align-items: center;
    transition: all 0.3s ease;
  }
  .nav-menu-btn {
    display: block;
    margin-top: 0;
    padding: 6px 12px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    background: rgba(255,255,255,0.05);
  }
  .nav-links-pill {
    display: none;
    width: 100%;
    flex-direction: column;
    margin-top: 16px;
    background: transparent;
    border: none;
    padding: 0;
  }
  .pill-nav.mobile-open .nav-links-pill {
    display: flex;
    animation: fadeDown 0.3s ease forwards;
  }
  @keyframes fadeDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .pill-nav.mobile-open {
    background: rgba(13, 13, 13, 0.98);
    border-color: rgba(255, 92, 26, 0.3);
  }
  .nl-item {
    text-align: center;
    padding: 12px 16px;
    width: 100%;
    box-sizing: border-box;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    border-radius: 0;
  }
  .nl-item:last-child {
    border-bottom: none;
  }
  .hero {
    padding-top: 130px;
  }
}/* css/main.css */

/* ══ CORE TOKENS & RESET ══ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --orange: #ff5c1a;
  --orange2: #e84a00;
  --cyan: #00f2ff;
  --green: #10b981;
  --purple: #8b5cf6;
  --bg: #0d0d0d;
  --light-bg: #f5f4f2;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: #ff5c1a;
  overflow-x: hidden;
  background-color: #0d0d0d;
  user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}

/* ══ INTRO SCREEN ══ */
#intro {
  background: #080401; /* Match sleek dark theme background */
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  inset: 0;
  z-index: 9999;
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.7s;
}

#intro.hide {
  opacity: 0;
  visibility: hidden;
}

.intro-circle {
  position: absolute;
  width: 280px;
  height: 280px;
  border: 1.5px dashed rgba(255, 92, 26, 0.4);
  border-radius: 50%;
  animation: rotCW 12s linear infinite;
  box-shadow: 0 0 30px rgba(255, 92, 26, 0.05);
}

.intro-circle-inner {
  position: absolute;
  width: 240px;
  height: 240px;
  border: 1px solid rgba(0, 224, 239, 0.25);
  border-radius: 50%;
  animation: rotCCW 8s linear infinite;
}

.intro-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.6s ease;
  z-index: 2;
  text-align: center;
}

.intro-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.intro-icon img {
  height: 64px; /* Perfectly sized logo */
  width: auto;
  filter: drop-shadow(0 0 15px rgba(255, 92, 26, 0.35));
}

.intro-wordmark {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  letter-spacing: 8px; /* Clean tracking */
  color: #fff;
  font-size: 13px; /* Properly scaled to not overflow */
  text-transform: uppercase;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
  margin-top: 10px;
}

@keyframes rotCW {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes rotCCW {
  from { transform: rotate(360deg); }
  to { transform: rotate(0deg); }
}

/* ══ SCROLL FX OVERLAY ══ */
#scrollFx {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9998;
  opacity: 0;
  transition: opacity 0.3s ease;
}

#scrollFx.active {
  opacity: 1;
}

#fxCanvas,
#speedSVG {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.wipe-bars {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  pointer-events: none;
}

.wipe-bar {
  flex: 1;
  background: #070301;
  transform: scaleX(0);
  width: 100%;
}

.fx-stamp {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.85);
  font-size: clamp(32px, 6vw, 84px);
  font-weight: 900;
  color: #fff;
  text-align: center;
  line-height: 1.05;
  letter-spacing: -2px;
  opacity: 0;
  text-transform: uppercase;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.fx-stamp.show {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/* ══ PILL NAVIGATION ══ */
.pill-nav {
  position: fixed;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 24px;
  background: rgba(13, 13, 13, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 40px;
  width: 90%;
  max-width: 1100px;
  z-index: 1000;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.6);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.nav-logo-icon {
  display: flex;
  align-items: center;
}

.nav-logo-text {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.5px;
  font-size: 17px;
}

.nav-links-pill {
  display: flex;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 30px;
  padding: 3px;
  gap: 2px;
}

.nl-item {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  padding: 6px 16px;
  border-radius: 20px;
  transition: all 0.3s;
}

.nl-item:hover {
  color: #fff;
}

.nl-item.active {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 2px 10px rgba(255, 92, 26, 0.3);
}

.nav-menu-btn {
  display: none;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

/* ══ SECTION 1 — DARK HERO ══ */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 120px 40px 80px;
  box-sizing: border-box;
}

.glow-beam {
  position: absolute;
  top: -10%;
  left: 20%;
  width: 50%;
  height: 60%;
  background: radial-gradient(ellipse at center, rgba(255, 92, 26, 0.12) 0%, transparent 70%);
  filter: blur(90px);
  pointer-events: none;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.012) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.012) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero-content {
  z-index: 2;
}

.beta-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 92, 26, 0.1);
  border: 1px solid rgba(255, 92, 26, 0.2);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.b-dot {
  width: 6px;
  height: 6px;
  background: var(--orange);
  border-radius: 50%;
  animation: pulseDot 1.5s infinite alternate;
}

@keyframes pulseDot {
  0% {
    transform: scale(0.8);
    opacity: 0.5;
  }

  100% {
    transform: scale(1.2);
    opacity: 1;
  }
}

.hero-content h1 {
  font-size: clamp(38px, 5.5vw, 68px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -2.5px;
  color: #fff;
  background: linear-gradient(180deg, #fff 50%, #888 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 24px;
}

.hero-desc {
  font-size: 15.5px;
  color: #888;
  line-height: 1.6;
  margin-bottom: 36px;
  max-width: 520px;
}

.hero-btns {
  display: flex;
  gap: 16px;
}

.btn-hp {
  background: var(--orange);
  border: 1px solid var(--orange);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-hp:hover {
  background: var(--orange2);
  border-color: var(--orange2);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(255, 92, 26, 0.25);
}

.btn-hg {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-hg:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-2px);
}

@media (max-width: 1200px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 60px;
  }

  .hero-desc {
    margin: 0 auto 36px;
  }

  .hero-btns {
    justify-content: center;
  }
}

/* ══ SECTION 2 — RETHEMED TO HIGH-FIDELITY DARK ══ */
.white-section {
  background: #0a0a0a;
  padding: 100px 40px;
  position: relative;
  overflow: hidden;
  border-top: 1px solid #1a1a1a;
  border-bottom: 1px solid #1a1a1a;
}

/* Subtle futuristic tech grid background */
.white-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .015) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 1;
}

/* Deep orange background radial glow behind the interactive card */
.white-section::after {
  content: '';
  position: absolute;
  top: -150px;
  left: -150px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 92, 26, 0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.ws-inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.ws-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  color: #fff;
  text-align: center;
  line-height: 1.15;
  margin-bottom: 64px;
  letter-spacing: -1.5px;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .7s ease, transform .7s ease;
  background: linear-gradient(180deg, #fff 60%, #888 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ws-title.in {
  opacity: 1;
  transform: translateY(0);
}

.ws-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.ws-image {
  background: linear-gradient(135deg, #1a0005, #2d000a 40%, #0d0005);
  border-radius: 20px;
  aspect-ratio: 4/5;
  max-width: 380px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(255, 0, 50, 0.2), 0 0 0 1px #33000a;
  display: flex;
  align-items: flex-end;
  padding: 24px;
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity .7s ease .15s, transform .7s ease .15s;
  border: 1px solid #33000a;
}

.ws-image.in {
  opacity: 1;
  transform: translateX(0);
}

.red-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 40%, rgba(255, 0, 50, 0.4), transparent 70%);
}

.vr-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), filter 0.8s;
  opacity: 0.9;
  z-index: 0;
}

.ws-image:hover .vr-hero-img {
  transform: scale(1.04);
  filter: brightness(1.1) contrast(1.05);
}

.text-red {
  color: #ff5555 !important;
  text-shadow: 0 0 10px rgba(255,0,0,0.5);
}

.ws-image-label {
  position: relative;
  z-index: 2;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}

.ws-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity .7s ease .3s, transform .7s ease .3s;
}

.ws-right.in {
  opacity: 1;
  transform: translateX(0);
}

.ws-right h2 {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 800;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 16px;
  letter-spacing: -.5px;
  background: linear-gradient(180deg, #fff 60%, #999 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ws-right p {
  font-size: 15px;
  color: #888;
  line-height: 1.7;
  margin-bottom: 32px;
}

.ws-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.ws-feat {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13.5px;
  font-weight: 700;
  color: #ccc;
  opacity: 0;
  transform: translateY(20px);
  transition: transform .4s cubic-bezier(0.16, 1, 0.3, 1), background .4s, border-color .4s, box-shadow .4s, border-radius .4s;
  background: rgba(17, 17, 17, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 16px 4px 16px 4px;
  padding: 14px 18px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  cursor: pointer;
}

.ws-feat:hover {
  background: rgba(17, 17, 17, 0.6);
  border-color: var(--orange);
  color: #fff;
  transform: translateY(-4px);
  border-radius: 10px 10px 10px 10px;
  box-shadow: 0 16px 32px rgba(255, 92, 26, 0.12);
}

.ws-feat.in {
  opacity: 1;
  transform: translateY(0);
}

.ws-feat-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px 4px 10px 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  transition: transform 0.4s ease, border-color 0.3s, background 0.3s;
}

.ws-feat:hover .ws-feat-icon {
  border-color: rgba(255, 92, 26, 0.4);
  background: rgba(255, 92, 26, 0.12);
  transform: rotate(5deg) scale(1.1);
}

@media (max-width: 900px) {
  .ws-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .ws-image {
    margin: 0 auto;
  }
}

/* ══ SHARED SECTION STYLES ══ */
.sec {
  padding: 96px 40px;
  position: relative;
  overflow: hidden;
}

.sec-dark {
  background: var(--bg);
}

.sec-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 56px;
}

.sec-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--orange);
  text-transform: uppercase;
  background: rgba(255, 92, 26, .08);
  border: 1px solid rgba(255, 92, 26, .15);
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.sec-title {
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 900;
  color: #fff;
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 16px;
  background: linear-gradient(180deg, #fff 60%, #999 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.sec-desc {
  font-size: 14.5px;
  color: #777;
  line-height: 1.6;
}

/* ══ 5 — FILM REEL ══ */
.reel-bg {
  background: #050505;
}

.reel-hd {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 36px;
  flex-wrap: wrap;
  gap: 16px;
}

.reel-sig {
  font-size: 10px;
  font-family: monospace;
  color: rgba(255, 92, 26, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.07);
  padding: 8px 16px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.reel-sig::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ff5c1a;
  animation: blink 1.4s infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.2;
  }
}

.reel-scroll {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 20px;
  scrollbar-width: none;
  cursor: grab;
}

.reel-scroll::-webkit-scrollbar {
  display: none;
}

.reel-c {
  flex: 0 0 300px;
  aspect-ratio: 2/3;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
  transition: border-color 0.3s;
}

.reel-c:hover {
  border-color: rgba(255, 92, 26, 0.35);
  box-shadow: 0 0 28px rgba(255, 92, 26, 0.1);
}

.reel-c img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(40%);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.reel-c:hover img {
  filter: grayscale(0);
  transform: scale(1.05);
}

.reel-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  font-family: monospace;
  font-size: 9px;
  background: rgba(0, 0, 0, 0.85);
  color: #ff5c1a;
  border: 1px solid rgba(255, 92, 26, 0.3);
  padding: 3px 8px;
  border-radius: 4px;
}

.reel-ov {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.92) 0%, transparent 60%);
}

.reel-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  transform: translateY(6px);
  transition: transform 0.4s;
}

.reel-c:hover .reel-info {
  transform: translateY(0);
}

.reel-info h3 {
  font-size: 17px;
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  margin-bottom: 6px;
}

.reel-role {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #ff5c1a;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 0.3s;
}

.reel-c:hover .reel-role {
  opacity: 1;
}

.reel-line {
  height: 1px;
  width: 0;
  background: rgba(255, 92, 26, 0.5);
  margin-top: 8px;
  transition: width 0.5s 0.15s ease;
}

.reel-c:hover .reel-line {
  width: 100%;
}

/* ══ 6 — TESTIMONIALS ══ */
.tst-bg {
  background: #070707;
}

.tst-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 56px;
}

.tst-card {
  padding: 32px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.tst-card:hover {
  border-color: rgba(255, 92, 26, 0.2);
  background: rgba(255, 255, 255, 0.03);
  transform: translateY(-2px);
}

.tst-q {
  font-size: 13.5px;
  color: #888;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 24px;
  position: relative;
  padding-left: 20px;
}

.tst-q::before {
  content: '"';
  position: absolute;
  left: 0;
  top: -4px;
  font-size: 40px;
  color: rgba(255, 92, 26, 0.15);
  line-height: 1;
  font-style: normal;
}

.tst-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.tst-av {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 92, 26, 0.2), rgba(255, 51, 51, 0.15));
  border: 1px solid rgba(255, 92, 26, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.tst-name {
  font-size: 13.5px;
  font-weight: 800;
  color: #fff;
}

.tst-role {
  font-size: 9px;
  color: #555;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 2px;
}

@media (max-width: 900px) {
  .tst-grid {
    grid-template-columns: 1fr;
  }
}

/* ══ 7 — TECH STACK ══ */
.stk-bg {
  background: #060606;
}

.stk-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 48px;
}

.stk-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: 40px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 13px;
  font-weight: 700;
  color: #888;
  letter-spacing: 0.5px;
  cursor: default;
  transition: all 0.3s ease;
}

.stk-pill:hover {
  border-color: rgba(255, 92, 26, 0.4);
  color: #ff5c1a;
  background: rgba(255, 92, 26, 0.04);
  box-shadow: 0 0 16px rgba(255, 92, 26, 0.07);
}

.stk-pill span {
  font-size: 17px;
  opacity: 0.5;
  transition: opacity 0.3s;
}

.stk-pill:hover span {
  opacity: 1;
}

/* ══ 8 — CONTACT & FOOTER ══ */
.ct-bg {
  background: #050505;
}

.ct-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.ct-form {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 92, 26, 0.12);
  border-radius: 22px;
  padding: 44px;
}

.ct-form h3 {
  font-size: 28px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -1px;
  margin-bottom: 32px;
}

.ct-form h3 em {
  color: #ff5c1a;
  font-style: normal;
}

.cf-g {
  margin-bottom: 18px;
}

.cf-lbl {
  display: block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #ff5c1a;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.cf-inp,
.cf-ta {
  width: 100%;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 10px;
  padding: 13px 16px;
  font-size: 14px;
  color: #fff;
  font-family: inherit;
  transition: border-color 0.25s;
  box-sizing: border-box;
}

.cf-inp:focus,
.cf-ta:focus {
  outline: none;
  border-color: #ff5c1a;
}

.cf-ta {
  height: 110px;
  resize: none;
}

.cf-sbm {
  width: 100%;
  margin-top: 8px;
  padding: 15px;
  border: 1px solid rgba(255, 92, 26, 0.4);
  border-radius: 10px;
  background: transparent;
  color: #ff5c1a;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.3s ease;
}

.cf-sbm:hover {
  background: rgba(255, 92, 26, 0.07);
  box-shadow: 0 0 24px rgba(255, 92, 26, 0.15);
}

.ct-inf-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  color: #ff5c1a;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.ct-inf-h {
  font-size: clamp(34px, 3.5vw, 50px);
  font-weight: 900;
  color: #fff;
  letter-spacing: -2px;
  line-height: 1.05;
  margin-bottom: 40px;
}

.ct-inf-h em {
  color: #ff5c1a;
  font-style: normal;
}

.ct-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ct-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 22px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 14px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.ct-item:hover {
  border-color: rgba(255, 92, 26, 0.25);
  transform: translateY(-2px);
}

.ct-ico {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 92, 26, 0.07);
  border: 1px solid rgba(255, 92, 26, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
}

.ct-lbl {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #555;
  text-transform: uppercase;
  margin-bottom: 3px;
}

.ct-val {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  transition: color 0.25s ease;
}

.ct-item:hover .ct-val {
  color: #ff5c1a;
}

@media (max-width: 900px) {
  .ct-grid {
    grid-template-columns: 1fr;
  }
}

/* ══ FOOTER ══ */
.sf {
  background: #040404;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding: 72px 48px 36px;
}

.sf-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.sf-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.sf-logo {
  font-size: 22px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -1px;
  margin-bottom: 12px;
}

.sf-logo em {
  color: #ff5c1a;
  font-style: normal;
}

.sf-desc {
  font-size: 13px;
  color: #666;
  line-height: 1.7;
  max-width: 240px;
  margin-bottom: 24px;
}

.sf-socs {
  display: flex;
  gap: 10px;
}

.sf-soc {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #666;
  cursor: pointer;
  transition: all 0.25s ease;
}

.sf-soc:hover {
  border-color: #ff5c1a;
  color: #ff5c1a;
}

.sf-col h4 {
  font-size: 10px;
  font-weight: 900;
  color: #fff;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.sf-col ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sf-col ul a {
  font-size: 13px;
  color: #666;
  text-decoration: none;
  transition: all 0.2s ease;
  display: inline-block;
}

.sf-col ul a:hover {
  color: #ff5c1a;
  transform: translateX(4px);
}

.sf-bot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  flex-wrap: wrap;
  gap: 12px;
}

.sf-copy {
  font-size: 11px;
  color: #444;
}

.sf-links {
  display: flex;
  gap: 20px;
}

.sf-links a {
  font-size: 11px;
  color: #444;
  text-decoration: none;
  transition: color 0.2s ease;
}

.sf-links a:hover {
  color: #ff5c1a;
}

@media (max-width: 900px) {
  .sf-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 580px) {
  .sf-top {
    grid-template-columns: 1fr;
  }
}

/* ══ ENHANCED MOBILE RESPONSIVENESS ══ */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-content {
    align-items: center;
    margin-bottom: 40px;
  }
}

@media (max-width: 768px) {
  .pill-nav {
    flex-wrap: wrap;
    border-radius: 20px;
    padding: 10px 20px;
    align-items: center;
    transition: all 0.3s ease;
  }
  .nav-menu-btn {
    display: block;
    margin-top: 0;
    padding: 6px 12px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    background: rgba(255,255,255,0.05);
  }
  .nav-links-pill {
    display: none;
    width: 100%;
    flex-direction: column;
    margin-top: 16px;
    background: transparent;
    border: none;
    padding: 0;
  }
  .pill-nav.mobile-open .nav-links-pill {
    display: flex;
    animation: fadeDown 0.3s ease forwards;
  }
  @keyframes fadeDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .pill-nav.mobile-open {
    background: rgba(13, 13, 13, 0.98);
    border-color: rgba(255, 92, 26, 0.3);
  }
  .nl-item {
    text-align: center;
    padding: 12px 16px;
    width: 100%;
    box-sizing: border-box;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    border-radius: 0;
  }
  .nl-item:last-child {
    border-bottom: none;
  }
  .hero {
    padding-top: 130px;
  }
}