:root {
  --canvas: #0c100d;
  --panel: #131814;
  --panel-high: #19201b;
  --line: #303931;
  --line-light: #435045;
  --ink: #f0f5f1;
  --muted: #9ba69d;
  --faint: #68736a;
  --acid: #c9ff4a;
  --cyan: #79ead5;
  --red: #ff666d;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--canvas);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

button,
input,
select {
  font: inherit;
}

button:disabled,
select:disabled,
input:disabled {
  cursor: not-allowed;
  opacity: 0.52;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 20;
  padding: 0.7rem 0.9rem;
  transform: translateY(-150%);
  border-radius: 8px;
  background: var(--acid);
  color: #0c100d;
  font-weight: 800;
}

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

.site-header,
.hero,
.section-block,
.status-panel,
footer {
  width: min(1160px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  display: flex;
  min-height: 86px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--ink);
  font-size: 1.03rem;
  font-weight: 800;
  letter-spacing: -0.035em;
  text-decoration: none;
}

.brand img {
  display: block;
  object-fit: contain;
}

.brand > span > span {
  color: var(--acid);
  font-weight: 540;
}

nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

nav a {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
}

nav a:hover,
nav a:focus-visible {
  color: var(--ink);
}

.nav-status {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 0.8rem;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.nav-status span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--acid);
}

.nav-status span:not(.is-live) {
  background: var(--faint);
}

.nav-status b {
  font: inherit;
}

.hero {
  display: grid;
  min-height: 680px;
  grid-template-columns: minmax(0, 0.92fr) minmax(430px, 1.08fr);
  gap: clamp(3rem, 7vw, 7rem);
  align-items: center;
  padding-block: 6.5rem 7rem;
}

.eyebrow,
.kicker {
  margin: 0 0 1.4rem;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.eyebrow span {
  font-size: 1rem;
}

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

h1 {
  margin: 0;
  font-size: clamp(3.7rem, 7vw, 6.8rem);
  font-weight: 680;
  letter-spacing: -0.08em;
  line-height: 0.88;
}

h1 em {
  color: var(--acid);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.hero-intro {
  max-width: 580px;
  margin: 2rem 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.14rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2.2rem;
}

.hero-actions button {
  cursor: pointer;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.15rem;
  border: 1px solid transparent;
  border-radius: 10px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-decoration: none;
}

.button-primary {
  background: var(--acid);
  color: #0c100d;
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #dcff88;
}

.button-secondary {
  border-color: var(--line-light);
  background: var(--panel);
}

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

.button-quiet {
  border-color: var(--line-light);
  background: transparent;
  color: var(--muted);
}

.button-quiet:hover,
.button-quiet:focus-visible {
  border-color: var(--muted);
  color: var(--ink);
}

.route-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.15rem;
}

.route-summary span {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  padding: 0.35rem 0.55rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--faint);
  font-family: var(--mono);
  font-size: 0.56rem;
  letter-spacing: 0.025em;
}

.route-summary i,
.live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--faint);
}

.route-summary span.is-live {
  border-color: rgba(201, 255, 74, 0.36);
  color: var(--acid);
}

.route-summary span.is-live i,
.live-dot {
  background: var(--acid);
  box-shadow: 0 0 12px rgba(201, 255, 74, 0.45);
}

.surface-shell {
  width: min(100%, 550px);
  justify-self: end;
  padding: clamp(1.1rem, 3vw, 1.8rem);
  border: 1px solid var(--line-light);
  border-radius: 12px;
  background: var(--panel);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
}

.surface-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.surface-header > div {
  display: grid;
  gap: 0.35rem;
}

.surface-label,
.concept-state,
.channel label,
.channel output,
.feature-number,
.step,
.phase {
  font-family: var(--mono);
}

.surface-label {
  color: var(--faint);
  font-size: 0.59rem;
  letter-spacing: 0.09em;
}

.surface-header strong {
  font-size: 0.87rem;
  letter-spacing: 0.03em;
}

.concept-state {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--muted);
  font-size: 0.58rem;
  letter-spacing: 0.06em;
}

.concept-state i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
}

.display {
  display: flex;
  min-height: 86px;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.3rem;
  padding: 1rem;
  border: 1px solid #355047;
  border-radius: 8px;
  background: #0a1511;
  color: var(--cyan);
  font-family: var(--mono);
}

.display span {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.display strong {
  font-size: 1.45rem;
  font-weight: 500;
}

.fader-bank {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(0.5rem, 2vw, 1.2rem);
  margin-top: 1.5rem;
}

.channel {
  display: grid;
  justify-items: center;
  gap: 0.5rem;
}

.channel label,
.channel output {
  color: #818d83;
  font-size: 0.56rem;
  font-weight: 700;
}

.channel output {
  min-width: 2.4rem;
  padding: 0.25rem 0.3rem;
  border: 1px solid #283029;
  border-radius: 6px;
  background: #0b0e0c;
  color: var(--cyan);
  text-align: center;
}

.fader-slot {
  position: relative;
  display: flex;
  width: 32px;
  height: 142px;
  align-items: center;
  justify-content: center;
}

.fader-slot::before {
  position: absolute;
  width: 4px;
  height: 124px;
  border: 1px solid #273028;
  border-radius: 4px;
  background: #080b09;
  content: "";
}

.fader {
  position: relative;
  z-index: 1;
  width: 124px;
  height: 28px;
  margin: 0;
  appearance: none;
  transform: rotate(-90deg);
  background: transparent;
  cursor: ns-resize;
}

.fader::-webkit-slider-runnable-track {
  height: 3px;
  border-radius: 3px;
  background: #334036;
}

.fader::-moz-range-track {
  height: 3px;
  border-radius: 3px;
  background: #334036;
}

.fader::-webkit-slider-thumb {
  width: 24px;
  height: 38px;
  margin-top: -18px;
  appearance: none;
  border: 1px solid #536057;
  border-radius: 6px;
  background: var(--panel-high);
  box-shadow: inset 0 0 0 10px var(--panel-high), inset 0 2px 0 var(--acid);
}

.fader::-moz-range-thumb {
  width: 24px;
  height: 38px;
  border: 1px solid #536057;
  border-radius: 6px;
  background: var(--panel-high);
  box-shadow: inset 0 2px 0 var(--acid);
}

.fader:focus-visible {
  outline: 2px solid var(--acid);
  outline-offset: 4px;
}

.transport {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.6rem;
  margin-top: 1.3rem;
}

.transport button {
  min-height: 48px;
  border: 1px solid #3c473e;
  border-radius: 8px;
  background: var(--panel-high);
  color: #9aa49c;
  font-family: var(--mono);
  font-size: 0.8rem;
  cursor: pointer;
}

.transport button:hover,
.transport button:focus-visible,
.transport button.is-active {
  border-color: var(--acid);
  color: var(--acid);
}

.transport .record {
  color: var(--red);
}

.transport .record.is-active {
  border-color: var(--red);
  background: #261517;
}

.pad-bank {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.6rem;
  margin-top: 1.35rem;
}

.pad-bank button {
  display: grid;
  min-height: 62px;
  gap: 0.25rem;
  align-content: center;
  border: 1px solid #3c473e;
  border-radius: 8px;
  background: #101511;
  color: var(--muted);
  cursor: pointer;
  touch-action: none;
  user-select: none;
}

.pad-bank button:hover,
.pad-bank button:focus-visible,
.pad-bank button.is-active {
  border-color: var(--cyan);
  background: #11231e;
  color: var(--cyan);
}

.pad-bank span {
  font-family: var(--mono);
  font-size: 0.5rem;
  letter-spacing: 0.05em;
}

.pad-bank b {
  font-size: 0.75rem;
}

.surface-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1rem;
  color: var(--faint);
  font-family: var(--mono);
  font-size: 0.49rem;
  letter-spacing: 0.035em;
}

.section-block {
  padding-block: 7rem;
  border-top: 1px solid var(--line);
}

.section-heading {
  display: grid;
  grid-template-columns: 0.65fr 1fr 0.8fr;
  gap: 2.5rem;
  align-items: start;
}

.section-heading h2,
.roadmap-copy h2,
.status-panel h2 {
  margin: 0;
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  font-weight: 620;
  letter-spacing: -0.07em;
  line-height: 0.95;
}

.section-heading > p:last-child,
.roadmap-copy > p:last-child,
.status-panel > div > p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.75;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 4.5rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--panel);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.16);
}

.connect-heading {
  margin-bottom: 4.5rem;
}

.receiver-banner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  align-items: center;
  margin: -1.5rem 0 1.2rem;
  padding: 1rem 1.2rem;
  border: 1px solid rgba(201, 255, 74, 0.4);
  border-radius: 10px;
  background: rgba(201, 255, 74, 0.06);
}

.receiver-banner[hidden] {
  display: none;
}

.receiver-banner > div {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.receiver-banner p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.5;
}

.connection-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.connection-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: clamp(1.25rem, 3vw, 2rem);
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--panel);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.16);
}

.connection-card-wide {
  grid-column: 1 / -1;
}

.connection-card-heading {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
}

.connection-card h3 {
  margin: 0;
  font-size: 1.08rem;
  letter-spacing: -0.025em;
}

.connection-card-heading p {
  max-width: 620px;
  margin: 0.65rem 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.6;
}

.connection-controls {
  display: grid;
  gap: 0.7rem;
  margin-top: 2rem;
}

.connection-controls .button {
  width: max-content;
  cursor: pointer;
}

.field-label {
  color: var(--faint);
  font-family: var(--mono);
  font-size: 0.57rem;
  font-weight: 700;
  letter-spacing: 0.065em;
  text-transform: uppercase;
}

select,
.join-row input,
.copy-row input {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line-light);
  border-radius: 8px;
  outline: 0;
  background: #0b0f0c;
  color: var(--ink);
}

select {
  padding: 0.6rem 2.4rem 0.6rem 0.75rem;
}

.join-row input,
.copy-row input {
  padding: 0.65rem 0.75rem;
}

select:focus,
.join-row input:focus,
.copy-row input:focus {
  border-color: var(--acid);
  box-shadow: 0 0 0 2px rgba(201, 255, 74, 0.12);
}

.connection-status {
  margin: auto 0 0;
  padding-top: 1.2rem;
  color: var(--faint);
  font-family: var(--mono);
  font-size: 0.62rem;
  line-height: 1.5;
}

.connection-status[data-kind="success"] {
  color: var(--acid);
}

.connection-status[data-kind="error"] {
  color: #ff9196;
}

.network-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 1.25rem;
  align-items: end;
  margin-top: 2.2rem;
}

.network-action {
  display: grid;
  gap: 0.65rem;
  margin: 0;
}

.network-action > .button {
  width: max-content;
  cursor: pointer;
}

.network-divider {
  display: grid;
  min-height: 46px;
  place-items: center;
  color: var(--faint);
  font-family: var(--mono);
  font-size: 0.58rem;
  text-transform: uppercase;
}

.join-row,
.copy-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.55rem;
}

.join-row input {
  font-family: var(--mono);
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.join-row .button,
.copy-row .button {
  min-height: 46px;
  cursor: pointer;
}

.session-details {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 2rem;
  align-items: end;
  margin-top: 1.5rem;
  padding: 1rem;
  border: 1px solid rgba(121, 234, 213, 0.32);
  border-radius: 9px;
  background: rgba(121, 234, 213, 0.045);
}

.session-details[hidden] {
  display: none;
}

.session-details > div {
  display: grid;
  gap: 0.5rem;
}

#room-code-display {
  color: var(--cyan);
  font-family: var(--mono);
  font-size: 1.3rem;
  letter-spacing: 0.11em;
}

.network-status-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: baseline;
  margin-top: 0.6rem;
}

.manual-pairing {
  margin-top: 1.5rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: #0f1410;
}

.manual-pairing summary {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.64rem;
  font-weight: 700;
  cursor: pointer;
}

.manual-pairing > p {
  margin: 0.9rem 0 1.1rem;
  color: var(--faint);
  font-size: 0.78rem;
  line-height: 1.55;
}

.manual-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1rem;
}

.manual-actions .button,
.manual-code-row .button {
  min-height: 42px;
  cursor: pointer;
}

.manual-pairing textarea {
  width: 100%;
  margin: 0.45rem 0 1rem;
  padding: 0.65rem;
  resize: vertical;
  border: 1px solid var(--line-light);
  border-radius: 8px;
  outline: 0;
  background: #080b09;
  color: var(--cyan);
  font-family: var(--mono);
  font-size: 0.6rem;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.manual-pairing textarea:focus {
  border-color: var(--acid);
}

.manual-code-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.55rem;
  align-items: start;
}

.network-status-row .connection-status {
  flex: 1 1 300px;
}

#message-counter {
  color: var(--faint);
  font-family: var(--mono);
  font-size: 0.58rem;
}

.text-button {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.59rem;
  text-decoration: underline;
  cursor: pointer;
}

.text-button:hover,
.text-button:focus-visible {
  color: var(--ink);
}

.feature-card {
  position: relative;
  min-height: 280px;
  padding: 2rem;
  border-right: 1px solid var(--line);
}

.feature-card:last-child {
  border-right: 0;
}

.feature-number {
  display: inline-grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
  border: 1px solid var(--line-light);
  border-radius: 8px;
  color: var(--acid);
  font-size: 0.6rem;
}

.feature-card h3,
.roadmap-list h3 {
  margin: 3.5rem 0 0;
  font-size: 1.08rem;
  letter-spacing: -0.025em;
}

.feature-card p,
.roadmap-list p {
  margin: 0.75rem 0 0;
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.65;
}

.roadmap {
  display: grid;
  grid-template-columns: minmax(250px, 0.82fr) minmax(500px, 1.18fr);
  gap: clamp(3rem, 8vw, 8rem);
}

.roadmap-copy > p:last-child {
  max-width: 430px;
  margin-top: 2rem;
}

.roadmap-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.roadmap-list li {
  display: grid;
  grid-template-columns: 52px 1fr auto;
  gap: 1.1rem;
  align-items: start;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--line);
}

.roadmap-list h3 {
  margin: 0;
}

.step,
.phase {
  color: var(--faint);
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.07em;
}

.step {
  padding-top: 0.24rem;
}

.phase {
  padding: 0.35rem 0.46rem;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.phase-active {
  border-color: rgba(201, 255, 74, 0.45);
  color: var(--acid);
}

.status-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: end;
  margin-bottom: 7rem;
  padding: clamp(2rem, 6vw, 4.5rem);
  border: 1px solid var(--line-light);
  border-radius: 12px;
  background: var(--panel);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.2);
}

.status-panel > div > p:last-child {
  max-width: 670px;
  margin-top: 1.5rem;
}

.status-panel .button {
  text-transform: lowercase;
}

.noscript-note {
  width: min(1160px, calc(100% - 40px));
  margin: -4rem auto 4rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  font-size: 0.85rem;
}

footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 2rem;
  align-items: center;
  padding-block: 2.5rem 3.5rem;
  border-top: 1px solid var(--line);
  color: var(--faint);
  font-size: 0.67rem;
  line-height: 1.5;
}

footer p {
  margin: 0;
  text-align: center;
}

.footer-brand {
  font-size: 0.88rem;
}

footer p:last-child {
  font-family: var(--mono);
  text-align: right;
}

.error-page {
  display: flex;
  width: min(760px, calc(100% - 40px));
  min-height: 100vh;
  margin-inline: auto;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.error-page .brand {
  margin-bottom: 5rem;
}

.error-page .kicker {
  margin-bottom: 1rem;
  color: var(--acid);
}

.error-page h1 {
  font-size: clamp(3.5rem, 9vw, 7rem);
}

.error-page > p:not(.kicker) {
  max-width: 520px;
  margin: 1.5rem 0 2rem;
  color: var(--muted);
  line-height: 1.7;
}

@media (max-width: 900px) {
  nav a:not(.nav-status) {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-block: 5rem 6rem;
  }

  .surface-shell {
    width: min(100%, 640px);
    justify-self: center;
  }

  .section-heading {
    grid-template-columns: 1fr 1.2fr;
  }

  .section-heading > p:last-child {
    grid-column: 2;
  }

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

  .network-divider {
    min-height: auto;
    justify-content: start;
  }

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

  footer {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  footer p:last-child {
    text-align: center;
  }
}

@media (max-width: 680px) {
  .site-header,
  .hero,
  .section-block,
  .status-panel,
  footer {
    width: min(100% - 28px, 1160px);
  }

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

  .nav-status {
    padding: 0.52rem 0.64rem;
    font-size: 0.62rem;
  }

  .hero {
    gap: 4rem;
    padding-block: 4rem 5rem;
  }

  h1 {
    font-size: clamp(3.4rem, 17vw, 4.8rem);
  }

  .surface-shell {
    padding: 1rem;
  }

  .surface-header strong {
    font-size: 0.76rem;
  }

  .surface-footer {
    flex-direction: column;
    gap: 0.35rem;
  }

  .concept-state {
    font-size: 0.5rem;
  }

  .display {
    min-height: 74px;
  }

  .fader-slot {
    height: 118px;
  }

  .fader-slot::before {
    height: 100px;
  }

  .fader {
    width: 100px;
  }

  .section-heading {
    grid-template-columns: 1fr;
  }

  .section-heading > p:last-child {
    grid-column: auto;
  }

  .connect-heading {
    margin-bottom: 3rem;
  }

  .receiver-banner,
  .connection-grid,
  .session-details {
    grid-template-columns: 1fr;
  }

  .connection-card-wide {
    grid-column: auto;
  }

  .join-row,
  .copy-row {
    grid-template-columns: 1fr;
  }

  .network-action > .button,
  .connection-controls .button,
  .join-row .button,
  .copy-row .button {
    width: 100%;
  }

  .manual-actions {
    display: grid;
  }

  .manual-code-row {
    grid-template-columns: 1fr;
  }

  .manual-code-row .button {
    width: 100%;
  }

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

  .feature-card {
    min-height: 260px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .feature-card:last-child {
    border-bottom: 0;
  }

  .roadmap-list li {
    grid-template-columns: 42px 1fr;
  }

  .roadmap-list .phase {
    grid-column: 2;
    width: max-content;
  }

  .status-panel {
    grid-template-columns: 1fr;
    align-items: start;
    margin-bottom: 5rem;
  }

  .status-panel .button {
    max-width: 100%;
    overflow-wrap: anywhere;
  }
}

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