/* Basic reset */
* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  color: rgba(255, 255, 255, 0.95);
}

/* Background + layout */
.hero {
  min-height: 100vh;
  background: linear-gradient(180deg, #7b73f2 0%, #8a86df 45%, #9b9bb4 100%);
  padding: 56px 0 64px;
}

.wrap {
  width: min(1100px, calc(100% - 64px));
  margin: 0 auto;
}

/* Logo */
.brand { margin-bottom: 18px; }
.logo {
  width: 52px;
  height: 52px;
  display: block;
  border-radius: 999px;
}

/* Text */
.title {
  margin: 0 0 10px;
  font-size: clamp(44px, 5vw, 60px);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.headline {
  margin: 0 0 18px;
  font-size: clamp(22px, 2.4vw, 34px);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.2;
  max-width: 980px;
}

.subhead {
  margin: 0 0 18px;
  max-width: 980px;
  font-size: 14px;
  font-weight: 600;
  opacity: 0.9;
}

/* Buttons */
.cta-row {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
  margin: 10px 0 26px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 10px;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  transition: transform 140ms ease, filter 140ms ease, background-color 140ms ease;
}

.btn-primary {
  background: rgba(120, 70, 205, 0.65);
}

.btn-secondary {
  background: rgba(120, 70, 205, 0.45);
}

.btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
}

.btn:active {
  transform: translateY(0px);
  filter: brightness(0.98);
}

/* Section */
.expect { max-width: 980px; }

.section-title {
  margin: 0 0 10px;
  font-size: 13px;
  font-weight: 800;
  opacity: 0.95;
}

.bullets {
  margin: 0 0 16px;
  padding-left: 18px;
  font-size: 13px;
  line-height: 1.55;
  opacity: 0.92;
}

.closing {
  margin: 0 0 22px;
  font-size: 13px;
  opacity: 0.92;
}

/* Divider + footer note */
.divider {
  border: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.35);
  margin: 18px 0 16px;
}

.early {
  margin: 0;
  font-size: 14px;
  opacity: 0.9;
}

/* Anchor targets (optional) */
.anchor {
  position: relative;
  top: -24px;
}

/* Small screens */
@media (max-width: 640px) {
  .hero { padding-top: 40px; }
  .wrap { width: calc(100% - 32px); }
  .subhead { font-size: 13px; }
}
