: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;
  }
}




/* =========================
  ABOUT HERO SECTION
========================= */

.resultsSection{
  padding: 120px 18px 100px;
  position: relative;
  z-index: 1;
}

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

/* LEFT BIG TYPO */
.resultsTitle{
  margin: 0;
  font-size: clamp(72px, 10vw, 160px);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: .95;
  color: rgba(255,255,255,.95);
}

/* grey second word */
.resultsTitle span{
  color: rgba(255,255,255,.45);
  font-weight: 500;
  
}

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

.resultsText{
  margin: 0;
  font-size: clamp(18px, 2.2vw, 26px);
  line-height: 1.4;
  color: rgba(255,255,255,.92);
  
}



@media (max-width: 980px){
  .resultsWrap{
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .resultsTitle{
    font-size: clamp(56px, 12vw, 96px);
  }
}

@media (max-width: 520px){
  .resultsSection{
    padding: 80px 16px 70px;
  }

  .resultsText{
    font-size: 18px;
  }
}


/* =========================
  VISION AND MISSION
========================= */

.processSection{
  
  position: relative;
  z-index: 1;
   padding: clamp(50px, 7vw, 90px) clamp(14px, 4vw, 18px);
}

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

/* LEFT */
.processLeft{ padding: 10px 0; }

.processEyebrow{
  font-size: 12px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  margin-bottom: 16px;
}

.processTitle{
  margin: 0;
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.05;
  font-size: clamp(36px, 3.6vw, 64px);
  color: rgba(255,255,255,.95);
}

.processDesc{
  margin-top: 18px;
  max-width: 55ch;
  font-size: 16px;
  line-height: 1.65;
  color: rgba(255,255,255,.70);
}

/* RIGHT */
.processRight{
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 28px;
  align-items: start;
}

/* Rail (no outer box, only slim container) */
.stepRail{
  position: relative;
  margin-top: 6px;
  width: 58px;
  min-height: 540px;
  border-radius: 30px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  overflow: hidden;
}

/* ✅ BRAND GRADIENT (PURPLE) instead of orange */
.stepRail::before{
  content:"";
  position:absolute;
  left: 50%;
  top: 10%;
  bottom: 10%;
  width: 16px;
  transform: translateX(-50%);
  border-radius: 14px;

  background: linear-gradient(
    180deg,
    rgba(77,20,140,.20),
    rgba(77,20,140,.95)
  );

  box-shadow:
    0 0 26px rgba(77,20,140,.28),
    0 0 60px rgba(77,20,140,.16);
}

/* Step dots */
.stepDot{
  position: absolute;
  left: 50%;
  top: var(--y);
  transform: translate(-50%, -50%);
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 14px;
  color: rgba(255,255,255,.88);
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.16);
  z-index: 2;
}

/* active dot like screenshot */
.stepDot.active{
  background: rgba(255,255,255,.95);
  color: #111;
  border-color: rgba(255,255,255,.65);
}

/* Steps content */
.steps{
  display: grid;
  gap: 64px;
  margin-top: 40px;
}



.stepTitle{
  font-size: 22px;
  letter-spacing: -0.02em;
  color: rgba(255,255,255,.95);
  margin-bottom: 10px;
}

.stepText{
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,.65);
  max-width: 48ch;
}

/* Responsive */
@media (max-width: 1024px){
  .processWrap{ grid-template-columns: 1fr; gap: 40px; }
  .processRight{ grid-template-columns: 72px 1fr; }
  .stepRail{ min-height: 535px; }
}

@media (max-width: 520px){
  .processSection{ padding: 70px 16px; }
  .processRight{ grid-template-columns: 62px 1fr; gap: 18px; }
  .steps{ gap: 44px; }

    .stepRail{ min-height: 515px; }
}





/** 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;
  }
}

