:root {
  --bg: #f6f9ff;
  --text: #061a2f;
  --muted: #51657a;
  --soft: #dcecff;
  --white: #ffffff;
  --border: rgba(6, 26, 47, 0.12);

  --light: #dcecff;
  --sky: #8fc7ff;
  --cyan: #1b8cff;
  --blue: #0067e6;
  --deep: #061a2f;

  --shadow: 0 24px 70px rgba(0, 91, 210, 0.18);
}

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

body {
  min-height: 100vh;
  font-family:
    Inter,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    sans-serif;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}

.page {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  overflow: hidden;
}

.gradient-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 12% 18%,
      rgba(27, 140, 255, 0.26),
      transparent 30%
    ),
    radial-gradient(
      circle at 88% 18%,
      rgba(0, 103, 230, 0.18),
      transparent 32%
    ),
    radial-gradient(circle at 52% 100%, rgba(6, 26, 47, 0.12), transparent 40%),
    linear-gradient(135deg, #ffffff, #f6f9ff 45%, #e5f0ff);
  background-size: 160% 160%;
  animation: gradientMove 14s ease-in-out infinite alternate;
  z-index: 0;
}

.grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(6, 26, 47, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(6, 26, 47, 0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), transparent 80%);
  z-index: 1;
}

.orb {
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 999px;
  background: rgba(27, 140, 255, 0.14);
  filter: blur(10px);
  animation: float 8s ease-in-out infinite;
  z-index: 1;
}

.orb.one {
  left: -120px;
  top: 18%;
}

.orb.two {
  right: -120px;
  bottom: 12%;
  background: rgba(6, 26, 47, 0.1);
  animation-delay: -3s;
}

.container {
  width: min(1120px, 100%);
  position: relative;
  z-index: 2;
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 64px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: -0.04em;
  font-size: 1.45rem;
}
.logo img {
  height: 50px;
}

.logo svg {
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  filter: drop-shadow(0 14px 24px rgba(0, 91, 210, 0.2));
}

.status {
  padding: 10px 16px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(16px);
  color: var(--muted);
  font-size: 0.9rem;
  box-shadow: 0 10px 30px rgba(6, 26, 47, 0.06);
}

.hero {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 52px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  margin-bottom: 24px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.9rem;
  box-shadow: 0 10px 30px rgba(6, 26, 47, 0.06);
}

.pulse {
  width: 9px;
  height: 9px;
  background: var(--cyan);
  border-radius: 50%;
  box-shadow: 0 0 0 rgba(27, 140, 255, 0.42);
  animation: pulse 1.8s infinite;
}

h1 {
  max-width: 780px;
  font-size: clamp(3rem, 7vw, 6.25rem);
  line-height: 0.96;
  letter-spacing: -0.075em;
  margin-bottom: 26px;
}

.coming-highlight {
  display: inline-block;
  padding: 0.04em 0.16em 0.12em;
  border-radius: 0.22em;
  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(90deg, var(--cyan), var(--blue), var(--deep)) border-box;

  color: var(--blue);
  box-shadow: 0 16px 40px rgba(0, 91, 210, 0.12);
}

.lead {
  max-width: 620px;
  font-size: clamp(1.04rem, 2vw, 1.22rem);
  line-height: 1.75;
  color: var(--muted);
  margin-bottom: 34px;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  text-decoration: none;
  color: #ffffff;
  font-weight: 700;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  box-shadow: 0 18px 42px rgba(0, 91, 210, 0.24);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 54px rgba(0, 91, 210, 0.32);
}

.note {
  color: var(--muted);
  font-size: 0.95rem;
}

.product-panel {
  padding: 16px;
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--border);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow);
}

.product-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 24px;
  object-fit: cover;
  display: block;
  border: 1px solid rgba(6, 26, 47, 0.08);
  background: var(--soft);
}

.product-content {
  padding: 22px 10px 8px;
}

.product-content h2 {
  font-size: 1.25rem;
  letter-spacing: -0.03em;
  margin-bottom: 10px;
}

.product-content p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.98rem;
}

footer {
  margin-top: 64px;
  padding-top: 24px;
  border-top: 1px solid rgba(6, 26, 47, 0.1);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.92rem;
}

@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }

  100% {
    background-position: 100% 50%;
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-26px) scale(1.06);
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(27, 140, 255, 0.42);
  }

  70% {
    box-shadow: 0 0 0 12px rgba(20, 168, 223, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(20, 168, 223, 0);
  }
}

@media (max-width: 900px) {
  header {
    margin-bottom: 44px;
  }

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

  .product-panel {
    max-width: 560px;
  }
}

@media (max-width: 560px) {
  .page {
    padding: 28px 16px;
  }

  header {
    align-items: flex-start;
    flex-direction: column;
  }

  h1 {
    font-size: clamp(3rem, 17vw, 4.4rem);
  }

  .lead {
    font-size: 1rem;
  }

  .status {
    font-size: 0.82rem;
  }

  footer {
    flex-direction: column;
  }
}
