/* ===== SUITE MODALS (terms, play, voice) + LOGIN ===== */
.suite-modal {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem;
  background: rgb(0 0 0 / 0.82);
  backdrop-filter: blur(6px);
  font-family: 'Montserrat', sans-serif;
}

.suite-modal-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 680px;
  max-height: 90dvh;
  overflow: hidden;
  background: #0a0a0a;
  border: 1px solid rgb(255 255 255 / 0.1);
  color: #fff;
}

.suite-modal-panel--md {
  max-width: 600px;
}

.suite-modal-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: hsl(var(--primary));
  z-index: 2;
}

.suite-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid rgb(255 255 255 / 0.06);
  flex-shrink: 0;
}

.suite-modal-kicker {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: hsl(var(--primary));
}

.suite-modal-title {
  margin: 0;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.1;
}

@media (min-width: 640px) {
  .suite-modal-title {
    font-size: 1.125rem;
  }
}

.suite-modal-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: 1px solid rgb(255 255 255 / 0.08);
  background: rgb(255 255 255 / 0.03);
  color: rgb(161 161 170);
  cursor: pointer;
  border-radius: 0;
  transition: color 0.2s, border-color 0.2s, background-color 0.2s;
}

.suite-modal-close svg {
  width: 1.125rem;
  height: 1.125rem;
}

.suite-modal-close:hover {
  color: #fff;
  border-color: rgb(255 255 255 / 0.16);
  background: rgb(255 255 255 / 0.06);
}

.suite-modal-body {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  padding: 1rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

@media (min-width: 640px) {
  .suite-modal-body {
    padding: 1.25rem 1.5rem;
    gap: 1rem;
  }
}

.suite-modal-footer {
  flex-shrink: 0;
  padding: 1rem 1.25rem;
  padding-bottom: max(1rem, env(safe-area-inset-bottom, 0px));
  border-top: 1px solid rgb(255 255 255 / 0.06);
  background: #0a0a0a;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.suite-modal-footer-note {
  margin: 0;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgb(82 82 91);
  text-align: center;
}

.suite-modal-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 2.75rem;
  padding: 0 1.25rem;
  border: 1px solid hsl(var(--primary) / 0.55);
  background: linear-gradient(180deg, hsl(var(--primary)), hsl(var(--primary) / 0.82));
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 0;
  box-shadow: 0 8px 24px -10px hsl(var(--primary) / 0.65);
  transition: filter 0.2s, transform 0.15s;
}

.suite-modal-btn:hover {
  filter: brightness(1.06);
}

.suite-modal-btn:active {
  transform: scale(0.99);
}

.suite-modal-btn--secondary {
  border-color: rgb(255 255 255 / 0.12);
  background: linear-gradient(180deg, rgb(22 22 22), rgb(14 14 14));
  color: rgb(212 212 216);
  box-shadow: none;
}

.suite-modal-btn--secondary:hover {
  border-color: rgb(255 255 255 / 0.2);
  color: #fff;
  filter: none;
}

.suite-modal-card {
  padding: 1rem 1.125rem;
  background: linear-gradient(180deg, rgb(18 18 18), rgb(12 12 12));
  border: 1px solid rgb(255 255 255 / 0.08);
}

.suite-modal-card-head {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 0.875rem;
}

@media (min-width: 640px) {
  .suite-modal-card-head {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
  }
}

.suite-modal-card-label {
  margin: 0 0 0.25rem;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgb(113 113 122);
}

.suite-modal-card-value {
  margin: 0;
  font-size: 1.375rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  line-height: 1;
  word-break: break-all;
}

@media (min-width: 640px) {
  .suite-modal-card-value {
    font-size: 1.75rem;
  }
}

.suite-modal-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
}

.suite-modal-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.3125rem;
  padding: 0.3125rem 0.5625rem;
  border: 1px solid rgb(255 255 255 / 0.1);
  background: rgb(0 0 0 / 0.35);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgb(161 161 170);
}

.suite-modal-pill svg {
  width: 0.75rem;
  height: 0.75rem;
  color: hsl(var(--primary));
}

.suite-modal-pill strong {
  color: #fff;
  font-weight: 900;
}

.suite-modal-pill em {
  color: hsl(var(--primary));
  font-style: normal;
  font-weight: 900;
}

.suite-modal-copy-row {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

@media (min-width: 640px) {
  .suite-modal-copy-row {
    flex-direction: row;
  }
}

.suite-modal-copy-input {
  flex: 1;
  min-width: 0;
  height: 2.75rem;
  padding: 0 0.875rem;
  border: 1px solid rgb(255 255 255 / 0.1);
  background: #0a0a0a;
  color: #fff;
  font-family: ui-monospace, monospace;
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 0;
}

.suite-modal-copy-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  min-height: 2.75rem;
  padding: 0 1.125rem;
  border: 1px solid rgb(255 255 255 / 0.12);
  background: linear-gradient(180deg, rgb(22 22 22), rgb(14 14 14));
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 0;
  white-space: nowrap;
  transition: border-color 0.2s, background-color 0.2s;
}

.suite-modal-copy-btn svg {
  width: 1rem;
  height: 1rem;
}

.suite-modal-copy-btn:hover {
  border-color: hsl(var(--primary) / 0.45);
  background: hsl(var(--primary) / 0.12);
}

.suite-modal-section {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.suite-modal-section-title {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  margin: 0;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgb(113 113 122);
}

.suite-modal-section-title svg {
  width: 0.875rem;
  height: 0.875rem;
  color: hsl(var(--primary));
}

.suite-modal-steps {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  margin: 0;
  padding: 0 0 0 0.875rem;
  border-left: 2px solid hsl(var(--primary) / 0.35);
  list-style: none;
}

.suite-modal-step {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
}

.suite-modal-step-num {
  display: grid;
  place-items: center;
  width: 1.375rem;
  height: 1.375rem;
  flex-shrink: 0;
  margin-top: 0.0625rem;
  border: 1px solid hsl(var(--primary) / 0.35);
  background: hsl(var(--primary) / 0.1);
  font-size: 9px;
  font-weight: 900;
  color: hsl(var(--primary));
}

.suite-modal-step-text {
  margin: 0;
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.55;
  color: rgb(212 212 216);
}

.suite-modal-step-text strong {
  color: #fff;
  font-weight: 800;
}

.suite-modal-step-text em {
  color: hsl(var(--primary));
  font-style: normal;
  font-weight: 800;
}

.suite-modal-note {
  margin: 0;
  padding: 0.625rem 0.75rem;
  font-size: 0.6875rem;
  font-weight: 600;
  line-height: 1.5;
  color: rgb(113 113 122);
  background: rgb(255 255 255 / 0.02);
  border: 1px solid rgb(255 255 255 / 0.06);
}

.suite-modal-card .suite-modal-note {
  margin-bottom: 0.875rem;
}

.suite-modal-note strong {
  color: #fff;
  font-weight: 800;
}

.suite-modal-kbd {
  display: inline-block;
  padding: 0.125rem 0.375rem;
  border: 1px solid rgb(255 255 255 / 0.12);
  background: #0a0a0a;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
}

.suite-modal-link-card {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.875rem 1rem;
  border: 1px solid rgb(255 255 255 / 0.08);
  background: linear-gradient(180deg, rgb(18 18 18), rgb(12 12 12));
  color: inherit;
  text-decoration: none;
  transition: border-color 0.2s, background-color 0.2s;
}

.suite-modal-link-card:hover {
  border-color: hsl(var(--primary) / 0.35);
  background: hsl(var(--primary) / 0.06);
}

.suite-modal-link-icon {
  display: grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  flex-shrink: 0;
  border: 1px solid hsl(var(--primary) / 0.25);
  background: hsl(var(--primary) / 0.1);
  color: hsl(var(--primary));
}

.suite-modal-link-icon svg {
  width: 1rem;
  height: 1rem;
}

.suite-modal-link-label {
  margin: 0 0 0.25rem;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgb(113 113 122);
}

.suite-modal-link-text {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.5;
  color: rgb(212 212 216);
}

.suite-modal-link-text strong {
  color: hsl(var(--primary));
  font-weight: 800;
}

.suite-modal-list-box {
  padding: 0.75rem;
  border: 1px solid rgb(255 255 255 / 0.06);
  background: rgb(0 0 0 / 0.25);
}

.suite-modal-list-box-label {
  margin: 0 0 0.625rem;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgb(113 113 122);
}

.suite-modal-checklist {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.suite-modal-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.6875rem;
  font-weight: 600;
  line-height: 1.45;
  color: rgb(161 161 170);
}

.suite-modal-checklist li svg {
  width: 0.75rem;
  height: 0.75rem;
  flex-shrink: 0;
  margin-top: 0.125rem;
  color: hsl(var(--primary));
}

.suite-modal-thanks {
  margin: 0;
  padding: 0.625rem 0.75rem;
  font-size: 0.6875rem;
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
  color: rgb(113 113 122);
  background: rgb(255 255 255 / 0.02);
  border: 1px solid rgb(255 255 255 / 0.06);
}

.suite-modal-thanks strong {
  color: #fff;
  font-weight: 800;
}

#dialog-terms .centralcart-content,
#dialog-terms .suite-modal-rich {
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.65;
  color: rgb(212 212 216);
}

#dialog-terms .centralcart-content h1,
#dialog-terms .centralcart-content h2,
#dialog-terms .centralcart-content h3,
#dialog-terms .centralcart-content h4 {
  margin: 0 0 0.75rem;
  font-size: 0.875rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
}

#dialog-terms .centralcart-content a {
  color: hsl(var(--primary));
  font-weight: 800;
  text-decoration: none;
}

#dialog-terms .centralcart-content a:hover {
  text-decoration: underline;
}

@media (max-width: 639px) {
  .suite-modal {
    align-items: flex-end;
    padding: 0;
  }

  .suite-modal-panel {
    max-height: 92dvh;
    border-left: 0;
    border-right: 0;
    border-bottom: 0;
  }
}

/* ===== LOGIN ===== */
.suite-login {
  position: relative;
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  padding: 1.5rem 1rem 3rem;
  min-height: calc(100dvh - 7rem);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
}

@media (min-width: 768px) {
  .suite-login {
    padding: 2.5rem 1.5rem 4rem;
    max-width: 980px;
  }
}

.suite-login-ambient {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    radial-gradient(ellipse 70% 45% at 50% -5%, hsl(var(--primary) / 0.14), transparent 55%),
    radial-gradient(ellipse 40% 30% at 85% 60%, hsl(var(--primary) / 0.06), transparent 50%);
}

.suite-login-shell {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.875rem;
  width: 100%;
}

@media (min-width: 768px) {
  .suite-login-shell {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 0;
    border: 1px solid rgb(255 255 255 / 0.08);
    background: linear-gradient(180deg, rgb(14 14 14), rgb(8 8 8));
    box-shadow: 0 24px 80px -40px rgb(0 0 0 / 0.9);
  }
}

/* Brand panel */
.suite-login-brand {
  position: relative;
  display: none;
  overflow: hidden;
  background:
    linear-gradient(145deg, hsl(var(--primary) / 0.12) 0%, transparent 42%),
    linear-gradient(180deg, rgb(16 16 16), rgb(10 10 10));
  border-bottom: 1px solid rgb(255 255 255 / 0.06);
}

@media (min-width: 768px) {
  .suite-login-brand {
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-bottom: 0;
    border-right: 1px solid rgb(255 255 255 / 0.06);
  }
}

.suite-login-brand-accent {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, hsl(var(--primary)), hsl(var(--primary) / 0.2));
}

.suite-login-brand-inner {
  padding: 2rem 1.75rem;
}

.suite-login-brand-kicker {
  display: inline-block;
  margin: 0 0 0.875rem;
  padding: 0.3125rem 0.5625rem;
  border: 1px solid hsl(var(--primary) / 0.35);
  background: hsl(var(--primary) / 0.1);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: hsl(var(--primary));
}

.suite-login-brand-title {
  margin: 0 0 0.75rem;
  font-size: 1.75rem;
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
}

.suite-login-brand-title span {
  color: hsl(var(--primary));
}

.suite-login-brand-text {
  margin: 0 0 1.5rem;
  max-width: 18rem;
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.65;
  color: rgb(161 161 170);
}

.suite-login-perks {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.suite-login-perk-icon {
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  flex-shrink: 0;
  border: 1px solid hsl(var(--primary) / 0.25);
  background: hsl(var(--primary) / 0.08);
  color: hsl(var(--primary));
}

.suite-login-perk-icon svg {
  width: 0.9375rem;
  height: 0.9375rem;
}

.suite-login-perks li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem;
  border: 1px solid rgb(255 255 255 / 0.06);
  background: rgb(0 0 0 / 0.22);
}

.suite-login-perk-copy {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
  min-width: 0;
}

.suite-login-perk-copy strong {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
}

.suite-login-perk-copy span {
  font-size: 0.6875rem;
  font-weight: 600;
  line-height: 1.45;
  color: rgb(113 113 122);
}

/* Form column */
.suite-login-form-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  min-width: 0;
}

@media (min-width: 768px) {
  .suite-login-form-wrap {
    padding: 1.25rem 1.25rem 1.125rem;
    gap: 0.75rem;
  }
}

.suite-login-topbar {
  position: relative;
  padding: 0.875rem 1rem 0.875rem 1.125rem;
  background: linear-gradient(180deg, rgb(20 20 20), rgb(14 14 14));
  border: 1px solid rgb(255 255 255 / 0.08);
  overflow: hidden;
}

@media (min-width: 768px) {
  .suite-login-topbar {
    background: transparent;
    border: 0;
    padding: 0.25rem 0.25rem 0;
  }
}

.suite-login-topbar-accent {
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: hsl(var(--primary));
}

@media (min-width: 768px) {
  .suite-login-topbar-accent {
    display: none;
  }
}

.suite-login-topbar-kicker {
  margin: 0 0 0.25rem;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: hsl(var(--primary));
}

.suite-login-topbar-title {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.1;
}

.suite-login-topbar-sub {
  margin: 0.375rem 0 0;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgb(113 113 122);
}

.suite-login-mobile-perks {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
}

@media (min-width: 768px) {
  .suite-login-mobile-perks {
    display: none;
  }
}

.suite-login-mobile-perks span {
  display: inline-flex;
  align-items: center;
  gap: 0.3125rem;
  padding: 0.375rem 0.5625rem;
  border: 1px solid rgb(255 255 255 / 0.08);
  background: rgb(255 255 255 / 0.02);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgb(161 161 170);
}

.suite-login-mobile-perks span svg {
  width: 0.75rem;
  height: 0.75rem;
  color: hsl(var(--primary));
}

.suite-login-card {
  padding: 1.125rem 1rem 1.25rem;
  background: linear-gradient(180deg, rgb(18 18 18), rgb(12 12 12));
  border: 1px solid rgb(255 255 255 / 0.08);
}

@media (min-width: 768px) {
  .suite-login-card {
    padding: 1.25rem;
    background: rgb(12 12 12 / 0.55);
  }
}

.suite-login-section-label {
  margin: 0 0 0.625rem;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgb(82 82 91);
}

.suite-login-socials {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.125rem;
}

.suite-login-social {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  min-height: 3.25rem;
  padding: 0.625rem 0.875rem;
  border: 1px solid rgb(255 255 255 / 0.08);
  background: linear-gradient(180deg, rgb(16 16 16), rgb(10 10 10));
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  text-align: left;
  cursor: pointer;
  border-radius: 0;
  transition: border-color 0.2s, background-color 0.2s, transform 0.15s;
}

.suite-login-social:hover {
  border-color: rgb(255 255 255 / 0.16);
  background: linear-gradient(180deg, rgb(22 22 22), rgb(14 14 14));
}

.suite-login-social:active {
  transform: scale(0.995);
}

.suite-login-social-icon {
  display: grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  flex-shrink: 0;
  border: 1px solid rgb(255 255 255 / 0.08);
  background: rgb(0 0 0 / 0.35);
}

.suite-login-social-icon svg {
  width: 1.125rem;
  height: 1.125rem;
}

.suite-login-social-copy {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
  flex: 1;
  min-width: 0;
}

.suite-login-social-copy strong {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
}

.suite-login-social-copy span {
  font-size: 0.6875rem;
  font-weight: 600;
  color: rgb(113 113 122);
}

.suite-login-social-arrow {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  color: rgb(82 82 91);
  transition: color 0.2s, transform 0.2s;
}

.suite-login-social:hover .suite-login-social-arrow {
  color: hsl(var(--primary));
  transform: translateX(2px);
}

.suite-login-social--google:hover {
  border-color: rgb(66 133 244 / 0.35);
}

.suite-login-social--discord:hover {
  border-color: rgb(88 101 242 / 0.4);
}

.suite-login-divider {
  position: relative;
  margin: 0 0 1.125rem;
  text-align: center;
}

.suite-login-divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: rgb(255 255 255 / 0.06);
}

.suite-login-divider span {
  position: relative;
  display: inline-block;
  padding: 0 0.625rem;
  background: rgb(12 12 12);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgb(82 82 91);
}

@media (min-width: 768px) {
  .suite-login-divider span {
    background: rgb(10 10 10);
  }
}

.suite-login-field label {
  display: block;
  margin-bottom: 0.375rem;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgb(113 113 122);
}

.suite-login-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.suite-login-input-icon {
  position: absolute;
  left: 0.75rem;
  width: 1rem;
  height: 1rem;
  color: rgb(113 113 122);
  pointer-events: none;
}

.suite-login-field input[type="email"] {
  width: 100%;
  height: 2.75rem;
  padding: 0 0.875rem 0 2.5rem;
  border: 1px solid rgb(255 255 255 / 0.1);
  background: #0a0a0a;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8125rem;
  border-radius: 0;
  transition: border-color 0.2s, background-color 0.2s;
}

.suite-login-field input[type="email"]::placeholder {
  color: rgb(82 82 91);
}

.suite-login-field input[type="email"]:focus {
  outline: none;
  border-color: hsl(var(--primary) / 0.45);
  background: hsl(var(--primary) / 0.04);
}

.suite-login-input-wrap:focus-within .suite-login-input-icon {
  color: hsl(var(--primary));
}

.suite-login-field-hint {
  margin: 0.5rem 0 0;
  font-size: 0.6875rem;
  font-weight: 600;
  line-height: 1.45;
  color: rgb(82 82 91);
}

.suite-login-otp-label {
  display: block;
  margin-bottom: 0.75rem;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgb(113 113 122);
  text-align: center;
}

.suite-login-otp {
  display: flex;
  justify-content: center;
  gap: 0.375rem;
}

@media (min-width: 400px) {
  .suite-login-otp {
    gap: 0.5rem;
  }
}

.suite-login-otp .otp-input {
  width: 2.375rem;
  height: 2.875rem;
  padding: 0;
  border: 1px solid rgb(255 255 255 / 0.1);
  background: #0a0a0a;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.0625rem;
  font-weight: 900;
  text-align: center;
  border-radius: 0;
  transition: border-color 0.2s, background-color 0.2s, box-shadow 0.2s;
}

@media (min-width: 400px) {
  .suite-login-otp .otp-input {
    width: 2.625rem;
    height: 3rem;
  }
}

.suite-login-otp .otp-input:focus {
  outline: none;
  border-color: hsl(var(--primary) / 0.55);
  background: hsl(var(--primary) / 0.08);
  box-shadow: 0 0 0 1px hsl(var(--primary) / 0.2);
}

.suite-login-otp-hint {
  margin: 0.875rem 0 0;
  font-size: 0.6875rem;
  font-weight: 600;
  line-height: 1.55;
  text-align: center;
  color: rgb(113 113 122);
}

.suite-login-otp-hint strong {
  color: #fff;
  font-weight: 800;
  word-break: break-all;
}

.suite-login-submit {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  margin-top: 1.125rem;
  min-height: 2.875rem;
  border-radius: 0 !important;
  font-family: 'Montserrat', sans-serif !important;
  font-size: 10px !important;
  font-weight: 900 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  box-shadow: 0 10px 28px -12px hsl(var(--primary) / 0.65);
}

.suite-login-submit svg {
  width: 1rem;
  height: 1rem;
  transition: transform 0.2s;
}

.suite-login-submit:hover svg {
  transform: translateX(2px);
}

.suite-login-back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  width: 100%;
  margin-top: 0.875rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgb(113 113 122);
  font-family: 'Montserrat', sans-serif;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  text-align: center;
}

.suite-login-back svg {
  width: 0.875rem;
  height: 0.875rem;
}

.suite-login-back:hover {
  color: #fff;
}

.suite-login-foot {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.625rem;
  padding: 0 0.25rem;
  padding-bottom: env(safe-area-inset-bottom, 0px);
}

@media (min-width: 768px) {
  .suite-login-foot {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0 0.25rem;
  }
}

.suite-login-trust {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  margin: 0;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgb(82 82 91);
}

.suite-login-trust svg {
  width: 0.875rem;
  height: 0.875rem;
  color: hsl(var(--primary));
}

.suite-login-store-link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgb(113 113 122);
  text-decoration: none;
  transition: color 0.2s;
}

.suite-login-store-link svg {
  width: 0.875rem;
  height: 0.875rem;
}

.suite-login-store-link:hover {
  color: #fff;
}
