/* [project]/src/app/globals.css [app-client] (css) */
:root {
  --background: #f4f6f8;
  --foreground: #17202a;
  --muted: #667085;
  --surface: #fff;
  --surface-strong: #edf2f7;
  --border: #d8dee8;
  --accent: #1f7a63;
  --accent-strong: #145c49;
  --accent-soft: #e4f3ee;
  --warning-soft: #fff3df;
  --success-soft: #e8f7ed;
  --shadow: 0 18px 45px #14233714;
}

html {
  height: 100%;
}

html, body {
  max-width: 100vw;
  overflow-x: hidden;
}

body {
  min-height: 100%;
  color: var(--foreground);
  background: var(--background);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

button, input, select, textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

@media (prefers-reduced-motion: reduce) {
  *, :before, :after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}

.app-frame {
  grid-template-columns: 280px minmax(0, 1fr);
  min-height: 100vh;
  display: grid;
}

.sidebar {
  color: #f9fafb;
  background: #111827;
  flex-direction: column;
  gap: 24px;
  height: 100vh;
  padding: 24px;
  display: flex;
  position: sticky;
  top: 0;
}

.brand {
  align-items: center;
  gap: 12px;
  display: flex;
}

.brand small {
  color: #aeb7c5;
  margin-top: 3px;
  font-size: 12px;
  display: block;
}

.brand-mark {
  background: var(--accent);
  color: #fff;
  border-radius: 8px;
  place-items: center;
  width: 44px;
  height: 44px;
  font-weight: 800;
  display: inline-grid;
}

.role-switcher, .sidebar-section {
  flex-direction: column;
  gap: 8px;
  display: flex;
}

.role-link, .nav-item {
  color: #d8dee8;
  border-radius: 8px;
  justify-content: space-between;
  align-items: center;
  min-height: 42px;
  padding: 10px 12px;
  font-size: 14px;
  transition: background-color .18s cubic-bezier(.22, 1, .36, 1), color .18s cubic-bezier(.22, 1, .36, 1), transform .18s cubic-bezier(.22, 1, .36, 1);
  display: flex;
}

.role-link.active, .role-link:hover, .nav-item:hover {
  color: #fff;
  background: #ffffff17;
}

.role-link:hover, .nav-item:hover {
  transform: translateX(2px);
}

.section-label {
  color: #8d99aa;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
}

.workspace {
  min-width: 0;
  padding: 24px;
}

.topbar {
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
  display: flex;
}

.searchbox {
  border: 1px solid var(--border);
  background: var(--surface);
  min-height: 44px;
  color: var(--muted);
  border-radius: 8px;
  flex: 1;
  align-items: center;
  gap: 10px;
  padding: 0 14px;
  font-size: 14px;
  display: flex;
}

.topbar-actions, .hero-actions {
  align-items: center;
  gap: 10px;
  display: flex;
}

.icon-button {
  border: 1px solid var(--border);
  background: var(--surface);
  width: 42px;
  height: 42px;
  color: var(--foreground);
  border-radius: 8px;
  place-items: center;
  transition: background-color .18s cubic-bezier(.22, 1, .36, 1), box-shadow .18s cubic-bezier(.22, 1, .36, 1);
  display: inline-grid;
}

.icon-button:hover {
  box-shadow: 0 8px 20px #14233714;
}

.context-strip {
  border: 1px solid var(--border);
  background: var(--surface-strong);
  color: var(--muted);
  border-radius: 8px;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  padding: 12px 14px;
  font-size: 14px;
  display: flex;
}

.hero-panel {
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow);
  border-radius: 8px;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  padding: 28px;
  display: flex;
}

.eyebrow {
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 10px;
  font-size: 13px;
  font-weight: 800;
}

.hero-panel h1 {
  max-width: 760px;
  font-size: 34px;
  line-height: 1.12;
}

.hero-panel p {
  max-width: 720px;
  color: var(--muted);
  margin-top: 10px;
  font-size: 16px;
  line-height: 1.55;
}

.primary-button, .secondary-button {
  white-space: nowrap;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 16px;
  font-size: 14px;
  font-weight: 700;
  transition: background-color .18s cubic-bezier(.22, 1, .36, 1), border-color .18s cubic-bezier(.22, 1, .36, 1), color .18s cubic-bezier(.22, 1, .36, 1), box-shadow .18s cubic-bezier(.22, 1, .36, 1);
  display: inline-flex;
}

.primary-button {
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #fff;
}

.secondary-button {
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--foreground);
}

.primary-button:hover, .secondary-button:hover {
  box-shadow: 0 10px 24px #1423371a;
}

.metric-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
  display: grid;
}

.metric-card {
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: 8px;
  padding: 18px;
}

.metric-card span {
  color: var(--muted);
  font-size: 13px;
  display: block;
}

.metric-card strong {
  margin-top: 8px;
  font-size: 30px;
  display: block;
}

.metric-card.good {
  background: var(--success-soft);
}

.metric-card.warn {
  background: var(--warning-soft);
}

.content-grid {
  grid-template-columns: minmax(320px, .9fr) minmax(0, 1.3fr);
  gap: 18px;
  margin-top: 18px;
  display: grid;
}

.workflow-panel, .table-panel {
  border: 1px solid var(--border);
  background: var(--surface);
  min-width: 0;
  box-shadow: var(--shadow);
  border-radius: 8px;
}

.panel-heading {
  border-bottom: 1px solid var(--border);
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 18px;
  display: flex;
}

.panel-heading h2 {
  font-size: 18px;
}

.panel-heading span {
  color: var(--muted);
  font-size: 13px;
}

.workflow-list {
  flex-direction: column;
  display: flex;
}

.workflow-item {
  border-bottom: 1px solid var(--border);
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 12px;
  padding: 18px;
  display: grid;
}

.workflow-item:last-child {
  border-bottom: 0;
}

.workflow-icon {
  background: var(--accent-soft);
  width: 42px;
  height: 42px;
  color: var(--accent-strong);
  border-radius: 8px;
  place-items: center;
  display: inline-grid;
}

.workflow-title {
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
  display: flex;
}

.workflow-title h3 {
  font-size: 15px;
}

.workflow-title span {
  color: var(--muted);
  font-size: 12px;
}

.workflow-item p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.data-table {
  overflow-x: auto;
}

.data-row {
  border-bottom: 1px solid var(--border);
  grid-template-columns: 88px minmax(180px, 1.3fr) minmax(120px, .8fr) minmax(110px, .7fr) minmax(130px, .8fr);
  min-width: 760px;
  display: grid;
}

.data-row:last-child {
  border-bottom: 0;
}

.data-row span {
  color: var(--muted);
  padding: 14px 16px;
  font-size: 14px;
}

.data-row span:first-child, .data-row.header span {
  color: var(--foreground);
  font-weight: 700;
}

.data-row.header {
  background: var(--surface-strong);
}

.auth-page {
  background: var(--background);
  place-items: center;
  min-height: 100vh;
  padding: 24px;
  display: grid;
}

.auth-panel {
  border: 1px solid var(--border);
  background: var(--surface);
  width: min(960px, 100%);
  box-shadow: var(--shadow);
  border-radius: 8px;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: 28px;
  padding: 28px;
  display: grid;
}

.auth-copy h1 {
  margin-top: 24px;
  font-size: 34px;
}

.auth-copy p {
  color: var(--muted);
  margin-top: 12px;
  line-height: 1.6;
}

.auth-form, .onboarding-list {
  flex-direction: column;
  gap: 14px;
  display: flex;
}

.auth-form label {
  color: var(--muted);
  flex-direction: column;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  display: flex;
}

.auth-form input, .auth-form select {
  border: 1px solid var(--border);
  min-height: 44px;
  color: var(--foreground);
  background: #fff;
  border-radius: 8px;
  padding: 0 12px;
}

.onboarding-form {
  gap: 12px;
}

.checkbox-row {
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: start;
  line-height: 1.35;
  color: var(--foreground) !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  display: grid !important;
}

.checkbox-row input {
  height: 18px;
  min-height: 18px;
  margin-top: 2px;
}

.auth-note, .onboarding-item {
  background: var(--surface-strong);
  color: var(--muted);
  border-radius: 8px;
  align-items: center;
  gap: 10px;
  padding: 12px;
  font-size: 14px;
  display: flex;
}

.link-button {
  margin-top: 6px;
}

.login-entry {
  background: #eee;
  grid-template-columns: minmax(0, 1.1fr) minmax(420px, .9fr);
  min-height: 100vh;
  display: grid;
}

.login-visual {
  background: #f2f3f5;
  place-items: center;
  min-height: 100vh;
  padding: 48px;
  display: grid;
}

.login-visual-card {
  background: linear-gradient(135deg, #fffffff5, #f5f6f8e6), #f6f7f9;
  border-radius: 8px;
  width: min(620px, 100%);
  min-height: 640px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 80px #18202c24;
}

.visual-logo {
  color: #2b2b2b;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  display: flex;
  position: absolute;
  top: 34px;
  left: 34px;
}

.visual-logo span {
  background: #ed001f;
  width: 30px;
  height: 30px;
}

.visual-phone {
  background: #fff;
  border-radius: 30px;
  width: 260px;
  height: 520px;
  padding: 28px 22px;
  position: absolute;
  bottom: 54px;
  right: 54px;
  box-shadow: 0 28px 70px #1a202c2e;
}

.visual-phone-header {
  background: #d9dce3;
  border-radius: 999px;
  width: 84px;
  height: 8px;
  margin: 0 auto 46px;
}

.visual-phone-line, .visual-phone-field, .visual-phone-button {
  background: #eef0f5;
  border-radius: 10px;
}

.visual-phone-line {
  width: 68%;
  height: 22px;
  margin-bottom: 12px;
}

.visual-phone-line.wide {
  width: 100%;
}

.visual-phone-field {
  height: 54px;
  margin-top: 34px;
}

.visual-phone-button {
  background: #444;
  height: 48px;
  margin-top: 42px;
}

.visual-caption {
  width: 290px;
  position: absolute;
  bottom: 42px;
  left: 36px;
}

.visual-title {
  color: #20242b;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.06;
}

.visual-caption p {
  color: #667085;
  margin-top: 16px;
  font-size: 17px;
  line-height: 1.5;
}

.login-panel {
  background: #fff;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  min-height: 100vh;
  padding: 56px 6vw;
  display: flex;
  position: relative;
}

.login-card {
  flex-direction: column;
  flex: 1;
  justify-content: center;
  width: min(430px, 100%);
  min-height: 640px;
  margin: 0;
  display: flex;
}

.login-topbar {
  background: none;
  justify-content: space-between;
  align-items: center;
  min-height: 34px;
  margin: 0;
  padding: 0;
  display: flex;
  position: absolute;
  top: 56px;
  left: 6vw;
  right: 6vw;
}

.login-topbar button {
  color: #3f3f3f;
  background: none;
  border: 0;
  font-size: 16px;
  text-decoration: underline;
}

.login-brand {
  color: #2b2b2b;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  display: flex;
}

.login-brand-mark {
  background: #ed001f;
  width: 30px;
  height: 30px;
}

.login-form {
  flex-direction: column;
  gap: 16px;
  display: flex;
}

.login-step-stack {
  flex-direction: column;
  display: flex;
}

.login-mock-card {
  background: none;
  border-radius: 0;
  margin: 0;
  padding: 0;
}

.login-mock-card h1 {
  color: #2f2f2f;
  text-align: left;
  max-width: 360px;
  margin: 0 0 32px;
  font-size: 34px;
  font-weight: 700;
  line-height: 1.14;
}

.login-form input {
  color: #3d3d3d;
  background: #f0f1f6;
  border: 0;
  border-radius: 9px;
  width: 100%;
  height: 58px;
  padding: 0 18px;
  font-size: 18px;
}

.login-form input:focus {
  outline: 0;
  box-shadow: 0 0 0 2px #44444424;
}

.login-submit {
  background: #444;
  border-color: #444;
  width: 100%;
  height: 54px;
  margin-top: 2px;
  font-size: 17px;
}

.login-submit:disabled, .max-login:disabled {
  cursor: not-allowed;
  opacity: .7;
}

.max-login {
  width: 100%;
  height: 48px;
  margin-top: 14px;
}

.text-button {
  color: #4b4b4b;
  background: none;
  border: 0;
  align-self: center;
  font-size: 14px;
  text-decoration: underline;
}

.login-consents {
  gap: 13px;
  margin-top: 16px;
  display: grid;
}

.login-consents label {
  color: #4f4f4f;
  grid-template-columns: 24px minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  min-height: 26px;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.35;
  display: grid;
}

.login-consents input {
  accent-color: #444;
  width: 24px;
  height: 24px;
}

.login-role-links {
  gap: 18px;
  padding: 34px 0 0;
  display: grid;
}

.login-role-links button {
  color: #2f2f2f;
  text-align: left;
  white-space: nowrap;
  background: none;
  border: 0;
  border-bottom: 1px solid #ff4aa2;
  width: max-content;
  max-width: 100%;
  min-height: 29px;
  padding-right: 24px;
  font-size: 17px;
  line-height: 1.2;
  transition: color .18s cubic-bezier(.22, 1, .36, 1), border-color .18s cubic-bezier(.22, 1, .36, 1);
}

.login-role-links button:hover {
  color: #151515;
  border-color: #d91d75;
}

.login-code-field {
  color: #555;
  gap: 8px;
  font-size: 14px;
  display: grid;
}

.login-error {
  color: #92400e;
  background: #fff3df;
  border-radius: 8px;
  margin-top: 14px;
  padding: 12px;
  font-size: 14px;
  line-height: 1.4;
}

.login-mobile-footer {
  color: #f0f0f0;
  background: #202020;
  font-size: 13px;
  line-height: 1.75;
  display: none;
}

.login-mobile-footer button {
  color: #3f3f3f;
  background: #fff;
  border: 0;
  border-radius: 8px;
  width: 100%;
  height: 44px;
  font-size: 16px;
}

.login-mobile-footer div, .login-mobile-footer > p {
  border-top: 1px solid #343434;
  padding-top: 18px;
}

@media (max-width: 1040px) {
  .app-frame {
    grid-template-columns: 1fr;
  }

  .sidebar {
    height: auto;
    position: static;
  }

  .role-switcher {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    display: grid;
  }

  .sidebar-section {
    display: none;
  }

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

  .login-entry {
    background: #eee;
    grid-template-columns: 1fr;
  }

  .login-visual {
    display: none;
  }

  .login-panel {
    background: #eee;
    justify-content: flex-start;
    min-height: 100vh;
    padding: 0;
    position: static;
  }

  .login-card {
    flex: initial;
    justify-content: flex-start;
    width: 100%;
    min-height: 0;
    margin: 0;
  }

  .login-topbar {
    background: #fff;
    min-height: 62px;
    margin-bottom: 12px;
    padding: 0 18px;
    position: static;
  }

  .login-form {
    gap: 14px;
  }

  .login-mock-card {
    background: #fff;
    border-radius: 8px;
    padding: 28px 20px 23px;
  }

  .login-mock-card h1 {
    text-align: center;
    max-width: 250px;
    margin: 0 auto 12px;
    font-size: 18px;
    line-height: 1.35;
  }

  .login-form input {
    height: 51px;
    padding: 0 16px;
    font-size: 17px;
  }

  .login-submit {
    height: 45px;
    font-size: inherit;
    margin-top: 0;
  }

  .login-consents {
    gap: 11px;
    margin-top: 6px;
  }

  .login-consents label {
    align-items: start;
    font-size: 11px;
    line-height: 1.25;
  }

  .login-role-links {
    gap: 17px;
    padding: 28px 22px 43px;
  }

  .login-role-links button {
    width: auto;
    max-width: none;
    padding-right: 0;
    font-size: 16px;
  }

  .login-mobile-footer {
    gap: 18px;
    padding: 23px 20px 24px;
    display: grid;
  }
}

@media (max-width: 720px) {
  .workspace, .sidebar, .auth-page {
    padding: 16px;
  }

  .role-switcher, .metric-grid, .auth-panel {
    grid-template-columns: 1fr;
  }

  .topbar, .hero-panel, .panel-heading, .workflow-title {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-panel h1, .auth-copy h1 {
    font-size: 26px;
  }

  .hero-actions, .topbar-actions, .primary-button, .secondary-button {
    width: 100%;
  }

  .login-brand-mark {
    width: 20px;
    height: 20px;
  }

  .login-brand {
    font-size: 11px;
  }
}

nextjs-portal {
  display: none !important;
}

.mobile-mockup-stage {
  color: #3d3d3d;
  background: #fff;
  min-height: 100vh;
  display: block;
}

.mobile-service-screen {
  background: #fff;
  width: 100%;
  min-height: 100vh;
}

.mobile-service-header {
  background: #fff;
  justify-content: space-between;
  align-items: center;
  height: 72px;
  padding: 0 20px;
  display: flex;
}

.mobile-service-header a, .mobile-service-header button {
  color: #4b4b4b;
  background: none;
  border: 0;
  font-size: 13px;
  text-decoration: underline;
}

.mobile-smeta-logo {
  color: #222;
  letter-spacing: 0;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  display: flex;
}

.mobile-smeta-logo span {
  background: #ed001f;
  width: 18px;
  height: 18px;
}

.mobile-service-subbar {
  background: #fff;
  border-radius: 6px;
  justify-content: space-between;
  align-items: center;
  height: 47px;
  padding: 0 17px;
  display: flex;
  box-shadow: 0 0 13px #0000001c;
}

.mobile-service-subbar strong {
  color: #303030;
  font-size: 16px;
  font-weight: 700;
}

.mobile-service-subbar a, .mobile-service-subbar button {
  color: #444;
  background: #f3f2fa;
  border: 0;
  border-radius: 9px;
  justify-content: center;
  align-items: center;
  min-width: 73px;
  height: 30px;
  font-size: 16px;
  display: inline-flex;
}

.mobile-form-card {
  background: #fff;
  border-radius: 8px;
  min-height: calc(100vh - 119px);
  margin-top: 6px;
  padding: 24px 20px 26px;
}

.mobile-form-card h1 {
  color: #3d3d3d;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.25;
}

.mobile-form-lead {
  color: #777;
  margin: 14px 0 22px;
  font-size: 18px;
  line-height: 1.35;
}

.mobile-field {
  margin-bottom: 8px;
  display: block;
}

.mobile-field span {
  display: none;
}

.mobile-field input, .mobile-field select {
  color: #4a4a4a;
  background: #f0f1f6;
  border: 0;
  border-radius: 9px;
  width: 100%;
  min-height: 55px;
  padding: 0 18px;
  font-size: 17px;
}

.mobile-checkbox-row {
  color: #4d4d4d;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  margin: 18px 0;
  font-size: 15px;
  line-height: 1.3;
  display: grid;
}

.mobile-checkbox-row input {
  width: 17px;
  height: 17px;
  margin-top: 2px;
}

.mobile-primary-button {
  color: #fff;
  background: #151515;
  border: 0;
  border-radius: 7px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  width: 100%;
  height: 45px;
  font-size: 15px;
  display: inline-flex;
}

.onboarding-responsive-layout {
  width: 100%;
}

.onboarding-flow-panel, .onboarding-step-motion {
  min-width: 0;
}

.onboarding-desktop-panel {
  display: none;
}

.onboarding-mock-card {
  background: #fff;
  flex-direction: column;
  min-height: calc(100vh - 72px);
  padding: 28px 20px 25px;
  display: flex;
}

.onboarding-mock-card h1 {
  color: #3d3d3d;
  margin-bottom: 24px;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.32;
}

.onboarding-mock-card h2 {
  color: #3d3d3d;
  margin: 26px 0 14px;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.25;
}

.mock-input, .mock-value-card {
  color: #3f3f3f;
  background: #f0f1f6;
  border: 0;
  border-radius: 9px;
  width: 100%;
  min-height: 55px;
  margin-bottom: 6px;
  padding: 15px 17px;
  font-size: 18px;
  line-height: 1.28;
  position: relative;
}

.mock-field {
  margin-bottom: 6px;
  display: block;
  position: relative;
}

.mock-field .mock-input {
  margin-bottom: 0;
}

.mock-field span {
  z-index: 1;
  color: #8a8a8a;
  opacity: 0;
  pointer-events: none;
  font-size: 18px;
  line-height: 1;
  transition: left .18s, top .18s, transform .18s, font-size .18s, opacity .12s;
  position: absolute;
  top: 50%;
  left: 16px;
  transform: translateY(-50%);
}

.mock-field.has-value span {
  opacity: 1;
  font-size: 11px;
  top: 7px;
  left: 17px;
  transform: translateY(0);
}

.mock-field.has-value .mock-input {
  padding-top: 22px;
  padding-bottom: 8px;
}

.mock-field.is-readonly .mock-input {
  color: #555;
  background: #e8e9ee;
}

.mock-field.is-textarea.has-value .mock-input {
  padding-top: 24px;
}

.mock-field.is-short .mock-textarea {
  min-height: 66px;
}

.mock-textarea {
  resize: none;
  min-height: 112px;
}

.mock-short-textarea {
  min-height: 66px;
}

.mock-input::placeholder {
  color: #757575;
  opacity: 1;
}

.mock-input:focus {
  outline: 0;
  box-shadow: inset 0 0 0 1px #bfc4ce;
}

.onboarding-invite-block {
  margin-top: 26px;
}

.onboarding-invite-block p {
  color: #3d3d3d;
  margin-bottom: 12px;
  font-size: 24px;
  line-height: 1.28;
}

.onboarding-status-buttons {
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 8px 0 18px;
  display: grid;
}

.onboarding-large-status {
  gap: 11px;
  display: grid;
}

.onboarding-large-status .mock-dark-button, .onboarding-large-status .mock-muted-button {
  width: 100%;
  min-height: 45px;
}

.mock-auth-choice-card {
  background: #fff;
  border-radius: 8px;
  gap: 18px;
  margin: -1px -20px 26px;
  padding: 28px 20px 24px;
  display: grid;
}

.mock-auth-choice-card h1 {
  text-align: center;
  max-width: 230px;
  margin: 0 auto 6px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
}

.mock-auth-choice-card .mock-dark-button {
  width: 100%;
  min-height: 45px;
}

.mock-auth-role-links {
  gap: 20px;
  display: grid;
}

.mock-auth-role-links button {
  color: #323232;
  text-align: left;
  background: none;
  border: 0;
  border-bottom: 1px solid #ff4aa2;
  min-height: 28px;
  font-size: 17px;
  line-height: 1.25;
  transition: color .18s cubic-bezier(.22, 1, .36, 1), border-color .18s cubic-bezier(.22, 1, .36, 1);
}

.mock-auth-role-links button:hover {
  color: #151515;
  border-color: #d91d75;
}

.mock-section-label {
  color: #3d3d3d;
  margin: 18px 0 12px;
  font-size: 18px;
  line-height: 1.35;
}

.mock-consents {
  gap: 11px;
  margin: 22px 0;
  display: grid;
}

.mock-consents label {
  color: #4d4d4d;
  grid-template-columns: 24px minmax(0, 1fr);
  align-items: start;
  gap: 9px;
  font-size: 11px;
  line-height: 1.25;
  display: grid;
}

.mock-consents input {
  appearance: none;
  background: #fff;
  border: 1px solid #c8ccd3;
  border-radius: 3px;
  width: 24px;
  height: 24px;
}

.mock-consents input:checked {
  border: 6px solid #4c4c4c;
}

.mock-bottom-actions {
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: auto;
  padding-top: 22px;
  display: grid;
}

.mock-bottom-actions-single {
  grid-template-columns: 1fr;
}

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

.mock-dark-button, .mock-muted-button {
  color: #fff;
  border: 0;
  border-radius: 7px;
  justify-content: center;
  align-items: center;
  min-height: 45px;
  padding: 0 14px;
  font-size: 16px;
  transition: background-color .18s cubic-bezier(.22, 1, .36, 1), color .18s cubic-bezier(.22, 1, .36, 1), box-shadow .18s cubic-bezier(.22, 1, .36, 1), transform .12s cubic-bezier(.22, 1, .36, 1);
  display: inline-flex;
}

.mock-dark-button {
  background: #151515;
}

.mock-muted-button {
  color: #3d3d3d;
  background: #f0f1f6;
}

.mock-dark-button:not(:disabled):hover, .mock-muted-button:not(:disabled):hover {
  box-shadow: 0 9px 18px #1818181f;
}

.mock-dark-button:not(:disabled):active, .mock-muted-button:not(:disabled):active {
  transform: scale(.985);
}

.mock-dark-button:disabled, .mock-muted-button:disabled {
  cursor: not-allowed;
  opacity: .65;
}

.mock-error {
  color: #92400e;
  background: #fff3df;
  border-radius: 8px;
  margin: 12px 0 0;
  padding: 12px;
  font-size: 14px;
  line-height: 1.4;
}

.mock-card-copy {
  color: #555;
  margin: -8px 0 18px;
  font-size: 18px;
  line-height: 1.35;
}

.onboarding-map-screen {
  background: #fff;
  flex-direction: column;
  min-height: calc(100vh - 72px);
  display: flex;
}

.location-topbar {
  z-index: 1;
  background: #fff;
  justify-content: flex-end;
  align-items: center;
  height: 47px;
  padding: 0 17px;
  display: flex;
  box-shadow: 0 0 13px #0000001c;
}

.location-topbar button {
  color: #444;
  background: #f3f2fa;
  border: 0;
  border-radius: 9px;
  justify-content: center;
  align-items: center;
  min-width: 73px;
  height: 30px;
  font-size: 16px;
  display: inline-flex;
}

.onboarding-yandex-map {
  background: #e8edf1;
  border: 0;
  flex: 1 0 355px;
  width: 100%;
  min-height: 355px;
}

.onboarding-map-sheet {
  background: #fff;
  border-radius: 8px 8px 0 0;
  margin-top: -8px;
  padding: 24px 20px 25px;
}

.onboarding-map-sheet h1 {
  color: #3d3d3d;
  margin: 0 0 12px;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.28;
}

.onboarding-map-sheet p {
  color: #4d4d4d;
  margin: 0 0 16px;
  font-size: 18px;
  line-height: 1.35;
}

.location-autodetect-button {
  color: #4b4b4b;
  text-align: left;
  background: #f3f2fa;
  border: 0;
  border-radius: 9px;
  align-items: center;
  gap: 7px;
  width: fit-content;
  max-width: 100%;
  min-height: 34px;
  margin: 4px 0 8px;
  padding: 0 11px;
  font-size: 14px;
  display: inline-flex;
}

.location-autodetect-button svg {
  color: #ed001f;
}

.location-autodetect-button:disabled {
  cursor: not-allowed;
  opacity: .65;
}

.address-suggest-list {
  gap: 6px;
  margin-top: 8px;
  display: grid;
}

.address-suggest-skeleton {
  background: linear-gradient(90deg, #f0f1f6 0%, #e7e9ef 50%, #f0f1f6 100%) 0 0 / 220% 100%;
  border-radius: 8px;
  width: 100%;
  height: 45px;
  animation: 1.1s ease-in-out infinite skeleton-shimmer;
}

.address-suggest-skeleton.short {
  width: 76%;
}

.address-suggest-list button {
  color: #3d3d3d;
  text-align: left;
  background: #f0f1f6;
  border: 0;
  border-radius: 8px;
  width: 100%;
  min-height: 45px;
  padding: 10px 14px;
  font-size: 15px;
  line-height: 1.25;
  transition: background-color .18s cubic-bezier(.22, 1, .36, 1), transform .12s cubic-bezier(.22, 1, .36, 1);
}

.address-suggest-list button:hover {
  background: #e7e9ef;
}

.address-suggest-list button:active {
  transform: scale(.99);
}

@keyframes skeleton-shimmer {
  from {
    background-position: 100% 0;
  }

  to {
    background-position: -100% 0;
  }
}

.onboarding-check-card, .onboarding-profile-card {
  border-radius: 8px;
  min-height: calc(100vh - 125px);
  margin-top: 6px;
}

.onboarding-legal-card {
  min-height: calc(100vh - 72px);
  padding-top: 18px;
}

.onboarding-legal-card h1 {
  margin-bottom: 16px;
  font-size: 23px;
}

.onboarding-legal-card h2 {
  margin: 15px 0 12px;
  font-size: 18px;
}

.onboarding-legal-card .onboarding-status-buttons {
  grid-template-columns: 1fr;
}

.legal-submit {
  width: 100%;
  margin-top: 14px;
}

.onboarding-check-card h1 {
  margin-bottom: 14px;
}

.onboarding-check-actions {
  gap: 9px;
  margin-top: auto;
  padding-top: 24px;
  display: grid;
}

.onboarding-complete-card {
  border: 1px solid #e0e0e0;
  border-radius: 7px;
  align-items: stretch;
  min-height: auto;
  margin-top: 0;
  padding: 26px 20px 18px;
}

.onboarding-complete-card h1 {
  margin-bottom: 18px;
  font-size: 24px;
  line-height: 1.25;
}

.onboarding-complete-card p {
  color: #3d3d3d;
  margin: 0 0 22px;
  font-size: 18px;
  line-height: 1.35;
}

.mock-cup {
  background: none;
  align-self: center;
  place-items: center;
  width: 118px;
  height: 86px;
  margin: 0 0 28px;
  display: grid;
}

.mock-cup span {
  border: 3px solid #c9c9c9;
  border-radius: 12px 12px 16px 16px;
  width: 62px;
  height: 58px;
  position: relative;
}

.mock-cup span:before {
  content: "";
  border: 3px solid #c9c9c9;
  border-left: 0;
  border-radius: 0 14px 14px 0;
  width: 21px;
  height: 30px;
  position: absolute;
  top: 15px;
  right: -23px;
}

.mock-cup span:after {
  content: "≋";
  color: #c9c9c9;
  font-size: 42px;
  line-height: 1;
  position: absolute;
  top: -42px;
  left: 14px;
}

.mock-link-button {
  color: #4b4b4b;
  text-underline-offset: 3px;
  background: none;
  border: 0;
  align-self: flex-start;
  margin: 18px 0 0 21px;
  font-size: 18px;
  -webkit-text-decoration: underline #ff2b87;
  text-decoration: underline #ff2b87;
}

.autofill-modal-backdrop {
  z-index: 50;
  background: #00000057;
  place-items: center;
  padding: 20px;
  display: grid;
  position: fixed;
  inset: 0;
}

.autofill-modal {
  background: #fff;
  border-radius: 8px;
  width: min(322px, 100%);
  padding: 20px;
  box-shadow: 0 18px 45px #0000002e;
}

.autofill-modal h2 {
  color: #3d3d3d;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.28;
}

.autofill-modal-actions {
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 22px;
  display: grid;
}

.autofill-modal-actions-single {
  grid-template-columns: 1fr;
}

@media (min-width: 860px) {
  .mobile-service-header {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 32px;
  }

  .onboarding-responsive-layout {
    grid-template-columns: minmax(420px, 560px) minmax(280px, 1fr);
    align-items: start;
    gap: 48px;
    max-width: 1120px;
    margin: 0 auto;
    padding: 32px;
    display: grid;
  }

  .onboarding-flow-panel {
    border: 1px solid #e4e4e4;
    border-radius: 8px;
    overflow: hidden;
  }

  .onboarding-mock-card {
    min-height: auto;
    padding: 32px;
  }

  .onboarding-check-card, .onboarding-profile-card, .onboarding-legal-card {
    min-height: auto;
    margin-top: 0;
  }

  .onboarding-complete-card {
    border: 0;
  }

  .mock-bottom-actions {
    margin-top: 120px;
  }

  .onboarding-legal-card .mock-bottom-actions, .onboarding-complete-card + .mock-link-button {
    margin-top: 18px;
  }

  .onboarding-desktop-panel {
    background: #fff;
    border: 1px solid #e4e4e4;
    border-radius: 8px;
    padding: 28px;
    display: block;
    position: sticky;
    top: 32px;
  }

  .onboarding-desktop-panel h2 {
    color: #3d3d3d;
    font-size: 26px;
    font-weight: 400;
    line-height: 1.25;
  }

  .onboarding-desktop-panel p {
    color: #666;
    margin-top: 12px;
    font-size: 17px;
    line-height: 1.45;
  }

  .desktop-step-list {
    gap: 8px;
    margin-top: 28px;
    display: grid;
  }

  .desktop-step-list span {
    color: #555;
    background: #f0f1f6;
    border-radius: 8px;
    align-items: center;
    min-height: 44px;
    padding: 0 14px;
    font-size: 16px;
    transition: background-color .18s cubic-bezier(.22, 1, .36, 1), color .18s cubic-bezier(.22, 1, .36, 1);
    display: flex;
  }

  .desktop-step-list span.active {
    color: #fff;
    background: #151515;
  }
}

/*# sourceMappingURL=src_app_globals_162hn9o.css.map*/