* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: "Inter", sans-serif;
  color: #fff;
  background:
    radial-gradient(circle at 50% 10%, rgba(36, 80, 145, 0.18), transparent 35%),
    radial-gradient(circle at 85% 0%, rgba(42, 108, 222, 0.14), transparent 35%),
    linear-gradient(180deg, #081321 0%, #07111e 45%, #050d18 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(circle at center, black 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.page {
  position: relative;
  z-index: 1;
  min-height: 100vh;
}

/* =========================
   NAVBAR
========================= */

.navbar {
  position: sticky;
  top: 0;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 22px 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 9999;
  isolation: isolate;
  transition: background 0.3s ease, backdrop-filter 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}


.navbar.scrolled {
  background: rgba(8, 19, 33, 0.72);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 18px 45px rgba(0,0,0,0.22);
  
  margin-top: 14px;
  padding-top: 14px;
  padding-bottom: 14px;
}

.logo {
  font-family: "Great Vibes", cursive;
  font-size: 31px;
  color: white;
  font-weight: 400;
  min-width: 160px;
}

.nav-center {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 0 18px;
}

.nav-link {
  text-decoration: none;
  color: rgba(226, 232, 240, 0.62);
  font-size: 15px;
  font-weight: 700;
  padding: 13px 18px;
  border-radius: 10px;
  transition: 0.25s ease;
}

.nav-link.active {
  color: #3f8dff;
  background: rgba(53, 124, 237, 0.18);
  box-shadow: inset 0 0 0 1px rgba(73, 135, 238, 0.12);
}

.nav-link:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
}

.nav-actions {
  min-width: 210px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
}

.theme-toggle {
  color: rgba(255, 255, 255, 0.88);
  font-size: 17px;
  cursor: pointer;
}

.get-started {
  text-decoration: none;
  color: #fff;
  background: #438cff;
  padding: 15px 28px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 15px;
  box-shadow:
    0 14px 34px rgba(67, 140, 255, 0.32),
    inset 0 1px 0 rgba(255,255,255,0.35);
  transition: 0.25s ease;
}

.get-started:hover {
  transform: translateY(-2px);
  background: #5a9bff;
}

.hamburger {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  transition: 0.25s ease;
}

.hamburger:hover {
  background: rgba(255,255,255,0.08);
}

/* =========================
   HERO
========================= */

.hero {
  max-width: 1100px;
  margin: 0 auto;
  min-height: calc(100vh - 92px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: flex-start;
  padding: 50px 24px 80px;
  gap:10px;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #3e8eff;
  background: rgba(40, 101, 195, 0.16);
  border: 1px solid rgba(65, 139, 255, 0.28);
  border-radius: 999px;
  padding: 11px 20px;
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 35px;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.06),
    0 0 24px rgba(52, 126, 255, 0.12);
}

.hero-title {
  overflow: hidden;
  font-size: clamp(34px, 7vw, 90px);
  line-height: 0.98;
  letter-spacing: -6px;
  font-weight: 900;
  max-width: 900px;
  color: #f8fbff;
  text-shadow: 0 18px 44px rgba(0, 0, 0, 0.25);
}

.hero-line {
  display: block;
  opacity: 0;
  transform: translateY(80px);
}

.gradient-text {
  background: linear-gradient(90deg, #e8f1ff 0%, #8db8ff 45%, #448cff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-subtitle {
  margin-top: 38px;
  max-width: 700px;
  color: rgba(203, 213, 225, 0.72);
  font-size: clamp(18px, 2vw, 27px);
  font-weight: 600;
  line-height: 1.38;
  letter-spacing: -0.8px;
}

.hero-buttons {
  margin-top: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.primary-btn,
.secondary-btn {
  min-width: 220px;
  height: 62px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 20px;
  font-weight: 800;
  transition: 0.25s ease;
}

.primary-btn {
  color: #fff;
  background: #438cff;
  gap: 18px;
  box-shadow:
    0 18px 42px rgba(67, 140, 255, 0.34),
    inset 0 1px 0 rgba(255,255,255,0.35);
}

.primary-btn:hover {
  transform: translateY(-3px);
  background: #5a9bff;
}

.secondary-btn {
  color: rgba(255,255,255,0.92);
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}

.secondary-btn:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255,255,255,0.2);
}

.scroll-indicator {
  width: 28px;
  height: 48px;
  margin-top: 55px;
  border: 2px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  display: flex;
  justify-content: center;
  padding-top: 9px;
  opacity: 0;
}

.scroll-indicator span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #438cff;
  box-shadow: 0 0 14px rgba(67, 140, 255, 0.85);
  animation: scrollBall 1.45s ease-in-out infinite;
}

@keyframes scrollBall {
  0% {
    transform: translateY(0);
    opacity: 0.45;
  }

  50% {
    transform: translateY(18px);
    opacity: 1;
  }

  100% {
    transform: translateY(0);
    opacity: 0.45;
  }
}

/* GSAP initial states */
.status-badge,
.hero-subtitle,
.hero-buttons {
  opacity: 0;
}

/* =========================
   SHOWCASE SECTION
========================= */

.showcase-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 24px 100px;
  text-align: center;
}

.showcase-header {
  margin-bottom: 32px;
}

.section-label {
  display: inline-flex;
  color: #3e8eff;
  background: rgba(40, 101, 195, 0.16);
  border: 1px solid rgba(65, 139, 255, 0.28);
  border-radius: 999px;
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 18px;
}

.showcase-header h2 {
  font-size: clamp(36px, 5vw, 68px);
  line-height: 1;
  letter-spacing: -3px;
  font-weight: 900;
  color: #f8fbff;
  margin-bottom: 18px;
}

.showcase-header p {
  color: rgba(203, 213, 225, 0.72);
  font-size: 18px;
  font-weight: 600;
}

.showcase-frame-wrap {
  width: 100%;
  max-width: 879px;
  margin: 0 auto;
  overflow: visible;
}

/* iframe only gets the border/glow */
.showcase-frame-wrap iframe {
  display: block;
  width: 100%;
  aspect-ratio: 879 / 494;
  height: auto;

  border: 1px solid rgba(67, 140, 255, 0.25) !important;
  border-radius: 20px;

  background: #fff;
  overflow: hidden;
  pointer-events: none;

  box-shadow:
    0 0 24px rgba(67, 140, 255, 0.14),
    0 24px 70px rgba(0, 0, 0, 0.32);
}

/* footer sits below cleanly, no blue background/glow */
.showcase-site-footer {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;

  padding: 20px 2px 0;
  background: transparent;
  border: none;
  box-shadow: none;
  overflow: visible;
}

.showcase-logo {
  max-width: 145px;
  height: auto;
  display: block;
}

.showcase-site-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  text-decoration: none;
  color: #fff;
  background: #438cff;

  padding: 13px 22px;
  border-radius: 999px;
  border: none;

  font-size: 15px;
  font-weight: 800;
  line-height: 1;

  box-shadow:
    0 10px 28px rgba(67, 140, 255, 0.24),
    inset 0 1px 0 rgba(255,255,255,0.28);

  transition: 0.25s ease;
}

.showcase-site-btn:hover {
  transform: translateY(-2px);
  background: #5a9bff;
}

.showcase-site-btn:focus,
.showcase-site-btn:focus-visible {
  outline: none;
}

/* =========================
   TECH STRIP
========================= */

.tech-strip {
  width: 100%;
  padding: 10px 24px 55px;
}

.tech-strip-inner {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(30px, 6vw, 70px);
}

.tech-strip-inner i {
  font-size: clamp(34px, 5vw, 54px);
  color: rgba(255, 255, 255, 0.88);
  opacity: 0.82;
  transition: 0.3s ease;
}

.tech-strip-inner i {
  font-size: clamp(34px, 5vw, 54px);
  color: rgba(255, 255, 255, 0.88);
  opacity: 0.55;
  transform: translateY(0) scale(1);
  transition: none;
}

/* =========================
   SERVICES SECTION
========================= */

.services-section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 70px 24px 90px;
}

.services-header {
  max-width: 760px;
  margin: 0 auto 46px;
  text-align: center;
}

.services-header h2 {
  font-size: clamp(38px, 5vw, 68px);
  line-height: 1;
  letter-spacing: -3px;
  font-weight: 900;
  color: #f8fbff;
  margin: 0 0 18px;
}

.services-header p {
  color: rgba(203, 213, 225, 0.72);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.55;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-card {
  position: relative;
  min-height: 260px;
  padding: 28px;
  border-radius: 28px;

  background: rgb(35 83 171 / 8%);
  border: 1px solid rgb(191 212 245 / 88%);

  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);

  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04),
    0 0 24px rgba(67, 140, 255, 0.09),
    0 18px 55px rgba(0, 0, 0, 0.22);

  overflow: hidden;
  transition: 0.3s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.025)),
    radial-gradient(circle at top right, rgba(67, 140, 255, 0.16), transparent 38%);
  opacity: 0.9;
  pointer-events: none;
  transition: 0.3s ease;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 27px;
  border: 1px solid rgba(255, 255, 255, 0.035);
  pointer-events: none;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(67, 140, 255, 0.42);

  box-shadow:
    0 0 0 1px rgba(67, 140, 255, 0.12),
    0 0 34px rgba(67, 140, 255, 0.18),
    0 28px 80px rgba(0, 0, 0, 0.34);
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon {
  position: relative;
  z-index: 1;
  width: 52px;
  height: 52px;
  border-radius: 18px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(67, 140, 255, 0.10);
  border: 1px solid rgba(67, 140, 255, 0.28);
  color: #72a9ff;
  font-size: 22px;

  margin-bottom: 28px;

  box-shadow:
    0 0 20px rgba(67, 140, 255, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.service-card h3 {
  position: relative;
  z-index: 1;
  color: #f8fbff;
  font-size: 23px;
  line-height: 1.15;
  letter-spacing: -0.7px;
  margin-bottom: 14px;
}

.service-card p {
  position: relative;
  z-index: 1;
  color: rgba(203, 213, 225, 0.68);
  font-size: 15.5px;
  font-weight: 500;
  line-height: 1.6;
}


/* =========================
   PROCESS SECTION
========================= */

.process-section {
  max-width: 1050px;
  margin: 0 auto;
  padding: 70px 24px 100px;
}

.process-header {
  max-width: 760px;
  margin: 0 auto 64px;
  text-align: center;
}

.process-header h2 {
  font-size: clamp(38px, 5vw, 68px);
  line-height: 1;
  letter-spacing: -3px;
  font-weight: 900;
  color: #f8fbff;
  margin: 0 0 18px;
}

.process-header p {
  color: rgba(203, 213, 225, 0.72);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.55;
}

.process-timeline {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  padding: 10px 0;
}

.process-line,
.process-line-fill {
  position: absolute;
  top: 0;
  left: 38px;
  width: 2px;
  height: 100%;
  border-radius: 999px;
}

.process-line {
  background: rgba(255, 255, 255, 0.12);
}

.process-line-fill {
  height: 0%;
  background: linear-gradient(180deg, #438cff, rgba(67, 140, 255, 0.15));
  box-shadow: 0 0 26px rgba(67, 140, 255, 0.45);
}

.process-step {
  position: relative;
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 24px;
  padding: 0 0 70px;
}

.process-step:last-child {
  padding-bottom: 0;
}

.process-number {
  position: relative;
  z-index: 2;
  width: 78px;
  height: 78px;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
  font-weight: 900;
  letter-spacing: -0.5px;

  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(67, 140, 255, 0.24);

  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);

  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04),
    0 0 24px rgba(67, 140, 255, 0.09),
    0 18px 55px rgba(0, 0, 0, 0.22);
}

.process-content {
  position: relative;
  padding: 30px;
  border-radius: 28px;

  background: transparent;
  border: 1.5px dashed rgba(67, 140, 255, 0.42);

  box-shadow:
    0 0 24px rgba(67, 140, 255, 0.10),
    inset 0 0 24px rgba(67, 140, 255, 0.035);

  overflow: hidden;
  transition: 0.3s ease;
}

.process-content::before {
  display: none;
}

.process-content h3,
.process-content p {
  position: relative;
  z-index: 1;
}

.process-content h3 {
  color: #f8fbff;
  font-size: 32px;
  line-height: 1;
  letter-spacing: -1px;
  margin-bottom: 14px;
}

.process-content p {
  color: rgba(203, 213, 225, 0.7);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.65;
}

/* =========================
   FOOTER
========================= */

.site-footer {
  max-width: 1180px;
  margin: 0 auto;
  padding: 45px 24px 35px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;

  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.footer-brand h2 {
  font-family: "Great Vibes", cursive;
  font-size: 34px;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 6px;
}

.footer-brand p {
  color: rgba(203, 213, 225, 0.62);
  font-size: 14px;
  font-weight: 500;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 22px;
}

.footer-links a {
  color: rgba(203, 213, 225, 0.68);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  transition: 0.25s ease;
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-copy {
  color: rgba(203, 213, 225, 0.48);
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
}

/* =========================
   FLOATING CHAT BUTTON
========================= */

.floating-chat-btn {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 99999;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  text-decoration: none;
  color: #ffffff;
  background: #438cff;

  padding: 15px 22px;
  border-radius: 999px;

  font-size: 15px;
  font-weight: 800;

  opacity: 0;
  visibility: hidden;
  transform: translateY(18px) scale(0.94);
  pointer-events: none;

  box-shadow:
    0 18px 42px rgba(67, 140, 255, 0.34),
    inset 0 1px 0 rgba(255,255,255,0.35);

  transition:
    opacity 0.3s ease,
    visibility 0.3s ease,
    transform 0.3s ease,
    background 0.25s ease;
}

.floating-chat-btn.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.floating-chat-btn:hover {
  background: #5a9bff;
  transform: translateY(-3px) scale(1);
}

.floating-chat-btn i {
  font-size: 17px;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 850px) {
  .scroll-indicator{
    margin-top: 35px;
  }

  .navbar.scrolled {
    margin-top: 0;
    border-radius: 0;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(8, 19, 33, 0.74);
    backdrop-filter: blur(38px);
    -webkit-backdrop-filter: blur(38px);
    box-shadow: none;
  }
  
    .navbar {
    padding: 18px 20px;
  }

  .logo {
    min-width: auto;
    font-size: 30px;
  }

  .nav-actions {
    min-width: auto;
    gap: 12px;
  }

  .get-started {
    display: none;
  }

  .hamburger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  

.nav-center {
  position: fixed;
  top: 85px;
  right: 20px;
  width: 240px;

  display: none;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  gap: 6px;

  padding: 10px;
  border-radius: 20px;

  background: #06101d !important;
  background-color: #06101d !important;
  background-image: none !important;
  opacity: 1 !important;

  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.85);

  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;

  z-index: 99999;
  overflow: hidden;
  isolation: isolate;
}
.nav-center::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #06101d;
  border-radius: inherit;
  z-index: -1;
}

  .nav-center.open {
    display: flex;
  }

  .nav-link {
    width: 100%;
    padding: 13px 14px;
    font-size: 14px;
    text-align: left;
  }

  

  .hero {
    min-height: calc(100vh - 80px);
    padding: 50px 20px 70px;
  }

  .status-badge {
    font-size: 13px;
    padding: 10px 17px;
    margin-bottom: 28px;
  }

  .hero-title {
    font-size: clamp(42px, 14vw, 20px);
    letter-spacing: -2px;
    line-height: 1;
  }

  .hero-subtitle {
    margin-top: 28px;
    font-size: 18px;
    line-height: 1.45;
    max-width: 520px;
  }

  .hero-buttons {
    width: 100%;
    margin-top: 42px;
    gap: 16px;
  }

  .primary-btn,
  .secondary-btn {
    width: 100%;
    max-width: 330px;
    min-width: 0;
    height: 58px;
    font-size: 18px;
  }

  .showcase-section {
  padding: 55px 20px 80px;
}

.showcase-header h2 {
  font-size: clamp(34px, 10vw, 42px);
  letter-spacing: -2px;
}

.showcase-header p {
  font-size: 16px;
}

.showcase-frame-wrap {
  overflow: visible;
}

.showcase-frame-wrap iframe {
  border-radius: 16px;
}

.showcase-site-footer {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 2px 0;
}

.showcase-logo {
  max-width: 115px;
}

.showcase-site-btn {
  width: auto;
  max-width: none;
  padding: 11px 16px;
  font-size: 14px;
  white-space: nowrap;
}

.tech-strip {
  padding: 0 20px 45px;
}

.tech-strip-inner {
  gap: 35px;
  flex-wrap: nowrap;
}

.tech-strip-inner i {
  font-size: 32px;
}


.services-section {
  padding: 15px 20px 70px;
}

.services-header {
  margin-bottom: 34px;
}

.services-header h2 {
  font-size: clamp(22px, 10vw, 40px);
  letter-spacing: -2px;
}

.services-header p {
  font-size: 16px;
}

.services-grid {
  grid-template-columns: 1fr;
  gap: 16px;
}

.service-card {
  min-height: auto;
  padding: 24px;
  border-radius: 24px;
}

.service-card::after {
  border-radius: 23px;
}

.service-icon {
  margin-bottom: 22px;
}


.process-section {
  padding: 55px 20px 80px;
}

.process-header {
  margin-bottom: 42px;
}

.process-header h2 {
  font-size: clamp(34px, 10vw, 52px);
  letter-spacing: -2px;
}

.process-header p {
  font-size: 16px;
}

.process-timeline {
  max-width: 100%;
}

.process-line,
.process-line-fill {
  left: 24px;
}

.process-step {
  grid-template-columns: 50px 1fr;
  gap: 16px;
  padding-bottom: 42px;
}

.process-number {
  width: 50px;
  height: 50px;
  font-size: 13px;
}

.process-content {
  padding: 22px;
  border-radius: 24px;
}

.process-content h3 {
  font-size: 26px;
}

.process-content p {
  font-size: 15px;
}



.site-footer {
  padding: 35px 20px 28px;
}

.footer-inner {
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}

.footer-links {
  gap: 18px;
  flex-wrap: wrap;
}

.footer-copy {
  white-space: normal;
}

.floating-chat-btn {
  right: 18px;
  bottom: 18px;
  padding: 14px 18px;
}

.floating-chat-btn span {
  display: none;
}

.floating-chat-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  padding: 0;
}

.floating-chat-btn i {
  font-size: 20px;
}

}