@font-face {
  font-family: "Fraunces";
  src: url("fonts/fraunces-latin.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("fonts/inter-latin.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
:root {
  color-scheme: dark;
  --night: #080b0e;
  --ivory: #eee8d9;
  --muted: #b3b6b5;
  --gold: #c0a783;
  --line: #c0a78330;
  --blue: #65baff;
  --ember: #ee846c;
}
* { box-sizing: border-box; }
html { background: var(--night); }
body {
  margin: 0;
  min-width: 280px;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  position: relative;
  isolation: isolate;
  color: var(--ivory);
  font: 400 14px/1.5 "Inter", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
::selection { background: #315268; color: #fff; }
a { color: inherit; text-underline-offset: 6px; }
a:focus-visible { outline: 2px solid var(--ivory); outline-offset: 5px; }
.world {
  position: absolute;
  z-index: -2;
  inset: 0 0 140px;
  overflow: hidden;
  pointer-events: none;
}
.world img { width: 100%; height: 100%; object-fit: cover; object-position: center 59%; }
.world::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #080b0e50 0%, transparent 23%, transparent 52%, #080b0e45 73%, var(--night) 100%),
    radial-gradient(ellipse at 50% 33%, #080b0e42, transparent 60%);
}
.mist {
  position: absolute;
  left: -15%; right: -15%; bottom: 0; height: 45%;
  background: radial-gradient(ellipse at 27% 70%, #86abc31c, transparent 48%), radial-gradient(ellipse at 75% 80%, #8aa9a515, transparent 42%);
  animation: drift 24s ease-in-out infinite alternate;
}
@keyframes drift { from { transform: translateX(-3%); opacity: .4; } to { transform: translateX(3%); opacity: .85; } }
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 25px 48px;
  min-height: 82px;
}
.brand-seal { display: flex; align-items: center; gap: 13px; }
.brand-seal svg { width: 27px; height: 32px; color: var(--gold); }
.eyebrow { margin: 0; font-size: 10px; letter-spacing: .23em; text-transform: uppercase; }
.site-header .eyebrow { color: #c1c4c4; }
.factions { display: flex; align-items: center; gap: 17px; }
.factions i { width: 3px; height: 3px; background: var(--gold); transform: rotate(45deg); }
.factions span:first-child { color: #9dc8e4; }
.factions span:last-child { color: #e1aaa0; }
main { flex: 1; display: flex; flex-direction: column; }
.hero {
  flex: 1;
  min-height: 590px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  padding: 22px 24px 37px;
}
.identity { width: 100%; text-shadow: 0 3px 25px #0009; }
.sigil { display: flex; align-items: center; justify-content: center; gap: 15px; color: var(--gold); }
.sigil::before, .sigil::after { content: ""; height: 1px; width: 65px; background: linear-gradient(90deg, transparent, #c0a78380); }
.sigil::after { transform: rotate(180deg); }
.sigil svg { width: 22px; height: 28px; }
h1 {
  font: 500 clamp(76px, 10.7vw, 164px)/1.1 "Fraunces", Georgia, serif;
  letter-spacing: .055em;
  margin: 11px 0 3px;
  padding-left: .055em;
  color: var(--ivory);
}
.tagline { margin: 0; font: 500 clamp(18px, 1.9vw, 25px)/1.5 "Fraunces", Georgia, serif; letter-spacing: .015em; color: #dedbce; }
.launch { margin-top: 150px; position: relative; }
.launch::before { content: ""; position: absolute; inset: -45px -65px -20px; z-index: -1; background: radial-gradient(ellipse, #080b0eaf, transparent 70%); }
.status { color: var(--gold); font-size: 11px; letter-spacing: .3em; text-transform: uppercase; margin: 0 0 18px; }
.status::before, .status::after { content: ""; display: inline-block; width: 4px; height: 4px; border: 1px solid var(--gold); transform: rotate(45deg); margin: 0 17px 2px; }
.countdown { display: flex; justify-content: center; margin: 0 0 22px; }
.countdown[hidden] { display: none; }
.time-unit { display: flex; flex-direction: column; width: 92px; position: relative; }
.time-unit + .time-unit::before { content: ":"; position: absolute; left: -3px; top: 3px; font: 500 30px/1.5 "Fraunces", Georgia, serif; color: #bda6897a; }
.time-unit dt { order: 2; color: #c0c1bc; text-transform: uppercase; font-size: 9px; letter-spacing: .19em; margin-top: 6px; }
.time-unit dd { margin: 0; font: 500 49px/1 "Fraunces", Georgia, serif; font-variant-numeric: lining-nums tabular-nums; }
.release-date { margin: 0; font-size: 11px; color: #d0cebf; letter-spacing: .065em; }
.release-date .divider { color: var(--gold); margin: 0 9px; }
.browser-note { color: var(--muted); font-size: 10px; margin: 9px 0 0; letter-spacing: .08em; }
.features {
  max-width: 950px;
  width: calc(100% - 96px);
  margin: 0 auto;
  padding: 27px 0 28px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  list-style: none;
}
.features li { display: flex; align-items: center; justify-content: center; gap: 13px; padding: 0 12px; }
.features li + li { border-left: 1px solid var(--line); }
.features svg { flex: 0 0 29px; width: 29px; height: 32px; color: var(--gold); }
.feature-title { display: block; font-size: 12px; letter-spacing: .015em; }
.feature-caption { display: block; color: var(--muted); font-size: 10px; margin-top: 3px; }
.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 48px 19px;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: .035em;
}
.site-footer p { margin: 0; }
.language-switch { display: flex; align-items: center; gap: 5px; }
.language-switch a { display: inline-flex; align-items: center; justify-content: center; width: 44px; min-height: 44px; text-decoration: none; transition: color .2s; }
.language-switch a:hover { color: var(--ivory); text-decoration: underline; }
.language-switch a[aria-current="page"] { color: var(--ivory); text-decoration: underline; text-decoration-color: var(--gold); }
.language-switch span { color: #7f827e; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip-path: inset(50%); white-space: nowrap; border: 0; }
noscript p { max-width: 350px; font-size: 11px; color: var(--muted); }
@media (min-width: 1700px) { .world img { object-position: center 65%; } .hero { padding-top: 40px; } }
@media (max-width: 700px) {
  .site-header { padding: 18px 22px; min-height: 70px; }
  .site-header .eyebrow { font-size: 8px; letter-spacing: .16em; }
  .brand-seal { gap: 9px; }
  .brand-seal svg { width: 21px; height: 27px; }
  .factions { gap: 10px; }
  .world { bottom: 220px; }
  .world img { position: absolute; width: max(100%, 660px); height: auto; max-width: none; left: 50%; top: 95px; transform: translateX(-50%); }
  .world::after { background: linear-gradient(180deg, #080b0e55, #080b0e15 35%, #080b0e20 60%, var(--night) 100%); }
  .hero { min-height: 586px; padding: 30px 16px 31px; }
  h1 { font-size: clamp(50px, 13.6vw, 94px); margin-top: 20px; letter-spacing: .035em; }
  .tagline { font-size: clamp(16px, 4.2vw, 22px); margin-top: 7px; }
  .sigil svg { width: 18px; height: 24px; }
  .sigil::before, .sigil::after { width: 43px; }
  .launch { margin-top: 160px; }
  .launch::before { inset: -40px -15px -15px; }
  .status { font-size: 10px; letter-spacing: .25em; }
  .time-unit { width: 76px; }
  .time-unit dd { font-size: 42px; }
  .time-unit dt { font-size: 8px; }
  .release-date { font-size: 10px; }
  .features { width: calc(100% - 44px); max-width: 410px; grid-template-columns: 1fr; gap: 21px; padding: 25px 0; }
  .features li { justify-content: flex-start; gap: 17px; padding: 0 15px; }
  .features li + li { border: 0; }
  .features svg { width: 27px; height: 29px; }
  .feature-title { font-size: 12px; }
  .feature-caption { font-size: 10px; }
  .site-footer { padding: 4px 22px 13px; }
}
@media (max-width: 350px) {
  .brand-seal .eyebrow { max-width: 100px; }
  .time-unit { width: 65px; }
  .status::before, .status::after { margin-left: 10px; margin-right: 10px; }
  .release-date .divider { margin: 0 4px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
