@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
  --page-bg: #d9dff6;
  --page-accent: #9db1ff;
  --surface: rgba(255, 255, 255, 0.78);
  --surface-strong: #ffffff;
  --surface-soft: #eef3ff;
  --text: #13203f;
  --muted: #66728f;
  --border: rgba(19, 32, 63, 0.12);
  --border-strong: rgba(19, 32, 63, 0.18);
  --primary: #133a78;
  --primary-strong: #0d2d5f;
  --primary-soft: #eaf1ff;
  --danger-bg: #fff1f2;
  --danger-text: #a61b3c;
  --success-bg: #eefcf3;
  --success-text: #157347;
  --shadow-lg: 0 28px 80px rgba(36, 56, 110, 0.18);
  --shadow-md: 0 18px 40px rgba(24, 40, 84, 0.12);
  --radius-xl: 10px;
  --radius-lg: 8px;
  --radius-md: 6px;
  --radius-sm: 4px;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
  height: 100%;
}

body {
  margin: 0;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(12px, 2.6dvh, 28px) 0;
  overflow-x: hidden;
  font-family: "Outfit", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.75), transparent 28%),
    radial-gradient(circle at right 20%, rgba(157, 177, 255, 0.35), transparent 24%),
    linear-gradient(135deg, #d8ddf8 0%, #dce7ff 45%, #e9efff 100%);
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: auto;
  border-radius: 999px;
  filter: blur(10px);
  opacity: 0.55;
  pointer-events: none;
  z-index: 0;
}

body::before {
  width: 340px;
  height: 340px;
  top: 6%;
  left: -6%;
  background: rgba(255, 255, 255, 0.55);
}

body::after {
  width: 280px;
  height: 280px;
  right: 4%;
  bottom: 7%;
  background: rgba(141, 171, 255, 0.28);
}

.login-container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(330px, 395px) minmax(420px, 1fr);
  width: min(1090px, calc(100% - clamp(24px, 4vw, 64px)));
  min-height: min(610px, calc(100dvh - clamp(44px, 8dvh, 90px)));
  max-height: calc(100dvh - clamp(24px, 5dvh, 56px));
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.36);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(14px);
}

.login-form {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.95)),
    linear-gradient(145deg, rgba(209, 223, 255, 0.35), transparent 58%);
}

.login-form::after {
  content: "";
  position: absolute;
  right: 0;
  top: 10%;
  bottom: 10%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(19, 32, 63, 0.14), transparent);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  text-decoration: none;
  color: var(--text);
  margin-bottom: 12px;
}

.logo-img {
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-img img {
  width: 96px;
  max-width: 100%;
  height: auto;
}

.login-form-inner {
  display: flex;
  flex: 1;
  align-items: center;
}

.login-form-inner form {
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
}

.heading-area {
  margin-bottom: 20px;
}

.heading-area h2 {
  margin: 0 0 10px;
  font-size: clamp(1.8rem, 2.3vw, 2.45rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  font-weight: 800;
  color: #0d2452;
}

.heading-area p {
  margin: 0;
  color: var(--muted);
  font-size: 0.89rem;
  line-height: 1.55;
}

.form-area {
  padding: 21px 18px 17px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(12px);
}

.form-input-area-row {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-input-col {
  display: flex;
  flex-direction: column;
}

.form-input-col label {
  margin-bottom: 7px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #30415f;
}

.input-shell {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 48px;
  padding: 0 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
  transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.input-shell:focus-within {
  border-color: rgba(19, 58, 120, 0.5);
  box-shadow: 0 0 0 5px rgba(19, 58, 120, 0.12);
  transform: translateY(-1px);
}

.input-shell i {
  font-size: 0.98rem;
  color: #5e6f93;
}

.input-shell input {
  flex: 1;
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  outline: none;
  background: transparent !important;
  color: var(--text);
  font-family: inherit;
  font-size: 0.92rem;
  font-weight: 500;
  box-shadow: none !important;
}

.input-shell input::placeholder {
  color: #92a0bc;
}

.input-shell.is-invalid {
  border-color: rgba(166, 27, 60, 0.36);
  box-shadow: 0 0 0 5px rgba(166, 27, 60, 0.08);
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"] {
  -moz-appearance: textfield;
}

.password-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: #6c7a96;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.password-toggle:hover {
  background: var(--primary-soft);
  color: var(--primary);
}

.field-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.field-hint,
.field-error {
  margin-top: 8px;
  font-size: 0.76rem;
  line-height: 1.45;
}

.field-hint {
  color: #7b89a7;
}

#capsHint {
  display: none;
  color: #9a5818;
}

.field-error {
  display: none;
  color: var(--danger-text);
  font-weight: 600;
}

.field-error.is-visible,
#capsHint.is-visible {
  display: block;
}

.d-flex.justify-content-between.mb-3 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: 14px;
  margin-bottom: 0 !important;
}

.auth-options-remember {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  font-size: 0.86rem;
  color: #47546f;
  cursor: pointer;
}

.custom-checkbox {
  width: 14px;
  height: 14px;
  accent-color: var(--primary);
  cursor: pointer;
}

.d-flex a {
  color: #2556c6;
  font-size: 0.86rem;
  font-weight: 600;
  text-decoration: none;
}

.d-flex a:hover {
  text-decoration: underline;
}

.mt-5 {
  margin-top: 18px !important;
}

.button-warrper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  min-height: 50px;
  border: 0;
  border-radius: 6px;
  background: linear-gradient(135deg, #11356f 0%, #0a2a57 100%);
  color: #fff;
  font-family: inherit;
  font-size: 0.92rem !important;
  font-weight: 700;
  letter-spacing: 0.01em;
  box-shadow: 0 18px 30px rgba(17, 53, 111, 0.24);
  transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
  cursor: pointer;
}

.button-warrper:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 36px rgba(17, 53, 111, 0.28);
  filter: saturate(1.06);
}

.button-warrper:active {
  transform: translateY(0);
}

.button-spinner {
  display: none;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

.button-warrper.is-loading {
  cursor: wait;
  opacity: 0.92;
}

.button-warrper.is-loading .button-spinner {
  display: inline-block;
}

.button-warrper.is-loading .button-label {
  opacity: 0.98;
}

.alert {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: start;
  margin-bottom: 18px;
  padding: 16px 18px;
  border: 1px solid transparent;
  border-radius: 6px;
}

.alert-custom.alert-danger {
  background: var(--danger-bg);
  border-color: rgba(166, 27, 60, 0.18);
  color: var(--danger-text);
}

.alert-custom.alert-success {
  background: var(--success-bg);
  border-color: rgba(21, 115, 71, 0.18);
  color: var(--success-text);
}

.alert-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  font-size: 0.82rem;
  line-height: 1;
  padding-top: 0;
  border-radius: 6px;
}

.alert-danger .alert-icon {
  background: #ef476f;
  color: #ffffff;
}

.alert-success .alert-icon {
  background: #1e9b62;
  color: #ffffff;
}

.alert-title {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 3px;
}

.alert-message {
  font-size: 0.95rem;
  line-height: 1.5;
}

.alert-close {
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
  opacity: 0.78;
}

.alert-close:hover {
  opacity: 1;
}

.login-assurance {
  display: grid;
  gap: 8px;
  margin-top: 16px;
}

.assurance-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #596785;
  font-size: 0.78rem;
}

.assurance-item i {
  color: var(--primary);
  font-size: 1rem;
}

.assurance-item a {
  color: #2556c6;
  font-weight: 600;
  text-decoration: none;
}

.assurance-item a:hover {
  text-decoration: underline;
}

.onboarding {
  position: relative;
  display: flex;
  min-width: 0;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.66), transparent 26%),
    linear-gradient(180deg, #eef3ff 0%, #e4ecff 100%);
}

.onboarding::before {
  content: "";
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(19, 32, 63, 0.07);
  border-radius: 4px;
  pointer-events: none;
}

.swiper-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.swiper-wrapper {
  align-items: stretch;
}

.swiper-slide {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 38px 30px 54px;
  color: var(--text);
}

.slide-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  padding: 6px 10px;
  border: 1px solid rgba(19, 58, 120, 0.1);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.72);
  color: #23467f;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: 0 10px 22px rgba(42, 69, 126, 0.08);
}

.slide-badge,
.slide-image img,
.slide-orbit,
.slide-kicker,
.slide-content h2,
.slide-content > p:not(.slide-kicker),
.slide-points span,
.slide-metric-card {
  transition:
    opacity 1.25s ease,
    transform 1.25s ease,
    filter 1.25s ease;
}

.swiper-slide .slide-badge,
.swiper-slide .slide-orbit,
.swiper-slide .slide-kicker,
.swiper-slide .slide-content h2,
.swiper-slide .slide-content > p:not(.slide-kicker),
.swiper-slide .slide-points span,
.swiper-slide .slide-metric-card {
  opacity: 0;
  transform: translateY(8px);
  filter: blur(6px);
}

.swiper-slide .slide-image img {
  opacity: 0.08;
  transform: scale(0.985);
  filter: blur(8px) drop-shadow(0 18px 26px rgba(51, 79, 147, 0.1));
}

.swiper-slide-active .slide-badge,
.swiper-slide-active .slide-kicker,
.swiper-slide-active .slide-content h2,
.swiper-slide-active .slide-content > p:not(.slide-kicker) {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.swiper-slide-active .slide-image img {
  opacity: 1;
  transform: scale(1);
  filter: blur(0) drop-shadow(0 28px 38px rgba(51, 79, 147, 0.2));
}

.swiper-slide-active .slide-orbit,
.swiper-slide-active .slide-points span,
.swiper-slide-active .slide-metric-card {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.swiper-slide-active .slide-badge,
.swiper-slide-active .slide-image img {
  transition-delay: 0.04s;
}

.swiper-slide-active .slide-kicker {
  transition-delay: 0.1s;
}

.swiper-slide-active .slide-content h2 {
  transition-delay: 0.16s;
}

.swiper-slide-active .slide-content > p:not(.slide-kicker) {
  transition-delay: 0.22s;
}

.swiper-slide-active .slide-orbit,
.swiper-slide-active .slide-points span:nth-child(1) {
  transition-delay: 0.28s;
}

.swiper-slide-active .slide-points span:nth-child(2) {
  transition-delay: 0.34s;
}

.swiper-slide-active .slide-metric-card:nth-child(1) {
  transition-delay: 0.4s;
}

.swiper-slide-active .slide-metric-card:nth-child(2) {
  transition-delay: 0.46s;
}

.slide-image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 390px);
  min-height: 220px;
  margin-bottom: 14px;
}

.slide-orbit {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.86);
  color: #2f4f85;
  font-size: 0.76rem;
  font-weight: 600;
  box-shadow: 0 14px 28px rgba(38, 63, 119, 0.12);
  backdrop-filter: blur(8px);
}

.slide-orbit i {
  font-size: 0.86rem;
}

.orbit-top {
  top: 14px;
  right: 14px;
}

.orbit-bottom {
  left: 14px;
  bottom: 16px;
}

.slide-image img {
  width: min(100%, 320px);
  max-height: 242px;
  object-fit: contain;
  filter: drop-shadow(0 24px 34px rgba(51, 79, 147, 0.18));
}

.slide-content {
  max-width: 420px;
}

.slide-kicker {
  margin: 0 0 8px;
  color: #3e68ad;
  font-size: 0.72rem !important;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.slide-content h2 {
  margin: 0 0 12px;
  font-size: clamp(1.36rem, 1.65vw, 1.82rem);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #243354;
}

.slide-content p {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.55;
  color: #5d6783;
}

.slide-points {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 12px;
}

.slide-points span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 6px 10px;
  border: 1px solid rgba(19, 58, 120, 0.09);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.72);
  color: #44526f;
  font-size: 0.74rem;
  font-weight: 600;
}

.slide-metric-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  width: 100%;
  max-width: 300px;
  margin: 14px auto 0;
}

.slide-metric-card {
  padding: 10px 12px;
  border: 1px solid rgba(19, 58, 120, 0.08);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 14px 24px rgba(33, 54, 102, 0.06);
}

.slide-metric-card strong {
  display: block;
  margin-bottom: 4px;
  color: #1e3d74;
  font-size: 0.88rem;
  font-weight: 700;
}

.slide-metric-card span {
  display: block;
  color: #64708b;
  font-size: 0.74rem;
  line-height: 1.45;
}

.swiper-pagination {
  position: absolute;
  left: 50% !important;
  right: auto !important;
  top: auto !important;
  bottom: 16px !important;
  width: auto !important;
  transform: translateX(-50%);
  z-index: 5;
}

.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-container-horizontal > .swiper-pagination-bullets {
  bottom: 16px !important;
  left: 50% !important;
  top: auto !important;
  width: auto !important;
  transform: translateX(-50%);
}

.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: rgba(19, 58, 120, 0.22);
  opacity: 1;
}

.swiper-pagination-bullet-active {
  width: 28px;
  border-radius: 999px;
  background: var(--primary);
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@media screen and (max-width: 1100px) {
  .login-container {
    grid-template-columns: minmax(320px, 390px) 1fr;
    width: min(1010px, calc(100% - 28px));
    min-height: calc(100dvh - 66px);
    max-height: calc(100dvh - 32px);
    margin: 0 auto;
  }

  .swiper-slide {
    padding: 36px 24px 52px;
  }

  .slide-image {
    min-height: 214px;
  }

  .slide-orbit {
    padding: 9px 12px;
    font-size: 0.78rem;
  }
}

@media screen and (max-height: 900px) and (min-width: 861px) {
  body {
    padding: 14px 0;
  }

  .login-container {
    min-height: min(580px, calc(100dvh - 32px));
    max-height: calc(100dvh - 28px);
    grid-template-columns: minmax(320px, 380px) minmax(400px, 1fr);
  }

  .login-form {
    padding: 18px 20px;
  }

  .brand {
    margin-bottom: 10px;
  }

  .logo-img img {
    width: 88px;
  }

  .login-form-inner form {
    max-width: 286px;
  }

  .heading-area {
    margin-bottom: 16px;
  }

  .heading-area h2 {
    font-size: clamp(1.62rem, 2vw, 2.15rem);
  }

  .heading-area p {
    font-size: 0.84rem;
    line-height: 1.48;
  }

  .form-area {
    padding: 18px 16px 15px;
  }

  .form-input-area-row {
    gap: 12px;
  }

  .input-shell {
    min-height: 44px;
  }

  .field-hint,
  .field-error {
    margin-top: 6px;
    font-size: 0.72rem;
  }

  .d-flex.justify-content-between.mb-3 {
    margin-top: 12px;
  }

  .auth-options-remember,
  .d-flex a {
    font-size: 0.8rem;
  }

  .mt-5 {
    margin-top: 14px !important;
  }

  .button-warrper {
    min-height: 46px;
    font-size: 0.88rem !important;
  }

  .login-assurance {
    margin-top: 12px;
    gap: 6px;
  }

  .assurance-item {
    font-size: 0.74rem;
  }

  .onboarding::before {
    inset: 20px;
  }

  .swiper-slide {
    padding: 28px 24px 42px;
  }

  .slide-badge {
    margin-bottom: 8px;
    font-size: 0.66rem;
  }

  .slide-image {
    width: min(100%, 340px);
    min-height: 180px;
    margin-bottom: 10px;
  }

  .slide-image img {
    width: min(100%, 280px);
    max-height: 200px;
  }

  .slide-orbit {
    padding: 7px 10px;
    font-size: 0.7rem;
  }

  .slide-content {
    max-width: 380px;
  }

  .slide-kicker {
    margin-bottom: 6px;
    font-size: 0.68rem !important;
  }

  .slide-content h2 {
    font-size: clamp(1.2rem, 1.4vw, 1.54rem);
    margin-bottom: 8px;
  }

  .slide-content p {
    font-size: 0.78rem;
    line-height: 1.45;
  }

  .slide-points {
    margin-top: 10px;
    gap: 8px;
  }

  .slide-points span {
    min-height: 24px;
    padding: 5px 9px;
    font-size: 0.68rem;
  }

  .slide-metric-row {
    max-width: 270px;
    gap: 10px;
    margin-top: 10px;
  }

  .slide-metric-card {
    padding: 9px 10px;
  }

  .slide-metric-card strong {
    font-size: 0.8rem;
  }

  .slide-metric-card span {
    font-size: 0.68rem;
  }

  .swiper-pagination,
  .swiper-pagination-fraction,
  .swiper-pagination-custom,
  .swiper-container-horizontal > .swiper-pagination-bullets {
    bottom: 10px !important;
  }
}

@media screen and (max-height: 760px) and (min-width: 861px) {
  .login-container {
    min-height: min(540px, calc(100dvh - 18px));
    max-height: calc(100dvh - 16px);
  }

  .login-form {
    padding: 16px 18px;
  }

  .logo-img img {
    width: 82px;
  }

  .heading-area h2 {
    font-size: clamp(1.48rem, 1.85vw, 1.95rem);
  }

  .heading-area p {
    font-size: 0.8rem;
  }

  .form-area {
    padding: 16px 14px 13px;
  }

  .input-shell {
    min-height: 41px;
  }

  .button-warrper {
    min-height: 44px;
  }

  .swiper-slide {
    padding: 22px 20px 34px;
  }

  .slide-image {
    min-height: 156px;
    margin-bottom: 8px;
  }

  .slide-image img {
    width: min(100%, 246px);
    max-height: 172px;
  }

  .slide-orbit {
    display: none;
  }

  .slide-content h2 {
    font-size: clamp(1.08rem, 1.25vw, 1.34rem);
  }

  .slide-content p {
    font-size: 0.74rem;
  }

  .slide-points,
  .slide-metric-row {
    margin-top: 8px;
  }
}

@media screen and (max-width: 860px) {
  body {
    display: block;
    padding: 0;
  }

  .login-container {
    grid-template-columns: 1fr;
    min-height: auto;
    max-height: none;
  }

  .login-form::after {
    display: none;
  }

  .onboarding {
    min-height: 420px;
  }

  .login-form-inner form {
    max-width: 100%;
  }
}

@media screen and (max-width: 640px) {
  body::before,
  body::after {
    display: none;
  }

  .login-container {
    width: calc(100% - 18px);
    margin: 9px auto;
    border-radius: 8px;
  }

  .login-form {
    padding: 16px;
  }

  .form-area {
    padding: 22px 16px 18px;
    border-radius: 8px;
  }

  .heading-area {
    margin-bottom: 22px;
  }

  .heading-area h2 {
    font-size: 2rem;
  }

  .heading-area p,
  .alert-message,
  .d-flex a,
  .auth-options-remember {
    font-size: 0.92rem;
  }

  .field-hint,
  .field-error,
  .assurance-item {
    font-size: 0.84rem;
  }

  .d-flex.justify-content-between.mb-3 {
    flex-direction: column;
    align-items: flex-start;
  }

  .onboarding {
    min-height: 360px;
  }

  .onboarding::before {
    inset: 18px;
  }

  .swiper-slide {
    padding: 30px 18px 56px;
  }

  .slide-badge {
    margin-bottom: 14px;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
  }

  .slide-image {
    min-height: 210px;
    margin-bottom: 18px;
  }

  .slide-image img {
    max-height: 210px;
  }

  .slide-orbit {
    display: none;
  }

  .slide-content h2 {
    font-size: 1.45rem;
  }

  .slide-content p {
    font-size: 0.94rem;
    line-height: 1.65;
  }

  .slide-points {
    gap: 8px;
    margin-top: 14px;
  }

  .slide-points span {
    min-height: 32px;
    padding: 7px 12px;
    font-size: 0.8rem;
  }

  .slide-metric-row {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 16px;
  }

  .slide-metric-card {
    padding: 14px 16px;
  }
}
