* {
  box-sizing: border-box;
}

:root {
  --ivory: #f1eee5;
  --ink: #15233a;
  --olive: #66704c;
}

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

body {
  background: var(--ivory);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
}

.landing {
  min-height: 100svh;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  padding: 56px 28px 40px;
}

.brand {
  width: min(680px, 88vw);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mark-wrap {
  width: clamp(78px, 8vw, 112px);
  margin-bottom: clamp(30px, 5vh, 54px);
  opacity: 0;
  transform: translateY(10px) scale(.97);
  animation: reveal .9s cubic-bezier(.22,.61,.36,1) .15s forwards;
}

.mark {
  width: 100%;
  display: block;
}

.wordmark {
  width: min(390px, 76vw);
  display: block;
  opacity: 0;
  transform: translateY(8px);
  animation: reveal .9s cubic-bezier(.22,.61,.36,1) .55s forwards;
}

.discipline,
.coming,
.links,
.footer {
  letter-spacing: .18em;
  font-size: 10px;
}

.discipline {
  margin: 24px 0 0;
  opacity: 0;
  animation: fade .9s ease .9s forwards;
}

.divider {
  width: 1px;
  height: 46px;
  margin: 34px 0;
  background: currentColor;
  opacity: 0;
  transform: scaleY(0);
  transform-origin: top;
  animation: line 1s ease 1.1s forwards;
}

.coming {
  margin: 0;
  opacity: 0;
  animation: fade .9s ease 1.35s forwards;
}

.links {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0;
  animation: fade .9s ease 1.55s forwards;
}

.links a {
  color: inherit;
  text-decoration: none;
  position: relative;
  padding-bottom: 4px;
}

.links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .35s ease;
}

.links a:hover::after,
.links a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.footer {
  position: absolute;
  bottom: 24px;
  margin: 0;
  font-size: 8px;
  opacity: .55;
}

@keyframes reveal {
  to { opacity: 1; transform: none; }
}
@keyframes fade {
  to { opacity: 1; }
}
@keyframes line {
  to { opacity: .35; transform: scaleY(1); }
}

@media (max-width: 600px) {
  .landing { padding: 42px 22px 34px; }
  .discipline, .coming, .links { font-size: 9px; letter-spacing: .14em; }
  .links { gap: 10px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-delay: 0ms !important;
    transition-duration: .01ms !important;
  }
}
