:root {
  color-scheme: dark;
  --green: #9dff00;
  --gold: #ffc400;
  --text: #f4f1e8;
  --muted: #aaa79d;
  --bg: #020302;
  --page-pad: clamp(20px, 4vw, 56px);
  --content-max: 560px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  max-width: 100%;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
}

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

body {
  overflow-x: hidden;
}

.entry {
  position: relative;
  isolation: isolate;
  display: grid;
  min-height: 100svh;
  padding: 32px var(--page-pad) calc(24px + env(safe-area-inset-bottom));
  overflow: hidden;
  background: var(--bg);
}

.entry__visual {
  position: absolute;
  top: 50%;
  right: clamp(-24px, 5vw, 56px);
  width: min(50vw, 740px);
  max-width: 740px;
  height: auto;
  transform: translateY(-50%);
  z-index: 0;
  pointer-events: none;
  opacity: 0.74;
  filter:
    drop-shadow(0 0 28px rgba(255, 195, 48, 0.14))
    drop-shadow(0 0 44px rgba(144, 255, 0, 0.08));
}

.entry__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 55% 42%, rgba(255, 190, 0, 0.08), transparent 24%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.94) 0%, rgba(0, 0, 0, 0.82) 36%, rgba(0, 0, 0, 0.22) 68%, rgba(0, 0, 0, 0.62) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.72));
}

.entry__content {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: start;
  width: 100%;
  max-width: var(--content-max);
  min-width: 0;
  margin: auto auto auto clamp(8px, 4vw, 64px);
  padding: clamp(40px, 8vh, 92px) 0;
}

.entry__content > * {
  min-width: 0;
}

.entry__brand {
  display: block;
  width: clamp(118px, 13vw, 196px);
  margin: 0 0 clamp(30px, 7vh, 86px);
}

.entry__brand img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.entry__signal {
  margin: 0 0 14px;
  color: var(--green);
  font: 700 12px/1.2 ui-monospace, SFMono-Regular, Consolas, monospace;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.entry h1 {
  margin: 0;
  max-width: 6.4ch;
  font-size: clamp(72px, 9vw, 132px);
  line-height: 0.82;
  letter-spacing: 0;
  font-weight: 850;
}

.entry h1 span {
  color: var(--gold);
}

.entry__copy {
  max-width: 34rem;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.58;
}

.entry__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  width: 100%;
  margin-top: 28px;
}

.entry__footer {
  display: grid;
  gap: 12px;
  width: 100%;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(157, 255, 0, 0.14);
}

.entry__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin-top: 0;
}

.entry__legal a {
  color: #b2bd9a;
  text-decoration: none;
  font: 700 10px/1.2 ui-monospace, SFMono-Regular, Consolas, monospace;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.entry__footer-note {
  margin: 0;
  color: #8f9386;
  font-size: 12px;
  line-height: 1.5;
  max-width: 32rem;
}

.entry__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-width: 220px;
  min-height: 58px;
  padding: 0 30px;
  border: 1px solid #ffce38;
  background: linear-gradient(135deg, #ffd444, #e89400);
  box-shadow: 0 0 35px rgba(255, 180, 0, 0.28);
  color: #070603;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  transition: transform 0.2s, filter 0.2s;
}

.entry__cta--ghost {
  background: rgba(7, 9, 5, 0.72);
  color: var(--green);
  box-shadow: none;
}

.entry__cta:hover,
.entry__cta:focus-visible {
  transform: translateY(-2px);
  filter: brightness(1.12);
  outline: 2px solid var(--green);
  outline-offset: 4px;
}

.entry__status {
  position: absolute;
  right: var(--page-pad);
  bottom: calc(18px + env(safe-area-inset-bottom));
  z-index: 2;
  margin: 0;
  color: #b2bd9a;
  font: 700 11px/1 ui-monospace, SFMono-Regular, Consolas, monospace;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.entry__status span {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 12px var(--green);
}

@media (max-width: 768px) {
  .entry {
    align-items: start;
    padding: 20px 20px calc(28px + env(safe-area-inset-bottom));
  }

  .entry__visual {
    top: 11vh;
    left: 50%;
    right: auto;
    width: min(82vw, 390px);
    max-width: 82vw;
    transform: translateX(-50%);
    opacity: 0.26;
  }

  .entry__veil {
    background:
      radial-gradient(circle at 50% 28%, rgba(255, 190, 0, 0.1), transparent 26%),
      linear-gradient(180deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.56) 26%, rgba(0, 0, 0, 0.9) 100%);
  }

  .entry__content {
    max-width: 100%;
    margin: 0;
    padding: 74px 0 0;
  }

  .entry__brand {
    width: min(118px, 30vw);
    margin: 0 0 clamp(72px, 15vh, 124px);
  }

  .entry__signal {
    margin-bottom: 12px;
    font-size: 11px;
  }

  .entry h1 {
    max-width: 100%;
    font-size: clamp(54px, 17vw, 86px);
    line-height: 0.88;
  }

  .entry__copy {
    max-width: 100%;
    margin-top: 22px;
    font-size: 15px;
    line-height: 1.55;
  }

  .entry__actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    max-width: 340px;
    margin-top: 24px;
  }

  .entry__legal {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, max-content));
    gap: 10px 14px;
    margin-top: 0;
  }

  .entry__footer {
    gap: 10px;
    margin-top: 18px;
    padding-top: 14px;
  }

  .entry__footer-note {
    font-size: 11px;
    line-height: 1.45;
  }

  .entry__cta {
    width: 100%;
    min-width: 0;
    min-height: 54px;
    padding: 0 20px;
  }

  .entry__status {
    left: 20px;
    right: auto;
    bottom: calc(16px + env(safe-area-inset-bottom));
    font-size: 10px;
  }
}

@media (max-width: 420px) {
  .entry__brand {
    width: 108px;
    margin-bottom: 86px;
  }

  .entry__visual {
    top: 12vh;
    width: min(80vw, 340px);
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}

/* 018 public split landing */
:root {
  --split-ink: #f6f4eb;
  --split-muted: #a9aea9;
  --split-line: rgba(255, 255, 255, 0.12);
  --forge-gold: #f6c84a;
  --forge-green: #9eea52;
  --human-cyan: #62d8ee;
  --human-blue: #5d78ff;
  --human-violet: #a688ff;
}

html {
  background: #05080b;
  scroll-behavior: auto;
}

body {
  min-height: 100svh;
  background:
    radial-gradient(circle at 15% 5%, rgba(158, 234, 82, 0.07), transparent 28rem),
    radial-gradient(circle at 85% 5%, rgba(93, 120, 255, 0.09), transparent 30rem),
    #05080b;
  color: var(--split-ink);
  font-family: "Aptos", "Segoe UI", sans-serif;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 12px 16px;
  color: #05080b;
  background: #fff;
  border-radius: 999px;
  font-weight: 800;
  transform: translateY(-180%);
}

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

.split-header {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 84px;
  padding: 14px clamp(20px, 4vw, 64px);
  border-bottom: 1px solid var(--split-line);
  background: rgba(5, 8, 11, 0.78);
  backdrop-filter: blur(18px);
}

.umbrella-brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: var(--split-ink);
  text-decoration: none;
}

.umbrella-brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.umbrella-brand strong,
.umbrella-brand small {
  display: block;
}

.umbrella-brand strong {
  font-size: 1.05rem;
  letter-spacing: 0.01em;
}

.umbrella-brand small {
  margin-top: 3px;
  color: var(--split-muted);
  font: 600 0.72rem/1.2 ui-monospace, SFMono-Regular, Consolas, monospace;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.portal-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 17px;
  border: 1px solid var(--split-line);
  border-radius: 999px;
  color: #dfe4e2;
  text-decoration: none;
  font-size: 0.86rem;
  font-weight: 750;
}

.portal-link:hover,
.portal-link:focus-visible {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.06);
}

.split-main {
  width: min(1580px, 100%);
  margin: 0 auto;
  padding: clamp(24px, 4vw, 58px) clamp(16px, 3vw, 44px) 22px;
}

.split-intro {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin: 0 4px clamp(22px, 3vw, 38px);
}

.split-kicker {
  margin: 0;
  color: #c4cbc7;
  font: 700 0.7rem/1.2 ui-monospace, SFMono-Regular, Consolas, monospace;
  letter-spacing: 0.18em;
}

.split-intro h1 {
  max-width: 650px;
  margin: 0;
  text-align: right;
  font-size: clamp(1.6rem, 3.4vw, 3.45rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.split-intro h1 span {
  color: #9da8a3;
  font-family: "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  font-weight: 500;
  letter-spacing: -0.025em;
}

.destination-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 28px);
}

.destination {
  position: relative;
  isolation: isolate;
  display: grid;
  align-items: end;
  min-height: min(690px, calc(100svh - 220px));
  overflow: hidden;
  border: 1px solid var(--split-line);
  border-radius: clamp(22px, 2vw, 34px);
  cursor: pointer;
  outline: none;
  transition: transform 260ms ease, border-color 260ms ease, box-shadow 260ms ease;
}

.destination::before,
.destination::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
}

.destination::after {
  z-index: -1;
  background: linear-gradient(180deg, transparent 18%, rgba(1, 3, 4, 0.32) 48%, rgba(1, 3, 4, 0.93) 100%);
}

.destination:hover,
.destination:focus-visible {
  transform: translateY(-4px);
}

.destination:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 4px;
}

.destination--forge {
  background:
    linear-gradient(145deg, rgba(19, 24, 14, 0.92), rgba(5, 8, 5, 0.98)),
    #070a07;
  box-shadow: inset 0 1px 0 rgba(246, 200, 74, 0.13);
}

.destination--forge::before {
  background:
    linear-gradient(rgba(246, 200, 74, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(158, 234, 82, 0.045) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, #000, transparent 74%);
}

.destination--forge:hover,
.destination--forge:focus-visible {
  border-color: rgba(246, 200, 74, 0.7);
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.38), inset 0 1px 0 rgba(246, 200, 74, 0.25);
}

.destination--adhs {
  background:
    radial-gradient(circle at 76% 22%, rgba(98, 216, 238, 0.14), transparent 34%),
    linear-gradient(150deg, rgba(11, 19, 35, 0.96), rgba(8, 11, 22, 0.99));
  box-shadow: inset 0 1px 0 rgba(98, 216, 238, 0.14);
}

.destination--adhs::before {
  background: radial-gradient(circle at 75% 25%, rgba(166, 136, 255, 0.14), transparent 26rem);
}

.destination--adhs:hover,
.destination--adhs:focus-visible {
  border-color: rgba(98, 216, 238, 0.72);
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.38), inset 0 1px 0 rgba(98, 216, 238, 0.28);
}

.destination-content {
  position: relative;
  z-index: 3;
  max-width: 610px;
  padding: clamp(28px, 4vw, 58px);
}

.destination-role {
  margin: 0 0 18px;
  font: 750 0.68rem/1.2 ui-monospace, SFMono-Regular, Consolas, monospace;
  letter-spacing: 0.18em;
}

.destination--forge .destination-role {
  color: var(--forge-green);
}

.destination--adhs .destination-role {
  color: var(--human-cyan);
}

.destination h2 {
  max-width: 10ch;
  margin: 0 0 18px;
  font-size: clamp(3.25rem, 6.5vw, 7.2rem);
  line-height: 0.84;
  letter-spacing: -0.065em;
}

.destination--adhs h2 {
  font-family: "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  font-weight: 560;
  letter-spacing: -0.045em;
}

.destination-claim {
  max-width: 27ch;
  margin: 0 0 12px;
  font-size: clamp(1.15rem, 2vw, 1.72rem);
  font-weight: 760;
  line-height: 1.15;
}

.destination-copy {
  max-width: 49ch;
  margin: 0 0 28px;
  color: #b9c0bd;
  font-size: clamp(0.94rem, 1.2vw, 1.08rem);
  line-height: 1.62;
}

.destination-cta {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  min-width: 220px;
  min-height: 52px;
  padding: 0 20px;
  border: 1px solid currentColor;
  border-radius: 999px;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.destination--forge .destination-cta {
  color: var(--forge-gold);
  background: rgba(246, 200, 74, 0.07);
}

.destination--adhs .destination-cta {
  color: var(--human-cyan);
  background: rgba(98, 216, 238, 0.07);
}

.destination-cta:hover,
.destination-cta:focus-visible {
  color: #05080b;
  background: #fff;
  outline: 2px solid #fff;
  outline-offset: 4px;
}

.destination-index {
  position: absolute;
  top: 24px;
  left: 28px;
  z-index: 3;
  color: rgba(255, 255, 255, 0.5);
  font: 700 0.64rem/1.2 ui-monospace, SFMono-Regular, Consolas, monospace;
  letter-spacing: 0.16em;
}

.destination-art {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.destination-art--forge img {
  position: absolute;
  top: -7%;
  right: -10%;
  width: min(88%, 700px);
  opacity: 0.55;
  filter: saturate(0.88) drop-shadow(0 0 42px rgba(246, 200, 74, 0.14));
}

.forge-orbit {
  position: absolute;
  top: 20%;
  right: 14%;
  border: 1px solid rgba(246, 200, 74, 0.16);
  border-radius: 50%;
}

.forge-orbit--one {
  width: 42%;
  aspect-ratio: 1;
}

.forge-orbit--two {
  width: 57%;
  aspect-ratio: 1;
  transform: translate(12%, -12%);
  border-color: rgba(158, 234, 82, 0.1);
}

.path-node {
  position: absolute;
  width: clamp(52px, 7vw, 96px);
  aspect-ratio: 1;
  border: 1px solid rgba(98, 216, 238, 0.52);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(98, 216, 238, 0.24), rgba(93, 120, 255, 0.04) 62%, transparent 64%);
  box-shadow: 0 0 48px rgba(98, 216, 238, 0.11);
}

.path-node--one { top: 13%; right: 16%; }
.path-node--two { top: 34%; right: 38%; transform: scale(0.68); }
.path-node--three { top: 21%; right: 60%; transform: scale(0.48); border-color: rgba(166, 136, 255, 0.65); }

.path-line {
  position: absolute;
  top: 29%;
  right: 20%;
  width: 46%;
  height: 1px;
  transform-origin: right center;
  background: linear-gradient(90deg, transparent, rgba(98, 216, 238, 0.65));
}

.path-line--one { transform: rotate(-16deg); }
.path-line--two { top: 38%; right: 39%; width: 25%; transform: rotate(18deg); background: linear-gradient(90deg, transparent, rgba(166, 136, 255, 0.7)); }

.path-return {
  position: absolute;
  top: 45%;
  right: 13%;
  color: rgba(98, 216, 238, 0.35);
  font-family: Georgia, serif;
  font-size: clamp(4rem, 8vw, 9rem);
}

.split-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1580px;
  margin: 0 auto;
  padding: 20px clamp(20px, 4vw, 64px) 30px;
  color: #858d89;
  font-size: 0.78rem;
}

.split-footer p {
  margin: 0;
}

.split-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 22px;
}

.split-footer a {
  color: #aeb5b2;
  text-decoration: none;
}

.split-footer a:hover,
.split-footer a:focus-visible {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 4px;
}

@media (max-width: 820px) {
  .split-header {
    min-height: 72px;
    padding: 10px 16px;
  }

  .umbrella-brand img {
    width: 42px;
    height: 42px;
  }

  .umbrella-brand small {
    display: none;
  }

  .portal-link {
    min-height: 42px;
    padding: 0 14px;
  }

  .split-main {
    padding: 22px 12px 12px;
  }

  .split-intro {
    display: grid;
    gap: 10px;
    margin: 0 8px 20px;
  }

  .split-intro h1 {
    max-width: 14ch;
    text-align: left;
    font-size: clamp(1.7rem, 8vw, 2.7rem);
  }

  .destination-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .destination {
    min-height: 58svh;
    border-radius: 22px;
  }

  .destination-content {
    padding: 84px 24px 28px;
  }

  .destination h2 {
    font-size: clamp(3.2rem, 15vw, 5.5rem);
  }

  .destination--forge h2 {
    font-size: clamp(2.6rem, 10.7vw, 4.65rem);
    letter-spacing: -0.055em;
  }

  .destination-copy {
    max-width: 43ch;
  }

  .destination-art--forge img {
    top: -10%;
    right: -5%;
    width: min(82%, 480px);
    opacity: 0.38;
  }

  .path-node--one { top: 12%; right: 14%; }
  .path-node--two { top: 30%; right: 40%; }
  .path-node--three { top: 18%; right: 67%; }

  .split-footer {
    display: grid;
    padding: 22px 20px 34px;
  }

  .split-footer nav {
    justify-content: flex-start;
  }
}

@media (max-width: 430px) {
  .portal-link span {
    display: none;
  }

  .destination {
    min-height: 520px;
  }

  .destination-content {
    padding-inline: 20px;
  }

  .destination-cta {
    width: 100%;
    min-width: 0;
  }
}

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

  .destination {
    transition: none;
  }

  .destination:hover,
  .destination:focus-visible {
    transform: none;
  }
}
