:root {
  --primary: #0f6c7c;
  --primary-hover: #0b5865;
  --secondary: #1d4f91;
  --accent: #4cb8c4;
  --bg: #f4f8fb;
  --surface: #ffffffeb;
  --surface-strong: #fffffffa;
  --text: #163042;
  --text-soft: #385166;
  --border-strong: #bfd1dd;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "DM Sans", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 0 0, #4cb8c429, transparent 26%),
    radial-gradient(circle at 100% 0, #1d4f911f, transparent 24%),
    linear-gradient(180deg, #f8fbfd 0%, #f1f6fa 38%, #eef4f8 100%);
  overflow-x: hidden;
}

.bg-orb {
  position: fixed;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(24px);
  opacity: 0.45;
  z-index: 0;
  pointer-events: none;
}

.bg-orb-one {
  top: -140px;
  left: -110px;
  background: radial-gradient(circle, #4cb8c447, transparent 66%);
}

.bg-orb-two {
  right: -120px;
  bottom: -160px;
  background: radial-gradient(circle, #1d4f9142, transparent 68%);
}

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

.hero {
  width: min(980px, 100%);
  background: linear-gradient(145deg, var(--surface-strong), var(--surface));
  border: 1px solid var(--border-strong);
  border-radius: 32px;
  padding: clamp(26px, 5vw, 54px);
  box-shadow: 0 28px 64px #1030421f;
  text-align: center;
  animation: rise 800ms ease-out both;
}

.logo {
  width: min(450px, 90%);
  height: auto;
  display: block;
  margin: 0 auto 18px;
}

.eyebrow {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--primary);
}

h1 {
  margin: 10px 0 14px;
  font-family: "Sora", sans-serif;
  font-size: clamp(2rem, 6vw, 4.2rem);
  line-height: 1.04;
  color: var(--secondary);
}

.lead {
  margin: 0 auto;
  max-width: 760px;
  font-size: clamp(1rem, 2vw, 1.22rem);
  line-height: 1.75;
  color: var(--text-soft);
}

.feature-grid {
  margin-top: clamp(24px, 4vw, 40px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.feature {
  background: #ffffffdb;
  border: 1px solid var(--border-strong);
  border-radius: 18px;
  padding: 16px;
  text-align: left;
  animation: rise 800ms ease-out both;
}

.feature:nth-child(2) {
  animation-delay: 120ms;
}

.feature:nth-child(3) {
  animation-delay: 240ms;
}

.feature h2 {
  margin: 0 0 8px;
  font-family: "Sora", sans-serif;
  color: var(--primary-hover);
  font-size: 1.02rem;
  line-height: 1.35;
}

.feature p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.6;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 860px) {
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .feature {
    text-align: center;
  }
}
