* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
}

body {
  font-family:
    Inter,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;

  color: #0b1020;

  background:
    linear-gradient(
      135deg,
      #ffffff 0%,
      #f9faff 45%,
      #f4f7ff 100%
    );

  overflow-x: hidden;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.background {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: -1;
}

.glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 999px;
  filter: blur(100px);
  opacity: 0.14;
}

.glow-purple {
  background: #7c3aed;
  top: -280px;
  left: -220px;
}

.glow-blue {
  background: #0ea5e9;
  bottom: -300px;
  right: -220px;
}

/* Header */

.header {
  width: 100%;
  max-width: 1440px;

  margin: 0 auto;

  padding: 34px 64px;

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

.brand img {
  display: block;

  width: 190px;
  height: auto;
}

.header-link {
  display: flex;
  align-items: center;
  gap: 8px;

  text-decoration: none;

  color: #111827;

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

  padding: 12px 18px;

  border: 1px solid rgba(15, 23, 42, 0.12);

  border-radius: 12px;

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

  backdrop-filter: blur(14px);

  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease;
}

.header-link:hover {
  transform: translateY(-1px);

  border-color: rgba(59, 130, 246, 0.35);

  background: #fff;
}

/* Hero */

.hero {
  width: 100%;
  max-width: 1440px;

  margin: auto;

  padding:
    70px
    64px
    120px;

  display: grid;

  grid-template-columns:
    minmax(0, 1.05fr)
    minmax(400px, 0.95fr);

  align-items: center;

  gap: 100px;
}

.hero-content {
  max-width: 720px;
}

.eyebrow {
  display: inline-flex;

  margin-bottom: 22px;

  font-size: 12px;

  font-weight: 700;

  letter-spacing: 0.28em;

  color: #4f46e5;
}

h1 {
  margin: 0;

  font-size: clamp(
    54px,
    6vw,
    88px
  );

  line-height: 0.98;

  letter-spacing: -0.055em;

  font-weight: 700;

  color: #080d1a;
}

h1 span {
  background:
    linear-gradient(
      90deg,
      #6d28d9,
      #2563eb,
      #06b6d4
    );

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

  color: transparent;
}

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

  margin:
    34px
    0
    0;

  font-size: 18px;

  line-height: 1.7;

  color: #5b6475;
}

.actions {
  margin-top: 40px;
}

.primary-button {
  display: inline-flex;

  align-items: center;

  gap: 26px;

  padding:
    16px
    18px
    16px
    22px;

  text-decoration: none;

  color: white;

  font-size: 15px;

  font-weight: 650;

  border-radius: 14px;

  background:
    linear-gradient(
      120deg,
      #6d28d9,
      #2563eb,
      #0891b2
    );

  box-shadow:
    0 12px 32px
    rgba(37, 99, 235, 0.24);

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

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

  box-shadow:
    0 16px 40px
    rgba(37, 99, 235, 0.32);
}

.arrow {
  display: flex;

  width: 32px;
  height: 32px;

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

  border-radius: 8px;

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

/* Right visual */

.visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.visual-card {
  position: relative;

  width: 100%;
  max-width: 540px;

  min-height: 430px;

  border-radius: 36px;

  border:
    1px solid
    rgba(15, 23, 42, 0.09);

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

  box-shadow:
    0 40px 100px
    rgba(31, 41, 55, 0.12);

  backdrop-filter: blur(30px);

  display: flex;

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

  overflow: hidden;
}

.visual-card::before {
  content: "";

  position: absolute;

  width: 340px;
  height: 340px;

  border-radius: 999px;

  background:
    linear-gradient(
      135deg,
      #7c3aed,
      #2563eb,
      #22d3ee
    );

  opacity: 0.12;

  filter: blur(45px);
}

.logo-mark {
  position: relative;
  z-index: 2;

  padding: 45px;

  width: 88%;
}

.logo-mark img {
  width: 100%;
  display: block;
}

.platform-status {
  position: absolute;

  bottom: 24px;
  left: 24px;

  display: inline-flex;
  align-items: center;

  gap: 9px;

  padding: 10px 14px;

  border:
    1px solid
    rgba(15, 23, 42, 0.08);

  border-radius: 10px;

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

  font-size: 12px;

  font-weight: 600;

  color: #384152;

  backdrop-filter: blur(10px);
}

.status-dot {
  display: block;

  width: 7px;
  height: 7px;

  border-radius: 99px;

  background: #22c55e;

  box-shadow:
    0 0 0 4px
    rgba(34, 197, 94, 0.12);
}

/* Footer */

.footer {
  width: 100%;
  max-width: 1440px;

  margin: 0 auto;

  padding:
    24px
    64px
    34px;

  display: flex;
  align-items: center;

  gap: 14px;

  color: #8991a1;

  font-size: 12px;
}

.footer-divider {
  width: 3px;
  height: 3px;

  border-radius: 50%;

  background: #c4c8d0;
}

/* Mobile */

@media (max-width: 900px) {

  .header {
    padding:
      26px
      24px;
  }

  .brand img {
    width: 150px;
  }

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

    padding:
      55px
      24px
      80px;

    gap: 70px;
  }

  h1 {
    font-size:
      clamp(
        46px,
        13vw,
        70px
      );
  }

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

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

  .footer {
    padding:
      20px
      24px
      30px;
  }
}

@media (max-width: 520px) {

  .header-link {
    padding: 10px 13px;
  }

  .brand img {
    width: 135px;
  }

  .hero {
    padding-top: 38px;
  }

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

}