@charset "UTF-8";

* {
  box-sizing: border-box;
}

html {
  min-width: 0;
  background: var(--wb-bg);
  scroll-behavior: smooth;
}

body.wb-home {
  min-width: 0;
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 80% -10%, rgba(46, 214, 189, 0.055), transparent 28%),
    var(--wb-bg);
  color: var(--wb-text);
  font-family: var(--wb-font);
  -webkit-font-smoothing: antialiased;
}

.wb-home a,
.wb-home button {
  font-family: inherit;
}

.wb-home a {
  color: inherit;
  text-decoration: none;
}

.wb-home button {
  border: 0;
  cursor: pointer;
}

.wb-home img,
.wb-home video {
  display: block;
  max-width: 100%;
}

.wb-home svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.wb-skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 12000;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--wb-accent);
  color: #04231e;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.wb-skip-link:focus {
  transform: translateY(0);
}

.wb-shell {
  min-height: 100vh;
}

.wb-sidebar {
  position: fixed;
  inset: 0 auto 0 0;
  z-index: 60;
  display: flex;
  width: 272px;
  flex-direction: column;
  padding: 22px 16px 16px;
  border-right: 1px solid var(--wb-line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.018), transparent 28%),
    var(--wb-sidebar);
}

.wb-brand {
  display: flex;
  align-items: center;
  gap: 11px;
  min-height: 54px;
  padding: 4px 8px 14px;
}

.wb-brand__logo {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--wb-line);
  border-radius: 12px;
  background: var(--wb-panel);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.08);
}

.wb-brand__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.wb-brand__copy {
  display: grid;
  min-width: 0;
  gap: 2px;
}

.wb-brand__copy strong {
  overflow: hidden;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.025em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.wb-brand__copy small {
  color: var(--wb-text-faint);
  font-size: 11px;
  font-weight: 600;
}

.wb-sidebar__nav {
  display: grid;
  gap: 19px;
  padding-top: 14px;
  overflow: auto;
  scrollbar-width: none;
}

.wb-sidebar__nav::-webkit-scrollbar {
  display: none;
}

.wb-nav-group {
  display: grid;
  gap: 4px;
}

.wb-nav-group > p {
  margin: 0 0 6px;
  padding: 0 10px;
  color: var(--wb-text-faint);
  font-size: 11px;
  font-weight: 700;
}

.wb-home .wb-nav-link {
  position: relative;
  display: flex;
  align-items: center;
  gap: 11px;
  min-height: 42px;
  padding: 0 11px;
  border: 1px solid transparent;
  border-radius: 10px;
  color: var(--wb-text-soft);
  font-size: 14px;
  font-weight: 700;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease, transform 180ms ease;
}

.wb-home .wb-nav-link:hover {
  border-color: var(--wb-line);
  background: rgba(255, 255, 255, 0.035);
  color: var(--wb-text);
  transform: translateX(2px);
}

.wb-home .wb-nav-link.is-active {
  border-color: var(--wb-line);
  background: var(--wb-panel-strong);
  color: var(--wb-text);
}

.wb-home .wb-nav-link.is-active::before {
  position: absolute;
  top: 10px;
  bottom: 10px;
  left: -12px;
  width: 3px;
  border-radius: 99px;
  background: var(--wb-accent);
  box-shadow: 0 0 16px rgba(46, 214, 189, 0.52);
  content: "";
}

.wb-nav-link__icon {
  display: grid;
  width: 21px;
  height: 21px;
  flex: 0 0 21px;
  place-items: center;
}

.wb-nav-link__icon svg {
  width: 18px;
  height: 18px;
}

.wb-sidebar__account {
  display: grid;
  gap: 7px;
  margin-top: auto;
  padding: 17px 10px 2px;
  border-top: 1px solid var(--wb-line);
}

.wb-sidebar__account > strong {
  font-size: 13px;
}

.wb-sidebar__account > p {
  margin: 0 0 5px;
  color: var(--wb-text-faint);
  font-size: 11px;
  line-height: 1.5;
}

.wb-account-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.wb-account-actions a,
.wb-account-primary {
  display: grid;
  min-height: 36px;
  place-items: center;
  border: 1px solid var(--wb-line-strong);
  border-radius: 8px;
  background: var(--wb-panel-strong);
  color: var(--wb-text);
  font-size: 12px;
  font-weight: 750;
}

.wb-account-actions a.is-primary,
.wb-account-primary {
  border-color: var(--wb-accent);
  background: var(--wb-accent);
  color: #05231f;
}

.wb-home-profile {
  display: grid;
  min-width: 0;
  min-height: 62px;
  grid-template-columns: 44px minmax(0, 1fr);
  align-items: center;
  gap: 11px;
  padding: 9px 10px;
  border: 1px solid var(--wb-line);
  border-radius: 10px;
  background: var(--wb-panel);
  color: var(--wb-text);
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.wb-home-profile:hover {
  border-color: var(--wb-line-strong);
  background: var(--wb-panel-strong);
  transform: translateY(-1px);
}

.wb-home-profile__avatar,
.wb-topbar-account__avatar {
  position: relative;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
}

.wb-home-profile__avatar {
  width: 44px;
  height: 44px;
}

.wb-home-profile__image,
.wb-home-profile__initial {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--wb-accent) 34%, var(--wb-line));
  border-radius: 50%;
  background: color-mix(in srgb, var(--wb-accent) 16%, var(--wb-panel-strong));
  color: var(--wb-text);
  font-size: 14px;
  font-weight: 800;
  object-fit: cover;
}

.wb-home-profile__frame {
  position: absolute;
  z-index: 2;
  width: 50px;
  height: 50px;
  max-width: none;
  pointer-events: none;
  object-fit: contain;
}

.wb-home-profile__meta {
  display: grid;
  min-width: 0;
  gap: 4px;
}

.wb-home-profile__meta > strong {
  overflow: hidden;
  font-size: 13px;
  font-weight: 750;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.wb-home-profile__meta > small {
  display: flex;
  min-width: 0;
  align-items: baseline;
  gap: 5px;
  color: var(--wb-text-faint);
  font-size: 10px;
}

.wb-home-profile__meta > small b {
  overflow: hidden;
  color: var(--wb-text-muted);
  font-size: 11px;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.wb-page {
  min-width: 0;
  margin-left: 272px;
}

.wb-topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 30px;
  border-bottom: 1px solid var(--wb-line);
  background: color-mix(in srgb, var(--wb-bg) 88%, transparent);
  backdrop-filter: blur(18px);
}

.wb-topbar__context {
  display: grid;
  gap: 3px;
}

.wb-topbar__context span {
  color: var(--wb-text-faint);
  font-size: 11px;
}

.wb-topbar__context strong {
  font-size: 14px;
  font-weight: 750;
}

.wb-mobile-brand {
  display: none;
}

.wb-topbar__actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.wb-icon-button,
.wb-support-button,
.wb-login-button {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--wb-line);
  border-radius: 9px;
  background: var(--wb-panel);
  color: var(--wb-text);
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.wb-icon-button {
  width: 38px;
  padding: 0;
}

.wb-icon-button:hover,
.wb-support-button:hover {
  border-color: var(--wb-line-strong);
  background: var(--wb-panel-strong);
  transform: translateY(-1px);
}

.wb-support-button {
  gap: 7px;
  padding: 0 13px;
  font-size: 12px;
  font-weight: 700;
}

.wb-support-button svg {
  width: 17px;
  height: 17px;
}

.wb-login-button {
  min-width: 82px;
  padding: 0 16px;
  border-color: var(--wb-accent);
  background: var(--wb-accent);
  color: #05231f;
  font-size: 12px;
  font-weight: 800;
}

.wb-login-button:hover {
  background: #48e1cb;
  transform: translateY(-1px);
}

.wb-topbar-account {
  display: none;
}

.wb-topbar-account--user {
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--wb-line);
  border-radius: 50%;
  background: var(--wb-panel);
  color: var(--wb-text);
}

.wb-topbar-account__avatar {
  width: 32px;
  height: 32px;
}

.wb-topbar-account__avatar > img:not(.wb-topbar-account__frame),
.wb-topbar-account__avatar > span {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  overflow: hidden;
  border-radius: 50%;
  background: color-mix(in srgb, var(--wb-accent) 16%, var(--wb-panel-strong));
  font-size: 11px;
  font-weight: 800;
  object-fit: cover;
}

.wb-topbar-account__frame {
  position: absolute;
  z-index: 2;
  width: 38px;
  height: 38px;
  max-width: none;
  pointer-events: none;
  object-fit: contain;
}

.wb-login-button__short {
  display: none;
}

.wb-main {
  width: min(100%, 1240px);
  margin: 0 auto;
  padding: 26px 30px 40px;
}

.wb-hero {
  position: relative;
  display: flex;
  min-height: 158px;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  overflow: hidden;
  padding: 28px 30px;
  border: 1px solid var(--wb-line);
  border-radius: var(--wb-radius);
  background:
    linear-gradient(120deg, rgba(46, 214, 189, 0.08), transparent 44%),
    linear-gradient(90deg, transparent 49px, rgba(255, 255, 255, 0.018) 50px, transparent 51px),
    linear-gradient(0deg, transparent 49px, rgba(255, 255, 255, 0.014) 50px, transparent 51px),
    var(--wb-panel-soft);
  background-size: auto, 50px 50px, 50px 50px, auto;
}

.wb-hero::after {
  position: absolute;
  top: -90px;
  right: 7%;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(46, 214, 189, 0.1);
  filter: blur(70px);
  content: "";
  pointer-events: none;
}

.wb-hero__copy {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.wb-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  color: var(--wb-text-soft);
  font-size: 12px;
  font-weight: 650;
}

.wb-kicker i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--wb-accent);
  box-shadow: 0 0 0 5px rgba(46, 214, 189, 0.08), 0 0 14px rgba(46, 214, 189, 0.7);
}

.wb-hero h1 {
  margin: 0;
  font-size: clamp(28px, 3.2vw, 42px);
  font-weight: 850;
  letter-spacing: -0.055em;
  line-height: 1.1;
}

.wb-hero p {
  max-width: 580px;
  margin: 10px 0 0;
  color: var(--wb-text-soft);
  font-size: 13px;
  line-height: 1.7;
}

.wb-model-strip {
  position: relative;
  z-index: 1;
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  padding-left: 10px;
}

.wb-model-strip > span {
  display: grid;
  width: 40px;
  height: 40px;
  margin-left: -9px;
  place-items: center;
  border: 4px solid var(--wb-panel-soft);
  border-radius: 50%;
  background: var(--wb-panel-strong);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.18);
}

.wb-model-strip img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.wb-model-strip > a {
  margin-left: 12px;
  color: var(--wb-text-soft);
  font-size: 11px;
  font-weight: 700;
}

.wb-section {
  margin-top: 26px;
}

.wb-section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
}

.wb-section-heading h2 {
  margin: 0;
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.025em;
}

.wb-section-heading p {
  margin: 4px 0 0;
  color: var(--wb-text-faint);
  font-size: 11px;
}

.wb-section-heading > a {
  color: var(--wb-accent);
  font-size: 11px;
  font-weight: 750;
}

.wb-creation-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.wb-creation-card {
  --card-color: #42b8ef;
  --card-soft: rgba(66, 184, 239, 0.1);
  display: grid;
  min-width: 0;
  min-height: 94px;
  grid-template-columns: 46px minmax(0, 1fr) 20px;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--wb-line);
  border-radius: var(--wb-radius-sm);
  background: var(--wb-panel);
  transition: border-color 200ms ease, transform 200ms ease, box-shadow 200ms ease;
}

.wb-creation-card.is-green {
  --card-color: #32d29f;
  --card-soft: rgba(50, 210, 159, 0.1);
}

.wb-creation-card.is-amber {
  --card-color: #f0a449;
  --card-soft: rgba(240, 164, 73, 0.1);
}

.wb-creation-card.is-rose {
  --card-color: #ee7093;
  --card-soft: rgba(238, 112, 147, 0.1);
}

.wb-creation-card:hover,
.wb-assistant-card:hover,
.wb-model-card:hover,
.wb-work-card:hover {
  border-color: var(--wb-line-strong);
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.15);
}

.wb-creation-card__icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 10px;
  background: var(--card-soft);
  color: var(--card-color);
}

.wb-creation-card__icon svg {
  width: 22px;
  height: 22px;
}

.wb-creation-card__copy {
  display: grid;
  min-width: 0;
  gap: 5px;
}

.wb-creation-card__copy strong {
  font-size: 14px;
  font-weight: 800;
}

.wb-creation-card__copy small,
.wb-assistant-card small {
  overflow: hidden;
  color: var(--wb-text-soft);
  font-size: 10px;
  line-height: 1.45;
  text-overflow: ellipsis;
}

.wb-card-arrow {
  display: grid;
  color: var(--wb-text-faint);
  place-items: center;
}

.wb-card-arrow svg {
  width: 17px;
  height: 17px;
}

.wb-dashboard-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(330px, 0.8fr);
  gap: 24px;
}

.wb-dashboard-grid > .wb-section {
  min-width: 0;
}

.wb-assistant-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.wb-assistant-card {
  display: grid;
  min-width: 0;
  min-height: 76px;
  grid-template-columns: 38px minmax(0, 1fr) 18px;
  align-items: center;
  gap: 11px;
  padding: 12px;
  border: 1px solid var(--wb-line);
  border-radius: var(--wb-radius-sm);
  background: var(--wb-panel);
  transition: border-color 200ms ease, transform 200ms ease, box-shadow 200ms ease;
}

.wb-assistant-card__mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  background: var(--wb-panel-strong);
  color: var(--wb-text);
  font-size: 13px;
  font-weight: 800;
}

.wb-assistant-card > span:nth-child(2) {
  display: grid;
  min-width: 0;
  gap: 4px;
}

.wb-assistant-card strong {
  font-size: 13px;
  font-weight: 780;
}

.wb-assistant-card small {
  white-space: nowrap;
}

.wb-model-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.wb-model-card {
  display: grid;
  min-height: 76px;
  place-items: center;
  gap: 5px;
  padding: 9px 5px;
  border: 1px solid var(--wb-line);
  border-radius: var(--wb-radius-sm);
  background: var(--wb-panel);
  transition: border-color 200ms ease, transform 200ms ease, box-shadow 200ms ease;
}

.wb-model-card > span {
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  border-radius: 9px;
  background: var(--wb-panel-strong);
}

.wb-model-card img {
  width: 21px;
  height: 21px;
  object-fit: contain;
}

.wb-model-card small {
  max-width: 100%;
  overflow: hidden;
  color: var(--wb-text-soft);
  font-size: 9px;
  font-weight: 650;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.wb-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.wb-work-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--wb-line);
  border-radius: var(--wb-radius);
  background: var(--wb-panel);
  transition: border-color 200ms ease, transform 200ms ease, box-shadow 200ms ease;
}

.wb-work-card__media {
  position: relative;
  display: block;
  aspect-ratio: 1.6;
  overflow: hidden;
  background: var(--wb-panel-strong);
}

.wb-work-card__media img,
.wb-work-card__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.wb-work-card:hover .wb-work-card__media img,
.wb-work-card:hover .wb-work-card__media video {
  transform: scale(1.035);
}

.wb-work-card__media em {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 4px 8px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 99px;
  background: rgba(8, 10, 14, 0.72);
  color: #f4f7f8;
  font-size: 9px;
  font-style: normal;
  font-weight: 750;
  backdrop-filter: blur(10px);
}

.wb-work-card__body {
  display: grid;
  gap: 5px;
  padding: 12px 13px 13px;
}

.wb-work-card__body strong {
  overflow: hidden;
  font-size: 12px;
  font-weight: 750;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.wb-work-card__body small {
  color: var(--wb-text-faint);
  font-size: 10px;
}

.wb-gallery-empty {
  display: grid;
  min-height: 170px;
  place-items: center;
  align-content: center;
  gap: 7px;
  border: 1px dashed var(--wb-line-strong);
  border-radius: var(--wb-radius);
  background: var(--wb-panel-soft);
  text-align: center;
}

.wb-gallery-empty > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: var(--wb-accent-soft);
  color: var(--wb-accent);
}

.wb-gallery-empty p {
  margin: 0;
  color: var(--wb-text-faint);
  font-size: 11px;
}

.wb-gallery-empty a {
  color: var(--wb-accent);
  font-size: 11px;
  font-weight: 700;
}

.wb-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid var(--wb-line);
  color: var(--wb-text-faint);
  font-size: 10px;
}

.wb-footer nav {
  display: flex;
  gap: 16px;
}

.wb-footer a:hover {
  color: var(--wb-text);
}

.wb-mobile-nav {
  display: none;
}

.wb-reveal {
  animation: wb-rise 520ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.wb-section.wb-reveal:nth-of-type(2) {
  animation-delay: 70ms;
}

.wb-dashboard-grid .wb-reveal {
  animation-delay: 130ms;
}

.wb-gallery-section.wb-reveal {
  animation-delay: 180ms;
}

@keyframes wb-rise {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.wb-home :focus-visible {
  outline: 2px solid var(--wb-accent);
  outline-offset: 3px;
}

@media (max-width: 1180px) {
  .wb-main {
    padding-right: 22px;
    padding-left: 22px;
  }

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

  .wb-dashboard-grid {
    min-width: 0;
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
  }

  .wb-model-grid {
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .wb-sidebar {
    display: none;
  }

  .wb-page {
    width: 100%;
    margin-left: 0;
  }

  .wb-topbar {
    min-height: 58px;
    padding: 8px 14px;
  }

  .wb-topbar__context {
    display: none;
  }

  .wb-mobile-brand {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 8px;
  }

  .wb-topbar-account {
    display: inline-flex;
  }

  .wb-mobile-brand img {
    width: 32px;
    height: 32px;
    border: 1px solid var(--wb-line);
    border-radius: 9px;
    object-fit: contain;
    background: var(--wb-panel);
  }

  .wb-mobile-brand strong {
    max-width: 128px;
    overflow: hidden;
    font-size: 14px;
    font-weight: 800;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .wb-main {
    width: 100%;
    padding: 16px 14px calc(86px + env(safe-area-inset-bottom));
  }

  .wb-hero {
    display: grid;
    min-height: 0;
    gap: 22px;
    padding: 22px 18px;
  }

  .wb-hero h1 {
    font-size: clamp(27px, 9vw, 36px);
  }

  .wb-hero p {
    max-width: 32em;
    font-size: 12px;
  }

  .wb-model-strip {
    padding-left: 8px;
  }

  .wb-section {
    margin-top: 24px;
  }

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

  .wb-creation-grid,
  .wb-assistant-grid {
    grid-template-columns: 1fr;
  }

  .wb-creation-grid {
    gap: 10px;
  }

  .wb-creation-card {
    min-height: 78px;
    padding: 11px 13px;
  }

  .wb-assistant-card {
    min-height: 72px;
  }

  .wb-model-grid {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    grid-template-columns: none;
    grid-auto-columns: 76px;
    grid-auto-flow: column;
    gap: 8px;
    padding-bottom: 6px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scrollbar-width: none;
    scroll-snap-type: inline proximity;
  }

  .wb-model-grid::-webkit-scrollbar {
    display: none;
  }

  .wb-model-card {
    scroll-snap-align: start;
  }

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

  .wb-footer {
    display: grid;
    justify-items: center;
    text-align: center;
  }

  .wb-mobile-nav {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 90;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    min-height: 62px;
    padding: 6px 7px calc(6px + env(safe-area-inset-bottom));
    border-top: 1px solid var(--wb-line);
    background: color-mix(in srgb, var(--wb-sidebar) 94%, transparent);
    box-shadow: 0 -14px 30px rgba(0, 0, 0, 0.12);
    backdrop-filter: blur(18px);
  }

  .wb-mobile-nav a {
    display: grid;
    min-width: 0;
    place-items: center;
    gap: 2px;
    color: var(--wb-text-faint);
    font-size: 10px;
    font-weight: 700;
  }

  .wb-mobile-nav a.is-active {
    color: var(--wb-accent);
  }

  .wb-mobile-nav svg {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 520px) {
  .wb-topbar__actions {
    gap: 6px;
  }

  .wb-icon-button {
    width: 34px;
    min-height: 34px;
  }

  .wb-support-button {
    width: 34px;
    min-height: 34px;
    padding: 0;
  }

  .wb-support-button span {
    display: none;
  }

  .wb-login-button {
    min-width: 54px;
    min-height: 34px;
    padding: 0 12px;
  }

  .wb-topbar-account--user {
    width: 34px;
    min-width: 34px;
    height: 34px;
    min-height: 34px;
    padding: 0;
  }

  .wb-topbar-account__avatar {
    width: 29px;
    height: 29px;
  }

  .wb-topbar-account__avatar > img:not(.wb-topbar-account__frame),
  .wb-topbar-account__avatar > span {
    width: 27px;
    height: 27px;
  }

  .wb-topbar-account__frame {
    width: 34px;
    height: 34px;
  }

  .wb-login-button__full {
    display: none;
  }

  .wb-login-button__short {
    display: inline;
  }

  .wb-kicker {
    font-size: 11px;
  }

  .wb-model-strip > span {
    width: 37px;
    height: 37px;
  }

  .wb-model-strip img {
    width: 20px;
    height: 20px;
  }

  .wb-gallery-grid {
    grid-template-columns: 1fr;
  }
}
