:root {
  --ink: #080909;
  --panel: #101211;
  --panel-soft: #171a18;
  --line: rgba(222, 235, 220, 0.15);
  --muted: #879087;
  --paper: #e7ede0;
  --acid: #b8f34a;
  --acid-soft: rgba(184, 243, 74, 0.14);
  --ember: #ff6745;
  --mono: "DM Mono", monospace;
  --display: "Space Grotesk", sans-serif;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  min-width: 320px;
  color: var(--paper);
  background: var(--ink);
  font-family: var(--display);
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(
      circle at 78% 35%,
      rgba(184, 243, 74, 0.08),
      transparent 25rem
    ),
    radial-gradient(
      circle at 10% 80%,
      rgba(255, 103, 69, 0.07),
      transparent 24rem
    ),
    linear-gradient(125deg, #070807, #111512 54%, #080908);
}
.noise {
  position: fixed;
  inset: 0;
  z-index: 5;
  opacity: 0.035;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}
a {
  color: inherit;
}
.site-header,
.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1320px;
  margin: auto;
  padding: 28px 5vw;
  font: 11px var(--mono);
  letter-spacing: 0.1em;
}
.brand,
.header-social {
  text-decoration: none;
}
.brand {
  display: flex;
  gap: 12px;
  align-items: center;
  font-weight: 500;
  letter-spacing: 0.14em;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 1px solid var(--acid);
  color: var(--acid);
  font: 11px var(--mono);
  transform: rotate(-10deg);
}
.header-social {
  color: var(--acid);
  transition: color 0.2s ease;
}
.header-social:hover {
  color: var(--paper);
}
.layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(500px, 1.1fr);
  gap: clamp(40px, 9vw, 150px);
  max-width: 1180px;
  min-height: calc(100vh - 150px);
  margin: auto;
  padding: clamp(55px, 9vw, 130px) 5vw 60px;
}
.intro {
  position: sticky;
  top: clamp(24px, 10vh, 72px);
  align-self: start;
  animation: rise 0.7s ease both;
}
.eyebrow,
.panel-kicker,
.edition-note,
.progress-meta,
.site-footer {
  color: var(--muted);
  font: 10px var(--mono);
  letter-spacing: 0.14em;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--acid);
}
.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 14px var(--acid);
  animation: pulse 2.2s ease-in-out infinite;
}
h1 {
  margin: 25px 0 23px;
  font-size: clamp(4rem, 8vw, 7.2rem);
  line-height: 0.82;
  letter-spacing: -0.06em;
  font-weight: 600;
}
h1 em,
.success-state em {
  color: var(--acid);
  font-style: normal;
}
.intro-copy {
  max-width: 330px;
  margin: 0;
  color: #aab2aa;
  font-size: 15px;
  line-height: 1.6;
}
.signal-line {
  display: flex;
  gap: 5px;
  margin: 48px 0 28px;
}
.signal-line span {
  display: block;
  width: 34px;
  height: 2px;
  background: var(--line);
}
.signal-line span:first-child {
  background: var(--acid);
  width: 60px;
  box-shadow: 0 0 10px var(--acid);
}
.edition-note {
  display: flex;
  gap: 24px;
}
.edition-note span:last-child {
  color: #566057;
}
.orbit {
  position: absolute;
  border: 1px solid rgba(184, 243, 74, 0.15);
  border-radius: 50%;
  pointer-events: none;
}
.orbit-one {
  width: 360px;
  height: 150px;
  right: -40px;
  bottom: -20px;
  transform: rotate(-27deg);
}
.orbit-two {
  width: 220px;
  height: 80px;
  right: 10px;
  bottom: 15px;
  transform: rotate(-27deg);
  border-color: rgba(255, 103, 69, 0.17);
}
.application-panel {
  position: relative;
  align-self: start;
  padding: clamp(25px, 4vw, 48px);
  background: rgba(16, 18, 17, 0.88);
  border: 1px solid var(--line);
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.32);
  animation: rise 0.7s 0.12s ease both;
}
.application-panel::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  background: linear-gradient(
    135deg,
    rgba(184, 243, 74, 0.5),
    transparent 24%,
    transparent 78%,
    rgba(255, 103, 69, 0.35)
  );
  opacity: 0.5;
}
.panel-heading {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 32px;
}
.panel-kicker {
  margin: 0 0 10px;
  color: var(--acid);
}
h2 {
  margin: 0;
  font-size: clamp(1.6rem, 3vw, 2.35rem);
  letter-spacing: -0.04em;
}
.panel-code {
  flex: 0 0 auto;
  color: #566057;
  font: 11px var(--mono);
  white-space: nowrap;
}
.progress {
  margin-bottom: 30px;
}
.progress-bar {
  height: 2px;
  background: var(--line);
}
#progress-fill {
  display: block;
  width: 25%;
  height: 100%;
  background: var(--acid);
  box-shadow: 0 0 11px var(--acid);
  transition: width 0.35s ease;
}
.progress-meta {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
}
.step {
  min-width: 0;
  margin: 0;
  padding: 0 0 14px;
  border: 0;
  border-bottom: 1px solid var(--line);
}
.step + .step {
  padding-top: 20px;
}
.step.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.step.reveal.in-view {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .step.reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
.step legend {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 0;
  font-size: 17px;
  font-weight: 600;
}
.step-number {
  color: var(--acid);
  font: 12px var(--mono);
}
.step-copy {
  margin: 9px 0 14px 37px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}
.step-copy strong {
  color: var(--paper);
  font-weight: 500;
}
.action-link {
  display: inline-block;
  margin: 0 0 18px 37px;
  color: var(--acid);
  font: 11px var(--mono);
  letter-spacing: 0.05em;
  text-decoration: none;
}
.action-link:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}
label:not(.check-row) {
  display: block;
  margin: 0 0 8px 37px;
  color: #aab2aa;
  font: 10px var(--mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
label span,
.check-row b {
  color: var(--ember);
}
input[type="text"],
input[type="url"] {
  display: block;
  width: calc(100% - 37px);
  margin-left: 37px;
  padding: 13px 14px;
  border: 1px solid var(--line);
  outline: 0;
  color: var(--paper);
  background: #0b0d0c;
  font: 13px var(--mono);
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}
input::placeholder {
  color: #4c554d;
}
input:focus {
  border-color: var(--acid);
  box-shadow: 0 0 0 3px var(--acid-soft);
}
input.invalid {
  border-color: var(--ember);
}
.check-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 37px;
  color: #aab2aa;
  font: 11px var(--mono);
  cursor: pointer;
}
.check-row input {
  position: absolute;
  opacity: 0;
}
.fake-check {
  display: grid;
  place-items: center;
  width: 17px;
  height: 17px;
  border: 1px solid var(--line);
  flex: 0 0 auto;
}
.check-row input:checked + .fake-check {
  border-color: var(--acid);
  background: var(--acid);
}
.check-row input:checked + .fake-check::after {
  content: "✓";
  color: var(--ink);
  font: 12px var(--mono);
}
.check-row input:focus-visible + .fake-check {
  outline: 2px solid var(--acid);
  outline-offset: 3px;
}
.error {
  display: block;
  min-height: 16px;
  margin: 7px 0 0 37px;
  color: var(--ember);
  font: 10px var(--mono);
}
.form-footer {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 27px;
}
.privacy-note {
  flex: 1;
  margin: 0;
  color: var(--muted);
  font: 10px var(--mono);
  line-height: 1.5;
}
.privacy-note span {
  color: var(--acid);
}
button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  min-width: 220px;
  padding: 17px 18px;
  border: 1px solid var(--acid);
  color: var(--ink);
  background: var(--acid);
  cursor: pointer;
  font: 11px var(--mono);
  letter-spacing: 0.08em;
  transition:
    background 0.2s,
    transform 0.2s,
    box-shadow 0.2s;
}
button:hover:not(:disabled) {
  background: #d1ff70;
  box-shadow: 0 0 25px rgba(184, 243, 74, 0.2);
  transform: translateY(-2px);
}
button:disabled {
  cursor: wait;
  opacity: 0.65;
}
.button-arrow {
  font-size: 17px;
}
.form-status {
  min-height: 18px;
  margin: 16px 0 0;
  color: var(--ember);
  font: 11px var(--mono);
}
.success-state {
  text-align: center;
  padding: 45px 10px 25px;
  animation: rise 0.5s ease both;
}
.success-icon {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  margin: 0 auto 26px;
  border: 1px solid var(--acid);
  color: var(--acid);
  font-size: 25px;
}
.success-state h2 {
  margin-bottom: 17px;
  font-size: clamp(2rem, 5vw, 3rem);
}
.success-state > p:last-child {
  margin: 0 auto;
  max-width: 330px;
  color: var(--muted);
  line-height: 1.55;
}
.site-footer {
  max-width: 1180px;
  padding-top: 0;
}
.site-footer span:last-child {
  color: var(--acid);
}
@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes pulse {
  50% {
    opacity: 0.35;
  }
}
@media (max-width: 820px) {
  .layout {
    display: block;
    min-height: auto;
    padding-top: 55px;
  }
  .intro {
    position: static;
    margin-bottom: 70px;
  }
  h1 {
    font-size: clamp(4.4rem, 19vw, 7rem);
  }
  .orbit-one {
    right: 0;
  }
  .application-panel {
    margin-bottom: 45px;
  }
}
@media (max-width: 560px) {
  .site-header {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .header-social {
    font-size: 10px;
  }
  .layout {
    padding-right: 20px;
    padding-left: 20px;
  }
  .application-panel {
    padding: 24px 18px;
  }
  .step-copy,
  .action-link,
  label:not(.check-row),
  input[type="text"],
  input[type="url"],
  .check-row,
  .error {
    margin-left: 0;
  }
  input[type="text"],
  input[type="url"] {
    width: 100%;
  }
  .form-footer {
    display: block;
  }
  .privacy-note {
    margin-bottom: 18px;
  }
  button {
    width: 100%;
  }
  .site-footer {
    padding: 0 20px 22px;
    font-size: 8px;
  }
  .site-footer span:nth-child(2) {
    display: none;
  }
}
