:root {
  --bg: #f6f8fc;
  --panel: rgba(255, 255, 255, 0.72);
  --panel-strong: rgba(255, 255, 255, 0.88);
  --border: rgba(15, 23, 42, 0.08);
  --text: #0f172a;
  --muted: #475569;
  --soft: #64748b;
  --accent: #2563eb;
  --accent-soft: #dbeafe;
  --shadow: 0 22px 70px rgba(15, 23, 42, 0.10);
}

* {
  box-sizing: border-box;
}

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

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(37, 99, 235, 0.10), transparent 32%),
    radial-gradient(circle at bottom right, rgba(14, 165, 233, 0.10), transparent 28%),
    linear-gradient(180deg, #f8fbff, #eef4fb 58%, #f8fbff);
  overflow-x: hidden;
}

.bg-orb {
  position: fixed;
  border-radius: 999px;
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.6;
}

.orb-1 {
  width: 280px;
  height: 280px;
  top: 8%;
  left: -60px;
  background: rgba(96, 165, 250, 0.22);
}

.orb-2 {
  width: 320px;
  height: 320px;
  right: -70px;
  bottom: 6%;
  background: rgba(14, 165, 233, 0.18);
}

.hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px 20px;
}

.hero__inner {
  width: min(940px, 100%);
  padding: 60px 36px;
  border: 1px solid rgba(255,255,255,0.65);
  border-radius: 30px;
  background: linear-gradient(180deg, var(--panel-strong), var(--panel));
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
  text-align: center;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 18px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 0.95;
  letter-spacing: -0.055em;
  font-weight: 800;
}

.slider-wrap {
  margin: 22px auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.slider-label {
  color: var(--soft);
  font-size: 1rem;
  font-weight: 600;
}

.slider {
  min-width: 220px;
  height: 64px;
  padding: 0 24px;
  border-radius: 999px;
  background: rgba(255,255,255,0.9);
  border: 1px solid var(--border);
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.08);
  display: grid;
  place-items: center;
}

.slider__viewport {
  position: relative;
  width: 220px;
  height: 44px;
}

.slider__word {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: clamp(1.3rem, 2.8vw, 1.9rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--accent);
  opacity: 0;
  transform: translateY(18px) scale(0.98);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.slider__word.is-active {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.lead {
  width: min(720px, 100%);
  margin: 12px auto 0;
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  line-height: 1.75;
  color: var(--muted);
}

.highlights {
  margin: 34px auto 0;
  width: min(720px, 100%);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.highlight {
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(255,255,255,0.82);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 600;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
}

.contact-block {
  margin-top: 42px;
  padding-top: 30px;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.contact-title {
  margin: 0 0 12px;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 700;
}

.contact-link {
  display: inline-block;
  color: var(--accent);
  text-decoration: none;
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  font-weight: 700;
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(37, 99, 235, 0.14);
  box-shadow: 0 12px 30px rgba(37, 99, 235, 0.10);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.contact-link:hover,
.contact-link:focus {
  transform: translateY(-1px);
  box-shadow: 0 16px 34px rgba(37, 99, 235, 0.14);
}

@media (max-width: 640px) {
  .hero__inner {
    padding: 42px 22px;
    border-radius: 24px;
  }

  .slider {
    min-width: 190px;
    height: 58px;
    padding: 0 16px;
  }

  .slider__viewport {
    width: 180px;
    height: 40px;
  }

  .highlight {
    width: calc(50% - 6px);
    text-align: center;
  }
}
