:root {
  --voya-blue: #0d7fe8;
  --voya-blue-deep: #0b3a91;
  --voya-blue-mid: #0a5fc4;
  --voya-sky: #5eb6ff;
  --voya-ink: #0f172a;
  --voya-muted: #64748b;
  --voya-surface: #f4f8fc;
  --voya-white: #ffffff;
  --font: "Manrope", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--voya-ink);
  background: var(--voya-surface);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

/* —— Hero (full-bleed sky) —— */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4.5rem 1.5rem 5rem;
  overflow: hidden;
  color: var(--voya-white);
}

.hero__sky {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 70% at 70% 15%, rgba(94, 182, 255, 0.55), transparent 55%),
    radial-gradient(ellipse 60% 50% at 15% 80%, rgba(13, 127, 232, 0.45), transparent 50%),
    linear-gradient(165deg, var(--voya-blue-deep) 0%, var(--voya-blue-mid) 42%, var(--voya-blue) 78%, var(--voya-sky) 100%);
  background-size: 120% 120%;
  animation: sky-drift 18s ease-in-out infinite alternate;
}

.hero__haze {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 55%, rgba(11, 58, 145, 0.35) 100%),
    url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.08'/%3E%3C/svg%3E");
  opacity: 0.9;
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 1;
  width: min(36rem, 100%);
  text-align: center;
}

.hero__logo {
  margin: 0 auto 2rem;
  width: min(14rem, 70vw);
  height: auto;
  filter: drop-shadow(0 8px 24px rgba(11, 58, 145, 0.35));
  animation: rise-in 0.9s var(--ease) both;
}

.hero__headline {
  margin: 0 0 0.85rem;
  font-size: clamp(2rem, 5.5vw, 3.15rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.12;
  text-wrap: balance;
  animation: rise-in 0.9s var(--ease) 0.12s both;
}

.hero__support {
  margin: 0 auto 2rem;
  max-width: 28rem;
  font-size: clamp(1.05rem, 2.4vw, 1.2rem);
  font-weight: 500;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.9);
  text-wrap: pretty;
  animation: rise-in 0.9s var(--ease) 0.22s both;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.15rem;
  padding: 0.85rem 1.75rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: var(--voya-white);
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  cursor: not-allowed;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  opacity: 0.92;
  animation: rise-in 0.9s var(--ease) 0.32s both;
}

.cta:disabled {
  color: rgba(255, 255, 255, 0.95);
}

/* —— Services (one job: what you get) —— */
.services {
  padding: 5rem 1.5rem 4.5rem;
  background:
    linear-gradient(180deg, #e8f3fc 0%, var(--voya-surface) 28%, var(--voya-white) 100%);
}

.services__inner {
  width: min(44rem, 100%);
  margin: 0 auto;
}

.services__title {
  margin: 0 0 0.65rem;
  font-size: clamp(1.65rem, 3.5vw, 2.1rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--voya-blue-deep);
}

.services__lead {
  margin: 0 0 2.75rem;
  max-width: 28rem;
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.5;
  color: var(--voya-muted);
}

.services__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
}

.services__list li {
  display: grid;
  grid-template-columns: minmax(5.5rem, 7.5rem) 1fr;
  gap: 1rem 1.5rem;
  align-items: baseline;
  padding: 1.35rem 0;
  border-top: 1px solid rgba(11, 58, 145, 0.12);
}

.services__list li:last-child {
  border-bottom: 1px solid rgba(11, 58, 145, 0.12);
}

.services__name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--voya-blue);
  letter-spacing: -0.01em;
}

.services__desc {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.45;
  color: var(--voya-ink);
}

/* —— Footer —— */
.footer {
  padding: 2rem 1.5rem 2.5rem;
  background: var(--voya-white);
  border-top: 1px solid rgba(11, 58, 145, 0.08);
}

.footer__inner {
  width: min(44rem, 100%);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1.25rem;
}

.footer__mark {
  flex-shrink: 0;
}

.footer__copy {
  margin: 0;
  flex: 1;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--voya-muted);
}

.footer__mail {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--voya-blue);
  text-decoration: none;
}

.footer__mail:hover {
  text-decoration: underline;
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(1.1rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes sky-drift {
  from {
    background-position: 0% 40%;
  }
  to {
    background-position: 100% 60%;
  }
}

@media (max-width: 520px) {
  .services__list li {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__sky,
  .hero__logo,
  .hero__headline,
  .hero__support,
  .cta {
    animation: none;
  }
}
