:root {
  --ink: #10251c;
  --muted: #64746c;
  --green: #174f38;
  --green2: #2c7657;
  --mint: #e4f1e9;
  --cream: #f6f4ed;
  --line: #dce4df;
  --white: #fff;
  --amber: #fff2cd;
  --danger: #ad352e;
  font-family:
    Inter,
    ui-sans-serif,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: var(--ink);
  background: var(--cream);
  font-synthesis: none;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  min-height: 100vh;
}
button,
input,
textarea {
  font: inherit;
}
.skip-link {
  position: fixed;
  left: 16px;
  top: -60px;
  z-index: 100;
  background: var(--ink);
  color: white;
  padding: 12px 18px;
  border-radius: 8px;
}
.skip-link:focus {
  top: 16px;
}
.loading-screen {
  min-height: 100vh;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 14px;
  color: var(--muted);
}
.spinner {
  width: 28px;
  height: 28px;
  border: 3px solid var(--line);
  border-top-color: var(--green);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.brand-mark {
  color: var(--ink);
  font-weight: 800;
  letter-spacing: 0.14em;
  text-decoration: none;
  font-size: 13px;
}
.brand-mark span {
  color: var(--green2);
}
.signin-view {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(480px, 640px) 1fr;
  background: white;
}
.signin-card {
  padding: clamp(36px, 6vw, 88px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.signin-card > .brand-mark {
  position: absolute;
  top: 40px;
}
.signin-copy {
  margin: 56px 0 30px;
}
.pill,
.eyebrow {
  display: inline-block;
  color: var(--green2);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.pill {
  background: var(--mint);
  border-radius: 999px;
  padding: 8px 11px;
}
.signin-copy h1,
.panel-heading h1 {
  font-family: Georgia, serif;
  font-weight: 500;
  letter-spacing: -0.035em;
}
.signin-copy h1 {
  font-size: clamp(38px, 4.6vw, 62px);
  line-height: 1.02;
  margin: 20px 0;
}
.signin-copy p,
.panel-heading p {
  color: var(--muted);
  line-height: 1.65;
}
.signin-copy p {
  font-size: 17px;
  max-width: 560px;
}
.trust-list {
  padding: 0;
  margin: 0 0 30px;
  list-style: none;
  border-top: 1px solid var(--line);
}
.trust-list li {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.trust-list li > span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--green2);
  font-size: 11px;
  font-weight: 800;
}
.trust-list div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.trust-list small {
  color: var(--muted);
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid transparent;
  border-radius: 10px;
  padding: 13px 20px;
  font-weight: 750;
  text-decoration: none;
  cursor: pointer;
  transition: 0.18s ease;
}
.button:hover {
  transform: translateY(-1px);
}
.button:focus-visible,
.text-button:focus-visible,
.step-nav button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid #7bbd9e;
  outline-offset: 2px;
}
.button.primary {
  background: var(--green);
  color: white;
  box-shadow: 0 8px 24px #174f3828;
}
.button.primary:hover {
  background: #0f3e2b;
}
.button.secondary {
  background: white;
  border-color: var(--line);
  color: var(--ink);
}
.button:disabled {
  opacity: 0.48;
  cursor: not-allowed;
  transform: none;
}
.wide {
  width: 100%;
  padding: 16px;
}
.security-note {
  text-align: center;
  color: var(--muted);
  font-size: 12px;
}
.signin-art {
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #123727, #28664c);
  min-height: 100vh;
}
.orb {
  position: absolute;
  border-radius: 50%;
}
.orb-one {
  width: 500px;
  height: 500px;
  background: #85b89a22;
  right: -120px;
  top: -80px;
}
.orb-two {
  width: 300px;
  height: 300px;
  background: #d8bc7622;
  left: -50px;
  bottom: -70px;
}
.service-stack {
  position: relative;
  width: min(440px, 75%);
  padding: 24px;
  background: #ffffff12;
  border: 1px solid #ffffff25;
  border-radius: 24px;
  box-shadow: 0 32px 70px #071b1270;
  backdrop-filter: blur(12px);
  color: white;
}
.stack-label {
  display: block;
  margin: 2px 4px 20px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #cfdfd6;
}
.service-stack > div:not(.stack-more) {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  align-items: center;
  gap: 14px;
  background: white;
  color: var(--ink);
  padding: 15px;
  border-radius: 13px;
  margin: 10px 0;
}
.service-stack i {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  background: var(--mint);
  border-radius: 10px;
  font-style: normal;
  font-weight: 800;
  color: var(--green);
}
.service-stack span {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.service-stack small {
  color: var(--muted);
}
.service-stack b {
  color: var(--green2);
  font-size: 11px;
  background: var(--mint);
  padding: 6px 8px;
  border-radius: 99px;
}
.stack-more {
  text-align: center;
  padding: 15px 0 2px;
  color: #dcebe3;
  font-size: 13px;
}
.app-header {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  border-bottom: 1px solid var(--line);
  background: #ffffffeb;
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 20;
}
.header-actions,
.account {
  display: flex;
  align-items: center;
  gap: 20px;
}
.help-link {
  color: var(--muted);
  text-decoration: none;
  font-weight: 650;
  font-size: 14px;
}
.account {
  gap: 10px;
  padding-left: 20px;
  border-left: 1px solid var(--line);
  font-size: 13px;
}
.avatar {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--mint);
  color: var(--green);
  font-weight: 800;
}
.logout {
  border: 0;
  background: none;
  color: var(--muted);
  cursor: pointer;
  padding: 4px;
}
.app-layout {
  display: grid;
  grid-template-columns: 290px minmax(0, 1fr);
  min-height: calc(100vh - 72px);
}
.sidebar {
  background: #eef1ec;
  border-right: 1px solid var(--line);
  padding: 42px 28px;
  position: sticky;
  top: 72px;
  height: calc(100vh - 72px);
}
.sidebar-intro h2 {
  font:
    500 25px Georgia,
    serif;
  margin: 10px 0 4px;
}
.sidebar-intro p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}
.step-nav {
  list-style: none;
  padding: 0;
  margin: 34px 0;
}
.step-nav li {
  position: relative;
}
.step-nav li:not(:last-child):before {
  content: "";
  position: absolute;
  left: 16px;
  top: 42px;
  width: 1px;
  height: 28px;
  background: #cbd5cf;
}
.step-nav button {
  display: flex;
  align-items: center;
  gap: 13px;
  width: 100%;
  padding: 11px 4px;
  border: 0;
  background: transparent;
  text-align: left;
  color: var(--muted);
  cursor: pointer;
}
.step-nav button > span {
  display: grid;
  place-items: center;
  flex: 0 0 33px;
  height: 33px;
  border: 1px solid #c7d1cb;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 800;
  background: #eef1ec;
  z-index: 1;
}
.step-nav button div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.step-nav strong {
  font-size: 14px;
}
.step-nav small {
  font-size: 11px;
}
.step-nav li.active button {
  color: var(--ink);
}
.step-nav li.active button > span {
  background: var(--green);
  color: white;
  border-color: var(--green);
}
.step-nav li.complete button > span {
  background: var(--mint);
  color: transparent;
  border-color: #a8c8b6;
}
.step-nav li.complete button > span:after {
  content: "✓";
  color: var(--green);
  position: absolute;
}
.sidebar-assurance {
  display: flex;
  gap: 12px;
  padding: 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}
.sidebar-assurance > span {
  color: var(--green2);
  font-weight: 800;
}
.sidebar-assurance p {
  margin: 0;
}
.sidebar-assurance strong {
  color: var(--ink);
}
.workspace {
  width: min(840px, calc(100% - 48px));
  margin: 0 auto;
  padding: 48px 0 72px;
}
.save-state {
  text-align: right;
  color: var(--muted);
  font-size: 12px;
  margin-bottom: 10px;
}
.save-state span {
  color: #88a496;
}
.save-state.saving span {
  color: #d59b37;
}
.save-state.saved span {
  color: #319166;
}
.notice {
  padding: 14px 16px;
  border-radius: 10px;
  margin-bottom: 16px;
  background: var(--amber);
  color: #72520b;
  border: 1px solid #ead69a;
}
.notice.error {
  background: #fff0ee;
  color: var(--danger);
  border-color: #efc7c3;
}
.panel {
  background: white;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 15px 45px #1834250a;
}
.step-panel {
  padding: clamp(28px, 5vw, 52px);
}
.panel-heading {
  border-bottom: 1px solid var(--line);
  padding-bottom: 28px;
  margin-bottom: 30px;
}
.panel-heading h1 {
  font-size: clamp(32px, 4vw, 45px);
  line-height: 1.08;
  margin: 10px 0;
}
.panel-heading p {
  margin: 0;
  max-width: 650px;
}
.field {
  margin: 24px 0;
}
.field label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 750;
  margin-bottom: 8px;
}
.field label em {
  font-size: 10px;
  font-style: normal;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
}
.field input,
.field textarea {
  width: 100%;
  border: 1px solid #bdcac3;
  border-radius: 10px;
  padding: 13px 14px;
  background: #fcfdfc;
  color: var(--ink);
  transition: 0.15s;
}
.field textarea {
  min-height: 118px;
  resize: vertical;
  line-height: 1.5;
}
.field input:hover,
.field textarea:hover {
  border-color: #879b90;
}
.field input.invalid,
.field textarea.invalid {
  border-color: var(--danger);
  background: #fffafa;
}
.field small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  margin-top: 7px;
}
.field-error {
  display: block;
  color: var(--danger);
  font-size: 12px;
  margin-top: 7px;
  min-height: 1em;
}
.tip {
  display: flex;
  gap: 13px;
  padding: 16px;
  background: #f2f6f3;
  border-radius: 10px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}
.tip > span {
  color: var(--green2);
}
.tip p {
  margin: 0;
}
.tip strong {
  color: var(--ink);
}
.select-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
  font-size: 13px;
}
.text-button {
  border: 0;
  background: none;
  color: var(--green2);
  font-weight: 750;
  cursor: pointer;
}
.service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.service-option {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 13px;
  padding: 17px;
  border: 1px solid var(--line);
  border-radius: 12px;
  cursor: pointer;
  transition: 0.16s;
}
.service-option:hover {
  border-color: #91ad9e;
  box-shadow: 0 8px 20px #173c2b0b;
}
.service-option.selected {
  border-color: var(--green2);
  background: #f5faf7;
  box-shadow: inset 0 0 0 1px var(--green2);
}
.service-option input {
  position: absolute;
  opacity: 0;
}
.service-icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  background: var(--cream);
  border-radius: 9px;
  color: var(--green);
  font-weight: 800;
}
.service-option.selected .service-icon {
  background: var(--mint);
}
.service-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-right: 15px;
}
.service-copy strong {
  font-size: 14px;
}
.service-copy small {
  color: var(--muted);
  line-height: 1.35;
}
.service-check {
  position: absolute;
  right: 12px;
  top: 12px;
  width: 19px;
  height: 19px;
  border: 1px solid #b8c6be;
  border-radius: 50%;
  color: transparent;
  font-size: 12px;
  text-align: center;
}
.selected .service-check {
  background: var(--green);
  border-color: var(--green);
  color: white;
}
.review-summary {
  display: grid;
  gap: 12px;
}
.review-card {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 18px;
}
.review-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.review-card-header h2 {
  font:
    500 20px Georgia,
    serif;
  margin: 0;
}
.review-card-header button {
  border: 0;
  background: none;
  color: var(--green2);
  font-weight: 750;
  cursor: pointer;
}
.review-list {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 9px 20px;
  font-size: 13px;
}
.review-list dt {
  color: var(--muted);
}
.review-list dd {
  margin: 0;
  font-weight: 650;
}
.review-services {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.review-services span {
  padding: 7px 10px;
  border-radius: 99px;
  background: var(--mint);
  color: var(--green);
  font-size: 12px;
  font-weight: 750;
}
.launch-assurance {
  display: flex;
  gap: 14px;
  padding: 18px;
  margin-top: 18px;
  background: #f3f8f5;
  border-radius: 12px;
}
.launch-assurance > span {
  display: grid;
  place-items: center;
  flex: 0 0 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--mint);
  color: var(--green);
  font-weight: 800;
}
.launch-assurance p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
  margin: 4px 0 0;
}
.wizard-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
}
.wizard-footer > span {
  flex: 1;
}
.progress-panel {
  padding: clamp(28px, 5vw, 52px);
}
.progress-meta {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 13px;
}
.progress-meta strong {
  color: var(--ink);
}
.progress-track {
  height: 8px;
  background: #e8eeea;
  border-radius: 99px;
  margin: 10px 0 26px;
  overflow: hidden;
}
.progress-track i {
  display: block;
  width: 0;
  height: 100%;
  background: var(--green2);
  transition: width 0.35s;
}
.launch-steps {
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
}
.launch-step {
  display: grid;
  grid-template-columns: 38px 1fr auto;
  align-items: center;
  gap: 13px;
  padding: 15px;
  border-bottom: 1px solid var(--line);
}
.launch-step:last-child {
  border: 0;
}
.status-icon {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  background: var(--cream);
  border-radius: 9px;
  color: var(--muted);
  font-weight: 800;
}
.launch-step strong {
  font-size: 14px;
}
.launch-step small {
  display: block;
  color: var(--muted);
  margin-top: 3px;
}
.launch-step b {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
}
.launch-step.ok .status-icon {
  background: var(--mint);
  color: var(--green);
}
.launch-step.ok b {
  color: var(--green2);
}
.launch-step.failed .status-icon {
  background: #fff0ee;
  color: var(--danger);
}
.launch-step.failed b {
  color: var(--danger);
}
.completion {
  display: flex;
  gap: 18px;
  margin-top: 24px;
  padding: 22px;
  background: var(--mint);
  border-radius: 12px;
}
.completion > span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--green);
  color: white;
  font-size: 20px;
}
.completion h2 {
  font:
    500 24px Georgia,
    serif;
  margin: 0;
}
.completion p {
  color: var(--muted);
  margin: 6px 0;
  line-height: 1.5;
}
.mobile-progress {
  display: none;
}
@media (max-width: 900px) {
  .signin-view {
    grid-template-columns: 1fr;
  }
  .signin-art {
    display: none;
  }
  .app-layout {
    display: block;
  }
  .sidebar {
    display: none;
  }
  .workspace {
    padding-top: 28px;
  }
  .mobile-progress {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 22px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
  }
  .mobile-progress > div {
    height: 5px;
    background: #dfe6e2;
    border-radius: 99px;
    flex: 1;
    overflow: hidden;
  }
  .mobile-progress i {
    display: block;
    width: 25%;
    height: 100%;
    background: var(--green2);
    transition: width 0.2s;
  }
}
@media (max-width: 620px) {
  .signin-card {
    padding: 70px 24px 32px;
  }
  .signin-card > .brand-mark {
    top: 24px;
  }
  .signin-copy {
    margin-top: 30px;
  }
  .app-header {
    height: 64px;
    padding: 0 18px;
  }
  .help-link {
    display: none;
  }
  .account {
    border: 0;
    padding: 0;
  }
  .account-email {
    display: none;
  }
  .workspace {
    width: calc(100% - 28px);
    padding: 22px 0 40px;
  }
  .step-panel,
  .progress-panel {
    padding: 24px 19px;
  }
  .panel-heading h1 {
    font-size: 33px;
  }
  .service-grid {
    grid-template-columns: 1fr;
  }
  .wizard-footer {
    position: sticky;
    bottom: 0;
    background: linear-gradient(transparent, var(--cream) 18%);
    padding: 24px 0 10px;
  }
  .wizard-footer .button {
    padding: 13px 16px;
  }
  .review-list {
    grid-template-columns: 1fr;
    gap: 4px;
  }
  .review-list dd {
    margin-bottom: 8px;
  }
  .security-note {
    line-height: 1.5;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
  }
}
[hidden] {
  display: none !important;
}
.workspace:focus {
  outline: none;
}

/* StateSet brand alignment: mirrors semantic tokens from stateset-app/styles/global.css. */
:root {
  --ink: #111827;
  --muted: #4b5563;
  --green: #1a62ff;
  --green2: #1a62ff;
  --mint: rgba(26, 98, 255, 0.1);
  --cream: #f9fafb;
  --line: rgba(0, 0, 0, 0.1);
  --white: #fff;
  --amber: rgba(245, 158, 11, 0.1);
  --danger: #ef4444;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Arial,
    sans-serif;
}
body {
  background: #f9fafb;
  color: #111827;
}
.signin-copy h1,
.panel-heading h1,
.sidebar-intro h2,
.review-card-header h2,
.completion h2 {
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Arial,
    sans-serif;
  font-weight: 700;
}
.signin-copy h1,
.panel-heading h1 {
  letter-spacing: -0.04em;
}
.sidebar-intro h2,
.review-card-header h2,
.completion h2 {
  letter-spacing: -0.03em;
}
.brand-mark,
.brand-mark span {
  color: #2563eb;
}
.pill {
  color: #1a62ff;
  background: rgba(26, 98, 255, 0.1);
}
.signin-art {
  background-color: #050914;
  background-image:
    radial-gradient(
      circle at 78% 18%,
      rgba(79, 124, 255, 0.22),
      transparent 30%
    ),
    radial-gradient(
      circle at 12% 78%,
      rgba(103, 232, 249, 0.1),
      transparent 27%
    ),
    linear-gradient(145deg, #050914 0%, #080d1c 54%, #071126 100%);
}
.orb-one {
  background: rgba(79, 124, 255, 0.16);
}
.orb-two {
  background: rgba(103, 232, 249, 0.09);
}
.button {
  border-radius: 999px;
}
.button.primary {
  background: #1a62ff;
  box-shadow: 0 12px 28px rgba(26, 98, 255, 0.24);
}
.button.primary:hover {
  background: #1550d8;
}
.button:focus-visible,
.text-button:focus-visible,
.step-nav button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline-color: rgba(26, 98, 255, 0.55);
}
.service-stack i,
.service-icon {
  color: #1a62ff;
  background: rgba(26, 98, 255, 0.1);
}
.service-stack b {
  color: #047857;
  background: rgba(16, 185, 129, 0.1);
}
.sidebar {
  background: #f3f4f6;
}
.step-nav button > span {
  background: #f3f4f6;
}
.step-nav li.active button > span {
  background: #1a62ff;
  border-color: #1a62ff;
}
.step-nav li.complete button > span {
  background: rgba(26, 98, 255, 0.1);
  border-color: rgba(26, 98, 255, 0.3);
}
.step-nav li.complete button > span:after {
  color: #1a62ff;
}
.sidebar-assurance > span,
.tip > span,
.text-button,
.review-card-header button {
  color: #1a62ff;
}
.panel {
  box-shadow: 0 24px 60px -40px rgba(15, 23, 42, 0.24);
}
.field input:focus,
.field textarea:focus {
  border-color: rgba(26, 98, 255, 0.55);
  box-shadow: 0 0 0 3px rgba(26, 98, 255, 0.1);
}
.service-option.selected {
  border-color: #1a62ff;
  background: rgba(26, 98, 255, 0.05);
  box-shadow: inset 0 0 0 1px #1a62ff;
}
.selected .service-check {
  background: #1a62ff;
  border-color: #1a62ff;
}
.review-services span {
  color: #1550d8;
  background: rgba(26, 98, 255, 0.1);
}
.launch-assurance {
  background: rgba(26, 98, 255, 0.05);
}
.launch-assurance > span {
  background: rgba(26, 98, 255, 0.1);
  color: #1a62ff;
}
.progress-track i {
  background: #1a62ff;
}
.launch-step.ok .status-icon {
  background: rgba(16, 185, 129, 0.1);
  color: #047857;
}
.launch-step.ok b {
  color: #047857;
}
.completion {
  background: rgba(16, 185, 129, 0.1);
}
.completion > span {
  background: #10b981;
}
.avatar {
  background: rgba(26, 98, 255, 0.1);
  color: #1a62ff;
}
.notice.error {
  background: rgba(239, 68, 68, 0.1);
  border-color: rgba(239, 68, 68, 0.3);
  color: #b91c1c;
}
