:root {
  --sky: #f5fbff;
  --mist: #d8e6fb;
  --ice: #bdd7f3;
  --periwinkle: #96abdf;
  --cornflower: #648dca;
  --navy: #202658;
  --shadow: rgba(32, 38, 88, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  font-size: 16px;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Century Gothic", "Trebuchet MS", "Gill Sans", sans-serif;
  color: var(--navy);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.94), transparent 38%),
    radial-gradient(circle at 85% 18%, rgba(150, 171, 223, 0.24), transparent 24%),
    linear-gradient(140deg, #fcfeff 0%, #eef5ff 34%, #dbe8fb 100%);
}

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

.page {
  position: relative;
  min-height: 100vh;
  padding: clamp(1.5rem, 4vw, 3rem);
  overflow: hidden;
  isolation: isolate;
  display: grid;
  place-items: center;
}

.flock {
  position: absolute;
  top: 0;
  left: 50%;
  width: min(110rem, 135vw);
  transform: translate(-50%, -12%);
  opacity: 0.16;
  pointer-events: none;
  animation: drift 18s ease-in-out infinite;
}

.orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(8px);
  pointer-events: none;
}

.orb-one {
  top: 12%;
  left: 7%;
  width: 22rem;
  height: 22rem;
  background: radial-gradient(circle, rgba(189, 215, 243, 0.62), rgba(189, 215, 243, 0));
}

.orb-two {
  right: 10%;
  bottom: 8%;
  width: 24rem;
  height: 24rem;
  background: radial-gradient(circle, rgba(100, 141, 202, 0.22), rgba(100, 141, 202, 0));
}

.panel {
  position: relative;
  z-index: 1;
  overflow: hidden;
  width: min(1120px, 100%);
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  align-items: center;
  gap: clamp(2rem, 4vw, 4rem);
  padding: clamp(1.6rem, 4vw, 3.5rem);
  border: 1px solid rgba(150, 171, 223, 0.38);
  border-radius: 32px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.84), rgba(244, 249, 255, 0.62));
  box-shadow:
    0 24px 65px var(--shadow),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
}

.logo-side,
.content {
  position: relative;
  z-index: 1;
}

.logo-side {
  display: flex;
  align-items: center;
}

.content {
  max-width: 24rem;
}

.brand-mark {
  width: min(100%, 36rem);
}

.divider {
  width: 5.5rem;
  height: 1px;
  margin: 0 0 1.5rem;
  background: linear-gradient(90deg, rgba(32, 38, 88, 0.72), rgba(150, 171, 223, 0.16));
}

h1 {
  margin: 0;
  font-size: clamp(2.7rem, 6vw, 5rem);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.contact-copy {
  margin: 1.25rem 0 0;
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  line-height: 1.75;
  color: rgba(32, 38, 88, 0.84);
}

.contact-copy a {
  color: inherit;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid rgba(32, 38, 88, 0.3);
  transition: color 160ms ease, border-color 160ms ease, opacity 160ms ease;
}

.contact-copy a:hover,
.contact-copy a:focus-visible {
  color: var(--cornflower);
  border-color: rgba(100, 141, 202, 0.6);
  outline: none;
}

@keyframes drift {
  0%,
  100% {
    transform: translate(-50%, -12%);
  }

  50% {
    transform: translate(-50%, -10%);
  }
}

@media (max-width: 900px) {
  .panel {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 1.5rem;
  }

  .logo-side {
    justify-content: center;
  }

  .content {
    max-width: none;
    margin: 0 auto;
  }

  .brand-mark {
    margin: 0 auto;
    width: min(100%, 28rem);
  }

  .divider {
    margin: 1.5rem auto 1.2rem;
  }
}

@media (max-width: 560px) {
  .page {
    padding: 1rem;
  }

  .panel {
    border-radius: 24px;
  }

  h1 {
    letter-spacing: 0.04em;
  }

  .contact-copy {
    font-size: 1rem;
    line-height: 1.65;
  }

  .flock {
    width: 170vw;
    transform: translate(-50%, -2%);
  }
}
