@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700&family=Unbounded:wght@400;500;600&display=swap');

:root {
  --ink: #1f2b4a;
  --muted: #65708a;
  --line: rgba(31, 43, 74, .14);
  --paper: #f8f9ff;
  --blue: #4060c8;
  --blue-deep: #263f9c;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Manrope, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

.hero {
  position: relative;
  isolation: isolate;
  min-height: max(760px, 100svh);
  overflow: hidden;
  padding: 27px clamp(24px, 6vw, 96px) 33px;
  background: linear-gradient(145deg, #f9fbff 0%, #eef2ff 56%, #e7edff 100%);
}

.navigation, footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navigation { position: relative; z-index: 2; }

.brand {
  font: 500 22px/1 Unbounded, sans-serif;
  letter-spacing: -1.3px;
}

.nav-link, .text-link {
  font-size: 14px;
  font-weight: 600;
  transition: opacity .2s ease;
}

.nav-link:hover, .text-link:hover { opacity: .62; }

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  padding-top: clamp(130px, 22vh, 220px);
}

.eyebrow, .section-label {
  margin: 0;
  color: var(--blue);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}

h1, h2 { margin: 0; font-family: Unbounded, sans-serif; font-weight: 500; letter-spacing: -.055em; }

h1 {
  max-width: 760px;
  margin-top: 20px;
  font-size: clamp(41px, 6.3vw, 88px);
  line-height: 1.08;
}

.intro {
  max-width: 520px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.65;
}

.button {
  display: inline-flex;
  gap: 18px;
  align-items: center;
  margin-top: 35px;
  padding: 17px 21px;
  border-radius: 999px;
  color: #fff;
  background: var(--blue);
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 10px 26px rgba(64, 96, 200, .2);
  transition: transform .2s ease, background .2s ease;
}

.button:hover { background: var(--blue-deep); transform: translateY(-2px); }

.scroll-note {
  position: absolute;
  bottom: 34px;
  left: clamp(24px, 6vw, 96px);
  z-index: 1;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.cloud {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(1px);
  background: linear-gradient(145deg, rgba(255, 255, 255, .87), rgba(213, 224, 255, .46));
}

.cloud::before, .cloud::after { position: absolute; border-radius: inherit; content: ""; background: inherit; }
.cloud-one { width: 390px; height: 178px; right: 10%; bottom: 15%; opacity: .95; }
.cloud-one::before { width: 205px; height: 205px; left: 70px; top: -89px; }
.cloud-one::after { width: 150px; height: 150px; left: -75px; top: -45px; }
.cloud-two { width: 225px; height: 105px; right: -4%; top: 14%; opacity: .55; transform: scale(.75); }
.cloud-two::before { width: 128px; height: 128px; left: 48px; top: -53px; }
.cloud-two::after { width: 93px; height: 93px; left: -45px; top: -29px; }

.details {
  display: grid;
  grid-template-columns: minmax(170px, .7fr) minmax(0, 1.3fr);
  gap: 48px;
  padding: 120px clamp(24px, 14vw, 220px);
  border-top: 1px solid var(--line);
}

.details-muted { background: #f0f3ff; }
.details-content { max-width: 600px; }

h2 { font-size: clamp(28px, 3.2vw, 48px); line-height: 1.18; }

.details p {
  max-width: 510px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.text-link { display: inline-block; margin-top: 30px; color: var(--blue-deep); }
.text-link span { margin-left: 9px; }

footer {
  gap: 24px;
  padding: 25px clamp(24px, 6vw, 96px);
  color: var(--muted);
  font-size: 11px;
}

.footer-links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 20px; }
.footer-links a:hover { color: var(--ink); }

@media (max-width: 680px) {
  .hero { min-height: 690px; }
  .hero-content { padding-top: 157px; }
  .nav-link { font-size: 12px; }
  .cloud-one { right: -33%; bottom: 13%; transform: scale(.8); }
  .cloud-two { display: none; }
  .details { display: block; padding-top: 76px; padding-bottom: 78px; }
  .details-content { margin-top: 20px; }
  footer { display: block; padding-top: 30px; padding-bottom: 31px; }
  .footer-links { justify-content: flex-start; gap: 12px 18px; margin-top: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}
