﻿:root {
  font-family: Arial, Helvetica, sans-serif;
  color: #16324a;
  background: #fbfcfd;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

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

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background:
    radial-gradient(circle at 50% 42%, rgba(224, 235, 243, 0.24), transparent 36%),
    #fbfcfd;
}

main {
  flex: 1;
  display: grid;
  place-items: center;
  padding: 56px 24px;
}

.migration-card {
  width: min(100%, 720px);
  padding: 58px 54px 56px;
  border: 1px solid rgba(188, 205, 218, 0.45);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow:
    0 18px 50px rgba(37, 63, 82, 0.055),
    0 2px 8px rgba(37, 63, 82, 0.025);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #16324a;
  text-decoration: none;
  font-size: 17px;
  font-weight: 600;
}

.brand img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
}

.eyebrow {
  margin: 48px 0 0;
  font-size: 14px;
  font-weight: 600;
  color: #71879a;
}

h1 {
  max-width: 590px;
  margin: 15px 0 0;
  font-size: clamp(2.45rem, 5vw, 3.65rem);
  line-height: 1.04;
  letter-spacing: -0.045em;
  font-weight: 500;
}

.copy {
  max-width: 565px;
  margin: 30px 0 0;
  font-size: 17px;
  line-height: 1.75;
  color: #5d7488;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 34px;
  min-height: 54px;
  padding: 0 24px;
  border: 0;
  border-radius: 0;
  background: #075cc7;
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition:
    background-color 180ms ease,
    transform 180ms ease;
}

.cta:hover,
.cta:focus-visible {
  background: #176fd8;
}

.cta:active {
  transform: translateY(1px);
}

.cta span {
  font-size: 16px;
  line-height: 1;
}

footer {
  padding: 24px;
  text-align: center;
  font-size: 13px;
  color: #91a2af;
}

@media (max-width: 640px) {
  main {
    padding: 24px 16px;
  }

  .migration-card {
    padding: 40px 28px;
    border-radius: 24px;
  }

  .eyebrow {
    margin-top: 40px;
  }

  h1 {
    font-size: clamp(2.25rem, 12vw, 3rem);
  }

  .copy {
    font-size: 16px;
  }
}


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

footer a:hover,
footer a:focus-visible {
  color: #5d7488;
}

.inline-link {
  color: #16324a;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(22, 50, 74, 0.22);
  text-underline-offset: 3px;
}

.inline-link:hover,
.inline-link:focus-visible {
  text-decoration-color: rgba(22, 50, 74, 0.65);
}
