:root {
  color-scheme: dark;
  --workspace: #0f0f0f;
  --panel: #181818;
  --raised: #202020;
  --green: #a6ce39;
  --green-deep: #7fae26;
  --foreground: #f8f8f8;
  --muted: #a1a19d;
  --line: rgba(248, 248, 248, 0.13);
  --shell: min(1240px, calc(100vw - 80px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 106px;
  overflow-x: clip;
}

body {
  margin: 0;
  background: var(--workspace);
  color: var(--foreground);
  font-family: Inter, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

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

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--green);
  color: var(--workspace);
  font-weight: 700;
  transform: translateY(-180%);
}

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

.page-shell {
  width: var(--shell);
  margin-inline: auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 50%;
  z-index: 10;
  isolation: isolate;
  width: var(--shell);
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  background: transparent;
  box-shadow: none;
  overflow: visible;
  transform: translateX(-50%);
}

.site-header::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  width: 100vw;
  margin-left: 50%;
  border-bottom: 1px solid rgba(248, 248, 248, 0.18);
  background: rgba(15, 15, 15, 0.94);
  transform: translateX(-50%);
  pointer-events: none;
}

.brand {
  display: inline-block;
  width: 154px;
  overflow: hidden;
}

.brand img {
  width: 154px;
  height: auto;
}

.site-header nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 30px);
}

.menu-toggle {
  display: none;
}

.help-menu {
  position: relative;
}

.site-header nav .help-menu__toggle {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(248, 248, 248, 0.76);
  font: inherit;
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.site-header nav .help-menu__toggle:hover,
.site-header nav .help-menu__toggle:focus-visible {
  color: var(--foreground);
}

.help-menu__list {
  position: absolute;
  top: calc(100% + 14px);
  right: 0;
  display: grid;
  min-width: 190px;
  padding: 8px;
  border: 1px solid var(--line);
  background: #151515;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.4);
}

.help-menu__list[hidden] {
  display: none;
}

.site-header nav .help-menu__list a {
  padding: 10px 12px;
  color: rgba(248, 248, 248, 0.82);
  font-size: 11px;
}

.site-header nav .help-menu__list a:hover,
.site-header nav .help-menu__list a:focus-visible {
  background: rgba(166, 206, 57, 0.12);
  color: var(--foreground);
}

.site-header nav a {
  color: rgba(248, 248, 248, 0.76);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.site-header nav a:hover,
.site-header nav a:focus-visible {
  color: var(--foreground);
}

.site-header nav .nav-status {
  color: var(--green);
  padding: 10px 16px;
  border: 1px solid rgba(166, 206, 57, 0.55);
  border-radius: 999px;
}

.site-header nav .discord-nav {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  padding: 9px 14px;
  border: 1px solid rgba(248, 248, 248, 0.22);
  border-radius: 999px;
  color: var(--foreground);
  white-space: nowrap;
}

.discord-nav img,
.footer-discord img {
  display: block;
  filter: invert(1);
}

.site-header nav .discord-nav:hover,
.site-header nav .discord-nav:focus-visible {
  border-color: rgba(166, 206, 57, 0.62);
  color: var(--green);
}

.hero {
  position: relative;
  min-height: 810px;
  height: 100svh;
  max-height: 980px;
  display: grid;
  align-items: end;
  overflow: hidden;
  border-bottom: 1px solid rgba(248, 248, 248, 0.1);
  isolation: isolate;
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: -3;
  background: #050505;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% 50%;
  filter: saturate(0.7) contrast(1.08) brightness(0.66);
  animation: terrain-reveal 1400ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(15, 15, 15, 0.95) 0%, rgba(15, 15, 15, 0.72) 34%, rgba(15, 15, 15, 0.1) 70%),
    linear-gradient(180deg, rgba(15, 15, 15, 0.26) 0%, rgba(15, 15, 15, 0.02) 50%, var(--workspace) 100%);
}

.hero-content {
  padding-bottom: clamp(94px, 12vh, 138px);
}

.kicker,
.section-number {
  margin: 0 0 22px;
  color: var(--green);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

h1,
h2,
h3 {
  margin-top: 0;
  font-weight: 540;
}

h1 {
  max-width: 880px;
  margin-bottom: 28px;
  font-size: clamp(58px, 6.5vw, 100px);
  line-height: 0.88;
  letter-spacing: -0.065em;
  text-transform: uppercase;
  white-space: nowrap;
}

h1 span {
  color: var(--green);
}

.hero-copy {
  max-width: 535px;
  margin: 0 0 36px;
  color: rgba(248, 248, 248, 0.72);
  font-size: clamp(17px, 1.7vw, 21px);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 12px;
}

.download-offer {
  display: grid;
  gap: 10px;
}

.download-label {
  margin: 0;
  color: rgba(248, 248, 248, 0.68);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.04em;
}

.download-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: max-content;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid rgba(166, 206, 57, 0.52);
  border-radius: 999px;
  background: rgba(166, 206, 57, 0.13);
  color: rgba(248, 248, 248, 0.76);
  font: inherit;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.07em;
  line-height: 1.2;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  transition: border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.download-action:hover,
.download-action:focus-visible {
  border-color: #b6df45;
  background: rgba(166, 206, 57, 0.2);
  box-shadow: 0 10px 26px rgba(166, 206, 57, 0.16);
  color: var(--foreground);
  transform: translateY(-2px);
}

.download-action:active {
  transform: translateY(0);
}

.download-status {
  padding-left: 14px;
  border-left: 1px solid rgba(166, 206, 57, 0.34);
  color: var(--green);
  font-size: 9px;
  letter-spacing: 0.12em;
  white-space: nowrap;
}

.primary-action,
.secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.09em;
  text-decoration: none;
  text-transform: uppercase;
  transition: border-color 180ms ease, background-color 180ms ease, color 180ms ease;
}

.primary-action {
  border: 1px solid var(--green);
  background: var(--green);
  color: var(--workspace);
}

.primary-action:hover,
.primary-action:focus-visible {
  border-color: #b6df45;
  background: #b6df45;
}

.secondary-action {
  border: 1px solid rgba(248, 248, 248, 0.38);
  color: var(--foreground);
}

.secondary-action:hover,
.secondary-action:focus-visible {
  border-color: var(--foreground);
}

.hero-caption {
  position: absolute;
  right: 28px;
  bottom: 34px;
  margin: 0;
  color: rgba(248, 248, 248, 0.44);
  font-size: 10px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  transform: rotate(-90deg) translateX(100%);
  transform-origin: right bottom;
}

.section {
  padding-block: clamp(104px, 13vw, 184px);
}

.section h2:not(.section-number) {
  margin-bottom: 30px;
  font-size: clamp(44px, 6vw, 82px);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.section-intro {
  max-width: 940px;
  margin-bottom: 76px;
}

.section-lead {
  max-width: 920px;
  margin: 0;
  color: rgba(248, 248, 248, 0.86);
  font-size: clamp(25px, 3.1vw, 43px);
  line-height: 1.25;
  letter-spacing: -0.025em;
}

.materials {
  border-bottom: 1px solid var(--line);
}

.material-stage {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 2.4vw, 34px);
  align-items: center;
  padding: 28px 3% 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: linear-gradient(135deg, #151515, #101010);
}

.material-study {
  display: grid;
  justify-items: center;
  gap: 14px;
  margin: 0;
}

.material-study img {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: contain;
}

.material-study figcaption {
  color: #bdbdb8;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.studio {
  background: var(--panel);
}

.studio-heading {
  max-width: 980px;
  margin-bottom: 74px;
}

.studio-presentation {
  margin-block: 0;
}

.studio-window {
  overflow: hidden;
  border: 1px solid rgba(248, 248, 248, 0.18);
  border-radius: 4px;
  background: #111;
  box-shadow: 0 36px 90px rgba(0, 0, 0, 0.42);
}

.studio-window__image {
  width: 100%;
  height: auto;
  object-fit: contain;
  background: #111;
}

.presentation-caption {
  margin: 20px 0 0;
  color: #777773;
  font-size: 12px;
}

.workflow {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.workflow-heading {
  max-width: 840px;
  margin-bottom: 48px;
}

.workflow-heading .section-number {
  margin-bottom: 0;
}

.workflow-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.workflow-grid article {
  min-width: 0;
  padding: 34px 28px 40px;
  border-right: 1px solid var(--line);
}

.workflow-grid article:first-child {
  padding-left: 0;
}

.workflow-grid article:last-child {
  padding-right: 0;
  border-right: 0;
}

.workflow-step {
  margin: 0;
  color: var(--green);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.workflow-step span {
  color: var(--foreground);
}

.workflow-grid h3 {
  min-height: 2.25em;
  margin: 34px 0 18px;
  font-size: clamp(25px, 2.5vw, 36px);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.workflow-grid article > p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.file-support {
  display: flex;
  align-items: center;
  gap: 28px;
  padding-top: 24px;
  color: #777773;
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.file-support p,
.file-support ul {
  margin: 0;
}

.file-support p {
  color: var(--green);
}

.file-support ul {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  padding: 0;
  list-style: none;
}

.file-support li + li::before {
  content: "·";
  margin-right: 24px;
  color: rgba(166, 206, 57, 0.58);
}

.development {
  position: relative;
  overflow: hidden;
  background: var(--raised);
}

.development-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(260px, 0.7fr);
  gap: 80px;
  align-items: end;
}

.development-inner .section-number,
.development-inner h2 {
  grid-column: 1;
}

.development-inner h2 {
  margin-bottom: 0;
}

.development-copy {
  grid-column: 2;
  grid-row: 1 / 3;
}

.development-copy > p:first-child {
  margin: 0;
  color: #b6b6b0;
  line-height: 1.72;
}

.status-line {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 32px 0 0;
  color: var(--foreground);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.status-line span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 14px rgba(166, 206, 57, 0.46);
  animation: status-pulse 2.4s ease-in-out infinite;
}

.site-footer {
  min-height: 155px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  gap: 30px;
  color: #777773;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.site-footer p {
  margin: 0;
}

.footer-meta {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
}

.footer-meta p {
  text-align: right;
  white-space: nowrap;
}

.footer-discord {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  border: 1px solid rgba(248, 248, 248, 0.16);
  border-radius: 50%;
  opacity: 0.72;
}

.footer-discord:hover,
.footer-discord:focus-visible {
  border-color: rgba(166, 206, 57, 0.62);
  opacity: 1;
}

.footer-brand {
  color: var(--foreground);
  font-weight: 750;
  text-decoration: none;
}

@keyframes terrain-reveal {
  from { opacity: 0; transform: scale(1.025); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes status-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.45; }
}

@media (max-width: 820px) {
  :root {
    --shell: min(100% - 40px, 680px);
  }

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

  .brand,
  .brand img {
    width: 128px;
  }

  .site-header nav a:not(.discord-nav) {
    display: none;
  }

  .site-header nav .discord-nav {
    font-size: 10px;
    padding: 8px 12px;
  }

  .hero {
    min-height: 720px;
  }

  .hero-media img {
    object-position: 62% 50%;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(15, 15, 15, 0.94), rgba(15, 15, 15, 0.22)),
      linear-gradient(180deg, rgba(15, 15, 15, 0.32), rgba(15, 15, 15, 0.05) 45%, var(--workspace));
  }

  .hero-content {
    padding-bottom: 82px;
  }

  h1 {
    font-size: clamp(52px, 16vw, 76px);
    white-space: normal;
  }

  .hero-caption {
    display: none;
  }

  .development-inner {
    display: block;
  }

  .development-copy {
    max-width: 580px;
    margin-top: 28px;
  }

  .material-stage {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 20px;
    padding: 26px 7% 24px;
  }

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

  .workflow-grid article,
  .workflow-grid article:first-child,
  .workflow-grid article:last-child {
    padding: 30px 0 34px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .workflow-grid article:last-child {
    border-bottom: 0;
  }

  .workflow-grid h3 {
    min-height: 0;
    margin-top: 20px;
  }

  .file-support {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .file-support ul {
    display: grid;
    gap: 8px;
  }

  .file-support li + li::before {
    content: none;
  }

  .site-footer {
    min-height: 190px;
    grid-template-columns: 1fr auto;
  }

  .site-footer p:nth-child(2) {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .footer-meta {
    grid-column: 2;
    grid-row: 1;
  }

  .footer-meta p {
    display: none;
  }
}

@media (max-width: 480px) {
  :root {
    --shell: calc(100% - 32px);
  }

  .download-action {
    width: max-content;
  }

  .hero {
    min-height: 680px;
  }

  .hero-content {
    padding-bottom: 68px;
  }

  h1 {
    font-size: clamp(49px, 16vw, 66px);
  }

  .hero-copy {
    font-size: 16px;
  }

  .section {
    padding-block: 88px;
  }

  .section h2:not(.section-number) {
    font-size: 43px;
  }

  .material-stage {
    gap: 24px 16px;
    padding-inline: 5%;
  }

  .presentation-caption {
    line-height: 1.55;
  }

  .site-footer {
    padding-block: 34px;
  }
}

.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;
}

.content-page { min-height: 100svh; padding-top: 150px; }

.content-hero {
  padding: clamp(64px, 10vw, 122px) 0 clamp(50px, 7vw, 92px);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(135deg, #151515, #0f0f0f 66%);
}

.content-hero h1 {
  max-width: 900px;
  margin-bottom: 20px;
  font-size: clamp(45px, 6vw, 84px);
  white-space: normal;
}

.content-hero p {
  max-width: 760px;
  margin: 0;
  color: rgba(248, 248, 248, 0.74);
  font-size: clamp(18px, 2vw, 25px);
}

.content-page--guide .content-hero h1,
.content-page--compact .content-hero h1 {
  font-size: clamp(32px, 4vw, 54px);
  letter-spacing: -0.045em;
}

.content-page--guide .content-hero p:not(.kicker),
.content-page--compact .content-hero p:not(.kicker) {
  font-size: clamp(16px, 1.4vw, 19px);
}

.content-body { max-width: 880px; padding-block: clamp(58px, 9vw, 110px); }
.content-page--compact .content-body > article + article { margin-top: clamp(46px, 7vw, 82px); padding-top: clamp(34px, 5vw, 58px); border-top: 1px solid var(--line); }
.content-body h2 { margin: 54px 0 18px; font-size: clamp(28px, 3.4vw, 44px); letter-spacing: -0.04em; }
.content-body h2:first-child { margin-top: 0; }
.content-body p, .content-body li { color: #c6c6c1; line-height: 1.72; }
.content-body ul, .content-body ol { padding-left: 1.3rem; }
.content-body li + li { margin-top: 10px; }
.content-body strong { color: var(--foreground); }

.content-card { margin-top: 36px; padding: 26px; border: 1px solid var(--line); background: var(--panel); }
.content-card p:last-child { margin-bottom: 0; }

.alpha-form { display: grid; gap: 18px; max-width: 510px; margin-top: 32px; }
.alpha-form label { color: var(--foreground); font-size: 13px; font-weight: 700; letter-spacing: 0.04em; }
.alpha-form input { width: 100%; min-height: 48px; margin-top: 8px; padding: 0 14px; border: 1px solid rgba(248, 248, 248, 0.28); background: #0d0d0d; color: var(--foreground); font: inherit; }
.alpha-form input:disabled { cursor: not-allowed; opacity: 0.68; }
.alpha-form button { width: max-content; min-height: 46px; padding: 0 20px; border: 1px solid var(--green); border-radius: 999px; background: var(--green); color: var(--workspace); font: inherit; font-size: 11px; font-weight: 750; letter-spacing: 0.08em; text-transform: uppercase; cursor: pointer; }
.alpha-form button:disabled { cursor: wait; opacity: 0.72; }
.alpha-status { min-height: 1.6em; margin: 0; color: var(--muted); }
.alpha-status[data-state="error"] { color: #f3c1b9; }
.alpha-status[data-state="success"] { color: var(--green); font-weight: 750; letter-spacing: 0.08em; text-transform: uppercase; }
.alpha-form[data-state="granted"] { padding: 24px; border: 1px solid rgba(166, 206, 57, 0.34); background: linear-gradient(135deg, rgba(166, 206, 57, 0.1), rgba(24, 24, 24, 0.94)); box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24); }
.alpha-form[data-state="granted"] label { display: none; }
.inline-link { color: var(--green); }

@media (max-width: 820px) {
  html { scroll-padding-top: 88px; }
  .site-header { gap: 16px; }
  .menu-toggle { display: inline-flex; align-items: center; justify-content: center; min-height: 36px; padding: 0 12px; border: 1px solid rgba(248, 248, 248, 0.28); border-radius: 999px; background: rgba(15, 15, 15, 0.85); color: var(--foreground); font: inherit; font-size: 10px; font-weight: 750; letter-spacing: 0.1em; text-transform: uppercase; }
  .site-header nav { position: absolute; top: calc(100% + 10px); right: 0; display: none; width: min(300px, 100%); align-items: stretch; gap: 0; padding: 10px; border: 1px solid var(--line); background: #151515; box-shadow: 0 18px 42px rgba(0, 0, 0, 0.42); }
  .site-header nav[data-open="true"] { display: grid; }
  .site-header nav a:not(.discord-nav), .site-header nav .help-menu__toggle { display: block; min-height: 42px; padding: 12px; text-align: left; }
  .site-header nav .nav-status { margin-top: 6px; border-radius: 0; }
  .help-menu__list { position: static; min-width: 0; padding: 0 0 4px 12px; border: 0; box-shadow: none; background: transparent; }
  .site-header nav .help-menu__list a { display: block; padding: 9px 12px; }
  .content-page { padding-top: 112px; }
}

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

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
