.sys-home {
  --home-green: #16c875;
  --home-green-deep: #0a9e61;
  --home-mint: #ecfff6;
  --home-ink: #243245;
  --home-muted: #728094;
  --home-line: #e4edf1;
  --home-dark: #171b1f;
  --home-shadow: 0 18px 42px rgba(16, 78, 58, .10);
  min-height: 100vh;
  overflow: hidden;
  color: var(--home-ink);
  background: #fff;
  font-family: "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
  letter-spacing: 0;
}

.sys-home #news,
.sys-home .sys-news {
  display: none !important;
}

.sys-home *,
.sys-home *::before,
.sys-home *::after {
  box-sizing: border-box;
}

.sys-home img {
  display: block;
  max-width: 100%;
}

.sys-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  width: min(1200px, calc(100% - 48px));
  grid-template-columns: 220px minmax(0, 1fr) 210px;
  gap: 20px;
  align-items: center;
  min-height: 62px;
  margin: 0 auto;
  background: rgba(255, 255, 255, .94);
  border-bottom: 1px solid rgba(228, 237, 241, .82);
  backdrop-filter: blur(14px);
}

.sys-brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 10px;
  color: #1f2a3b;
  font-size: 18px;
  font-weight: 950;
}

.sys-brand span,
.sys-brand img {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 8px;
  background: var(--home-green);
  color: #fff;
  object-fit: contain;
  box-shadow: 0 12px 22px rgba(22, 200, 117, .22);
}

.sys-brand img {
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.sys-brand strong {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sys-nav {
  display: flex;
  justify-content: center;
  gap: 30px;
  color: #536274;
  font-size: 13px;
  font-weight: 850;
}

.sys-nav a {
  position: relative;
  display: inline-flex;
  min-height: 62px;
  align-items: center;
  white-space: nowrap;
}

.sys-nav a:hover,
.sys-nav a.is-active {
  color: var(--home-green-deep);
}

.sys-nav a.is-active::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  border-radius: 999px 999px 0 0;
  background: var(--home-green);
  content: "";
}

.sys-header-actions,
.sys-hero-form {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  align-items: center;
}

.sys-trial,
.sys-hero-form button,
.sys-cta a {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
}

.sys-trial,
.sys-hero-form button,
.sys-cta a {
  min-width: 92px;
  border: 0;
  background: var(--home-green);
  color: #fff;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(22, 200, 117, .20);
}

.sys-hero {
  background:
    linear-gradient(90deg, rgba(22, 200, 117, .045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(22, 200, 117, .045) 1px, transparent 1px),
    linear-gradient(120deg, #f7fffb 0%, #effcf6 54%, #e5fbef 100%);
  background-size: 42px 42px, 42px 42px, auto;
}

.sys-hero-inner {
  display: grid;
  width: min(1200px, calc(100% - 48px));
  grid-template-columns: minmax(0, .94fr) minmax(520px, 1.06fr);
  gap: 44px;
  align-items: center;
  min-height: 430px;
  margin: 0 auto;
  padding: 56px 0 66px;
}

.sys-kicker {
  display: inline-flex;
  width: fit-content;
  min-height: 30px;
  align-items: center;
  padding: 0 18px;
  border-radius: 999px;
  background: #dffbec;
  color: var(--home-green-deep);
  font-size: 13px;
  font-weight: 900;
}

.sys-hero-copy h1 {
  display: flex;
  max-width: 760px;
  flex-wrap: wrap;
  column-gap: .22em;
  row-gap: 0;
  align-items: baseline;
  margin: 18px 0 0;
  color: #202b3d;
  font-size: 46px;
  line-height: 1.18;
  font-weight: 950;
}

.sys-hero-copy h1 mark {
  display: inline-block;
  max-width: 100%;
  overflow-wrap: anywhere;
  color: var(--home-green-deep);
  background: transparent;
}

.sys-hero-copy h1 span {
  display: inline-block;
  white-space: nowrap;
}

.sys-hero-copy p {
  max-width: 720px;
  margin: 20px 0 0;
  color: #6c7b8e;
  font-size: 15px;
  font-weight: 760;
  line-height: 1.9;
}

.sys-hero-form {
  justify-content: flex-start;
  width: min(420px, 100%);
  margin-top: 28px;
  padding: 8px;
  border: 1px solid #cdeedf;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 16px 36px rgba(16, 78, 58, .08);
}

.sys-hero-form input {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: 0;
  padding: 0 14px;
  color: #26364b;
  font: inherit;
}

.sys-hero-form button {
  min-height: 38px;
  padding: 0 22px;
}

body.sys-modal-open {
  overflow: hidden;
}

.sys-register-overlay {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(21, 32, 45, .34);
  backdrop-filter: blur(18px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .2s ease, visibility .2s ease;
}

.sys-register-overlay.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.sys-register-card {
  position: relative;
  overflow: hidden;
  width: min(1040px, 100%);
  max-height: calc(100vh - 48px);
  border: 1px solid rgba(226, 238, 232, .86);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 28px 70px rgba(20, 34, 48, .22);
}

.sys-register-card.is-success {
  width: min(460px, 100%);
}

.sys-register-form-view {
  display: grid;
  grid-template-columns: minmax(320px, .88fr) minmax(0, 1.12fr);
}

.sys-register-form-view[hidden],
.sys-register-success[hidden] {
  display: none !important;
}

.sys-register-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 3;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: rgba(22, 32, 45, .08);
  color: #314256;
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
}

.sys-register-side {
  position: relative;
  display: grid;
  align-content: center;
  min-height: 580px;
  padding: 48px 42px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(22, 200, 117, .055) 1px, transparent 1px),
    linear-gradient(180deg, rgba(22, 200, 117, .055) 1px, transparent 1px),
    linear-gradient(145deg, #f1fff8 0%, #eef9ff 100%);
  background-size: 28px 28px, 28px 28px, auto;
}

.sys-register-side::after {
  position: absolute;
  right: -50px;
  bottom: -70px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(22, 200, 117, .14);
  content: "";
}

.sys-register-side > span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  width: fit-content;
  min-height: 28px;
  align-items: center;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .78);
  color: var(--home-green-deep);
  font-size: 12px;
  font-weight: 950;
}

.sys-register-side h2 {
  position: relative;
  z-index: 1;
  margin: 18px 0 0;
  color: #1e2b3e;
  font-size: 30px;
  line-height: 1.25;
  font-weight: 950;
}

.sys-register-side p {
  position: relative;
  z-index: 1;
  margin: 16px 0 0;
  color: #607285;
  font-size: 14px;
  font-weight: 780;
  line-height: 1.8;
}

.sys-register-side-steps {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.sys-register-side-steps div {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 3px 12px;
  align-items: center;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 8px;
  background: rgba(255, 255, 255, .76);
  box-shadow: 0 12px 26px rgba(22, 158, 96, .08);
}

.sys-register-side-steps b {
  display: grid;
  width: 36px;
  height: 36px;
  grid-row: 1 / span 2;
  place-items: center;
  border-radius: 50%;
  background: var(--home-green);
  color: #fff;
  font-size: 15px;
  font-weight: 950;
  box-shadow: 0 10px 18px rgba(22, 200, 117, .18);
}

.sys-register-side-steps strong {
  min-width: 0;
  color: #233246;
  font-size: 14px;
  font-weight: 950;
}

.sys-register-side-steps small {
  min-width: 0;
  color: #6e7d8f;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.5;
}

.sys-register-main {
  padding: 46px 46px 38px;
}

.sys-register-head {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  justify-content: space-between;
  padding-right: 34px;
}

.sys-register-head strong {
  display: block;
  color: #233246;
  font-size: 22px;
  font-weight: 950;
}

.sys-register-head span {
  display: block;
  margin-top: 6px;
  color: #7a8798;
  font-size: 13px;
  font-weight: 760;
}

.sys-register-role-row {
  display: inline-flex;
  flex: 0 0 auto;
  gap: 8px;
  padding: 4px;
  border-radius: 999px;
  background: #edf8f3;
}

.sys-register-role {
  min-width: 58px;
  min-height: 30px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #658074;
  cursor: pointer;
  font-size: 13px;
  font-weight: 900;
}

.sys-register-role.is-active {
  background: var(--home-green);
  color: #fff;
  box-shadow: 0 10px 18px rgba(22, 200, 117, .18);
}

.sys-register-form {
  margin-top: 24px;
}

.sys-register-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 18px;
}

.sys-register-field {
  display: grid;
  gap: 7px;
  min-width: 0;
  color: #5f6d7c;
  font-size: 12px;
  font-weight: 900;
}

.sys-register-field span {
  padding-left: 2px;
}

.sys-register-field input {
  width: 100%;
  min-height: 44px;
  border: 1px solid #dfe9ef;
  border-radius: 8px;
  outline: 0;
  padding: 0 13px;
  background: #f9fcfb;
  color: #223246;
  font: inherit;
  font-size: 13px;
  font-weight: 780;
  transition: border .18s ease, box-shadow .18s ease, background .18s ease;
}

.sys-register-field input:focus {
  border-color: rgba(22, 200, 117, .55);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(22, 200, 117, .10);
}

.sys-register-field-action div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
}

.sys-register-field-action button {
  min-width: 98px;
  min-height: 44px;
  border: 1px solid rgba(22, 200, 117, .24);
  border-radius: 8px;
  background: #effcf6;
  color: var(--home-green-deep);
  cursor: pointer;
  font-size: 12px;
  font-weight: 950;
}

.sys-register-field-action button:disabled,
.sys-register-submit:disabled {
  cursor: not-allowed;
  opacity: .68;
}

.sys-register-meter {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  margin: -4px 0 0;
}

.sys-register-meter i {
  display: block;
  overflow: hidden;
  height: 5px;
  border-radius: 999px;
  background: #edf1f4;
}

.sys-register-meter b {
  display: block;
  width: 28%;
  height: 100%;
  border-radius: inherit;
  background: #ffb14f;
  transition: width .18s ease, background .18s ease;
}

.sys-register-meter span {
  color: #7b8998;
  font-size: 12px;
  font-weight: 850;
}

.sys-register-meter.is-medium b {
  width: 62%;
  background: #2fb7e8;
}

.sys-register-meter.is-strong b {
  width: 100%;
  background: var(--home-green);
}

.sys-register-agreement {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: flex-start;
  margin-top: 16px;
  color: #7a8798;
  font-size: 12px;
  font-weight: 780;
  line-height: 1.6;
}

.sys-register-agreement-check {
  display: inline-flex;
  gap: 8px;
  align-items: flex-start;
}

.sys-register-agreement input {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  accent-color: var(--home-green);
}

.sys-register-agreement button {
  appearance: none;
  padding: 0;
  border: 0;
  color: var(--home-green-deep);
  background: transparent;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  line-height: inherit;
}

.sys-register-agreement button:hover {
  color: var(--home-green);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.sys-register-agreement-modal {
  position: fixed;
  z-index: 70;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background:
    radial-gradient(circle at 22% 12%, rgba(47, 183, 232, .18), transparent 280px),
    rgba(15, 23, 42, .42);
  backdrop-filter: blur(12px);
}

.sys-register-agreement-modal[hidden] {
  display: none;
}

.sys-register-agreement-dialog {
  position: relative;
  width: min(560px, 100%);
  max-height: min(72vh, 680px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .88);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(248, 252, 250, .96)),
    #fff;
  box-shadow:
    0 34px 90px rgba(15, 23, 42, .28),
    inset 0 1px 0 rgba(255, 255, 255, .96);
}

.sys-register-agreement-dialog::before {
  content: "";
  position: absolute;
  top: -92px;
  right: -80px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(22, 200, 117, .12);
}

.sys-register-agreement-modal.is-privacy .sys-register-agreement-dialog::before {
  background: rgba(47, 183, 232, .14);
}

.sys-register-agreement-dialog h3 {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  padding: 28px 68px 18px 30px;
  color: #172033;
  font-size: 24px;
  font-weight: 950;
  letter-spacing: 0;
}

.sys-register-agreement-dialog h3::before {
  content: "协";
  display: inline-flex;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(135deg, var(--home-green), var(--home-green-deep));
  box-shadow: 0 12px 22px rgba(22, 200, 117, .22);
  font-size: 16px;
  font-weight: 950;
}

.sys-register-agreement-modal.is-privacy .sys-register-agreement-dialog h3::before {
  content: "隐";
  background: linear-gradient(135deg, #2fb7e8, #4f78f2);
  box-shadow: 0 12px 22px rgba(47, 183, 232, .20);
}

.sys-register-agreement-close {
  position: absolute;
  z-index: 2;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  color: #66758a;
  background: rgba(241, 245, 249, .92);
  cursor: pointer;
  font-size: 22px;
  line-height: 42px;
  text-align: center;
  box-shadow: inset 0 0 0 1px rgba(226, 232, 240, .86);
}

.sys-register-agreement-close:hover {
  color: #172033;
  background: #fff;
}

.sys-register-agreement-content {
  position: relative;
  z-index: 1;
  max-height: calc(min(72vh, 680px) - 96px);
  overflow: auto;
  margin: 0 24px 24px;
  padding: 22px 24px;
  border: 1px solid rgba(226, 232, 240, .82);
  border-radius: 22px;
  color: #48576b;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .92), rgba(248, 251, 255, .86)),
    #f8fafc;
  font-size: 15px;
  font-weight: 650;
  line-height: 1.92;
  white-space: normal;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .92);
}

.sys-register-agreement-modal.is-user .sys-register-agreement-content {
  border-color: rgba(22, 200, 117, .18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .94), rgba(244, 255, 248, .86)),
    #f6fbf8;
}

.sys-register-agreement-modal.is-privacy .sys-register-agreement-content {
  border-color: rgba(47, 183, 232, .18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .94), rgba(244, 249, 255, .88)),
    #f7fbff;
}

.sys-register-status {
  min-height: 22px;
  margin-top: 12px;
  color: #7a8798;
  font-size: 13px;
  font-weight: 850;
}

.sys-register-status.is-error {
  color: #d84f4f;
}

.sys-register-status.is-success {
  color: var(--home-green-deep);
}

.sys-register-status.is-info {
  color: #376f91;
}

.sys-register-submit,
.sys-register-success button {
  display: inline-flex;
  width: 100%;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: var(--home-green);
  color: #fff;
  cursor: pointer;
  font-size: 14px;
  font-weight: 950;
  box-shadow: 0 16px 28px rgba(22, 200, 117, .20);
}

.sys-register-success {
  display: grid;
  justify-items: center;
  padding: 48px 34px 38px;
  text-align: center;
}

.sys-register-success-icon {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 50%;
  background: var(--home-green);
  color: #fff;
  font-size: 30px;
  font-weight: 950;
  box-shadow: 0 16px 30px rgba(22, 200, 117, .22);
}

.sys-register-success h2 {
  margin: 18px 0 0;
  color: #223246;
  font-size: 28px;
  font-weight: 950;
}

.sys-register-success p {
  margin: 8px 0 0;
  color: #69788b;
  font-size: 15px;
  font-weight: 820;
}

.sys-register-success-code {
  display: grid;
  width: 230px;
  min-height: 230px;
  place-items: center;
  margin: 24px 0 22px;
  padding: 14px;
  border: 1px solid #dfece5;
  border-radius: 8px;
  background: #f8fffb;
}

.sys-register-success-code img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.sys-register-success-code.is-empty {
  gap: 8px;
  padding: 24px;
  color: #69788b;
  font-size: 13px;
  font-weight: 820;
}

.sys-register-success-code.is-empty strong {
  color: #273548;
  font-size: 16px;
}

.sys-register-success button {
  width: min(210px, 100%);
}

.sys-hero-art {
  position: relative;
  min-height: 330px;
}

.sys-hero-art.has-upload {
  display: flex;
  align-items: center;
  justify-content: center;
}

.sys-hero-upload-image {
  width: min(100%, 560px);
  max-height: 360px;
  object-fit: contain;
  filter: drop-shadow(0 28px 48px rgba(22, 158, 96, .18));
}

.sys-iso-laptop {
  position: absolute;
  top: 56px;
  left: 50%;
  display: grid;
  width: 260px;
  height: 180px;
  place-items: center;
  border: 1px solid rgba(20, 184, 112, .20);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .82), rgba(198, 249, 222, .75)),
    #ecfff5;
  box-shadow: 0 28px 52px rgba(22, 158, 96, .18);
  transform: translateX(-50%) rotateX(55deg) rotateZ(-38deg);
  transform-style: preserve-3d;
}

.sys-iso-laptop span {
  position: absolute;
  inset: 28px 38px 52px;
  border: 8px solid var(--home-green);
  border-radius: 6px;
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(22, 200, 117, .16);
}

.sys-iso-laptop b {
  position: absolute;
  bottom: 34px;
  color: var(--home-green-deep);
  font-size: 14px;
}

.sys-iso-card,
.sys-iso-tower {
  position: absolute;
  display: block;
  border: 1px solid rgba(22, 200, 117, .20);
  background: linear-gradient(135deg, rgba(255, 255, 255, .92), rgba(195, 248, 221, .76));
  box-shadow: 0 20px 34px rgba(22, 158, 96, .13);
  transform: rotateX(58deg) rotateZ(-38deg);
}

.sys-iso-card {
  width: 72px;
  height: 96px;
  border-radius: 8px;
}

.sys-iso-card::after {
  position: absolute;
  inset: 16px;
  border-radius: 5px;
  background: var(--home-green);
  content: "";
}

.sys-iso-card-a {
  top: 18px;
  left: 98px;
}

.sys-iso-card-b {
  right: 58px;
  bottom: 58px;
}

.sys-iso-tower {
  width: 50px;
  height: 170px;
  border-radius: 12px;
}

.sys-iso-tower-a {
  top: 16px;
  right: 180px;
}

.sys-iso-tower-b {
  bottom: 34px;
  left: 190px;
}

.sys-quick {
  position: relative;
  z-index: 2;
  display: grid;
  width: min(1000px, calc(100% - 48px));
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  margin: -34px auto 52px;
}

.sys-quick button {
  position: relative;
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 4px 12px;
  align-items: center;
  min-height: 82px;
  padding: 16px;
  border: 1px solid var(--home-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--home-shadow);
  color: inherit;
  cursor: pointer;
  font: inherit;
  overflow: hidden;
  text-align: left;
}

.sys-quick button::before,
.sys-quick button::after {
  position: absolute;
  pointer-events: none;
  content: "";
}

.sys-quick button::before {
  inset: 8px;
  border-radius: 10px;
  background:
    radial-gradient(circle at 22% 50%, var(--quick-soft, rgba(22, 200, 117, .16)), transparent 36%),
    radial-gradient(circle at 76% 46%, rgba(255, 255, 255, .92), transparent 34%);
  opacity: 0;
  transform: scale(.72);
}

.sys-quick button::after {
  right: 16px;
  bottom: 14px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--quick-color, var(--home-green));
  opacity: 0;
  box-shadow:
    -16px -10px 0 var(--quick-color, var(--home-green)),
    -32px 2px 0 var(--quick-color, var(--home-green));
}

.sys-quick button[data-quick-effect="tasks"] {
  --quick-color: #16c875;
  --quick-soft: rgba(22, 200, 117, .18);
}

.sys-quick button[data-quick-effect="points"] {
  --quick-color: #12bfa3;
  --quick-soft: rgba(18, 191, 163, .18);
}

.sys-quick button[data-quick-effect="pet"] {
  --quick-color: #24b87e;
  --quick-soft: rgba(36, 184, 126, .18);
}

.sys-quick button[data-quick-effect="message"] {
  --quick-color: #18a7d8;
  --quick-soft: rgba(24, 167, 216, .16);
}

.sys-quick button[data-quick-effect="miniapp"] {
  --quick-color: #0fae74;
  --quick-soft: rgba(15, 174, 116, .18);
}

.sys-quick button.is-active {
  border-color: rgba(22, 200, 117, .28);
  box-shadow: 0 22px 42px rgba(16, 78, 58, .12);
  animation: sys-quick-card .46s ease both;
}

.sys-quick button:focus-visible {
  outline: 3px solid rgba(22, 200, 117, .24);
  outline-offset: 3px;
}

.sys-quick button.is-active::before {
  animation: sys-quick-aura .72s ease-out both;
}

.sys-quick button.is-active::after {
  animation: sys-quick-spark .7s ease-out both;
}

.sys-quick span {
  position: relative;
  z-index: 1;
  display: grid;
  width: 40px;
  height: 40px;
  grid-row: 1 / span 2;
  place-items: center;
  border-radius: 8px;
  background: #e8fbf1;
  color: var(--home-green-deep);
  font-weight: 950;
}

.sys-quick button.is-active[data-quick-effect="tasks"] span {
  animation: sys-quick-check .58s cubic-bezier(.2, .9, .22, 1.2);
}

.sys-quick button.is-active[data-quick-effect="points"] span {
  animation: sys-quick-coin .66s cubic-bezier(.2, .9, .22, 1.15);
}

.sys-quick button.is-active[data-quick-effect="pet"] span {
  animation: sys-quick-pet .64s cubic-bezier(.2, .9, .22, 1.15);
}

.sys-quick button.is-active[data-quick-effect="message"] span {
  animation: sys-quick-message .7s ease-out;
}

.sys-quick button.is-active[data-quick-effect="miniapp"] span {
  animation: sys-quick-sync .7s cubic-bezier(.2, .9, .22, 1.15);
}

.sys-quick strong {
  position: relative;
  z-index: 1;
  overflow: hidden;
  color: #26364b;
  font-size: 14px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sys-quick small {
  position: relative;
  z-index: 1;
  color: #7d8a9a;
  font-size: 12px;
  font-weight: 780;
}

@keyframes sys-quick-card {
  0% { transform: translateY(0) scale(1); }
  48% { transform: translateY(-5px) scale(1.015); }
  100% { transform: translateY(-2px) scale(1); }
}

@keyframes sys-quick-aura {
  0% { opacity: 0; transform: scale(.72); }
  38% { opacity: 1; }
  100% { opacity: 0; transform: scale(1.08); }
}

@keyframes sys-quick-spark {
  0% { opacity: 0; transform: translate(0, 0) scale(.4); }
  34% { opacity: .72; }
  100% { opacity: 0; transform: translate(12px, -18px) scale(1.1); }
}

@keyframes sys-quick-check {
  0%, 100% { transform: rotate(0deg) scale(1); }
  35% { transform: rotate(-8deg) scale(1.12); }
  68% { transform: rotate(6deg) scale(1.04); }
}

@keyframes sys-quick-coin {
  0% { transform: rotateY(0deg) scale(1); }
  46% { transform: rotateY(180deg) scale(1.1); }
  100% { transform: rotateY(360deg) scale(1); }
}

@keyframes sys-quick-pet {
  0%, 100% { transform: translateY(0) scale(1); }
  32% { transform: translateY(-8px) scale(1.08); }
  62% { transform: translateY(2px) scale(.98); }
}

@keyframes sys-quick-message {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(24, 167, 216, .24); }
  45% { transform: scale(1.08); box-shadow: 0 0 0 9px rgba(24, 167, 216, .12); }
  100% { transform: scale(1); box-shadow: 0 0 0 16px rgba(24, 167, 216, 0); }
}

@keyframes sys-quick-sync {
  0% { transform: rotate(0deg) scale(1); }
  42% { transform: rotate(14deg) scale(1.12); }
  72% { transform: rotate(-10deg) scale(1.04); }
  100% { transform: rotate(0deg) scale(1); }
}

.sys-device-section,
.sys-steps {
  padding: 54px 24px 76px;
  background: linear-gradient(180deg, #fff 0%, #fbfcff 100%);
}

.sys-section-title {
  width: min(900px, 100%);
  margin: 0 auto 34px;
  text-align: center;
}

.sys-section-title h2 {
  margin: 0;
  color: #263243;
  font-size: 30px;
  line-height: 1.35;
  font-weight: 950;
}

.sys-section-title h2 em {
  color: var(--home-green);
  font-style: normal;
}

.sys-section-title p {
  margin: 12px 0 0;
  color: var(--home-muted);
  font-size: 14px;
  font-weight: 760;
}

.sys-devices {
  position: relative;
  display: flex;
  width: min(760px, 100%);
  min-height: 300px;
  align-items: flex-end;
  justify-content: center;
  margin: 0 auto;
  padding-bottom: 24px;
}

.sys-devices::after {
  position: absolute;
  right: 46px;
  bottom: 8px;
  left: 46px;
  height: 24px;
  border-radius: 50%;
  background: rgba(84, 100, 118, .10);
  content: "";
}

.sys-devices.has-device-upload {
  min-height: auto;
  align-items: center;
  padding-bottom: 0;
}

.sys-devices.has-device-upload::after {
  display: none;
}

.sys-devices-upload-image {
  position: relative;
  z-index: 1;
  width: min(100%, 760px);
  max-height: 360px;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 22px 36px rgba(31, 42, 54, .12));
}

.sys-device-phone,
.sys-device-tablet,
.sys-device-laptop {
  position: relative;
  z-index: 1;
  margin: 0;
  border: 8px solid #17191d;
  background: #4b535b;
  box-shadow: 0 18px 38px rgba(31, 42, 54, .14);
}

.sys-device-phone {
  width: 82px;
  height: 170px;
  margin-right: -4px;
  border-radius: 8px;
}

.sys-device-phone.has-screen-image,
.sys-device-tablet.has-screen-image {
  overflow: hidden;
  background: #f8fbfd;
}

.sys-device-phone img,
.sys-device-tablet img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.sys-device-phone span,
.sys-device-tablet span {
  position: absolute;
  bottom: 13px;
  left: 50%;
  z-index: 2;
  width: 42px;
  height: 4px;
  border-radius: 999px;
  background: #d8e2e9;
  transform: translateX(-50%);
}

.sys-device-laptop {
  width: 390px;
  height: 240px;
  border-width: 10px;
  border-bottom-width: 16px;
  border-radius: 10px 10px 4px 4px;
}

.sys-device-laptop::after {
  position: absolute;
  right: -18px;
  bottom: -28px;
  left: -18px;
  height: 12px;
  border-radius: 0 0 18px 18px;
  background: linear-gradient(180deg, #dbe3ea, #aebbc7);
  content: "";
}

.sys-device-screen {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #4b535b;
}

.sys-device-screen img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.sys-device-screen-placeholder {
  display: grid;
  width: min(78%, 220px);
  min-height: 72px;
  place-items: center;
  padding: 14px;
  border: 1px dashed rgba(216, 226, 233, .7);
  border-radius: 8px;
  color: rgba(255, 255, 255, .46);
  font-size: 13px;
  font-weight: 900;
  text-align: center;
}

.sys-device-laptop figcaption {
  position: absolute;
  top: 50%;
  right: 12px;
  left: 12px;
  z-index: 2;
  overflow: hidden;
  color: rgba(255, 255, 255, .34);
  font-size: 12px;
  font-weight: 800;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
  transform: translateY(-50%);
  pointer-events: none;
}

.sys-device-tablet {
  width: 190px;
  height: 124px;
  margin-left: -8px;
  border-radius: 8px;
}

.sys-device-tablet span {
  right: 12px;
  bottom: 50%;
  left: auto;
  width: 4px;
  height: 54px;
  transform: translateY(50%);
}

.sys-feature-grid {
  display: grid;
  width: min(980px, calc(100% - 48px));
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 54px 70px;
  align-items: center;
  margin: 0 auto;
  padding: 72px 0;
}

.sys-feature-copy h2,
.sys-solution-copy h2 {
  margin: 0;
  color: #263243;
  font-size: 25px;
  line-height: 1.4;
  font-weight: 950;
}

.sys-feature-copy ul,
.sys-solution-copy p {
  display: grid;
  gap: 12px;
  margin: 20px 0 0;
  padding: 0;
  color: #69788b;
  font-size: 14px;
  font-weight: 780;
  line-height: 1.85;
  list-style: none;
}

.sys-feature-copy li {
  position: relative;
  padding-left: 26px;
}

.sys-feature-copy li::before {
  position: absolute;
  top: 7px;
  left: 0;
  width: 14px;
  height: 10px;
  border-bottom: 2px solid var(--home-green);
  border-left: 2px solid var(--home-green);
  content: "";
  transform: rotate(-45deg);
}

.sys-feature-tags {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 24px;
}

.sys-feature-tags span {
  min-height: 40px;
  padding: 11px 14px;
  border-radius: 8px;
  background: #eefcf5;
  color: var(--home-green-deep);
  font-size: 13px;
  font-weight: 900;
}

.sys-feature-visual {
  display: grid;
  min-height: 300px;
  place-items: center;
}

.sys-feature-upload-image {
  width: min(420px, 100%);
  max-height: 300px;
  margin: 0 auto;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 20px 32px rgba(22, 158, 96, .13));
}

.sys-illustration {
  position: relative;
  width: 310px;
  height: 260px;
  margin: 0 auto;
}

.sys-illustration::before {
  position: absolute;
  right: 42px;
  bottom: 18px;
  width: 184px;
  height: 124px;
  border: 1px solid #bdeed6;
  border-radius: 18px;
  background:
    linear-gradient(90deg, rgba(22, 200, 117, .16) 1px, transparent 1px),
    linear-gradient(180deg, rgba(22, 200, 117, .12) 1px, transparent 1px),
    #effff7;
  background-size: 16px 16px;
  content: "";
  transform: rotateX(58deg) rotateZ(-38deg);
  box-shadow: 0 22px 38px rgba(22, 158, 96, .12);
}

.sys-illustration i {
  position: absolute;
  display: block;
  border: 1px solid rgba(22, 200, 117, .26);
  background: linear-gradient(135deg, #fff, #c9f8de);
  box-shadow: 0 16px 30px rgba(22, 158, 96, .14);
}

.sys-illustration-desk i:nth-child(1) {
  top: 42px;
  left: 44px;
  width: 120px;
  height: 82px;
  border-radius: 8px;
  transform: rotateX(58deg) rotateZ(-38deg);
}

.sys-illustration-desk i:nth-child(2),
.sys-illustration-desk i:nth-child(3),
.sys-illustration-desk i:nth-child(4) {
  width: 58px;
  height: 58px;
  border-radius: 8px;
  transform: rotateX(58deg) rotateZ(-38deg);
}

.sys-illustration-desk i:nth-child(2) {
  right: 80px;
  top: 92px;
}

.sys-illustration-desk i:nth-child(3) {
  left: 94px;
  bottom: 36px;
}

.sys-illustration-desk i:nth-child(4) {
  right: 40px;
  bottom: 58px;
}

.sys-illustration-app::before {
  width: 150px;
  height: 150px;
}

.sys-illustration-app i:nth-child(1) {
  top: 54px;
  right: 82px;
  width: 120px;
  height: 120px;
  border-radius: 18px;
  transform: rotateX(58deg) rotateZ(-38deg);
}

.sys-illustration-app i:nth-child(2),
.sys-illustration-app i:nth-child(3) {
  width: 52px;
  height: 52px;
  border-radius: 8px;
  transform: rotateX(58deg) rotateZ(-38deg);
}

.sys-illustration-app i:nth-child(2) {
  top: 30px;
  left: 58px;
}

.sys-illustration-app i:nth-child(3) {
  right: 36px;
  bottom: 40px;
}

.sys-illustration-safe i:nth-child(1) {
  top: 54px;
  left: 82px;
  width: 146px;
  height: 120px;
  border-radius: 24px;
  transform: rotateX(58deg) rotateZ(-38deg);
}

.sys-illustration-safe i:nth-child(2) {
  top: 42px;
  left: 128px;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--home-green);
}

.sys-illustration-safe i:nth-child(3) {
  right: 54px;
  bottom: 42px;
  width: 64px;
  height: 64px;
  border-radius: 8px;
  transform: rotateX(58deg) rotateZ(-38deg);
}

.sys-solution {
  display: grid;
  grid-template-columns: minmax(0, .98fr) minmax(320px, 1.02fr);
  gap: 46px;
  align-items: center;
  width: min(980px, calc(100% - 48px));
  margin: 0 auto;
  padding: 34px 0 84px;
}

.sys-video-card {
  overflow: hidden;
  border: 1px solid #dcece4;
  border-radius: 8px;
  background: #f1fbf7;
  box-shadow: var(--home-shadow);
}

.sys-video-card.has-upload-video {
  border-color: rgba(22, 158, 96, .18);
  background: #0f1d2d;
}

.sys-video-upload {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 264px;
  object-fit: cover;
  background: #0f1d2d;
}

.sys-video-body {
  display: grid;
  min-height: 230px;
  place-items: center;
  background: #eef9f5;
  color: var(--home-green-deep);
}

.sys-video-body strong {
  font-size: 24px;
}

.sys-video-controls {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr) 24px 24px;
  gap: 10px;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  background: rgba(37, 45, 52, .34);
}

.sys-video-controls span,
.sys-video-controls i {
  display: block;
  height: 18px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .82);
}

.sys-video-controls b {
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .72);
}

.sys-steps {
  background: #eefbf5;
}

.sys-step-grid {
  display: grid;
  width: min(760px, 100%);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 70px;
  margin: 0 auto;
}

.sys-step-grid article {
  position: relative;
  display: grid;
  min-height: 150px;
  place-items: center;
  padding: 24px;
  border: 1px solid #e0eee7;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--home-shadow);
  text-align: center;
}

.sys-step-grid article + article::before {
  position: absolute;
  top: 50%;
  left: -50px;
  width: 32px;
  height: 8px;
  border-top: 2px dotted var(--home-green);
  content: "";
}

.sys-step-grid span {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 14px;
  background: var(--home-green);
  color: #fff;
  font-size: 22px;
  font-weight: 950;
}

.sys-step-grid strong {
  color: #273548;
  font-size: 16px;
}

.sys-step-grid small {
  color: var(--home-muted);
  font-size: 12px;
  font-weight: 800;
}

.sys-voice {
  width: min(980px, calc(100% - 48px));
  margin: 0 auto;
  padding: 72px 0;
}

.sys-voice-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.sys-voice-grid article {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  min-height: 132px;
  padding: 16px;
  border: 1px solid #eef2f4;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(39, 53, 72, .07);
}

.sys-voice-grid img {
  width: 92px;
  height: 92px;
  border-radius: 8px;
  object-fit: cover;
  object-position: top center;
}

.sys-voice-placeholder {
  display: grid;
  width: 92px;
  height: 92px;
  place-items: center;
  border: 1px solid #d9efe4;
  border-radius: 8px;
  background: #eefbf5;
  color: var(--home-green-deep);
  font-size: 28px;
  font-weight: 950;
}

.sys-voice-grid strong {
  color: #273548;
  font-size: 15px;
}

.sys-voice-grid p {
  margin: 8px 0 0;
  color: #7a8798;
  font-size: 12px;
  font-weight: 760;
  line-height: 1.7;
}

.sys-logos {
  display: grid;
  width: min(920px, calc(100% - 48px));
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  margin: 0 auto 70px;
}

.sys-logos span {
  display: grid;
  min-height: 34px;
  place-items: center;
  border: 1px solid #edf1f3;
  border-radius: 4px;
  background: #fff;
  color: #6f7d8d;
  font-size: 12px;
  font-weight: 850;
}

.sys-cta {
  display: grid;
  gap: 22px;
  justify-items: center;
  padding: 58px 24px;
  background: var(--home-green);
  color: #fff;
  text-align: center;
}

.sys-cta h2 {
  margin: 0;
  font-size: 28px;
  font-weight: 950;
}

.sys-cta a {
  min-height: 36px;
  padding: 0 26px;
  background: #fff;
  color: var(--home-green-deep);
  box-shadow: none;
}

.sys-footer {
  display: grid;
  grid-template-columns: minmax(260px, 1.35fr) repeat(3, minmax(118px, .7fr)) minmax(230px, .95fr);
  gap: 34px;
  padding: 58px max(24px, calc((100% - 1120px) / 2)) 30px;
  background: var(--home-dark);
  color: #a8b1bb;
}

.sys-brand-dark {
  color: #fff;
}

.sys-footer-brand p {
  max-width: 330px;
  margin: 18px 0 0;
  color: #99a4af;
  font-size: 13px;
  font-weight: 760;
  line-height: 1.8;
}

.sys-footer nav {
  display: grid;
  gap: 10px;
  align-content: start;
}

.sys-footer nav strong {
  margin-bottom: 8px;
  color: #fff;
  font-size: 13px;
}

.sys-footer nav a {
  color: #a8b1bb;
  font-size: 13px;
  font-weight: 760;
}

.sys-footer-qrcodes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  align-content: start;
}

.sys-footer-qrcode {
  display: grid;
  justify-items: center;
  gap: 8px;
  min-width: 0;
  padding: 12px 10px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 8px;
  background: rgba(255, 255, 255, .04);
  text-align: center;
}

.sys-footer-qrcode div {
  display: grid;
  width: 84px;
  height: 84px;
  place-items: center;
  overflow: hidden;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(22, 200, 117, .14), rgba(255, 255, 255, .08)),
    rgba(255, 255, 255, .06);
}

.sys-footer-qrcode img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sys-footer-qrcode span {
  color: #e2fff3;
  font-size: 24px;
  font-weight: 950;
}

.sys-footer-qrcode strong {
  color: #fff;
  font-size: 13px;
  font-weight: 950;
}

.sys-footer-qrcode small {
  color: #84909c;
  font-size: 11px;
  font-weight: 760;
  line-height: 1.4;
}

.sys-footer-bottom {
  display: flex;
  grid-column: 1 / -1;
  justify-content: space-between;
  gap: 18px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .08);
  color: #7d8792;
  font-size: 12px;
  font-weight: 800;
}

.sys-trial,
.sys-hero-form button,
.sys-register-close,
.sys-register-role,
.sys-register-field-action button,
.sys-register-submit,
.sys-register-success button,
.sys-quick button,
.sys-step-grid article,
.sys-cta a {
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
}

.sys-trial:hover,
.sys-hero-form button:hover,
.sys-register-close:hover,
.sys-register-role:hover,
.sys-register-field-action button:hover,
.sys-register-submit:hover,
.sys-register-success button:hover,
.sys-quick button:hover,
.sys-quick button:focus-visible,
.sys-step-grid article:hover,
.sys-cta a:hover {
  transform: translateY(-2px);
}

@media (max-width: 1080px) {
  .sys-header {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 8px;
    padding: 12px 0;
  }

  .sys-nav a {
    min-height: 34px;
  }

  .sys-header-actions {
    justify-content: center;
  }

  .sys-hero-inner,
  .sys-feature-grid,
  .sys-solution {
    grid-template-columns: 1fr;
  }

  .sys-hero-inner {
    min-height: auto;
  }

  .sys-hero-copy h1 {
    max-width: 780px;
  }

  .sys-hero-copy p {
    max-width: 760px;
  }

  .sys-quick {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .sys-footer {
    grid-template-columns: 1fr 1fr;
  }

  .sys-footer-brand,
  .sys-footer-qrcodes,
  .sys-footer-bottom {
    grid-column: 1 / -1;
  }

  .sys-footer-qrcodes {
    grid-template-columns: repeat(2, minmax(130px, 160px));
    justify-content: start;
  }
}

@media (max-width: 720px) {
  .sys-header,
  .sys-hero-inner,
  .sys-quick,
  .sys-feature-grid,
  .sys-solution,
  .sys-voice,
  .sys-logos {
    width: calc(100% - 28px);
  }

  .sys-nav {
    width: 100%;
    justify-content: flex-start;
    gap: 18px;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .sys-header-actions,
  .sys-hero-form,
  .sys-footer-bottom {
    align-items: stretch;
    flex-direction: column;
  }

  .sys-trial,
  .sys-hero-form button {
    width: 100%;
  }

  .sys-register-overlay {
    align-items: start;
    overflow-y: auto;
    padding: 14px;
  }

  .sys-register-card {
    max-height: none;
    margin: 18px 0;
  }

  .sys-register-form-view {
    grid-template-columns: 1fr;
  }

  .sys-register-side {
    min-height: auto;
    padding: 28px 22px;
  }

  .sys-register-side h2 {
    font-size: 24px;
  }

  .sys-register-side-steps {
    display: none;
  }

  .sys-register-main {
    padding: 28px 20px 24px;
  }

  .sys-register-head {
    flex-direction: column;
    padding-right: 42px;
  }

  .sys-register-role-row {
    width: 100%;
  }

  .sys-register-role {
    flex: 1;
  }

  .sys-register-fields {
    grid-template-columns: 1fr;
  }

  .sys-register-success {
    padding: 46px 20px 34px;
  }

  .sys-hero-inner {
    padding: 36px 0 54px;
  }

  .sys-hero-copy h1 {
    font-size: 32px;
  }

  .sys-hero-art {
    min-height: 250px;
  }

  .sys-iso-laptop {
    width: 210px;
    height: 146px;
  }

  .sys-quick,
  .sys-step-grid,
  .sys-voice-grid,
  .sys-logos,
  .sys-footer {
    grid-template-columns: 1fr;
  }

  .sys-footer-qrcodes {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sys-devices {
    min-height: 260px;
  }

  .sys-device-laptop {
    width: 278px;
    height: 176px;
  }

  .sys-device-phone {
    width: 52px;
    height: 118px;
    border-width: 6px;
  }

  .sys-device-tablet {
    width: 96px;
    height: 76px;
    border-width: 6px;
  }

  .sys-section-title h2,
  .sys-cta h2 {
    font-size: 24px;
  }

  .sys-feature-grid {
    gap: 36px;
    padding: 56px 0;
  }

  .sys-feature-upload-image {
    max-height: 260px;
  }

  .sys-illustration {
    width: 260px;
  }

  .sys-video-upload {
    min-height: 200px;
  }

  .sys-step-grid {
    gap: 18px;
  }

  .sys-step-grid article + article::before {
    display: none;
  }
}

@media (max-width: 420px) {
  .sys-hero-copy h1 {
    font-size: 28px;
    line-height: 1.22;
  }

  .sys-register-field-action div {
    grid-template-columns: minmax(0, 1fr);
  }

  .sys-register-field-action button {
    width: 100%;
  }

  .sys-video-upload {
    min-height: 180px;
  }
}
