:root{
  --bg: #0a0a0a;
  --panel: #121212;
  --text: #f2f2f2;
  --muted: rgba(255,255,255,.78);
  --muted2: rgba(255,255,255,.60);

  --pill: rgba(255,255,255,.12);
  --pillBorder: rgba(255,255,255,.10);

  --purple: #4D148C;
  --purple2: #7C3AED;

  --radius: 52px;
  --max: 1400px;
}

*{ box-sizing:border-box; }
html,body{ 
width: 100%;
  overflow-x: hidden;
 }

body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:
    radial-gradient(1200px 800px at 70% 15%, rgba(77,20,140,.22), transparent 60%),
    radial-gradient(900px 700px at 20% 80%, rgba(77,20,140,.14), transparent 65%),
    var(--bg);
  color: var(--text);
}

body::before{
  content:"";
  position: fixed;
  inset: -20%;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(1200px 800px at 75% 25%, rgba(77,20,140,.35), transparent 60%),
    radial-gradient(900px 600px at 25% 80%, rgba(77,20,140,.22), transparent 65%);
}

/* =========================
   GLOBAL SECTION WIDTH
========================= */

/* hero page wrapper */
.page{
  min-height: 100svh; /* modern mobile safe viewport */
  height: auto;       /* allow page to grow */
  width: min(100%, calc(var(--max) + 36px)); /* 1300 + padding */
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  padding: 18px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

/* =========================
   BUTTONS (PURPLE + HOVER)
========================= */
.pillBtn,
.aboutBtn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 26px;
  border-radius: 999px;
  text-decoration: none;
  color: rgba(255,255,255,.95);

  background: linear-gradient(135deg, rgba(77,20,140,.95), rgba(124,58,237,.9));
  border: 1px solid rgba(77,20,140,.65);

  box-shadow: 0 12px 30px rgba(77,20,140,.22);
  transition: transform .25s ease, box-shadow .25s ease, filter .25s ease, border-color .25s ease;
  margin-top: 18px;
}

.pillBtn:hover,
.aboutBtn:hover{
  transform: translateY(-2px);
  border-color: rgba(124,58,237,.95);
  box-shadow:
    0 18px 46px rgba(77,20,140,.35),
    0 0 0 4px rgba(77,20,140,.22);
  filter: brightness(1.06);
}

.pillBtn:active,
.aboutBtn:active{
  transform: translateY(0px);
  filter: brightness(0.98);
}


/* =========================
   NAVBAR – CENTERED MENU
========================= */

.topbar{
  width: min(100%, var(--max));  /* ✅ makes it respect max width */
  margin: 0 auto;               /* ✅ centers it */
  padding: 18px 22px;           /* ✅ keep spacing */
  display: flex;
  align-items: center;
  gap: 18px;
  position: relative;
  z-index: 50;
}


/* LEFT */
.brandRight img{
  height: 56px;
  width: auto;
}

/* CENTER */
.navCenter{
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav{
  display: flex;
  gap: 28px;
}

.nav a{
  color: rgba(255,255,255,.78);
  text-decoration: none;
  font-size: 14px;
  letter-spacing: .02em;
  transition: .25s ease;
}

.nav a:hover{
  color: #fff;
}

/* RIGHT CTA FIX */
.topbar .pillBtn{
  margin-top: 0 !important;
}

/* =========================
   MOBILE NAV
========================= */

.menuBtn{
  display: none;
}

/* MOBILE */
@media (max-width: 1199px){

  .nav,
  .heroBtn{
    display: none;
  }

  .menuBtn{
    display: flex;
    margin-left: auto;
  }

  .mobileMenu{
    display: none;
    position: absolute;
    top: 82px;
    right: 18px;
    width: 260px;
    padding: 12px;
    border-radius: 16px;
    background: rgba(12,12,12,.85);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255,255,255,.15);
  }

  .mobileMenu a{
    display: block;
    padding: 12px;
    border-radius: 10px;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
  }

  .mobileMenu a:hover{
    background: rgba(255,255,255,.08);
  }

  .mobileMenu .mobileCta{
    margin-top: 6px;
    text-align: center;
    background: linear-gradient(135deg, #4D148C, #7C3AED);
  }

  .mobileMenu.open{
    display: block;
  }
}



/* =========================
   SERVICE HERO
========================= */
.servicesIntro{
  padding: 110px 18px 90px;
  position: relative;
  z-index: 1;
}

.servicesWrap{
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.55fr 1fr;
  gap: 90px;
  align-items: start;
}

/* LEFT BIG TITLE */
.servicesTitle{
  margin: 0;
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: .92;
  font-size: clamp(42px, 10.8vw, 120px);
  color: rgba(255,255,255,.95);
}

/* muted lines */
.servicesTitle span{
  color: rgba(255,255,255,.40);
  font-weight: 500;
}

/* RIGHT */
.servicesEyebrow{
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.60);
  margin-bottom: 22px;
}

.servicesText{
  margin: 0;
  font-size: clamp(18px, 2.2vw, 28px);
  line-height: 1.35;
  letter-spacing: -0.02em;
  color: rgba(255,255,255,.92);
  max-width: 560px;
}

/* Responsive */
@media (max-width: 980px){
  .servicesWrap{
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .servicesTitle{
    font-size: clamp(56px, 14vw, 110px);
    line-height: .95;
  }

  .servicesText{
    max-width: 100%;
  }
}


/* =========================
   STATS SECTION -CARD
========================= */
.statsSection{
  padding: 90px 18px 110px;
  position: relative;
  z-index: 1;
}

.statsWrap{
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 26px;
}

/* CARD */
.statCard{
  position: relative;
  padding: 46px 48px 44px;
   border-radius: 45px 0px 95px 0;
  background:
    radial-gradient(900px 600px at 70% 20%, rgba(77,20,140,.16), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.01));
  border: 1px solid rgba(255,255,255,.12);
  box-shadow:
    inset 0 0 0 1px rgba(77,20,140,.15),
    0 30px 90px rgba(0,0,0,.45);
}

/* SMALL LABEL */
.statLabel{
  font-size: 14px;
  color: rgba(255,255,255,.65);
  margin-bottom: 26px;
}

/* BIG NUMBER */
.statValue{
  font-size: clamp(72px, 8vw, 140px);
  line-height: .9;
  font-weight: 500;
  letter-spacing: -0.05em;
  color: rgba(255,255,255,.96);
  margin-bottom: 26px;
}

/* PARAGRAPH */
.statText{
  margin: 0;
  font-size: 16px;
  line-height: 1.55;
  color: rgba(255,255,255,.75);
  max-width: 52ch;
}

/* Responsive */
@media (max-width: 900px){
  .statsWrap{
    grid-template-columns: 1fr;
  }

  .statCard{
    padding: 36px 34px 34px;
  }

  .statValue{
    font-size: clamp(64px, 18vw, 110px);
  }
}

/* =========================
   SPLIT SHOWCASE (LIKE SCREENSHOT)
========================= */

.splitShowcase{
  padding: clamp(60px, 8vw, 110px) 18px;
  position: relative;
  z-index: 1;
}

.splitWrap{
  width: min(100%, var(--max));
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

/* LEFT IMAGE CARD */
.splitImgCard{
   border-radius: 125px 0 40px 0; 
  overflow: hidden;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow:
    0 40px 120px rgba(0,0,0,.45),
    0 0 0 1px rgba(77,20,140,.18),
    0 30px 110px rgba(77,20,140,.18);
}

.splitImgCard img{
  width: 100%;
  height: clamp(360px, 38vw, 560px);
  object-fit: cover;
  object-position: center;
  display: block;
  filter: contrast(1.04) saturate(1.04);
  
}

/* RIGHT CONTENT */
.splitContent{
  padding-right: clamp(0px, 2vw, 14px);
  max-width: 620px;
}

.splitTitle{
  margin: 0 0 18px;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.05;
  font-size: clamp(64px, 4.2vw, 88px);
  color: rgba(255,255,255,.95);
}

.splitText{
  margin: 0;
  font-size: clamp(14px, 1.55vw, 18px);
  line-height: 1.65;
  color: rgba(255,255,255,.72);
  max-width: 58ch;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 980px){
  .splitWrap{
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .splitContent{
    max-width: 100%;
  }

  .splitImgCard img{
    height: clamp(260px, 62vw, 520px);
    object-position: 50% 20%; /* keeps top area visible */
  }
}

/*** SECTION 2 SERVICES***/

.teamSection{
  padding: 90px 18px 60px;
  position: relative;
  z-index: 1;
}

.teamWrap{
  width: min(100%, 1400px);
  margin: 0 auto;
}

.teamTop{
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: start;
  margin-bottom: 50px;
}

.teamBig{
  margin: 0;
  font-size: clamp(10px, 2vw, 10px);
  font-weight: 200;
  letter-spacing: -0.05em;
  line-height: 0.95;
  color: rgba(255,255,255,.95);
}
.teamBig span{
  color: rgba(255,255,255,.45);
}




/* ===== MARQUEE ===== */
.marquee{
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 6px 0 14px;
}

.marqueeTrack{
  display: flex;
  gap: 22px;
  width: max-content;
  animation: teamMarquee 28s linear infinite; /* ✅ speed */
  will-change: transform;
}

/* ✅ Infinite loop animation */
@keyframes teamMarquee{
  from{ transform: translateX(0); }
  to{ transform: translateX(-50%); } /* ✅ because we duplicated cards */
}

/* Cards */
.teamCard{
  flex: 0 0 auto;
  width: 260px;
  height: 320px;
  border-radius: 46px 0 46px 0;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  text-decoration: none;
  transform: translateZ(0);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.teamCard img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.05) saturate(1.05);
  transform: scale(1.02);
  transition: transform .7s cubic-bezier(.2,.8,.2,1);
}

/* Overlay for readability */
.teamOverlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.60));
  z-index: 1;
}

/* Text */
.teamInfo{
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 2;
}

.teamName{
  font-size: 22px;
  line-height: 1;
  letter-spacing: -0.03em;
  color: rgba(255,255,255,.95);
  margin-bottom: 10px;
}

.teamRole{
  font-size: 14px;
  color: rgba(255,255,255,.70);
}

/* Hover effect */
.teamCard:hover{
  transform: translateY(-6px);
  border-color: rgba(77,20,140,.55);
  box-shadow: 0 18px 60px rgba(77,20,140,.25);
}
.teamCard:hover img{
  transform: scale(1.10);
}

/* Optional: fade edges like screenshot */
.marquee::before,
.marquee::after{
  content:"";
  position:absolute;
  top: 0; bottom: 0;
  width: 90px;
  z-index: 5;
  pointer-events:none;
}
.marquee::before{
  left: 0;
  background: linear-gradient(90deg, #0a0a0a, transparent);
}
.marquee::after{
  right: 0;
  background: linear-gradient(270deg, #0a0a0a, transparent);
}

/* Responsive */
@media (max-width: 900px){
  .teamTop{
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .teamText{ font-size: 18px; }
  .teamCard{ width: 220px; height: 280px; border-radius: 34px; }
  .teamName{ font-size: 28px; }
}

@media (max-width: 520px){
  .teamCard{ width: 190px; height: 250px; }
  .marqueeTrack{ animation-duration: 22s; }
}



/** FOOTER***/

/* =========================
   FOOTER (PREMIUM)
========================= */
.siteFooter{
  position: relative;
  padding: 90px 18px 50px;
  background: #0a0a0a;
  overflow: hidden;
  z-index: 1;
}

.footerWrap{
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* TOP GRID */
.footerTop{
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 70px;
  align-items: start;
}

/* LEFT CTA */
.footerHeading{
  margin: 0 0 28px;
  font-size: clamp(28px, 2.8vw, 44px);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: rgba(255,255,255,.95);
}

.footerBtn{
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px 14px 22px;
  border-radius: 999px;
  text-decoration: none;
  color: #111;
  background: rgba(255,255,255,.95);
  border: 1px solid rgba(255,255,255,.28);
  transition: transform .25s ease, box-shadow .25s ease, filter .25s ease;
}

.footerBtn span:first-child{
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.footerBtnIcon{
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(77,20,140,1), rgba(124,58,237,1));
  color: #fff;
  font-size: 16px;
}

.footerBtn:hover{
  transform: translateY(-2px);
  box-shadow: 0 16px 44px rgba(77,20,140,.20);
  filter: brightness(1.02);
}

.footerBtn:active{ transform: translateY(0); }

/* RIGHT COLS */
.footerCols{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
}

.footerCol{
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footerTitle{
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,.95);
  margin-bottom: 10px;
}

.footerCol a{
  color: rgba(255,255,255,.70);
  text-decoration: none;
  font-size: 15px;
  transition: color .2s ease, transform .2s ease;
}

.footerCol a:hover{
  color: rgba(255,255,255,.95);
  transform: translateX(2px);
}

.footerInfo{
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 4px;
}

.footerItem{
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.70);
  font-size: 15px;
}

.footerItem .fi{
  opacity: .9;
  width: 18px;
  display: inline-flex;
  justify-content: center;
}

/* SOCIAL */
.footerSocial{
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.footerSocial a{
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  text-decoration: none;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.85);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.footerSocial a:hover{
  transform: translateY(-2px);
  border-color: rgba(77,20,140,.55);
  box-shadow: 0 16px 38px rgba(77,20,140,.18);
  background-color: #4D148C;
}

/* DIVIDER */
.footerDivider{
  margin: 60px 0 26px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.18), transparent);
}

/* BOTTOM ROW */
.footerBottom{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: rgba(255,255,255,.60);
  font-size: 14px;
}

/* BIG WATERMARK */
.footerWatermark{
  position: absolute;
  left: 50%;
  bottom: -90px;
  transform: translateX(-50%);
  pointer-events: none;
  user-select: none;
  z-index: 0;
  opacity: 0.06; /* overall fade */
}

.footerWatermark img{
  width: min(90vw, 900px);  /* BIG like text watermark */
  height: auto;
  display: block;
  filter: brightness(1);   /* keep logo clean */
}


/* RESPONSIVE */
@media (max-width: 950px){
  .footerTop{
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footerCols{
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 620px){
  .footerCols{
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .footerBottom{
    flex-direction: column;
    align-items: flex-start;
  }
  .footerWatermark{
    bottom: -60px;
  }
}


