:root {
  --bg: #020713;
  --panel: rgba(4, 13, 31, .82);
  --blue-light: #77a8ff;
  --gold: #e9bd45;
  --gold-light: #ffe79b;
  --text: #f4f7ff;
  --muted: #8d9ab2;
  --line: rgba(92, 149, 255, .24);
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 50% 12%, rgba(47, 124, 255, .20), transparent 30%),
    radial-gradient(circle at 8% 88%, rgba(8, 69, 161, .22), transparent 30%),
    linear-gradient(155deg, #01040b 0%, #030a19 48%, #020713 100%);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    rgba(255,255,255,.018),
    transparent 18%,
    transparent 82%,
    rgba(255,255,255,.014)
  );
}

.grid {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .18;
  background-image:
    linear-gradient(rgba(85, 138, 237, .07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(85, 138, 237, .07) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, transparent, black 20%, black 75%, transparent);
}

.ambient {
  position: fixed;
  border-radius: 50%;
  filter: blur(95px);
  pointer-events: none;
}

.ambient-one {
  width: 360px;
  height: 360px;
  right: 8%;
  top: 10%;
  background: rgba(33, 101, 255, .18);
}

.ambient-two {
  width: 300px;
  height: 300px;
  left: 6%;
  bottom: 6%;
  background: rgba(9, 55, 130, .22);
}

.portal {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  padding: 34px 20px;
  display: grid;
  place-items: center;
}

.portal-card {
  width: min(100%, 610px);
  padding: 38px 46px 32px;
  text-align: center;
  border: 1px solid rgba(80, 139, 255, .22);
  border-radius: 30px;
  background:
    linear-gradient(145deg, rgba(7, 24, 54, .82), rgba(2, 8, 20, .92)),
    var(--panel);
  box-shadow:
    0 30px 100px rgba(0, 0, 0, .55),
    0 0 80px rgba(30, 99, 255, .08),
    inset 0 1px 0 rgba(255, 255, 255, .03);
  backdrop-filter: blur(18px);
}

.brand-mark {
  width: 172px;
  height: 172px;
  margin: 0 auto 12px;
  display: grid;
  place-items: center;
  filter:
    drop-shadow(0 0 20px rgba(233, 189, 69, .19))
    drop-shadow(0 12px 30px rgba(0, 0, 0, .30));
}

.brand-logo {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

h1 {
  margin: 0;
  color: var(--gold-light);
  font-size: clamp(36px, 6vw, 48px);
  line-height: 1;
  letter-spacing: .17em;
  text-indent: .17em;
  text-shadow: 0 0 32px rgba(233, 189, 69, .12);
}

.kicker {
  margin: 13px 0 0;
  color: var(--blue-light);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .28em;
}

.intro {
  max-width: 430px;
  margin: 13px auto 22px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}


.link-stack {
  display: grid;
  gap: 12px;
}

.link-card {
  min-height: 78px;
  padding: 13px 17px;
  display: grid;
  grid-template-columns: 48px 1fr auto;
  gap: 15px;
  align-items: center;
  text-align: left;
  border: 1px solid var(--line);
  border-radius: 18px;
  color: inherit;
  background: linear-gradient(100deg, rgba(14, 41, 89, .66), rgba(4, 13, 31, .70));
  text-decoration: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .025);
  transition:
    transform .22s ease,
    border-color .22s ease,
    background .22s ease,
    box-shadow .22s ease;
}

.link-card:hover {
  transform: translateY(-3px);
  border-color: rgba(90, 157, 255, .62);
  background: linear-gradient(100deg, rgba(18, 54, 117, .78), rgba(5, 17, 40, .84));
  box-shadow: 0 14px 35px rgba(0, 42, 110, .22);
}

.link-card.featured {
  border-color: rgba(233, 189, 69, .48);
  background:
    linear-gradient(100deg, rgba(45, 39, 19, .62), rgba(12, 23, 46, .86));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .03),
    0 0 28px rgba(233, 189, 69, .045);
}

.icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(88, 151, 255, .34);
  border-radius: 14px;
  color: var(--blue-light);
  background: rgba(47, 124, 255, .09);
}

.featured .icon {
  color: var(--gold-light);
  border-color: rgba(233, 189, 69, .36);
  background: rgba(233, 189, 69, .08);
}

.icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.copy {
  min-width: 0;
  display: grid;
  gap: 4px;
}

.copy strong {
  color: #f3f6ff;
  font-size: 14px;
  letter-spacing: .02em;
}

.copy small {
  overflow: hidden;
  color: #8e9ab0;
  font-size: 11px;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.arrow {
  color: var(--gold);
  font-size: 27px;
  font-weight: 300;
}

.trust {
  margin: 25px 0 0;
  color: #73819a;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
}

.trust i {
  width: 4px;
  height: 4px;
  margin: 0 8px;
  display: inline-block;
  border-radius: 50%;
  background: var(--gold);
  vertical-align: middle;
}

.footnote {
  margin: 12px 0 0;
  color: #526079;
  font-size: 9px;
}

.portal-card {
  opacity: 0;
  transform: translateY(20px) scale(.985);
  animation: enter .75s ease forwards;
}

@keyframes enter {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 640px) {
  .portal {
    padding: 16px 12px;
  }

  .portal-card {
    padding: 28px 15px 25px;
    border-radius: 23px;
  }

  .brand-mark {
    width: 145px;
    height: 145px;
    margin-bottom: 9px;
  }

  h1 {
    font-size: 35px;
    letter-spacing: .12em;
    text-indent: .12em;
  }

  .kicker {
    font-size: 8px;
    letter-spacing: .22em;
  }

  .intro {
    padding: 0 10px;
    font-size: 12px;
  }

  .link-card {
    min-height: 74px;
    padding: 11px 12px;
    grid-template-columns: 44px 1fr auto;
    gap: 11px;
  }

  .icon {
    width: 44px;
    height: 44px;
  }

  .copy strong {
    font-size: 12px;
  }

  .copy small {
    font-size: 9px;
  }

  .arrow {
    font-size: 22px;
  }
}

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


/* START HERE LABEL */
.start-here {
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  color: var(--gold-light);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.start-here span {
  width: 34px;
  height: 1px;
  display: block;
  background: linear-gradient(90deg, transparent, rgba(233, 189, 69, .78));
}

.start-here span:last-child {
  background: linear-gradient(90deg, rgba(233, 189, 69, .78), transparent);
}

/* FEATURED CTA RECOMMENDED BADGE */
.link-card.featured {
  grid-template-columns: 48px minmax(0, 1fr) auto auto;
}

.recommended-badge {
  padding: 5px 8px;
  border: 1px solid rgba(233, 189, 69, .30);
  border-radius: 999px;
  color: #171004;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  font-size: 7px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  white-space: nowrap;
}

@media (max-width: 640px) {
  .start-here {
    margin-bottom: 20px;
    font-size: 8px;
  }

  .start-here span {
    width: 24px;
  }

  .link-card.featured {
    grid-template-columns: 44px minmax(0, 1fr) auto;
  }

  .recommended-badge {
    display: none;
  }
}
