:root {
  --page: #f6f8fb;
  --panel: rgba(255, 255, 255, 0.72);
  --text: #0f172a;
  --muted: #667085;
  --soft: #e4e9f1;
  --blue: #7c3aed;
  --blue-hover: #6d28d9;
  --accent: #f200ff;
  --shadow: 0 24px 70px rgba(15, 23, 42, 0.11);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--page);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  line-height: 1.45;
}

a {
  color: inherit;
  text-decoration: none;
}

.hero {
  min-height: 100vh;
  padding: 32px 18px;
  background:
    radial-gradient(circle at 50% 32%, rgba(124, 58, 237, 0.16), transparent 34%),
    linear-gradient(180deg, #eef2f7 0%, #f8fafc 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-inner {
  position: relative;
  width: min(720px, 100%);
  padding: clamp(32px, 6vw, 54px) clamp(20px, 5vw, 48px);
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 20px;
  background: var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.hero-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.8), transparent 42%);
}

.logo {
  position: relative;
  width: clamp(118px, 18vw, 148px);
  height: auto;
  margin-bottom: 14px;
  filter: drop-shadow(0 8px 18px rgba(242, 0, 255, 0.16));
}

h1 {
  position: relative;
  margin: 0;
  font-size: clamp(28px, 4vw, 38px);
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lead {
  position: relative;
  margin: 18px auto 0;
  max-width: 620px;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 20px);
  font-weight: 400;
}

.benefit {
  position: relative;
  display: inline-flex;
  width: fit-content;
  max-width: min(100%, 720px);
  align-items: center;
  gap: 8px;
  margin: 24px 0 28px;
  border: 1px solid var(--soft);
  border-radius: 999px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.64);
  color: #566276;
  font-size: clamp(14px, 1.6vw, 15px);
  font-weight: 500;
  white-space: nowrap;
}

.check {
  display: inline-grid;
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  margin-right: 0;
  border-radius: 50%;
  place-items: center;
  background: #708092;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  vertical-align: 0;
}

.actions {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border-radius: 9px;
  padding: 13px 20px;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 12px 26px rgba(124, 58, 237, 0.28);
  transition: transform 160ms ease, background-color 160ms ease, box-shadow 160ms ease;
  white-space: nowrap;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 30px rgba(124, 58, 237, 0.34);
}

.button-primary {
  background: var(--blue);
}

.button-primary:hover {
  background: var(--blue-hover);
}

@media (max-width: 720px) {
  .hero {
    padding: 18px;
  }

  .logo {
    width: 122px;
  }

  .benefit {
    border-radius: 14px;
    white-space: normal;
  }

  .button {
    width: 100%;
  }
}
