:root {
  color-scheme: light;
  --ink: #061c3f;
  --navy: #062b5f;
  --steel: #5c6470;
  --line: #d9dde3;
  --paper: #f7f8fa;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--paper);
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 10% 12%, rgba(6, 43, 95, 0.08), transparent 30rem),
    linear-gradient(135deg, #ffffff 0%, #f4f6f9 48%, #e7ebf0 100%);
}

.page-shell {
  display: grid;
  min-height: 100vh;
  grid-template-columns: minmax(0, 1.16fr) minmax(22rem, 0.84fr);
}

.brand-panel {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 100vh;
  overflow: hidden;
  background: var(--white);
}

.brand-panel::after {
  position: absolute;
  right: -16vw;
  bottom: -22vw;
  width: 58vw;
  aspect-ratio: 1;
  content: "";
  border: clamp(1.2rem, 2vw, 2rem) solid rgba(6, 43, 95, 0.92);
  border-top-color: rgba(92, 100, 112, 0.82);
  border-left-color: transparent;
  border-radius: 50%;
  transform: rotate(-16deg);
}

.brand-banner {
  position: relative;
  z-index: 1;
  width: min(88%, 58rem);
  height: auto;
  filter: drop-shadow(0 1.2rem 2.5rem rgba(6, 28, 63, 0.12));
}

.coming-soon {
  display: flex;
  min-height: 100vh;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 6vw, 5.5rem);
  border-left: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(18px);
}

.brand-mark {
  width: clamp(6.5rem, 22vw, 11rem);
  height: clamp(6.5rem, 22vw, 11rem);
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 1rem 2.4rem rgba(6, 28, 63, 0.14);
}

.eyebrow {
  margin: 2rem 0 0.75rem;
  color: var(--steel);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  line-height: 1.2;
  text-transform: uppercase;
}

h1 {
  max-width: 11ch;
  margin: 0;
  color: var(--navy);
  font-size: clamp(3rem, 8vw, 5.8rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 0.94;
}

.lede {
  max-width: 28rem;
  margin: 1.35rem 0 2rem;
  color: #28384d;
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  line-height: 1.55;
}

.email-link {
  width: fit-content;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
  text-decoration-color: rgba(6, 43, 95, 0.36);
  text-decoration-thickness: 0.12em;
  text-underline-offset: 0.3em;
}

.email-link:focus-visible {
  border-radius: 0.2rem;
  outline: 3px solid rgba(6, 43, 95, 0.34);
  outline-offset: 0.35rem;
}

@media (max-width: 820px) {
  .page-shell {
    grid-template-columns: 1fr;
  }

  .brand-panel {
    min-height: 42vh;
    padding: 2rem 1rem;
  }

  .brand-panel::after {
    right: -35vw;
    bottom: -42vw;
    width: 92vw;
  }

  .brand-banner {
    width: min(94%, 46rem);
  }

  .coming-soon {
    min-height: 58vh;
    border-top: 1px solid var(--line);
    border-left: 0;
  }
}

@media (max-width: 520px) {
  .brand-panel {
    min-height: 34vh;
  }

  .coming-soon {
    min-height: 66vh;
    padding: 2rem 1.35rem 2.5rem;
  }

  .brand-mark {
    width: 5.75rem;
    height: 5.75rem;
  }
}
