/* 4uC: the layout is intentionally all type, space and the original mark. */
:root {
  --paper: #dcd5e8;
  --paper-shade: #bcb0d9;
  --ink: #292431;
  --muted: #4b405a;
  --rule: #afa0cb;
  --brand: #705ff1;
  --brand-ink: #4c2da5; /* Readable even on the darkest part of the wash. */
  --brand-hover: #382078;
  --gutter: clamp(24px, 5vw, 80px);
  --font: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { background: var(--paper); -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  color: var(--ink);
  font-family: var(--font);
  /* On the body, not .page: tinted margins also cover large 16:10 displays. */
  background: radial-gradient(ellipse at 88% 36%, var(--paper-shade) 0%, var(--paper) 72%);
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
a:focus-visible { outline: 2px solid var(--brand-ink); outline-offset: 7px; border-radius: 1px; }
::selection { background: var(--brand-ink); color: #fff; }

.page {
  width: min(100%, 1760px);
  min-height: 100vh;
  min-height: 100svh;
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: flex;
  flex-direction: column;
}

.skip-link {
  position: absolute;
  top: 12px;
  left: 24px;
  z-index: 5;
  padding: 12px 18px;
  background: var(--ink);
  color: white;
  transform: translateY(-180%);
}
.skip-link:focus { transform: none; }

.header {
  min-height: 124px;
  padding-block: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--rule);
  gap: 32px;
}
.brand { display: inline-flex; align-items: center; min-height: 44px; flex-shrink: 0; }
.brand img { width: 122px; }
.login {
  color: var(--brand-ink);
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  gap: 24px;
  font-size: 14px;
  line-height: 1.2;
}
.login span { font-size: 24px; line-height: 1; transition: transform 160ms ease; }
.login:hover { color: var(--brand-hover); }
.login:hover span { transform: translateX(4px); }

.hero {
  flex: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 56px;
  align-content: center;
  padding-block: 84px 96px;
}
.hero:focus { outline: none; }
h1 {
  margin: 0 0 0 -0.052em;
  font-size: clamp(2.6rem, 12vw, 5.625rem);
  font-weight: 400;
  line-height: .98;
  letter-spacing: -.067em;
}
.headline-line { display: block; }
.accent { color: var(--brand-ink); }
.statement { align-self: end; padding-bottom: .35em; }
.statement-rule { display: block; width: 44px; height: 3px; background: var(--brand); margin-bottom: 24px; }
.statement p { margin: 0; }
.disciplines { font-size: 20px; line-height: 1.45; letter-spacing: -.035em; }
.bridge { font-size: 16px; line-height: 1.6; letter-spacing: -.02em; color: var(--muted); }

.footer {
  min-height: 94px;
  border-top: 1px solid var(--rule);
  padding-block: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px 32px;
  flex-wrap: wrap;
}
.footer small { font-size: 12px; line-height: 1.5; color: var(--muted); }
.contact { display: inline-flex; gap: 22px; align-items: center; min-height: 44px; font-size: 14px; overflow-wrap: anywhere; }
.contact span { color: var(--brand); font-size: 18px; }
.contact:hover { color: var(--brand-ink); }
.error-code { color: var(--brand-ink); letter-spacing: .12em; font-size: 13px; margin: 0 0 28px; }
.home-link { display: inline-flex; min-height: 44px; align-items: center; font-size: 15px; text-decoration: underline; text-underline-offset: 5px; }

@media (min-width: 900px) {
  .hero {
    grid-template-columns: minmax(0, 2.8fr) minmax(230px, 1fr);
    column-gap: clamp(40px, 4vw, 72px);
    padding-block: 100px 130px;
  }
  h1 { font-size: clamp(5rem, 9.25vw, 9.8rem); }
  .statement { padding-bottom: 8px; }
  .disciplines { font-size: clamp(20px, 1.65vw, 26px); }
  .bridge { font-size: clamp(16px, 1.3vw, 20px); }
}

@media (max-width: 480px) {
  .header { min-height: 102px; padding-block: 24px; }
  .brand img { width: 106px; }
  .login { font-size: 13px; gap: 18px; }
  .hero { gap: 54px; padding-block: 76px 88px; }
  .footer { min-height: 80px; padding-block: 20px; }
}

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

@media print {
  html { background: #fff; }
  body { background: none; }
  .login, .skip-link { display: none; }
  .page { min-height: auto; }
  .hero { padding-block: 70px; }
}
