*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  height: 100%;
}

body {
  min-height: 100%;
  height: 100dvh;
  overflow: hidden;
  font-family: 'Nunito', system-ui, -apple-system, sans-serif;
  background: #ffffff;
  color: #0a1e3d;
  -webkit-font-smoothing: antialiased;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

a {
  color: inherit;
}

.layout {
  display: flex;
  flex-direction: column;
  height: 100dvh;
  overflow: hidden;
  position: relative;
}

/* ── Header ── */

.header {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 40px;
  z-index: 10;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo__img {
  display: block;
  height: 35px;
  width: auto;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.btn-mute {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: #0a1e3d;
  color: #fff;
  flex-shrink: 0;
}

.btn-mute svg {
  width: 22px;
  height: 22px;
}

.btn-signup {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 24px;
  border-radius: 14px;
  background: #e6007a;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
}

.btn-signup:hover {
  background: #cc006b;
}

/* ── Main stage ── */

.stage {
  flex: 1 1 auto;
  display: grid;
  grid-template-columns: 440px minmax(0, 1fr) 440px;
  align-items: center;
  gap: 24px;
  padding: 12px 40px 20px;
  min-height: 0;
  overflow: hidden;
}

.panel {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  width: 440px;
  height: 520px;
  padding: 28px 26px 20px;
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 12px 48px rgba(10, 30, 61, 0.12);
  align-self: center;
  overflow: hidden;
  flex-shrink: 0;
}

.panel.panel--commands {
  overflow: visible;
}

.panel__body {
  position: relative;
  width: 100%;
  flex: 1 1 auto;
  min-height: 0;
  overflow: hidden;
  z-index: 1;
}

.panel__fade {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 210px;
  border-radius: 0 0 28px 28px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.4) 30%,
    rgba(255, 255, 255, 0.88) 65%,
    #ffffff 100%
  );
  pointer-events: none;
  z-index: 5;
}

.panel__title {
  position: relative;
  z-index: 1;
  font-size: 1.05rem;
  font-weight: 800;
  text-align: center;
  line-height: 1.3;
  padding: 0 4px;
  flex-shrink: 0;
}

.grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  width: 100%;
}

/* Command buttons (left) */

.panel--commands .panel__body {
  overflow: visible;
}

.grid--commands {
  padding-top: 40px;
  overflow: visible;
}

.cmd-btn-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  z-index: 1;
}

.cmd-btn-wrap:hover,
.cmd-btn-wrap:focus-within {
  z-index: 20;
}

.cmd-btn {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: 0;
  border: 2px solid #d0d5de;
  border-radius: 50%;
  background: #fff;
  color: #0a1e3d;
  padding: 0;
  overflow: visible;
  transition: border-color 0.15s;
}

.cmd-btn__icon {
  width: 62%;
  height: 62%;
  object-fit: contain;
  pointer-events: none;
  display: block;
}

.cmd-btn__label {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 10;
  padding: 10px 18px;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 8px 28px rgba(10, 30, 61, 0.22);
  font-size: 1.05rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  color: #1b1464;
  transform: translate(-50%, 16px);
  opacity: 0;
  transition:
    transform 0.45s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.35s ease;
  pointer-events: none;
}

.cmd-btn-wrap:hover .cmd-btn__label,
.cmd-btn-wrap:focus-within .cmd-btn__label {
  transform: translate(-50%, calc(-50% - 88%));
  opacity: 1;
}

.cmd-btn:hover,
.cmd-btn:focus-visible {
  border-color: #9aa3b2;
}

.cmd-btn-wrap:has(.cmd-btn.is-active) .cmd-btn__label {
  background: #1b1464;
  color: #97f0ff;
  box-shadow: 0 8px 28px rgba(27, 20, 100, 0.45), 0 0 0 2px rgba(151, 240, 255, 0.35);
}

.cmd-btn.is-active {
  border: 3px solid transparent;
  background:
    linear-gradient(#1b1464, #1b1464) padding-box,
    conic-gradient(from 90deg, #ff76a7 0deg 180deg, #97f0ff 180deg 360deg) border-box;
  box-shadow: none;
}

.cmd-btn.is-active .cmd-btn__icon {
  width: 58%;
  height: 58%;
}

/* Avatar buttons (right) */

.panel.panel--models {
  overflow: visible;
}

.panel--models .panel__body {
  overflow: visible;
}

.grid--avatars {
  overflow: visible;
}

.avatar-btn-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  z-index: 1;
}

.avatar-btn-wrap:hover,
.avatar-btn-wrap:focus-within {
  z-index: 20;
}

.avatar-btn {
  position: relative;
  z-index: 1;
  aspect-ratio: 1;
  width: 100%;
  height: 100%;
  min-height: 0;
  border: 2px solid #d0d5de;
  border-radius: 50%;
  background-color: #ddd;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  padding: 0;
  overflow: hidden;
  transition: border-color 0.15s;
}

.avatar-btn__label {
  position: absolute;
  left: 50%;
  top: 62%;
  z-index: 10;
  padding: 10px 18px 12px;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 6px 22px rgba(10, 30, 61, 0.18);
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.01em;
  white-space: nowrap;
  color: #2a3344;
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  transition:
    transform 0.38s cubic-bezier(0.34, 1.4, 0.64, 1),
    opacity 0.28s ease;
  pointer-events: none;
}

.avatar-btn__label::before {
  content: '';
  position: absolute;
  top: -7px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid #fff;
  filter: drop-shadow(0 -2px 2px rgba(10, 30, 61, 0.06));
}

.avatar-btn-wrap:hover .avatar-btn__label,
.avatar-btn-wrap:focus-within .avatar-btn__label {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

.avatar-btn:hover {
  border-color: #9aa3b2;
}

.avatar-btn.is-active {
  border: 2px solid #d0d5de;
  box-shadow: none;
}

.panel__arrow {
  position: relative;
  z-index: 11;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0a1e3d;
  margin-top: auto;
  flex-shrink: 0;
  padding-top: 4px;
}

.panel__arrow svg {
  width: 28px;
  height: 14px;
}

/* ── Center video ── */

.stage__center {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-width: 0;
  min-height: 0;
  padding-bottom: 48px;
  overflow: visible;
}

.stage__video {
  display: block;
  width: auto;
  height: auto;
  max-width: none;
  max-height: calc(100dvh - 108px);
  object-fit: contain;
  pointer-events: none;
  transform: scale(1.22);
  transform-origin: center center;
}

.cta-bottom {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  width: min(440px, 92%);
  padding: 17px 32px;
  border-radius: 18px;
  background: #54e0ed;
  color: #0a1e3d;
  font-size: 1.2rem;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  box-shadow: 0 6px 24px rgba(84, 224, 237, 0.5);
  white-space: nowrap;
}

.cta-bottom:hover {
  background: #3dd9e6;
}

/* ── Info button ── */

.info-btn {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 20;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #54e0ed;
  color: #0a1e3d;
  font-size: 0.9rem;
  font-weight: 800;
  font-style: italic;
  line-height: 30px;
  text-align: center;
  padding: 0;
}

.info-btn:hover {
  background: #3dd9e6;
}

/* ── Desktop: no scroll ── */

@media (min-width: 901px) {
  html,
  body {
    overflow: hidden;
  }
}

/* ── Large tablet / small desktop ── */

@media (max-width: 1200px) and (min-width: 901px) {
  .header {
    padding: 12px 24px;
  }

  .stage {
    grid-template-columns: minmax(0, 340px) minmax(0, 1fr) minmax(0, 340px);
    gap: 16px;
    padding: 12px 24px 20px;
  }

  .panel {
    width: 100%;
    max-width: 340px;
    height: 480px;
    padding: 22px 20px 16px;
  }

  .stage__video {
    transform: scale(1.08);
  }
}

/* ── Tablet & mobile ── */

@media (max-width: 900px) {
  body {
    height: auto;
    min-height: 100dvh;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .layout {
    height: auto;
    min-height: 100dvh;
    overflow: visible;
    padding-bottom: env(safe-area-inset-bottom, 0);
  }

  .header {
    padding: 10px 16px;
    padding-top: max(10px, env(safe-area-inset-top));
    gap: 8px;
  }

  .logo__img {
    height: 28px;
  }

  .header__actions {
    gap: 10px;
  }

  .btn-mute {
    width: 40px;
    height: 40px;
    border-radius: 10px;
  }

  .btn-signup {
    padding: 10px 14px;
    font-size: 0.78rem;
    border-radius: 12px;
    white-space: normal;
    text-align: center;
    max-width: 118px;
    line-height: 1.15;
  }

  .stage {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 4px 16px 28px;
    min-height: 0;
    overflow: visible;
  }

  .stage__center {
    order: -1;
    width: 100%;
    min-height: 0;
    height: auto;
    padding-bottom: 56px;
  }

  .stage__video {
    width: 100%;
    max-width: 100%;
    max-height: min(52vh, 420px);
    transform: none;
    margin: 0 auto;
  }

  .cta-bottom {
    width: calc(100% - 8px);
    max-width: none;
    padding: 15px 20px;
    font-size: 1.05rem;
    border-radius: 16px;
    white-space: normal;
    line-height: 1.2;
  }

  .panel {
    width: 100%;
    max-width: none;
    height: auto;
    min-height: 0;
    padding: 14px 0 0;
    border-radius: 22px;
    gap: 10px;
    box-shadow: 0 8px 32px rgba(10, 30, 61, 0.1);
    overflow: hidden;
  }

  .panel.panel--commands,
  .panel.panel--models {
    overflow: hidden;
  }

  .panel__title {
    font-size: 0.95rem;
    padding: 0 16px;
  }

  .panel--commands .panel__body,
  .panel--models .panel__body {
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    max-height: 240px;
    scrollbar-width: thin;
    scrollbar-color: rgba(10, 30, 61, 0.25) transparent;
  }

  .panel--commands .panel__body::-webkit-scrollbar,
  .panel--models .panel__body::-webkit-scrollbar {
    width: 4px;
  }

  .panel--commands .panel__body::-webkit-scrollbar-thumb,
  .panel--models .panel__body::-webkit-scrollbar-thumb {
    background: rgba(10, 30, 61, 0.22);
    border-radius: 4px;
  }

  .panel__fade {
    top: auto;
    left: 0;
    right: 0;
    bottom: 0;
    width: auto;
    height: 52px;
    border-radius: 0 0 22px 22px;
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.85) 70%,
      #ffffff 100%
    );
    pointer-events: none;
  }

  .panel__arrow {
    display: flex;
    margin-top: 0;
    padding: 0 0 10px;
    opacity: 0.45;
  }

  .grid--commands,
  .grid--avatars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    width: 100%;
    min-width: 0;
    padding: 4px 16px 20px;
    overflow: visible;
  }

  .grid--commands {
    padding-top: 4px;
  }

  .cmd-btn-wrap,
  .avatar-btn-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    aspect-ratio: auto;
    overflow: hidden;
  }

  .cmd-btn,
  .avatar-btn {
    width: 100%;
    aspect-ratio: 1;
    flex-shrink: 0;
    overflow: hidden;
  }

  .cmd-btn__label,
  .avatar-btn__label {
    position: static;
    transform: none !important;
    opacity: 1;
    margin-top: 5px;
    padding: 0 2px;
    background: transparent;
    box-shadow: none;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    color: #5a6478;
    pointer-events: none;
  }

  .avatar-btn__label::before {
    display: none;
  }

  .cmd-btn-wrap:has(.cmd-btn.is-active) .cmd-btn__label {
    color: #1b1464;
    background: transparent;
    box-shadow: none;
  }

  .avatar-btn-wrap:has(.avatar-btn.is-active) .avatar-btn__label {
    color: #1b1464;
  }

  .info-btn {
    right: max(16px, env(safe-area-inset-right));
    bottom: max(16px, env(safe-area-inset-bottom));
    width: 36px;
    height: 36px;
    line-height: 36px;
    font-size: 1rem;
  }

  .gate-modal {
    padding: 16px;
    padding-top: max(16px, env(safe-area-inset-top));
    padding-bottom: max(16px, env(safe-area-inset-bottom));
    align-items: flex-end;
  }

  .gate-modal__dialog {
    padding: 22px 20px 20px;
    border-radius: 20px 20px 16px 16px;
    max-height: calc(100dvh - 32px);
    overflow-y: auto;
  }

  .gate-modal__title {
    font-size: 1.15rem;
  }

  .gate-modal__actions {
    flex-direction: column-reverse;
    align-items: stretch;
  }

  .gate-modal__btn {
    width: 100%;
    min-width: 0;
  }

  .recaptcha {
    min-width: 0;
    width: 100%;
    max-width: 304px;
    gap: 16px;
    padding: 12px;
  }
}

/* ── Phone ── */

@media (max-width: 480px) {
  .header {
    padding: 8px 12px;
    padding-top: max(8px, env(safe-area-inset-top));
  }

  .logo__img {
    height: 24px;
  }

  .btn-mute {
    width: 36px;
    height: 36px;
  }

  .btn-mute svg {
    width: 18px;
    height: 18px;
  }

  .btn-signup {
    padding: 9px 10px;
    font-size: 0.68rem;
    max-width: min(130px, 40vw);
  }

  .stage {
    gap: 12px;
    padding: 0 12px 24px;
  }

  .stage__center {
    padding-bottom: 52px;
  }

  .stage__video {
    max-height: min(48vh, 360px);
  }

  .cta-bottom {
    padding: 14px 16px;
    font-size: 0.95rem;
  }

  .panel {
    border-radius: 18px;
  }

  .panel__title {
    font-size: 0.88rem;
  }

  .panel--commands .panel__body,
  .panel--models .panel__body {
    max-height: 210px;
  }

  .grid--commands,
  .grid--avatars {
    gap: 8px;
    padding-left: 12px;
    padding-right: 12px;
  }

  .cmd-btn__label,
  .avatar-btn__label {
    font-size: 0.58rem;
  }

  .gate-modal__dialog {
    padding: 20px 16px 18px;
  }

  .gate-modal__text {
    font-size: 0.875rem;
  }
}

/* ── Mobile landscape ── */

@media (max-width: 900px) and (orientation: landscape) and (max-height: 520px) {
  .stage {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 10px;
    padding: 0 12px 16px;
  }

  .stage__center {
    order: -1;
    flex: 1 1 48%;
    min-width: 200px;
    padding-bottom: 48px;
  }

  .stage__video {
    max-height: calc(100dvh - 100px);
  }

  .panel {
    flex: 1 1 46%;
    min-width: 200px;
    padding: 10px 0 0;
  }

  .panel--commands .panel__body,
  .panel--models .panel__body {
    max-height: 180px;
  }
}

/* Touch devices: active tap feedback */

@media (hover: none) and (pointer: coarse) {
  .cmd-btn,
  .avatar-btn,
  .btn-signup,
  .cta-bottom,
  .gate-modal__btn {
    -webkit-tap-highlight-color: transparent;
  }

  .cmd-btn:active,
  .avatar-btn:active {
    transform: scale(0.96);
  }

  .cta-bottom:active {
    transform: translateX(-50%) scale(0.98);
  }

  .btn-signup:active {
    transform: scale(0.98);
  }
}

/* Age gate + captcha modals */
body.gate-modal-open {
  overflow: hidden;
}

.gate-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.gate-modal:not(.is-open) {
  display: none !important;
  pointer-events: none;
  visibility: hidden;
}

.gate-modal.is-open {
  display: flex;
  visibility: visible;
  pointer-events: auto;
}

.gate-modal[hidden] {
  display: none !important;
}

.gate-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 8, 16, 0.72);
  backdrop-filter: blur(4px);
}

.gate-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(420px, 100%);
  padding: 28px 28px 24px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.35);
  text-align: center;
}

.gate-modal__dialog--captcha {
  width: min(440px, 100%);
}

.gate-modal__title {
  margin: 0 0 10px;
  font-size: 1.35rem;
  font-weight: 800;
  color: #1a1033;
}

.gate-modal__text {
  margin: 0 0 22px;
  font-size: 0.9375rem;
  color: #5c5470;
  line-height: 1.5;
}

.gate-modal__actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.gate-modal__btn {
  min-width: 140px;
  padding: 12px 20px;
  border-radius: 999px;
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: transform 0.15s, box-shadow 0.15s;
}

.gate-modal__btn:hover {
  transform: translateY(-1px);
}

.gate-modal__btn--primary {
  background: linear-gradient(135deg, #ff4da6, #e91e8c);
  color: #fff;
  box-shadow: 0 4px 16px rgba(233, 30, 140, 0.35);
}

.gate-modal__btn--ghost {
  background: #f3f0f7;
  color: #4a4060;
}

.gate-modal__captcha {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

/* reCAPTCHA mock (PrivacyGuard) */
.recaptcha {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 16px 14px 14px;
  background: #f9f9f9;
  border: 1px solid #d3d3d3;
  border-radius: 3px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
  min-width: 304px;
  text-align: left;
}

.recaptcha__label {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  user-select: none;
}

.recaptcha__checkbox {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.recaptcha__box {
  width: 28px;
  height: 28px;
  border: 2px solid #c1c1c1;
  border-radius: 2px;
  background: #fff;
  flex-shrink: 0;
  transition: border-color 0.2s, background 0.2s;
}

.recaptcha__checkbox:checked + .recaptcha__box {
  border-color: #22c55e;
  background: #22c55e;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3'%3E%3Cpath d='M5 12l5 5L19 7' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 18px;
  background-position: center;
  background-repeat: no-repeat;
}

.recaptcha__checkbox:focus-visible + .recaptcha__box {
  outline: 2px solid #4285f4;
  outline-offset: 2px;
}

.recaptcha__text {
  font-family: Roboto, Helvetica, Arial, sans-serif;
  font-size: 14px;
  color: #000;
}

.recaptcha__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.recaptcha__logo {
  width: 32px;
  height: 32px;
}

.recaptcha__meta {
  font-size: 10px;
  color: #555;
  text-align: center;
  line-height: 1.3;
}

.recaptcha__meta small {
  font-size: 8px;
  color: #777;
}

.captcha-script-root {
  width: 100%;
  max-width: 420px;
}

.captcha-script-root:empty {
  display: none;
}

.recaptcha--verifying .recaptcha__label {
  cursor: wait;
  pointer-events: none;
}

.recaptcha--verifying .recaptcha__box {
  border-color: #4285f4;
  background: #fff;
  background-image: none;
  position: relative;
}

.recaptcha--verifying .recaptcha__box::after {
  content: '';
  position: absolute;
  inset: 5px;
  border: 2px solid #e8eaed;
  border-top-color: #4285f4;
  border-radius: 50%;
  animation: captcha-spin 0.75s linear infinite;
}

@keyframes captcha-spin {
  to {
    transform: rotate(360deg);
  }
}

.captcha-verify {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 14px auto 0;
  padding: 12px 14px;
  max-width: 340px;
  background: #f0f7ff;
  border: 1px solid #dbeafe;
  border-radius: 8px;
  font-size: 13px;
  color: #334155;
  text-align: left;
}

.captcha-verify--done {
  background: #ecfdf5;
  border-color: #a7f3d0;
  color: #065f46;
}

.captcha-verify__spinner {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  border: 2px solid #dbeafe;
  border-top-color: #2563eb;
  border-radius: 50%;
  animation: captcha-spin 0.75s linear infinite;
}

.captcha-verify__status {
  line-height: 1.4;
}
