:root {
  color-scheme: light;
  --canvas: #f7f9fc;
  --paper: #ffffff;
  --ink: #14243b;
  --muted: #627086;
  --line: #dce3ed;
  --soft: #eaf0f7;
  --blue: #315bea;
  --blue-dark: #2446bd;
  --amber: #a85b08;
  --green: #147d64;
  --shadow: 0 24px 70px rgba(28, 49, 83, 0.12);
  --display:
    "Avenir Next Condensed", "Arial Narrow", "Roboto Condensed", sans-serif;
  --body: "Avenir Next", Inter, ui-sans-serif, system-ui, sans-serif;
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--canvas);
  color: var(--ink);
  font: 15px/1.55 var(--body);
  -webkit-font-smoothing: antialiased;
}
button,
input,
select,
textarea {
  font: inherit;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  color: inherit;
}
.shell {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}
.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: 6px;
  background: var(--ink);
  color: white;
  transform: translateY(-160%);
}
.skip-link:focus-visible {
  transform: translateY(0);
}
[id] {
  scroll-margin-top: 86px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  height: 70px;
  display: flex;
  align-items: center;
  gap: 42px;
  padding: 0 max(24px, calc((100vw - 1180px) / 2));
  border-bottom: 1px solid rgba(220, 227, 237, 0.86);
  background: rgba(247, 249, 252, 0.88);
  backdrop-filter: blur(18px);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.brand-icon {
  width: 28px;
  height: 28px;
  border-radius: 7px;
}
.brand-mark {
  font: 800 23px/1 var(--display);
  letter-spacing: -0.04em;
}
.brand-word {
  font: 700 10px/1 var(--mono);
  letter-spacing: 0.2em;
  color: var(--blue);
}
nav {
  display: flex;
  gap: 30px;
  color: var(--muted);
  font-size: 13px;
}
nav a:hover,
footer a:hover,
.text-link:hover {
  color: var(--blue);
}
.network-pill {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font: 700 10px/1 var(--mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.live-dot,
#wallet-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 0 4px rgba(168, 91, 8, 0.1);
}
.live-dot.online,
#wallet-dot.online {
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(20, 125, 100, 0.1);
}

.hero {
  min-height: 680px;
  padding-block: 88px 96px;
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: 48px;
  align-items: center;
}
.product-label {
  margin: 0;
  color: var(--blue);
  font-size: 14px;
  font-weight: 700;
}
.kicker,
.step-label {
  margin: 0;
  color: var(--blue);
  font: 700 10px/1.4 var(--mono);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
h1,
h2,
h3,
h4,
p {
  overflow-wrap: break-word;
}
h1 {
  margin: 22px 0 24px;
  max-width: 610px;
  font: 650 clamp(54px, 6.2vw, 88px)/0.93 var(--display);
  letter-spacing: -0.045em;
  text-wrap: balance;
}
.hero-lede {
  margin: 0;
  max-width: 570px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}
.hero-proof {
  display: grid;
  gap: 4px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: 13px;
}
.hero-proof strong {
  color: var(--blue);
  font: 650 25px/1.2 var(--display);
  font-variant-numeric: tabular-nums;
}
.hero-actions {
  display: flex;
  gap: 24px;
  align-items: center;
  margin-top: 34px;
}
.text-link {
  color: var(--muted);
  font-size: 13px;
}
.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 7px;
  cursor: pointer;
  font-weight: 650;
  transition:
    background-color 0.16s ease,
    border-color 0.16s ease,
    transform 0.16s ease;
}
.button:hover:not(:disabled) {
  transform: translateY(-1px);
}
.button:disabled {
  opacity: 0.46;
  cursor: not-allowed;
}
.primary {
  background: var(--blue);
  color: white;
  box-shadow: 0 10px 24px rgba(49, 91, 234, 0.2);
}
.primary:hover:not(:disabled) {
  background: var(--blue-dark);
}
.secondary {
  background: var(--ink);
  color: white;
}
.ghost {
  background: transparent;
  border-color: var(--line);
}
.trust-line {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  margin: 36px 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 12px;
}
.trust-line li::before {
  content: "✓";
  color: var(--green);
  margin-right: 7px;
  font-weight: 800;
}

.rate-card {
  min-width: 0;
  padding: 28px;
  border: 1px solid #24364e;
  border-radius: 12px;
  background: #0e1a2a;
  color: #f8fbff;
  box-shadow: var(--shadow);
}
.rate-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 12px;
}
.rate-card h2 {
  margin: 6px 0 0;
  font-size: clamp(28px, 2.7vw, 38px);
  text-wrap: balance;
}
.price-version {
  margin: 0;
  color: #8fa1b9;
  font-size: 11px;
}
.current-period {
  flex: none;
  padding: 7px 10px;
  border: 1px solid rgba(141, 177, 255, 0.36);
  border-radius: 999px;
  color: #c8d8ff;
  font-size: 10px;
  font-weight: 700;
}
.rate-intro {
  max-width: 560px;
  margin: 0 0 20px;
  color: #96a7bc;
  font-size: 12px;
}
.period-grid {
  display: grid;
  grid-template-columns: 1fr;
}
.price-period {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.025);
}
.price-period.current {
  border-color: #7298ff;
  box-shadow: inset 0 0 0 1px rgba(114, 152, 255, 0.24);
}
.price-period > header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  padding: 13px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.price-period h3 {
  margin: 0;
  font-size: 17px;
}
.price-period header p {
  margin: 0;
  color: #8091a7;
  font-size: 9px;
  text-align: right;
}
.price-table-scroll {
  min-width: 0;
  overflow-x: auto;
}
.price-table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  color: #dce7f5;
  font: 600 10px/1.3 var(--mono);
  font-variant-numeric: tabular-nums;
}
.price-table th,
.price-table td {
  padding: 11px 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  text-align: right;
  white-space: nowrap;
}
.price-table tr:last-child th,
.price-table tr:last-child td {
  border-bottom: 0;
}
.price-table th:first-child {
  width: 26%;
  padding-left: 10px;
  text-align: left;
}
.price-table thead {
  color: #7f91a8;
  font-size: 8px;
}
.price-table tbody th {
  color: #f8fbff;
}
.price-table .featured {
  background: rgba(79, 119, 230, 0.11);
  color: #b9ccff;
}
.price-advantage {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 16px;
  padding: 16px 0 2px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.price-advantage strong {
  color: #b7caff;
  font-size: 13px;
}
.price-advantage a {
  color: #dce7ff;
  font-size: 11px;
  text-decoration: underline;
  text-decoration-color: rgba(220, 231, 255, 0.32);
  text-underline-offset: 3px;
}
.rate-footnote {
  margin: 10px 0 0;
  color: #8394aa;
  font-size: 11px;
}

.studio-wrap {
  padding: 88px 0 96px;
  background: #edf2f8;
  border-block: 1px solid var(--line);
}
.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 34px;
}
h2 {
  margin: 10px 0 0;
  font: 650 clamp(36px, 4vw, 54px)/1 var(--display);
  letter-spacing: -0.035em;
}
.wallet-button {
  height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding: 0 16px;
  border: 1px solid #cbd5e2;
  border-radius: 7px;
  background: var(--paper);
  cursor: pointer;
  font-weight: 650;
  box-shadow: 0 5px 16px rgba(23, 43, 74, 0.06);
}
.wallet-button:hover:not(:disabled) {
  border-color: #91a8c7;
  background: #fdfefe;
}
.wallet-button.needs-wallet {
  border-color: #d6ad7e;
}
.wallet-control {
  max-width: 350px;
  display: grid;
  justify-items: end;
  gap: 7px;
}
.wallet-status {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.4;
  text-align: right;
}
.studio-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.92fr);
  gap: 18px;
  align-items: stretch;
}
.composer,
.order-stage {
  padding: 28px;
  border: 1px solid #d6dfeb;
  border-radius: 10px;
  background: var(--paper);
  box-shadow: 0 14px 38px rgba(31, 53, 88, 0.07);
}
.panel-head {
  min-height: 48px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: start;
  margin-bottom: 26px;
}
.panel-head h3 {
  margin: 6px 0 0;
  font: 650 25px/1.1 var(--display);
  letter-spacing: -0.02em;
}
.segmented {
  display: flex;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #f5f7fa;
}
.segment {
  min-width: 66px;
  min-height: 32px;
  border: 0;
  border-radius: 5px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 12px;
  font-weight: 650;
}
.segment.active {
  background: white;
  color: var(--ink);
  box-shadow: 0 2px 8px rgba(20, 36, 59, 0.09);
}
.field-label {
  display: block;
  margin: 0 0 8px;
  color: #43516a;
  font-size: 12px;
  font-weight: 700;
}
.mode-fieldset {
  min-width: 0;
  margin: 0 0 24px;
  padding: 0;
  border: 0;
}
.mode-tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}
.mode-tab {
  min-width: 0;
  min-height: 68px;
  display: grid;
  align-content: center;
  gap: 3px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #f8fafc;
  color: var(--muted);
  cursor: pointer;
  text-align: left;
}
.mode-tab:hover:not(:disabled) {
  border-color: #9eb2ce;
  background: white;
}
.mode-tab.active {
  border-color: var(--blue);
  background: #f2f5ff;
  color: var(--ink);
  box-shadow: inset 0 0 0 1px rgba(49, 91, 234, 0.08);
}
.mode-tab:disabled {
  opacity: 0.42;
  cursor: not-allowed;
}
.mode-tab strong {
  font-size: 12px;
}
.mode-tab span {
  overflow: hidden;
  font-size: 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.media-fields {
  display: grid;
  gap: 8px;
  margin: 18px 0;
}
.upload-field {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 13px 14px;
  border: 1px dashed #b9c7d9;
  border-radius: 7px;
  background: #f8fafc;
  cursor: pointer;
}
.upload-field:hover,
.upload-field:focus-within {
  border-color: var(--blue);
  background: #f5f7ff;
}
.upload-field > span:first-child {
  min-width: 0;
  display: grid;
  gap: 2px;
}
.upload-field strong {
  font-size: 12px;
}
.upload-field small,
.asset-status {
  color: var(--muted);
  font-size: 10px;
}
.upload-action {
  flex: none;
  color: var(--blue);
  font-size: 11px;
  font-weight: 700;
}
.upload-field input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}
.asset-status {
  margin: -2px 4px 5px;
  overflow-wrap: anywhere;
}
textarea,
input,
select {
  width: 100%;
  border: 1px solid #ccd6e3;
  border-radius: 7px;
  background: #fbfcfe;
  color: var(--ink);
  outline: 0;
  transition:
    border-color 0.16s ease,
    box-shadow 0.16s ease;
}
textarea:focus,
input:focus,
select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(49, 91, 234, 0.12);
}
textarea {
  resize: vertical;
  padding: 14px 15px;
  line-height: 1.6;
}
.prompt-field {
  position: relative;
}
.prompt-field textarea {
  min-height: 184px;
  padding-bottom: 36px;
}
.prompt-field > span {
  position: absolute;
  right: 12px;
  bottom: 11px;
  color: #8a96a7;
  font: 10px/1 var(--mono);
}
.field-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 20px;
}
select,
input {
  height: 44px;
  padding: 0 12px;
}
.seed-row {
  display: grid;
  grid-template-columns: 1fr 150px;
  gap: 20px;
  align-items: center;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.seed-row strong {
  display: block;
  font-size: 12px;
}
.seed-row small,
.field-help {
  color: var(--muted);
  font-size: 11px;
}
.code-input {
  min-height: 295px;
  font: 12px/1.65 var(--mono);
}
.field-help {
  margin: 10px 0 0;
}
.composer-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.composer-footer p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}
.quote-preview {
  display: block;
  margin-top: 4px;
  color: var(--ink);
  font-size: 12px;
  font-variant-numeric: tabular-nums;
}

.order-stage {
  display: flex;
  min-height: 620px;
  flex-direction: column;
}
.icon-button {
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: white;
  cursor: pointer;
  font-size: 20px;
}
.icon-button:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.order-empty {
  margin: auto;
  max-width: 310px;
  text-align: center;
}
.empty-frame {
  width: 220px;
  height: 132px;
  margin: 0 auto 24px;
  border: 1px solid #cbd7e5;
  border-radius: 7px;
  background: linear-gradient(140deg, #edf3fa, #dfe8f3);
  display: grid;
  place-items: center;
}
.empty-frame span {
  width: 42px;
  height: 42px;
  border: 1px solid #aebdce;
  border-radius: 50%;
  box-shadow: 0 0 0 14px rgba(174, 189, 206, 0.14);
}
.order-empty h4 {
  margin: 0 0 8px;
  font-size: 15px;
}
.order-empty p,
.payment-copy {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}
.order-status-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  color: var(--muted);
  font: 10px/1 var(--mono);
}
.status-chip {
  padding: 7px 9px;
  border-radius: 5px;
  background: #edf1ff;
  color: var(--blue);
  font: 700 10px/1 var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}
.status-chip.success {
  color: var(--green);
  background: #e8f5f1;
}
.status-chip.warning {
  color: var(--amber);
  background: #fff2e3;
}
.price-row {
  margin: 22px 0;
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: end;
  border-block: 1px solid var(--line);
}
.price-row span {
  color: var(--muted);
  font-size: 11px;
}
.price-row strong {
  display: block;
  margin-top: 3px;
  font: 650 29px/1 var(--display);
}
.progress-list {
  margin: 0 0 26px;
  padding: 0;
  list-style: none;
}
.progress-list li {
  position: relative;
  min-height: 55px;
  display: grid;
  grid-template-columns: 18px 1fr auto;
  gap: 10px;
  align-items: start;
  color: #8a96a7;
}
.progress-list li:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 16px;
  bottom: 0;
  width: 1px;
  background: #d4dce7;
}
.progress-list i {
  width: 13px;
  height: 13px;
  margin-top: 2px;
  border: 2px solid #c2ccd9;
  border-radius: 50%;
  background: white;
  z-index: 1;
}
.progress-list span {
  font-size: 12px;
  font-weight: 700;
}
.progress-list small {
  font-size: 10px;
}
.progress-list li.current {
  color: var(--blue);
}
.progress-list li.current i {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(49, 91, 234, 0.1);
}
.progress-list li.done {
  color: var(--green);
}
.progress-list li.done i {
  background: var(--green);
  border-color: var(--green);
}
.refund-note {
  margin-bottom: 16px;
  padding: 12px 14px;
  border-left: 3px solid var(--amber);
  background: #fff8ed;
  color: #74400a;
  font-size: 12px;
}
.pay-button,
.download {
  width: 100%;
}
.payment-copy {
  margin-top: 13px;
  text-align: center;
}
.notice {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
}
.notice.error {
  color: #a63232;
}

.workflow {
  padding-block: 105px;
}
.section-heading.compact {
  max-width: 720px;
}
.workflow-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 34px;
  margin-top: 50px;
}
.workflow-grid article {
  padding-top: 18px;
  border-top: 2px solid var(--ink);
}
.workflow-grid article > span {
  color: var(--blue);
  font: 700 10px/1 var(--mono);
}
.workflow-grid h3 {
  margin: 27px 0 9px;
  font: 650 20px/1.15 var(--display);
}
.workflow-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.developers-wrap {
  padding: 96px 0;
  background: var(--ink);
  color: white;
}
.developers-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 85px;
  align-items: center;
}
.developers-grid > div:first-child > p:not(.kicker) {
  max-width: 500px;
  color: #abb8ca;
  font-size: 16px;
}
.developer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.developers-wrap .ghost {
  border-color: #405069;
  color: white;
}
.code-card {
  overflow: hidden;
  border: 1px solid #42516a;
  border-radius: 9px;
  background: #0d1a2c;
}
.code-head {
  display: flex;
  justify-content: space-between;
  padding: 13px 16px;
  border-bottom: 1px solid #34445c;
  color: #9eacc0;
  font: 10px/1 var(--mono);
}
.code-card pre {
  margin: 0;
  padding: 20px;
  overflow: auto;
  color: #dfe9f7;
  font: 12px/1.7 var(--mono);
  white-space: pre-wrap;
}
.console-output {
  max-height: 210px;
  border-top: 1px solid #34445c;
  color: #9fb6d5 !important;
}
.showcase-wrap {
  padding-block: 88px 96px;
  background: #091424;
  color: #f4f7fb;
}
.showcase-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.55fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 38px;
}
.showcase-heading h2 {
  max-width: 760px;
  margin: 0;
  font: 650 clamp(40px, 5vw, 68px) / 0.98 var(--display);
  letter-spacing: -0.035em;
  text-wrap: balance;
}
.showcase-heading p {
  max-width: 490px;
  margin: 0;
  color: #9bacbf;
  font-size: 15px;
}
.capability-reel {
  display: grid;
  grid-template-columns: minmax(0, 1.68fr) minmax(260px, 0.72fr);
  border: 1px solid #2b3b51;
  background: #0e1b2d;
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.3);
}
.showcase-stage {
  min-width: 0;
  border-right: 1px solid #2b3b51;
  background: #050b13;
}
.showcase-stage video {
  width: 100%;
  aspect-ratio: 7 / 4;
  display: block;
  object-fit: cover;
  background: #02060b;
  cursor: pointer;
}
.showcase-stage-footer {
  min-height: 142px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: end;
  padding: 24px 26px 26px;
  border-top: 1px solid #2b3b51;
}
.showcase-copy > p:first-child {
  margin: 0 0 4px;
  color: #8da8ff;
  font-size: 12px;
  font-weight: 700;
}
.showcase-copy h3 {
  margin: 0;
  font: 650 28px/1.15 var(--display);
  letter-spacing: -0.02em;
}
.showcase-copy > p:last-child {
  max-width: 650px;
  margin: 8px 0 0;
  color: #9bacbf;
  font-size: 13px;
}
.showcase-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}
.showcase-actions button,
.showcase-create {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 13px;
  border: 1px solid #3a4c64;
  border-radius: 6px;
  background: transparent;
  color: #c4cfdd;
  cursor: pointer;
  font-size: 11px;
  font-weight: 700;
}
.showcase-actions button:hover,
.showcase-create:hover {
  border-color: #7695ff;
  color: white;
}
.showcase-create {
  border-color: #5478f4;
  background: #315bea;
  color: white;
}
.showcase-selector {
  min-width: 0;
  display: grid;
  grid-template-rows: repeat(4, 1fr);
}
.showcase-option {
  position: relative;
  min-width: 0;
  display: grid;
  align-content: center;
  gap: 5px;
  padding: 20px 24px 20px 28px;
  border: 0;
  border-bottom: 1px solid #2b3b51;
  background: transparent;
  color: #f4f7fb;
  cursor: pointer;
  text-align: left;
}
.showcase-option:last-child {
  border-bottom: 0;
}
.showcase-option::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: transparent;
}
.showcase-option:hover {
  background: rgba(255, 255, 255, 0.025);
}
.showcase-option.active {
  background: #13233a;
}
.showcase-option.active::before {
  background: #7294ff;
}
.showcase-option span {
  color: #8da8ff;
  font-size: 11px;
  font-weight: 700;
}
.showcase-option strong {
  overflow: hidden;
  font: 650 20px/1.2 var(--display);
  text-overflow: ellipsis;
  white-space: nowrap;
}
.showcase-option small {
  color: #8495aa;
  font-size: 11px;
}
footer {
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--muted);
  font-size: 12px;
}

.wallet-dialog {
  width: min(440px, calc(100% - 32px));
  padding: 30px;
  border: 1px solid #cbd6e4;
  border-radius: 12px;
  background: white;
  color: var(--ink);
  box-shadow: 0 30px 90px rgba(15, 31, 54, 0.24);
  overscroll-behavior: contain;
}
.wallet-dialog::backdrop {
  background: rgba(20, 36, 59, 0.48);
  backdrop-filter: blur(4px);
}
.wallet-dialog h2 {
  margin: 6px 0 10px;
  font-size: 30px;
}
.wallet-dialog > p {
  margin: 0 0 22px;
  color: var(--muted);
}
.wallet-dialog form {
  position: absolute;
  top: 16px;
  right: 16px;
}
.dialog-close {
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: #eff3f8;
  cursor: pointer;
  font-size: 22px;
}
.wallet-options {
  display: grid;
  gap: 9px;
}
.wallet-option {
  min-height: 58px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  cursor: pointer;
  font-weight: 700;
  text-align: left;
}
.wallet-option:hover {
  border-color: var(--blue);
  background: #f7f9ff;
}
.wallet-option img,
.wallet-option-mark {
  width: 32px;
  height: 32px;
  flex: none;
  border-radius: 8px;
}
.wallet-option-mark {
  display: grid;
  place-items: center;
  background: var(--soft);
  color: var(--blue);
}
.wallet-dialog #wallet-install {
  width: 100%;
}

[hidden] {
  display: none !important;
}
:focus-visible {
  outline: 3px solid rgba(49, 91, 234, 0.45);
  outline-offset: 3px;
}
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 45px;
    padding-block: 70px;
  }
  .studio-grid,
  .developers-grid {
    grid-template-columns: 1fr;
  }
  .workflow-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .showcase-heading {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .capability-reel {
    grid-template-columns: 1fr;
  }
  .showcase-stage {
    border-right: 0;
  }
  .showcase-selector {
    grid-template-columns: repeat(4, minmax(220px, 1fr));
    grid-template-rows: none;
    overflow-x: auto;
    border-top: 1px solid #2b3b51;
  }
  .showcase-option {
    min-height: 130px;
    border-right: 1px solid #2b3b51;
    border-bottom: 0;
  }
  .order-stage {
    min-height: 570px;
  }
}
@media (max-width: 620px) {
  .shell {
    width: min(100% - 28px, 1180px);
  }
  .site-header {
    height: 62px;
    padding-inline: 14px;
  }
  nav {
    display: none;
  }
  .network-pill {
    font-size: 9px;
  }
  .hero {
    min-height: auto;
    padding-block: 54px 66px;
  }
  h1 {
    font-size: clamp(49px, 16vw, 70px);
  }
  .hero-lede {
    font-size: 16px;
  }
  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }
  .text-link {
    text-align: center;
  }
  .rate-card {
    padding: 22px 18px;
  }
  .rate-card-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }
  .price-advantage {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }
  .period-grid {
    grid-template-columns: 1fr;
  }
  .showcase-wrap {
    padding-block: 64px 70px;
  }
  .showcase-heading {
    margin-bottom: 26px;
  }
  .showcase-stage-footer {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 20px 18px 22px;
  }
  .showcase-actions {
    justify-content: flex-start;
  }
  .showcase-actions button,
  .showcase-create {
    flex: 1 1 auto;
  }
  .showcase-selector {
    grid-template-columns: repeat(4, minmax(205px, 1fr));
  }
  .showcase-option {
    min-height: 120px;
    padding: 18px 20px 18px 24px;
  }
  .studio-wrap {
    padding-block: 66px;
  }
  .section-heading {
    align-items: stretch;
    flex-direction: column;
  }
  .wallet-control {
    max-width: none;
    justify-items: stretch;
  }
  .wallet-status {
    text-align: left;
  }
  .wallet-button {
    justify-content: center;
  }
  .composer,
  .order-stage {
    padding: 21px 18px;
  }
  .field-grid {
    grid-template-columns: 1fr;
  }
  .mode-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .seed-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .composer-footer {
    align-items: stretch;
    flex-direction: column;
  }
  .composer-footer .button {
    width: 100%;
  }
  .workflow {
    padding-block: 75px;
  }
  .workflow-grid {
    grid-template-columns: 1fr;
  }
  .developers-wrap {
    padding-block: 70px;
  }
  footer {
    padding-block: 30px;
    align-items: flex-start;
    flex-direction: column;
  }
}
