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




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

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

/* LEFT */
.contactTitle{
  margin: 0;
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 1.0;
  font-size: clamp(56px, 6.5vw, 108px);
  color: rgba(255,255,255,.96);
}
.contactTitle span{
  display: block;
  margin-top: 10px;
  color: rgba(255,255,255,.48); /* grey big lines like screenshot */
  font-weight: 500;
}

/* Contact links (orange highlight like screenshot) */
.contactInfo{
  margin-top: 70px;
  display: grid;
  gap: 14px;
}

.contactLink{
  font-size: 34px;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: rgba(255,255,255,.22);
  text-decoration: none;
  position: relative;
  width: fit-content;
  transition: .25s ease;
}

/* dotted underline */
.contactLink::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:-8px;
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    rgba(77,20,140,.75) 0 4px,
    transparent 4px 8px
  );
  opacity: .9;
}

/* on hover become purple-highlight */
.contactLink:hover{
  color: rgba(255,255,255,.92);
}

/* Social icons row */
.contactSocial{
  margin-top: 26px;
  display: flex;
  gap: 18px;
  color: rgba(255,255,255,.70);
}

.contactSocial a{
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  display: grid;
  place-items: center;
  color: rgba(255,255,255,.85);
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
  text-decoration: none;
}
.contactSocial a:hover{
  transform: translateY(-2px);
  border-color: rgba(77,20,140,.65);
  background: rgba(77,20,140,.18);
}

/* Address */
.contactAddress{
  margin-top: 60px;
  font-size: 18px;
  color: rgba(255,255,255,.70);
  line-height:1.6;
}

/* RIGHT (form) */
.contactForm{
  display: grid;
  gap: 22px;
}

.field label{
  display: block;
  margin-bottom: 10px;
  font-size: 22px;
  color: rgba(255,255,255,.92);
  letter-spacing: -0.01em;
}

.contactForm input,
.contactForm textarea{
  width: 100%;
  padding: 18px 18px;
  font-size: 18px;
  color: rgba(255,255,255,.92);
  background: rgba(10,10,10,.10);
  border: 1px solid rgba(255,255,255,.35); /* bright thin border */
  outline: none;
  border-radius: 0; /* square like screenshot */
}

.contactForm textarea{
  resize: vertical;
  min-height: 180px;
}

.contactForm input::placeholder,
.contactForm textarea::placeholder{
  color: rgba(255,255,255,.45);
}

/* small icon inside first input (top right) */
.inputWrap{
  position: relative;
}
.inputBadge{
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  display: grid;
  place-items: center;
  color: rgba(255,255,255,.75);
  font-size: 14px;
  pointer-events: none;
}

/* pill submit button like screenshot */
.contactBtn{
  margin-top: 14px;
  height: 62px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  font-size: 20px;
}

/* Responsive */
@media (max-width: 980px){
  .contactWrap{
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .contactInfo{ margin-top: 40px; }
  .contactLink{ font-size: 28px; }
}

@media (max-width: 520px){
  .contactHero{ padding: 80px 16px 70px; }
  .contactTitle{ font-size: clamp(40px, 12vw, 64px); }
  .field label{ font-size: 18px; }
  .contactForm input, .contactForm textarea{ font-size: 16px; padding: 16px; }
}


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

