:root {
  --bg: #f3f4f8;
  --bg-soft: #bddaff;
  --surface: #ffffff;
  --surface-tint: #bddaff;
  --panel: #e9c1f5;
  --ink: #234391;
  --ink-soft: #4e68b0;
  --muted: #d46ce7;
  --line: #bddaff;
  --line-strong: #96bbea;
  --shadow-soft: 0 18px 40px rgba(35, 67, 145, 0.08);
  --font-display: "Vetrino", "Vetrino Regular", "Times New Roman", serif;
  --font-body: "Pragmatica", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

@font-face {
  font-family: "Vetrino";
  src: local("Vetrino"), local("Vetrino Regular"), url("/static/fonts/Vetrino-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Pragmatica";
  src: local("Pragmatica Light"), url("/static/fonts/Pragmatica-Light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Pragmatica";
  src: local("Pragmatica"), local("Pragmatica Regular"), url("/static/fonts/Pragmatica-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Pragmatica";
  src: local("Pragmatica Medium"), url("/static/fonts/Pragmatica-Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

body {
  margin: 0;
  background:
    radial-gradient(1200px 600px at 80% -50%, #d9e9ff 0%, transparent 70%),
    radial-gradient(1000px 600px at -20% 110%, #f5ddff 0%, transparent 65%),
    var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 300;
}

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

button,
input,
select {
  font: inherit;
}

.section-wrap {
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
}

.landing {
  /* padding: 16px 0 0; */
}

.brand {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.5rem);
  line-height: 1;
}

.site-brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  font-size: 44px;
  margin: 0;
}

.site-header {
  /* backdrop-filter: blur(6px); */
  /* border-bottom: 1px dashed rgba(255, 255, 255, 0.72); */
  padding: 12px 0 21px;
}

.site-header--frame {
  /* padding: 12px 0 20px; */
	width: 100%;
}

.site-header__inner {
  align-items: center;
  display: flex;
  justify-content: space-between;
  min-height: 64px;
}

.site-header__actions {
  align-items: center;
  display: flex;
  flex: 0 0 auto;
  gap: 16px;
}

.ui-switch {
  background: var(--line);
  border-radius: 16px;
  display: flex;
  gap: 4px;
  height: 54px;
	min-width: 154px;
  padding: 4px;
}

.ui-switch__link {
  border-radius: 12px;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  height: 100%;
  min-width: 75px;
  transition: background-color 0.2s ease;
}

.ui-switch__link.active {
  background: var(--surface);
}

.ui-button {
  align-items: center;
  background: var(--surface);
  border: 1px solid transparent;
  border-radius: 16px;
	border-width: 4px;
  color: var(--ink);
  cursor: pointer;
  display: inline-flex;
  font-weight: 500;
  justify-content: center;
  line-height: 1;
  padding: 12px 24px;
  text-decoration: none;
  transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
  white-space: nowrap;
}

.ui-button--outline {
  border-color: var(--line);
}

.site-header__button {
  align-self: center;
  height: 54px;
  min-width: 148px;
  padding-inline: 28px;
	border-width: 4px;
	font-weight: 300;
}

.ui-button--wide {
  width: 100%;
}

.ui-button--hero {
  min-height: 54px;
  width: 225px;
	font-weight: 300;
}

.ui-button:hover {
  border-color: var(--line-strong);
  transform: translateY(-1px);
}

.ui-button.is-disabled,
.ui-button[disabled] {
  cursor: default;
  opacity: 0.68;
  pointer-events: none;
}

.ui-input {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(35, 67, 145, 0.18);
  border-radius: 12px;
  color: var(--ink);
  outline: none;
  padding: 10px 12px;
  width: 100%;
}

.ui-input:focus {
  border-color: var(--line-strong);
}

.ui-card {
  background: var(--surface-tint);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 36px;
  box-shadow: var(--shadow-soft);
  padding: 22px 26px;
}

.tokens-card {
	height: fit-content;
}

.hero {
  display: grid;
  gap: 24px;
  margin-top: 64px;
  margin-bottom: 110px;
}

.pill {
  background: var(--line);
  border-radius: 14px;
  font-size: 13px;
  justify-self: start;
  padding: 8px 14px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 10vw, 10rem);
  font-weight: 500;
  line-height: 0.86;
  margin: 0;
  text-transform: none;
}

.hero-title span {
  display: block;
}

.hero-subtitle {
  color: var(--ink-soft);
  line-height: 1.65;
  margin: 0;
  max-width: 680px;
}

.workflow {
  --workflow-steps: 4;
  min-height: calc(var(--workflow-steps) * 92vh);
  margin-bottom: 200px;
  position: relative;
}

.workflow-stage {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100vh;
  position: sticky;
  padding-bottom: 44px;
  top: 0;
}

.workflow-grid {
  align-items: end;
  display: grid;
  gap: 100px;
  grid-template-columns: minmax(0, 616px) minmax(0, 1fr);
  min-height: 760px;
}

.eyebrow {
  color: var(--muted);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.43;
  letter-spacing: 2px;
  margin: 0;
  text-transform: uppercase;
}

.workflow-copy {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  gap: 48px;
  justify-content: flex-end;
  padding: 20px 0;
}

.workflow-copy-main {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.workflow-copy.slide-out {
  opacity: 0;
  transform: translateY(-22px) scale(0.985);
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.workflow-copy.slide-in {
  animation: workflow-rise 0.34s cubic-bezier(0.22, 0.8, 0.2, 1);
}

@keyframes workflow-rise {
  0% {
    opacity: 0;
    transform: translateY(28px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.workflow-title,
.waitlist-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 4.375rem);
  line-height: 0.88;
  margin: 0;
  text-transform: uppercase;
}

.waitlist-title {
  text-transform: none;
}

.workflow-description,
.waitlist-subtitle {
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.6;
  margin: 0;
  max-width: 680px;
}

.workflow-message-row {
  display: flex;
  overflow: hidden;
  width: 100%;
}

.chat-bubble-shell {
  display: inline-block;
  flex-shrink: 0;
	transform: translateX(-20px);
}

.chat-bubble {
  --bubble-radius: 16px;
  --bubble-tail: 16px;
  background: rgba(255, 255, 255, 0.94);
  border: 4px solid transparent;
  border-bottom-left-radius: 0 0;
  border-radius: calc(var(--bubble-radius) + var(--bubble-tail)) / var(--bubble-radius);
  color: var(--ink);
  font-size: 14px;
  line-height: 20px;
  margin: 0;
  display: inline-block;
  max-width: min(100%, 420px);
  -webkit-mask:
    radial-gradient(100% 100% at 0 0, #0000 99%, #000 102%)
      0 100% / var(--bubble-tail) var(--bubble-tail) no-repeat,
    linear-gradient(#000 0 0) padding-box;
  mask:
    radial-gradient(100% 100% at 0 0, #0000 99%, #000 102%)
      0 100% / var(--bubble-tail) var(--bubble-tail) no-repeat,
    linear-gradient(#000 0 0) padding-box;
  overflow-wrap: anywhere;
  padding: 12px 16px;
  position: relative;
  white-space: normal;
}

.chat-bubble::before {
  background: var(--line);
  border-bottom-left-radius: 0 0;
  border-radius: calc(var(--bubble-radius) + var(--bubble-tail)) / var(--bubble-radius);
  content: "";
  inset: 0;
  padding: 4px;
  pointer-events: none;
  position: absolute;
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  mask-composite: exclude;
}

.bubble {
  background: rgba(255, 255, 255, 0.94);
	border-width: 4px;
	border-color: var(--line);

  --r: 1em;  /* the radius */
  --t: 1.5em; /* the size of the tail */

	position: relative;
  background: rgba(255, 255, 255, 0.94);

  /* max-width: 300px; */
  padding: 16px;
  border-inline: var(--t) solid #0000;
  border-radius: calc(var(--r) + var(--t))/var(--r);
  mask:
    radial-gradient(100% 100% at var(--_p) 0,#0000 99%,#000 102%)
      var(--_p) 100%/var(--t) var(--t) no-repeat,
    linear-gradient(#000 0 0) padding-box;

  /* background: linear-gradient(135deg,#FE6D00,#1384C5) border-box; */
  /* color: #fff; */
	font-size: 14px;
}
.left {
  --_p: 0;
  border-bottom-left-radius: 0 0;
  place-self: start;
}
.right {
  --_p: 100%;
  border-bottom-right-radius: 0 0;
	border-color: var(--line);
  place-self: end;
}

.bubble::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 4px; /* толщина обводки */
	border-radius: 16px;
  background: var(--line);
  pointer-events: none;

  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;

  mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  mask-composite: exclude;
}

.bubble.right::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 4px;
    border-radius: 16px;
    border-bottom-right-radius: 0;
    background: var(--line);
    pointer-events: none;
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
}

.workflow-progress {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 0;
}

.progress-dot {
  border: 1px solid var(--line);
  border-radius: 100px;
  height: 8px;
  min-width: 0;
  transition: background-color 0.25s ease;
}

.progress-dot.active {
  background: var(--line);
}

.workflow-media {
  align-items: center;
  display: flex;
  justify-content: center;
  min-width: 0;
  min-height: 100%;
  opacity: 1;
  transition: opacity 0.28s ease;
}

.workflow-media.fade {
  opacity: 0.15;
}

.workflow-media span {
  color: #888;
}

.workflow-video-frame {
  background: #dfacf0;
  border-radius: 16px;
  height: 100%;
  max-height: 100%;
  max-width: 100%;
  overflow: hidden;
  width: 100%;
}

.workflow-video {
  display: block;
  height: 100%;
  object-fit: contain;
  width: 100%;
}

.workflow-scroll {
  bottom: 16px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1;
  left: 50%;
  margin-top: 0;
  position: absolute;
  text-align: center;
  text-transform: lowercase;
  transform: translateX(-50%);
}

.waitlist {
  align-items: center;
  display: flex;
  flex-direction: column;
  margin-bottom: 120px;
  text-align: center;
}

.waitlist-form {
  align-items: center;
  background: var(--line);
  border-radius: 16px;
  display: flex;
  gap: 0;
  height: 53px;
  margin-top: 28px;
  max-width: 490px;
  width: 100%;
}

.waitlist-form input {
  background: var(--surface);
  border: 0;
  border-radius: 12px;
  color: var(--ink);
  flex: 1 1 auto;
  font-size: 16px;
  font-weight: 300;
  margin: 4px;
  min-height: 46px;
  min-width: 0;
  outline: none;
  padding: 12px 16px;
}

.waitlist-form button {
  align-items: center;
  background: transparent;
  border: 0;
  border-radius: 12px;
  color: var(--ink);
  cursor: pointer;
  display: inline-flex;
  font-size: 16px;
  font-weight: 300;
  justify-content: center;
  min-height: 52px;
  padding: 12px 24px;
  white-space: nowrap;
}

.waitlist-feedback {
  min-height: 24px;
}

.waitlist-feedback.error {
  color: #d14040;
}

.waitlist-feedback.success {
  color: #2a8f4f;
}

.site-footer {
  background: var(--bg-soft);
  border-radius: 0 0 24px 24px;
  padding: 52px 0 36px;
}

.site-footer--flat {
  border-radius: 0;
  margin-top: 10px;
  width: 100%;
}

.site-footer__tagline {
  margin-top: 6px;
}

.site-footer__bottom {
  border-top: 1px solid var(--ink);
  display: flex;
  justify-content: space-between;
  margin-top: 44px;
  padding-top: 26px;
}

.site-footer__links {
  display: flex;
  gap: 24px;
}

.legal-page {
  min-height: 100vh;
}

.legal-content {
  margin-top: 48px;
  margin-bottom: 96px;
  max-width: 860px;
}

.legal-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  line-height: 0.95;
  margin: 18px 0 0;
}

.legal-updated {
  margin-top: 8px;
}

.legal-note {
  color: var(--ink-soft);
  line-height: 1.6;
  margin: 20px 0 8px;
}

.legal-back-btn {
  font-size: 18px;
  gap: 10px;
  line-height: 1;
  margin-bottom: 20px;
  padding: 12px 20px;
}

.legal-back-btn-bottom {
  margin-top: 20px;
}

.legal-intro {
  color: var(--ink-soft);
  line-height: 1.6;
  margin: 16px 0 26px;
  max-width: 860px;
}

.legal-section {
  background: transparent;
  border: none;
  border-radius: 0;
  margin-bottom: 16px;
  padding: 0;
}

.legal-section h2 {
  color: var(--ink-soft);
  font-size: 32px;
  font-weight: 400;
  line-height: 1.45;
  margin: 0 0 4px;
}

.legal-section p {
  color: var(--ink-soft);
  line-height: 1.6;
  margin: 0 0 10px;
}

.legal-section p:last-child {
  margin-bottom: 0;
}

.cabinet-page {
  display: flex;
  flex-direction: column;
}

.cabinet-shell {
  flex: 1;
  margin: 0 auto;
  width: min(1280px, calc(100% - 24px));
}

.cabinet-frame {
  background: var(--bg);
  border-radius: 30px;
  overflow: hidden;
}

.cabinet-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: minmax(250px, 330px) 1fr;
  padding: 0 32px 22px;
}

.cabinet-right-grid {
  display: grid;
  gap: 12px;
}

.cabinet-page .ui-button {
  border: 4px solid var(--line);
  border-radius: 14px;
  box-shadow: none;
  font-size: 14px;
  min-height: 40px;
  padding: 10px 18px;
}

.profile-card {
  display: flex;
  flex-direction: column;
  min-height: 560px;
}

.profile-avatar {
  align-items: center;
  background: rgba(255, 255, 255, 0.45);
  border-radius: 14px;
  color: var(--ink);
  display: flex;
  font-size: 36px;
  height: 52px;
  justify-content: center;
  margin-bottom: 14px;
  width: 52px;
}

.profile-avatar img {
  border-radius: inherit;
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.profile-avatar-lg {
  border-radius: 16px;
  height: 238px;
  margin-bottom: 14px;
  width: 100%;
}

.label-row {
  color: var(--ink-soft);
  font-size: 13px;
  margin: 0;
}

.value-row {
  font-size: 20px;
  line-height: 1;
  margin: 2px 0 10px;
}

.profile-card .value-row {
  font-size: 18px;
  letter-spacing: 0.01em;
}

.profile-actions {
  margin-top: 6px;
}

.profile-actions .ui-button {
  width: 100%;
	min-height: 54px;
}

.cabinet-logout {
  background: transparent;
  border: none;
  color: var(--ink);
  cursor: pointer;
  font-family: inherit;
  font-size: 16px;
  margin-top: auto;
  padding-top: 18px;
  text-align: center;
}

.status-text {
  color: var(--ink-soft);
  /* font-size: 13px; */
  min-height: 18px;
}

.card-header {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-bottom: 14px;
}

.card-header h3 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 2.6vw, 3rem);
  font-weight: 400;
  letter-spacing: 0;
  margin: 0;
  text-transform: uppercase;
}

.tokens-progress {
  background: rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  height: 18px;
  overflow: hidden;
}

.tokens-progress-fill {
  background: #d8a8ea;
  border-radius: inherit;
  display: block;
  height: 100%;
  transition: width 0.25s ease;
}

.tokens-meta {
  color: var(--ink-soft);
  display: flex;
  font-size: 14px;
  justify-content: space-between;
  margin-top: 8px;
  padding: 0 3px;
}

.team-caption {
  color: var(--ink-soft);
  font-size: 13px;
  margin: 0 0 8px;
}

.team-table-wrap {
  margin-top: 10px;
  overflow-x: auto;
}

.team-card table {
  border-collapse: collapse;
  width: 100%;
}

.team-card th,
.team-card td {
  color: var(--ink);
  font-size: 14px;
  font-weight: 400;
  padding: 6px 4px;
  text-align: left;
}

.team-card th {
  color: var(--ink-soft);
}

.team-card .remove-btn {
  background: transparent;
  border: none;
  color: var(--ink);
  cursor: pointer;
  font-size: 16px;
  padding: 0 4px;
}

.team-card .remove-btn:disabled {
  cursor: not-allowed;
  opacity: 0.4;
}

.token-request-panel,
.team-invite-panel {
  border-top: 1px solid rgba(35, 67, 145, 0.3);
  margin-top: 14px;
  padding-top: 14px;
}

.token-request-panel form,
.team-invite-panel form {
  display: grid;
  gap: 8px;
}

.token-request-panel label,
.team-invite-panel label {
  color: var(--ink-soft);
  font-size: 14px;
}

.token-request-panel button,
.team-invite-panel button {
  justify-self: start;
}

.invisible {
  display: none;
}

.login-frame {
  min-height: 70vh;
  /* padding: 8px 24px 28px; */
}

.login-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr 1fr;
  margin: 20px auto 0;
  max-width: 1060px;
}

.login-card,
.register-card {
  padding: 54px 42px 40px;
}

.login-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 3vw, 3.2rem);
  line-height: 0.95;
  margin: 0 0 26px;
  text-align: center;
}

.login-subtitle {
  color: var(--ink-soft);
  line-height: 1.45;
  margin: 0 0 20px;
  font-size: 18px;
}

.login-subtitle-tight {
  margin-bottom: 10px;
}

.login-subtitle-rich {
  margin-bottom: 30px;
}

.login-link {
  color: var(--ink-soft);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.14em;
  white-space: nowrap;
}

.login-form {
  display: grid;
  gap: 18px;
}

.login-form-field {
  display: grid;
  gap: 12px;
}

.login-form-label {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.2;
  margin: 0;
}

.login-form .ui-input {
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.92);
  border-radius: 12px;
  font-size: 16px;
  line-height: 1.2;
  min-height: 53px;
  padding: 13px 20px;
}

.login-form .ui-input::placeholder {
  color: rgba(35, 67, 145, 0.36);
}

.login-form .ui-button {
  background: rgba(255, 255, 255, 0.98);
  border-color: rgba(255, 255, 255, 0.92);
  border-radius: 12px;
  color: var(--ink);
  font-size: 16px;
  font-weight: 300;
  margin-top: 8px;
  min-height: 53px;
  padding: 13px 20px;
  width: 100%;
  border-width: 1px;
}

.register-card .waitlist-form.auth-waitlist-form {
  align-items: center;
  background: #dca5ea;
  border-radius: 16px;
  gap: 0;
  margin-top: auto;
  max-width: none;
  height: 53px;
  width: 100%;
}

.register-card .waitlist-form.auth-waitlist-form input {
  background: var(--surface);
  border: 0;
  border-radius: 12px;
  flex: 1 1 auto;
  font-size: 16px;
  font-weight: 300;
  margin: 4px;
  min-height: 46px;
  min-width: 0;
  padding: 12px 16px;
}

.register-card .waitlist-form.auth-waitlist-form button {
  align-items: center;
  background: transparent;
  border: 0;
  border-radius: 12px;
  color: #f5e8fb;
  display: inline-flex;
  font-size: 16px;
  font-weight: 500;
  justify-content: center;
  min-height: 52px;
  padding: 12px 24px;
  white-space: nowrap;
}

.register-card .waitlist-form.auth-waitlist-form button:hover {
  background: transparent;
}

.register-card .waitlist-feedback {
  margin-top: 12px;
}

@media (max-width: 960px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }

  .site-header--frame {
    padding: 12px 0 20px;
  }

  .workflow-grid {
    gap: 28px;
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .workflow {
    min-height: auto;
  }

  .workflow-stage {
    min-height: auto;
    padding-bottom: 0;
    position: static;
  }

  .workflow-copy {
    gap: 28px;
    order: 2;
    padding: 0;
  }

  .workflow-title {
    font-size: clamp(2.8rem, 12vw, 4rem);
  }

  .workflow-media {
    min-height: 420px;
    order: 1;
  }

  .workflow-scroll {
    margin-top: 20px;
    position: static;
    transform: none;
  }

  /* .waitlist-form {
    flex-direction: column;
    width: min(460px, 100%);
  }

  .waitlist-form input,
  .waitlist-form button {
    width: 100%;
  } */

  .site-footer__bottom {
    flex-direction: column;
    gap: 18px;
  }

  .cabinet-grid {
    gap: 14px;
    grid-template-columns: 1fr;
    padding: 0 14px 20px;
  }

  .login-grid {
    grid-template-columns: 1fr;
    max-width: 680px;
  }

  .login-card,
  .register-card {
    min-height: unset;
    padding: 30px 24px;
  }

  .login-subtitle,
  .login-links-row {
    font-size: 15px;
  }

  .login-form .ui-input {
    font-size: 16px;
    min-height: 52px;
  }
}

@media (max-width: 640px) {
  .section-wrap {
    width: min(1280px, calc(100% - 28px));
  }

  .site-header__actions {
    gap: 12px;
    justify-content: space-between;
    width: 100%;
  }

  .site-header__button {
    min-width: 132px;
  }

  .workflow-progress {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .workflow-title {
    font-size: clamp(2.25rem, 15vw, 3.4rem);
  }

  .workflow-description,
  .workflow-scroll {
    font-size: 16px;
  }

  .workflow-media {
    min-height: 320px;
  }

  .cabinet-shell {
    width: calc(100% - 12px);
  }

  .card-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .cabinet-page .ui-button,
  .cabinet-page .token-request-panel button,
  .cabinet-page .team-invite-panel button {
    width: 100%;
  }

  .tokens-meta {
    font-size: 15px;
    padding: 0;
  }
}
