.start-layout {
  display: grid;
  grid-template-columns: minmax(320px, 560px) minmax(260px, 420px);
  gap: 16px;
  align-items: start;
}

.start-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 22px;
  box-shadow: 0 2px 8px rgba(23, 33, 43, .03);
}

.start-panel.wide {
  max-width: 680px;
}

.start-panel.muted {
  background: #f9fbfb;
}

.start-panel h3 {
  margin: 0 0 8px;
  font-size: 20px;
}

.start-panel p {
  margin: 0 0 16px;
  color: var(--muted);
  line-height: 1.5;
}

.start-panel label {
  display: block;
  font-weight: 700;
  margin: 14px 0 6px;
}

.start-panel input,
.start-panel select,
.start-panel textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px 13px;
  margin-top: 7px;
  background: #fff;
  outline: none;
  font: inherit;
}

.start-panel input:focus,
.start-panel select:focus,
.start-panel textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent2);
}

.start-panel button {
  border: 0;
  border-radius: 10px;
  background: var(--accent);
  color: #fff;
  padding: 13px 16px;
  font-weight: 760;
  cursor: pointer;
  margin-top: 12px;
}

.start-panel button:disabled {
  background: #c8d2d5;
  color: #53636a;
  cursor: not-allowed;
}

.login-card .link-button {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--line);
  margin-top: 10px;
}

.login-card .link-button:hover {
  background: var(--accent2);
}

.verification-code {
  display: grid;
  gap: 6px;
  margin: 18px 0 8px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #f9fbfb;
}

.verification-code span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.verification-code strong {
  color: var(--ink);
  font-size: 28px;
  letter-spacing: 0;
  line-height: 1.1;
}

.onboarding-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(180px, 1fr));
  gap: 12px;
  margin: 18px 0;
}

.onboarding-steps button {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 6px 10px;
  align-items: center;
  text-align: left;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
  padding: 14px;
  cursor: pointer;
}

.onboarding-steps button.active {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent2);
}

.onboarding-steps button:disabled {
  background: #f5f7f7;
  color: var(--muted);
  cursor: not-allowed;
}

.onboarding-steps b {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--accent2);
  color: var(--accent);
}

.onboarding-steps span {
  font-weight: 760;
}

.onboarding-steps em {
  grid-column: 2;
  color: var(--muted);
  font-style: normal;
  font-size: 13px;
}

.completion-banner {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--accent2);
  color: var(--accent);
  font-weight: 760;
}

@media (max-width: 900px) {
  .start-layout {
    grid-template-columns: 1fr;
  }

  .start-panel.wide {
    max-width: none;
  }

  .onboarding-steps {
    grid-template-columns: 1fr;
  }
}
