* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #102033;
  background:
    radial-gradient(circle at top left, rgba(53, 119, 255, 0.18), transparent 32%),
    radial-gradient(circle at bottom right, rgba(0, 188, 159, 0.16), transparent 30%),
    linear-gradient(135deg, #f7faff 0%, #edf3f8 100%);
  min-height: 100vh;
}

.page {
  min-height: 100vh;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 20px;
}

.glass-card {
  width: min(100%, 980px);
  padding: 54px;
  text-align: center;
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 28px 90px rgba(18, 40, 73, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(18px);
}

.logo-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 34px;
}

.logo {
  width: min(100%, 360px);
  height: auto;
  display: block;
}

.eyebrow {
  margin: 0 0 14px;
  color: #1d6fe8;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 13px;
}

h1 {
  max-width: 820px;
  margin: 0 auto 22px;
  font-size: clamp(22px, 2vw, 44px);
  line-height: 1.04;
  letter-spacing: -0.045em;
  color: #0b1b2d;
}

.lead {
  max-width: 760px;
  margin: 0 auto 38px;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.65;
  color: #536275;
}

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 0 auto 34px;
}

.features div {
  padding: 24px 20px;
  border-radius: 22px;
  background: #f8fbff;
  border: 1px solid #e5edf7;
}

.features span {
  display: block;
  margin-bottom: 8px;
  font-size: 24px;
  font-weight: 800;
  color: #0b1b2d;
}

.features p {
  margin: 0;
  color: #5b6b7e;
  line-height: 1.5;
}

.notice {
  margin: 0 auto 30px;
  max-width: 720px;
  padding: 18px 22px;
  border-radius: 18px;
  background: #eef7ff;
  border: 1px solid #d7eafe;
  color: #28506f;
  line-height: 1.55;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 28px;
  border-radius: 999px;
  background: #0b1b2d;
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 14px 30px rgba(11, 27, 45, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(11, 27, 45, 0.28);
}

@media (max-width: 760px) {
  .glass-card {
    padding: 34px 22px;
    border-radius: 26px;
  }

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

  .logo {
    width: min(100%, 300px);
  }
}
