:root {
  --bg: #03070d;
  --text: #edf8ff;
  --muted: #8da2b4;
  --muted-dark: #526779;
  --accent: #55d5ff;
  --accent-2: #728cff;

  --glass-bg: rgba(255, 255, 255, 0.045);
  --glass-border: rgba(255, 255, 255, 0.11);

  --radius: 24px;
}


/* =========================================================
   RESET
========================================================= */

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

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  overflow-x: hidden;

  color: var(--text);
  background: var(--bg);

  font-family: "Inter", sans-serif;

  -webkit-font-smoothing: antialiased;
}


/* =========================================================
   BACKGROUND
========================================================= */

.background {
  position: fixed;
  inset: 0;

  overflow: hidden;

  pointer-events: none;
  z-index: -10;

  background:
    radial-gradient(
      circle at 50% -15%,
      rgba(44, 192, 255, 0.14),
      transparent 40%
    ),
    linear-gradient(
      135deg,
      #02050a,
      #07131e 50%,
      #02060b
    );
}


.grid {
  position: absolute;
  inset: 0;

  opacity: 0.17;

  background-image:
    linear-gradient(
      rgba(255, 255, 255, 0.035) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.035) 1px,
      transparent 1px
    );

  background-size: 70px 70px;

  mask-image: linear-gradient(
    to bottom,
    black,
    transparent 75%
  );
}


.orb {
  position: absolute;

  border-radius: 50%;

  filter: blur(100px);

  opacity: 0.28;

  animation: float 12s ease-in-out infinite;
}

.orb-one {
  width: 430px;
  height: 430px;

  left: -160px;
  top: 80px;

  background: #009dff;
}

.orb-two {
  width: 390px;
  height: 390px;

  right: -160px;
  top: 40%;

  background: #6159ff;

  animation-delay: -4s;
}

.orb-three {
  width: 300px;
  height: 300px;

  left: 38%;
  bottom: -180px;

  background: #00d9b5;

  animation-delay: -7s;
}


@keyframes float {

  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(25px, -30px, 0);
  }
}


/* =========================================================
   GLASS
========================================================= */

.glass,
.glass-card {
  position: relative;

  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.075),
      rgba(255, 255, 255, 0.018)
    );

  border: 1px solid var(--glass-border);

  box-shadow:
    0 30px 90px rgba(0, 0, 0, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.09);

  backdrop-filter: blur(26px);
  -webkit-backdrop-filter: blur(26px);
}


.glass::before,
.glass-card::before {
  content: "";

  position: absolute;

  left: var(--mouse-x, 50%);
  top: var(--mouse-y, 50%);

  width: 220px;
  height: 220px;

  transform: translate(-50%, -50%);

  background: radial-gradient(
    circle,
    rgba(85, 213, 255, 0.10),
    transparent 70%
  );

  pointer-events: none;
}


/* =========================================================
   NAVBAR
========================================================= */

.navbar {
  position: fixed;

  top: 22px;
  left: 50%;

  transform: translateX(-50%);

  width: min(1120px, calc(100% - 32px));
  height: 62px;

  padding: 0 20px;

  border-radius: 20px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  z-index: 100;
}


.logo {
  display: flex;
  align-items: center;
  gap: 9px;

  color: white;

  text-decoration: none;

  font-family: "Space Grotesk", sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.6px;
}


.logo .accent {
  color: var(--accent);
}


.logo-symbol {
  display: grid;
  place-items: center;

  width: 32px;
  height: 32px;

  border-radius: 10px;

  color: #9be7ff;

  background:
    linear-gradient(
      145deg,
      rgba(70, 205, 255, 0.30),
      rgba(65, 95, 255, 0.10)
    );

  border: 1px solid rgba(115, 225, 255, 0.25);

  box-shadow:
    0 0 25px rgba(55, 195, 255, 0.12);

  font-size: 15px;
}


.nav-status {
  display: flex;
  align-items: center;

  color: #9cafc0;

  font-size: 11px;
}


.status-dot {
  width: 7px;
  height: 7px;

  margin-right: 8px;

  border-radius: 50%;

  background: #55e5bd;

  box-shadow: 0 0 14px #55e5bd;
}


/* =========================================================
   MAIN
========================================================= */

main {
  width: min(1120px, calc(100% - 32px));

  margin: auto;
}


/* =========================================================
   HERO
========================================================= */

.hero {
  padding: 175px 10px 80px;

  text-align: center;
}


.eyebrow {
  display: inline-flex;
  align-items: center;

  padding: 9px 14px;

  border-radius: 999px;

  color: #b9cbd8;

  font-size: 11px;

  letter-spacing: 0.2px;
}


.eyebrow span {
  color: var(--accent);

  margin-right: 8px;

  text-shadow:
    0 0 15px rgba(85, 213, 255, 0.8);
}


.hero h1 {
  max-width: 1050px;

  margin: 28px auto 25px;

  font-family: "Space Grotesk", sans-serif;

  font-size: clamp(48px, 8vw, 90px);
  line-height: 0.98;

  letter-spacing: -5px;

  font-weight: 700;
}


.hero h1 span {
  display: block;

  background:
    linear-gradient(
      90deg,
      #ffffff 0%,
      #68d9ff 45%,
      #8e99ff 100%
    );

  -webkit-background-clip: text;
  background-clip: text;

  color: transparent;
}


.hero-description {
  max-width: 720px;

  margin: auto;

  color: var(--muted);

  font-size: 16px;

  line-height: 1.75;
}


.hero-buttons {
  display: flex;

  justify-content: center;

  gap: 12px;

  margin-top: 34px;
}


.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 14px;

  min-height: 46px;

  padding: 0 20px;

  border-radius: 14px;

  border: 1px solid rgba(255, 255, 255, 0.13);

  font-family: "Inter", sans-serif;

  font-size: 12px;
  font-weight: 600;

  text-decoration: none;

  cursor: pointer;

  transition:
    transform 0.25s ease,
    filter 0.25s ease,
    box-shadow 0.25s ease;
}


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

  filter: brightness(1.08);
}


.button-primary {
  color: #031018;

  background:
    linear-gradient(
      135deg,
      #7be4ff,
      #46baff
    );

  box-shadow:
    0 0 35px rgba(57, 194, 255, 0.20);
}


.button-secondary {
  color: #dceaf5;

  background:
    rgba(255, 255, 255, 0.045);

  box-shadow:
    inset 0 1px rgba(255, 255, 255, 0.08);
}


.capability-strip {
  display: flex;

  justify-content: center;
  align-items: center;

  gap: 10px;

  flex-wrap: wrap;

  margin-top: 30px;

  color: #596e7f;

  font-size: 10px;
}


.capability-strip b {
  color: #294456;
}


/* =========================================================
   PRODUCT PREVIEW
========================================================= */

.preview-section {
  padding-bottom: 100px;
}


.preview-window {
  overflow: hidden;

  border-radius: 26px;

  transform: perspective(1500px) rotateX(2deg);

  box-shadow:
    0 50px 120px rgba(0, 0, 0, 0.45),
    0 0 80px rgba(50, 190, 255, 0.06);
}


.window-header {
  height: 48px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 0 18px;

  border-bottom: 1px solid rgba(255, 255, 255, 0.07);

  background: rgba(255, 255, 255, 0.025);
}


.window-controls {
  display: flex;
  gap: 6px;
}


.window-controls span {
  width: 7px;
  height: 7px;

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.2);
}


.window-title {
  color: #607487;

  font-size: 9px;

  letter-spacing: 0.5px;
}


.window-live {
  display: flex;
  align-items: center;

  gap: 5px;

  color: #59dcbf;

  font-size: 8px;
}


.window-live span {
  width: 5px;
  height: 5px;

  border-radius: 50%;

  background: #59dcbf;

  box-shadow: 0 0 10px #59dcbf;
}


.preview-content {
  display: flex;

  min-height: 420px;
}


.preview-sidebar {
  width: 150px;

  padding: 20px 12px;

  border-right: 1px solid rgba(255, 255, 255, 0.06);

  background: rgba(0, 0, 0, 0.10);
}


.side-logo {
  margin: 0 10px 28px;
}


.side-logo span {
  display: grid;
  place-items: center;

  width: 31px;
  height: 31px;

  border-radius: 9px;

  color: #65d8ff;

  background: rgba(65, 205, 255, 0.08);

  border: 1px solid rgba(65, 205, 255, 0.12);

  font-size: 9px;
  font-weight: 700;
}


.side-item {
  display: flex;
  align-items: center;

  gap: 10px;

  padding: 10px;

  margin-bottom: 5px;

  border-radius: 10px;

  color: #5d7182;

  font-size: 9px;
}


.side-item span {
  font-size: 12px;
}


.side-item.active {
  color: #bceeff;

  background: rgba(78, 207, 255, 0.07);

  border: 1px solid rgba(78, 207, 255, 0.08);
}


.preview-main {
  flex: 1;

  padding: 28px;
}


.preview-heading {
  display: flex;

  justify-content: space-between;
  align-items: center;

  margin-bottom: 22px;
}


.preview-heading small {
  display: block;

  margin-bottom: 5px;

  color: #506678;

  font-size: 7px;

  letter-spacing: 1px;
}


.preview-heading h3 {
  font-family: "Space Grotesk", sans-serif;

  font-size: 19px;

  font-weight: 600;
}


.fake-select {
  padding: 8px 10px;

  border: 1px solid rgba(255, 255, 255, 0.07);

  border-radius: 9px;

  color: #617789;

  background: rgba(255, 255, 255, 0.025);

  font-size: 8px;
}


.fake-select span {
  margin-left: 8px;
}


.stats {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 10px;

  margin-bottom: 12px;
}


.stat-card {
  padding: 17px;

  border-radius: 14px;

  background: rgba(255, 255, 255, 0.025);

  border: 1px solid rgba(255, 255, 255, 0.065);
}


.stat-card span {
  display: block;

  margin-bottom: 9px;

  color: #506678;

  font-size: 7px;

  letter-spacing: 0.8px;
}


.stat-card strong {
  display: block;

  margin-bottom: 5px;

  font-family: "Space Grotesk", sans-serif;

  font-size: 22px;
}


.stat-card small {
  color: #52d5b8;

  font-size: 7px;
}


.fake-chart {
  min-height: 250px;

  padding: 20px;

  border-radius: 16px;

  background: rgba(255, 255, 255, 0.025);

  border: 1px solid rgba(255, 255, 255, 0.065);
}


.chart-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
}


.chart-heading > div span {
  display: block;

  margin-bottom: 5px;

  font-size: 10px;
}


.chart-heading small {
  color: #53697b;

  font-size: 7px;
}


.chart-badge {
  color: #56d8bb;

  font-size: 7px;
}


.chart {
  position: relative;

  height: 170px;

  margin-top: 12px;

  overflow: hidden;

  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}


.chart-grid-line {
  position: absolute;

  left: 0;
  right: 0;

  border-top: 1px dashed rgba(255, 255, 255, 0.045);
}


.line-1 {
  top: 25%;
}


.line-2 {
  top: 50%;
}


.line-3 {
  top: 75%;
}


.chart-line {
  position: absolute;

  left: 0;
  right: 0;

  top: 50%;

  height: 2px;

  transform:
    translateY(-50%)
    rotate(-3deg)
    scaleX(1.05);

  background:
    linear-gradient(
      90deg,
      transparent,
      #50d5ff 15%,
      #728cff 50%,
      #50d5ff 85%,
      transparent
    );

  box-shadow:
    0 0 18px rgba(80, 213, 255, 0.45);
}


.chart-point {
  position: absolute;

  width: 7px;
  height: 7px;

  border-radius: 50%;

  background: #7de4ff;

  box-shadow:
    0 0 12px rgba(75, 216, 255, 0.8);
}


.p1 {
  left: 8%;
  top: 54%;
}

.p2 {
  left: 25%;
  top: 46%;
}

.p3 {
  left: 43%;
  top: 50%;
}

.p4 {
  left: 61%;
  top: 37%;
}

.p5 {
  left: 78%;
  top: 45%;
}

.p6 {
  left: 94%;
  top: 29%;
}


/* =========================================================
   FEATURES
========================================================= */

.features-section {
  padding: 20px 0 70px;
}


.section-intro {
  max-width: 730px;

  margin-bottom: 40px;
}


.section-label {
  color: var(--accent);

  font-family: "Space Grotesk", sans-serif;

  font-size: 9px;
  font-weight: 700;

  letter-spacing: 2px;
}


.section-intro h2 {
  margin-top: 14px;

  font-family: "Space Grotesk", sans-serif;

  font-size: clamp(34px, 5vw, 52px);

  line-height: 1.05;

  letter-spacing: -2px;
}


.section-intro h2 span {
  color: #697f91;
}


.section-intro p {
  max-width: 650px;

  margin-top: 18px;

  color: var(--muted);

  font-size: 14px;

  line-height: 1.7;
}


.feature-grid {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 16px;
}


.feature-card {
  min-height: 285px;

  padding: 30px;

  overflow: hidden;

  transition:
    transform 0.3s ease,
    border-color 0.3s ease;
}


.feature-card:hover {
  transform: translateY(-5px);

  border-color: rgba(85, 213, 255, 0.20);
}


.card-top {
  display: flex;

  justify-content: space-between;
  align-items: flex-start;
}


.card-top > span {
  color: #3f5263;

  font-family: "Space Grotesk", sans-serif;

  font-size: 11px;
}


.feature-icon {
  display: grid;
  place-items: center;

  width: 45px;
  height: 45px;

  border-radius: 14px;

  color: #69d9ff;

  background: rgba(76, 203, 255, 0.07);

  border: 1px solid rgba(76, 203, 255, 0.13);

  font-size: 19px;

  box-shadow:
    0 0 30px rgba(70, 200, 255, 0.06);
}


.feature-card h3 {
  margin-top: 35px;
  margin-bottom: 10px;

  font-family: "Space Grotesk", sans-serif;

  font-size: 24px;
  font-weight: 600;

  letter-spacing: -0.6px;
}


.feature-card p {
  max-width: 470px;

  color: #899eaf;

  font-size: 13px;

  line-height: 1.7;
}


.tags {
  display: flex;

  gap: 7px;

  margin-top: 22px;
}


.tags span {
  padding: 6px 9px;

  border-radius: 8px;

  color: #718698;

  background: rgba(255, 255, 255, 0.035);

  border: 1px solid rgba(255, 255, 255, 0.06);

  font-size: 9px;
}


/* =========================================================
   VISION
========================================================= */

.vision {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 60px;

  margin: 20px 0;

  padding: 45px;
}


.vision-heading h2 {
  max-width: 500px;

  margin-top: 15px;

  font-family: "Space Grotesk", sans-serif;

  font-size: clamp(30px, 4vw, 46px);

  line-height: 1.08;

  letter-spacing: -1.5px;
}


.vision-heading h2 span {
  display: block;

  color: #6f8394;
}


.vision-copy {
  align-self: end;
}


.vision-copy p {
  margin-bottom: 13px;

  color: #8fa3b5;

  font-size: 14px;

  line-height: 1.8;
}


/* =========================================================
   LAUNCH
========================================================= */

.launch {
  position: relative;

  margin: 16px 0 70px;

  padding: 70px 25px;

  text-align: center;

  overflow: hidden;
}


.launch-glow {
  position: absolute;

  width: 350px;
  height: 350px;

  left: 50%;
  top: 50%;

  transform: translate(-50%, -50%);

  border-radius: 50%;

  background: #26cfff;

  opacity: 0.10;

  filter: blur(100px);

  pointer-events: none;
}


.launch h2 {
  position: relative;

  margin-top: 14px;

  font-family: "Space Grotesk", sans-serif;

  font-size: clamp(34px, 5vw, 52px);

  line-height: 1.05;

  letter-spacing: -2px;
}


.launch h2 span {
  display: block;

  color: #6e8394;
}


.launch > p {
  position: relative;

  max-width: 600px;

  margin: 18px auto 28px;

  color: #8da2b4;

  font-size: 13px;

  line-height: 1.7;
}


.launch form {
  position: relative;

  display: flex;

  justify-content: center;

  gap: 9px;
}


.launch input {
  width: 310px;

  height: 46px;

  padding: 0 16px;

  color: white;

  background: rgba(0, 0, 0, 0.18);

  border: 1px solid rgba(255, 255, 255, 0.12);

  border-radius: 14px;

  outline: none;

  font-family: "Inter", sans-serif;

  font-size: 12px;

  transition: 0.25s ease;
}


.launch input::placeholder {
  color: #526779;
}


.launch input:focus {
  border-color: rgba(82, 207, 255, 0.45);

  box-shadow:
    0 0 0 3px rgba(82, 207, 255, 0.06);
}


#formMessage {
  position: relative;

  min-height: 17px;

  margin-top: 14px;

  color: #61dbbd;

  font-size: 10px;
}


/* =========================================================
   FOOTER
========================================================= */

footer {
  width: min(1120px, calc(100% - 32px));

  margin: auto;

  padding-bottom: 30px;

  display: flex;

  justify-content: space-between;

  color: #4e6274;

  font-size: 10px;
}


footer div:first-child {
  display: flex;

  gap: 12px;
}


footer strong {
  color: #7890a2;

  font-family: "Space Grotesk", sans-serif;
}


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

@media (max-width: 700px) {

  .navbar {
    top: 12px;
  }

  .nav-status {
    display: none;
  }

  .hero {
    padding-top: 135px;
    padding-bottom: 65px;
  }

  .hero h1 {
    letter-spacing: -3px;
  }

  .hero-description {
    font-size: 14px;
  }

  .hero-buttons {
    flex-direction: column;

    align-items: center;
  }

  .button {
    width: min(290px, 100%);
  }

  .preview-sidebar {
    display: none;
  }

  .preview-main {
    padding: 20px;
  }

  .preview-content {
    min-height: 350px;
  }

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

  .stat-card {
    padding: 13px;
  }

  .stat-card strong {
    font-size: 18px;
  }

  .fake-chart {
    min-height: 210px;
  }

  .chart {
    height: 135px;
  }

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

  .vision {
    grid-template-columns: 1fr;

    gap: 25px;

    padding: 30px;
  }

  .launch {
    padding: 50px 18px;
  }

  .launch form {
    flex-direction: column;

    align-items: center;
  }

  .launch input {
    width: min(310px, 100%);
  }

  footer {
    flex-direction: column;

    gap: 10px;

    text-align: center;
  }

  footer div:first-child {
    justify-content: center;
  }
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

  html {
    scroll-behavior: auto;
  }

  .orb {
    animation: none;
  }

  .button,
  .feature-card {
    transition: none;
  }

}
