:root {
  --bg: #05080f;
  --bg-soft: #0a1020;
  --text: #f1f0eb;
  --text-muted: #b7bcc7;
  --gold: #d8be82;
  --gold-soft: rgba(216, 190, 130, .18);
  --line: rgba(255, 255, 255, .11);
  --max-width: 1440px;
  --radius: 18px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--bg);
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  min-height: 100%;
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 20;
  padding: .75rem 1rem;
  border-radius: 999px;
  color: #05080f;
  background: #f1f0eb;
  font-weight: 700;
  transform: translateY(-160%);
  transition: transform .2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-rows: auto 1fr auto auto;
  min-height: 100vh;
  min-height: 100svh;
  min-height: 100dvh;
  overflow: hidden;
  padding:
    max(1.25rem, env(safe-area-inset-top))
    max(1.25rem, env(safe-area-inset-right))
    max(1.25rem, env(safe-area-inset-bottom))
    max(1.25rem, env(safe-area-inset-left));
}

.hero__media,
.hero__veil,
.hero__glow {
  position: absolute;
  inset: 0;
  z-index: -3;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero__veil {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(5, 8, 15, .96) 0%, rgba(5, 8, 15, .80) 34%, rgba(5, 8, 15, .20) 70%, rgba(5, 8, 15, .40) 100%),
    linear-gradient(180deg, rgba(5, 8, 15, .54) 0%, transparent 30%, rgba(5, 8, 15, .76) 100%);
}

.hero__glow {
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 72% 78%, rgba(216, 190, 130, .14), transparent 30%),
    radial-gradient(circle at 52% 18%, rgba(60, 95, 145, .12), transparent 30%);
  animation: breathe 12s ease-in-out infinite alternate;
}

.site-header,
.hero__content,
.future-nav,
.hero__footer {
  width: min(100%, var(--max-width));
  margin-inline: auto;
}

.site-header {
  display: flex;
  align-items: center;
  min-height: 72px;
}

.brand {
  display: inline-flex;
  width: min(420px, 70vw);
  border-radius: 10px;
}

.brand:focus-visible,
.future-nav__item:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 5px;
}

.hero__content {
  align-self: center;
  max-width: var(--max-width);
  padding-block: clamp(4rem, 10vh, 8rem);
}

.hero__content > * {
  max-width: 660px;
}

.eyebrow {
  margin: 0 0 1.2rem;
  color: var(--gold);
  font-size: clamp(.82rem, 1vw, .98rem);
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.hero__title {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.2rem, 7.6vw, 8.1rem);
  font-weight: 400;
  line-height: .93;
  letter-spacing: -.045em;
  text-wrap: balance;
}

.hero__intro {
  margin: clamp(1.5rem, 3vw, 2.4rem) 0 0;
  color: var(--text-muted);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.1rem, 1.8vw, 1.5rem);
  line-height: 1.65;
  text-wrap: pretty;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  margin-top: 2rem;
  padding: .72rem 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text);
  background: rgba(5, 8, 15, .34);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.status__dot {
  width: .48rem;
  height: .48rem;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 6px var(--gold-soft);
}

.future-nav {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(5, 8, 15, .42), rgba(5, 8, 15, .18));
  backdrop-filter: blur(9px);
  -webkit-backdrop-filter: blur(9px);
}

.future-nav__item {
  display: flex;
  min-height: 84px;
  flex-direction: column;
  justify-content: center;
  gap: .28rem;
  padding: 1rem 1.25rem;
  border-right: 1px solid var(--line);
  transition: background-color .25s ease, transform .25s ease;
}

.future-nav__item:last-child {
  border-right: 0;
}

.future-nav__item:hover {
  background: rgba(216, 190, 130, .06);
  transform: translateY(-2px);
}

.future-nav__item span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
}

.future-nav__item small {
  color: var(--text-muted);
  font-size: .68rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.hero__footer {
  display: flex;
  min-height: 66px;
  align-items: end;
  justify-content: flex-end;
  padding-top: 1rem;
  color: rgba(241, 240, 235, .72);
  font-family: Georgia, "Times New Roman", serif;
  font-size: .95rem;
}

.hero__footer p {
  margin: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(12px);
}

.is-ready .reveal {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity .9s var(--ease),
    transform .9s var(--ease);
}

.is-ready .reveal:nth-child(2) { transition-delay: .08s; }
.is-ready .reveal:nth-child(3) { transition-delay: .16s; }
.is-ready .reveal:nth-child(4) { transition-delay: .24s; }

.noscript {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 10;
  max-width: 360px;
  margin: 0;
  padding: .8rem 1rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--text);
  background: rgba(5,8,15,.92);
  font-size: .85rem;
}

@keyframes breathe {
  from { transform: scale(1); opacity: .82; }
  to { transform: scale(1.035); opacity: 1; }
}

@media (max-width: 960px) {
  .hero__veil {
    background:
      linear-gradient(180deg, rgba(5,8,15,.88) 0%, rgba(5,8,15,.40) 42%, rgba(5,8,15,.80) 100%),
      linear-gradient(90deg, rgba(5,8,15,.54), transparent 70%);
  }

  .future-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .future-nav__item:nth-child(2) {
    border-right: 0;
  }

  .future-nav__item:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 760px) {
  .hero {
    grid-template-rows: auto 1fr auto auto;
    padding-inline:
      max(1rem, env(safe-area-inset-left))
      max(1rem, env(safe-area-inset-right));
  }

  .hero__media img {
    object-position: center 52%;
  }

  .hero__veil {
    background:
      linear-gradient(180deg, rgba(5,8,15,.94) 0%, rgba(5,8,15,.62) 32%, rgba(5,8,15,.22) 57%, rgba(5,8,15,.88) 100%);
  }

  .site-header {
    min-height: 58px;
  }

  .brand {
    width: min(330px, 78vw);
  }

  .hero__content {
    align-self: start;
    padding-block: clamp(3.5rem, 9vh, 6.5rem) 10rem;
  }

  .hero__title {
    max-width: 9ch;
    font-size: clamp(3.05rem, 14vw, 5.2rem);
    line-height: .95;
  }

  .hero__intro {
    max-width: 34ch;
    font-size: 1.06rem;
    line-height: 1.58;
  }

  .future-nav {
    grid-template-columns: 1fr;
  }

  .future-nav__item,
  .future-nav__item:nth-child(2) {
    min-height: 66px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .future-nav__item:last-child {
    border-bottom: 0;
  }

  .hero__footer {
    min-height: 58px;
    justify-content: flex-start;
    padding-bottom: max(.4rem, env(safe-area-inset-bottom));
  }
}

@media (max-width: 420px) {
  .eyebrow {
    max-width: 22ch;
    line-height: 1.5;
  }

  .hero__content {
    padding-bottom: 8rem;
  }

  .status {
    font-size: .76rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
