:root {
  --blue: #0b63f6;
  --blue-dark: #053a9b;
  --cyan: #00b8ff;
  --text: #0f172a;
  --muted: #64748b;
  --light: #f8fbff;
  --border: #dbeafe;
  --white: #ffffff;
  --shadow: 0 18px 56px rgba(11, 99, 246, 0.11);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: var(--white);
  min-height: 100vh;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

.page-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(0, 184, 255, 0.13), transparent 26%),
    radial-gradient(circle at 86% 8%, rgba(11, 99, 246, 0.11), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.blob {
  position: absolute;
  border-radius: 999px;
  filter: blur(4px);
  opacity: 0.55;
  animation: floatBlob 8s ease-in-out infinite;
}

.blob-one {
  width: 280px;
  height: 280px;
  right: -95px;
  top: 130px;
  background: rgba(11, 99, 246, 0.12);
}

.blob-two {
  width: 220px;
  height: 220px;
  left: -80px;
  bottom: 60px;
  background: rgba(0, 184, 255, 0.1);
  animation-delay: 1.5s;
}

.grid-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(11, 99, 246, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 99, 246, 0.045) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, transparent, black 16%, transparent 88%);
}

/* Header */
.site-header {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--border);
  border-top: 0;
  border-radius: 0 0 22px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 8px 28px rgba(11, 99, 246, 0.07);
  backdrop-filter: blur(18px);
  position: relative;
  z-index: 1000;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  text-decoration: none;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand-icon {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: white;
  font-size: 15px;
  box-shadow: 0 10px 24px rgba(11, 99, 246, 0.22);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.desktop-nav a,
.mobile-nav a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.25s ease;
}

.desktop-nav a:hover,
.mobile-nav a:hover {
  color: var(--blue);
}

.menu-btn {
  display: none;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 14px;
  background: #eff6ff;
  cursor: pointer;
  position: relative;
  z-index: 1002;
}

.menu-btn span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--blue);
  margin: 5px auto;
  border-radius: 10px;
  transition: 0.25s ease;
}

.menu-btn.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.menu-btn.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav default desktop hidden */
.mobile-nav {
  display: none;
}

/* Hero */
.hero-section {
  width: min(1180px, calc(100% - 32px));
  min-height: calc(100vh - 62px);
  margin: 0 auto;
  padding: 18px 0 28px;
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  align-items: center;
  gap: 44px;
}

.hero-content {
  padding-top: 0;
}

.status-pill {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: #eff6ff;
  color: var(--blue-dark);
  font-weight: 700;
  border: 1px solid #bfdbfe;
  margin-bottom: 14px;
}

.pulse-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 0 rgba(11, 99, 246, 0.45);
  animation: pulse 1.8s infinite;
}

.hero-content h1 {
  font-size: clamp(42px, 5.6vw, 68px);
  line-height: 1;
  letter-spacing: -0.06em;
  margin-bottom: 16px;
}

.hero-content h1 span {
  display: block;
  color: var(--blue);
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-text {
  max-width: 620px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.launch-card {
  max-width: 570px;
  padding: 17px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 16px 52px rgba(11, 99, 246, 0.11);
  margin-bottom: 22px;
}

.launch-icon {
  width: 56px;
  height: 56px;
  border-radius: 19px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #eff6ff, #dbeafe);
  font-size: 25px;
  flex-shrink: 0;
}

.launch-card h2 {
  color: var(--blue);
  font-size: 22px;
  margin-bottom: 5px;
}

.launch-card p {
  color: var(--muted);
  line-height: 1.52;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.btn {
  min-width: 148px;
  height: 49px;
  padding: 0 20px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 800;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn.primary {
  color: white;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  box-shadow: 0 14px 30px rgba(11, 99, 246, 0.24);
}

.btn.secondary {
  color: var(--blue);
  background: white;
  border: 1px solid #bfdbfe;
}

.note {
  color: var(--muted);
  font-weight: 500;
}

/* Visual */
.visual-card {
  min-height: 430px;
  border-radius: 32px;
  background: linear-gradient(145deg, #ffffff, #eff6ff);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.visual-card::before {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(11, 99, 246, 0.15), rgba(0, 184, 255, 0.1));
  animation: rotateGlow 12s linear infinite;
}

.dashboard-mockup {
  width: min(360px, 82%);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid #bfdbfe;
  box-shadow: 0 24px 64px rgba(11, 99, 246, 0.15);
  overflow: hidden;
  position: relative;
  z-index: 2;
  animation: floatUp 4s ease-in-out infinite;
}

.mockup-top {
  height: 48px;
  background: #f8fbff;
  border-bottom: 1px solid #dbeafe;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 18px;
}

.mockup-top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #93c5fd;
}

.mockup-body {
  min-height: 250px;
  padding: 22px;
  position: relative;
}

.chart-line {
  height: 104px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(11, 99, 246, 0.12), rgba(0, 184, 255, 0.12));
  border: 1px solid #dbeafe;
  margin-bottom: 18px;
  position: relative;
  overflow: hidden;
}

.chart-line::after {
  content: "";
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 30px;
  height: 5px;
  border-radius: 20px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  transform: rotate(-8deg);
}

.bar {
  height: 12px;
  border-radius: 999px;
  background: #dbeafe;
  margin-bottom: 11px;
}

.bar-one {
  width: 88%;
}

.bar-two {
  width: 70%;
}

.bar-three {
  width: 48%;
}

.mini-card {
  width: 46%;
  height: 48px;
  display: inline-block;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  margin-top: 10px;
}

.mini-card.small {
  width: 32%;
  background: #dbeafe;
  margin-left: 12px;
}

.floating-card {
  position: absolute;
  z-index: 3;
  padding: 13px 15px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid #bfdbfe;
  box-shadow: 0 16px 44px rgba(11, 99, 246, 0.13);
  animation: floatUp 4.5s ease-in-out infinite;
}

.floating-card span {
  display: block;
  color: var(--muted);
  font-size: 12.5px;
  font-weight: 700;
  margin-bottom: 4px;
}

.floating-card strong {
  color: var(--blue);
  font-size: 22px;
}

.card-one {
  left: 20px;
  top: 56px;
}

.card-two {
  right: 20px;
  bottom: 68px;
  animation-delay: 1.2s;
}

/* Services */
.services-section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 40px;
  padding: 28px 0 10px;
}

.section-heading {
  max-width: 680px;
  margin-bottom: 22px;
}

.section-heading span {
  color: var(--blue);
  font-weight: 800;
}

.section-heading h2 {
  font-size: clamp(30px, 4vw, 44px);
  letter-spacing: -0.045em;
  margin-top: 8px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-grid article {
  padding: 22px;
  border-radius: 24px;
  background: white;
  border: 1px solid var(--border);
  box-shadow: 0 14px 44px rgba(11, 99, 246, 0.07);
  transition: transform 0.25s ease;
}

.service-grid article:hover {
  transform: translateY(-6px);
}

.service-grid h3 {
  color: var(--blue);
  margin-bottom: 9px;
  font-size: 20px;
}

.service-grid p {
  color: var(--muted);
  line-height: 1.6;
}

/* Footer */
.footer {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 16px;
  padding: 15px;
  text-align: center;
  color: var(--muted);
  border-top: 1px solid var(--border);
}

/* Animation */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(11, 99, 246, 0.45);
  }

  70% {
    box-shadow: 0 0 0 12px rgba(11, 99, 246, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(11, 99, 246, 0);
  }
}

@keyframes floatBlob {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-24px);
  }
}

@keyframes floatUp {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-14px);
  }
}

@keyframes rotateGlow {
  from {
    transform: rotate(0deg) scale(1);
  }

  to {
    transform: rotate(360deg) scale(1.05);
  }
}

/* Tablet */
@media (max-width: 900px) {
  .site-header {
    width: 100%;
    margin: 0;
    border-radius: 0;
    border-left: 0;
    border-right: 0;
    background: #ffffff;
  }

  .desktop-nav {
    display: none;
  }

  .menu-btn {
    display: block;
  }

  .hero-section {
    grid-template-columns: 1fr;
    padding: 22px 16px 26px;
    gap: 28px;
    min-height: auto;
    width: 100%;
  }

  .visual-card {
    min-height: 360px;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }
}

/* Mobile Full Screen Menu */
@media (max-width: 560px) {
  .site-header {
    width: 100%;
    height: 50px;
    margin: 0;
    padding: 7px 12px;
    border-radius: 0;
    border: 0;
    background: #ffffff;
    box-shadow: 0 6px 22px rgba(11, 99, 246, 0.08);
    position: fixed;
    top: 0;
    left: 0;
  }

  .brand {
    gap: 8px;
  }

  .brand-icon {
    display: none;
  }

  .brand span:last-child {
    font-size: 15px;
    font-weight: 800;
  }

  .menu-btn {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: #eff6ff;
  }

  .mobile-nav {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100vh;
    margin: 0;
    padding: 95px 24px 32px;
    border: 0;
    border-radius: 0;
    background:
      radial-gradient(circle at top right, rgba(11, 99, 246, 0.12), transparent 36%),
      radial-gradient(circle at bottom left, rgba(0, 184, 255, 0.1), transparent 34%),
      #ffffff;
    box-shadow: none;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 14px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    pointer-events: none;
    transition: 0.25s ease;
  }

  .mobile-nav.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
    display: flex;
  }

  .mobile-nav a {
    width: 100%;
    padding: 16px 18px;
    border-radius: 18px;
    background: #f8fbff;
    border: 1px solid #dbeafe;
    color: #0f172a;
    font-size: 20px;
    font-weight: 800;
    box-shadow: 0 12px 32px rgba(11, 99, 246, 0.06);
  }

  .mobile-nav a:hover {
    color: var(--blue);
    background: #eff6ff;
  }

  .hero-section {
    width: 100%;
    padding: 72px 14px 22px;
    gap: 22px;
  }

  .status-pill {
    padding: 7px 12px;
    font-size: 14px;
    margin-top: 0;
    margin-bottom: 12px;
  }

  .hero-content h1 {
    font-size: 35px;
    line-height: 1.05;
    margin-bottom: 14px;
    letter-spacing: -0.05em;
  }

  .hero-text {
    font-size: 15px;
    line-height: 1.55;
    margin-bottom: 18px;
  }

  .launch-card {
    width: 100%;
    padding: 15px;
    align-items: flex-start;
    margin-bottom: 20px;
    border-radius: 20px;
  }

  .launch-icon {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    font-size: 22px;
  }

  .launch-card h2 {
    font-size: 21px;
  }

  .hero-actions {
    width: 100%;
    margin-bottom: 18px;
  }

  .hero-actions .btn {
    width: 100%;
    height: 49px;
  }

  .visual-card {
    min-height: 310px;
    border-radius: 26px;
  }

  .dashboard-mockup {
    width: min(320px, 86%);
  }

  .mockup-body {
    min-height: 220px;
    padding: 20px;
  }

  .chart-line {
    height: 92px;
  }

  .floating-card {
    display: none;
  }

  .services-section {
    width: 100%;
    padding: 24px 14px 10px;
    margin-bottom: 28px;
  }

  .service-grid article {
    padding: 21px;
  }

  .footer {
    width: 100%;
    margin-bottom: 0;
    padding: 14px;
  }
}