:root {
  --ink: #f5f5f2;
  --muted: #b9bbb9;
  --panel: rgba(24, 25, 25, .94);
  --panel-light: rgba(48, 49, 49, .96);
  --teal: #2eaab2;
  --green: #397e46;
  --blue: #236d98;
  --gold: #8c6924;
  --focus: #49cbd0;
  --officepace-icon-green: #a6d4ae;
  --officepace-icon-blue: #9ac9df;
  --officepace-icon-gold: #d2b66e;
  --officepace-icon-teal: #89d3d5;
  --officepace-icon-violet: #c1b1e8;
  --officepace-panel-green: linear-gradient(120deg, #356b3c, #3e9350);
  --officepace-panel-blue: linear-gradient(120deg, #225d7c, #2685b2);
  --officepace-panel-gold: linear-gradient(120deg, #6f5726, #a17a25);
  --officepace-panel-teal: linear-gradient(120deg, #245f63, #2e8f92);
  --officepace-panel-violet: linear-gradient(120deg, #443463, #674b9c);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #080c17;
  color: var(--ink);
  font-family: var(--font-geist-sans), "Segoe UI", sans-serif;
}

button,
input {
  font: inherit;
}

button {
  color: inherit;
}

button:focus-visible,
input:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 3px;
}

.site-shell {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

.backdrop,
.backdrop-shade {
  position: fixed;
  inset: 0;
  z-index: -2;
}

.backdrop {
  background: url("/homespace-night.png?v=ddbbfd739039") center top / cover no-repeat;
  transform: scale(1.02);
}

.backdrop-shade {
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(5, 5, 13, .12) 0%, rgba(5, 8, 18, .14) 48%, #090d16 88%),
    linear-gradient(90deg, rgba(3, 5, 13, .3), transparent 32%, transparent 68%, rgba(3, 5, 13, .3));
}

.topbar {
  width: min(1460px, calc(100% - 64px));
  height: 92px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 20;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 0;
  border: 0;
  background: none;
  font-weight: 500;
  font-size: 23px;
  letter-spacing: -.7px;
  cursor: pointer;
}

.brand-number {
  color: #59d1d4;
}

.brand-mark {
  width: 32px;
  height: 29px;
  display: block;
  object-fit: contain;
}

.brand-mark.small {
  width: 25px;
  height: 24px;
}

.brand-avatar {
  aspect-ratio: 1;
  border-radius: 50%;
  object-fit: cover;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, .24),
    0 2px 8px rgba(0, 0, 0, .28);
}

.launcher-brand .brand-avatar.small {
  width: 28px;
  height: 28px;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

.primary-nav button,
.primary-nav a {
  border: 0;
  background: none;
  color: inherit;
  text-decoration: none;
  font-size: 13px;
  font-weight: 750;
  letter-spacing: .5px;
  opacity: .75;
  cursor: pointer;
  position: relative;
}

.primary-nav button:hover,
.primary-nav button.active,
.primary-nav a:hover,
.primary-nav a.active {
  opacity: 1;
}

.primary-nav button.active::after,
.primary-nav a.active::after {
  content: "";
  position: absolute;
  left: 25%;
  right: 25%;
  bottom: -10px;
  height: 3px;
  border-radius: 4px;
  background: var(--focus);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.icon-button,
.menu-button {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.35);
  background: rgba(21, 22, 26, .58);
  display: grid;
  place-items: center;
  cursor: pointer;
}

.search-symbol {
  width: 14px;
  height: 14px;
  border: 2px solid #fff;
  border-radius: 50%;
  position: relative;
}

.search-symbol::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 2px;
  background: #fff;
  right: -6px;
  bottom: -3px;
  transform: rotate(45deg);
  border-radius: 2px;
}

.enter-pill,
.outline-cta {
  border: 2px solid #fff;
  background: rgba(25, 26, 30, .5);
  border-radius: 999px;
  padding: 11px 22px;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

.enter-pill:hover,
.outline-cta:hover {
  background: #fff;
  color: #1a1b1d;
}

.menu-button {
  display: none;
}

.menu-button span {
  width: 17px;
  height: 2px;
  background: #fff;
  margin: 2px;
}

.search-popover {
  position: absolute;
  top: 78px;
  right: 0;
  width: 350px;
  padding: 18px;
  border-radius: 18px;
  background: #292a2b;
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: 0 20px 60px rgba(0,0,0,.4);
}

.search-popover label {
  display: block;
  font-size: 12px;
  font-weight: 800;
  margin: 0 0 9px;
}

.search-popover div {
  display: flex;
}

.search-popover input {
  min-width: 0;
  flex: 1;
  border: 0;
  border-radius: 10px 0 0 10px;
  background: #151617;
  color: #fff;
  padding: 12px 13px;
}

.search-popover button {
  border: 0;
  border-radius: 0 10px 10px 0;
  background: var(--teal);
  font-weight: 850;
  padding: 0 15px;
  cursor: pointer;
}

.alt-panel {
  border-radius: 28px;
  border: 1px solid rgba(0,0,0,.75);
  background: linear-gradient(150deg, rgba(50, 52, 52, .96), rgba(22, 23, 23, .97));
  box-shadow: 0 20px 70px rgba(0, 0, 0, .32), inset 0 1px rgba(255,255,255,.1);
}

.officepace-icon-panel {
  min-width: 72px;
  min-height: 72px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .04);
}

.officepace-icon-panel.is-green { background: var(--officepace-panel-green); }
.officepace-icon-panel.is-blue { background: var(--officepace-panel-blue); }
.officepace-icon-panel.is-gold { background: var(--officepace-panel-gold); }
.officepace-icon-panel.is-teal { background: var(--officepace-panel-teal); }
.officepace-icon-panel.is-violet { background: var(--officepace-panel-violet); }

.officepace-icon-panel > img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  opacity: .78;
}

.hero {
  min-height: 640px;
  width: min(1460px, calc(100% - 64px));
  margin: 24px auto 80px;
  display: grid;
  grid-template-columns: 280px minmax(520px, 1fr) 240px;
  gap: 24px;
  align-items: stretch;
}

.launcher-panel {
  padding: 26px 18px 20px;
  display: flex;
  flex-direction: column;
}

.launcher-brand {
  display: flex;
  align-items: center;
  gap: 13px;
  min-height: 48px;
  padding: 0 0 22px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.5px;
}

.launcher-actions {
  display: grid;
  gap: 10px;
}

.launcher-action {
  min-height: 78px;
  border: 0;
  border-radius: 15px;
  padding: 12px 13px 12px 16px;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.04);
  cursor: pointer;
  transition: transform .18s ease, filter .18s ease;
}

.launcher-action:hover,
.launcher-action[aria-pressed="true"] {
  transform: translateX(4px);
  filter: brightness(1.18);
}

.launcher-action.green { background: var(--officepace-panel-green); }
.launcher-action.blue { background: var(--officepace-panel-blue); }
.launcher-action.gold { background: var(--officepace-panel-gold); }

.launcher-action strong,
.launcher-action small {
  display: block;
}

.launcher-action strong {
  font-size: 19px;
  letter-spacing: -.3px;
}

.launcher-action small {
  max-width: 165px;
  margin-top: 5px;
  font-size: 12px;
  line-height: 1.25;
  color: rgba(255,255,255,.64);
}

.launcher-icon {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  object-fit: contain;
  opacity: .74;
}

.launcher-links {
  display: grid;
  gap: 7px;
  padding: 22px 10px;
}

.launcher-links button,
.launcher-links a {
  width: fit-content;
  padding: 0;
  border: 0;
  background: none;
  font-size: 13px;
  font-weight: 700;
  color: #aeb0af;
  cursor: pointer;
  text-decoration: none;
}

.launcher-links button:hover,
.launcher-links a:hover {
  color: white;
}

.panel-status {
  margin-top: auto;
  padding: 18px 8px 0;
  border-top: 1px solid rgba(255,255,255,.12);
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  font-weight: 750;
  color: #9da09f;
}

.status-dot {
  width: 7px;
  height: 7px;
  display: inline-block;
  margin-right: 5px;
  border-radius: 50%;
  background: #4fe478;
  box-shadow: 0 0 12px #4fe478;
}

.signal {
  color: #42b7bd;
  letter-spacing: 2px;
}

.hero-panel {
  min-height: 640px;
  padding: clamp(52px, 6vw, 86px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero-carousel {
  isolation: isolate;
  transition: border-color .45s ease, box-shadow .45s ease;
}

.hero-carousel.accent-teal {
  border-color: rgba(67, 205, 211, .28);
}

.hero-carousel.accent-violet {
  border-color: rgba(151, 115, 255, .3);
}

.hero-carousel.accent-green {
  border-color: rgba(93, 205, 141, .28);
}

.hero-panel::before {
  content: "";
  position: absolute;
  width: 470px;
  height: 470px;
  right: -240px;
  top: -250px;
  border: 1px solid rgba(64, 205, 211, .16);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(64, 205, 211, .025), 0 0 0 145px rgba(64, 205, 211, .018);
  transition: border-color .45s ease, box-shadow .45s ease;
  z-index: -1;
}

.hero-carousel.accent-violet::before {
  border-color: rgba(151, 115, 255, .18);
  box-shadow: 0 0 0 70px rgba(151, 115, 255, .03), 0 0 0 145px rgba(151, 115, 255, .018);
}

.hero-carousel.accent-green::before {
  border-color: rgba(93, 205, 141, .18);
  box-shadow: 0 0 0 70px rgba(93, 205, 141, .028), 0 0 0 145px rgba(93, 205, 141, .018);
}

.hero-slide {
  width: 100%;
  animation: hero-slide-in .62s cubic-bezier(.22, .8, .2, 1) both;
}

@keyframes hero-slide-in {
  from {
    opacity: 0;
    transform: translate3d(24px, 0, 0);
    filter: blur(4px);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    filter: blur(0);
  }
}

.eyebrow,
.section-kicker {
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 2.2px;
  color: #70d8db;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
}

.eyebrow span {
  width: 33px;
  height: 2px;
  background: #70d8db;
}

.hero h1 {
  margin: 24px 0 22px;
  max-width: 790px;
  font-size: clamp(46px, 4.4vw, 68px);
  line-height: .98;
  letter-spacing: -3.5px;
  font-weight: 580;
}

.hero h1 em {
  color: #6bd1d4;
  font-style: normal;
}

.hero-slide > p {
  max-width: 680px;
  margin: 0;
  font-size: 17px;
  line-height: 1.6;
  color: #bdc0c0;
}

.hero-cta-row {
  margin-top: 34px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.primary-cta {
  border: 2px solid var(--teal);
  border-radius: 999px;
  background: var(--teal);
  padding: 12px 22px;
  font-size: 12px;
  font-weight: 850;
  cursor: pointer;
  color: #fff;
  text-decoration: none;
}

.primary-cta span {
  margin-left: 15px;
  font-size: 16px;
}

.primary-cta:hover {
  background: #3cc1c8;
  border-color: #3cc1c8;
}

.hero-cta-row .outline-cta {
  color: #fff;
  text-decoration: none;
}

.carousel-controls {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  transform: translateX(-50%);
}

.carousel-dots {
  display: flex;
  align-items: center;
  gap: 7px;
}

.carousel-dots button {
  width: 8px;
  height: 24px;
  padding: 0;
  border: 0;
  background: transparent;
  display: grid;
  place-items: center;
  cursor: pointer;
}

.carousel-dots button span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .35);
  transition: background .2s ease, transform .2s ease;
}

.carousel-dots button.active span {
  background: #43cbd1;
  transform: scale(1.08);
}

.carousel-arrow {
  width: 24px;
  height: 24px;
  padding: 0;
  border: 2px solid rgba(255,255,255,.92);
  border-radius: 50%;
  background: transparent;
  display: grid;
  place-items: center;
  color: #fff;
  cursor: pointer;
  transition: opacity .2s ease, background .2s ease, border-color .2s ease;
}

.carousel-arrow span {
  width: 7px;
  height: 7px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
}

.carousel-arrow-previous span {
  margin-left: 3px;
  transform: rotate(-135deg);
}

.carousel-arrow-next span {
  margin-right: 3px;
  transform: rotate(45deg);
}

.carousel-arrow:hover:not(:disabled),
.carousel-arrow:focus-visible {
  background: rgba(255, 255, 255, .1);
}

.carousel-arrow:disabled {
  border-color: rgba(255,255,255,.18);
  color: rgba(255,255,255,.18);
  cursor: default;
}

.carousel-progress {
  position: absolute;
  z-index: 3;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: rgba(255,255,255,.04);
  overflow: hidden;
}

.carousel-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #2eaab2, #71dadd);
  transform-origin: left center;
  animation: carousel-countdown 5s linear both;
}

.carousel-progress.paused span {
  animation-play-state: paused;
}

.accent-violet .carousel-progress span {
  background: linear-gradient(90deg, #7957db, #ae98ff);
}

.accent-green .carousel-progress span {
  background: linear-gradient(90deg, #38875a, #6bd698);
}

@keyframes carousel-countdown {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

.pulse-ring {
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(92, 215, 218, .35);
  border-radius: 50%;
}

.pulse-ring i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #58d5d8;
  box-shadow: 0 0 14px #58d5d8;
}

.presence-panel {
  align-self: center;
  min-height: 400px;
  padding: 25px 22px;
}

.presence-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
}

.presence-heading b {
  padding: 5px 8px;
  border-radius: 999px;
  background: #24663d;
  color: #79e99c;
  font-size: 12px;
}

.presence-count {
  margin: 41px 0 25px;
}

.presence-count strong {
  display: block;
  font-size: 62px;
  line-height: 1;
  letter-spacing: -4px;
  color: #63ced2;
}

.presence-count span {
  display: block;
  margin-top: 8px;
  color: #9b9e9d;
  font-size: 12px;
  line-height: 1.45;
}

.avatar-stack {
  display: flex;
  padding-left: 7px;
}

.avatar-stack span {
  width: 42px;
  height: 42px;
  margin-left: -7px;
  border: 3px solid #292a2a;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #315a78;
  color: white;
  font-size: 12px;
  font-weight: 800;
}

.avatar-stack span:nth-child(2) { background: #804f68; }
.avatar-stack span:nth-child(3) { background: #82663c; }
.avatar-stack span:nth-child(4) { background: #3a3b3b; color: #9fa1a1; }

.presence-divider {
  height: 1px;
  background: rgba(255,255,255,.12);
  margin: 31px 0 25px;
}

.presence-panel p {
  margin: 0 0 9px;
  font-size: 13px;
  line-height: 1.55;
  font-style: italic;
}

.presence-panel > small {
  color: #747777;
  font-size: 12px;
}

.resource-section {
  position: relative;
  z-index: 2;
  padding: 85px max(32px, calc((100% - 1180px) / 2)) 110px;
  background: linear-gradient(180deg, rgba(9,13,22,.88), #0a0d13 110px);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 30px;
}

.section-heading h2 {
  margin: 10px 0 0;
  font-size: clamp(32px, 4vw, 53px);
  letter-spacing: -2.5px;
  font-weight: 580;
}

.section-heading > button,
.section-heading > a {
  margin-bottom: 9px;
  border: 0;
  background: none;
  color: #bebfbe;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 1.2px;
  cursor: pointer;
  text-decoration: none;
}

.section-heading > button span,
.section-heading > a span {
  margin-left: 10px;
  color: #63d1d5;
}

.resource-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 19px;
}

.resource-card {
  min-width: 0;
  border-radius: 22px;
  overflow: hidden;
  background: #202123;
  border: 1px solid rgba(255,255,255,.07);
  box-shadow: 0 20px 50px rgba(0,0,0,.18);
  transition: transform .18s ease, border-color .18s ease;
}

.resource-card:hover {
  transform: translateY(-5px);
  border-color: rgba(100,211,214,.55);
}

.card-visual {
  height: 175px;
  position: relative;
  overflow: hidden;
}

.resource-card-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.resource-card .card-visual {
  height: auto;
  aspect-ratio: 40 / 21;
}

.resource-type {
  display: block;
  margin-bottom: 7px;
  color: #63d1d5;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 1.5px;
}

.card-visual.teal { background: radial-gradient(circle at 60% 35%, #50b8b8, #1d4957 50%, #152d3c); }
.card-visual.violet { background: radial-gradient(circle at 60% 35%, #9b71c4, #513c80 48%, #27234b); }
.card-visual.amber { background: radial-gradient(circle at 60% 35%, #d59443, #734b31 50%, #382b29); }

.orbit {
  position: absolute;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 50%;
}

.orbit-one {
  width: 215px;
  height: 215px;
  right: -24px;
  top: -84px;
}

.orbit-two {
  width: 140px;
  height: 140px;
  left: -42px;
  bottom: -72px;
}

.card-glyph {
  position: absolute;
  right: 34px;
  top: 24px;
  font-size: 91px;
  line-height: 1;
  font-weight: 100;
  color: rgba(255,255,255,.72);
}

.card-label {
  position: absolute;
  left: 20px;
  bottom: 17px;
  padding: 6px 9px;
  border-radius: 7px;
  background: rgba(11,14,19,.6);
  font-size: 12px;
  letter-spacing: 1.6px;
  font-weight: 850;
}

.card-copy {
  padding: 23px;
}

.card-copy h3 {
  min-height: 54px;
  margin: 0 0 11px;
  font-size: 20px;
  line-height: 1.28;
  letter-spacing: -.45px;
}

.card-copy p {
  min-height: 56px;
  margin: 0;
  color: #9fa1a0;
  font-size: 12px;
  line-height: 1.55;
}

.card-copy > div {
  margin-top: 24px;
  padding-top: 17px;
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #777a79;
  font-size: 12px;
  font-weight: 700;
}

.card-copy button,
.card-copy a {
  width: 31px;
  height: 31px;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 50%;
  background: none;
  color: inherit;
  text-decoration: none;
  display: grid;
  place-items: center;
  cursor: pointer;
}

.card-copy button:hover,
.card-copy a:hover {
  background: var(--teal);
  border-color: var(--teal);
}

.site-footer {
  min-height: 110px;
  padding: 30px max(32px, calc((100% - 1180px) / 2));
  background: #17191d;
  border-top: 1px solid rgba(255,255,255,.08);
  display: grid;
  grid-template-columns: .9fr 2fr .8fr;
  align-items: center;
  gap: 30px;
}

.footer-brand {
  font-size: 18px;
}

.site-footer p,
.site-footer > span {
  color: #777a79;
  font-size: 12px;
  line-height: 1.5;
}

footer > span {
  text-align: right;
  letter-spacing: 1.4px;
  font-weight: 700;
}

footer > span b {
  color: #e65872;
}

.footer-middle nav {
  margin-bottom: 9px;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.footer-middle nav a {
  color: #b0b2b1;
  text-decoration: none;
  font-size: 12px;
  font-weight: 750;
}

.footer-middle nav a:hover {
  color: #67d0d4;
}

.footer-middle p {
  margin: 0;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 100;
  padding: 24px;
  background: rgba(4, 5, 10, .78);
  backdrop-filter: blur(8px);
  display: grid;
  place-items: center;
}

.code-modal {
  width: min(530px, 100%);
  padding: 48px;
  text-align: center;
  position: relative;
  border: 4px solid #f3c06b;
  box-shadow: 0 30px 100px rgba(0,0,0,.55);
}

.modal-close {
  position: absolute;
  right: 20px;
  top: 14px;
  border: 0;
  background: none;
  font-size: 29px;
  color: #a7aaa8;
  cursor: pointer;
}

.modal-icon {
  width: 58px;
  height: 58px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: #286f96;
  display: grid;
  place-items: center;
  font-size: 28px;
}

.code-modal h2 {
  margin: 0 0 10px;
  font-size: 31px;
}

.code-modal p {
  margin: 0 auto 25px;
  max-width: 390px;
  color: #a9acab;
  font-size: 13px;
  line-height: 1.5;
}

.code-modal form {
  display: flex;
  gap: 10px;
}

.code-modal input {
  flex: 1;
  min-width: 0;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 12px;
  background: #151617;
  color: #fff;
  padding: 14px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 4px;
}

.code-modal form button {
  border: 2px solid #fff;
  border-radius: 999px;
  background: var(--teal);
  padding: 0 20px;
  font-size: 12px;
  font-weight: 850;
  cursor: pointer;
}

@media (max-width: 1180px) {
  .hero {
    grid-template-columns: 250px 1fr;
  }

  .presence-panel {
    display: none;
  }

  .primary-nav {
    gap: 20px;
  }
}

@media (max-width: 860px) {
  .topbar,
  .hero {
    width: min(100% - 32px, 700px);
  }

  .topbar {
    height: 76px;
  }

  .primary-nav {
    display: none;
    position: absolute;
    top: 68px;
    right: 0;
    width: 230px;
    padding: 20px;
    border-radius: 18px;
    background: #242627;
    border: 1px solid rgba(255,255,255,.13);
    flex-direction: column;
    align-items: flex-start;
    gap: 21px;
    box-shadow: 0 20px 50px rgba(0,0,0,.4);
  }

  .primary-nav.open {
    display: flex;
  }

  .menu-button {
    display: grid;
  }

  .hero {
    margin-top: 15px;
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-panel {
    order: -1;
    min-height: 540px;
  }

  .launcher-panel {
    display: block;
  }

  .launcher-actions {
    grid-template-columns: repeat(3, 1fr);
  }

  .launcher-action {
    min-width: 0;
  }

  .launcher-action small,
  .launcher-links,
  .panel-status {
    display: none;
  }

  .resource-grid {
    grid-template-columns: 1fr;
  }

  .card-copy h3,
  .card-copy p {
    min-height: auto;
  }
}

@media (max-width: 600px) {
  .topbar {
    width: calc(100% - 28px);
  }

  .brand {
    font-size: 18px;
    gap: 8px;
  }

  .brand-mark {
    transform: scale(.8);
  }

  .enter-pill {
    display: none;
  }

  .search-popover {
    width: calc(100vw - 28px);
  }

  .hero {
    width: calc(100% - 24px);
    margin-bottom: 36px;
    gap: 12px;
  }

  .alt-panel {
    border-radius: 21px;
  }

  .hero-panel {
    min-height: 510px;
    padding: 39px 25px;
    justify-content: flex-start;
  }

  .hero h1 {
    margin-top: 30px;
    font-size: 42px;
    letter-spacing: -2.5px;
  }

  .hero-slide > p {
    font-size: 14px;
  }

  .carousel-controls {
    bottom: 22px;
  }

  .carousel-arrow {
    width: 24px;
    height: 24px;
  }

  .launcher-panel {
    padding: 16px;
  }

  .launcher-brand {
    padding-bottom: 14px;
  }

  .launcher-actions {
    grid-template-columns: 1fr;
  }

  .launcher-action {
    min-height: 64px;
  }

  .launcher-action small {
    display: block;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .resource-section {
    padding: 65px 18px 75px;
  }

  .site-footer {
    padding: 30px 22px;
    grid-template-columns: 1fr;
    gap: 13px;
  }

  .site-footer > span {
    text-align: left;
  }

  .code-modal {
    padding: 42px 23px 27px;
  }

  .code-modal form {
    flex-direction: column;
  }

  .code-modal form button {
    min-height: 45px;
  }
}

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

  * {
    transition: none !important;
  }

  .hero-slide,
  .carousel-progress span {
    animation: none !important;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Shared inner-page chrome */
.inner-page {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% -10%, rgba(81, 54, 176, .22), transparent 40%),
    linear-gradient(180deg, rgba(11, 12, 29, .18), #090d16 92%),
    url("/homespace-night.png?v=ddbbfd739039") center top / cover fixed no-repeat;
}

.inner-page::before {
  content: none;
}

.inner-header {
  width: min(1240px, calc(100% - 48px));
  height: 88px;
  margin: 0 auto;
  position: relative;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.inner-header .brand {
  text-decoration: none;
}

.inner-nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

.inner-nav a {
  position: relative;
  color: #aeb1b1;
  text-decoration: none;
  font-size: 12px;
  font-weight: 780;
  letter-spacing: .55px;
}

.inner-nav a:hover,
.inner-nav a.active {
  color: #fff;
}

.inner-nav a.active::after {
  content: "";
  position: absolute;
  left: 20%;
  right: 20%;
  height: 3px;
  bottom: -12px;
  border-radius: 5px;
  background: #51cbd0;
}

.inner-header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.inner-header .enter-pill {
  text-decoration: none;
}

.inner-menu-button {
  display: none;
}

.global-search-button {
  width: 38px;
  height: 38px;
}

.global-search-backdrop {
  position: fixed;
  inset: 0;
  z-index: 120;
  padding: 70px 20px 20px;
  background: rgba(4,5,10,.82);
  backdrop-filter: blur(9px);
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.global-search-panel {
  width: min(650px, 100%);
  padding: 24px;
  border: 2px solid rgba(91,204,209,.4);
  border-radius: 24px;
  box-shadow: 0 30px 100px rgba(0,0,0,.55);
}

.global-search-panel > header {
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.global-search-panel > header > div {
  display: flex;
  align-items: center;
  gap: 15px;
}

.global-search-panel h2 {
  margin: 0;
  font-size: 16px;
}

.global-search-panel > header button {
  border: 0;
  background: transparent;
  color: #9da09f;
  font-size: 27px;
  cursor: pointer;
}

.global-search-panel > label {
  height: 55px;
  padding: 0 15px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 13px;
  background: #131516;
  display: flex;
  align-items: center;
  gap: 12px;
}

.global-search-panel input {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: #fff;
  font-size: 13px;
}

.global-search-panel kbd {
  padding: 5px 7px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 5px;
  color: #696c6b;
  font-size: 12px;
  font-family: inherit;
}

.global-search-results {
  margin-top: 21px;
}

.global-search-results > span {
  display: block;
  margin: 0 5px 9px;
  color: #6c6f6e;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 1.2px;
}

.global-search-results > a {
  padding: 12px 10px;
  border-top: 1px solid rgba(255,255,255,.07);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  text-decoration: none;
}

.global-search-results > a:hover {
  border-radius: 10px;
  background: rgba(82,200,205,.08);
}

.global-search-results small,
.global-search-results strong,
.global-search-results p {
  display: block;
}

.global-search-results small {
  color: #58cbd0;
  font-size: 12px;
  letter-spacing: .8px;
}

.global-search-results strong {
  margin-top: 3px;
  font-size: 12px;
}

.global-search-results p {
  margin: 3px 0 0;
  color: #747776;
  font-size: 12px;
}

.global-search-results > a > b {
  color: #60cdd1;
}

.global-search-empty {
  padding: 30px;
  color: #7a7d7c;
  text-align: center;
  font-size: 12px;
}

.site-footer {
  position: relative;
  z-index: 2;
}

/* Resource directory */
.resource-directory-page {
  background:
    linear-gradient(180deg, rgba(5, 7, 17, .22), #090d16 720px),
    url("/homespace-night.png?v=ddbbfd739039") center top / cover fixed no-repeat;
}

.directory-hero {
  width: min(1120px, calc(100% - 48px));
  min-height: 375px;
  margin: 25px auto 35px;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.directory-hero h1 {
  margin: 17px 0;
  font-size: clamp(48px, 5vw, 68px);
  line-height: .94;
  letter-spacing: -4px;
  font-weight: 650;
}

.directory-hero > div:first-child > p {
  max-width: 620px;
  margin: 0;
  color: #b1b4b3;
  font-size: 16px;
  line-height: 1.6;
}

.directory-hero-graphic {
  position: relative;
  flex: 0 0 min(390px, 36vw);
  aspect-ratio: 3 / 2;
  margin: 0;
  overflow: hidden;
  border-radius: 30px;
  background:
    radial-gradient(circle at 50% 48%, rgba(64, 196, 201, .15), transparent 32%),
    linear-gradient(145deg, #25282a, #171b22);
  box-shadow: 0 28px 70px rgba(0, 0, 0, .36);
}

.resource-art-orbit {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 285px;
  height: 112px;
  border: 1px solid rgba(99, 209, 213, .28);
  border-radius: 50%;
  transform: translate(-50%, -50%) rotate(25deg);
}

.resource-art-orbit.two {
  width: 260px;
  height: 165px;
  border-color: rgba(255, 255, 255, .15);
  transform: translate(-50%, -50%) rotate(-33deg);
}

.resource-art-core,
.resource-art-node {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .16);
  box-shadow: 0 15px 32px rgba(0, 0, 0, .3);
}

.resource-art-core {
  left: 50%;
  top: 50%;
  width: 92px;
  height: 92px;
  border-radius: 27px;
  background: linear-gradient(145deg, #2e9296, #1d555d);
  transform: translate(-50%, -50%);
}

.resource-art-core img {
  width: 48px;
  height: 48px;
}

.resource-art-node {
  width: 54px;
  height: 54px;
  border-radius: 18px;
}

.resource-art-node img {
  width: 29px;
  height: 29px;
}

.resource-art-node.worlds {
  left: 36px;
  bottom: 38px;
  background: linear-gradient(145deg, #356f49, #203f2e);
  transform: rotate(-7deg);
}

.resource-art-node.events {
  right: 33px;
  bottom: 43px;
  background: linear-gradient(145deg, #286f91, #1b3f5a);
  transform: rotate(7deg);
}

.resource-art-node.learn {
  right: 55px;
  top: 29px;
  background: linear-gradient(145deg, #765921, #3a301f);
  transform: rotate(5deg);
}

.resource-art-dot {
  position: absolute;
  z-index: 3;
  width: 11px;
  height: 11px;
  border: 2px solid #243036;
  border-radius: 50%;
  background: #63d1d5;
  box-shadow: 0 0 14px rgba(99, 209, 213, .75);
}

.resource-art-dot.one {
  left: 58px;
  top: 64px;
}

.resource-art-dot.two {
  right: 93px;
  bottom: 26px;
  background: #d4aa55;
  box-shadow: 0 0 14px rgba(212, 170, 85, .7);
}

.directory-panel {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto 95px;
  padding: 28px;
  position: relative;
  z-index: 2;
}

.directory-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.directory-toolbar > span {
  color: #7f8281;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.2px;
}

.directory-search {
  width: min(470px, 100%);
  height: 48px;
  padding: 0 16px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 13px;
  background: #151617;
  display: flex;
  align-items: center;
  gap: 16px;
}

.directory-search .search-symbol {
  flex: 0 0 14px;
}

.directory-search input {
  min-width: 0;
  flex: 1;
  border: 0;
  outline: 0;
  background: none;
  color: white;
  font-size: 13px;
}

.directory-categories {
  margin: 23px 0 28px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255,255,255,.1);
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
}

.directory-categories::-webkit-scrollbar {
  display: none;
}

.directory-categories button {
  flex: 0 0 auto;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 999px;
  background: transparent;
  color: #a8aaaa;
  padding: 9px 15px;
  font-size: 12px;
  font-weight: 760;
  cursor: pointer;
}

.directory-categories button:hover,
.directory-categories button.active {
  border-color: #fff;
  background: #f4f4f1;
  color: #1d1e1e;
}

.resource-directory-page .directory-categories button {
  border-color: rgba(255, 255, 255, .22);
  background: #326f75;
  color: #fff;
  box-shadow: 0 5px 14px rgba(0, 0, 0, .16);
  transition: filter .16s ease, transform .16s ease, border-color .16s ease;
}

.resource-directory-page .directory-categories button:nth-child(2) { background: #765620; }
.resource-directory-page .directory-categories button:nth-child(3) { background: #2d6d45; }
.resource-directory-page .directory-categories button:nth-child(4) { background: #265f82; }
.resource-directory-page .directory-categories button:nth-child(5) { background: #286d72; }
.resource-directory-page .directory-categories button:nth-child(6) { background: #5c4782; }

.resource-directory-page .directory-categories button:hover {
  border-color: rgba(255, 255, 255, .8);
  color: #fff;
  filter: brightness(1.16);
  transform: translateY(-1px);
}

.resource-directory-page .directory-categories button.active {
  border-color: #fff;
  background: #f4f4f1;
  color: #1d1e1e;
  filter: none;
  transform: none;
}

.directory-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.directory-card {
  min-width: 0;
  padding: 19px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 18px;
  background: rgba(17, 18, 19, .62);
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 18px;
  transition: transform .18s ease, border-color .18s ease;
}

.directory-card:hover {
  transform: translateY(-3px);
  border-color: rgba(81,203,208,.45);
}

.directory-icon {
  min-height: 138px;
  border-radius: 14px;
  display: grid;
  place-items: center;
}

.directory-icon img {
  width: 55px;
  height: 55px;
}

.directory-icon.gold,
.directory-icon.amber { background: linear-gradient(145deg, #7a5d24, #3e321f); }
.directory-icon.violet { background: linear-gradient(145deg, #674b9c, #31264d); }
.directory-icon.green { background: linear-gradient(145deg, #3f8650, #23452c); }
.directory-icon.blue { background: linear-gradient(145deg, #287da6, #1c425d); }
.directory-icon.teal { background: linear-gradient(145deg, #2e8f92, #1f4c52); }

.directory-card-copy > span {
  color: #61d0d4;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.directory-card h2 {
  margin: 7px 0 7px;
  font-size: 19px;
  letter-spacing: -.4px;
}

.directory-card p {
  margin: 0;
  color: #929594;
  font-size: 12px;
  line-height: 1.5;
}

.directory-card-copy > div {
  margin-top: 17px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.directory-card-copy small {
  color: #6f7271;
  font-size: 12px;
  font-weight: 700;
}

.directory-card-copy a {
  width: 30px;
  height: 30px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  text-decoration: none;
}

.directory-card-copy a:hover {
  border-color: #42bfc4;
  background: #2eaab2;
}

.empty-state {
  padding: 70px 20px;
  text-align: center;
}

.empty-state > span {
  color: #55c9cd;
  font-size: 50px;
}

.empty-state h2 {
  margin: 15px 0 5px;
}

.empty-state p {
  color: #858887;
}

/* Documentation layout */
.docs-page {
  background:
    linear-gradient(180deg, rgba(8,10,20,.65), #090d16 620px),
    url("/homespace-night.png?v=ddbbfd739039") center top / cover fixed no-repeat;
}

.docs-shell {
  width: min(1420px, calc(100% - 48px));
  margin: 25px auto 90px;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 245px minmax(520px, 850px) 185px;
  gap: 22px;
  align-items: start;
  justify-content: center;
}

.docs-sidebar {
  position: sticky;
  top: 22px;
  min-height: 630px;
  padding: 20px 16px;
}

.docs-home-link {
  padding: 2px 4px 18px;
  border-bottom: 1px solid rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  text-decoration: none;
}

.docs-home-link img {
  width: 31px;
  height: 31px;
}

.docs-home-link strong,
.docs-home-link small {
  display: block;
}

.docs-home-link strong {
  font-size: 12px;
  letter-spacing: 1.4px;
}

.docs-home-link small {
  margin-top: 3px;
  color: #838685;
  font-size: 12px;
}

.docs-sidebar nav {
  display: grid;
  padding: 15px 0;
}

.docs-sidebar nav > span {
  margin: 14px 9px 7px;
  color: #6f7271;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 1.4px;
}

.docs-sidebar nav a {
  padding: 9px 10px;
  border-radius: 8px;
  color: #a7aaa9;
  text-decoration: none;
  font-size: 12px;
  font-weight: 650;
}

.docs-sidebar nav a:hover,
.docs-sidebar nav a.active {
  background: rgba(67, 188, 193, .13);
  color: #7ad9dc;
}

.docs-sidebar nav a.active {
  box-shadow: inset 3px 0 #44c0c5;
}

.docs-help {
  margin-top: 16px;
  padding: 13px;
  border-radius: 12px;
  background: rgba(255,255,255,.045);
  display: flex;
  align-items: center;
  gap: 10px;
}

.docs-help > span {
  width: 27px;
  height: 27px;
  border: 1px solid #8a8d8c;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 12px;
}

.docs-help strong,
.docs-help small {
  display: block;
}

.docs-help strong {
  font-size: 12px;
}

.docs-help small {
  max-width: 125px;
  margin-top: 4px;
  color: #747776;
  font-size: 12px;
  line-height: 1.35;
}

.docs-article {
  padding: clamp(36px, 5vw, 72px);
  background: rgba(25, 26, 27, .98);
}

.docs-breadcrumbs {
  display: flex;
  gap: 9px;
  color: #6f7271;
  font-size: 12px;
  font-weight: 700;
}

.docs-breadcrumbs a {
  color: #8f9291;
  text-decoration: none;
}

.doc-title-row {
  margin: 48px 0 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,.1);
  display: flex;
  justify-content: space-between;
  gap: 25px;
  align-items: end;
}

.doc-title-row h1 {
  margin: 10px 0 11px;
  font-size: clamp(42px, 5vw, 66px);
  line-height: 1;
  letter-spacing: -3.5px;
  font-weight: 580;
}

.doc-title-row p {
  max-width: 530px;
  margin: 0;
  color: #969998;
  font-size: 13px;
  line-height: 1.55;
}

.doc-time {
  flex: 0 0 auto;
  color: #777a79;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
}

.doc-callout {
  margin: 25px 0 50px;
  padding: 18px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.doc-callout.welcome {
  border: 1px solid rgba(75,202,207,.27);
  background: rgba(50,145,150,.12);
}

.doc-callout img {
  width: 35px;
  height: 35px;
}

.doc-callout strong,
.doc-callout p {
  display: block;
}

.doc-callout strong {
  font-size: 12px;
}

.doc-callout p {
  margin: 4px 0 0;
  color: #919493;
  font-size: 12px;
}

.docs-article section {
  position: relative;
  padding: 3px 0 40px;
  scroll-margin-top: 30px;
}

.doc-step {
  position: absolute;
  top: 5px;
  left: -34px;
  color: #53c9cd;
  font-size: 12px;
  font-weight: 850;
}

.docs-article section h2 {
  margin: 0 0 14px;
  font-size: 25px;
  letter-spacing: -.8px;
}

.docs-article section > p {
  color: #a6a9a8;
  font-size: 13px;
  line-height: 1.75;
}

.check-list {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 9px;
}

.check-list li {
  padding: 12px 14px;
  border-radius: 10px;
  background: rgba(255,255,255,.035);
  color: #b8baba;
  font-size: 12px;
}

.check-list span {
  margin-right: 10px;
  color: #65d6d9;
}

.doc-callout.tip {
  margin: 20px 0 0;
  padding: 15px;
  border-left: 3px solid #dfad4d;
  border-radius: 4px 10px 10px 4px;
  background: rgba(150,103,28,.12);
  align-items: flex-start;
}

.doc-callout.tip > span {
  width: 20px;
  height: 20px;
  border: 1px solid #dfad4d;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #edc06b;
  font-size: 12px;
  font-weight: 800;
}

.doc-callout.tip p {
  margin: 1px 0;
  line-height: 1.55;
}

.doc-action-card {
  margin-top: 20px;
  padding: 16px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 13px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: #fff;
  text-decoration: none;
}

.doc-action-card:hover {
  border-color: #53c9cd;
  background: rgba(83,201,205,.06);
}

.doc-action-card img {
  width: 39px;
  height: 39px;
}

.doc-action-card span {
  flex: 1;
}

.doc-action-card strong,
.doc-action-card small {
  display: block;
}

.doc-action-card strong {
  font-size: 12px;
}

.doc-action-card small {
  margin-top: 4px;
  color: #7e8180;
  font-size: 12px;
}

.docs-pagination {
  margin-top: 20px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.docs-pagination > span,
.docs-pagination a {
  color: #fff;
  text-decoration: none;
}

.docs-pagination small,
.docs-pagination b {
  display: block;
}

.docs-pagination small {
  margin-bottom: 5px;
  color: #6f7271;
  font-size: 12px;
  letter-spacing: 1px;
}

.docs-pagination b {
  font-size: 12px;
}

.docs-pagination a {
  text-align: right;
}

.docs-toc {
  position: sticky;
  top: 35px;
  padding: 13px 0;
  display: grid;
  gap: 10px;
}

.docs-toc > strong {
  margin-bottom: 3px;
  color: #7f8281;
  font-size: 12px;
  letter-spacing: 1.3px;
}

.docs-toc > a {
  padding-left: 10px;
  border-left: 1px solid rgba(255,255,255,.12);
  color: #8f9291;
  text-decoration: none;
  font-size: 12px;
  line-height: 1.4;
}

.docs-toc > a:hover {
  border-left-color: #53c9cd;
  color: #fff;
}

.docs-toc > div {
  margin-top: 18px;
  color: #686b6a;
  font-size: 12px;
  line-height: 1.8;
  letter-spacing: .8px;
}

.docs-toc > div b {
  color: #8e9190;
}

/* Editorial post layout */
.post-page {
  background:
    linear-gradient(180deg, rgba(5, 7, 17, .12), #090d16 690px),
    url("/homespace-night.png?v=ddbbfd739039") center top / cover fixed no-repeat;
}

.post-shell {
  width: min(1180px, calc(100% - 48px));
  margin: 22px auto 80px;
  position: relative;
  z-index: 2;
}

.post-hero {
  min-height: 440px;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  overflow: hidden;
}

.post-hero-copy {
  padding: clamp(32px, 4.4vw, 58px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.post-labels {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #67d4d7;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 1.4px;
}

.post-labels b {
  padding: 5px 8px;
  border-radius: 999px;
  background: rgba(103,212,215,.13);
  color: #9ee8ea;
  font-size: 12px;
}

.post-hero h1 {
  margin: 19px 0;
  font-size: clamp(56px, 7vw, 91px);
  line-height: .89;
  letter-spacing: -5.5px;
  font-weight: 570;
}

.post-hero h1 em {
  color: #64cfd3;
  font-style: normal;
}

.post-hero-copy > p {
  max-width: 550px;
  margin: 0;
  color: #aeb1b0;
  font-size: 16px;
  line-height: 1.65;
}

.post-byline {
  margin-top: 26px;
  display: flex;
  align-items: center;
  gap: 11px;
}

.author-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(145deg, #3a8a90, #28535d);
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 800;
}

.post-byline strong,
.post-byline small {
  display: block;
}

.post-byline strong {
  font-size: 12px;
}

.post-byline small {
  margin-top: 4px;
  color: #969b9a;
  font-size: 12px;
}

.post-hero-art {
  position: relative;
  min-height: 350px;
  overflow: hidden;
  background: linear-gradient(180deg, #392663 0%, #774b83 44%, #d18061 100%);
}

.post-hero-art::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-radial-gradient(ellipse at 50% 115%, transparent 0 45px, rgba(255,255,255,.08) 47px 48px, transparent 50px 76px);
}

.post-sun {
  position: absolute;
  width: 175px;
  height: 175px;
  left: 50%;
  top: 50%;
  border-radius: 50%;
  transform: translate(-50%, -48%);
  background: #f2bd65;
  box-shadow: 0 0 70px rgba(246,169,92,.7);
}

.post-mountain {
  position: absolute;
  bottom: -15px;
  width: 390px;
  height: 225px;
  background: #17233b;
  clip-path: polygon(0 100%, 49% 0, 100% 100%);
}

.post-mountain.one {
  left: -100px;
}

.post-mountain.two {
  right: -120px;
  height: 275px;
  background: #101a31;
}

.post-hero-art img {
  position: absolute;
  width: 98px;
  height: 86px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 6px 22px rgba(0,0,0,.45));
}

.post-content-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 60px minmax(0, 1fr) 285px;
  gap: 22px;
  align-items: start;
}

.post-share {
  position: sticky;
  top: 25px;
  display: grid;
  justify-items: center;
  gap: 9px;
}

.post-share > span {
  margin-bottom: 4px;
  color: #6d706f;
  font-size: 12px;
  letter-spacing: 1.2px;
  writing-mode: vertical-rl;
}

.post-share button {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 50%;
  background: #1d1f21;
  font-size: 12px;
  cursor: pointer;
}

.post-body {
  padding: clamp(38px, 5vw, 62px);
  border-radius: 23px;
  background: rgba(25,26,27,.98);
}

.post-article-image {
  margin: 0 0 38px;
}

.post-article-image img {
  width: 100%;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px;
  display: block;
  box-shadow: 0 22px 52px rgba(0,0,0,.28);
}

.post-article-image figcaption {
  margin-top: 11px;
  color: #7f8381;
  font-size: 12px;
  line-height: 1.55;
}

.post-body p {
  color: #a7aaa9;
  font-size: 14px;
  line-height: 1.85;
}

.post-body .post-lead {
  margin-top: 0;
  color: #e5e5e2;
  font-size: 19px;
  line-height: 1.65;
}

.post-body h2 {
  margin: 48px 0 13px;
  font-size: 29px;
  letter-spacing: -1.1px;
}

.post-quote {
  margin: 42px 0;
  padding: 28px;
  border-left: 3px solid #57cbd0;
  border-radius: 0 13px 13px 0;
  background: rgba(75,188,194,.07);
  display: flex;
  gap: 18px;
}

.post-quote > span {
  color: #68d4d8;
  font-size: 46px;
  line-height: .8;
}

.post-quote blockquote {
  margin: 0;
  color: #d4d5d2;
  font-size: 17px;
  line-height: 1.6;
  font-style: italic;
}

.article-feature-list {
  margin: 26px 0 0;
  display: grid;
  gap: 10px;
}

.article-feature-list > div {
  padding: 15px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.article-feature-list img {
  width: 40px;
  height: 40px;
}

.article-feature-list strong,
.article-feature-list small {
  display: block;
}

.article-feature-list strong {
  font-size: 12px;
}

.article-feature-list small {
  margin-top: 4px;
  color: #7d807f;
  font-size: 12px;
}

.post-notice {
  margin: 38px 0 28px;
  padding: 17px;
  border: 1px solid rgba(226,170,76,.22);
  border-radius: 12px;
  background: rgba(126,86,24,.1);
  display: flex;
  align-items: center;
  gap: 14px;
}

.post-notice > span {
  width: 27px;
  height: 27px;
  border: 1px solid #d8a950;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #e8bb69;
  font-size: 12px;
  font-weight: 800;
}

.post-notice p {
  margin: 0;
  font-size: 12px;
  line-height: 1.45;
}

.post-notice strong {
  display: block;
  color: #e2e2df;
}

.post-tags {
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.post-tags span {
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  color: #898c8b;
  font-size: 12px;
  font-weight: 700;
}

.post-rail {
  position: sticky;
  top: 24px;
}

.post-rail-card {
  padding: 24px;
  border-radius: 19px;
}

.post-rail-card > span {
  display: block;
  margin-bottom: 14px;
  color: #72d7dc;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 1.2px;
}

.post-rail-card a {
  padding: 16px 0;
  border-top: 1px solid rgba(255,255,255,.09);
  display: flex;
  justify-content: space-between;
  gap: 8px;
  color: #eef0ed;
  text-decoration: none;
  font-size: 13px;
  line-height: 1.5;
}

.post-rail-card a b {
  color: #5ad0d4;
}

.related-section {
  width: min(950px, calc(100% - 48px));
  margin: 0 auto 90px;
  position: relative;
  z-index: 2;
}

.related-section h2 {
  margin: 9px 0 23px;
  font-size: 37px;
  letter-spacing: -1.8px;
}

.related-section > div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.related-card {
  padding: 20px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 15px;
  color: #fff;
  text-decoration: none;
}

.related-card.gold { background: linear-gradient(120deg, #6d5428, #977126); }
.related-card.green { background: linear-gradient(120deg, #2e6639, #3b8b4c); }

.related-card img {
  width: 45px;
  height: 45px;
}

.related-card span {
  flex: 1;
}

.related-card small,
.related-card strong {
  display: block;
}

.related-card small {
  margin-bottom: 5px;
  color: rgba(255,255,255,.55);
  font-size: 12px;
  letter-spacing: 1px;
}

.related-card strong {
  font-size: 15px;
}

@media (max-width: 1100px) {
  .docs-shell {
    grid-template-columns: 220px minmax(0, 1fr);
  }

  .docs-toc {
    display: none;
  }

  .post-content-grid {
    grid-template-columns: 60px minmax(0, 1fr);
  }

  .post-rail {
    display: none;
  }
}

@media (max-width: 820px) {
  .inner-nav {
    display: none;
    position: absolute;
    top: 72px;
    right: 0;
    width: 220px;
    padding: 20px;
    border: 1px solid rgba(255,255,255,.13);
    border-radius: 17px;
    background: #242627;
    box-shadow: 0 20px 50px rgba(0,0,0,.4);
    flex-direction: column;
    align-items: flex-start;
  }

  .inner-nav.open {
    display: flex;
  }

  .inner-menu-button {
    display: grid;
  }

  .directory-hero {
    min-height: 310px;
  }

  .directory-hero-graphic {
    display: none;
  }

  .directory-grid {
    grid-template-columns: 1fr;
  }

  .docs-shell {
    grid-template-columns: 1fr;
  }

  .docs-sidebar {
    position: relative;
    top: auto;
    min-height: 0;
  }

  .docs-sidebar nav,
  .docs-help {
    display: none;
  }

  .post-hero {
    grid-template-columns: 1fr;
  }

  .post-hero-art {
    min-height: 300px;
  }

  .post-content-grid {
    grid-template-columns: 1fr;
  }

  .post-share {
    display: none;
  }
}

@media (max-width: 600px) {
  .inner-header {
    width: calc(100% - 28px);
    height: 74px;
  }

  .inner-header .enter-pill {
    display: none;
  }

  .directory-hero,
  .directory-panel,
  .docs-shell,
  .post-shell,
  .related-section {
    width: calc(100% - 24px);
  }

  .directory-hero {
    min-height: 280px;
    margin-top: 10px;
  }

  .directory-hero h1 {
    font-size: clamp(44px, 14vw, 56px);
    letter-spacing: -3px;
  }

  .directory-panel {
    padding: 15px;
  }

  .directory-toolbar > span {
    display: none;
  }

  .directory-card {
    grid-template-columns: 70px 1fr;
    padding: 12px;
    gap: 13px;
  }

  .directory-icon {
    min-height: 125px;
  }

  .directory-icon img {
    width: 44px;
    height: 44px;
  }

  .docs-article {
    padding: 35px 25px;
  }

  .doc-title-row {
    margin-top: 35px;
    align-items: flex-start;
    flex-direction: column;
  }

  .doc-step {
    position: static;
    display: block;
    margin-bottom: 8px;
  }

  .post-shell {
    margin-top: 15px;
  }

  .post-hero-copy {
    padding: 39px 26px;
  }

  .post-hero h1 {
    font-size: 59px;
    letter-spacing: -4px;
  }

  .post-body {
    padding: 35px 24px;
  }

  .post-body .post-lead {
    font-size: 17px;
  }

  .post-quote {
    padding: 21px;
  }

  .related-section > div {
    grid-template-columns: 1fr;
  }
}

/* Worlds */
.worlds-page,
.events-page,
.community-page {
  background:
    linear-gradient(180deg, rgba(5, 7, 17, .12), #090d16 760px),
    url("/homespace-night.png?v=ddbbfd739039") center top / cover fixed no-repeat;
}

.worlds-hero,
.events-hero,
.community-hero {
  width: min(1180px, calc(100% - 48px));
  margin: 24px auto 55px;
  min-height: 520px;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  align-items: center;
  gap: 55px;
}

.worlds-hero h1,
.events-hero h1,
.community-hero h1 {
  margin: 18px 0 22px;
  font-size: clamp(58px, 7vw, 96px);
  line-height: .9;
  letter-spacing: -6px;
  font-weight: 570;
}

.events-hero h1 em,
.community-hero h1 em {
  color: #67d0d4;
  font-style: normal;
}

.worlds-hero-copy > p,
.events-hero > div:first-child > p,
.community-hero-copy > p {
  max-width: 610px;
  margin: 0;
  color: #b0b3b2;
  font-size: 15px;
  line-height: 1.65;
}

.worlds-hero-actions {
  margin-top: 31px;
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
}

.worlds-hero-actions a,
.community-hero-copy > a {
  border: 2px solid #fff;
  border-radius: 999px;
  padding: 12px 20px;
  color: #fff;
  text-decoration: none;
  font-size: 12px;
  font-weight: 850;
}

.worlds-hero-actions a:first-child,
.community-hero-copy > a {
  border-color: #2faab2;
  background: #2faab2;
}

.worlds-hero-actions span,
.community-hero-copy > a span {
  margin-left: 13px;
}

.world-orbit-art {
  height: 440px;
  position: relative;
  display: grid;
  place-items: center;
}

.world-planet {
  width: 255px;
  height: 255px;
  position: relative;
  z-index: 2;
  overflow: hidden;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 26%, rgba(255,255,255,.22), transparent 18%),
    linear-gradient(145deg, #58c0c0, #276c83 55%, #142e53);
  box-shadow: 0 0 70px rgba(76,194,199,.25), inset -35px -35px 65px rgba(5,12,35,.48);
}

.world-planet .land {
  position: absolute;
  display: block;
  border-radius: 48% 52% 42% 58%;
  background: #3f8052;
  box-shadow: inset -12px -12px 20px rgba(10,40,30,.25);
}

.world-planet .land.one {
  width: 120px;
  height: 75px;
  top: 39px;
  left: -8px;
  transform: rotate(15deg);
}

.world-planet .land.two {
  width: 145px;
  height: 88px;
  right: -30px;
  bottom: 40px;
  transform: rotate(-18deg);
}

.world-planet .land.three {
  width: 62px;
  height: 48px;
  left: 78px;
  bottom: 33px;
}

.orbit-line {
  position: absolute;
  left: 50%;
  top: 50%;
  border: 1px solid rgba(129,222,224,.28);
  border-radius: 50%;
  transform: translate(-50%, -50%) rotate(-18deg);
}

.orbit-line.one {
  width: 390px;
  height: 155px;
}

.orbit-line.two {
  width: 410px;
  height: 275px;
  transform: translate(-50%, -50%) rotate(46deg);
}

.orbit-dot {
  position: absolute;
  z-index: 3;
  width: 15px;
  height: 15px;
  border: 3px solid #1c2f42;
  border-radius: 50%;
  background: #6ae0e2;
  box-shadow: 0 0 18px #6ae0e2;
}

.orbit-dot.one {
  left: 50px;
  top: 191px;
}

.orbit-dot.two {
  right: 65px;
  bottom: 98px;
  background: #dfad51;
  box-shadow: 0 0 18px #dfad51;
}

.featured-world {
  width: min(1120px, calc(100% - 48px));
  min-height: 420px;
  margin: 0 auto 95px;
  position: relative;
  z-index: 2;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
}

.featured-world-visual {
  min-height: 420px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #37245c, #9b5272 58%, #dd8a5b);
}

.featured-badge {
  position: absolute;
  z-index: 4;
  left: 24px;
  top: 24px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(14,18,25,.67);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 1.2px;
}

.featured-sky i {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: white;
  box-shadow: 70px 20px white, 180px -4px white, 290px 45px white, 390px 8px white, 500px 61px white;
}

.featured-sky i:nth-child(1) { left: 45px; top: 80px; }
.featured-sky i:nth-child(2) { left: 100px; top: 145px; opacity: .6; }
.featured-sky i:nth-child(3) { left: 210px; top: 105px; opacity: .45; }

.featured-hill {
  position: absolute;
  left: -8%;
  right: -8%;
  bottom: -42%;
  height: 75%;
  border-radius: 50% 50% 0 0;
  background:
    radial-gradient(circle at 55% 18%, rgba(248,177,80,.35), transparent 16%),
    linear-gradient(180deg, #4d6535, #1f382a);
}

.campfire-flame {
  position: absolute;
  left: 54%;
  top: 7%;
  width: 28px;
  height: 42px;
  border-radius: 65% 35% 55% 45%;
  background: #ffc45c;
  box-shadow: 0 0 35px #ff9d4c;
  transform: rotate(12deg);
}

.featured-world-copy {
  padding: clamp(35px, 5vw, 65px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.featured-world-copy > span {
  color: #65d0d4;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 1.5px;
}

.featured-world-copy h2 {
  margin: 10px 0 13px;
  font-size: 43px;
  letter-spacing: -2px;
}

.featured-world-copy > p {
  color: #9da09f;
  font-size: 12px;
  line-height: 1.65;
}

.world-facts {
  margin: 22px 0 27px;
  padding: 19px 0;
  border-top: 1px solid rgba(255,255,255,.1);
  border-bottom: 1px solid rgba(255,255,255,.1);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.world-facts b,
.world-facts small {
  display: block;
}

.world-facts b {
  font-size: 17px;
}

.world-facts small {
  margin-top: 5px;
  color: #6f7271;
  font-size: 12px;
  letter-spacing: .8px;
}

.featured-world-copy > button,
.featured-world-copy > a,
.submit-world > button,
.host-event-strip > button,
.community-cta > button,
.community-cta > a {
  align-self: flex-start;
  border: 2px solid #fff;
  border-radius: 999px;
  background: #2faab2;
  padding: 11px 18px;
  font-size: 12px;
  font-weight: 850;
  cursor: pointer;
  color: #fff;
  text-decoration: none;
}

.featured-world-copy > button span,
.featured-world-copy > a span {
  margin-left: 14px;
}

.worlds-directory,
.groups-section {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto 95px;
  position: relative;
  z-index: 2;
}

.worlds-directory-heading,
.groups-heading {
  margin-bottom: 24px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
}

.worlds-directory-heading h2,
.groups-heading h2 {
  margin: 9px 0 0;
  font-size: 39px;
  letter-spacing: -2px;
}

.world-filter-pills {
  display: flex;
  gap: 7px;
}

.world-filter-pills button {
  border: 1px solid rgba(255,255,255,.17);
  border-radius: 999px;
  background: rgba(25,26,28,.65);
  padding: 8px 13px;
  color: #9a9d9c;
  font-size: 12px;
  font-weight: 750;
  cursor: pointer;
}

.world-filter-pills button.active {
  background: #f3f3ef;
  color: #1f2021;
}

.world-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.world-card {
  overflow: hidden;
  border-radius: 20px;
  transition: transform .18s ease;
}

.world-card:hover {
  transform: translateY(-4px);
}

.world-card-visual {
  height: 190px;
  position: relative;
  overflow: hidden;
}

.world-card-visual.campfire { background: linear-gradient(180deg, #342154, #bf6e5b); }
.world-card-visual.skyline { background: linear-gradient(180deg, #152457, #694782); }
.world-card-visual.garden { background: linear-gradient(180deg, #27656b, #86a95a); }
.world-card-visual.maker { background: linear-gradient(180deg, #4a2e25, #b26c36); }
.world-card-visual.theatre { background: linear-gradient(180deg, #2b224a, #a94767); }
.world-card-visual.home { background: linear-gradient(180deg, #32235d, #765991); }

.world-card-landscape i {
  position: absolute;
  left: -15%;
  right: -15%;
  bottom: -57%;
  height: 80%;
  border-radius: 50% 50% 0 0;
  background: #1c3240;
}

.world-card-landscape i:nth-child(2) {
  left: 32%;
  right: -25%;
  bottom: -42%;
  background: #2b4639;
}

.world-card-visual > img {
  position: absolute;
  width: 55px;
  height: 55px;
  left: 50%;
  top: 45%;
  transform: translate(-50%, -50%);
  opacity: .75;
}

.world-card-visual.has-thumbnail {
  background: #12161d;
}

.world-card-visual.has-thumbnail > img {
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  transform: none;
  transition: transform .3s ease;
}

.world-card:hover .world-card-visual.has-thumbnail > img {
  transform: scale(1.035);
}

.world-card-visual.has-thumbnail::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 8, 15, .02) 45%, rgba(5, 8, 15, .58) 100%);
  pointer-events: none;
}

.world-card-visual > span {
  position: absolute;
  z-index: 2;
  right: 13px;
  top: 13px;
  padding: 6px 8px;
  border-radius: 999px;
  background: rgba(8,12,20,.58);
  font-size: 12px;
  font-weight: 750;
}

.world-card-copy {
  min-height: 155px;
  padding: 19px;
  position: relative;
}

.world-card-copy > small {
  color: #59cbd0;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.world-card-copy h3 {
  margin: 7px 0 13px;
  font-size: 20px;
}

.world-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.world-tags span {
  padding: 5px 7px;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  color: #7f8281;
  font-size: 12px;
}

.world-card-copy > button,
.world-card-copy > a,
.group-card > button,
.group-card > a {
  position: absolute;
  right: 17px;
  bottom: 17px;
  width: 31px;
  height: 31px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
  background: transparent;
  color: #fff;
  text-decoration: none;
  display: grid;
  place-items: center;
  cursor: pointer;
}

.scrapbook-section {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto 105px;
  position: relative;
  z-index: 2;
}

.scrapbook-heading {
  margin-bottom: 36px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,.13);
  display: grid;
  grid-template-columns: minmax(260px, .65fr) minmax(360px, 1fr);
  align-items: end;
  gap: 45px;
}

.scrapbook-heading h2 {
  margin: 9px 0 0;
  font-size: 39px;
  letter-spacing: -2px;
}

.scrapbook-heading p {
  max-width: 650px;
  margin: 0;
  color: #b0b4b2;
  font-size: 15px;
  line-height: 1.7;
}

.scrapbook-collections {
  display: grid;
  gap: 44px;
}

.scrapbook-collection > header {
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.scrapbook-collection > header h3 {
  margin: 0;
  color: #eef0ef;
  font-size: 20px;
}

.scrapbook-collection > header span {
  color: #7f8582;
  font-size: 13px;
}

.scrapbook-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.scrapbook-card {
  width: 100%;
  height: 190px;
  padding: 0;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 20px;
  background: #12161d;
  box-shadow: 0 8px 22px rgba(0,0,0,.18);
  cursor: zoom-in;
  appearance: none;
  transition: border-color .18s ease, transform .18s ease, box-shadow .18s ease;
}

.scrapbook-card:hover {
  border-color: rgba(103,208,212,.7);
  box-shadow: 0 12px 28px rgba(0,0,0,.34);
  transform: translateY(-4px);
}

.scrapbook-card:focus-visible {
  border-color: #67d0d4;
  outline: 3px solid #67d0d4;
  outline-offset: 3px;
}

.scrapbook-card > img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .3s ease;
}

.scrapbook-card:hover > img {
  transform: scale(1.035);
}

.scrapbook-card > span {
  width: 44px;
  height: 44px;
  position: absolute;
  right: 14px;
  bottom: 14px;
  border: 1px solid rgba(255,255,255,.4);
  border-radius: 50%;
  background: rgba(8,12,20,.76);
  display: grid;
  place-items: center;
  opacity: 0;
  transform: translateY(7px);
  transition: opacity .18s ease, transform .18s ease;
}

.scrapbook-card:hover > span,
.scrapbook-card:focus-visible > span {
  opacity: 1;
  transform: none;
}

.scrapbook-card > span img {
  width: 20px;
  height: 20px;
}

body.scrapbook-lightbox-open {
  overflow: hidden;
}

.scrapbook-lightbox {
  padding: 28px 78px;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(3,5,10,.94);
  backdrop-filter: blur(12px);
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) 52px;
  align-items: center;
  gap: 24px;
}

.scrapbook-lightbox[hidden] {
  display: none;
}

.scrapbook-lightbox figure {
  max-width: min(1320px, 100%);
  max-height: calc(100vh - 56px);
  margin: 0 auto;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  justify-items: center;
  gap: 14px;
}

.scrapbook-lightbox figure > img {
  max-width: 100%;
  max-height: calc(100vh - 115px);
  border-radius: 4px;
  object-fit: contain;
  box-shadow: 0 18px 60px rgba(0,0,0,.55);
}

.scrapbook-lightbox figcaption {
  width: 100%;
  color: #eef1ef;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.scrapbook-lightbox figcaption strong {
  font-size: 15px;
}

.scrapbook-lightbox figcaption span {
  color: #9ca19f;
  font-size: 14px;
}

.scrapbook-lightbox-close,
.scrapbook-lightbox-arrow {
  border: 2px solid rgba(255,255,255,.55);
  border-radius: 50%;
  background: rgba(17,20,24,.78);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: border-color .18s ease, background .18s ease, transform .18s ease;
}

.scrapbook-lightbox-close:hover,
.scrapbook-lightbox-arrow:hover,
.scrapbook-lightbox-close:focus-visible,
.scrapbook-lightbox-arrow:focus-visible {
  border-color: #70d9dd;
  background: #279fa7;
  outline: none;
  transform: scale(1.06);
}

.scrapbook-lightbox-close {
  width: 44px;
  height: 44px;
  position: absolute;
  top: 22px;
  right: 24px;
  font-size: 29px;
  line-height: 1;
}

.scrapbook-lightbox-arrow {
  width: 48px;
  height: 48px;
  font-family: Arial, sans-serif;
  font-size: 40px;
  line-height: 1;
}

.scrapbook-lightbox-arrow[hidden] {
  visibility: hidden;
}

@media (max-width: 980px) {
  .scrapbook-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .scrapbook-lightbox {
    padding-inline: 24px;
    grid-template-columns: 44px minmax(0, 1fr) 44px;
    gap: 12px;
  }
}

@media (max-width: 650px) {
  .scrapbook-section {
    width: calc(100% - 24px);
  }

  .scrapbook-heading {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .scrapbook-grid {
    grid-template-columns: 1fr;
  }

  .scrapbook-card {
    height: 190px;
  }

  .scrapbook-lightbox {
    padding: 70px 14px 18px;
    grid-template-columns: 1fr 1fr;
    align-items: end;
  }

  .scrapbook-lightbox figure {
    width: 100%;
    max-height: calc(100vh - 145px);
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .scrapbook-lightbox figure > img {
    max-height: calc(100vh - 195px);
  }

  .scrapbook-lightbox-arrow {
    justify-self: center;
  }

  .scrapbook-lightbox-arrow.previous {
    grid-column: 1;
  }

  .scrapbook-lightbox-arrow.next {
    grid-column: 2;
  }
}

.submit-world,
.host-event-strip {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto 100px;
  padding: 26px 30px;
  position: relative;
  z-index: 2;
  border-radius: 20px;
  background: linear-gradient(120deg, #173942, #214b4e);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
}

.submit-world > img,
.host-event-strip img {
  width: 58px;
  height: 58px;
}

.submit-world h2 {
  margin: 4px 0;
  font-size: 24px;
}

.submit-world p,
.host-event-strip p {
  margin: 0;
  color: #8eaaa9;
  font-size: 12px;
}

/* Events */
.events-hero {
  min-height: 450px;
}

.event-code-card {
  width: 100%;
  max-width: 390px;
  justify-self: end;
  padding: 25px;
  border: 1px solid rgba(255,255,255,.13);
  display: flex;
  align-items: center;
  gap: 17px;
  text-align: left;
  cursor: pointer;
}

.event-code-card:hover {
  border-color: #55cbd0;
}

.event-code-card img {
  width: 52px;
  height: 52px;
}

.event-code-card > span {
  flex: 1;
}

.event-code-card small,
.event-code-card strong {
  display: block;
}

.event-code-card small {
  margin-bottom: 5px;
  color: #69d1d4;
  font-size: 12px;
  letter-spacing: 1px;
}

.event-code-card strong {
  font-size: 16px;
}

.events-board {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto 75px;
  padding: 28px;
  position: relative;
  z-index: 2;
}

.events-board-header {
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.events-board-header > div:first-child {
  display: flex;
  align-items: center;
  gap: 8px;
}

.events-board-header strong {
  font-size: 12px;
  letter-spacing: 1.1px;
}

.events-board-header small {
  margin-left: 8px;
  color: #747776;
  font-size: 12px;
}

.eventsvr-board {
  padding: 0;
  background: #171919;
  overflow: hidden;
}

.eventsvr-board .events-board-header {
  padding: 23px 26px;
  background: #2b2e2d;
}

.eventsvr-board .events-board-header small {
  color: #a5aaa8;
  font-size: 14px;
}

.eventsvr-source-link {
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  padding: 9px 14px;
  color: #eef1f0;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .35px;
  text-decoration: none;
  transition: border-color .2s ease, background .2s ease, color .2s ease;
}

.eventsvr-source-link:hover,
.eventsvr-source-link:focus-visible {
  border-color: #65d6da;
  background: rgba(81,196,202,.12);
  color: #7ee3e6;
}

.eventsvr-source-link span {
  margin-left: 6px;
}

.eventsvr-grid {
  padding: 28px 24px 30px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px 22px;
}

.eventsvr-card {
  min-width: 0;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 3px;
  background: #111314;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,.18);
  transition: border-color .18s ease, transform .18s ease, box-shadow .18s ease;
}

.eventsvr-card:hover {
  border-color: #58d0d5;
  box-shadow: 0 10px 28px rgba(0,0,0,.38);
  transform: translateY(-3px);
}

.eventsvr-card-link {
  width: 100%;
  aspect-ratio: 16 / 9.65;
  position: relative;
  color: inherit;
  display: block;
  text-decoration: none;
}

.eventsvr-card-link:focus-visible {
  outline: 3px solid #67d9de;
  outline-offset: -3px;
}

.eventsvr-card-image {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 35% 30%, rgba(91,211,215,.25), transparent 45%),
    linear-gradient(145deg, #163039, #11151c 66%);
  display: grid;
  place-items: center;
}

.eventsvr-card-image > img:not(.eventsvr-image-placeholder) {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  z-index: 1;
  object-fit: cover;
  transition: transform .35s ease;
}

.eventsvr-card:hover .eventsvr-card-image > img:not(.eventsvr-image-placeholder) {
  transform: scale(1.025);
}

.eventsvr-image-placeholder {
  width: 58px;
  height: 58px;
  opacity: .48;
}

.eventsvr-platform {
  position: absolute;
  z-index: 2;
  top: 10px;
  right: 11px;
  text-shadow: 0 1px 5px #000, 0 1px 12px #000;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .35px;
  text-transform: uppercase;
}

.eventsvr-card-overlay {
  min-height: 62%;
  padding: 55px 12px 12px;
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(to bottom, transparent 0%, rgba(6,8,9,.64) 36%, rgba(6,8,9,.94) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.eventsvr-category {
  color: #37e5ec;
  overflow: hidden;
  font-size: 14px;
  font-weight: 650;
  line-height: 1.2;
  text-overflow: ellipsis;
  text-transform: lowercase;
  white-space: nowrap;
}

.eventsvr-card-title {
  margin-top: 2px;
  color: #fff;
  display: -webkit-box;
  overflow: hidden;
  font-size: clamp(17px, 1.45vw, 20px);
  font-weight: 650;
  line-height: 1.18;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.eventsvr-card-time {
  margin-top: 6px;
  color: #4fe7ec;
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.eventsvr-card-time i {
  width: 11px;
  height: 11px;
  flex: 0 0 11px;
  border-radius: 50%;
  background: #47dbe2;
}

.eventsvr-card-time.is-live i {
  background: #ef315f;
}

.eventsvr-card-time time {
  overflow: hidden;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.eventsvr-pagination {
  min-height: 74px;
  padding: 14px 24px 18px;
  border-top: 1px solid rgba(255,255,255,.07);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
}

.eventsvr-page-arrow {
  width: 37px;
  height: 37px;
  border: 3px solid rgba(255,255,255,.3);
  border-radius: 50%;
  background: rgba(7,9,10,.58);
  color: #fff;
  display: grid;
  place-items: center;
  font-family: Arial, sans-serif;
  font-size: 31px;
  font-weight: 400;
  line-height: 27px;
  text-decoration: none;
  transition: border-color .18s ease, background .18s ease, color .18s ease, transform .18s ease;
}

.eventsvr-page-arrow.active {
  border-color: #fff;
}

a.eventsvr-page-arrow:hover,
a.eventsvr-page-arrow:focus-visible {
  border-color: #6ad9de;
  background: #2ca8b0;
  color: #fff;
  outline: none;
  transform: scale(1.06);
}

.eventsvr-page-arrow.disabled {
  opacity: .32;
}

.eventsvr-page-dots {
  display: flex;
  align-items: center;
  gap: 10px;
}

.eventsvr-page-dots a {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #626766;
  display: block;
  transition: background .18s ease, transform .18s ease;
}

.eventsvr-page-dots a.active {
  background: #40d4da;
}

.eventsvr-page-dots a:hover,
.eventsvr-page-dots a:focus-visible {
  background: #8be9ed;
  outline: none;
  transform: scale(1.22);
}

.eventsvr-empty {
  padding: 52px 32px;
  display: grid;
  grid-template-columns: 58px 1fr auto;
  align-items: center;
  gap: 22px;
}

.eventsvr-empty > img {
  width: 58px;
  height: 58px;
}

.eventsvr-empty h2 {
  margin: 5px 0 7px;
  font-size: 24px;
}

.eventsvr-empty p {
  margin: 0;
  color: #a2a6a4;
  font-size: 15px;
}

.eventsvr-empty > a {
  border-radius: 999px;
  background: #36aeb6;
  padding: 12px 17px;
  color: #fff;
  font-size: 12px;
  font-weight: 850;
  text-decoration: none;
}

@media (max-width: 980px) {
  .eventsvr-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 650px) {
  .events-board.eventsvr-board {
    padding: 0;
  }

  .eventsvr-board .events-board-header {
    padding: 20px;
  }

  .eventsvr-board .events-board-header > div:first-child {
    flex-wrap: wrap;
  }

  .eventsvr-board .events-board-header small {
    width: 100%;
    margin: 4px 0 0 20px;
  }

  .eventsvr-grid {
    padding: 14px;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .eventsvr-card-link {
    aspect-ratio: 16 / 9.4;
  }

  .eventsvr-card-image {
    min-height: 0;
  }

  .eventsvr-empty {
    padding: 34px 22px;
    grid-template-columns: 48px 1fr;
  }

  .eventsvr-empty > a {
    grid-column: 1 / -1;
    justify-self: start;
  }
}

.event-filters {
  display: flex;
  gap: 6px;
}

.event-filters button {
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 999px;
  background: transparent;
  padding: 7px 11px;
  color: #919493;
  font-size: 12px;
  cursor: pointer;
}

.event-filters button.active {
  border-color: #fff;
  background: #fff;
  color: #1a1b1c;
}

.event-day {
  display: grid;
  grid-template-columns: 145px 1fr;
  gap: 18px;
  padding: 29px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.event-day:last-child {
  border-bottom: 0;
}

.event-day > h2 {
  margin: 13px 0 0;
  color: #7c7f7e;
  font-size: 12px;
  line-height: 1.4;
  letter-spacing: 1.1px;
}

.event-day > div {
  display: grid;
  gap: 10px;
}

.event-row {
  min-width: 0;
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 14px;
  background: rgba(13,14,15,.48);
  display: grid;
  grid-template-columns: 72px 5px minmax(180px, 1fr) auto auto;
  align-items: center;
  gap: 14px;
}

.event-row time {
  color: #acafae;
  font-size: 12px;
  font-weight: 780;
}

.event-color {
  width: 4px;
  height: 46px;
  border-radius: 5px;
  background: #55cbd0;
}

.event-color.violet { background: #9e75d2; }
.event-color.gold { background: #d7a64c; }
.event-color.blue { background: #3fa5d6; }
.event-color.green { background: #60b86c; }

.event-main > span {
  color: #59cbd0;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.event-main h3 {
  margin: 4px 0 3px;
  font-size: 14px;
}

.event-main small {
  color: #6f7271;
  font-size: 12px;
}

.event-attendance {
  display: flex;
  align-items: center;
  gap: 9px;
}

.mini-avatars {
  display: flex;
}

.mini-avatars i {
  width: 25px;
  height: 25px;
  margin-left: -5px;
  border: 2px solid #1e2021;
  border-radius: 50%;
  background: #356b78;
  display: grid;
  place-items: center;
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
}

.mini-avatars i:nth-child(2) { background: #7a4f68; }
.mini-avatars i:nth-child(3) { background: #393b3c; }

.event-attendance small {
  color: #777a79;
  font-size: 12px;
  white-space: nowrap;
}

.event-row > button,
.event-row > a {
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px;
  background: transparent;
  color: #fff;
  text-decoration: none;
  padding: 8px 10px;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

.event-row > button span,
.event-row > a span {
  margin-left: 7px;
}

.host-event-strip > div {
  display: flex;
  align-items: center;
  gap: 14px;
}

.host-event-strip small,
.host-event-strip strong {
  display: block;
}

.host-event-strip small {
  color: #6bd1d4;
  font-size: 12px;
  letter-spacing: 1px;
}

.host-event-strip strong {
  margin-top: 5px;
  font-size: 17px;
}

.event-modal-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 16px;
}

/* Community */
.community-hero-copy > a {
  display: inline-block;
  margin-top: 31px;
}

.community-constellation {
  height: 410px;
  position: relative;
  overflow: hidden;
}

.community-person {
  position: absolute;
  z-index: 3;
  border: 4px solid #2d2f30;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #3f7480;
  color: #fff;
  font-weight: 800;
  box-shadow: 0 8px 25px rgba(0,0,0,.3);
}

.community-person.main {
  width: 96px;
  height: 96px;
  left: calc(50% - 48px);
  top: 125px;
  border-color: #5bcdd1;
  font-size: 21px;
}

.community-person.p1 { width: 60px; height: 60px; left: 45px; top: 50px; background: #7c536d; }
.community-person.p2 { width: 68px; height: 68px; right: 35px; top: 62px; background: #9a7138; }
.community-person.p3 { width: 54px; height: 54px; left: 65px; bottom: 74px; background: #4e8254; }
.community-person.p4 { width: 58px; height: 58px; right: 57px; bottom: 60px; background: #343637; }

.constellation-lines i {
  position: absolute;
  z-index: 1;
  width: 150px;
  height: 1px;
  background: linear-gradient(90deg, rgba(90,203,208,.1), rgba(90,203,208,.55), rgba(90,203,208,.1));
  transform-origin: left center;
}

.constellation-lines i:nth-child(1) { left: 95px; top: 95px; transform: rotate(23deg); }
.constellation-lines i:nth-child(2) { right: 93px; top: 111px; transform: rotate(157deg); }
.constellation-lines i:nth-child(3) { left: 112px; bottom: 101px; transform: rotate(-27deg); }
.constellation-lines i:nth-child(4) { right: 105px; bottom: 90px; transform: rotate(203deg); }

.community-live {
  position: absolute;
  left: 50%;
  bottom: 21px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 9px;
  white-space: nowrap;
}

.community-live strong,
.community-live small {
  display: block;
}

.community-live strong {
  font-size: 12px;
}

.community-live small {
  margin-top: 3px;
  color: #747776;
  font-size: 12px;
}

.community-values {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto 95px;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.community-values article {
  padding: 28px;
  border-top: 1px solid rgba(255,255,255,.2);
}

.community-values article > span {
  color: #58cbd0;
  font-size: 12px;
  font-weight: 850;
}

.community-values h2 {
  margin: 21px 0 10px;
  font-size: 20px;
}

.community-values p {
  margin: 0;
  color: #8e9190;
  font-size: 12px;
  line-height: 1.6;
}

.groups-heading > a {
  margin-bottom: 7px;
  color: #aeb0af;
  text-decoration: none;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
}

.groups-heading > a span {
  margin-left: 9px;
  color: #62cfd3;
}

.group-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 13px;
}

.group-card {
  min-height: 120px;
  padding: 18px;
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  border-radius: 18px;
}

.group-avatar {
  width: 72px;
  height: 72px;
  flex: 0 0 72px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #367a7e;
  font-size: 16px;
  font-weight: 850;
}

.group-avatar.violet { background: #745a95; }
.group-avatar.green { background: #4f8057; }
.group-avatar.gold { background: #987231; }
.group-avatar.blue { background: #386f96; }
.group-avatar.amber { background: #8d5736; }

.group-card small {
  color: #5acbd0;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .8px;
  text-transform: uppercase;
}

.group-card h3 {
  margin: 6px 0 5px;
  font-size: 16px;
}

.group-card p {
  margin: 0;
  color: #727574;
  font-size: 12px;
}

.community-cta {
  width: min(930px, calc(100% - 48px));
  margin: 0 auto 95px;
  padding: 35px;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

.community-cta-icon {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: #225e63;
  display: grid;
  place-items: center;
}

.community-cta-icon img {
  width: 42px;
  height: 42px;
}

.community-cta h2 {
  margin: 5px 0;
  font-size: 27px;
}

.community-cta p {
  margin: 0;
  color: #8c8f8e;
  font-size: 12px;
}

@media (max-width: 920px) {
  .worlds-hero,
  .events-hero,
  .community-hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 55px 0;
  }

  .world-orbit-art,
  .community-constellation {
    max-width: 560px;
    width: 100%;
    justify-self: center;
  }

  .featured-world {
    grid-template-columns: 1fr;
  }

  .world-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .event-code-card {
    justify-self: start;
  }

  .event-row {
    grid-template-columns: 62px 5px minmax(170px, 1fr) auto;
  }

  .event-attendance {
    display: none;
  }

  .submit-world,
  .host-event-strip,
  .community-cta {
    grid-template-columns: auto 1fr;
  }

  .submit-world > button,
  .host-event-strip > button,
  .community-cta > button,
  .community-cta > a {
    grid-column: 2;
  }
}

.community-submit-link {
  align-self: center;
  border: 2px solid #fff;
  border-radius: 999px;
  background: #2faab2;
  padding: 11px 18px;
  color: #fff;
  text-decoration: none;
  font-size: 12px;
  font-weight: 850;
}

@media (max-width: 650px) {
  .worlds-hero,
  .events-hero,
  .community-hero,
  .featured-world,
  .worlds-directory,
  .groups-section,
  .events-board,
  .submit-world,
  .host-event-strip,
  .community-values,
  .community-cta {
    width: calc(100% - 24px);
  }

  .worlds-hero h1,
  .events-hero h1,
  .community-hero h1 {
    font-size: 58px;
    letter-spacing: -4px;
  }

  .world-orbit-art {
    height: 340px;
    transform: scale(.8);
    margin: -25px 0;
  }

  .featured-world-visual {
    min-height: 310px;
  }

  .world-filter-pills {
    display: none;
  }

  .world-card-grid,
  .group-grid,
  .community-values {
    grid-template-columns: 1fr;
  }

  .events-board {
    padding: 16px;
  }

  .events-board-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .event-filters {
    width: 100%;
    overflow-x: auto;
  }

  .event-day {
    grid-template-columns: 1fr;
  }

  .event-day > h2 {
    margin: 0;
  }

  .event-row {
    grid-template-columns: 52px 4px 1fr;
  }

  .event-row > button,
  .event-row > a {
    grid-column: 3;
    justify-self: start;
  }

  .submit-world,
  .host-event-strip,
  .community-cta {
    padding: 24px;
    grid-template-columns: 1fr;
  }

  .submit-world > img,
  .host-event-strip > div,
  .community-cta-icon {
    grid-column: 1;
  }

  .submit-world > button,
  .host-event-strip > button,
  .community-cta > button,
  .community-cta > a {
    grid-column: 1;
  }

  .community-constellation {
    height: 360px;
  }
}

/* Whole-card navigation: cards are links, arrows are clear visual cues. */
.resource-card,
.directory-card,
.world-card,
.group-card,
.blog-card,
.news-card {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

.resource-card:focus-visible,
.directory-card:focus-visible,
.world-card:focus-visible,
.group-card:focus-visible,
.pathway-card:focus-visible,
.latest-guide-list > a:focus-visible,
.blog-card:focus-visible,
.news-card:focus-visible {
  outline: 3px solid #64d7dc;
  outline-offset: 4px;
}

.card-arrow,
.directory-card .card-arrow,
.world-card .card-arrow,
.group-card .card-arrow {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, .025);
  color: #68d8dc;
  font-size: 23px;
  line-height: 1;
  transition: background .18s ease, border-color .18s ease, transform .18s ease;
}

.resource-card:hover .card-arrow,
.directory-card:hover .card-arrow,
.world-card:hover .card-arrow,
.group-card:hover .card-arrow,
.blog-card:hover .card-arrow,
.news-card:hover .card-arrow {
  border-color: #58ccd1;
  background: #2b9fa7;
  color: #fff;
  transform: translateX(3px);
}

.news-card {
  transition: transform .18s ease, border-color .18s ease;
}

.news-card:hover {
  border-color: rgba(95, 215, 220, .45);
  transform: translateY(-4px);
}

.world-card-copy > .card-arrow,
.group-card > .card-arrow {
  position: absolute;
  right: 17px;
  bottom: 17px;
}

.pathway-card > div:last-child b,
.latest-guide-list > a > b {
  min-width: 38px;
  min-height: 38px;
  border: 1px solid rgba(95, 210, 215, .32);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 21px;
  line-height: 1;
}

.blog-card {
  transition: transform .18s ease, border-color .18s ease;
}

.blog-card:hover {
  border-color: rgba(95, 215, 220, .45);
  transform: translateY(-4px);
}

.blog-card h2 {
  color: #f7f7f3;
}

.blog-card footer strong {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 12px;
}

.settings-actions > span {
  color: #70d1d5;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 1px;
}

/* Markdown content layer
   These rules only style generated content and leave the established page
   components untouched. */
.markdown-body {
  color: rgba(247, 247, 243, .84);
  font-size: 17px;
  line-height: 1.72;
}

.markdown-body > *:first-child {
  margin-top: 0;
}

.markdown-body > *:last-child {
  margin-bottom: 0;
}

.markdown-body p,
.markdown-body ul,
.markdown-body ol,
.markdown-body blockquote,
.markdown-body pre,
.markdown-body table {
  margin: 0 0 24px;
}

.markdown-body h2,
.markdown-body h3,
.markdown-body h4 {
  color: #f7f7f3;
  scroll-margin-top: 110px;
}

.markdown-body h2 {
  margin: 46px 0 14px;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.08;
  letter-spacing: -1.5px;
}

.markdown-body h3 {
  margin: 32px 0 12px;
  font-size: 24px;
}

.markdown-body a {
  color: #69dbe0;
  text-decoration: underline;
  text-decoration-color: rgba(105, 219, 224, .45);
  text-underline-offset: 4px;
}

.markdown-body a:hover {
  text-decoration-color: currentColor;
}

.markdown-body ul,
.markdown-body ol {
  padding-left: 25px;
}

.markdown-body li {
  margin: 8px 0;
  padding-left: 5px;
}

.markdown-body li::marker {
  color: #63d8de;
  font-weight: 800;
}

.markdown-body blockquote {
  border-left: 4px solid #55d3da;
  border-radius: 0 14px 14px 0;
  background: rgba(85, 211, 218, .08);
  padding: 20px 24px;
  color: #f7f7f3;
  font-size: 20px;
  line-height: 1.5;
}

.markdown-body blockquote p {
  margin: 0;
}

.markdown-body code {
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 6px;
  background: rgba(0, 0, 0, .25);
  padding: 2px 6px;
  color: #9ce8ec;
  font-size: .88em;
}

.markdown-body pre {
  overflow-x: auto;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 14px;
  background: #111419;
  padding: 20px;
}

.markdown-body pre code {
  border: 0;
  background: none;
  padding: 0;
}

.markdown-body table {
  display: block;
  width: 100%;
  overflow-x: auto;
  border-collapse: collapse;
}

.markdown-body th,
.markdown-body td {
  min-width: 145px;
  border-bottom: 1px solid rgba(255, 255, 255, .11);
  padding: 13px 15px;
  text-align: left;
}

.markdown-body th {
  color: #f7f7f3;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.markdown-post-page .post-hero-copy h1 {
  max-width: 650px;
  font-size: clamp(40px, 4.4vw, 58px);
  line-height: .98;
}

.markdown-post-page .post-hero-copy > p {
  max-width: 650px;
}

.markdown-hero-art {
  background: linear-gradient(145deg, rgba(76, 39, 113, .62), rgba(31, 38, 40, .9));
}

.accent-gold .markdown-hero-art {
  background: linear-gradient(145deg, rgba(137, 97, 24, .65), rgba(31, 38, 40, .9));
}

.accent-green .markdown-hero-art {
  background: linear-gradient(145deg, rgba(42, 111, 64, .65), rgba(31, 38, 40, .9));
}

.post-share > a {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 50%;
  color: #fff;
  text-decoration: none;
}

.markdown-post-body > p:first-child {
  color: #f7f7f3;
  font-size: 21px;
  line-height: 1.55;
}

.markdown-doc-body {
  counter-reset: markdown-section;
}

.markdown-doc-body h2 {
  position: relative;
  margin-top: 52px;
  padding-left: 56px;
  font-size: 32px;
}

.markdown-doc-body h2::before {
  counter-increment: markdown-section;
  content: counter(markdown-section, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 3px;
  color: #59d7dc;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1px;
}

.markdown-doc-body blockquote {
  border-left: 0;
  border-radius: 14px;
}

.markdown-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 80% 18%, rgba(74, 45, 132, .22), transparent 31%),
    linear-gradient(180deg, rgba(8,13,27,.2), #080d1b 760px),
    url("/homespace-night.png?v=ddbbfd739039") center top / cover fixed no-repeat;
}

.markdown-page > .markdown-page-heading,
.markdown-page > .markdown-page-shell,
.markdown-page > .site-footer {
  position: relative;
  z-index: 1;
}

.markdown-page-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  align-items: center;
  gap: 55px;
  width: min(1180px, calc(100% - 48px));
  margin: 40px auto 34px;
}

.markdown-page-heading h1 {
  max-width: 780px;
  margin: 12px 0 15px;
  color: #f7f7f3;
  font-size: clamp(46px, 5vw, 68px);
  line-height: .98;
  letter-spacing: -3px;
}

.markdown-page-heading p {
  max-width: 700px;
  margin: 0;
  color: rgba(247, 247, 243, .72);
  font-size: 18px;
  line-height: 1.55;
}

.markdown-page-icon {
  display: grid;
  min-height: 190px;
  place-items: center;
  border-radius: 28px;
}

.markdown-page-icon img {
  width: 82px;
  height: 82px;
}

.markdown-page-shell {
  display: grid;
  grid-template-columns: 250px minmax(0, 790px);
  align-items: start;
  gap: 26px;
  width: min(1080px, calc(100% - 48px));
  margin: 0 auto 80px;
}

.markdown-page-nav {
  position: sticky;
  top: 24px;
  display: grid;
  gap: 6px;
  padding: 25px;
  border-radius: 24px;
}

.markdown-page-nav > strong {
  margin-bottom: 8px;
  color: #61d7dc;
  font-size: 12px;
  letter-spacing: 1.4px;
}

.markdown-page-nav a {
  border-radius: 9px;
  padding: 9px 10px;
  color: rgba(247, 247, 243, .68);
  font-size: 14px;
  text-decoration: none;
}

.markdown-page-nav a:hover {
  background: rgba(255, 255, 255, .06);
  color: #fff;
}

.markdown-page-nav a:last-child {
  display: flex;
  justify-content: space-between;
  margin-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  border-radius: 0;
  padding-top: 18px;
  color: #fff;
  font-weight: 800;
}

.markdown-page-content {
  padding: clamp(30px, 5vw, 64px);
  border-radius: 28px;
}

.markdown-page-content > footer {
  display: flex;
  justify-content: space-between;
  margin-top: 48px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding-top: 20px;
  color: rgba(247, 247, 243, .48);
  font-size: 12px;
  letter-spacing: 1px;
}

.markdown-page-content > footer strong {
  color: rgba(247, 247, 243, .8);
}

@media (max-width: 900px) {
  .markdown-page-heading {
    grid-template-columns: 1fr 180px;
  }

  .markdown-page-shell {
    grid-template-columns: 1fr;
  }

  .markdown-page-nav {
    position: static;
  }
}

@media (max-width: 650px) {
  .markdown-body {
    font-size: 16px;
  }

  .markdown-body h2 {
    font-size: 29px;
  }

  .markdown-post-page .post-hero-copy h1 {
    font-size: clamp(40px, 12vw, 52px);
  }

  .markdown-doc-body h2 {
    padding-left: 44px;
  }

  .markdown-page-heading {
    grid-template-columns: 1fr;
    width: min(100% - 30px, 1180px);
    margin-top: 24px;
  }

  .markdown-page-heading h1 {
    font-size: clamp(40px, 12vw, 54px);
    letter-spacing: -2px;
  }

  .markdown-page-icon {
    display: none;
  }

  .markdown-page-shell {
    width: min(100% - 30px, 1080px);
  }

  .markdown-page-content {
    padding: 28px 22px;
  }
}

/* Guide library */
.guides-page,
.world-detail-page,
.event-detail-page {
  background:
    linear-gradient(180deg, rgba(5, 7, 17, .12), #090d16 760px),
    url("/homespace-night.png?v=ddbbfd739039") center top / cover fixed no-repeat;
}

.guides-hero {
  width: min(1120px, calc(100% - 48px));
  min-height: 520px;
  margin: 25px auto 70px;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr .85fr;
  gap: 70px;
  align-items: center;
}

.guides-hero h1 {
  margin: 17px 0;
  font-size: clamp(61px, 7vw, 94px);
  line-height: .9;
  letter-spacing: -5.8px;
  font-weight: 570;
}

.guides-hero > div:first-child > p {
  max-width: 570px;
  margin: 0;
  color: #afb2b1;
  font-size: 15px;
  line-height: 1.65;
}

.guides-search {
  max-width: 520px;
  height: 54px;
  margin-top: 29px;
  padding-left: 18px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 999px;
  background: rgba(22,23,25,.74);
  display: flex;
  align-items: center;
  gap: 15px;
}

.guides-search input {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: #fff;
  font-size: 12px;
}

.guides-search button {
  align-self: stretch;
  border: 2px solid #fff;
  border-radius: 999px;
  background: #2faab2;
  padding: 0 20px;
  font-size: 12px;
  font-weight: 850;
  cursor: pointer;
}

.guides-book-art {
  height: 370px;
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
}

.guide-page {
  position: absolute;
  top: 82px;
  width: 152px;
  height: 200px;
  background: linear-gradient(135deg, #f3e4bf, #cdb783);
  box-shadow: 0 20px 45px rgba(0,0,0,.38);
}

.guide-page.left {
  left: calc(50% - 155px);
  border-radius: 8px 2px 4px 12px;
  transform: perspective(500px) rotateY(17deg);
}

.guide-page.right {
  right: calc(50% - 155px);
  border-radius: 2px 8px 12px 4px;
  transform: perspective(500px) rotateY(-17deg);
}

.guide-page i {
  display: block;
  width: 68%;
  height: 3px;
  margin: 19px auto 0;
  border-radius: 3px;
  background: rgba(69,60,46,.22);
  box-shadow: 0 16px rgba(69,60,46,.17), 0 32px rgba(69,60,46,.17);
}

.guide-spine {
  width: 11px;
  height: 218px;
  position: absolute;
  z-index: 3;
  top: 74px;
  left: calc(50% - 5px);
  border-radius: 50%;
  background: #8d7d5d;
  box-shadow: 0 4px 13px rgba(0,0,0,.25);
}

.guides-book-art > img {
  position: absolute;
  z-index: 4;
  width: 82px;
  height: 82px;
  top: 132px;
  left: calc(50% - 41px);
  filter: drop-shadow(0 7px 10px rgba(0,0,0,.25));
}

.guides-book-art > span {
  position: absolute;
  bottom: 26px;
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(54,145,150,.17);
  color: #7ddcdf;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 1.2px;
}

.guide-pathways,
.latest-guides,
.guide-help-strip {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto 90px;
  position: relative;
  z-index: 2;
}

.guide-section-heading {
  margin-bottom: 25px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 25px;
}

.guide-section-heading h2 {
  margin: 8px 0 0;
  font-size: 39px;
  letter-spacing: -2px;
}

.guide-section-heading > p {
  max-width: 300px;
  margin: 0 0 5px;
  color: #838685;
  font-size: 12px;
  line-height: 1.5;
}

.pathway-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.pathway-card {
  min-height: 330px;
  padding: 27px;
  position: relative;
  color: #fff;
  text-decoration: none;
  transition: transform .18s ease, border-color .18s ease;
}

.pathway-card:hover {
  transform: translateY(-5px);
  border-color: rgba(94,209,213,.5);
}

.pathway-icon {
  width: 68px;
  height: 68px;
  margin-bottom: 35px;
  border-radius: 17px;
  display: grid;
  place-items: center;
  background: #285e65;
}

.pathway-card.green .pathway-icon { background: #315f3b; }
.pathway-card.gold .pathway-icon { background: #765925; }

.pathway-icon img {
  width: 42px;
  height: 42px;
}

.pathway-card > span {
  color: #5dccd0;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 1.2px;
}

.pathway-card.green > span { color: #79ce86; }
.pathway-card.gold > span { color: #e1b258; }

.pathway-card h3 {
  margin: 8px 0 11px;
  font-size: 23px;
  letter-spacing: -.8px;
}

.pathway-card > p {
  margin: 0;
  color: #8d908f;
  font-size: 12px;
  line-height: 1.6;
}

.pathway-card > div:last-child {
  position: absolute;
  left: 27px;
  right: 27px;
  bottom: 24px;
  padding-top: 17px;
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.pathway-card > div:last-child small {
  color: #6f7271;
  font-size: 12px;
}

.pathway-card > div:last-child b {
  color: #67d0d4;
}

.latest-guides {
  padding: 30px;
  border-radius: 24px;
}

.latest-guides > header {
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255,255,255,.1);
  display: flex;
  align-items: end;
  justify-content: space-between;
}

.latest-guides h2 {
  margin: 7px 0 0;
  font-size: 34px;
  letter-spacing: -1.6px;
}

.latest-guides > header > span {
  margin-bottom: 5px;
  color: #6e7170;
  font-size: 12px;
  letter-spacing: 1px;
}

.latest-guide-list > a {
  min-height: 105px;
  padding: 18px 5px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr) 60px 25px;
  align-items: center;
  gap: 17px;
  color: #fff;
  text-decoration: none;
}

.latest-guide-list > a:last-child {
  border-bottom: 0;
}

.latest-guide-list > a:hover h3 {
  color: #68d1d5;
}

.guide-index {
  color: #4bc4c9;
  font-size: 12px;
  font-weight: 850;
}

.latest-guide-list small {
  color: #55c8cc;
  font-size: 12px;
  letter-spacing: .9px;
}

.latest-guide-list h3 {
  margin: 5px 0;
  font-size: 16px;
}

.latest-guide-list p {
  margin: 0;
  color: #777a79;
  font-size: 12px;
}

.guide-time {
  color: #777a79;
  font-size: 12px;
  text-align: right;
}

.latest-guide-list > a > b {
  color: #57cbd0;
}

.guide-help-strip {
  padding: 25px 29px;
  border-radius: 19px;
  background: linear-gradient(120deg, #2a244a, #4d3262);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
}

.guide-help-strip > span {
  width: 55px;
  height: 55px;
  border: 2px solid rgba(255,255,255,.6);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 23px;
}

.guide-help-strip small {
  color: #c49fe1;
  font-size: 12px;
  letter-spacing: 1px;
}

.guide-help-strip h2 {
  margin: 4px 0;
  font-size: 21px;
}

.guide-help-strip p {
  margin: 0;
  color: #a88cb9;
  font-size: 12px;
}

.guide-help-strip a {
  border: 2px solid #fff;
  border-radius: 999px;
  padding: 10px 16px;
  color: #fff;
  text-decoration: none;
  font-size: 12px;
  font-weight: 850;
}

/* World profile */
.world-detail-hero,
.world-detail-grid,
.world-gallery-section,
.world-accessibility {
  width: min(1120px, calc(100% - 48px));
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 2;
}

.world-detail-hero {
  margin-top: 25px;
  margin-bottom: 25px;
  overflow: hidden;
}

.world-detail-scene {
  height: 540px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #12123b, #3f275e 48%, #b25c64 78%, #d5865c);
}

.campfire-stars i {
  position: absolute;
  width: 3px;
  height: 3px;
  left: 70px;
  top: 70px;
  border-radius: 50%;
  background: white;
  box-shadow: 100px 30px white, 220px -15px white, 360px 50px white, 510px 0 white, 680px 45px white, 810px -22px white, 940px 31px white;
}

.campfire-stars i:nth-child(2) { left: 125px; top: 150px; opacity: .65; }
.campfire-stars i:nth-child(3) { left: 280px; top: 105px; opacity: .4; }

.campfire-moon {
  position: absolute;
  width: 120px;
  height: 120px;
  right: 130px;
  top: 76px;
  border-radius: 50%;
  background: #ffd98a;
  box-shadow: 0 0 55px rgba(255,208,128,.5);
}

.campfire-mountain {
  position: absolute;
  bottom: 90px;
  width: 650px;
  height: 300px;
  background: #17233d;
  clip-path: polygon(0 100%, 43% 0, 100% 100%);
}

.campfire-mountain.one { left: -170px; }
.campfire-mountain.two { right: -210px; height: 350px; background: #111b35; }

.campfire-ground {
  position: absolute;
  left: -8%;
  right: -8%;
  bottom: -42%;
  height: 72%;
  border-radius: 50% 50% 0 0;
  background: linear-gradient(180deg, #435637, #162921);
}

.detail-flame {
  position: absolute;
  left: calc(50% - 22px);
  top: 22px;
  width: 45px;
  height: 68px;
  border-radius: 65% 35% 55% 45%;
  background: #ffb647;
  box-shadow: 0 0 55px #ff9449;
  transform: rotate(8deg);
}

.detail-flame i {
  position: absolute;
  width: 18px;
  height: 36px;
  left: 13px;
  bottom: 6px;
  border-radius: 65% 35% 55% 45%;
  background: #fff09b;
}

.detail-log {
  position: absolute;
  left: calc(50% - 45px);
  top: 83px;
  width: 90px;
  height: 13px;
  border-radius: 9px;
  background: #4d2b22;
}

.detail-log.one { transform: rotate(18deg); }
.detail-log.two { transform: rotate(-18deg); }

.detail-rock {
  position: absolute;
  top: 85px;
  width: 35px;
  height: 22px;
  border-radius: 50% 50% 35% 35%;
  background: #766170;
}

.detail-rock.r1 { left: calc(50% - 78px); }
.detail-rock.r2 { left: calc(50% + 48px); }
.detail-rock.r3 { left: calc(50% - 18px); top: 113px; }

.world-detail-overlay {
  position: absolute;
  inset: 0;
}

.world-live-pill {
  position: absolute;
  right: 23px;
  top: 23px;
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(10,15,25,.66);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .8px;
}

.world-detail-title {
  padding: 31px 39px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 25px;
}

.world-detail-breadcrumbs,
.event-detail-breadcrumbs {
  display: flex;
  gap: 8px;
  color: #777a79;
  font-size: 12px;
}

.world-detail-breadcrumbs a,
.event-detail-breadcrumbs a {
  color: #60cdd1;
  text-decoration: none;
}

.world-detail-title h1 {
  margin: 8px 0 6px;
  font-size: 48px;
  letter-spacing: -2.5px;
}

.world-detail-title p {
  margin: 0;
  color: #8d908f;
  font-size: 12px;
}

.world-detail-title button {
  border: 2px solid #fff;
  border-radius: 999px;
  background: #2faab2;
  padding: 12px 19px;
  font-size: 12px;
  font-weight: 850;
  cursor: pointer;
}

.world-detail-title button span {
  margin-left: 14px;
}

.world-detail-grid {
  margin-bottom: 80px;
  display: grid;
  grid-template-columns: 1fr 330px;
  gap: 18px;
}

.world-about,
.world-info-panel {
  padding: 42px;
  border-radius: 21px;
}

.world-about h2 {
  margin: 9px 0 15px;
  font-size: 32px;
  letter-spacing: -1.3px;
}

.world-about > p {
  color: #a0a3a2;
  font-size: 12px;
  line-height: 1.75;
}

.world-feature-chips {
  margin-top: 25px;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.world-feature-chips span {
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(77,194,199,.09);
  color: #6cd2d5;
  font-size: 12px;
}

.world-info-panel dl {
  margin: 24px 0;
}

.world-info-panel dl > div {
  padding: 11px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  display: flex;
  justify-content: space-between;
  gap: 15px;
  font-size: 12px;
}

.world-info-panel dt {
  color: #747776;
}

.world-info-panel dd {
  margin: 0;
  color: #c4c6c5;
}

.world-info-panel > a {
  display: block;
  padding: 11px 0;
  color: #60cdd1;
  text-decoration: none;
  font-size: 12px;
  font-weight: 800;
}

.world-info-panel > a span {
  float: right;
}

.world-gallery-section {
  margin-bottom: 80px;
}

.world-gallery-section > div:first-child h2 {
  margin: 8px 0 22px;
  font-size: 37px;
}

.world-gallery {
  height: 390px;
  display: grid;
  grid-template-columns: 1.4fr .8fr;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
}

.gallery-shot {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: linear-gradient(180deg, #35245a, #bd675c 60%, #314934);
}

.gallery-shot::before {
  content: "";
  position: absolute;
  left: -15%;
  right: -15%;
  bottom: -46%;
  height: 75%;
  border-radius: 50% 50% 0 0;
  background: #263b2f;
}

.gallery-shot.wide {
  grid-row: 1 / 3;
}

.gallery-shot.overlook {
  background: linear-gradient(180deg, #15264f, #537b83 62%, #223b35);
}

.gallery-shot.night {
  background: linear-gradient(180deg, #111238, #4a2d64 68%, #252e37);
}

.gallery-shot span {
  position: absolute;
  left: 17px;
  bottom: 15px;
  z-index: 2;
  padding: 6px 8px;
  border-radius: 7px;
  background: rgba(8,12,20,.56);
  font-size: 12px;
}

.world-accessibility {
  margin-bottom: 90px;
  padding: 29px 34px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
}

.world-accessibility > img {
  width: 57px;
  height: 57px;
}

.world-accessibility h2 {
  margin: 4px 0;
  font-size: 24px;
}

.world-accessibility p {
  margin: 0;
  color: #858887;
  font-size: 12px;
}

.world-accessibility > a {
  border: 2px solid #fff;
  border-radius: 999px;
  padding: 10px 15px;
  color: #fff;
  text-decoration: none;
  font-size: 12px;
  font-weight: 800;
}

/* Event profile */
.event-detail-hero,
.event-detail-content,
.more-events-strip {
  width: min(1120px, calc(100% - 48px));
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 2;
}

.event-detail-hero {
  min-height: 570px;
  margin-top: 25px;
  margin-bottom: 30px;
  display: grid;
  grid-template-columns: 1fr 390px;
  gap: 60px;
  align-items: center;
}

.event-status {
  width: fit-content;
  margin-top: 27px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(51,145,82,.25);
  color: #77e097;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 1px;
}

.event-detail-copy h1 {
  margin: 16px 0 21px;
  font-size: clamp(62px, 7vw, 94px);
  line-height: .88;
  letter-spacing: -6px;
  font-weight: 570;
}

.event-detail-copy h1 em {
  color: #67d0d4;
  font-style: normal;
}

.event-detail-copy > p {
  max-width: 600px;
  color: #aeb1b0;
  font-size: 14px;
  line-height: 1.65;
}

.event-host {
  margin-top: 29px;
  display: flex;
  align-items: center;
  gap: 11px;
}

.event-host > span {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #397681;
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 850;
}

.event-host small,
.event-host strong {
  display: block;
}

.event-host small {
  color: #717473;
  font-size: 12px;
  letter-spacing: 1px;
}

.event-host strong {
  margin-top: 4px;
  font-size: 12px;
}

.event-ticket {
  overflow: hidden;
}

.event-ticket-date {
  padding: 28px;
  background: linear-gradient(130deg, #226d91, #2caab2);
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.event-ticket-date > span,
.event-ticket-date > small {
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 1px;
}

.event-ticket-date > strong {
  font-size: 57px;
  line-height: 1;
  letter-spacing: -3px;
}

.event-ticket-date > small {
  margin-left: auto;
  opacity: .7;
}

.event-ticket-info {
  padding: 14px 27px 5px;
}

.event-ticket-info > div {
  padding: 15px 0;
  border-bottom: 1px solid rgba(255,255,255,.09);
}

.event-ticket-info small,
.event-ticket-info strong,
.event-ticket-info span,
.event-ticket-info a {
  display: block;
}

.event-ticket-info small {
  color: #5dcbd0;
  font-size: 12px;
  letter-spacing: .9px;
}

.event-ticket-info strong {
  margin-top: 5px;
  font-size: 13px;
}

.event-ticket-info span,
.event-ticket-info a {
  margin-top: 4px;
  color: #777a79;
  text-decoration: none;
  font-size: 12px;
}

.event-ticket > button {
  width: calc(100% - 54px);
  margin: 21px 27px 8px;
  border: 2px solid #fff;
  border-radius: 999px;
  background: #2faab2;
  padding: 13px;
  font-size: 12px;
  font-weight: 850;
  cursor: pointer;
}

.event-ticket > button.going {
  background: #397d4a;
}

.event-ticket > p {
  margin: 0 27px 25px;
  color: #747776;
  text-align: center;
  font-size: 12px;
}

.event-detail-content {
  margin-bottom: 85px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  gap: 18px;
  align-items: start;
}

.event-description {
  padding: clamp(35px, 5vw, 62px);
}

.event-description > h2 {
  margin: 10px 0 16px;
  font-size: 34px;
  letter-spacing: -1.5px;
}

.event-description > p {
  color: #a3a6a5;
  font-size: 12px;
  line-height: 1.75;
}

.event-description > h3 {
  margin: 39px 0 15px;
  font-size: 20px;
}

.event-description > ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 9px;
}

.event-description > ul li {
  padding: 14px;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 12px;
  display: flex;
  gap: 13px;
}

.event-description > ul li > span {
  color: #58cbd0;
  font-size: 12px;
  font-weight: 850;
}

.event-description li strong {
  font-size: 12px;
}

.event-description li p {
  margin: 4px 0 0;
  color: #777a79;
  font-size: 12px;
}

.event-note {
  margin-top: 27px;
  padding: 15px;
  border-left: 3px solid #d7a64c;
  border-radius: 4px 10px 10px 4px;
  background: rgba(126,86,24,.1);
  display: flex;
  align-items: center;
  gap: 12px;
}

.event-note > span {
  width: 23px;
  height: 23px;
  border: 1px solid #d7a64c;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #e3b760;
  font-size: 12px;
}

.event-note p {
  margin: 0;
  color: #908775;
  font-size: 12px;
  line-height: 1.5;
}

.event-detail-rail {
  display: grid;
  gap: 15px;
}

.attendee-panel,
.event-ready-panel {
  padding: 24px;
  border-radius: 19px;
}

.attendee-panel > div:first-child {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.attendee-panel > div:first-child > strong {
  font-size: 12px;
}

.attendee-grid {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.attendee-grid span {
  aspect-ratio: 1;
  border-radius: 50%;
  background: #39727c;
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 800;
}

.attendee-grid span:nth-child(2) { background: #754f68; }
.attendee-grid span:nth-child(3) { background: #91703d; }
.attendee-grid span:nth-child(4) { background: #4b7b52; }
.attendee-grid span:nth-child(5) { background: #4b5680; }
.attendee-grid span:nth-child(6) { background: #343637; }

.event-ready-panel img {
  width: 48px;
  height: 48px;
}

.event-ready-panel h3 {
  margin: 17px 0 7px;
  font-size: 19px;
}

.event-ready-panel p {
  color: #7e8180;
  font-size: 12px;
  line-height: 1.5;
}

.event-ready-panel a {
  display: block;
  margin-top: 17px;
  color: #5bcbd0;
  text-decoration: none;
  font-size: 12px;
  font-weight: 800;
}

.more-events-strip {
  margin-bottom: 90px;
  padding: 26px 0;
  border-top: 1px solid rgba(255,255,255,.14);
  border-bottom: 1px solid rgba(255,255,255,.14);
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
}

.more-events-strip h2 {
  margin: 6px 0 0;
  font-size: 29px;
}

.more-events-strip > a {
  color: #b3b5b4;
  text-decoration: none;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 1px;
}

.more-events-strip > a span {
  margin-left: 10px;
  color: #62cfd3;
}

@media (max-width: 850px) {
  .guides-hero,
  .event-detail-hero {
    grid-template-columns: 1fr;
  }

  .guides-book-art {
    width: 100%;
    max-width: 580px;
    justify-self: center;
  }

  .pathway-grid {
    grid-template-columns: 1fr;
  }

  .pathway-card {
    min-height: 285px;
  }

  .world-detail-grid,
  .event-detail-content {
    grid-template-columns: 1fr;
  }

  .event-detail-rail {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 620px) {
  .guides-hero,
  .guide-pathways,
  .latest-guides,
  .guide-help-strip,
  .world-detail-hero,
  .world-detail-grid,
  .world-gallery-section,
  .world-accessibility,
  .event-detail-hero,
  .event-detail-content,
  .more-events-strip {
    width: calc(100% - 24px);
  }

  .guides-hero h1,
  .event-detail-copy h1 {
    font-size: 59px;
    letter-spacing: -4px;
  }

  .guides-search button {
    padding: 0 13px;
  }

  .guide-section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .latest-guides {
    padding: 19px;
  }

  .latest-guide-list > a {
    grid-template-columns: 32px 1fr 20px;
  }

  .guide-time {
    display: none;
  }

  .guide-help-strip,
  .world-accessibility {
    grid-template-columns: 1fr;
  }

  .world-detail-scene {
    height: 400px;
  }

  .world-detail-title {
    align-items: flex-start;
    flex-direction: column;
  }

  .world-detail-title h1 {
    font-size: 39px;
  }

  .world-about,
  .world-info-panel {
    padding: 29px 24px;
  }

  .world-gallery {
    height: auto;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 210px);
  }

  .gallery-shot.wide {
    grid-row: auto;
  }

  .event-detail-hero {
    gap: 30px;
  }

  .event-detail-rail {
    grid-template-columns: 1fr;
  }

  .more-events-strip {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* News hub */
.news-page,
.about-page,
.contact-page {
  background:
    linear-gradient(180deg, rgba(5, 7, 17, .12), #090d16 760px),
    url("/homespace-night.png?v=ddbbfd739039") center top / cover fixed no-repeat;
}

.news-hero,
.about-hero,
.contact-shell {
  width: min(1120px, calc(100% - 48px));
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 2;
}

.news-hero {
  min-height: 460px;
  margin-top: 25px;
  margin-bottom: 48px;
  display: grid;
  grid-template-columns: 1fr 340px;
  align-items: center;
  gap: 65px;
}

.news-hero h1,
.about-hero h1,
.contact-intro h1 {
  margin: 16px 0 20px;
  font-size: clamp(60px, 7vw, 94px);
  line-height: .9;
  letter-spacing: -5.7px;
  font-weight: 570;
}

.news-hero > div:first-child > p,
.about-hero > div:last-child > p,
.contact-intro > p {
  max-width: 610px;
  margin: 0;
  color: #afb2b1;
  font-size: 14px;
  line-height: 1.7;
}

.news-signal {
  height: 300px;
  padding: 30px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.news-signal-rings {
  position: absolute;
  left: 50%;
  top: 41%;
  transform: translate(-50%, -50%);
}

.news-signal-rings i {
  position: absolute;
  left: 50%;
  top: 50%;
  border: 1px solid rgba(91,204,209,.25);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.news-signal-rings i:nth-child(1) { width: 80px; height: 80px; }
.news-signal-rings i:nth-child(2) { width: 145px; height: 145px; }
.news-signal-rings i:nth-child(3) { width: 220px; height: 220px; }

.news-signal-rings span {
  width: 14px;
  height: 14px;
  position: absolute;
  left: -7px;
  top: -7px;
  border-radius: 50%;
  background: #61d3d7;
  box-shadow: 0 0 22px #61d3d7;
}

.news-signal > strong {
  font-size: 12px;
  letter-spacing: 1.1px;
}

.news-signal > small {
  max-width: 235px;
  margin-top: 7px;
  color: #777a79;
  font-size: 12px;
  line-height: 1.5;
}

.featured-story {
  width: min(1120px, calc(100% - 48px));
  min-height: 430px;
  margin: 0 auto 85px;
  position: relative;
  z-index: 2;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
}

.featured-story-art {
  min-height: 430px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #1b174a, #60417d 50%, #d17b67);
}

.story-sky-lines i {
  position: absolute;
  left: -15%;
  top: 45px;
  width: 130%;
  height: 90px;
  border: 1px solid rgba(191,151,242,.25);
  border-radius: 50%;
  transform: rotate(-7deg);
}

.story-sky-lines i:nth-child(2) { top: 100px; transform: rotate(5deg); }
.story-sky-lines i:nth-child(3) { top: 150px; transform: rotate(-3deg); opacity: .55; }

.story-horizon {
  position: absolute;
  left: -10%;
  right: -10%;
  bottom: -38%;
  height: 66%;
  border-radius: 50% 50% 0 0;
  background: linear-gradient(180deg, #405b36, #1c3028);
}

.featured-story-art > img {
  position: absolute;
  width: 115px;
  height: 100px;
  left: 50%;
  top: 47%;
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 10px 24px rgba(0,0,0,.35));
}

.featured-story-art > span {
  position: absolute;
  left: 22px;
  top: 22px;
  padding: 7px 9px;
  border-radius: 999px;
  background: rgba(9,13,22,.6);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 1px;
}

.featured-story-copy {
  padding: clamp(37px, 5vw, 65px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.featured-story-copy > span {
  color: #58cbd0;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 1.1px;
}

.featured-story-copy h2 {
  margin: 11px 0 15px;
  font-size: 37px;
  line-height: 1.05;
  letter-spacing: -1.9px;
}

.featured-story-copy > p {
  color: #969998;
  font-size: 12px;
  line-height: 1.65;
}

.featured-story-copy > div {
  margin-top: 25px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.featured-story-copy > div small {
  color: #707372;
  font-size: 12px;
}

.featured-story-copy > div a {
  color: #fff;
  text-decoration: none;
  font-size: 12px;
  font-weight: 850;
}

.featured-story-copy > div b {
  margin-left: 10px;
  color: #5dccd0;
}

.news-feed,
.news-subscribe {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto 90px;
  position: relative;
  z-index: 2;
}

.news-feed > header {
  margin-bottom: 23px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
}

.news-feed h2 {
  margin: 8px 0 0;
  font-size: 37px;
  letter-spacing: -1.8px;
}

.news-feed nav {
  display: flex;
  gap: 6px;
}

.news-feed nav button {
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 999px;
  background: rgba(20,21,23,.55);
  padding: 7px 11px;
  color: #898c8b;
  font-size: 12px;
  cursor: pointer;
}

.news-feed nav button.active {
  background: #fff;
  color: #1d1e1f;
}

.news-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.news-card {
  overflow: hidden;
  display: grid;
  grid-template-columns: 175px 1fr;
  border-radius: 19px;
}

.news-card-art {
  min-height: 220px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #2c8d93, #1f3c52);
}

.news-card-art.violet { background: linear-gradient(160deg, #79549c, #33284e); }
.news-card-art.amber { background: linear-gradient(160deg, #a66b37, #493126); }
.news-card-art.blue { background: linear-gradient(160deg, #327fa6, #1e3a59); }

.news-card-art > span {
  position: absolute;
  left: 14px;
  top: 14px;
  z-index: 2;
  color: rgba(255,255,255,.75);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 1px;
}

.news-card-orbit {
  position: absolute;
  width: 130px;
  height: 130px;
  left: 50%;
  top: 50%;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.news-card-orbit::before,
.news-card-orbit::after {
  content: "";
  position: absolute;
  inset: 19px -16px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
  transform: rotate(55deg);
}

.news-card-orbit::after {
  transform: rotate(-55deg);
}

.news-card-orbit i {
  position: absolute;
  width: 13px;
  height: 13px;
  left: 8px;
  top: 17px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 15px rgba(255,255,255,.7);
}

.news-card-copy {
  padding: 21px;
}

.news-card-copy > small {
  color: #6e7170;
  font-size: 12px;
}

.news-card-copy h3 {
  margin: 8px 0 8px;
  font-size: 17px;
  line-height: 1.25;
}

.news-card-copy > p {
  margin: 0;
  color: #838685;
  font-size: 12px;
  line-height: 1.55;
}

.news-card-copy > div {
  margin-top: 18px;
  padding-top: 13px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.news-card-copy > div > span {
  color: #707372;
  font-size: 12px;
}

.news-card-copy > div a {
  width: 29px;
  height: 29px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  text-decoration: none;
}

.news-subscribe {
  padding: 31px 35px;
  border-radius: 20px;
  background: linear-gradient(120deg, #173a43, #25575a);
  display: grid;
  grid-template-columns: 1fr 410px;
  align-items: center;
  gap: 35px;
}

.news-subscribe h2 {
  margin: 5px 0;
  font-size: 24px;
}

.news-subscribe p {
  margin: 0;
  color: #8caaa8;
  font-size: 12px;
}

.news-subscribe form {
  height: 45px;
  display: flex;
}

.news-subscribe input {
  flex: 1;
  min-width: 0;
  border: 0;
  border-radius: 999px 0 0 999px;
  background: rgba(10,19,23,.55);
  color: #fff;
  padding: 0 17px;
  font-size: 12px;
}

.news-subscribe button {
  border: 2px solid #fff;
  border-radius: 0 999px 999px 0;
  background: #2faab2;
  padding: 0 20px;
  font-size: 12px;
  font-weight: 850;
}

/* About */
.about-hero {
  min-height: 540px;
  margin-top: 20px;
  margin-bottom: 60px;
  display: grid;
  grid-template-columns: 370px 1fr;
  align-items: center;
  gap: 75px;
}

.about-hero-mark {
  height: 370px;
  position: relative;
  display: grid;
  place-items: center;
}

.about-hero-mark > img {
  width: 125px;
  height: 112px;
  position: relative;
  z-index: 3;
}

.about-mark-rings {
  position: absolute;
  left: 50%;
  top: 50%;
}

.about-mark-rings i {
  position: absolute;
  left: 50%;
  top: 50%;
  border: 1px solid rgba(84,202,207,.25);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.about-mark-rings i:nth-child(1) { width: 180px; height: 180px; }
.about-mark-rings i:nth-child(2) { width: 270px; height: 270px; }
.about-mark-rings i:nth-child(3) { width: 360px; height: 360px; }

.about-mission,
.about-principles,
.about-independence,
.about-roadmap,
.about-cta {
  width: min(1040px, calc(100% - 48px));
  margin: 0 auto 85px;
  position: relative;
  z-index: 2;
}

.about-mission {
  padding: 45px;
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 45px;
}

.about-mission aside {
  padding-right: 30px;
  border-right: 1px solid rgba(255,255,255,.1);
}

.about-mission aside span,
.about-mission aside strong {
  display: block;
}

.about-mission aside span {
  color: #5dccd0;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 1px;
}

.about-mission aside strong {
  margin-top: 40px;
  color: #383b3a;
  font-size: 65px;
}

.about-mission h2 {
  margin: 0 0 14px;
  font-size: 32px;
  letter-spacing: -1.3px;
}

.about-mission p {
  margin: 0;
  color: #9da09f;
  font-size: 12px;
  line-height: 1.75;
}

.about-principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.about-principles article {
  padding: 29px;
  border-top: 1px solid rgba(255,255,255,.18);
}

.principle-icon {
  width: 49px;
  height: 49px;
  margin-bottom: 30px;
  border: 1px solid rgba(99,207,211,.4);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #67d0d4;
  font-size: 23px;
}

.about-principles small {
  color: #58cbd0;
  font-size: 12px;
  letter-spacing: 1px;
}

.about-principles h2 {
  margin: 8px 0 10px;
  font-size: 20px;
}

.about-principles p {
  color: #858887;
  font-size: 12px;
  line-height: 1.6;
}

.about-independence {
  padding: 41px;
  border: 2px solid #dbac55;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 35px;
}

.independence-label {
  display: flex;
  align-items: center;
  gap: 13px;
}

.independence-label img {
  width: 45px;
  height: 42px;
}

.independence-label span {
  color: #e0b15c;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 1px;
}

.about-independence h2 {
  margin: 0 0 11px;
  font-size: 29px;
}

.about-independence p {
  margin: 0;
  color: #a39b8b;
  font-size: 12px;
  line-height: 1.65;
}

.about-roadmap > div:first-child h2 {
  margin: 8px 0 25px;
  font-size: 36px;
}

.about-roadmap ol {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
}

.about-roadmap li {
  min-height: 120px;
  padding: 24px 20px;
  border-top: 1px solid rgba(255,255,255,.1);
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 18px;
  opacity: .56;
}

.about-roadmap li.complete,
.about-roadmap li.active {
  opacity: 1;
}

.about-roadmap li > span {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #7c7f7e;
  font-size: 12px;
  font-weight: 850;
}

.about-roadmap li.complete > span {
  border-color: #57cbd0;
  background: #2d757b;
  color: white;
}

.about-roadmap li.active > span {
  border-color: #dbac55;
  color: #e0b15c;
}

.about-roadmap small {
  color: #5dccd0;
  font-size: 12px;
  letter-spacing: 1px;
}

.about-roadmap h3 {
  margin: 5px 0;
  font-size: 17px;
}

.about-roadmap p {
  margin: 0;
  color: #7d807f;
  font-size: 12px;
}

.about-cta {
  padding: 27px 0;
  border-top: 1px solid rgba(255,255,255,.15);
  border-bottom: 1px solid rgba(255,255,255,.15);
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 25px;
}

.about-cta h2 {
  margin: 6px 0 0;
  font-size: 28px;
}

.about-cta nav {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.about-cta nav a {
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  padding: 8px 12px;
  color: #a5a8a7;
  text-decoration: none;
  font-size: 12px;
  font-weight: 750;
}

/* Contact */
.contact-shell {
  min-height: 650px;
  margin-top: 28px;
  margin-bottom: 75px;
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 65px;
  align-items: center;
}

.contact-intro h1 em {
  color: #67d0d4;
  font-style: normal;
}

.contact-topics {
  margin-top: 36px;
  display: grid;
  gap: 9px;
}

.contact-topics > div {
  padding: 12px 0;
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex;
  gap: 13px;
}

.contact-topics > div > span {
  color: #55c8cc;
  font-size: 12px;
  font-weight: 850;
}

.contact-topics p {
  margin: 0;
}

.contact-topics strong,
.contact-topics small {
  display: block;
}

.contact-topics strong {
  font-size: 12px;
}

.contact-topics small {
  margin-top: 3px;
  color: #737675;
  font-size: 12px;
}

.contact-form-panel {
  min-height: 575px;
  padding: 29px;
}

.contact-form-panel > header {
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.contact-form-panel > header > div {
  display: flex;
  align-items: center;
  gap: 8px;
}

.contact-form-panel > header strong {
  font-size: 12px;
  letter-spacing: 1px;
}

.contact-form-panel > header small {
  color: #666968;
  font-size: 12px;
  letter-spacing: .8px;
}

.contact-form-panel form {
  margin-top: 23px;
  display: grid;
  gap: 17px;
}

.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
}

.contact-form-panel label > span {
  display: block;
  margin: 0 0 7px 3px;
  color: #9da09f;
  font-size: 12px;
  font-weight: 750;
}

.contact-form-panel input,
.contact-form-panel select,
.contact-form-panel textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 11px;
  outline: 0;
  background: #151718;
  color: #fff;
  padding: 12px 13px;
  font-size: 12px;
}

.contact-form-panel input:focus,
.contact-form-panel select:focus,
.contact-form-panel textarea:focus {
  border-color: #58cbd0;
}

.contact-form-panel select {
  color-scheme: dark;
}

.contact-form-panel textarea {
  resize: vertical;
}

.contact-form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.contact-form-footer p {
  max-width: 315px;
  margin: 0;
  color: #656867;
  font-size: 12px;
  line-height: 1.5;
}

.contact-form-footer button,
.contact-success button {
  flex: 0 0 auto;
  border: 2px solid #fff;
  border-radius: 999px;
  background: #2faab2;
  color: #fff;
  padding: 11px 17px;
  font-size: 12px;
  font-weight: 850;
  cursor: pointer;
}

.contact-form-footer button span {
  margin-left: 10px;
}

.contact-success {
  min-height: 510px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}

.contact-success > span {
  width: 67px;
  height: 67px;
  margin-bottom: 20px;
  border: 2px solid #68d49a;
  border-radius: 50%;
  background: rgba(52,133,78,.17);
  color: #7ae0a3;
  display: grid;
  place-items: center;
  font-size: 25px;
}

.contact-success small {
  color: #6fd0a0;
  font-size: 12px;
  letter-spacing: 1px;
}

.contact-success h2 {
  margin: 10px 0;
  font-size: 30px;
}

.contact-success p {
  max-width: 390px;
  color: #858887;
  font-size: 12px;
  line-height: 1.55;
}

.contact-success button {
  margin-top: 15px;
}

.contact-note {
  width: min(900px, calc(100% - 48px));
  margin: 0 auto 85px;
  padding: 28px 32px;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 20px;
}

.contact-note > img {
  width: 52px;
  height: 48px;
}

.contact-note h2 {
  margin: 4px 0;
  font-size: 22px;
}

.contact-note p {
  margin: 0;
  color: #808382;
  font-size: 12px;
}

@media (max-width: 850px) {
  .news-hero,
  .about-hero,
  .contact-shell {
    grid-template-columns: 1fr;
  }

  .news-signal {
    width: 100%;
    max-width: 500px;
  }

  .featured-story {
    grid-template-columns: 1fr;
  }

  .news-card-grid {
    grid-template-columns: 1fr;
  }

  .news-subscribe {
    grid-template-columns: 1fr;
  }

  .about-hero-mark {
    order: 2;
  }

  .about-principles {
    grid-template-columns: 1fr;
  }

  .about-independence {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .news-hero,
  .featured-story,
  .news-feed,
  .news-subscribe,
  .about-hero,
  .about-mission,
  .about-principles,
  .about-independence,
  .about-roadmap,
  .about-cta,
  .contact-shell,
  .contact-note {
    width: calc(100% - 24px);
  }

  .news-hero h1,
  .about-hero h1,
  .contact-intro h1 {
    font-size: 58px;
    letter-spacing: -4px;
  }

  .news-feed > header,
  .about-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .news-feed nav {
    width: 100%;
    overflow-x: auto;
  }

  .news-card {
    grid-template-columns: 120px 1fr;
  }

  .news-subscribe {
    padding: 25px 21px;
  }

  .news-subscribe form {
    height: auto;
    display: grid;
    gap: 8px;
  }

  .news-subscribe input,
  .news-subscribe button {
    min-height: 43px;
    border-radius: 999px;
  }

  .about-hero {
    gap: 25px;
  }

  .about-hero-mark {
    transform: scale(.78);
    margin: -30px 0;
  }

  .about-mission {
    padding: 30px 24px;
    grid-template-columns: 1fr;
  }

  .about-mission aside {
    padding: 0 0 18px;
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.1);
  }

  .about-mission aside strong {
    margin-top: 12px;
    font-size: 40px;
  }

  .contact-shell {
    gap: 40px;
  }

  .contact-form-panel {
    padding: 22px 17px;
  }

  .contact-form-panel > header small {
    display: none;
  }

  .contact-form-row {
    grid-template-columns: 1fr;
  }

  .contact-form-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* Profiles, groups and contributions */
.profile-page,
.group-detail-page,
.submit-page {
  background:
    linear-gradient(180deg, rgba(5, 7, 17, .12), #090d16 760px),
    url("/homespace-night.png?v=ddbbfd739039") center top / cover fixed no-repeat;
}

.profile-shell,
.profile-content,
.profile-contributions,
.group-detail-hero,
.group-detail-grid,
.group-featured-event,
.group-resources,
.submit-shell,
.submission-note {
  width: min(1120px, calc(100% - 48px));
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 2;
}

.profile-shell {
  margin-top: 25px;
  margin-bottom: 22px;
  overflow: hidden;
}

.profile-tabs {
  height: 74px;
  padding: 0 29px;
  border-bottom: 1px solid rgba(255,255,255,.1);
  background: rgba(54,56,56,.72);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.profile-tabs nav {
  height: 100%;
  display: flex;
  gap: 32px;
}

.profile-tabs nav button {
  position: relative;
  border: 0;
  background: transparent;
  color: #9da09f;
  font-size: 12px;
  font-weight: 850;
  cursor: pointer;
}

.profile-tabs nav button.active {
  color: #fff;
}

.profile-tabs nav button.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  background: #3bb7bc;
}

.profile-tabs > a {
  border: 2px solid #fff;
  border-radius: 999px;
  padding: 9px 15px;
  color: #fff;
  text-decoration: none;
  font-size: 12px;
  font-weight: 850;
}

.profile-hero {
  min-height: 460px;
  padding: 45px;
  display: grid;
  grid-template-columns: 280px 1fr 170px;
  gap: 45px;
  align-items: center;
}

.profile-avatar-stage {
  height: 340px;
  position: relative;
  display: grid;
  place-items: center;
}

.profile-avatar {
  width: 190px;
  height: 300px;
  position: relative;
}

.avatar-head {
  width: 105px;
  height: 118px;
  position: absolute;
  z-index: 3;
  left: 42px;
  top: 4px;
  border-radius: 45% 45% 48% 48%;
  background: #bf8060;
  box-shadow: inset -15px -8px rgba(75,38,30,.12);
}

.avatar-hair {
  position: absolute;
  left: -2px;
  right: -2px;
  top: -5px;
  height: 34px;
  border-radius: 55% 55% 30% 30%;
  background: #34231f;
  transform: rotate(-3deg);
}

.avatar-glasses {
  position: absolute;
  left: 15px;
  right: 15px;
  top: 45px;
  height: 22px;
  border: 4px solid #1b2027;
  border-radius: 8px;
  box-shadow: inset 30px 0 transparent;
}

.avatar-glasses::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 4px;
  left: 30px;
  top: 5px;
  background: #1b2027;
}

.avatar-beard {
  position: absolute;
  width: 67px;
  height: 48px;
  left: 19px;
  bottom: -3px;
  border-radius: 22% 22% 46% 46%;
  background: #3c2722;
}

.avatar-body {
  width: 170px;
  height: 190px;
  position: absolute;
  left: 10px;
  bottom: 0;
  border-radius: 45px 45px 18px 18px;
  background: linear-gradient(90deg, #121416, #303337 48%, #121416);
  clip-path: polygon(20% 0, 80% 0, 100% 100%, 0 100%);
}

.avatar-body i {
  position: absolute;
  left: 50%;
  top: 0;
  width: 50px;
  height: 90px;
  transform: translateX(-50%);
  background: #efefec;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}

.profile-online {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  padding: 7px 10px;
  border-radius: 999px;
  background: #202223;
  font-size: 12px;
  font-weight: 850;
  white-space: nowrap;
}

.profile-identity h1 {
  margin: 9px 0 4px;
  font-size: 51px;
  letter-spacing: -2.7px;
}

.profile-handle {
  margin: 0;
  color: #727574;
  font-size: 12px;
}

.profile-bio {
  max-width: 560px;
  margin: 23px 0;
  color: #a1a4a3;
  font-size: 12px;
  line-height: 1.7;
}

.profile-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.profile-tags span {
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(66,188,193,.09);
  color: #68d1d5;
  font-size: 12px;
}

.profile-stats {
  border-left: 1px solid rgba(255,255,255,.1);
  display: grid;
}

.profile-stats > div {
  padding: 19px 0 19px 26px;
  border-bottom: 1px solid rgba(255,255,255,.09);
}

.profile-stats > div:last-child {
  border-bottom: 0;
}

.profile-stats strong,
.profile-stats small {
  display: block;
}

.profile-stats strong {
  color: #63d0d4;
  font-size: 26px;
}

.profile-stats small {
  margin-top: 5px;
  color: #6e7170;
  font-size: 12px;
  letter-spacing: .8px;
}

.profile-content {
  margin-bottom: 70px;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 17px;
}

.profile-about,
.profile-presence {
  padding: 34px;
  border-radius: 20px;
}

.profile-about h2 {
  margin: 8px 0 13px;
  font-size: 29px;
}

.profile-about > p {
  color: #969998;
  font-size: 12px;
  line-height: 1.7;
}

.profile-facts {
  margin-top: 23px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.09);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.profile-facts small,
.profile-facts strong {
  display: block;
}

.profile-facts small {
  color: #666968;
  font-size: 12px;
  letter-spacing: .7px;
}

.profile-facts strong {
  margin-top: 5px;
  font-size: 12px;
}

.presence-location {
  margin: 24px 0;
  display: flex;
  align-items: center;
  gap: 13px;
}

.presence-location img {
  width: 48px;
  height: 48px;
}

.presence-location strong,
.presence-location small {
  display: block;
}

.presence-location strong {
  font-size: 12px;
}

.presence-location small {
  margin-top: 4px;
  color: #737675;
  font-size: 12px;
}

.profile-presence > a {
  color: #5dccd0;
  text-decoration: none;
  font-size: 12px;
  font-weight: 850;
}

.profile-contributions {
  margin-bottom: 85px;
}

.profile-contributions > header,
.group-resources > header {
  margin-bottom: 20px;
  display: flex;
  align-items: end;
  justify-content: space-between;
}

.profile-contributions h2,
.group-resources h2 {
  margin: 6px 0 0;
  font-size: 34px;
}

.profile-contributions > header > a,
.group-resources > header > a {
  color: #a2a5a4;
  text-decoration: none;
  font-size: 12px;
  font-weight: 850;
}

.profile-contributions > div {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 13px;
}

.profile-contributions > div > a {
  padding: 20px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 17px;
  background: rgba(24,25,27,.76);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  color: #fff;
  text-decoration: none;
}

.profile-contributions img {
  width: 43px;
  height: 43px;
}

.profile-contributions small {
  color: #5dccd0;
  font-size: 12px;
}

.profile-contributions strong {
  display: block;
  margin-top: 4px;
  font-size: 12px;
}

.profile-contributions p {
  margin: 4px 0 0;
  color: #747776;
  font-size: 12px;
  line-height: 1.4;
}

.profile-contributions b {
  color: #62cfd3;
}

/* Group profile */
.group-detail-hero {
  margin-top: 25px;
  margin-bottom: 22px;
  overflow: hidden;
}

.group-cover-art {
  height: 330px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, #163b47, #285d65 55%, #6c4a74);
}

.builder-grid i {
  position: absolute;
  left: -10%;
  right: -10%;
  bottom: 45px;
  height: 1px;
  background: rgba(104,218,221,.15);
  box-shadow: 0 40px rgba(104,218,221,.11), 0 80px rgba(104,218,221,.08);
  transform: perspective(300px) rotateX(55deg);
}

.builder-grid i:nth-child(2) { transform: rotate(30deg); bottom: 130px; }
.builder-grid i:nth-child(3) { transform: rotate(-30deg); bottom: 130px; }

.builder-blocks span {
  position: absolute;
  width: 70px;
  height: 70px;
  left: 28%;
  top: 110px;
  border: 1px solid rgba(116,229,231,.7);
  background: rgba(69,181,186,.15);
  transform: rotate(30deg) skewY(-15deg);
  box-shadow: 0 0 30px rgba(75,199,204,.2);
}

.builder-blocks span:nth-child(2) { left: 44%; top: 65px; transform: scale(.75) rotate(45deg); }
.builder-blocks span:nth-child(3) { left: 58%; top: 130px; transform: scale(1.2) rotate(20deg); }
.builder-blocks span:nth-child(4) { left: 72%; top: 83px; transform: scale(.55) rotate(55deg); }

.group-verified {
  position: absolute;
  left: 23px;
  top: 23px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(7,12,18,.58);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 1px;
}

.group-detail-heading {
  min-height: 190px;
  padding: 30px 39px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 23px;
}

.group-detail-avatar {
  width: 105px;
  height: 105px;
  border: 5px solid #282a2b;
  border-radius: 50%;
  background: #387d82;
  display: grid;
  place-items: center;
  font-size: 24px;
  font-weight: 850;
}

.group-detail-heading h1 {
  margin: 6px 0;
  font-size: 38px;
}

.group-detail-heading p {
  margin: 0;
  color: #858887;
  font-size: 12px;
}

.group-detail-heading > button {
  border: 2px solid #fff;
  border-radius: 999px;
  background: #2faab2;
  padding: 11px 18px;
  font-size: 12px;
  font-weight: 850;
  cursor: pointer;
}

.group-detail-heading > button.joined {
  background: #397c49;
}

.group-detail-grid {
  margin-bottom: 65px;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 17px;
  align-items: start;
}

.group-description,
.group-members-panel,
.group-meta-panel {
  padding: 35px;
  border-radius: 20px;
}

.group-description h2 {
  margin: 8px 0 13px;
  font-size: 30px;
}

.group-description > p {
  color: #979a99;
  font-size: 12px;
  line-height: 1.7;
}

.group-guidelines {
  margin-top: 30px;
}

.group-guidelines > h3 {
  margin: 0 0 13px;
  font-size: 17px;
}

.group-guidelines > div {
  padding: 13px 0;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex;
  gap: 13px;
}

.group-guidelines > div > span {
  color: #5dccd0;
  font-size: 12px;
  font-weight: 850;
}

.group-guidelines p {
  margin: 0;
}

.group-guidelines strong,
.group-guidelines small {
  display: block;
}

.group-guidelines strong {
  font-size: 12px;
}

.group-guidelines small {
  margin-top: 4px;
  color: #717473;
  font-size: 12px;
}

.group-detail-side {
  display: grid;
  gap: 14px;
}

.group-members-panel > div:first-child {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.group-members-panel > div:first-child strong {
  color: #63d0d4;
  font-size: 21px;
}

.group-member-grid {
  margin: 20px 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.group-member-grid span {
  aspect-ratio: 1;
  border-radius: 50%;
  background: #3b7580;
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 850;
}

.group-member-grid span:nth-child(2) { background: #754f68; }
.group-member-grid span:nth-child(3) { background: #99733f; }
.group-member-grid span:nth-child(4) { background: #477b50; }
.group-member-grid span:nth-child(5) { background: #4d5885; }
.group-member-grid span:nth-child(6) { background: #353738; }

.group-members-panel > a {
  color: #5dccd0;
  text-decoration: none;
  font-size: 12px;
  font-weight: 850;
}

.group-meta-panel dl {
  margin: 0;
}

.group-meta-panel dl > div {
  padding: 9px 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
  display: flex;
  justify-content: space-between;
  font-size: 12px;
}

.group-meta-panel dl > div:last-child {
  border-bottom: 0;
}

.group-meta-panel dt {
  color: #707372;
}

.group-meta-panel dd {
  margin: 0;
}

.group-featured-event {
  margin-bottom: 70px;
  padding: 28px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 23px;
}

.group-event-date {
  width: 80px;
  height: 80px;
  border-radius: 15px;
  background: #29789b;
  display: grid;
  place-items: center;
  align-content: center;
}

.group-event-date span,
.group-event-date strong {
  display: block;
}

.group-event-date span {
  font-size: 12px;
  font-weight: 850;
}

.group-event-date strong {
  font-size: 30px;
}

.group-featured-event h2 {
  margin: 5px 0;
  font-size: 23px;
}

.group-featured-event p {
  margin: 0;
  color: #838685;
  font-size: 12px;
}

.group-featured-event > a {
  border: 2px solid #fff;
  border-radius: 999px;
  padding: 10px 15px;
  color: #fff;
  text-decoration: none;
  font-size: 12px;
  font-weight: 850;
}

.group-featured-event > a span {
  margin-left: 9px;
}

.group-resources {
  margin-bottom: 80px;
}

.group-resources > div {
  display: grid;
  gap: 8px;
}

.group-resources > div > a {
  min-height: 80px;
  padding: 15px 18px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  background: rgba(24,25,27,.65);
  display: grid;
  grid-template-columns: 45px 1fr auto;
  align-items: center;
  gap: 14px;
  color: #fff;
  text-decoration: none;
}

.group-resources > div > a > span {
  color: #5dccd0;
  font-size: 12px;
  font-weight: 850;
}

.group-resources small,
.group-resources strong {
  display: block;
}

.group-resources small {
  color: #6c6f6e;
  font-size: 12px;
}

.group-resources strong {
  margin-top: 4px;
  font-size: 12px;
}

.group-resources b {
  color: #5dccd0;
}

/* Submission flow */
.submit-shell {
  min-height: 690px;
  margin-top: 25px;
  margin-bottom: 30px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 270px 1fr;
}

.submit-sidebar {
  padding: 27px 22px;
  background: rgba(48,50,50,.65);
  display: flex;
  flex-direction: column;
}

.submit-sidebar-brand {
  padding-bottom: 23px;
  border-bottom: 1px solid rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  gap: 11px;
}

.submit-sidebar-brand img {
  width: 35px;
  height: 32px;
}

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

.submit-sidebar-brand strong {
  font-size: 12px;
  letter-spacing: 1px;
}

.submit-sidebar-brand small {
  margin-top: 3px;
  color: #757877;
  font-size: 12px;
}

.submit-sidebar ol {
  margin: 28px 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 21px;
}

.submit-sidebar li {
  position: relative;
  display: flex;
  gap: 11px;
  opacity: .4;
}

.submit-sidebar li.active {
  opacity: 1;
}

.submit-sidebar li > span {
  width: 29px;
  height: 29px;
  flex: 0 0 29px;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 850;
}

.submit-sidebar li.active > span {
  border-color: #55cbd0;
  background: #2d777c;
}

.submit-sidebar li strong,
.submit-sidebar li small {
  display: block;
}

.submit-sidebar li strong {
  font-size: 12px;
}

.submit-sidebar li small {
  margin-top: 4px;
  color: #727574;
  font-size: 12px;
}

.submit-help {
  margin-top: auto;
  padding: 14px;
  border-radius: 12px;
  background: rgba(255,255,255,.04);
  display: flex;
  gap: 10px;
}

.submit-help > span {
  width: 25px;
  height: 25px;
  flex: 0 0 25px;
  border: 1px solid #888b8a;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 12px;
}

.submit-help p {
  margin: 0;
}

.submit-help strong,
.submit-help small {
  display: block;
}

.submit-help strong {
  font-size: 12px;
}

.submit-help small {
  margin-top: 4px;
  color: #707372;
  font-size: 12px;
  line-height: 1.35;
}

.submit-main {
  padding: clamp(40px, 6vw, 72px);
}

.submit-main > h1,
.submission-review h1 {
  margin: 9px 0 9px;
  font-size: 39px;
  letter-spacing: -1.8px;
}

.submit-main > p,
.submission-review > p {
  margin: 0;
  color: #868988;
  font-size: 12px;
}

.submission-type-grid {
  margin-top: 31px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 11px;
}

.submission-type-grid button {
  min-height: 120px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 15px;
  background: rgba(16,17,18,.42);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  text-align: left;
  cursor: pointer;
}

.submission-type-grid button:hover,
.submission-type-grid button.selected {
  border-color: #56cbd0;
  background: rgba(55,151,156,.1);
}

.submission-type-grid img {
  width: 48px;
  height: 48px;
}

.submission-type-grid strong,
.submission-type-grid small {
  display: block;
}

.submission-type-grid strong {
  font-size: 12px;
}

.submission-type-grid small {
  margin-top: 4px;
  color: #737675;
  font-size: 12px;
}

.submission-type-grid b {
  color: #57cbd0;
}

.submit-actions {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.09);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.submit-actions button,
.submission-review > button {
  border: 2px solid #fff;
  border-radius: 999px;
  background: #2faab2;
  padding: 11px 18px;
  font-size: 12px;
  font-weight: 850;
  cursor: pointer;
}

.submit-actions button:disabled {
  border-color: #676a69;
  background: #4a4c4b;
  color: #777a79;
  cursor: not-allowed;
}

.submit-actions button.back {
  border-color: rgba(255,255,255,.25);
  background: transparent;
}

.submit-actions b {
  margin-left: 10px;
}

.submission-details {
  margin-top: 29px;
  display: grid;
  gap: 16px;
}

.submission-details > div:not(.submit-actions) {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.submission-details label > span {
  display: block;
  margin: 0 0 7px 3px;
  color: #979a99;
  font-size: 12px;
  font-weight: 750;
}

.submission-details input,
.submission-details textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 11px;
  outline: 0;
  background: #151718;
  color: #fff;
  padding: 12px 13px;
  font-size: 12px;
}

.submission-check {
  display: flex;
  align-items: flex-start;
  gap: 9px;
}

.submission-check input {
  width: 16px;
}

.submission-check span {
  margin: 1px 0 !important;
}

.submission-review {
  min-height: 520px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.review-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  border: 2px solid #6cdaa1;
  border-radius: 50%;
  background: rgba(60,142,84,.15);
  color: #7ae1a7;
  display: grid;
  place-items: center;
  font-size: 25px;
}

.submission-review > small {
  color: #6bd59e;
  font-size: 12px;
  letter-spacing: 1px;
}

.submission-review > p {
  max-width: 450px;
  line-height: 1.55;
}

.submission-review > div {
  width: min(420px, 100%);
  margin: 28px 0;
  padding: 18px;
  border-top: 1px solid rgba(255,255,255,.09);
  border-bottom: 1px solid rgba(255,255,255,.09);
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.submission-review > div small,
.submission-review > div strong {
  display: block;
}

.submission-review > div small {
  color: #6d706f;
  font-size: 12px;
}

.submission-review > div strong {
  margin-top: 5px;
  font-size: 12px;
  text-transform: capitalize;
}

.submission-note {
  margin-bottom: 80px;
  padding: 17px 22px;
  border-left: 3px solid #d8a84e;
  border-radius: 4px 12px 12px 4px;
  background: rgba(112,76,21,.11);
  display: flex;
  align-items: center;
  gap: 13px;
}

.submission-note > span {
  width: 25px;
  height: 25px;
  border: 1px solid #d8a84e;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #e3b65f;
  font-size: 12px;
}

.submission-note p {
  margin: 0;
  color: #8e877a;
  font-size: 12px;
}

.submission-note strong {
  display: block;
  color: #c2baa9;
}

/* Not found */
.not-found-page {
  min-height: 100vh;
  padding: 30px;
  display: grid;
  place-items: center;
  position: relative;
}

.not-found-panel {
  width: min(620px, 100%);
  padding: 65px 55px;
  border: 4px solid #f1bd66;
  text-align: center;
}

.not-found-panel > img {
  width: 70px;
  height: 64px;
  margin: 0 auto 22px;
}

.not-found-panel h1 {
  margin: 11px 0 16px;
  font-size: clamp(47px, 7vw, 72px);
  line-height: .95;
  letter-spacing: -4px;
}

.not-found-panel > p {
  max-width: 440px;
  margin: 0 auto;
  color: #a0a3a2;
  font-size: 12px;
  line-height: 1.6;
}

.not-found-panel > div {
  margin: 28px 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 9px;
}

.not-found-panel > div a {
  border: 2px solid #fff;
  border-radius: 999px;
  padding: 11px 16px;
  color: #fff;
  text-decoration: none;
  font-size: 12px;
  font-weight: 850;
}

.not-found-panel > div a:first-child {
  background: #2faab2;
}

.not-found-panel > small {
  color: #686b6a;
  font-size: 12px;
  letter-spacing: 1px;
}

@media (max-width: 900px) {
  .profile-hero {
    grid-template-columns: 240px 1fr;
  }

  .profile-stats {
    grid-column: 1 / 3;
    border-left: 0;
    border-top: 1px solid rgba(255,255,255,.1);
    grid-template-columns: repeat(3, 1fr);
  }

  .profile-stats > div {
    border-bottom: 0;
  }

  .profile-contributions > div {
    grid-template-columns: 1fr;
  }

  .group-detail-grid {
    grid-template-columns: 1fr;
  }

  .group-detail-side {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 650px) {
  .profile-shell,
  .profile-content,
  .profile-contributions,
  .group-detail-hero,
  .group-detail-grid,
  .group-featured-event,
  .group-resources,
  .submit-shell,
  .submission-note {
    width: calc(100% - 24px);
  }

  .profile-tabs {
    padding: 0 17px;
  }

  .profile-tabs nav {
    gap: 15px;
  }

  .profile-tabs nav button:nth-child(n+2) {
    display: none;
  }

  .profile-hero {
    padding: 28px 22px;
    grid-template-columns: 1fr;
  }

  .profile-avatar-stage {
    height: 320px;
  }

  .profile-identity h1 {
    font-size: 42px;
  }

  .profile-stats {
    grid-column: 1;
  }

  .profile-stats > div {
    padding-left: 8px;
  }

  .profile-content {
    grid-template-columns: 1fr;
  }

  .profile-facts {
    grid-template-columns: 1fr;
  }

  .group-detail-heading {
    padding: 25px 20px;
    grid-template-columns: auto 1fr;
  }

  .group-detail-avatar {
    width: 75px;
    height: 75px;
    font-size: 18px;
  }

  .group-detail-heading h1 {
    font-size: 28px;
  }

  .group-detail-heading > button {
    grid-column: 2;
    justify-self: start;
  }

  .group-detail-side {
    grid-template-columns: 1fr;
  }

  .group-featured-event {
    grid-template-columns: auto 1fr;
  }

  .group-featured-event > a {
    grid-column: 2;
    justify-self: start;
  }

  .submit-shell {
    grid-template-columns: 1fr;
  }

  .submit-sidebar {
    min-height: auto;
  }

  .submit-sidebar ol {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .submit-sidebar li {
    display: grid;
  }

  .submit-sidebar li small,
  .submit-help {
    display: none;
  }

  .submit-main {
    padding: 36px 20px;
  }

  .submission-type-grid,
  .submission-details > div:not(.submit-actions) {
    grid-template-columns: 1fr;
  }

  .not-found-page {
    padding: 14px;
  }

  .not-found-panel {
    padding: 48px 22px;
  }
}

/* Account, saved library and personal preferences */
.header-profile-pill {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 5px 12px 5px 5px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  color: #fff;
  text-decoration: none;
  transition: border-color .2s ease, background .2s ease;
}

.header-profile-pill:hover {
  border-color: rgba(255,255,255,.45);
  background: rgba(255,255,255,.06);
}

.header-profile-pill > span {
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #2faab2;
  font-size: 12px;
  font-weight: 900;
}

.header-profile-pill > b {
  font-size: 12px;
  letter-spacing: .8px;
}

.account-page,
.saved-page,
.settings-page,
.privacy-page {
  background:
    radial-gradient(circle at 82% 12%, rgba(59,38,113,.22), transparent 30%),
    #101112;
}

.account-shell {
  width: min(1180px, calc(100% - 48px));
  margin: 36px auto 90px;
  display: grid;
  grid-template-columns: 225px 1fr;
  gap: 30px;
}

.account-sidebar {
  align-self: start;
  padding: 24px 0 18px;
  position: sticky;
  top: 104px;
}

.account-user {
  padding: 0 21px 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.account-avatar {
  width: 49px;
  height: 49px;
  display: grid;
  place-items: center;
  position: relative;
  border: 2px solid rgba(255,255,255,.5);
  border-radius: 50%;
  background: linear-gradient(145deg, #40b5b7, #26698c);
  font-size: 12px;
  font-weight: 900;
}

.status-dot {
  width: 8px;
  height: 8px;
  display: inline-block;
  border: 2px solid #222526;
  border-radius: 50%;
  background: #55c571;
}

.account-avatar .status-dot {
  position: absolute;
  right: -1px;
  bottom: 1px;
  width: 11px;
  height: 11px;
}

.account-user div {
  display: grid;
  gap: 3px;
}

.account-user strong {
  font-size: 12px;
}

.account-user small {
  color: #858b8b;
  font-size: 12px;
}

.account-sidebar nav {
  padding: 14px 10px;
  display: grid;
  gap: 3px;
}

.account-sidebar nav a {
  padding: 11px 12px;
  display: flex;
  align-items: center;
  gap: 11px;
  border-radius: 5px;
  color: #9da1a1;
  text-decoration: none;
  font-size: 12px;
  font-weight: 750;
}

.account-sidebar nav a span {
  width: 16px;
  color: #c7cbca;
  font-size: 13px;
}

.account-sidebar nav a:hover,
.account-sidebar nav a.active {
  color: #fff;
  background: rgba(47,170,178,.16);
}

.account-sidebar nav a.active {
  box-shadow: inset 3px 0 #39b2b7;
}

.account-sidebar-status {
  margin: 5px 17px 0;
  padding: 15px 4px 0;
  display: flex;
  gap: 9px;
  border-top: 1px solid rgba(255,255,255,.08);
}

.account-sidebar-status p {
  margin: 0;
  display: grid;
  gap: 3px;
}

.account-sidebar-status strong {
  color: #b6bbbb;
  font-size: 12px;
  letter-spacing: 1px;
}

.account-sidebar-status small {
  color: #6f7474;
  font-size: 12px;
  line-height: 1.5;
}

.account-main {
  min-width: 0;
}

.account-welcome {
  min-height: 200px;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 30px;
  padding: 22px 0 34px;
}

.account-welcome h1 {
  margin: 8px 0 13px;
  font-size: clamp(42px, 5vw, 68px);
  line-height: .93;
  letter-spacing: -3.5px;
}

.account-welcome p {
  margin: 0;
  color: #999e9d;
  font-size: 12px;
}

.account-clock {
  min-width: 165px;
  padding: 22px;
  display: grid;
  text-align: right;
}

.account-clock small,
.account-clock span {
  color: #777d7c;
  font-size: 12px;
  letter-spacing: 1px;
}

.account-clock strong {
  margin: 4px 0;
  font-size: 35px;
  letter-spacing: -2px;
}

.account-quick-grid {
  margin-bottom: 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.account-quick-grid > a {
  min-height: 91px;
  padding: 18px;
  display: grid;
  grid-template-columns: 35px 1fr auto;
  align-items: center;
  gap: 12px;
  border-radius: 8px;
  color: #fff;
  text-decoration: none;
  box-shadow: inset 0 1px rgba(255,255,255,.18);
  transition: transform .2s ease, filter .2s ease;
}

.account-quick-grid > a:hover {
  transform: translateY(-3px);
  filter: brightness(1.08);
}

.account-quick-grid .green { background: #378c50; }
.account-quick-grid .blue { background: #2c99c8; }
.account-quick-grid .gold { background: #9e7a27; }

.account-quick-grid img {
  width: 29px;
  height: 29px;
}

.account-quick-grid span {
  display: grid;
  gap: 3px;
}

.account-quick-grid small {
  color: rgba(255,255,255,.65);
  font-size: 12px;
  letter-spacing: 1px;
}

.account-quick-grid strong {
  font-size: 12px;
}

.account-quick-grid > a > b {
  font-size: 18px;
}

.account-dashboard-grid {
  margin-bottom: 20px;
  display: grid;
  grid-template-columns: 1.55fr .8fr;
  gap: 20px;
}

.account-next-event,
.account-progress,
.account-activity {
  padding: 25px;
}

.account-next-event {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
}

.account-next-event > header {
  grid-column: 1 / 3;
  display: flex;
  justify-content: space-between;
}

.account-next-event header a,
.account-activity header a,
.account-progress > a {
  color: #5bc3c6;
  text-decoration: none;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .6px;
}

.account-event-date {
  width: 67px;
  height: 78px;
  display: grid;
  place-content: center;
  text-align: center;
  border-radius: 5px;
  background: #3a914f;
}

.account-event-date span {
  font-size: 12px;
  letter-spacing: 1px;
}

.account-event-date strong {
  font-size: 30px;
  line-height: 1;
}

.account-next-event > div:last-child small {
  color: #7f8584;
  font-size: 12px;
  letter-spacing: .7px;
}

.account-next-event h2,
.account-progress h2,
.account-activity h2 {
  margin: 6px 0;
  font-size: 18px;
}

.account-next-event p,
.account-progress p {
  margin: 0 0 11px;
  color: #878c8b;
  font-size: 12px;
}

.account-next-event > div:last-child a {
  color: #fff;
  text-decoration: none;
  font-size: 12px;
  font-weight: 850;
}

.account-progress {
  text-align: center;
}

.account-progress > header,
.account-activity > header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.progress-ring {
  width: 78px;
  height: 78px;
  margin: 16px auto 12px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: conic-gradient(#d0a23a 60%, #383b3b 0);
}

.progress-ring::before {
  content: "";
  width: 61px;
  height: 61px;
  position: absolute;
  border-radius: 50%;
  background: #232526;
}

.progress-ring span {
  z-index: 1;
  display: grid;
  font-size: 22px;
  line-height: 1;
}

.progress-ring small {
  margin-top: 3px;
  color: #777c7b;
  font-size: 12px;
  letter-spacing: .8px;
}

.account-activity > header {
  margin-bottom: 12px;
}

.account-activity header div {
  display: grid;
}

.account-activity > div article {
  min-height: 59px;
  display: grid;
  grid-template-columns: 32px 1fr auto;
  align-items: center;
  gap: 12px;
  border-top: 1px solid rgba(255,255,255,.08);
}

.account-activity article img {
  width: 24px;
  height: 24px;
  opacity: .75;
}

.account-activity article span {
  display: grid;
  gap: 4px;
}

.account-activity article strong {
  font-size: 12px;
}

.account-activity article small,
.account-activity article > b {
  color: #717675;
  font-size: 12px;
}

/* Saved library */
.saved-hero,
.saved-panel,
.saved-discover {
  width: min(1080px, calc(100% - 48px));
  margin-inline: auto;
}

.saved-hero {
  padding: 78px 0 34px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 25px;
}

.saved-hero h1 {
  margin: 8px 0;
  font-size: clamp(45px, 6vw, 72px);
  letter-spacing: -4px;
  line-height: .95;
}

.saved-hero p {
  margin: 0;
  color: #8d9291;
  font-size: 12px;
}

.saved-hero > a {
  color: #fff;
  text-decoration: none;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .8px;
}

.saved-panel {
  overflow: hidden;
}

.saved-panel > header {
  min-height: 65px;
  padding: 0 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.saved-panel nav {
  display: flex;
  align-self: stretch;
  gap: 24px;
}

.saved-panel nav button {
  border: 0;
  border-bottom: 3px solid transparent;
  background: transparent;
  color: #777c7c;
  font: inherit;
  font-size: 12px;
  font-weight: 800;
}

.saved-panel nav button.active {
  border-color: #3cb0b5;
  color: #fff;
}

.saved-panel > header > span {
  color: #6e7473;
  font-size: 12px;
  letter-spacing: 1px;
}

.saved-grid {
  padding: 17px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 11px;
}

.saved-card {
  min-height: 126px;
  padding: 15px;
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 16px;
  position: relative;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 6px;
  background: #1d1f20;
}

.saved-card-icon {
  display: grid;
  place-items: center;
  border-radius: 5px;
}

.saved-card-icon.green { background: #378c50; }
.saved-card-icon.blue { background: #2d98c6; }
.saved-card-icon.gold { background: #9c7927; }
.saved-card-icon.violet { background: #5d478d; }

.saved-card-icon img {
  width: 38px;
  height: 38px;
}

.saved-card > div:nth-child(2) {
  align-self: center;
}

.saved-card small {
  color: #757b7a;
  font-size: 12px;
  letter-spacing: 1px;
}

.saved-card h2 {
  margin: 6px 0;
  font-size: 15px;
}

.saved-card p {
  margin: 0;
  color: #8a8f8e;
  font-size: 12px;
}

.saved-card-actions {
  position: absolute;
  right: 13px;
  bottom: 12px;
  display: flex;
  align-items: center;
  gap: 13px;
}

.saved-card-actions button {
  border: 0;
  background: transparent;
  color: #656a69;
  font-size: 15px;
}

.saved-card-actions a {
  color: #5ec7ca;
  text-decoration: none;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .7px;
}

.saved-discover {
  margin-block: 18px 90px;
  padding: 25px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px dashed rgba(255,255,255,.16);
  border-radius: 7px;
}

.saved-discover h2 {
  margin: 5px 0 0;
  font-size: 18px;
}

.saved-discover nav {
  display: flex;
  gap: 8px;
}

.saved-discover a {
  padding: 10px 13px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 999px;
  color: #fff;
  text-decoration: none;
  font-size: 12px;
  font-weight: 850;
}

/* Settings */
.settings-shell {
  width: min(990px, calc(100% - 48px));
  margin: 62px auto 90px;
  display: grid;
  grid-template-columns: 220px 1fr;
  overflow: hidden;
}

.settings-sidebar {
  padding: 26px 16px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid rgba(255,255,255,.1);
  background: #1b1d1e;
}

.settings-sidebar > div {
  padding: 0 8px 24px;
  display: flex;
  align-items: center;
  gap: 11px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.settings-sidebar img {
  width: 30px;
  height: 30px;
}

.settings-sidebar div span {
  display: grid;
  gap: 3px;
}

.settings-sidebar strong {
  font-size: 12px;
  letter-spacing: 1px;
}

.settings-sidebar small {
  color: #777c7b;
  font-size: 12px;
}

.settings-sidebar nav {
  margin-top: 15px;
  display: grid;
  gap: 4px;
}

.settings-sidebar nav button {
  padding: 12px;
  border: 0;
  border-radius: 4px;
  background: transparent;
  color: #747a79;
  text-align: left;
  font: inherit;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .8px;
}

.settings-sidebar nav button.active {
  color: #fff;
  background: rgba(47,170,178,.17);
  box-shadow: inset 3px 0 #3ab2b7;
}

.settings-sidebar > a {
  margin: auto 8px 0;
  color: #858b8a;
  text-decoration: none;
  font-size: 12px;
  font-weight: 800;
}

.settings-main {
  padding: 42px 50px;
}

.settings-main > header h1 {
  margin: 8px 0 10px;
  font-size: 39px;
  letter-spacing: -2px;
}

.settings-main > header p {
  margin: 0;
  color: #858a89;
  font-size: 12px;
}

.settings-group {
  margin-top: 34px;
}

.settings-group > div:first-child {
  margin-bottom: 8px;
}

.settings-group > div:first-child > span {
  color: #53bfc3;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1px;
}

.settings-group > div:first-child p {
  margin: 4px 0 0;
  color: #6f7473;
  font-size: 12px;
}

.setting-row {
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255,255,255,.08);
}

.setting-row > span {
  display: grid;
  gap: 5px;
}

.setting-row strong {
  font-size: 12px;
}

.setting-row small {
  color: #777d7c;
  font-size: 12px;
}

.setting-row > button {
  width: 39px;
  height: 21px;
  padding: 3px;
  flex: 0 0 auto;
  border: 0;
  border-radius: 999px;
  background: #464a49;
  transition: background .2s ease;
}

.setting-row > button i {
  width: 15px;
  height: 15px;
  display: block;
  border-radius: 50%;
  background: #c9cccb;
  transition: transform .2s ease;
}

.setting-row > button.on {
  background: #39aeb3;
}

.setting-row > button.on i {
  transform: translateX(18px);
  background: #fff;
}

.settings-actions {
  margin-top: 34px;
  padding-top: 20px;
  display: flex;
  justify-content: flex-end;
  gap: 9px;
  border-top: 1px solid rgba(255,255,255,.1);
}

.settings-actions button {
  padding: 11px 15px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 999px;
  background: transparent;
  color: #fff;
  font: inherit;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .7px;
}

.settings-actions button:last-child {
  min-width: 135px;
  border-color: #37aeb3;
  background: #37aeb3;
}

/* Privacy */
.privacy-shell {
  width: min(1000px, calc(100% - 48px));
  margin: 62px auto 90px;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 18px;
}

.privacy-nav {
  min-height: 390px;
  padding: 27px 24px;
  align-self: start;
  position: sticky;
  top: 104px;
  display: flex;
  flex-direction: column;
}

.privacy-nav h2 {
  margin: 8px 0 21px;
  font-size: 26px;
}

.privacy-nav nav {
  display: grid;
  gap: 2px;
}

.privacy-nav nav a {
  padding: 9px 10px;
  border-left: 2px solid transparent;
  color: #7c8281;
  text-decoration: none;
  font-size: 12px;
}

.privacy-nav nav a:hover,
.privacy-nav nav a.active {
  border-color: #42b6ba;
  color: #fff;
  background: rgba(255,255,255,.035);
}

.privacy-nav > small {
  margin-top: auto;
  color: #606665;
  font-size: 12px;
  line-height: 1.6;
  letter-spacing: .8px;
}

.privacy-nav > small b {
  color: #9ba09f;
}

.privacy-content {
  padding: 48px 55px;
}

.privacy-title {
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.privacy-title h1 {
  max-width: 590px;
  margin: 9px 0 14px;
  font-size: clamp(35px, 4.5vw, 53px);
  line-height: 1;
  letter-spacing: -2.7px;
}

.privacy-title p,
.privacy-content section p {
  margin: 0;
  color: #8a908f;
  font-size: 12px;
  line-height: 1.7;
}

.privacy-content > section {
  padding: 29px 0;
  display: grid;
  grid-template-columns: 35px 1fr;
  gap: 16px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  scroll-margin-top: 110px;
}

.privacy-content > section > span {
  color: #47b9bd;
  font-size: 12px;
  font-weight: 900;
}

.privacy-content section h2 {
  margin: 0 0 9px;
  font-size: 16px;
}

.privacy-content section a {
  margin-top: 13px;
  display: inline-block;
  color: #55bec2;
  text-decoration: none;
  font-size: 12px;
  font-weight: 850;
}

.privacy-principle {
  margin-top: 30px;
  padding: 18px;
  display: flex;
  align-items: center;
  gap: 15px;
  border: 1px solid rgba(86,191,194,.25);
  border-radius: 6px;
  background: rgba(47,170,178,.07);
}

.privacy-principle > span {
  width: 29px;
  height: 29px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #3caeb2;
  font-size: 12px;
}

.privacy-principle p {
  display: grid;
  gap: 3px;
}

.privacy-principle strong {
  color: #fff;
}

.pref-large-text {
  font-size: 112%;
}

.pref-high-contrast .alt-panel {
  border-color: rgba(255,255,255,.55);
  box-shadow: 0 0 0 1px rgba(255,255,255,.12);
}

.pref-reduce-motion *,
.pref-reduce-motion *::before,
.pref-reduce-motion *::after {
  scroll-behavior: auto !important;
  transition: none !important;
  animation-duration: .01ms !important;
  animation-iteration-count: 1 !important;
}

@media (max-width: 1040px) {
  .header-profile-pill > b {
    display: none;
  }

  .header-profile-pill {
    padding-right: 5px;
  }
}

@media (max-width: 820px) {
  .header-profile-pill {
    display: none;
  }

  .account-shell {
    grid-template-columns: 1fr;
  }

  .account-sidebar {
    position: static;
  }

  .account-sidebar nav {
    grid-template-columns: repeat(4, 1fr);
  }

  .account-sidebar nav a {
    justify-content: center;
  }

  .account-sidebar-status {
    display: none;
  }

  .account-dashboard-grid {
    grid-template-columns: 1fr;
  }

  .privacy-shell {
    grid-template-columns: 1fr;
  }

  .privacy-nav {
    min-height: auto;
    position: static;
  }

  .privacy-nav nav {
    grid-template-columns: repeat(5, auto);
    overflow-x: auto;
  }

  .privacy-nav > small {
    margin-top: 22px;
  }
}

@media (max-width: 650px) {
  .account-shell,
  .saved-hero,
  .saved-panel,
  .saved-discover,
  .settings-shell,
  .privacy-shell {
    width: calc(100% - 24px);
  }

  .account-shell,
  .settings-shell,
  .privacy-shell {
    margin-top: 25px;
  }

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

  .account-welcome {
    align-items: start;
    flex-direction: column;
  }

  .account-clock {
    width: 100%;
    text-align: left;
  }

  .account-quick-grid {
    grid-template-columns: 1fr;
  }

  .account-next-event {
    grid-template-columns: auto 1fr;
    padding: 20px;
  }

  .saved-hero {
    padding-top: 48px;
    align-items: start;
    flex-direction: column;
  }

  .saved-panel > header {
    align-items: start;
    flex-direction: column;
    gap: 12px;
    padding-block: 16px;
  }

  .saved-panel nav {
    width: 100%;
    gap: 14px;
    overflow-x: auto;
  }

  .saved-grid {
    grid-template-columns: 1fr;
  }

  .saved-card {
    grid-template-columns: 68px 1fr;
  }

  .saved-discover {
    align-items: start;
    flex-direction: column;
    gap: 18px;
  }

  .settings-shell {
    grid-template-columns: 1fr;
  }

  .settings-sidebar {
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.1);
  }

  .settings-sidebar nav {
    grid-template-columns: repeat(4, auto);
    overflow-x: auto;
  }

  .settings-sidebar > a {
    margin-top: 18px;
  }

  .settings-main,
  .privacy-content {
    padding: 34px 22px;
  }

  .privacy-nav nav {
    grid-template-columns: repeat(5, 120px);
  }
}

/* Search and first-visit discovery */
.global-search-all {
  margin: 4px 18px 18px;
  padding: 13px 15px;
  display: flex;
  justify-content: space-between;
  border: 1px solid rgba(75,186,190,.28);
  border-radius: 5px;
  background: rgba(47,170,178,.08);
  color: #66c7ca;
  text-decoration: none;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .8px;
}

.search-page,
.welcome-page {
  background:
    radial-gradient(circle at 76% 8%, rgba(66,42,126,.3), transparent 27%),
    linear-gradient(180deg, rgba(16,17,18,.16), #101112 760px),
    url("/homespace-night.png?v=ddbbfd739039") center top / cover fixed no-repeat;
}

.search-hero {
  min-height: 360px;
  padding: 76px 24px 54px;
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.search-hero h1 {
  margin: 10px 0 28px;
  font-size: clamp(44px, 6vw, 72px);
  line-height: .95;
  letter-spacing: -4px;
}

.search-page-input {
  width: min(700px, 100%);
  min-height: 64px;
  padding: 0 17px;
  display: grid;
  grid-template-columns: 25px 1fr auto auto;
  align-items: center;
  gap: 12px;
  border-color: rgba(255,255,255,.25);
  box-shadow: 0 17px 60px rgba(0,0,0,.32);
}

.search-page-input input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: #fff;
  font: inherit;
  font-size: 12px;
}

.search-page-input input::placeholder {
  color: #707675;
}

.search-page-input > button {
  border: 0;
  background: transparent;
  color: #818686;
  font-size: 18px;
}

.search-page-input kbd {
  padding: 6px 8px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 3px;
  color: #6f7474;
  font: inherit;
  font-size: 12px;
  letter-spacing: .7px;
}

.search-suggestions {
  margin-top: 15px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 7px;
}

.search-suggestions span {
  margin-right: 4px;
  color: #686e6d;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1px;
}

.search-suggestions button {
  padding: 7px 10px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  background: rgba(255,255,255,.025);
  color: #929796;
  font: inherit;
  font-size: 12px;
}

.search-results-shell {
  width: min(1080px, calc(100% - 48px));
  margin: 0 auto 22px;
  display: grid;
  grid-template-columns: 205px 1fr;
  gap: 24px;
}

.search-filters {
  padding: 21px 12px 15px;
  align-self: start;
  position: sticky;
  top: 104px;
}

.search-filters > header {
  padding: 0 9px 16px;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.search-filters > header strong,
.search-filters > header small {
  font-size: 12px;
  letter-spacing: .7px;
}

.search-filters > header small {
  color: #686e6d;
}

.search-filters nav {
  padding: 10px 0 17px;
  display: grid;
  gap: 2px;
}

.search-filters nav button {
  min-height: 37px;
  padding: 0 10px;
  display: grid;
  grid-template-columns: 6px 1fr auto;
  align-items: center;
  gap: 9px;
  border: 0;
  border-radius: 4px;
  background: transparent;
  color: #818685;
  text-align: left;
  font: inherit;
  font-size: 12px;
  font-weight: 800;
}

.search-filters nav button > span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #505554;
}

.search-filters nav button b {
  color: #575d5c;
  font-size: 12px;
}

.search-filters nav button:hover,
.search-filters nav button.active {
  background: rgba(47,170,178,.13);
  color: #fff;
}

.search-filters nav button.active > span {
  background: #52c0c4;
  box-shadow: 0 0 0 3px rgba(82,192,196,.13);
}

.search-filters > div {
  padding: 14px 9px 0;
  display: flex;
  gap: 9px;
  border-top: 1px solid rgba(255,255,255,.08);
}

.search-filters > div p {
  margin: 0;
  display: grid;
  gap: 3px;
}

.search-filters > div strong {
  color: #9da2a1;
  font-size: 12px;
  letter-spacing: .8px;
}

.search-filters > div small {
  color: #666c6b;
  font-size: 12px;
  line-height: 1.5;
}

.search-results > header {
  min-height: 68px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 17px;
}

.search-results > header h2 {
  margin: 5px 0 0;
  font-size: 23px;
  letter-spacing: -1px;
}

.search-results select {
  padding: 9px 31px 9px 12px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 4px;
  background: #1c1f20;
  color: #9ca1a0;
  font: inherit;
  font-size: 12px;
}

.search-result-list {
  display: grid;
  gap: 9px;
}

.search-result-card {
  min-height: 105px;
  padding: 14px;
  display: grid;
  grid-template-columns: 75px 1fr auto;
  align-items: center;
  gap: 17px;
  color: #fff;
  text-decoration: none;
  transition: transform .18s ease, border-color .18s ease;
}

.search-result-card:hover {
  transform: translateX(4px);
  border-color: rgba(255,255,255,.3);
}

.search-result-icon {
  width: 75px;
  height: 75px;
  display: grid;
  place-items: center;
  border-radius: 5px;
}

.search-result-icon.green { background: #388d50; }
.search-result-icon.blue { background: #2d98c6; }
.search-result-icon.gold { background: #9c7927; }
.search-result-icon.violet { background: #60488e; }
.search-result-icon.coral { background: #b45c4c; }
.search-result-icon.teal { background: #2f858d; }

.search-result-icon img {
  width: 35px;
  height: 35px;
}

.search-result-card > span:nth-child(2) {
  display: grid;
  gap: 4px;
}

.search-result-card small {
  color: #56bec2;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1px;
}

.search-result-card strong {
  font-size: 14px;
}

.search-result-card p {
  margin: 0;
  color: #8b908f;
  font-size: 12px;
  line-height: 1.45;
}

.search-result-card span b {
  color: #666c6b;
  font-size: 12px;
  font-weight: 650;
}

.search-result-card > i {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 50%;
  color: #8c9190;
  font-style: normal;
}

.search-no-results {
  min-height: 330px;
  padding: 50px 30px;
  display: grid;
  place-items: center;
  align-content: center;
  text-align: center;
}

.search-no-results > span {
  color: #4ab7bb;
  font-size: 38px;
}

.search-no-results h3 {
  margin: 15px 0 8px;
  font-size: 23px;
}

.search-no-results p {
  max-width: 400px;
  margin: 0 0 18px;
  color: #858a89;
  font-size: 12px;
  line-height: 1.6;
}

.search-no-results a {
  color: #53bec2;
  text-decoration: none;
  font-size: 12px;
  font-weight: 900;
}

.search-help {
  width: min(1080px, calc(100% - 48px));
  margin: 25px auto 90px;
  padding: 27px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border: 1px dashed rgba(255,255,255,.18);
  border-radius: 7px;
}

.search-help h2 {
  margin: 5px 0;
  font-size: 20px;
}

.search-help p {
  margin: 0;
  color: #777d7c;
  font-size: 12px;
}

.search-help > a {
  padding: 12px 16px;
  border-radius: 999px;
  background: #36aeb3;
  color: #fff;
  text-decoration: none;
  font-size: 12px;
  font-weight: 900;
}

/* First-visit welcome tour */
.welcome-intro {
  width: min(1120px, calc(100% - 48px));
  min-height: 590px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 30px;
}

.welcome-copy h1 {
  margin: 12px 0 22px;
  font-size: clamp(53px, 7vw, 85px);
  line-height: .88;
  letter-spacing: -5px;
}

.welcome-copy > p {
  max-width: 500px;
  margin: 0;
  color: #9ba09f;
  font-size: 12px;
  line-height: 1.65;
}

.welcome-copy > div {
  margin-top: 29px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.welcome-copy button,
.welcome-copy a {
  color: #fff;
  text-decoration: none;
  font: inherit;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .7px;
}

.welcome-copy button {
  padding: 13px 17px;
  border: 0;
  border-radius: 999px;
  background: #35acb1;
}

.welcome-orbit {
  width: min(470px, 100%);
  aspect-ratio: 1;
  justify-self: end;
  position: relative;
  display: grid;
  place-items: center;
}

.welcome-orbit::before {
  content: "";
  width: 58%;
  height: 58%;
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(83,57,147,.34), rgba(31,32,46,.04) 67%);
  filter: blur(4px);
}

.welcome-orbit-ring {
  position: absolute;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 50%;
}

.welcome-orbit-ring.one {
  width: 75%;
  height: 75%;
}

.welcome-orbit-ring.two {
  width: 98%;
  height: 45%;
  transform: rotate(-22deg);
}

.welcome-orbit-core {
  width: 150px;
  height: 150px;
  z-index: 2;
  display: grid;
  place-items: center;
  border: 2px solid rgba(255,255,255,.26);
  border-radius: 50%;
  background: linear-gradient(145deg, #303335, #181a1b);
  box-shadow: 0 25px 80px rgba(0,0,0,.5);
}

.welcome-orbit-core img {
  width: 62px;
  height: 62px;
}

.orbit-node {
  width: 58px;
  height: 58px;
  z-index: 3;
  position: absolute;
  display: grid;
  place-items: center;
  border: 2px solid rgba(255,255,255,.3);
  border-radius: 50%;
  box-shadow: 0 10px 25px rgba(0,0,0,.4);
}

.orbit-node img {
  width: 25px;
  height: 25px;
}

.node-one {
  top: 16%;
  left: 10%;
  background: #398d51;
}

.node-two {
  top: 27%;
  right: 4%;
  background: #2d99c7;
}

.node-three {
  left: 27%;
  bottom: 5%;
  background: #9d7927;
}

.welcome-trust-strip {
  min-height: 100px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-block: 1px solid rgba(255,255,255,.09);
  background: rgba(255,255,255,.02);
}

.welcome-trust-strip > div {
  padding: 25px;
  display: grid;
  place-content: center;
  gap: 5px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.09);
}

.welcome-trust-strip > div:last-child {
  border-right: 0;
}

.welcome-trust-strip strong {
  font-size: 12px;
  letter-spacing: 1.2px;
}

.welcome-trust-strip small {
  color: #777d7c;
  font-size: 12px;
}

.welcome-tour {
  width: min(1080px, calc(100% - 48px));
  margin: 100px auto;
}

.welcome-tour > header {
  margin-bottom: 28px;
  text-align: center;
}

.welcome-tour > header h2 {
  margin: 8px 0;
  font-size: 42px;
  letter-spacing: -2.3px;
}

.welcome-tour-panel {
  display: grid;
  grid-template-columns: 230px 1fr;
  overflow: hidden;
}

.welcome-tour-panel > nav {
  padding: 16px 12px;
  display: grid;
  align-content: center;
  gap: 5px;
  border-right: 1px solid rgba(255,255,255,.1);
  background: #1b1d1e;
}

.welcome-tour-panel > nav button {
  min-height: 70px;
  padding: 12px;
  display: grid;
  grid-template-columns: 30px 1fr auto;
  align-items: center;
  gap: 7px;
  border: 0;
  border-radius: 5px;
  background: transparent;
  color: #747a79;
  text-align: left;
  font: inherit;
}

.welcome-tour-panel > nav button b {
  font-size: 12px;
}

.welcome-tour-panel > nav button span {
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .7px;
}

.welcome-tour-panel > nav button i {
  font-style: normal;
}

.welcome-tour-panel > nav button.active {
  color: #fff;
}

.welcome-tour-panel > nav button.active.green { background: #378c50; }
.welcome-tour-panel > nav button.active.blue { background: #2d98c6; }
.welcome-tour-panel > nav button.active.gold { background: #9c7927; }

.welcome-step {
  min-height: 430px;
  padding: 52px;
  display: grid;
  grid-template-columns: 180px 1fr;
  align-items: center;
  gap: 45px;
  position: relative;
  overflow: hidden;
}

.welcome-step::after {
  content: "";
  width: 260px;
  height: 260px;
  position: absolute;
  right: -100px;
  bottom: -125px;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 50%;
  box-shadow: 0 0 0 35px rgba(255,255,255,.018), 0 0 0 70px rgba(255,255,255,.014);
}

.welcome-step-icon {
  width: 180px;
  height: 180px;
  display: grid;
  place-items: center;
  position: relative;
  border-radius: 50%;
  box-shadow: inset 0 1px rgba(255,255,255,.24), 0 28px 55px rgba(0,0,0,.35);
}

.welcome-step.green .welcome-step-icon { background: #378c50; }
.welcome-step.blue .welcome-step-icon { background: #2d98c6; }
.welcome-step.gold .welcome-step-icon { background: #9c7927; }

.welcome-step-icon img {
  width: 72px;
  height: 72px;
}

.welcome-step-icon span {
  position: absolute;
  right: 5px;
  bottom: 10px;
  color: rgba(255,255,255,.34);
  font-size: 36px;
  font-weight: 900;
}

.welcome-step h3 {
  max-width: 430px;
  margin: 9px 0 14px;
  font-size: 34px;
  line-height: 1;
  letter-spacing: -1.8px;
}

.welcome-step p {
  max-width: 480px;
  margin: 0;
  color: #909594;
  font-size: 12px;
  line-height: 1.65;
}

.welcome-step ul {
  margin: 18px 0 24px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  list-style: none;
}

.welcome-step li {
  color: #4fbcc0;
  font-size: 12px;
}

.welcome-step li span {
  margin-left: 5px;
  color: #a5aaa9;
}

.welcome-step a {
  display: inline-block;
  padding: 12px 15px;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 999px;
  color: #fff;
  text-decoration: none;
  font-size: 12px;
  font-weight: 900;
}

.welcome-principles {
  width: min(1080px, calc(100% - 48px));
  margin: 0 auto 95px;
  padding: 35px;
  display: grid;
  grid-template-columns: 1fr 1.3fr auto;
  align-items: center;
  gap: 34px;
  border: 1px dashed rgba(255,255,255,.17);
  border-radius: 7px;
}

.welcome-principles h2 {
  margin: 7px 0 0;
  font-size: 22px;
}

.welcome-principles > p {
  margin: 0;
  color: #848a89;
  font-size: 12px;
  line-height: 1.65;
}

.welcome-principles > a {
  color: #58bfc3;
  text-decoration: none;
  white-space: nowrap;
  font-size: 12px;
  font-weight: 900;
}

@media (max-width: 820px) {
  .search-results-shell {
    grid-template-columns: 1fr;
  }

  .search-filters {
    position: static;
  }

  .search-filters nav {
    grid-template-columns: repeat(6, auto);
    overflow-x: auto;
  }

  .search-filters nav button {
    min-width: 105px;
  }

  .welcome-intro {
    grid-template-columns: 1fr;
    padding-block: 70px;
  }

  .welcome-orbit {
    width: 380px;
    justify-self: center;
  }

  .welcome-principles {
    grid-template-columns: 1fr 1fr;
  }

  .welcome-principles > a {
    grid-column: 1 / 3;
  }
}

@media (max-width: 650px) {
  .search-results-shell,
  .search-help,
  .welcome-intro,
  .welcome-tour,
  .welcome-principles {
    width: calc(100% - 24px);
  }

  .search-hero {
    padding-inline: 12px;
  }

  .search-page-input {
    grid-template-columns: 22px 1fr auto;
  }

  .search-page-input kbd {
    display: none;
  }

  .search-results > header,
  .search-help {
    align-items: start;
    flex-direction: column;
  }

  .search-result-card {
    grid-template-columns: 58px 1fr auto;
    gap: 12px;
  }

  .search-result-icon {
    width: 58px;
    height: 70px;
  }

  .search-result-card p {
    display: none;
  }

  .welcome-orbit {
    width: min(360px, 100%);
  }

  .welcome-orbit-core {
    width: 120px;
    height: 120px;
  }

  .welcome-trust-strip {
    grid-template-columns: 1fr;
  }

  .welcome-trust-strip > div {
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.09);
  }

  .welcome-tour-panel {
    grid-template-columns: 1fr;
  }

  .welcome-tour-panel > nav {
    grid-template-columns: repeat(3, 1fr);
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.1);
  }

  .welcome-tour-panel > nav button {
    min-height: 60px;
    grid-template-columns: 1fr;
    text-align: center;
  }

  .welcome-tour-panel > nav button span,
  .welcome-tour-panel > nav button i {
    display: none;
  }

  .welcome-step {
    padding: 35px 22px;
    grid-template-columns: 1fr;
    gap: 27px;
  }

  .welcome-step-icon {
    width: 130px;
    height: 130px;
  }

  .welcome-step-icon img {
    width: 52px;
    height: 52px;
  }

  .welcome-principles {
    grid-template-columns: 1fr;
  }

  .welcome-principles > a {
    grid-column: 1;
  }
}

/* Readability baseline
   The interface keeps its compact VR-console hierarchy, but no meaningful
   copy, metadata or control label should render at mock-up scale. */
.inner-page p {
  font-size: clamp(13px, .82vw, 15px) !important;
  line-height: 1.65;
}

.site-shell p {
  font-size: clamp(13px, .82vw, 15px) !important;
  line-height: 1.6;
}

.inner-page small {
  font-size: clamp(12px, .7vw, 13px) !important;
  line-height: 1.45;
}

.site-shell small {
  font-size: clamp(12px, .7vw, 13px) !important;
  line-height: 1.45;
}

.inner-page .section-kicker {
  font-size: 12px !important;
  line-height: 1.3;
  letter-spacing: 1.35px;
}

.inner-page section a:not(.brand),
.inner-page article a,
.inner-page aside a,
.inner-page button:not(.icon-button):not(.menu-button) {
  font-size: max(12px, .75rem) !important;
}

.inner-nav a,
.inner-header-actions .enter-pill,
.header-profile-pill > b,
.site-footer a,
.site-footer > span {
  font-size: 12px !important;
}

.site-footer p {
  font-size: 12px !important;
  line-height: 1.6;
}

.global-search-results > span,
.global-search-results small,
.global-search-all,
.search-filters > header strong,
.search-filters > header small,
.search-result-card small,
.settings-sidebar strong,
.settings-group > div:first-child > span,
.account-sidebar-status strong,
.account-quick-grid small,
.privacy-nav > small,
.welcome-trust-strip strong {
  font-size: 12px !important;
  line-height: 1.35;
}

.global-search-results strong,
.global-search-results p,
.global-search-empty,
.search-result-card span b,
.settings-sidebar small,
.account-sidebar-status small,
.search-filters > div strong,
.search-filters > div small,
.welcome-trust-strip small {
  font-size: 12px !important;
  line-height: 1.5;
}

.guide-section-heading > p {
  max-width: 390px;
  color: #abb0af;
}

.pathway-card {
  min-height: 370px;
  padding: 30px;
}

.pathway-card > span {
  font-size: 12px !important;
  line-height: 1.3;
}

.pathway-card > p {
  color: #b1b5b4;
}

.pathway-card > div:last-child {
  left: 30px;
  right: 30px;
  bottom: 27px;
}

.latest-guides p,
.guide-help-strip p,
.saved-card p,
.search-result-card p,
.account-welcome p,
.privacy-content p,
.welcome-copy > p,
.welcome-step p {
  color: #adb2b1;
}

.pref-large-text .inner-page p {
  font-size: 17px !important;
}

.pref-large-text .inner-page small,
.pref-large-text .inner-page .section-kicker,
.pref-large-text .inner-page section a,
.pref-large-text .inner-page article a,
.pref-large-text .inner-page aside a,
.pref-large-text .inner-page button {
  font-size: 14px !important;
}

@media (max-width: 650px) {
  .inner-page p {
    font-size: 14px !important;
  }

  .inner-page small {
    font-size: 12px !important;
  }

  .pathway-card {
    min-height: 390px;
  }
}

/* Spatial world browser and community month calendar */
.world-filter-pills > a,
.event-filters > a {
  padding: 9px 12px;
  border: 1px solid rgba(75,193,197,.35);
  border-radius: 999px;
  color: #62c8cb;
  text-decoration: none;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .5px;
}

.map-page,
.calendar-page {
  background:
    radial-gradient(circle at 74% 12%, rgba(64,42,121,.28), transparent 28%),
    linear-gradient(180deg, rgba(15,17,18,.16), #0f1112 760px),
    url("/homespace-night.png?v=ddbbfd739039") center top / cover fixed no-repeat;
}

.map-heading,
.calendar-heading {
  width: min(1160px, calc(100% - 48px));
  margin: 0 auto;
  padding: 65px 0 35px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 35px;
}

.map-heading h1 {
  margin: 10px 0 16px;
  font-size: clamp(50px, 6.5vw, 78px);
  line-height: .9;
  letter-spacing: -4px;
}

.map-heading p,
.calendar-heading p {
  max-width: 550px;
  margin: 0;
  color: #a7acab;
}

.map-heading-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.map-heading-actions > label {
  padding: 10px 13px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 6px;
  background: rgba(255,255,255,.025);
  cursor: pointer;
}

.map-heading-actions input {
  position: absolute;
  opacity: 0;
}

.map-heading-actions label > i {
  width: 31px;
  height: 18px;
  padding: 3px;
  border-radius: 999px;
  background: #424746;
}

.map-heading-actions label > i::before {
  content: "";
  width: 12px;
  height: 12px;
  display: block;
  border-radius: 50%;
  background: #d3d5d4;
  transition: transform .2s ease;
}

.map-heading-actions input:checked + i {
  background: #3aafb4;
}

.map-heading-actions input:checked + i::before {
  transform: translateX(13px);
}

.map-heading-actions label > span {
  display: grid;
}

.map-heading-actions strong {
  font-size: 12px;
  letter-spacing: .7px;
}

.map-heading-actions small {
  color: #7f8584;
}

.map-heading-actions > a,
.calendar-heading nav a {
  padding: 12px 15px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 999px;
  color: #fff;
  text-decoration: none;
  font-size: 12px;
  font-weight: 850;
}

.world-map-shell {
  width: min(1160px, calc(100% - 48px));
  min-height: 610px;
  margin: 0 auto 24px;
  display: grid;
  grid-template-columns: 1fr 310px;
  overflow: hidden;
}

.world-map-stage {
  min-width: 0;
  display: grid;
  grid-template-rows: auto 1fr auto;
  background:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px),
    radial-gradient(circle at center, #202728, #151819 70%);
  background-size: 38px 38px, 38px 38px, auto;
}

.world-map-stage > header,
.world-map-stage > footer {
  min-height: 52px;
  padding: 0 19px;
  z-index: 6;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,.09);
  background: rgba(20,22,23,.8);
}

.world-map-stage > header > div {
  display: flex;
  align-items: center;
  gap: 9px;
}

.world-map-stage > header strong,
.world-map-stage > header small {
  font-size: 12px;
  letter-spacing: .8px;
}

.world-map-stage > header small {
  color: #747a79;
}

.world-map-field {
  min-height: 500px;
  position: relative;
  overflow: hidden;
}

.map-ring {
  position: absolute;
  left: 50%;
  top: 50%;
  border: 1px solid rgba(87,191,195,.12);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.ring-one { width: 240px; height: 240px; }
.ring-two { width: 440px; height: 440px; }
.ring-three { width: 680px; height: 680px; }

.map-route {
  height: 1px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform-origin: left;
  background: repeating-linear-gradient(90deg, rgba(89,202,206,.23) 0 6px, transparent 6px 12px);
}

.route-one { width: 240px; transform: rotate(-28deg); }
.route-two { width: 285px; transform: rotate(143deg); }
.route-three { width: 260px; transform: rotate(34deg); }

.map-node {
  padding: 0;
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 0;
  background: none;
  text-align: left;
  transform: translate(-50%, -50%);
}

.map-node > i {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 2px solid rgba(255,255,255,.45);
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(0,0,0,.35);
  transition: transform .2s ease, box-shadow .2s ease;
}

.map-node.active > i {
  transform: scale(1.22);
  box-shadow: 0 0 0 7px rgba(255,255,255,.08), 0 10px 25px rgba(0,0,0,.45);
}

.map-node.green > i { background: #398f50; }
.map-node.blue > i { background: #2d96c3; }
.map-node.teal > i { background: #367f86; }
.map-node.gold > i { background: #987526; }
.map-node.violet > i { background: #665091; }

.map-node img {
  width: 21px;
  height: 21px;
}

.map-node > span {
  min-width: 120px;
  padding: 7px 9px;
  display: grid;
  gap: 2px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 4px;
  background: rgba(20,22,23,.86);
  pointer-events: none;
}

.map-node > span strong {
  font-size: 12px;
}

.map-node > span small {
  color: #979c9b;
}

.map-you {
  width: 58px;
  height: 58px;
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 50%;
  background: #293033;
  transform: translate(-50%, -50%);
}

.map-you > span {
  font-size: 13px;
  font-weight: 900;
}

.map-you small {
  width: 90px;
  position: absolute;
  top: 65px;
  color: #7e8584;
  text-align: center;
}

.world-map-stage > footer {
  min-height: 43px;
  justify-content: flex-start;
  gap: 20px;
  border-top: 1px solid rgba(255,255,255,.09);
  border-bottom: 0;
}

.world-map-stage > footer span,
.calendar-key > div {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #8c9291;
  font-size: 12px;
}

.world-map-stage > footer i,
.calendar-key i {
  width: 7px;
  height: 7px;
  display: inline-block;
  border-radius: 50%;
}

.world-map-stage i.green,
.calendar-key i.green { background: #4ca362; }
.world-map-stage i.blue,
.calendar-key i.blue { background: #3b9bc3; }
.world-map-stage i.gold,
.calendar-key i.gold { background: #c39937; }
.world-map-stage i.violet,
.calendar-key i.violet { background: #856ab1; }
.calendar-key i.teal { background: #45afb4; }

.map-detail {
  border-left: 1px solid rgba(255,255,255,.1);
  background: #1c1f20;
}

.map-detail-cover {
  height: 205px;
  padding: 18px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(#19263a, #684a73 58%, #19201c 59%);
}

.map-detail-cover > span {
  padding: 6px 8px;
  position: relative;
  z-index: 3;
  border-radius: 3px;
  background: rgba(0,0,0,.36);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .7px;
}

.map-detail-cover > div i {
  width: 190px;
  height: 100px;
  position: absolute;
  left: -35px;
  bottom: -50px;
  border-radius: 50%;
  background: #293b2c;
}

.map-detail-cover > div i:nth-child(2) {
  left: 105px;
  bottom: -32px;
  background: #304734;
}

.map-detail-cover > div i:nth-child(3) {
  width: 6px;
  height: 19px;
  left: 150px;
  bottom: 38px;
  border-radius: 50% 50% 35% 35%;
  background: #ffb84b;
  box-shadow: 0 0 18px #ff8d2d;
}

.map-detail-copy {
  padding: 27px;
}

.map-detail-copy h2 {
  margin: 8px 0 12px;
  font-size: 29px;
  letter-spacing: -1.4px;
}

.map-detail-copy p {
  color: #aab0af;
}

.map-detail-copy dl {
  margin: 23px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.map-detail-copy dl > div {
  padding: 11px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 4px;
}

.map-detail-copy dt {
  margin-bottom: 5px;
  color: #757b7a;
  font-size: 12px;
  letter-spacing: .8px;
}

.map-detail-copy dd {
  margin: 0;
  font-size: 12px;
  font-weight: 800;
}

.map-detail-copy > a,
.map-detail-copy > button {
  width: 100%;
  min-height: 41px;
  margin-top: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 850;
}

.map-detail-copy > a {
  padding: 0 15px;
  background: #39adb2;
  color: #fff;
  text-decoration: none;
}

.map-detail-copy > button {
  padding: 0 15px;
  border: 1px solid rgba(255,255,255,.2);
  background: transparent;
}

.map-note {
  width: min(1160px, calc(100% - 48px));
  margin: 0 auto 90px;
  padding: 28px 30px;
  display: grid;
  grid-template-columns: 1fr 1.3fr auto;
  align-items: center;
  gap: 30px;
  border: 1px dashed rgba(255,255,255,.17);
  border-radius: 7px;
}

.map-note h2 {
  margin: 6px 0 0;
  font-size: 20px;
}

.map-note p {
  margin: 0;
}

.map-note a {
  color: #61c6ca;
  text-decoration: none;
  white-space: nowrap;
  font-size: 12px;
  font-weight: 850;
}

/* Month view */
.calendar-heading h1 {
  margin: 9px 0 8px;
  font-size: clamp(48px, 6vw, 72px);
  letter-spacing: -3.8px;
}

.calendar-heading nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.calendar-heading nav button {
  min-width: 39px;
  min-height: 39px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  background: rgba(255,255,255,.025);
}

.calendar-heading nav button:nth-child(2) {
  padding-inline: 15px;
}

.calendar-shell {
  width: min(1160px, calc(100% - 48px));
  margin: 0 auto 18px;
  display: grid;
  grid-template-columns: 1fr 270px;
  gap: 15px;
}

.month-grid {
  overflow: hidden;
}

.month-grid > header {
  min-height: 43px;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.month-grid > header span {
  display: grid;
  place-items: center;
  color: #7e8483;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .7px;
}

.month-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
}

.month-days > button,
.month-days > .empty {
  min-height: 116px;
  padding: 10px;
  border: 0;
  border-right: 1px solid rgba(255,255,255,.07);
  border-bottom: 1px solid rgba(255,255,255,.07);
  background: transparent;
  text-align: left;
}

.month-days > .empty {
  background: rgba(0,0,0,.08);
}

.month-days > button:hover,
.month-days > button.selected {
  background: rgba(48,174,179,.08);
}

.month-days > button.selected {
  box-shadow: inset 0 0 0 2px #3bb0b5;
}

.month-days > button > span {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 800;
}

.month-days > button.today > span {
  background: #38adb2;
}

.month-days button > div {
  margin-top: 7px;
  display: grid;
  gap: 4px;
}

.month-days button i {
  padding: 5px 6px;
  display: block;
  overflow: hidden;
  border-left: 3px solid;
  border-radius: 2px;
  background: rgba(255,255,255,.04);
  color: #adb2b1;
  font-size: 12px;
  font-style: normal;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.month-days button i b {
  margin-right: 5px;
  font-size: 12px;
}

.month-days button i.teal { border-color: #42b5b9; }
.month-days button i.blue { border-color: #3c9ac3; }
.month-days button i.green { border-color: #4aa05e; }
.month-days button i.gold { border-color: #c19936; }
.month-days button i.violet { border-color: #8065aa; }

.month-days button > small {
  margin-top: 5px;
  display: block;
  color: #777d7c;
}

.calendar-day-panel {
  overflow: hidden;
}

.calendar-day-panel > header {
  min-height: 170px;
  padding: 23px;
  display: grid;
  align-content: center;
  border-bottom: 1px solid rgba(255,255,255,.1);
  background: linear-gradient(145deg, rgba(58,176,181,.17), transparent);
}

.calendar-day-panel > header strong {
  margin-top: 18px;
  color: #68c9cc;
  font-size: 12px;
  letter-spacing: 1.1px;
}

.calendar-day-panel > header b {
  font-size: 52px;
  line-height: .95;
  letter-spacing: -3px;
}

.calendar-day-panel > header small {
  margin-top: 4px;
  color: #878d8c;
}

.calendar-day-events {
  min-height: 285px;
  padding: 18px;
}

.calendar-day-events article {
  padding: 15px 0;
  display: grid;
  grid-template-columns: 8px 1fr;
  gap: 11px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.calendar-event-dot {
  width: 7px;
  height: 7px;
  margin-top: 5px;
  border-radius: 50%;
}

.calendar-event-dot.teal { background: #42b5b9; }
.calendar-event-dot.blue { background: #3c9ac3; }
.calendar-event-dot.green { background: #4aa05e; }
.calendar-event-dot.gold { background: #c19936; }
.calendar-event-dot.violet { background: #8065aa; }

.calendar-day-events article small {
  color: #5fc3c7;
  font-weight: 850;
  letter-spacing: .7px;
}

.calendar-day-events article h2 {
  margin: 6px 0;
  font-size: 16px;
}

.calendar-day-events article p {
  margin: 0 0 10px;
}

.calendar-day-events article a,
.calendar-empty a {
  color: #5cc3c7;
  text-decoration: none;
  font-size: 12px;
  font-weight: 850;
}

.calendar-empty {
  min-height: 250px;
  display: grid;
  place-items: center;
  align-content: center;
  text-align: center;
}

.calendar-empty > span {
  color: #4fb9bd;
  font-size: 31px;
}

.calendar-empty h2 {
  margin: 10px 0 3px;
}

.calendar-empty p {
  margin: 0 0 14px;
}

.calendar-day-panel > footer {
  margin: 0 18px 18px;
  padding: 15px 0 0;
  display: flex;
  gap: 9px;
  border-top: 1px solid rgba(255,255,255,.08);
}

.calendar-day-panel > footer p {
  margin: 0;
  display: grid;
}

.calendar-day-panel > footer strong {
  font-size: 12px;
  letter-spacing: .7px;
}

.calendar-key {
  width: min(1160px, calc(100% - 48px));
  margin: 0 auto 90px;
  padding: 15px 18px;
  display: flex;
  align-items: center;
  gap: 22px;
  border: 1px dashed rgba(255,255,255,.15);
  border-radius: 5px;
}

.calendar-key > span {
  margin-right: auto;
  color: #686e6d;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .8px;
}

@media (max-width: 900px) {
  .world-map-shell,
  .calendar-shell {
    grid-template-columns: 1fr;
  }

  .map-detail {
    display: grid;
    grid-template-columns: 300px 1fr;
    border-left: 0;
    border-top: 1px solid rgba(255,255,255,.1);
  }

  .map-detail-cover {
    height: 100%;
  }

  .map-note {
    grid-template-columns: 1fr 1fr;
  }

  .map-note a {
    grid-column: 1 / 3;
  }

  .calendar-day-panel {
    display: grid;
    grid-template-columns: 180px 1fr;
  }

  .calendar-day-panel > footer {
    grid-column: 1 / 3;
  }
}

@media (max-width: 650px) {
  .map-heading,
  .calendar-heading,
  .world-map-shell,
  .map-note,
  .calendar-shell,
  .calendar-key {
    width: calc(100% - 24px);
  }

  .map-heading,
  .calendar-heading {
    padding-top: 45px;
    align-items: start;
    flex-direction: column;
  }

  .map-heading-actions,
  .calendar-heading nav {
    width: 100%;
    flex-wrap: wrap;
  }

  .world-map-shell {
    min-height: auto;
  }

  .world-map-field {
    min-height: 560px;
  }

  .map-node > span {
    display: none;
  }

  .map-detail {
    grid-template-columns: 1fr;
  }

  .map-detail-cover {
    height: 190px;
  }

  .map-note {
    grid-template-columns: 1fr;
  }

  .map-note a {
    grid-column: 1;
  }

  .world-map-stage > footer,
  .calendar-key {
    overflow-x: auto;
  }

  .world-map-stage > footer span,
  .calendar-key > div {
    white-space: nowrap;
  }

  .month-grid {
    overflow-x: auto;
  }

  .month-grid > header,
  .month-days {
    min-width: 760px;
  }

  .calendar-day-panel {
    grid-template-columns: 1fr;
  }

  .calendar-day-panel > header {
    min-height: 150px;
  }

  .calendar-day-panel > footer {
    grid-column: 1;
  }

  .calendar-key > span {
    min-width: 95px;
  }
}

/* Compact Worlds hero
   Keep the destination introduction prominent without consuming the entire
   first viewport or delaying the featured-world content. */
.worlds-hero {
  min-height: 410px;
  margin-top: 8px;
  margin-bottom: 32px;
  gap: 34px;
}

.worlds-hero h1 {
  max-width: 640px;
  margin: 13px 0 17px;
  font-size: clamp(48px, 5vw, 68px);
  line-height: .94;
  letter-spacing: -4px;
}

.worlds-hero-copy > p {
  max-width: 570px;
}

.worlds-hero-actions {
  margin-top: 23px;
}

.world-orbit-art {
  height: 350px;
  transform: scale(.84);
}

@media (max-width: 920px) {
  .worlds-hero {
    padding: 35px 0 20px;
    margin-bottom: 22px;
  }

  .worlds-hero h1 {
    font-size: clamp(48px, 9vw, 64px);
  }

  .world-orbit-art {
    height: 310px;
    margin: -12px 0;
    transform: scale(.78);
  }
}

@media (max-width: 650px) {
  .worlds-hero {
    padding-top: 28px;
  }

  .worlds-hero h1 {
    font-size: clamp(44px, 14vw, 56px);
    letter-spacing: -3px;
  }

  .world-orbit-art {
    height: 270px;
    margin: -22px 0;
    transform: scale(.68);
  }
}

/* Larger primary navigation */
.primary-nav,
.inner-nav {
  gap: 38px;
}

.primary-nav button,
.primary-nav a,
.inner-nav a {
  padding: 10px 2px;
  font-size: 15px !important;
  line-height: 1.2;
  letter-spacing: .35px;
}

.primary-nav button.active::after,
.primary-nav a.active::after,
.inner-nav a.active::after {
  bottom: 1px;
}

@media (max-width: 1040px) {
  .primary-nav,
  .inner-nav {
    gap: 24px;
  }

  .primary-nav button,
  .primary-nav a,
  .inner-nav a {
    font-size: 14px !important;
  }
}

@media (max-width: 820px) {
  .inner-nav {
    gap: 5px;
  }

  .inner-nav a {
    width: 100%;
    padding: 13px 12px;
    font-size: 16px !important;
  }

  .inner-nav a.active {
    border-radius: 5px;
    background: rgba(47,170,178,.14);
  }

  .inner-nav a.active::after {
    display: none;
  }
}

/* Compact Events hero */
.events-hero {
  min-height: 360px;
  margin-top: 8px;
  margin-bottom: 30px;
  gap: 34px;
}

.events-hero h1 {
  max-width: 700px;
  margin: 13px 0 17px;
  font-size: clamp(48px, 5vw, 68px);
  line-height: .94;
  letter-spacing: -4px;
}

.events-hero h1 small {
  margin-bottom: 10px;
  color: #f2f4f3;
  display: block;
  font-size: clamp(16px, 1.5vw, 20px) !important;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}

.events-hero h1 em {
  display: block;
}

.event-code-card {
  max-width: 350px;
  padding: 20px 22px;
  gap: 14px;
}

.event-code-card img {
  width: 44px;
  height: 44px;
}

@media (max-width: 920px) {
  .events-hero {
    padding: 35px 0 24px;
    margin-bottom: 22px;
  }

  .events-hero h1 {
    font-size: clamp(48px, 9vw, 64px);
  }
}

@media (max-width: 650px) {
  .events-hero {
    padding-top: 28px;
  }

  .events-hero h1 {
    font-size: clamp(44px, 14vw, 56px);
    letter-spacing: -3px;
  }

  .event-code-card {
    max-width: 100%;
  }
}

/* Compact Guides hero */
.guides-hero {
  min-height: 390px;
  margin-top: 8px;
  margin-bottom: 38px;
  gap: 42px;
}

.guides-hero h1 {
  max-width: 620px;
  margin: 13px 0 16px;
  font-size: clamp(48px, 4.8vw, 64px);
  line-height: .94;
  letter-spacing: -3.8px;
}

.guides-search {
  height: 50px;
  margin-top: 21px;
}

.guides-book-art {
  height: 320px;
}

.guides-book-art .guide-page,
.guides-book-art .guide-spine,
.guides-book-art > img {
  transform-origin: center;
}

@media (max-width: 850px) {
  .guides-hero {
    padding: 34px 0 20px;
    margin-bottom: 24px;
    gap: 25px;
  }

  .guides-hero h1 {
    font-size: clamp(48px, 9vw, 62px);
  }

  .guides-book-art {
    max-width: 500px;
    height: 300px;
  }
}

@media (max-width: 620px) {
  .guides-hero {
    padding-top: 27px;
  }

  .guides-hero h1 {
    font-size: clamp(44px, 14vw, 54px);
    letter-spacing: -3px;
  }

  .guides-book-art {
    height: 275px;
    transform: scale(.9);
    margin: -12px 0;
  }
}

/* Compact Community hero */
.community-hero {
  min-height: 390px;
  margin-top: 8px;
  margin-bottom: 34px;
  gap: 42px;
}

.community-hero h1 {
  max-width: 660px;
  margin: 13px 0 17px;
  font-size: clamp(48px, 4.9vw, 66px);
  line-height: .94;
  letter-spacing: -4px;
}

.community-hero-copy > a {
  margin-top: 23px;
}

.community-constellation {
  height: 340px;
}

.community-person.main {
  top: 98px;
}

.community-live {
  bottom: 15px;
}

@media (max-width: 920px) {
  .community-hero {
    padding: 35px 0 22px;
    margin-bottom: 24px;
    gap: 25px;
  }

  .community-hero h1 {
    font-size: clamp(48px, 9vw, 62px);
  }

  .community-constellation {
    max-width: 520px;
    height: 320px;
  }
}

@media (max-width: 650px) {
  .community-hero {
    padding-top: 28px;
  }

  .community-hero h1 {
    font-size: clamp(44px, 14vw, 54px);
    letter-spacing: -3px;
  }

  .community-constellation {
    height: 285px;
    transform: scale(.92);
    margin: -8px 0;
  }
}

/* Markdown readability overrides the global compact-interface baseline. */
.inner-page .markdown-body,
.inner-page .markdown-body p,
.inner-page .markdown-body li,
.inner-page .markdown-body td,
.inner-page .markdown-body th {
  font-size: 17px !important;
}

.inner-page .markdown-post-body > p:first-child {
  font-size: 22px !important;
}

.inner-page .markdown-post-body,
.inner-page .markdown-post-body p,
.inner-page .markdown-post-body li {
  font-size: 18px !important;
  line-height: 1.78;
}

.inner-page .markdown-page-heading > div > p {
  font-size: 18px !important;
}

.inner-page .markdown-body blockquote,
.inner-page .markdown-body blockquote p {
  font-size: 20px !important;
}

@media (max-width: 650px) {
  .inner-page .markdown-body,
  .inner-page .markdown-body p,
  .inner-page .markdown-body li,
  .inner-page .markdown-body td,
  .inner-page .markdown-body th {
    font-size: 16px !important;
  }

  .inner-page .markdown-post-body > p:first-child,
  .inner-page .markdown-body blockquote,
  .inner-page .markdown-body blockquote p {
    font-size: 18px !important;
  }
}

/* Markdown-powered blog */
.blog-page {
  background:
    radial-gradient(circle at 78% 7%, rgba(46, 36, 119, .28), transparent 31%),
    linear-gradient(180deg, rgba(8,13,25,.18), #080d19 760px),
    url("/homespace-night.png?v=ddbbfd739039") center top / cover fixed no-repeat;
}

.blog-page > section,
.blog-page > header,
.blog-page > nav,
.blog-page > .site-footer {
  position: relative;
  z-index: 1;
}

.blog-heading,
.blog-latest,
.blog-categories,
.blog-archive-heading {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.blog-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, .65fr);
  align-items: center;
  gap: 65px;
  min-height: 400px;
  padding: 35px 0 45px;
}

.blog-heading h1 {
  max-width: 680px;
  margin: 14px 0 18px;
  color: #f7f7f3;
  font-size: clamp(50px, 5.3vw, 70px);
  line-height: .94;
  letter-spacing: -4px;
}

.blog-heading h1 em {
  color: #58d3d9;
  font-style: normal;
}

.inner-page .blog-heading p {
  max-width: 620px;
  margin: 0;
  color: #b8bdbc;
  font-size: 16px !important;
}

.blog-signal {
  position: relative;
  display: grid;
  margin: 0;
  min-height: 285px;
  place-items: center;
  overflow: hidden;
  border-radius: 30px;
  background:
    radial-gradient(circle at center, rgba(70, 202, 211, .16), transparent 45%),
    #202324;
}

.blog-signal i {
  position: absolute;
  width: 210px;
  height: 120px;
  border: 1px solid rgba(84, 211, 218, .32);
  border-radius: 50%;
  transform: rotate(30deg);
}

.blog-signal i:nth-child(2) {
  transform: rotate(-30deg);
}

.blog-signal i:nth-child(3) {
  width: 145px;
  height: 145px;
  transform: none;
}

.blog-signal img {
  position: relative;
  z-index: 2;
  width: 72px;
  height: 72px;
}

.blog-signal span {
  position: absolute;
  bottom: 23px;
  color: #70dce1;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.4px;
}

.blog-signal.blog-avatar-card {
  display: block;
}

.blog-signal.blog-avatar-card img {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.blog-category-bar {
  display: flex;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto 34px;
  padding: 9px;
  overflow-x: auto;
  border-radius: 999px;
  scrollbar-width: none;
}

.blog-category-bar::-webkit-scrollbar {
  display: none;
}

.blog-category-bar a {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 9px;
  border-radius: 999px;
  padding: 11px 17px;
  color: #aeb3b2;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.blog-category-bar a:hover,
.blog-category-bar a.active {
  background: #35acb7;
  color: #fff;
}

.blog-category-bar a span {
  display: grid;
  min-width: 21px;
  height: 21px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, .12);
  font-size: 12px;
}

.blog-featured {
  display: grid;
  grid-template-columns: 1.06fr .94fr;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto 68px;
  overflow: hidden;
  border-radius: 31px;
}

.blog-featured-art {
  position: relative;
  display: grid;
  min-height: 390px;
  place-items: center;
  overflow: hidden;
  background: linear-gradient(150deg, #54306f, #172445);
}

.accent-green .blog-featured-art,
.accent-green .blog-card-art {
  background: linear-gradient(150deg, #2e7750, #152b31);
}

.accent-gold .blog-featured-art,
.accent-gold .blog-card-art {
  background: linear-gradient(150deg, #8c6724, #342c20);
}

.accent-blue .blog-featured-art,
.accent-blue .blog-card-art {
  background: linear-gradient(150deg, #277e9f, #18304c);
}

.blog-featured-art > span,
.blog-card-art > span {
  position: absolute;
  top: 22px;
  left: 23px;
  z-index: 3;
  border-radius: 999px;
  background: rgba(10, 12, 23, .65);
  padding: 8px 12px;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.15px;
}

.blog-featured-art > img {
  position: relative;
  z-index: 3;
  width: 92px;
  height: 92px;
}

.blog-featured-landscape i {
  position: absolute;
  right: -12%;
  bottom: -45%;
  width: 75%;
  height: 90%;
  border-radius: 45% 45% 0 0;
  background: #0f1930;
  transform: rotate(-14deg);
}

.blog-featured-landscape i:nth-child(2) {
  right: 40%;
  bottom: -55%;
  background: #161b39;
  transform: rotate(18deg);
}

.blog-featured-landscape i:nth-child(3) {
  right: 24%;
  bottom: -75%;
  background: rgba(86, 210, 217, .14);
  transform: none;
}

.blog-featured > div:last-child {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(35px, 5vw, 68px);
}

.blog-featured-category {
  color: #5bd6dc;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.2px;
  text-decoration: none;
  text-transform: uppercase;
}

.blog-featured h2 {
  margin: 16px 0;
  font-size: clamp(35px, 3.7vw, 52px);
  line-height: 1;
  letter-spacing: -2.6px;
}

.blog-featured h2 a {
  color: #f7f7f3;
  font-size: inherit !important;
  text-decoration: none;
}

.inner-page .blog-featured p {
  margin: 0;
  color: #b5bab9;
  font-size: 15px !important;
}

.blog-featured footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 35px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding-top: 22px;
  color: #858b8a;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.blog-featured footer a {
  color: #fff;
  font-size: 12px !important;
  text-decoration: none;
}

.blog-featured footer b,
.blog-card footer b {
  margin-left: 8px;
  color: #60d7dc;
}

.blog-latest {
  margin-bottom: 75px;
}

.blog-latest > header,
.blog-categories > header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 26px;
}

.blog-latest h2,
.blog-categories h2 {
  margin: 8px 0 0;
  font-size: clamp(34px, 3.5vw, 48px);
  letter-spacing: -2.5px;
}

.inner-page .blog-latest > header > p {
  margin: 0 0 5px;
  color: #858b8a;
  font-size: 13px !important;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.blog-card {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  min-height: 290px;
  overflow: hidden;
  border-radius: 26px;
}

.blog-card-art {
  position: relative;
  display: grid;
  min-height: 100%;
  place-items: center;
  overflow: hidden;
  background: linear-gradient(150deg, #654080, #272442);
}

.blog-card-art > img {
  position: relative;
  z-index: 2;
  width: 57px;
  height: 57px;
}

.blog-card-orbit i {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 175px;
  height: 80px;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 50%;
  transform: translate(-50%, -50%) rotate(32deg);
}

.blog-card-orbit i:nth-child(2) {
  transform: translate(-50%, -50%) rotate(-32deg);
}

.blog-card-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 28px;
}

.blog-card-meta {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  color: #7f8685;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.blog-card-meta a {
  color: #5fd7dc;
  font-size: inherit !important;
  text-decoration: none;
}

.blog-card h2 {
  margin: 15px 0 11px;
  font-size: 25px;
  line-height: 1.08;
  letter-spacing: -1px;
}

.blog-card h2 a {
  color: #f7f7f3;
  font-size: inherit !important;
  text-decoration: none;
}

.inner-page .blog-card p {
  margin: 0;
  color: #aeb3b2;
  font-size: 14px !important;
  line-height: 1.55;
}

.blog-card footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  border-top: 1px solid rgba(255, 255, 255, .09);
  padding-top: 17px;
  color: #7f8584;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.blog-card footer a {
  color: #fff;
  font-size: 12px !important;
  text-decoration: none;
}

.blog-categories {
  margin-bottom: 90px;
}

.blog-categories > div {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.blog-categories > div > a {
  position: relative;
  display: flex;
  min-height: 250px;
  flex-direction: column;
  border-radius: 22px;
  overflow: hidden;
  color: #fff;
  text-decoration: none;
  transition: transform .2s ease, border-color .2s ease;
}

.blog-categories > div > a:hover {
  border-color: rgba(95, 215, 220, .45);
  transform: translateY(-4px);
}

.blog-category-thumb {
  position: relative;
  display: block;
  height: 142px;
  overflow: hidden;
  background: #101726;
}

.blog-category-thumb::after {
  content: "";
  position: absolute;
  inset: 45% 0 0;
  background: linear-gradient(transparent, rgba(22, 24, 25, .92));
}

.blog-category-thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .35s ease;
}

.blog-categories > div > a:hover .blog-category-thumb img {
  transform: scale(1.045);
}

.blog-category-copy {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 17px 19px 18px;
}

.blog-category-copy > strong {
  margin-top: auto;
  font-size: 19px;
  line-height: 1.1;
}

.blog-category-copy > small {
  margin-top: 7px;
  color: #8e9493;
}

.blog-categories a > b {
  position: absolute;
  right: 16px;
  bottom: 17px;
  color: #5fd7dc;
}

.blog-archive-heading {
  display: grid;
  grid-template-columns: 1fr 220px;
  align-items: center;
  gap: 45px;
  min-height: 330px;
  padding: 38px 0;
}

.blog-archive-heading > div:first-child > a {
  display: block;
  margin-bottom: 30px;
  color: #8f9695;
  font-size: 12px !important;
  font-weight: 900;
  letter-spacing: 1.2px;
  text-decoration: none;
}

.blog-archive-heading h1 {
  margin: 11px 0 12px;
  font-size: clamp(48px, 5.5vw, 72px);
  letter-spacing: -4px;
}

.inner-page .blog-archive-heading p {
  margin: 0;
  color: #aeb3b2;
  font-size: 16px !important;
}

.blog-archive-art {
  min-height: 190px;
  overflow: hidden;
  border-radius: 28px;
}

.blog-archive-art img {
  width: 100%;
  height: 190px;
  display: block;
  object-fit: cover;
}

.blog-archive-list {
  min-height: 360px;
}

@media (max-width: 1050px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .blog-categories > div {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .blog-heading {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 50px;
  }

  .blog-signal {
    min-height: 240px;
  }

  .blog-featured {
    grid-template-columns: 1fr;
  }

  .blog-featured-art {
    min-height: 290px;
  }

  .blog-archive-heading {
    grid-template-columns: 1fr 160px;
  }
}

@media (max-width: 650px) {
  .blog-heading,
  .blog-latest,
  .blog-categories,
  .blog-archive-heading,
  .blog-category-bar,
  .blog-featured {
    width: min(100% - 30px, 1180px);
  }

  .blog-heading {
    gap: 25px;
    padding: 34px 0 28px;
  }

  .blog-heading h1 {
    font-size: clamp(44px, 13vw, 56px);
    letter-spacing: -3px;
  }

  .blog-signal {
    display: none;
  }

  .blog-category-bar {
    border-radius: 18px;
  }

  .blog-featured {
    margin-bottom: 50px;
  }

  .blog-featured-art {
    min-height: 230px;
  }

  .blog-featured > div:last-child {
    padding: 28px 24px;
  }

  .blog-featured h2 {
    font-size: 34px;
  }

  .blog-featured footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .blog-latest > header,
  .blog-categories > header {
    align-items: flex-start;
    flex-direction: column;
  }

  .blog-card {
    grid-template-columns: 1fr;
  }

  .blog-card-art {
    min-height: 195px;
  }

  .blog-card-copy {
    min-height: 270px;
    padding: 24px;
  }

  .blog-categories > div {
    grid-template-columns: 1fr 1fr;
  }

  .blog-categories > div > a {
    min-height: 155px;
  }

  .blog-archive-heading {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 35px 0;
  }

  .blog-archive-art,
  .blog-archive-art img {
    min-height: 220px;
    height: 220px;
  }

  .blog-archive-heading h1 {
    font-size: 48px;
    letter-spacing: -3px;
  }
}

/* Article discovery and syndication */
.post-labels .post-category-link {
  border-left: 1px solid rgba(255, 255, 255, .15);
  padding-left: 10px;
  color: #d7dcdb;
  font-size: 12px !important;
  letter-spacing: 1.1px;
  text-decoration: none;
  text-transform: uppercase;
}

.post-labels .post-category-link:hover {
  color: #67d4d7;
}

.post-rail-discover {
  margin-top: 14px;
}

.blog-related-card {
  min-height: 95px;
  border: 1px solid rgba(255, 255, 255, .11);
  background: linear-gradient(120deg, #27232d, #1e2325);
}

.blog-related-card.accent-violet {
  background: linear-gradient(120deg, #4d3566, #282439);
}

.blog-related-card.accent-green {
  background: linear-gradient(120deg, #285b39, #21382d);
}

.blog-related-card.accent-gold {
  background: linear-gradient(120deg, #6d5428, #493d28);
}

.blog-related-card.accent-blue {
  background: linear-gradient(120deg, #285c76, #243448);
}

.blog-related-card strong {
  max-width: 300px;
  line-height: 1.25;
}

.blog-category-bar .blog-feed-link {
  margin-left: auto;
  color: #65d5da;
}

.blog-category-bar .blog-feed-link:hover {
  color: #fff;
}

@media (max-width: 650px) {
  .post-labels {
    flex-wrap: wrap;
  }

  .related-section > div {
    grid-template-columns: 1fr;
  }

  .blog-category-bar .blog-feed-link {
    margin-left: 0;
  }
}
