@import url("https://fonts.googleapis.com/css?family=Oswald");
@import url("https://fonts.googleapis.com/css?family=Open+Sans:400,600,700,800");
@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@400;600;700;800&display=swap");
@import url("https://use.typekit.net/vji7hjw.css");
/**
  Mixin to add a tablet and desktop image but no
  mobile.
  args file name: myimage.png
 */
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0.5;
  }
  30% {
    opacity: 0.7;
  }
  50% {
    opacity: 0.9;
  }
  100% {
    opacity: 1;
  }
}
@keyframes slideOutLeft {
  100% {
    transform: translateX(-100%);
  }
}
@-webkit-keyframes slideOutLeft {
  100% {
    -webkit-transform: translateX(-100%);
  }
}
@-webkit-keyframes slideInUp {
  0% {
    height: 300px;
    opacity: 1;
  }
  100% {
    height: 0;
    opacity: 0;
  }
}
/**
  Heights
 */
/**
  Widths
 */
/**
  Customs
 */
:root {
  /* Brand Colors */
  --color-brand: #F26E70;
  --color-brand-secondary: #F5586D;
  /* Feedback Colors */
  --color-success: #69D499;
  --color-warning: #FBB03B;
  --color-error: #F5586D;
  /* Text Colors */
  --color-text-primary: #1D1D1D;
  --color-text-secondary: #575757;
  --color-text-tertiary: #828282;
  /* Surface/Background Colors */
  --color-background-primary: #FFFFFF;
  --color-background-secondary: #F1F1F1;
  --color-background-tertiary: #EEEEEE;
  /* Border Colors */
  --color-border: #E5E5E5;
  /* Extended Colors (derived from design system) */
  --color-brand-hover: #E44A5E;
  --color-brand-rgb: 245, 88, 109;
  --color-background-hover: #e0e0e0;
  --color-text-error: #F5586D;
  --color-input-background: #F1F1F1;
  --color-success-background: rgba(105, 212, 153, 0.1);
  --color-error-background: rgba(245, 88, 109, 0.1);
  --color-info: #2196F3;
  --color-info-background: rgba(33, 150, 243, 0.1);
  --title-bar-height: 56px;
  --title-bar-top: var(--safe-area-inset-top);
  --title-bar-total-height: calc(var(--title-bar-height) + var(--title-bar-top));
  --page-height: calc(100dvh - env(safe-area-inset-top, 0));
  --safe-area-inset-top: env(safe-area-inset-top, 0px);
  --safe-area-inset-right: env(safe-area-inset-right, 0px);
  --safe-area-inset-bottom: env(safe-area-inset-bottom, 0px);
  --safe-area-inset-left: env(safe-area-inset-left, 0px);
  --font-outfit: "Outfit", sans-serif;
  --font-embury: "embury-text", serif;
  --spacing-2: 4px;
  --spacing-3: 8px;
  --spacing-4: 12px;
  --spacing-5: 16px;
  --spacing-6: 20px;
  --spacing-7: 24px;
  --spacing-9: 36px;
  --spacing-10: 40px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --transition-fast: 0.2s ease;
  --transition-medium: 0.3s ease;
  --transition-slow: 0.4s ease;
  --transition-slide: 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  --transition-fade: 0.3s ease-out;
  --transition-button: 0.2s ease-out;
  --transition-stagger-delay: 0.08s;
  --transition-icon-pulse: 0.6s ease-in-out;
  --transition-text-overlay: 0.7s;
  --shadow-small: 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-medium: 0 4px 8px rgba(0, 0, 0, 0.1);
  --shadow-large: 0 8px 16px rgba(0, 0, 0, 0.1);
  --z-index-titlebar: 1000;
  --z-index-modal: 2000;
  --z-index-drawer: 3000;
  --z-index-toast: 4000;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  background: transparent;
  -webkit-tap-highlight-color: transparent;
  font-family: var(--font-outfit);
}
html, html body {
  overscroll-behavior-y: auto;
  text-size-adjust: none;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  touch-action: manipulation;
  height: 100%;
  margin: 0;
  min-height: 100%;
  background: var(--color-background-primary);
  color: var(--color-text-primary);
  overflow: auto;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
}

.reg-panel, .v4-registration-panel {
  font-family: var(--font-outfit);
  height: 100dvh;
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  width: 100%;
  max-width: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  text-align: center;
  color: var(--color-text-primary);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  background: var(--color-background-primary);
  padding-top: 0;
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
}
.reg-panel.active, .active.v4-registration-panel {
  transform: translateX(0);
}
@media (min-width: 1024px) {
  .reg-panel, .v4-registration-panel {
    align-items: center;
  }
}

.progress, .progress-bar {
  position: fixed;
  top: calc(35px + var(--safe-area-inset-top));
  left: 50%;
  transform: translateX(-50%);
  width: 40%;
  height: 4px;
  background: #f1f1f1;
  z-index: 100000;
  border-radius: 3px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
.progress .progress__fill, .progress-bar .progress__fill {
  height: 100%;
  background: var(--color-text-primary);
  transition: width 0.3s ease-in-out;
  border-radius: 1px;
  width: 10%;
}

.reg-panel__bg, .app-bg {
  position: fixed;
  left: 80px;
  height: calc(100dvh - var(--safe-area-inset-top));
  width: 160vw;
  background-image: url("/images/heart-dark@3x.png");
  background-size: 65vh;
  background-repeat: no-repeat;
  opacity: 0.2;
  z-index: 0;
  pointer-events: none;
}

.reg-panel__controls {
  position: fixed;
  top: calc(16px + var(--safe-area-inset-top));
  left: 16px;
  right: 16px;
  display: flex;
  justify-content: space-between;
  z-index: 99999;
}
@media (min-width: 1024px) {
  .reg-panel__controls {
    left: 16px;
    right: 16px;
    width: auto;
    max-width: none;
    margin: 0;
  }
}

.btn--icon, .skipButton, .backButton {
  display: flex;
  height: 44px;
  width: 44px;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  opacity: 1;
  transition: opacity 0.3s ease-in-out;
}
.btn--icon i, .skipButton i, .backButton i {
  font-size: 30px;
  color: var(--color-text-primary);
}
.btn--icon:disabled, .skipButton:disabled, .backButton:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.backButton {
  position: fixed;
  top: calc(16px + var(--safe-area-inset-top));
  left: 16px;
  z-index: 99999;
}

.skipButton {
  display: none;
  position: fixed;
  top: calc(16px + var(--safe-area-inset-top));
  right: 16px;
  z-index: 99999;
}
.skipButton i {
  font-size: 24px;
}

.reg-form, .registration-form {
  text-align: left;
  width: 100%;
  max-width: 100%;
  padding: calc(80px + var(--safe-area-inset-top)) 2.5% 0;
  font-size: 18px;
  position: relative;
  left: 0;
  right: 0;
  margin-bottom: calc(50px + var(--safe-area-inset-bottom));
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
  opacity: 1;
  box-sizing: border-box;
  min-height: calc(95dvh - var(--safe-area-inset-bottom));
  transform: none;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}
@media (min-width: 1024px) {
  .reg-form, .registration-form {
    justify-content: center;
    min-height: auto;
    padding: calc(80px + var(--safe-area-inset-top)) 5% 120px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
  }
}
.reg-form .step-container, .registration-form .step-container {
  position: relative;
  width: 100%;
  margin-bottom: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
@media (min-width: 1024px) {
  .reg-form .step-container, .registration-form .step-container {
    flex: 0 1 auto;
    justify-content: flex-start;
  }
}
.reg-form .step, .registration-form .step {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 0 16px;
  will-change: transform, opacity;
  gap: 16px;
  box-sizing: border-box;
  z-index: 2;
  opacity: 0;
  transform: translateX(150%);
  transition: all 0.3s ease-in-out;
}
.reg-form .step.active, .registration-form .step.active {
  opacity: 1;
  transform: translateX(0);
}
.reg-form .step .question, .registration-form .step .question {
  font-size: 40px;
  font-weight: bold;
  line-height: 0.9;
  color: var(--color-text-primary);
  width: 90%;
  max-width: 90%;
  word-wrap: break-word;
}
.reg-form .step .question b, .registration-form .step .question b {
  font-weight: bolder;
  font-family: var(--font-embury);
  font-style: italic;
  letter-spacing: -1px;
  color: #F5586D;
}
.reg-form .step .question i, .registration-form .step .question i {
  color: var(--color-text-primary);
  font-size: 32px;
  vertical-align: bottom;
  transform: rotate(-3deg);
  display: inline-block;
  margin-left: 4px;
}
.reg-form .step .question img.question-icon, .registration-form .step .question img.question-icon {
  height: 32px;
  width: auto;
  vertical-align: bottom;
  transform: rotate(-3deg);
  display: inline-block;
  margin-left: 4px;
}
.reg-form .step .subheader, .registration-form .step .subheader {
  color: var(--color-text-tertiary);
  margin-bottom: 12px;
  margin-top: 8px;
  font-size: 18px;
  line-height: 1.1;
  font-family: var(--font-outfit);
  width: 90%;
  max-width: 90%;
  word-wrap: break-word;
}
.reg-form .step .subheader u, .registration-form .step .subheader u {
  font-weight: 600;
  color: var(--color-text-primary);
}
.reg-form .step .location-label, .registration-form .step .location-label {
  color: var(--color-text-secondary);
  margin-bottom: 12px;
  margin-top: 8px;
  font-size: 28px;
  line-height: 1.1;
  font-family: var(--font-outfit);
  font-weight: 600;
  width: 90%;
  max-width: 90%;
  word-wrap: break-word;
}
.reg-form .step .mini-profile-subheader, .registration-form .step .mini-profile-subheader {
  font-size: 16px;
  line-height: 1.2;
  color: var(--color-text-tertiary);
  margin: 6px 0 10px 0;
  font-family: Outfit;
}
.reg-form .step input, .registration-form .step input, .reg-form .step .input, .registration-form .step .input {
  width: 90vw;
  margin: 0 auto;
  padding: 16px;
  background: #f1f1f1 !important;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 12px;
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.3);
  font-size: 18px;
  font-family: var(--font-outfit);
  position: relative;
  z-index: 3;
  -webkit-appearance: none;
  appearance: none;
  isolation: isolate;
  caret-color: transparent;
  transition: all 0.3s ease-in-out, caret-color 0.3s ease-in-out;
  will-change: transform, opacity, box-shadow;
  pointer-events: auto;
  touch-action: manipulation;
}
.reg-form .step input::placeholder, .registration-form .step input::placeholder, .reg-form .step .input::placeholder, .registration-form .step .input::placeholder {
  color: var(--color-text-tertiary);
}
.reg-form .step input:focus, .registration-form .step input:focus, .reg-form .step .input:focus, .registration-form .step .input:focus {
  background: #f1f1f1 !important;
  outline: none;
  opacity: 1 !important;
  isolation: isolate;
  caret-color: var(--color-text-primary);
  transition: all 0.3s ease-in-out, caret-color 0s 0.3s;
}
@media (min-width: 1024px) {
  .reg-form .step input, .registration-form .step input, .reg-form .step .input, .registration-form .step .input {
    width: min(90vw, 560px);
    max-width: 100%;
  }
}
.reg-form .step .toggle-password, .registration-form .step .toggle-password {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  color: var(--color-text-secondary);
  font-size: 18px;
  z-index: 10;
  pointer-events: auto;
  touch-action: manipulation;
}
.reg-form .step .toggle-password:hover, .registration-form .step .toggle-password:hover {
  color: var(--color-text-primary);
}
.reg-form .step .grid, .registration-form .step .grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  width: 90vw;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .reg-form .step .grid, .registration-form .step .grid {
    width: min(90vw, 560px);
    max-width: 100%;
  }
}
.reg-form .step .age-box, .registration-form .step .age-box {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 90vw;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .reg-form .step .age-box, .registration-form .step .age-box {
    width: min(90vw, 560px);
    max-width: 100%;
  }
}
.reg-form .step .age-box .min-age, .registration-form .step .age-box .min-age,
.reg-form .step .age-box .max-age,
.registration-form .step .age-box .max-age {
  flex: 1;
}
.reg-form .step .age-box .separator, .registration-form .step .age-box .separator {
  font-size: 32px;
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: 1;
  margin: 0;
  padding: 0 8px;
}
.reg-form .step .age-box .separator p, .registration-form .step .age-box .separator p {
  margin: 0;
  padding: 0;
}
.reg-form .step .bg-check-disclaimer, .registration-form .step .bg-check-disclaimer {
  width: 90vw;
  margin: 16px auto 0;
  font-size: 16px;
  line-height: 1.4;
  color: var(--color-text-tertiary);
  text-align: center;
}
@media (min-width: 1024px) {
  .reg-form .step .bg-check-disclaimer, .registration-form .step .bg-check-disclaimer {
    width: min(90vw, 560px);
    max-width: 100%;
  }
}
.reg-form .step .select, .registration-form .step .select {
  position: relative;
  width: 100%;
  height: 55px;
  background: #f1f1f1;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 12px;
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  padding: 0 16px;
  cursor: pointer;
  font-family: var(--font-outfit);
  z-index: 2;
}
.reg-form .step .select .selected, .registration-form .step .select .selected {
  flex: 1;
  font-size: 18px;
  color: var(--color-text-primary);
  pointer-events: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.reg-form .step .select .down, .registration-form .step .select .down {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  color: var(--color-text-primary);
  pointer-events: none;
  z-index: 1;
}
.reg-form .step .select select, .registration-form .step .select select {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  z-index: 3;
  font-size: 18px;
  -webkit-appearance: none;
  appearance: none;
}
.reg-form .step .select:hover, .registration-form .step .select:hover {
  background: #e8e8e8;
}
.reg-form .step .select:focus-within, .registration-form .step .select:focus-within {
  outline: 2px solid var(--color-text-primary);
  outline-offset: 2px;
}
.reg-form .step .password-field, .registration-form .step .password-field {
  position: relative;
  width: 90vw;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .reg-form .step .password-field, .registration-form .step .password-field {
    width: min(90vw, 560px);
    max-width: 100%;
  }
}
.reg-form .step .password-field input, .registration-form .step .password-field input {
  width: 100% !important;
  padding-right: 50px;
  margin: 0 !important;
}
.reg-form .step .input-wrapper, .registration-form .step .input-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.reg-form .step .input-wrapper input.form-input, .registration-form .step .input-wrapper input.form-input {
  width: 90vw;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .reg-form .step .input-wrapper input.form-input, .registration-form .step .input-wrapper input.form-input {
    width: min(90vw, 560px);
    max-width: 100%;
  }
}
.reg-form .step .input-wrapper .password-wrapper, .registration-form .step .input-wrapper .password-wrapper {
  position: relative;
  width: 90vw;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .reg-form .step .input-wrapper .password-wrapper, .registration-form .step .input-wrapper .password-wrapper {
    width: min(90vw, 560px);
    max-width: 100%;
  }
}
.reg-form .step .input-wrapper .password-wrapper input.form-input, .registration-form .step .input-wrapper .password-wrapper input.form-input {
  width: 100%;
  margin: 0;
  padding-right: 56px;
}
.reg-form .step .input-wrapper .password-wrapper .btn-toggle-password, .registration-form .step .input-wrapper .password-wrapper .btn-toggle-password {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-tertiary);
  transition: color var(--transition-fast);
  z-index: 2;
}
.reg-form .step .input-wrapper .password-wrapper .btn-toggle-password:hover, .registration-form .step .input-wrapper .password-wrapper .btn-toggle-password:hover {
  color: var(--color-text-primary);
}
.reg-form .step .input-wrapper .password-wrapper .btn-toggle-password:focus, .registration-form .step .input-wrapper .password-wrapper .btn-toggle-password:focus {
  outline: 2px solid var(--color-brand);
  outline-offset: 2px;
  border-radius: 4px;
}
.reg-form .step .input-wrapper .password-wrapper .btn-toggle-password:active, .registration-form .step .input-wrapper .password-wrapper .btn-toggle-password:active {
  color: var(--color-brand);
}
.reg-form .step .input-wrapper .password-wrapper .btn-toggle-password i, .registration-form .step .input-wrapper .password-wrapper .btn-toggle-password i {
  font-size: 18px;
  pointer-events: none;
}
.reg-form .step .tos-text, .registration-form .step .tos-text {
  width: 90vw;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.4;
  color: var(--color-text-tertiary);
  text-align: left;
  padding: 0;
}
@media (min-width: 1024px) {
  .reg-form .step .tos-text, .registration-form .step .tos-text {
    width: min(90vw, 560px);
    max-width: 100%;
  }
}
.reg-form .step .tos-text .tos-link, .registration-form .step .tos-text .tos-link {
  color: var(--color-text-primary);
  font-weight: 600;
  text-decoration: underline;
  cursor: pointer;
}
.reg-form .step .tos-text .tos-link:hover, .registration-form .step .tos-text .tos-link:hover {
  color: var(--color-brand);
}

.btn, .save-step {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-outfit);
  font-weight: 700;
  font-size: 20px;
  height: 55px;
  border-radius: var(--radius-lg);
  border: none;
  cursor: pointer;
  transition: var(--transition-medium);
  touch-action: manipulation;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
  user-select: none;
  -webkit-user-select: none;
}

.btn--primary, .save-step {
  width: 90vw;
  margin: 0 auto;
  border-radius: 20px;
  color: #fff;
  background: var(--color-text-primary);
  box-shadow: var(--shadow-medium);
  position: relative;
  z-index: 3;
}
.btn--primary:disabled, .save-step:disabled {
  background: #e0e0e0;
  color: var(--color-text-tertiary);
  cursor: not-allowed;
  pointer-events: none;
}
.btn--primary:hover:not(:disabled), .save-step:hover:not(:disabled) {
  transform: scale(1.02);
}
.btn--primary .next-text, .save-step .next-text {
  margin-right: 8px;
}
.btn--primary i, .save-step i {
  font-size: 21px;
  margin-right: 8px;
}
@media (min-width: 1024px) {
  .btn--primary, .save-step {
    width: min(90vw, 560px);
    max-width: 100%;
  }
}

.save-step {
  z-index: 1002 !important;
}

.toast, .error {
  position: fixed;
  top: calc(var(--safe-area-inset-top) + 10px);
  left: 16px;
  right: 16px;
  transform: translateY(-100%);
  max-width: 90vw;
  padding: 12px 16px;
  border-radius: 18px 50px 18px 18px;
  padding-top: 8px;
  padding-bottom: 20px;
  background: var(--color-brand-secondary);
  color: #fff;
  box-shadow: 0 8px 24px rgba(255, 123, 123, 0.25);
  display: block;
  z-index: 2000000;
  font-size: 18px;
  will-change: transform;
  isolation: isolate;
  text-align: left;
  line-height: 1;
  transition: transform 0.3s ease-in-out;
}
.toast.show, .show.error {
  transform: translateY(0);
}
.toast i, .error i {
  font-size: 30px;
  margin-top: 3px;
  margin-bottom: 8px;
}
.toast .toast__title, .error .toast__title, .error .error-content .error-title {
  font-weight: bold;
  font-size: 24px;
  line-height: 1;
  text-wrap: pretty;
  max-width: 70%;
  margin-bottom: 8px;
}
.toast .toast__message, .error .toast__message, .error .error-content .error-message {
  font-size: 18px;
  opacity: 0.9;
  text-wrap: pretty;
  font-weight: 400;
}
.toast .toast__handle, .error .toast__handle, .error .drag-handle {
  position: absolute;
  bottom: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 4px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 2px;
}

.error .error-content {
  flex: 1;
}
.error .error-content .error-message .error-link {
  color: #fff;
  text-decoration: underline;
  font-weight: 600;
  margin-top: 8px;
  display: inline-block;
  transition: opacity 0.2s;
}
.error .error-content .error-message .error-link:hover {
  opacity: 0.8;
}
.chips, .email-suggestion-container {
  display: flex;
  max-width: 90vw;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-bottom: 0px;
  transition: margin-bottom 0.25s ease-in-out;
  gap: 8px;
  width: 100%;
  box-sizing: border-box;
  overflow-x: hidden;
}
@media (min-width: 1024px) {
  .chips, .email-suggestion-container {
    max-width: min(90vw, 560px);
  }
}
.chips .chip, .email-suggestion-container .chip, .email-suggestion-container .suggestion {
  padding: 0px;
  height: 0px;
  border-radius: 30px;
  background: #F5586D;
  color: #fff;
  border: none;
  cursor: pointer;
  transition: height 0.25s ease-in-out, padding 0.25s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  overflow: hidden;
  font-family: var(--font-outfit);
}
.chips .chip.chip--expanded, .email-suggestion-container .chip.chip--expanded, .email-suggestion-container .chip--expanded.suggestion, .email-suggestion-container .suggestion.show {
  height: 40px;
  padding: 0 16px;
}

.email-suggestions {
  display: flex;
  max-width: 90vw;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-bottom: 0px;
  transition: margin-bottom 0.25s ease-in-out;
  gap: 8px;
  width: 100%;
  box-sizing: border-box;
  overflow-x: hidden;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .email-suggestions {
    max-width: min(90vw, 560px);
  }
}

.email-suggestion {
  padding: 0px;
  height: 0px;
  border-radius: 30px;
  background: #F5586D;
  color: #fff;
  border: none;
  cursor: pointer;
  transition: height 0.25s ease-in-out, padding 0.25s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  overflow: hidden;
  font-family: var(--font-outfit);
}
.email-suggestion.show {
  height: 40px;
  padding: 0 16px;
}

.option-container {
  width: 100%;
  max-width: 90vw;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow-y: auto;
  max-height: 60vh;
}
@media (min-width: 1024px) {
  .option-container {
    max-width: min(90vw, 560px);
  }
}
.option-container .option {
  background: #f1f1f1;
  border-radius: 12px;
  color: var(--color-text-secondary);
  padding: 14px 16px;
  position: relative;
  width: 100%;
  min-height: 48px;
  height: auto;
  display: flex;
  align-items: center;
  font-family: var(--font-outfit);
  font-size: 16px;
  transition: background 0.25s ease-in-out;
  border: none;
  cursor: pointer;
}
.option-container .option .option-text {
  flex: 1;
  padding-right: 40px;
  word-break: break-word;
  white-space: normal;
  text-align: left;
  line-height: 1.3;
}
.option-container .option .option-selected {
  display: none;
  position: absolute;
  right: 12px;
  height: 24px;
  width: 24px;
  border-radius: 50%;
  background: #fff;
  justify-content: center;
  align-items: center;
}
.option-container .option .option-selected i {
  color: #F5586D;
  font-size: 16px;
}
.option-container .option.selected {
  background: var(--color-text-primary);
  color: #fff;
}
.option-container .option.selected .option-text {
  font-weight: bold;
  color: #fff;
}
.option-container .option.selected .option-selected {
  display: flex;
}
.option-container .option:hover {
  background: #e8e8e8;
}
.option-container .option:hover.selected {
  background: var(--color-text-primary);
}

.info-row, .secondary-information-container {
  width: 90vw;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 4px 0;
}
@media (min-width: 1024px) {
  .info-row, .secondary-information-container {
    width: min(90vw, 560px);
  }
}
.info-row i, .secondary-information-container i {
  font-size: 20px;
  color: var(--color-text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 30px;
  flex-shrink: 0;
}
.info-row .info-row__text, .secondary-information-container .info-row__text, .secondary-information-container .txt {
  color: var(--color-text-tertiary);
  font-size: 18px;
  line-height: 1.4;
  margin-top: 2px;
  font-family: var(--font-outfit);
  min-width: 90%;
}

.info-row-mini {
  display: flex;
  gap: 8px;
  margin-top: 8px;
  margin-bottom: 16px;
  font-size: 14px;
}
.info-row-mini i {
  font-size: 16px;
  color: var(--color-text-primary);
  flex-shrink: 0;
}
.info-row-mini .info-row__text, .info-row-mini .secondary-information-container .txt, .secondary-information-container .info-row-mini .txt {
  font-size: 14px;
  line-height: 1.3;
  color: var(--color-text-tertiary);
}

.container {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 100%;
  display: contents;
}

.app-bg.bg-step1 {
  background-image: url("/images/jumpy/bg-couple.jpg");
}
@media screen and (min-width: 720px) {
  .app-bg.bg-step1 {
    background-image: url("/images/jumpy/bg-grid.jpg");
  }
}
@media screen and (min-width: 1000px) {
  .app-bg.bg-step1 {
    background-size: contain;
  }
}
@media screen and (min-width: 0) {
  .app-bg.bg-step2 {
    background-image: none;
  }
}
@media screen and (min-width: 720px) {
  .app-bg.bg-step2 {
    background-image: url("/images/jumpy/bg-couple-2.jpg");
    background-size: cover;
  }
}
@media screen and (min-width: 0) {
  .app-bg.bg-step3 {
    background-image: none;
  }
}
@media screen and (min-width: 720px) {
  .app-bg.bg-step3 {
    background-image: url("/images/jumpy/bg-couple-3.jpg");
    background-size: cover;
  }
}
@media screen and (min-width: 0) {
  .app-bg.bg-step4 {
    background-image: none;
  }
}
@media screen and (min-width: 720px) {
  .app-bg.bg-step4 {
    background-image: url("/images/jumpy/bg-couple-4.jpg");
    background-size: cover;
  }
}
@media screen and (min-width: 0) {
  .app-bg.bg-step5 {
    background-image: none;
  }
}
@media screen and (min-width: 720px) {
  .app-bg.bg-step5 {
    background-image: url("/images/jumpy/bg-couple-5.jpg");
    background-size: cover;
  }
}
@media screen and (min-width: 0) {
  .app-bg.bg-step6 {
    background-image: none;
  }
}
@media screen and (min-width: 720px) {
  .app-bg.bg-step6 {
    background-image: url("/images/jumpy/bg-couple-6.jpg");
    background-size: cover;
  }
}
@media screen and (min-width: 0) {
  .app-bg.bg-step7 {
    background-image: none;
  }
}
@media screen and (min-width: 720px) {
  .app-bg.bg-step7 {
    background-image: url("/images/jumpy/bg-couple-7.jpg");
    background-size: cover;
  }
}
@media screen and (min-width: 0) {
  .app-bg.bg-step8 {
    background-image: none;
  }
}
@media screen and (min-width: 720px) {
  .app-bg.bg-step8 {
    background-image: url("/images/jumpy/bg-couple-8.jpg");
    background-size: cover;
  }
}
@media screen and (min-width: 0) {
  .app-bg.bg-step9 {
    background-image: none;
  }
}
@media screen and (min-width: 720px) {
  .app-bg.bg-step9 {
    background-image: url("/images/jumpy/bg-couple-9.jpg");
    background-size: cover;
  }
}
@media screen and (min-width: 0) {
  .app-bg.bg-step10 {
    background-image: none;
  }
}
@media screen and (min-width: 720px) {
  .app-bg.bg-step10 {
    background-image: url("/images/jumpy/bg-couple-8.jpg");
    background-size: cover;
  }
}
@media screen and (min-width: 0) {
  .app-bg.bg-step11 {
    background-image: none;
  }
}
@media screen and (min-width: 720px) {
  .app-bg.bg-step11 {
    background-image: url("/images/jumpy/bg-couple-step-11.jpg");
    background-size: cover;
  }
}

[ng-cloak] {
  display: none !important;
}

.ng-enter, .ng-leave {
  transition: none;
}

::-webkit-scrollbar {
  width: 0;
}

.jumpy-launch {
  font-family: var(--font-outfit);
  background: #fff;
  overflow-x: hidden;
  min-height: 100vh;
}
@media (min-width: 1920px) {
  .jumpy-launch {
    max-width: 1920px;
    margin: 0 auto;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.1);
  }
}
@media (max-width: 959px) {
  .jumpy-launch.mobile-splash-active {
    height: auto !important;
    min-height: 100vh;
    overflow-y: visible !important;
  }
}
.jumpy-launch .hero-section {
  --splash-progress: 0;
  --splash-content-progress: 0;
  position: relative;
  min-height: 600px;
  max-height: 800px;
  background-image: url("/images/jumpy/hero-bg.png");
  background-size: cover;
  background-position: center;
  overflow: hidden;
  padding-top: 64px;
  max-width: 100vw;
  margin: 0 auto;
}
@media (min-width: 1600px) {
  .jumpy-launch .hero-section {
    max-height: 900px;
  }
}
@media (max-width: 959px) {
  .jumpy-launch .hero-section.mobile-splash-active {
    --hero-nav-h: 84px;
    --splash-scroll-distance: 280px;
    min-height: calc(100vh + var(--splash-scroll-distance));
    min-height: calc(100dvh + var(--splash-scroll-distance));
    max-height: none;
    padding-top: 0;
    overflow-x: hidden;
    overflow-y: visible;
  }
  .jumpy-launch .hero-section.mobile-splash-active::before, .jumpy-launch .hero-section.mobile-splash-active::after {
    display: none;
  }
  .jumpy-launch .hero-section.mobile-splash-active .hero-splash-stage {
    position: sticky;
    top: var(--hero-nav-h);
    z-index: 10;
    height: calc(100vh - var(--hero-nav-h));
    height: calc(100dvh - var(--hero-nav-h));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    box-sizing: border-box;
    max-width: 100vw;
  }
  .jumpy-launch .hero-section.mobile-splash-active .hero-splash-clip {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 20;
  }
  .jumpy-launch .hero-section.mobile-splash-active .hero-app-preview {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    transform-origin: top left;
    border-radius: calc(24px * var(--splash-progress));
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
    will-change: transform;
  }
  .jumpy-launch .hero-section.mobile-splash-active .hero-app-preview__img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
  }
  .jumpy-launch .hero-section.mobile-splash-active .hero-content {
    position: relative;
    z-index: 15;
    padding: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .jumpy-launch .hero-section.mobile-splash-active .hero-card--white {
    opacity: var(--splash-progress);
    transition: none;
    margin: 0 auto;
    max-width: 420px;
    width: 100%;
    box-sizing: border-box;
    position: relative;
    z-index: 25;
  }
  .jumpy-launch .hero-section.mobile-splash-active .hero-card__splash-dock {
    width: clamp(200px, 64vw, 240px);
    aspect-ratio: 374/795;
    border-radius: 24px;
    margin: 0 auto 16px;
    background: transparent;
  }
  .jumpy-launch .hero-section.mobile-splash-active .hero-card--white > :not(.hero-card__splash-dock) {
    opacity: var(--splash-content-progress);
    transform: translateY(calc(18px * (1 - var(--splash-content-progress))));
    will-change: transform, opacity;
    transition: none;
  }
  .jumpy-launch .hero-section.mobile-splash-active.mobile-splash-static {
    --splash-scroll-distance: 0px;
  }
  .jumpy-launch .hero-section.mobile-splash-active .hero-testimonial,
  .jumpy-launch .hero-section.mobile-splash-active .hero-overlay-text {
    display: none !important;
  }
}
@media (prefers-reduced-motion: reduce) {
  .jumpy-launch .hero-section {
    --splash-progress: 1 !important;
  }
}
.jumpy-launch .hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(29, 29, 29, 0.7) 0%, rgba(29, 29, 29, 0.5) 50%, transparent 100%);
  z-index: 1;
}
.jumpy-launch .hero-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, transparent 50%);
  z-index: 1;
}
.jumpy-launch .hero-section .hero-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(29, 29, 29, 0.95);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  min-height: 60px;
}
@media (min-width: 768px) {
  .jumpy-launch .hero-section .hero-nav {
    padding: 12px 40px;
    min-height: 64px;
  }
}
@media (min-width: 1400px) {
  .jumpy-launch .hero-section .hero-nav {
    padding: 12px 80px;
  }
}
.jumpy-launch .hero-section .hero-nav__logo {
  z-index: 10;
}
.jumpy-launch .hero-section .hero-nav__logo .logo-img {
  height: 40px;
  width: auto;
}
@media (min-width: 768px) {
  .jumpy-launch .hero-section .hero-nav__logo .logo-img {
    height: 48px;
  }
}
.jumpy-launch .hero-section .hero-nav__menu {
  display: none;
}
.jumpy-launch .hero-section .hero-nav__menu.active {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 60px;
  left: 0;
  right: 0;
  background: rgba(29, 29, 29, 0.98);
  backdrop-filter: blur(12px);
  padding: 20px 16px;
  gap: 16px;
  z-index: 40;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
@media (min-width: 768px) {
  .jumpy-launch .hero-section .hero-nav__menu {
    display: flex;
    gap: 24px;
    align-items: center;
    margin-left: auto;
    margin-right: 16px;
  }
  .jumpy-launch .hero-section .hero-nav__menu .nav-link:last-child {
    display: none;
  }
}
.jumpy-launch .hero-section .hero-nav__menu .nav-link {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: underline;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: color 0.2s;
}
.jumpy-launch .hero-section .hero-nav__menu .nav-link:hover {
  color: #fff;
}
.jumpy-launch .hero-section .hero-nav__buttons {
  display: none;
}
@media (min-width: 768px) {
  .jumpy-launch .hero-section .hero-nav__buttons {
    display: flex;
    align-items: center;
    gap: 12px;
  }
}
.jumpy-launch .hero-section .hero-nav__login {
  display: none;
}
@media (min-width: 768px) {
  .jumpy-launch .hero-section .hero-nav__login {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: #000;
    border: none;
    border-radius: 50px;
    padding: 8px 24px;
    min-height: 44px;
    font-family: var(--font-outfit);
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s;
  }
  .jumpy-launch .hero-section .hero-nav__login i {
    font-size: 18px;
  }
  .jumpy-launch .hero-section .hero-nav__login:hover {
    transform: scale(1.05);
    background: #f5f5f5;
  }
}
.jumpy-launch .hero-section .hero-nav__cta {
  display: none;
}
@media (min-width: 768px) {
  .jumpy-launch .hero-section .hero-nav__cta {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #000;
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 8px 24px;
    min-height: 44px;
    font-family: var(--font-outfit);
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
  }
  .jumpy-launch .hero-section .hero-nav__cta i {
    font-size: 18px;
  }
  .jumpy-launch .hero-section .hero-nav__cta:hover {
    transform: scale(1.05);
    background: #1a1a1a;
  }
}
.jumpy-launch .hero-section .hero-nav__mobile-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
@media (min-width: 768px) {
  .jumpy-launch .hero-section .hero-nav__mobile-actions {
    display: none;
  }
}
.jumpy-launch .hero-section .hero-nav__download-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: none;
  border-radius: 50px;
  width: 48px;
  height: 48px;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}
.jumpy-launch .hero-section .hero-nav__download-btn i {
  color: #000;
  font-size: 20px;
}
.jumpy-launch .hero-section .hero-nav__download-btn:hover {
  transform: scale(1.05);
  background: #f5f5f5;
}
.jumpy-launch .hero-section .hero-nav__mobile-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: none;
  border-radius: 50px;
  width: 48px;
  height: 48px;
  padding: 0;
  cursor: pointer;
  transition: all 0.2s;
}
.jumpy-launch .hero-section .hero-nav__mobile-toggle:hover {
  transform: scale(1.05);
  background: #f5f5f5;
}
.jumpy-launch .hero-section .hero-nav__mobile-toggle .hamburger {
  display: block;
  width: 20px;
  height: 2px;
  background: #000;
  position: relative;
}
.jumpy-launch .hero-section .hero-nav__mobile-toggle .hamburger::before, .jumpy-launch .hero-section .hero-nav__mobile-toggle .hamburger::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 2px;
  background: #000;
  left: 0;
}
.jumpy-launch .hero-section .hero-nav__mobile-toggle .hamburger::before {
  top: -6px;
}
.jumpy-launch .hero-section .hero-nav__mobile-toggle .hamburger::after {
  bottom: -6px;
}
.jumpy-launch .hero-section .hero-content {
  position: relative;
  z-index: 10;
  max-width: 1400px;
  margin: 0 auto;
  padding: 32px 20px;
}
@media (min-width: 960px) {
  .jumpy-launch .hero-section .hero-content {
    display: grid;
    grid-template-columns: 480px 400px;
    gap: 40px;
    align-items: start;
    padding: 48px 40px 32px;
    margin: 0 auto;
    justify-content: start;
  }
}
@media (min-width: 1400px) {
  .jumpy-launch .hero-section .hero-content {
    padding: 64px 80px 48px;
    gap: 60px;
  }
}
.jumpy-launch .hero-section .hero-card--white {
  background: #fff;
  border-radius: 32px 96px 96px 32px;
  padding: 24px 40px 24px 28px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  max-width: 420px;
  margin: 0 auto 24px;
  position: relative;
  z-index: 15;
}
@media (min-width: 960px) {
  .jumpy-launch .hero-section .hero-card--white {
    padding: 24px 40px 24px 28px;
    margin: 0 0 24px 0;
  }
}
.jumpy-launch .hero-section .hero-card--white .hero-card__title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 16px;
  color: #000;
}
@media (min-width: 768px) {
  .jumpy-launch .hero-section .hero-card--white .hero-card__title {
    font-size: 56px;
  }
}
.jumpy-launch .hero-section .hero-card--white .hero-card__title .text-brand-italic {
  font-family: var(--font-embury);
  font-style: italic;
  font-weight: 700;
  color: var(--color-brand-secondary);
}
.jumpy-launch .hero-section .hero-card--white .hero-card__tagline {
  font-size: 18px;
  font-weight: 600;
  color: #1D1D1D;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
@media (min-width: 768px) {
  .jumpy-launch .hero-section .hero-card--white .hero-card__tagline {
    font-size: 22px;
  }
}
.jumpy-launch .hero-section .hero-card--white .hero-card__text {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 8px;
  color: #4a4a4a;
}
@media (min-width: 768px) {
  .jumpy-launch .hero-section .hero-card--white .hero-card__text {
    font-size: 20px;
  }
}
.jumpy-launch .hero-section .hero-card--white .hero-card__text--muted {
  color: #6a6a6a;
}
.jumpy-launch .hero-section .hero-card--white .hero-card__text .text-underline {
  text-decoration: underline;
  font-weight: 700;
  color: #000;
}
.jumpy-launch .hero-section .hero-card--white .hero-card__btn {
  margin-top: 16px;
  width: auto;
  max-width: 85%;
  background: #000;
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 12px 48px;
  font-family: var(--font-outfit);
  font-size: 24px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: all 0.2s;
  white-space: nowrap;
}
.jumpy-launch .hero-section .hero-card--white .hero-card__btn .btn-arrow {
  background: #fff;
  color: #000;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.jumpy-launch .hero-section .hero-card--white .hero-card__btn:hover {
  transform: scale(1.02);
  background: #1a1a1a;
}
.jumpy-launch .hero-section .hero-card--white .hero-card__store-badges {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 20px;
  width: 100%;
  text-align: center;
}
.jumpy-launch .hero-section .hero-card--white .hero-card__store-badges .store-badges__label {
  font-size: 11px;
  color: var(--color-text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.jumpy-launch .hero-section .hero-card--white .hero-card__store-badges .store-badges__links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.jumpy-launch .hero-section .hero-card--white .hero-card__store-badges .store-badge {
  display: block;
  height: 40px;
  transition: opacity 0.2s ease;
}
.jumpy-launch .hero-section .hero-card--white .hero-card__store-badges .store-badge img {
  height: 100%;
  width: auto;
}
.jumpy-launch .hero-section .hero-card--white .hero-card__store-badges .store-badge:hover {
  opacity: 0.7;
}
.jumpy-launch .hero-section .hero-card--white .hero-card__social-proof {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  margin-top: 16px;
  margin-bottom: 4px;
}
@media (max-width: 340px) {
  .jumpy-launch .hero-section .hero-card--white .hero-card__social-proof {
    flex-direction: column;
    gap: 4px;
  }
}
.jumpy-launch .hero-section .hero-card--white .social-proof__rating {
  display: flex;
  align-items: center;
  gap: 6px;
}
.jumpy-launch .hero-section .hero-card--white .social-proof__stars {
  display: flex;
  align-items: center;
}
.jumpy-launch .hero-section .hero-card--white .social-proof__star {
  font-size: 16px;
  color: #F59E0B;
}
@media (min-width: 768px) {
  .jumpy-launch .hero-section .hero-card--white .social-proof__star {
    font-size: 18px;
  }
}
.jumpy-launch .hero-section .hero-card--white .social-proof__rating-value {
  font-family: var(--font-outfit);
  font-size: 14px;
  font-weight: 600;
  color: #374151;
  letter-spacing: -0.01em;
}
@media (min-width: 768px) {
  .jumpy-launch .hero-section .hero-card--white .social-proof__rating-value {
    font-size: 15px;
  }
}
.jumpy-launch .hero-section .hero-card--white .social-proof__divider {
  width: 1px;
  height: 16px;
  background-color: #D1D5DB;
}
@media (max-width: 340px) {
  .jumpy-launch .hero-section .hero-card--white .social-proof__divider {
    display: none;
  }
}
.jumpy-launch .hero-section .hero-card--white .social-proof__downloads {
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.jumpy-launch .hero-section .hero-card--white .social-proof__downloads-value {
  font-family: var(--font-outfit);
  font-size: 14px;
  font-weight: 600;
  color: #374151;
}
@media (min-width: 768px) {
  .jumpy-launch .hero-section .hero-card--white .social-proof__downloads-value {
    font-size: 15px;
  }
}
.jumpy-launch .hero-section .hero-card--white .social-proof__downloads-label {
  font-family: var(--font-outfit);
  font-size: 13px;
  font-weight: 400;
  color: #6B7280;
}
@media (min-width: 768px) {
  .jumpy-launch .hero-section .hero-card--white .social-proof__downloads-label {
    font-size: 14px;
  }
}
.jumpy-launch .hero-section .hero-card--white .hero-card__trust-signals {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 8px 16px;
  margin-top: 16px;
  padding: 0;
  list-style: none;
}
@media (max-width: 480px) {
  .jumpy-launch .hero-section .hero-card--white .hero-card__trust-signals {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
}
.jumpy-launch .hero-section .hero-card--white .trust-signal {
  display: flex;
  align-items: center;
  gap: 6px;
}
.jumpy-launch .hero-section .hero-card--white .trust-signal__icon {
  flex-shrink: 0;
  font-size: 14px;
  color: #10B981;
}
@media (min-width: 768px) {
  .jumpy-launch .hero-section .hero-card--white .trust-signal__icon {
    font-size: 16px;
  }
}
.jumpy-launch .hero-section .hero-card--white .trust-signal__text {
  font-family: var(--font-outfit);
  font-size: 13px;
  font-weight: 400;
  color: #6B7280;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .jumpy-launch .hero-section .hero-card--white .trust-signal__text {
    font-size: 14px;
  }
}
.jumpy-launch .hero-section .hero-app-preview {
  display: none;
}
@media (min-width: 960px) {
  .jumpy-launch .hero-section .hero-app-preview {
    display: block;
    position: absolute;
    left: 360px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    pointer-events: none;
  }
  .jumpy-launch .hero-section .hero-app-preview__img {
    width: auto;
    height: 420px;
    filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.45));
    border-radius: 24px;
    transform: rotate(6deg);
  }
}
@media (min-width: 1200px) {
  .jumpy-launch .hero-section .hero-app-preview {
    left: 380px;
  }
  .jumpy-launch .hero-section .hero-app-preview__img {
    height: 480px;
    border-radius: 28px;
  }
}
@media (min-width: 1400px) {
  .jumpy-launch .hero-section .hero-app-preview {
    left: 420px;
  }
  .jumpy-launch .hero-section .hero-app-preview__img {
    height: 540px;
    border-radius: 32px;
  }
}
@media (min-width: 1600px) {
  .jumpy-launch .hero-section .hero-app-preview {
    left: calc(50% - 700px + 420px);
  }
  .jumpy-launch .hero-section .hero-app-preview__img {
    height: 580px;
  }
}
.jumpy-launch .hero-section .hero-testimonial {
  display: none;
}
@media (min-width: 960px) {
  .jumpy-launch .hero-section .hero-testimonial {
    display: block;
    position: absolute;
    right: max(40px, 50% - 660px);
    top: 100px;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(48px);
    border-radius: 16px;
    padding: 12px;
    max-width: 360px;
    margin: 0;
    color: #fff;
    z-index: 10;
  }
}
.jumpy-launch .hero-section .hero-testimonial .quote-icon {
  font-size: 52px;
  line-height: 1;
  color: #fff;
}
.jumpy-launch .hero-section .hero-testimonial .quote-icon--open {
  margin-bottom: 4px;
}
.jumpy-launch .hero-section .hero-testimonial .quote-icon--close {
  text-align: right;
  margin-top: 4px;
}
.jumpy-launch .hero-section .hero-testimonial .testimonial-text {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 4px;
}
@media (min-width: 768px) {
  .jumpy-launch .hero-section .hero-testimonial .testimonial-text {
    font-size: 20px;
  }
}
.jumpy-launch .hero-section .hero-testimonial .testimonial-author {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  margin-top: 8px;
}
@media (min-width: 768px) {
  .jumpy-launch .hero-section .hero-testimonial .testimonial-author {
    font-size: 20px;
  }
}
.jumpy-launch .hero-section .hero-testimonial .testimonial-author .author-location {
  font-size: 14px;
  font-weight: 400;
  opacity: 0.7;
}
@media (min-width: 768px) {
  .jumpy-launch .hero-section .hero-testimonial .testimonial-author .author-location {
    font-size: 18px;
  }
}
.jumpy-launch .hero-section .hero-overlay-text {
  display: none;
}
@media (min-width: 960px) {
  .jumpy-launch .hero-section .hero-overlay-text {
    display: block;
    position: absolute;
    bottom: 32px;
    right: max(40px, 50% - 660px);
    z-index: 10;
    text-align: right;
    color: #fff;
    max-width: 600px;
  }
  .jumpy-launch .hero-section .hero-overlay-text .overlay-headline {
    font-size: 56px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 8px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
  }
}
@media (min-width: 960px) and (min-width: 1200px) {
  .jumpy-launch .hero-section .hero-overlay-text .overlay-headline {
    font-size: 72px;
  }
}
@media (min-width: 960px) {
  .jumpy-launch .hero-section .hero-overlay-text .overlay-headline .strikethrough {
    text-decoration: line-through;
  }
  .jumpy-launch .hero-section .hero-overlay-text .overlay-headline .text-brand-italic-lg {
    font-family: var(--font-embury);
    font-style: italic;
    font-weight: 700;
    color: var(--color-brand-secondary);
  }
  .jumpy-launch .hero-section .hero-overlay-text .overlay-subtitle {
    font-size: 22px;
    font-weight: 400;
  }
}
@media (min-width: 960px) and (min-width: 1200px) {
  .jumpy-launch .hero-section .hero-overlay-text .overlay-subtitle {
    font-size: 24px;
  }
}
.jumpy-launch .app-download-section {
  background: #fff;
  padding: 32px 16px 16px;
  text-align: center;
}
@media (min-width: 768px) {
  .jumpy-launch .app-download-section {
    display: none;
  }
}
.jumpy-launch .app-download-section .app-download-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 20px;
  line-height: 1.2;
}
.jumpy-launch .app-download-section .app-download-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  justify-content: center;
}
@media (min-width: 480px) {
  .jumpy-launch .app-download-section .app-download-buttons {
    flex-direction: row;
    gap: 16px;
  }
}
.jumpy-launch .app-download-section .app-store-badge {
  display: inline-block;
  height: 48px;
  width: 140px;
  transition: transform 0.2s;
}
.jumpy-launch .app-download-section .app-store-badge img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}
.jumpy-launch .app-download-section .app-store-badge:hover {
  transform: scale(1.05);
}
.jumpy-launch .app-download-section .app-store-badge:last-child img {
  transform: scale(1.35);
}
.jumpy-launch .stats-section {
  background: #fff;
  padding: 24px 16px;
}
@media (max-width: 767px) {
  .jumpy-launch .stats-section {
    padding: 16px 16px 24px;
  }
}
@media (min-width: 768px) {
  .jumpy-launch .stats-section {
    padding: 32px 40px;
  }
}
@media (min-width: 1400px) {
  .jumpy-launch .stats-section {
    padding: 40px 80px;
  }
}
.jumpy-launch .stats-section .stats-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-wrap: nowrap;
  gap: 24px;
}
@media (max-width: 767px) {
  .jumpy-launch .stats-section .stats-container {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .jumpy-launch .stats-section .stats-container::-webkit-scrollbar {
    display: none;
  }
}
@media (min-width: 768px) {
  .jumpy-launch .stats-section .stats-container {
    justify-content: center;
  }
}
@media (min-width: 1400px) {
  .jumpy-launch .stats-section .stats-container {
    gap: 32px;
  }
}
.jumpy-launch .stats-section .stat-card {
  flex: 1 1 auto;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 32px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
}
@media (max-width: 767px) {
  .jumpy-launch .stats-section .stat-card {
    flex: 0 0 85%;
    scroll-snap-align: center;
    min-width: 280px;
  }
}
@media (min-width: 768px) {
  .jumpy-launch .stats-section .stat-card {
    min-width: 280px;
    max-width: 450px;
  }
}
.jumpy-launch .stats-section .stat-card .stat-value {
  font-size: 56px;
  font-weight: 800;
  line-height: 1;
  color: var(--color-text-primary);
}
@media (min-width: 768px) {
  .jumpy-launch .stats-section .stat-card .stat-value {
    font-size: 72px;
  }
}
.jumpy-launch .stats-section .stat-card .stat-label {
  font-size: 16px;
  line-height: 1.2;
  color: var(--color-text-secondary);
}
@media (min-width: 768px) {
  .jumpy-launch .stats-section .stat-card .stat-label {
    font-size: 22px;
  }
}
.jumpy-launch .stats-section .stat-card .stat-label .stat-emphasis {
  font-family: var(--font-embury);
  font-style: italic;
  font-weight: 700;
  color: var(--color-brand-secondary);
}
.jumpy-launch .stats-section .stat-card--accent .stat-value {
  color: var(--color-brand-secondary);
}
.jumpy-launch .stats-section .stat-card--qr {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  flex-direction: row;
  align-items: flex-start;
  width: auto;
  max-width: 500px;
  box-shadow: 0 1px 6px 0 rgba(0, 0, 0, 0.06), 0 2px 32px 0 rgba(0, 0, 0, 0.16);
  border: 2px solid #000;
  display: none;
}
@media (min-width: 1024px) {
  .jumpy-launch .stats-section .stat-card--qr {
    display: flex;
    flex-direction: row;
  }
}
.jumpy-launch .stats-section .stat-card--qr .qr-code {
  width: 168px;
  height: 168px;
  flex-shrink: 0;
  background: var(--color-background-primary);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 4px;
}
.jumpy-launch .stats-section .stat-card--qr .qr-code .qr-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.jumpy-launch .stats-section .stat-card--qr .qr-icon {
  position: absolute;
  top: 20px;
  right: 24px;
  width: auto;
  height: 32px;
  color: var(--color-brand-secondary);
}
.jumpy-launch .stats-section .stat-card--qr .qr-text {
  flex: 1;
  padding: 8px 16px 8px 8px;
  text-align: left;
}
.jumpy-launch .stats-section .stat-card--qr .qr-text .qr-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 12px;
  text-align: left;
}
@media (min-width: 768px) {
  .jumpy-launch .stats-section .stat-card--qr .qr-text .qr-title {
    font-size: 24px;
  }
}
.jumpy-launch .stats-section .stat-card--qr .qr-text .qr-description {
  font-size: 14px;
  line-height: 1.4;
  color: var(--color-text-secondary);
  text-align: left;
}
@media (min-width: 768px) {
  .jumpy-launch .stats-section .stat-card--qr .qr-text .qr-description {
    font-size: 18px;
  }
}
.jumpy-launch .features-section {
  background: var(--color-background-secondary);
  padding: 32px 16px;
}
@media (min-width: 768px) {
  .jumpy-launch .features-section {
    padding: 40px 40px;
  }
}
@media (min-width: 1400px) {
  .jumpy-launch .features-section {
    padding: 48px 80px;
  }
}
.jumpy-launch .features-section .features-grid {
  max-width: 1400px;
  margin: 0 auto;
}
@media (max-width: 639px) {
  .jumpy-launch .features-section .features-grid {
    display: flex;
    overflow-x: auto;
    overflow-y: visible;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 16px;
    padding: 8px 0;
  }
  .jumpy-launch .features-section .features-grid::-webkit-scrollbar {
    display: none;
  }
}
@media (min-width: 640px) {
  .jumpy-launch .features-section .features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    padding: 8px 0;
  }
}
@media (min-width: 1024px) {
  .jumpy-launch .features-section .features-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
}
.jumpy-launch .features-section .feature-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}
@media (max-width: 639px) {
  .jumpy-launch .features-section .feature-card {
    flex: 0 0 85%;
    scroll-snap-align: center;
    min-width: 280px;
  }
}
.jumpy-launch .features-section .feature-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}
.jumpy-launch .features-section .feature-card .feature-image {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 12px;
  margin: 8px 8px 0 8px;
}
.jumpy-launch .features-section .feature-card .feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.jumpy-launch .features-section .feature-card .feature-content {
  padding: 12px 16px 16px 16px;
  text-align: left;
}
.jumpy-launch .features-section .feature-card .feature-content .feature-title {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 8px;
  color: var(--color-text-primary);
  text-align: left;
}
.jumpy-launch .features-section .feature-card .feature-content .feature-title .text-brand-italic {
  font-family: var(--font-embury);
  font-style: italic;
  font-weight: 700;
  color: var(--color-brand-secondary);
}
.jumpy-launch .features-section .feature-card .feature-content .feature-desc {
  font-size: 15px;
  line-height: 1.4;
  color: var(--color-text-secondary);
  margin-bottom: 0;
  text-align: left;
}
@media (min-width: 768px) {
  .jumpy-launch .features-section .feature-card .feature-content .feature-desc {
    font-size: 18px;
  }
}
.jumpy-launch .features-section .feature-card .feature-icon {
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: auto;
  height: 32px;
  color: var(--color-text-tertiary);
}
.jumpy-launch .features-section .features-cta {
  text-align: center;
  margin-top: 48px;
}
.jumpy-launch .content-section {
  background: var(--color-background-primary);
  padding: 32px 20px;
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid var(--color-border);
}
.jumpy-launch .content-section:first-of-type {
  border-top: none;
}
@media (min-width: 768px) {
  .jumpy-launch .content-section {
    padding: 32px 40px;
  }
}
@media (min-width: 1400px) {
  .jumpy-launch .content-section {
    padding: 32px 80px;
    max-width: 1400px;
  }
}
.jumpy-launch .content-section .content-heading {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
  color: var(--color-text-primary);
}
@media (min-width: 768px) {
  .jumpy-launch .content-section .content-heading {
    font-size: 44px;
  }
}
.jumpy-launch .content-section .content-text {
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-text-secondary);
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .jumpy-launch .content-section .content-text {
    font-size: 18px;
  }
}
.jumpy-launch .content-section .content-cta {
  text-align: center;
  margin-top: 32px;
}
.jumpy-launch .btn-cta {
  background: var(--color-text-primary);
  color: var(--color-background-primary);
  border: none;
  border-radius: 50px;
  padding: 24px 96px;
  font-family: var(--font-outfit);
  font-size: 24px;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.2s;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  white-space: nowrap;
}
.jumpy-launch .btn-cta .btn-arrow {
  margin-left: 4px;
}
.jumpy-launch .btn-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  background: var(--color-text-primary);
  opacity: 0.9;
}

.jumpy-launch .page-footer {
  background: hsl(0, 0%, 0%) !important;
  color: rgba(255, 255, 255, 0.7) !important;
  padding: 24px 16px !important;
  position: relative !important;
}
@media (min-width: 768px) {
  .jumpy-launch .page-footer {
    padding: 32px 24px !important;
  }
}
.jumpy-launch .page-footer .footer-container {
  max-width: 1600px !important;
  margin: 0 auto !important;
  padding: 0 16px !important;
}
.jumpy-launch .page-footer .footer-links {
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 16px 24px !important;
  margin-bottom: 20px !important;
}
@media (max-width: 640px) {
  .jumpy-launch .page-footer .footer-links {
    gap: 12px 16px !important;
  }
}
.jumpy-launch .page-footer .footer-links a {
  color: rgba(255, 255, 255, 0.9) !important;
  text-decoration: underline !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  white-space: nowrap !important;
  transition: color 0.2s !important;
}
@media (min-width: 768px) {
  .jumpy-launch .page-footer .footer-links a {
    font-size: 18px !important;
  }
}
.jumpy-launch .page-footer .footer-links a:hover {
  color: #fff !important;
}
.jumpy-launch .page-footer .footer-legal {
  text-align: center !important;
  padding-top: 20px !important;
  border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
}
.jumpy-launch .page-footer .footer-legal p {
  font-size: 13px !important;
  line-height: 1.5 !important;
  color: rgba(255, 255, 255, 0.5) !important;
  max-width: 1200px !important;
  margin: 0 auto 8px !important;
}
.jumpy-launch .page-footer .footer-legal p:last-child {
  margin-bottom: 0 !important;
}
@media (min-width: 768px) {
  .jumpy-launch .page-footer .footer-legal p {
    font-size: 16px !important;
  }
}

.desktop-register {
  display: none !important;
}
@media (min-width: 768px) {
  .desktop-register {
    display: inline-flex !important;
  }
}

.mobile-download {
  display: inline-flex !important;
  gap: 10px;
  font-size: 18px !important;
  padding: 16px 40px !important;
}
.mobile-download i {
  font-size: 18px;
}
@media (min-width: 768px) {
  .mobile-download {
    display: none !important;
  }
}

@media (max-width: 959px) {
  html:has(.mobile-splash-active),
  html:has(.mobile-splash-active) body {
    height: auto !important;
    min-height: 100vh;
    min-height: 100dvh;
  }
}
.launch.jumpy-launch-old {
  width: 100%;
  background: var(--color-background-primary);
  position: relative;
  font-family: var(--font-outfit);
  overflow-x: hidden;
}
.launch.jumpy-launch-old .hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--color-background-primary);
}
.launch.jumpy-launch-old .hero-section__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("/images/jumpy/bg-couple.jpg");
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.launch.jumpy-launch-old .hero-section__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgba(255, 255, 255, 0.95) 100%);
}
.launch.jumpy-launch-old .top-nav {
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--spacing-5) var(--spacing-5);
  background: var(--color-text-primary);
}
.launch.jumpy-launch-old .top-nav__logo img {
  height: 32px;
  width: auto;
}
.launch.jumpy-launch-old .top-nav__links {
  display: none;
}
@media (min-width: 768px) {
  .launch.jumpy-launch-old .top-nav__links {
    display: flex;
    gap: var(--spacing-7);
    align-items: center;
  }
}
.launch.jumpy-launch-old .top-nav__links a {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  transition: var(--transition-fast);
}
.launch.jumpy-launch-old .top-nav__links a:hover {
  color: var(--color-brand);
}
.launch.jumpy-launch-old .top-nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: #fff;
  color: var(--color-text-primary);
  border-radius: var(--radius-lg);
  font-weight: 700;
}
.launch.jumpy-launch-old .top-nav__cta:hover {
  background: var(--color-brand);
  color: #fff;
}
.launch.jumpy-launch-old .top-nav__cta i {
  font-size: 18px;
}
.launch.jumpy-launch-old .hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-7);
  padding: var(--spacing-10) var(--spacing-5);
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}
@media (min-width: 1024px) {
  .launch.jumpy-launch-old .hero-content {
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-10);
    padding: 60px var(--spacing-10);
  }
}
.launch.jumpy-launch-old .hero-card {
  background: #fff;
  border-radius: 32px;
  padding: var(--spacing-10);
  box-shadow: var(--shadow-large);
}
.launch.jumpy-launch-old .hero-card__title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--color-text-primary);
  margin-bottom: var(--spacing-5);
}
@media (min-width: 768px) {
  .launch.jumpy-launch-old .hero-card__title {
    font-size: 56px;
  }
}
.launch.jumpy-launch-old .hero-card__emphasis {
  font-family: var(--font-embury);
  font-style: italic;
  color: var(--color-brand);
}
.launch.jumpy-launch-old .hero-card__subtitle {
  font-size: 18px;
  line-height: 1.5;
  color: var(--color-text-secondary);
  margin-bottom: var(--spacing-4);
}
.launch.jumpy-launch-old .hero-card__text {
  font-size: 18px;
  line-height: 1.5;
  color: var(--color-text-secondary);
  margin-bottom: var(--spacing-6);
}
.launch.jumpy-launch-old .hero-card__text strong {
  font-weight: 600;
  text-decoration: underline;
}
.launch.jumpy-launch-old .hero-card__cta {
  width: 100%;
  max-width: 100%;
}
@media (min-width: 768px) {
  .launch.jumpy-launch-old .hero-card__cta {
    width: auto;
    min-width: 200px;
  }
}
.launch.jumpy-launch-old .hero-card__store-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 8px;
  margin-top: var(--spacing-4);
}
.launch.jumpy-launch-old .hero-card__store-badges .store-badges__label {
  font-size: 10px;
  color: var(--color-text-tertiary);
  white-space: nowrap;
  flex-shrink: 0;
}
.launch.jumpy-launch-old .hero-card__store-badges .store-badges__links {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 4px;
}
.launch.jumpy-launch-old .hero-card__store-badges .store-badge {
  display: block;
  height: 24px;
  flex-shrink: 0;
  transition: opacity 0.2s ease;
}
.launch.jumpy-launch-old .hero-card__store-badges .store-badge img {
  height: 100%;
  width: auto;
  display: block;
}
.launch.jumpy-launch-old .hero-card__store-badges .store-badge:hover {
  opacity: 0.8;
}
.launch.jumpy-launch-old .testimonial-card {
  background: #fff;
  border-radius: 24px;
  padding: var(--spacing-7);
  box-shadow: var(--shadow-medium);
  position: relative;
}
.launch.jumpy-launch-old .testimonial-card__quote {
  font-size: 48px;
  color: var(--color-brand);
  line-height: 1;
  margin-bottom: var(--spacing-4);
}
.launch.jumpy-launch-old .testimonial-card__quote--close {
  text-align: right;
  margin-top: var(--spacing-4);
  margin-bottom: 0;
}
.launch.jumpy-launch-old .testimonial-card__text {
  font-size: 18px;
  line-height: 1.6;
  color: var(--color-text-primary);
  margin-bottom: var(--spacing-4);
}
.launch.jumpy-launch-old .testimonial-card__author {
  font-size: 18px;
  line-height: 1.4;
  color: var(--color-text-secondary);
  margin-top: var(--spacing-5);
}
.launch.jumpy-launch-old .testimonial-card__author strong {
  color: var(--color-text-primary);
  font-weight: 600;
}
.launch.jumpy-launch-old .hero-headline-overlay {
  position: relative;
  z-index: 2;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(20px);
  padding: var(--spacing-10) var(--spacing-5);
  text-align: center;
}
.launch.jumpy-launch-old .hero-headline-overlay__text {
  font-size: 48px;
  font-weight: 700;
  line-height: 0.95;
  color: #fff;
  margin-bottom: var(--spacing-5);
}
@media (min-width: 768px) {
  .launch.jumpy-launch-old .hero-headline-overlay__text {
    font-size: 72px;
  }
}
@media (min-width: 1024px) {
  .launch.jumpy-launch-old .hero-headline-overlay__text {
    font-size: 96px;
  }
}
.launch.jumpy-launch-old .hero-headline-overlay__emphasis {
  font-family: var(--font-embury);
  font-style: italic;
  color: var(--color-brand);
}
.launch.jumpy-launch-old .hero-headline-overlay__subtitle {
  font-size: 18px;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.9);
}
@media (min-width: 768px) {
  .launch.jumpy-launch-old .hero-headline-overlay__subtitle {
    font-size: 22px;
  }
}
.launch.jumpy-launch-old .stats-section {
  position: relative;
  z-index: 2;
  background: var(--color-background-primary);
  padding: var(--spacing-7) var(--spacing-5);
}
@media (min-width: 768px) {
  .launch.jumpy-launch-old .stats-section {
    padding: var(--spacing-10) var(--spacing-5);
  }
}
.launch.jumpy-launch-old .stats-section__inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--spacing-9);
  max-width: 1400px;
  margin: 0 auto;
}
.launch.jumpy-launch-old .stat {
  text-align: center;
}
.launch.jumpy-launch-old .stat__value {
  font-size: 56px;
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: 1;
  margin-bottom: var(--spacing-3);
}
@media (min-width: 768px) {
  .launch.jumpy-launch-old .stat__value {
    font-size: 64px;
  }
}
.launch.jumpy-launch-old .stat__label {
  font-size: 18px;
  line-height: 1.3;
  color: var(--color-text-secondary);
}
@media (min-width: 768px) {
  .launch.jumpy-launch-old .stat__label {
    font-size: 18px;
  }
}
.launch.jumpy-launch-old .stat__highlight {
  color: var(--color-brand);
  font-weight: 600;
  font-style: italic;
  font-family: var(--font-embury);
}
.launch.jumpy-launch-old .stat--qr {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-4);
}
.launch.jumpy-launch-old .stat--qr .qr-code {
  position: relative;
}
.launch.jumpy-launch-old .stat--qr .qr-code img {
  width: 100px;
  height: 100px;
  border-radius: var(--radius-md);
  border: 3px solid var(--color-border);
}
.launch.jumpy-launch-old .stat--qr .qr-code__icon {
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--color-text-primary);
  color: #fff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.launch.jumpy-launch-old .stat--qr .qr-text__brand {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: var(--spacing-2);
}
.launch.jumpy-launch-old .stat--qr .qr-text__instructions {
  font-size: 18px;
  line-height: 1.4;
  color: var(--color-text-secondary);
  max-width: 200px;
}
.launch.jumpy-launch-old .features-grid {
  position: relative;
  z-index: 2;
  background: var(--color-background-secondary);
  padding: var(--spacing-10) var(--spacing-5);
}
.launch.jumpy-launch-old .features-grid__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-7);
  max-width: 1200px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .launch.jumpy-launch-old .features-grid__inner {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-9);
  }
}
.launch.jumpy-launch-old .feature-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  transition: var(--transition-medium);
}
.launch.jumpy-launch-old .feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-large);
}
.launch.jumpy-launch-old .feature-card__image {
  width: 100%;
  height: 240px;
  overflow: hidden;
  background: var(--color-background-tertiary);
}
.launch.jumpy-launch-old .feature-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.launch.jumpy-launch-old .feature-card__content {
  padding: var(--spacing-6);
}
.launch.jumpy-launch-old .feature-card__title {
  font-size: 28px;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: var(--spacing-4);
  line-height: 1.2;
}
.launch.jumpy-launch-old .feature-card__highlight {
  color: var(--color-brand);
  font-family: var(--font-embury);
  font-style: italic;
}
.launch.jumpy-launch-old .feature-card__description {
  font-size: 18px;
  line-height: 1.6;
  color: var(--color-text-secondary);
  margin-bottom: var(--spacing-4);
}
.launch.jumpy-launch-old .feature-card__note {
  font-size: 18px;
  color: var(--color-text-tertiary);
  font-style: italic;
  margin-top: var(--spacing-3);
}
.launch.jumpy-launch-old .cta-section-middle {
  position: relative;
  z-index: 2;
  background: var(--color-background-primary);
  padding: var(--spacing-10) var(--spacing-5);
  text-align: center;
}
.launch.jumpy-launch-old .cta-section-middle .btn--large {
  min-width: 280px;
  font-size: 22px;
  padding: 0 var(--spacing-10);
}
.launch.jumpy-launch-old .cta-section-middle .btn--large i {
  margin-left: var(--spacing-3);
}
.launch.jumpy-launch-old .about-section,
.launch.jumpy-launch-old .daily-matches-section,
.launch.jumpy-launch-old .support-section,
.launch.jumpy-launch-old .free-section {
  position: relative;
  z-index: 2;
  padding: var(--spacing-10) var(--spacing-5);
  max-width: 900px;
  margin: 0 auto;
  background: var(--color-background-primary);
}
.launch.jumpy-launch-old .about-section__title,
.launch.jumpy-launch-old .daily-matches-section__title,
.launch.jumpy-launch-old .support-section__title,
.launch.jumpy-launch-old .free-section__title {
  font-size: 32px;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: var(--spacing-6);
  line-height: 1.2;
}
@media (min-width: 768px) {
  .launch.jumpy-launch-old .about-section__title,
  .launch.jumpy-launch-old .daily-matches-section__title,
  .launch.jumpy-launch-old .support-section__title,
  .launch.jumpy-launch-old .free-section__title {
    font-size: 40px;
  }
}
.launch.jumpy-launch-old .about-section__text,
.launch.jumpy-launch-old .daily-matches-section__text,
.launch.jumpy-launch-old .support-section__text,
.launch.jumpy-launch-old .free-section__text {
  font-size: 18px;
  line-height: 1.7;
  color: var(--color-text-secondary);
  margin-bottom: var(--spacing-5);
}
@media (min-width: 768px) {
  .launch.jumpy-launch-old .about-section__text,
  .launch.jumpy-launch-old .daily-matches-section__text,
  .launch.jumpy-launch-old .support-section__text,
  .launch.jumpy-launch-old .free-section__text {
    font-size: 18px;
  }
}
.launch.jumpy-launch-old .cta-container {
  position: relative;
  z-index: 2;
  padding: var(--spacing-10) var(--spacing-5) calc(var(--safe-area-inset-bottom) + var(--spacing-10));
  background: var(--color-background-primary);
}
.launch.jumpy-launch-old .cta-container__inner {
  background: #fff;
  border-radius: 18px;
  padding: var(--spacing-6);
  box-shadow: var(--shadow-large);
  max-width: 480px;
  margin: 0 auto;
}
.launch.jumpy-launch-old .cta-container .signins {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  margin: var(--spacing-4) 0 var(--spacing-6);
  gap: var(--spacing-4);
}
.launch.jumpy-launch-old .cta-container .signin-option {
  width: 65px;
  height: 65px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  border: none;
  transition: var(--transition-medium);
}
.launch.jumpy-launch-old .cta-container .signin-option:hover {
  transform: scale(1.05);
}
.launch.jumpy-launch-old .cta-container .signin-option--apple {
  background: var(--color-text-primary);
}
.launch.jumpy-launch-old .cta-container .signin-option--apple img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
}
.launch.jumpy-launch-old .cta-container .signin-option--google {
  background: #F1F1F1;
}
.launch.jumpy-launch-old .cta-container .signin-option--google img {
  width: 24px;
  height: 24px;
}
.launch.jumpy-launch-old .cta-container .signin-option--phone {
  background: var(--color-brand);
  font-size: 28px;
  color: #fff;
}
.launch.jumpy-launch-old .cta-container .cta-email-button {
  width: 100%;
  margin: 0 0 var(--spacing-5) 0;
}
.launch.jumpy-launch-old .cta-container .cta-email-button i {
  margin-right: var(--spacing-3);
}
.launch.jumpy-launch-old .cta-container .terms {
  margin-top: var(--spacing-5);
  font-size: 18px;
  line-height: 1.3;
  text-align: center;
  color: var(--color-text-secondary);
}
.launch.jumpy-launch-old .cta-container .terms a {
  font-weight: 700;
  color: var(--color-text-primary);
  text-decoration: underline;
}
.launch.jumpy-launch-old .cta-container .terms a:hover {
  color: var(--color-brand);
}
.launch.jumpy-launch-old .landing-footer {
  position: relative;
  z-index: 2;
  background: var(--color-text-primary);
  padding: var(--spacing-10) var(--spacing-5) calc(var(--safe-area-inset-bottom) + var(--spacing-10));
  color: #fff;
}
.launch.jumpy-launch-old .landing-footer .footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--spacing-5);
  margin-bottom: var(--spacing-7);
}
.launch.jumpy-launch-old .landing-footer .footer-links a {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: var(--transition-fast);
}
.launch.jumpy-launch-old .landing-footer .footer-links a:hover {
  color: #fff;
}
.launch.jumpy-launch-old .landing-footer .footer-disclaimer {
  text-align: center;
}
.launch.jumpy-launch-old .landing-footer .footer-disclaimer p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  margin-bottom: var(--spacing-3);
}

.launch {
  height: 100vh;
  width: 100vw;
  background: var(--color-background-primary);
  position: relative;
  font-family: var(--font-outfit);
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}
.launch .launch__bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}
.launch .launch__bg-video video#background-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.launch .launch__bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #F26E70 0%, #F5586D 100%);
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.launch .cover-primary {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 69%, #1d1d1d 101%);
  z-index: 1;
}
.launch .cover-secondary {
  position: absolute;
  inset: 0;
  backdrop-filter: blur(40px) brightness(0.9);
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
  z-index: 1;
}
.launch .welcome {
  position: fixed;
  top: calc(var(--safe-area-inset-top) + 16px);
  left: 16px;
  z-index: 100;
}
.launch .welcome .inner-box {
  display: inline-block;
  background: var(--color-text-primary);
  color: #fff;
  height: 67px;
  padding: 0 8px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}
.launch .welcome .inner-box .edate-logo {
  height: 50px;
  width: auto;
}
.launch .hero-content {
  position: relative;
  z-index: 10;
  padding: 120px 20px 100px;
  max-width: 100%;
  margin: 0 auto;
}
.launch .tagline {
  text-align: center;
  margin-bottom: 60px;
  padding: 0 16px;
}
.launch .tagline .tagline__primary {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 20px;
  font-family: var(--font-outfit);
}
.launch .tagline .tagline__primary .tagline__emphasis {
  font-family: var(--font-embury);
  font-style: italic;
  color: var(--color-brand);
}
.launch .tagline .tagline__subtitle {
  font-size: 18px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 16px;
}
.launch .tagline .tagline__cta-text {
  font-size: 18px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 24px;
}
.launch .tagline .tagline__cta-text strong {
  font-weight: 700;
  text-decoration: underline;
}
.launch .tagline .tagline__get-started {
  margin: 0 auto;
}
@media (min-width: 768px) {
  .launch .tagline .mobile-break {
    display: none;
  }
}
.launch .hero-headline {
  text-align: center;
  margin-bottom: 60px;
  padding: 0 16px;
}
.launch .hero-headline .hero-headline__text {
  font-size: 56px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 16px;
}
.launch .hero-headline .hero-headline__text .hero-headline__primary {
  color: #fff;
  display: block;
}
.launch .hero-headline .hero-headline__text .hero-headline__secondary {
  color: #fff;
  display: block;
}
.launch .hero-headline .hero-headline__text .hero-headline__secondary .hero-headline__spin {
  font-family: var(--font-embury);
  font-style: italic;
  color: var(--color-brand);
}
.launch .hero-headline .hero-headline__subtitle {
  font-size: 20px;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.9);
}
.launch .stats-section {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 60px;
  margin-bottom: 60px;
  padding: 0 16px;
  flex-wrap: wrap;
}
.launch .stats-section .stat {
  text-align: center;
}
.launch .stats-section .stat .stat__value {
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1;
}
.launch .stats-section .stat .stat__label {
  font-size: 18px;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.8);
}
.launch .stats-section .stat .stat__label .stat__highlight {
  color: var(--color-brand);
  font-style: italic;
  font-family: var(--font-embury);
}
.launch .qr-section {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 60px;
  padding: 0 16px;
}
.launch .qr-section .qr-code {
  flex-shrink: 0;
}
.launch .qr-section .qr-code .qr-code__image {
  width: 100px;
  height: 100px;
  background: #fff;
  border-radius: 12px;
  padding: 8px;
}
.launch .qr-section .qr-code .qr-code__image .qr-placeholder {
  width: 100%;
  height: 100%;
}
.launch .qr-section .qr-text .qr-text__brand {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.launch .qr-section .qr-text .qr-text__brand i {
  font-size: 20px;
}
.launch .qr-section .qr-text .qr-text__instructions {
  font-size: 18px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.9);
}
.launch .features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 60px;
  padding: 0 16px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) {
  .launch .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
  }
}
.launch .features-grid .feature-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  box-shadow: var(--shadow-medium);
}
.launch .features-grid .feature-card .feature-card__image {
  margin-bottom: 24px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.launch .features-grid .feature-card .feature-card__image img {
  max-width: 100%;
  max-height: 100%;
  border-radius: var(--radius-md);
}
.launch .features-grid .feature-card .feature-card__title {
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.2;
}
.launch .features-grid .feature-card .feature-card__title .feature-card__highlight {
  font-family: var(--font-embury);
  font-style: italic;
  color: var(--color-brand);
}
.launch .features-grid .feature-card .feature-card__description {
  font-size: 18px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 16px;
}
.launch .features-grid .feature-card .feature-card__note {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
  font-style: italic;
}
.launch .cta-section-middle {
  text-align: center;
  margin-bottom: 80px;
  padding: 0 16px;
}
.launch .about-section,
.launch .daily-matches-section,
.launch .support-section,
.launch .free-section {
  padding: 60px 20px;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  margin-bottom: 40px;
}
.launch .about-section h2,
.launch .daily-matches-section h2,
.launch .support-section h2,
.launch .free-section h2 {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 24px;
  line-height: 1.2;
}
.launch .about-section p,
.launch .daily-matches-section p,
.launch .support-section p,
.launch .free-section p {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 16px;
}
.launch .about-section p:last-child,
.launch .daily-matches-section p:last-child,
.launch .support-section p:last-child,
.launch .free-section p:last-child {
  margin-bottom: 0;
}
.launch .cta-container {
  position: fixed;
  left: 0;
  right: 0;
  bottom: calc(16px + var(--safe-area-inset-bottom));
  width: 90vw;
  margin: auto;
  z-index: 1000;
}
.launch .cta-container .cta {
  background: #fff;
  color: var(--color-text-primary);
  border-radius: 18px;
  padding: 20px 16px 16px;
  box-shadow: var(--shadow-medium);
}
.launch .cta-container .signins {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  margin: 12px 0 24px;
}
.launch .cta-container .signins .signin-option {
  width: 65px;
  height: 65px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  border: none;
  transition: transform 0.2s ease;
}
.launch .cta-container .signins .signin-option:hover {
  transform: scale(1.05);
}
.launch .cta-container .signins .signin-option--apple {
  background: var(--color-text-primary);
}
.launch .cta-container .signins .signin-option--apple img {
  filter: brightness(0) invert(1);
}
.launch .cta-container .signins .signin-option--google {
  background: #F1F1F1;
}
.launch .cta-container .signins .signin-option--phone {
  background: var(--color-brand);
  font-size: 31px;
  color: #fff;
}
.launch .cta-container .cta__email-button {
  width: 100%;
  margin: 0 0 16px 0;
}
.launch .cta-container .cta__email-button i {
  margin-right: 8px;
}
.launch .cta-container .terms {
  margin-top: 16px;
  font-size: 18px;
  line-height: 1.15;
  text-align: center;
  color: var(--color-text-secondary);
}
.launch .cta-container .terms a {
  font-weight: 700;
  color: var(--color-text-primary);
  text-decoration: underline;
}

.btn--outline {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
  padding: 0 24px;
  height: 55px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 20px;
  font-weight: 700;
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn--outline:hover {
  background: rgba(255, 255, 255, 0.1);
}
.btn--outline i {
  font-size: 18px;
}

.btn--large {
  font-size: 22px;
  height: 60px;
  padding: 0 32px;
}

.landing-footer {
  position: relative;
  z-index: 10;
  padding: 40px 20px 100px;
  background: rgba(0, 0, 0, 0.8);
  color: rgba(255, 255, 255, 0.8);
}
.landing-footer .footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-bottom: 24px;
}
.landing-footer .footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 18px;
}
.landing-footer .footer-links a:hover {
  color: #fff;
  text-decoration: underline;
}
.landing-footer .footer-disclaimer {
  text-align: center;
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
}
.landing-footer .footer-disclaimer p {
  margin-bottom: 8px;
}

@media (min-width: 768px) {
  .launch .welcome {
    top: calc(var(--safe-area-inset-top) + 24px);
    left: 24px;
  }
  .launch .welcome .inner-box {
    height: 80px;
    padding: 0 16px;
  }
  .launch .welcome .inner-box .edate-logo {
    height: 60px;
  }
  .launch .tagline .tagline__primary {
    font-size: 64px;
  }
  .launch .tagline .tagline__subtitle,
  .launch .tagline .tagline__cta-text {
    font-size: 20px;
  }
  .launch .hero-headline .hero-headline__text {
    font-size: 72px;
  }
  .launch .hero-headline .hero-headline__subtitle {
    font-size: 24px;
  }
  .launch .stats-section {
    gap: 60px;
  }
  .launch .stats-section .stat .stat__value {
    font-size: 56px;
  }
  .launch .stats-section .stat .stat__label {
    font-size: 18px;
  }
  .launch .qr-section {
    gap: 32px;
  }
  .launch .qr-section .qr-code .qr-code__image {
    width: 120px;
    height: 120px;
  }
  .launch .qr-section .qr-text .qr-text__brand {
    font-size: 28px;
  }
  .launch .qr-section .qr-text .qr-text__instructions {
    font-size: 18px;
  }
  .launch .cta-container {
    max-width: 600px;
  }
}
.page-footer {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-text-primary);
  padding: var(--spacing-5) var(--spacing-5) calc(var(--spacing-5) + var(--safe-area-inset-bottom));
  color: #fff;
  font-family: var(--font-outfit);
  z-index: 1001;
}
@media (min-width: 1024px) {
  .page-footer {
    display: block;
  }
}
.page-footer .footer-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.page-footer .footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 24px;
  margin-bottom: 20px;
}
.page-footer .footer-links a {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: underline;
  font-weight: 400;
  white-space: nowrap;
  transition: color 0.2s;
}
.page-footer .footer-links a:hover {
  color: #fff;
}
.page-footer .footer-legal {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.page-footer .footer-legal p {
  font-size: 18px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.5);
  max-width: 1200px;
  margin: 0 auto 8px;
}
.page-footer .footer-legal p:last-child {
  margin-bottom: 0;
}

.login-toggle {
  display: flex;
  width: 90vw;
  margin: 16px auto 20px;
  background: var(--color-background-secondary);
  border-radius: 12px;
  padding: 4px;
  gap: 4px;
}
@media (min-width: 1024px) {
  .login-toggle {
    width: min(90vw, 560px);
    max-width: 100%;
  }
}
.login-toggle button {
  flex: 1;
  padding: 10px 16px;
  border: none;
  border-radius: 10px;
  background: transparent;
  color: var(--color-text-secondary);
  font-family: var(--font-outfit);
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.login-toggle button i {
  font-size: 14px;
}
.login-toggle button.active {
  background: var(--color-background-primary);
  color: var(--color-text-primary);
  font-weight: 600;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.login-toggle button:not(.active):hover {
  color: var(--color-text-primary);
}

.login-options {
  width: 90vw;
  margin: 8px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 16px;
}
@media (min-width: 1024px) {
  .login-options {
    width: min(90vw, 560px);
    max-width: 100%;
  }
}
.login-options .checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  color: var(--color-text-secondary);
  font-family: var(--font-outfit);
  user-select: none;
}
.login-options .checkbox-label .checkbox-input {
  width: 24px;
  height: 24px;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  border: 2px solid var(--color-text-primary);
  border-radius: 4px;
  background: var(--color-background-primary);
  position: relative;
  transition: all 0.2s;
  flex-shrink: 0;
}
.login-options .checkbox-label .checkbox-input:checked {
  background: var(--color-background-primary);
  border-color: var(--color-text-primary);
}
.login-options .checkbox-label .checkbox-input:checked::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -55%) rotate(45deg);
  width: 6px;
  height: 12px;
  border: solid #1d1d1d;
  border-width: 0 3px 3px 0;
}
.login-options .checkbox-label .checkbox-input:hover {
  border-color: var(--color-brand-secondary);
}
.login-options .checkbox-label .checkbox-text {
  font-size: 16px;
}
.login-options .link-secondary {
  color: var(--color-text-secondary);
  text-decoration: underline;
  font-size: 16px;
  font-family: var(--font-outfit);
  transition: color 0.2s;
}
.login-options .link-secondary:hover {
  color: var(--color-text-primary);
}

.login-footer-link {
  text-align: center;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--color-border);
  width: 90vw;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 1024px) {
  .login-footer-link {
    width: min(90vw, 560px);
    max-width: 100%;
  }
}
.login-footer-link .link-primary {
  color: var(--color-text-primary);
  font-size: 18px;
  font-weight: 600;
  font-family: var(--font-outfit);
  text-decoration: underline;
  transition: color 0.2s;
}
.login-footer-link .link-primary:hover {
  color: var(--color-brand-secondary);
}

[data-step=login] .app-bg {
  left: 50%;
  transform: translateX(-50%);
  background-size: 50vh;
  opacity: 0.15;
}
@media (min-width: 768px) {
  [data-step=login] .app-bg {
    background-size: 55vh;
    opacity: 0.2;
  }
}

.recaptcha-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 24px;
  margin-bottom: 8px;
}
.recaptcha-wrapper .g-recaptcha {
  transform: scale(0.9);
  transform-origin: center center;
}
@media (min-width: 768px) {
  .recaptcha-wrapper .g-recaptcha {
    transform: scale(1);
  }
}

.photos-container {
  width: 90%;
  margin-top: 24px;
  margin-bottom: 24px;
  display: flex;
  gap: 12px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 1024px) {
  .photos-container {
    width: min(90vw, 420px);
    margin-bottom: 40px;
    gap: 8px;
  }
}
.photos-container .main-photo {
  flex: 1;
  aspect-ratio: 5/7;
  min-height: 280px;
  max-height: 280px;
  border: 2px dashed var(--color-border);
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  background: #fff;
  padding: 0;
  position: relative;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .photos-container .main-photo {
    max-height: 220px;
    min-height: 200px;
  }
}
.photos-container .main-photo input[type=file] {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  opacity: 0 !important;
  cursor: pointer !important;
  z-index: 10 !important;
}
.photos-container .main-photo.has-photo {
  border-style: solid;
  border-color: var(--color-border);
}
.photos-container .main-photo.has-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.photos-container .main-photo.has-photo:hover .remove-photo {
  opacity: 1;
}
.photos-container .main-photo .photo-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.photos-container .main-photo .photo-placeholder i {
  font-size: 32px;
  color: var(--color-text-tertiary);
}
.photos-container .main-photo .photo-placeholder .placeholder-text {
  font-size: 16px;
  color: var(--color-text-tertiary);
}
.photos-container .main-photo:hover {
  border-color: var(--color-text-secondary);
}
.photos-container .main-photo:hover .photo-placeholder i,
.photos-container .main-photo:hover .photo-placeholder .placeholder-text {
  color: var(--color-text-secondary);
}
.photos-container .small-photos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 8px;
  flex: 1;
  min-width: 50%;
}
@media (min-width: 1024px) {
  .photos-container .small-photos {
    gap: 6px;
  }
}
.photos-container .small-photos .add-photo {
  width: 100%;
  height: 100%;
  aspect-ratio: 2/3;
  min-height: 130px;
  max-height: 133px;
  border: 2px dashed var(--color-border);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  background: #fff;
  padding: 0;
  position: relative;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .photos-container .small-photos .add-photo {
    max-height: 105px;
    min-height: 95px;
  }
}
.photos-container .small-photos .add-photo input[type=file] {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  opacity: 0 !important;
  cursor: pointer !important;
  z-index: 10 !important;
}
.photos-container .small-photos .add-photo.has-photo {
  border-style: solid;
  border-color: var(--color-border);
}
.photos-container .small-photos .add-photo.has-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.photos-container .small-photos .add-photo.has-photo:hover .remove-photo {
  opacity: 1;
}
.photos-container .small-photos .add-photo i {
  font-size: 32px;
  color: var(--color-text-tertiary);
}
.photos-container .small-photos .add-photo:hover {
  border-color: var(--color-text-secondary);
}
.photos-container .small-photos .add-photo:hover i {
  color: var(--color-text-secondary);
}
.photos-container .remove-photo {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
}
.photos-container .remove-photo i {
  font-size: 16px;
  color: white;
}
.photos-container .remove-photo:hover {
  background: rgba(0, 0, 0, 0.7);
}

.info-tip {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(242, 110, 112, 0.1);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s;
  width: 90vw;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .info-tip {
    width: min(90vw, 560px);
  }
}
.info-tip i {
  font-size: 20px;
  color: var(--color-brand);
  flex-shrink: 0;
}
.info-tip span {
  font-size: 15px;
  color: var(--color-text-primary);
  font-weight: 500;
}
.info-tip:hover {
  background: rgba(242, 110, 112, 0.15);
}

.photo-guidelines-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
}
@media (min-width: 768px) {
  .photo-guidelines-modal {
    padding: 20px;
  }
}
.photo-guidelines-modal .guidelines-content {
  background: white;
  border-radius: 16px;
  padding: 20px 16px;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  width: 100%;
}
@media (min-width: 768px) {
  .photo-guidelines-modal .guidelines-content {
    border-radius: 24px;
    padding: 32px 24px;
  }
}
.photo-guidelines-modal .guidelines-content .close-guidelines {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--color-background-secondary);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
}
@media (min-width: 768px) {
  .photo-guidelines-modal .guidelines-content .close-guidelines {
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
  }
}
.photo-guidelines-modal .guidelines-content .close-guidelines i {
  font-size: 16px;
  color: var(--color-text-primary);
}
@media (min-width: 768px) {
  .photo-guidelines-modal .guidelines-content .close-guidelines i {
    font-size: 18px;
  }
}
.photo-guidelines-modal .guidelines-content .close-guidelines:hover {
  background: var(--color-background-tertiary);
}
.photo-guidelines-modal .guidelines-content h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 16px;
  padding-right: 40px;
  font-family: var(--font-outfit);
}
@media (min-width: 768px) {
  .photo-guidelines-modal .guidelines-content h2 {
    font-size: 28px;
    margin-bottom: 24px;
  }
}
.photo-guidelines-modal .guidelines-content .guideline-item {
  margin-bottom: 20px;
}
.photo-guidelines-modal .guidelines-content .guideline-item:last-of-type {
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .photo-guidelines-modal .guidelines-content .guideline-item {
    margin-bottom: 32px;
  }
  .photo-guidelines-modal .guidelines-content .guideline-item:last-of-type {
    margin-bottom: 24px;
  }
}
.photo-guidelines-modal .guidelines-content .guideline-item .guideline-images {
  display: flex;
  gap: 6px;
  margin-bottom: 12px;
  max-width: 200px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) {
  .photo-guidelines-modal .guidelines-content .guideline-item .guideline-images {
    gap: 12px;
    margin-bottom: 16px;
    max-width: none;
  }
}
.photo-guidelines-modal .guidelines-content .guideline-item .guideline-images img {
  flex: 1;
  width: calc(50% - 3px);
  border-radius: 6px;
  object-fit: cover;
  aspect-ratio: 1/1;
  max-height: 100px;
}
@media (min-width: 768px) {
  .photo-guidelines-modal .guidelines-content .guideline-item .guideline-images img {
    width: calc(50% - 6px);
    border-radius: 12px;
    max-height: none;
  }
}
.photo-guidelines-modal .guidelines-content .guideline-item h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: 6px;
  font-family: var(--font-outfit);
}
@media (min-width: 768px) {
  .photo-guidelines-modal .guidelines-content .guideline-item h3 {
    font-size: 18px;
    margin-bottom: 8px;
  }
}
.photo-guidelines-modal .guidelines-content .guideline-item p {
  font-size: 14px;
  line-height: 1.5;
  color: var(--color-text-secondary);
  margin: 0;
}
@media (min-width: 768px) {
  .photo-guidelines-modal .guidelines-content .guideline-item p {
    font-size: 15px;
  }
}
.photo-guidelines-modal .guidelines-content .upload-photos-btn {
  width: 100%;
  margin-top: 8px;
  background: var(--color-text-primary);
  color: #fff;
  border: none;
  border-radius: var(--radius-lg, 20px);
  height: 55px;
  font-size: 20px;
  font-weight: 700;
  font-family: var(--font-outfit);
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.photo-guidelines-modal .guidelines-content .upload-photos-btn:hover {
  background: var(--color-text-secondary);
  transform: translateY(-2px);
}
.photo-guidelines-modal .guidelines-content .upload-photos-btn:active {
  transform: translateY(0);
}

.v4-registration-panel.modal-open .backButton,
.v4-registration-panel.modal-open .skipButton {
  display: none;
}

.skipButton {
  position: fixed;
  top: calc(16px + var(--safe-area-inset-top));
  right: 20px;
  background: rgba(0, 0, 0, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  padding: 12px 24px;
  border-radius: 50px;
  z-index: 3000000;
  font-family: var(--font-outfit);
  transition: all 0.2s;
  display: none !important;
}
.skipButton:hover {
  color: var(--color-brand);
}
@media (min-width: 768px) {
  .skipButton {
    top: 32px;
    right: 32px;
  }
}

.verification-illustration {
  width: 100%;
  max-width: 300px;
  margin: 0 auto 24px;
  display: flex;
  justify-content: center;
}
@media (min-width: 768px) {
  .verification-illustration {
    max-width: 400px;
  }
}
.verification-illustration svg, .verification-illustration img {
  width: 100%;
  height: auto;
}

.verification-disclaimer {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 24px;
  padding: 16px;
  background: rgba(242, 110, 112, 0.1);
  border-radius: 12px;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 1024px) {
  .verification-disclaimer {
    width: min(90vw, 560px);
  }
}
.verification-disclaimer i {
  font-size: 20px;
  color: var(--color-brand);
  flex-shrink: 0;
  margin-top: 2px;
}
.verification-disclaimer span {
  font-size: 14px;
  line-height: 1.5;
  color: var(--color-text-secondary);
}
@media (min-width: 768px) {
  .verification-disclaimer span {
    font-size: 15px;
  }
}

.skip-verification {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  padding: 16px;
  cursor: pointer;
  transition: all 0.2s;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 1024px) {
  .skip-verification {
    width: min(90vw, 560px);
  }
}
.skip-verification span {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-text-secondary);
  font-family: var(--font-outfit);
}
.skip-verification i {
  font-size: 16px;
  color: var(--color-text-secondary);
  transition: transform 0.2s;
}
.skip-verification:hover span, .skip-verification:hover i {
  color: var(--color-text-primary);
}
.skip-verification:hover i {
  transform: translateX(4px);
}

.pose-verification-container {
  width: 90%;
  max-width: 280px;
  margin: 24px auto;
}
@media (min-width: 768px) {
  .pose-verification-container {
    max-width: 350px;
  }
}

.pose-example-image {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-medium);
}
.pose-example-image .pose-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.webcam-verification-container {
  width: 100%;
  padding: 20px;
}

.webcam-layout {
  display: flex;
  gap: 20px;
  margin: 24px auto;
  width: 90%;
  max-width: 800px;
  justify-content: center;
}
@media (max-width: 767px) {
  .webcam-layout {
    flex-direction: column;
    align-items: center;
  }
}

.webcam-box,
.webcam-preview,
.webcam-example {
  flex: 1;
  max-width: 400px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  background: var(--color-background-secondary);
  aspect-ratio: 3/4;
  display: flex;
  align-items: center;
  justify-content: center;
}
.webcam-box video, .webcam-box canvas, .webcam-box img,
.webcam-preview video,
.webcam-preview canvas,
.webcam-preview img,
.webcam-example video,
.webcam-example canvas,
.webcam-example img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.webcam-preview canvas {
  display: block;
}

.jumpy-launch ~ .page-footer {
  background: hsl(0, 0%, 0%) !important;
  color: rgba(255, 255, 255, 0.7) !important;
  padding: 24px 16px !important;
  position: relative !important;
}
@media (min-width: 768px) {
  .jumpy-launch ~ .page-footer {
    padding: 32px 24px !important;
  }
}
.jumpy-launch ~ .page-footer .footer-container {
  max-width: 1600px !important;
  margin: 0 auto !important;
  padding: 0 16px !important;
}
.jumpy-launch ~ .page-footer .footer-links {
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 16px 24px !important;
  margin-bottom: 20px !important;
}
@media (max-width: 640px) {
  .jumpy-launch ~ .page-footer .footer-links {
    gap: 12px 16px !important;
  }
}
.jumpy-launch ~ .page-footer .footer-links a {
  color: rgba(255, 255, 255, 0.9) !important;
  text-decoration: underline !important;
  font-size: 18px !important;
  font-weight: 400 !important;
  white-space: nowrap !important;
  transition: color 0.2s !important;
}
@media (max-width: 640px) {
  .jumpy-launch ~ .page-footer .footer-links a {
    font-size: 18px !important;
  }
}
.jumpy-launch ~ .page-footer .footer-links a:hover {
  color: #fff !important;
}
.jumpy-launch ~ .page-footer .footer-legal {
  text-align: center !important;
  padding-top: 20px !important;
  border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
}
.jumpy-launch ~ .page-footer .footer-legal p {
  font-size: 18px !important;
  line-height: 1.5 !important;
  color: rgba(255, 255, 255, 0.5) !important;
  max-width: 1200px !important;
  margin: 0 auto 8px !important;
}
.jumpy-launch ~ .page-footer .footer-legal p:last-child {
  margin-bottom: 0 !important;
}
@media (max-width: 640px) {
  .jumpy-launch ~ .page-footer .footer-legal p {
    font-size: 18px !important;
  }
}

.desktop-register {
  display: none !important;
}
@media (min-width: 768px) {
  .desktop-register {
    display: inline-flex !important;
  }
}

.mobile-download {
  display: inline-flex !important;
  gap: 10px;
  font-size: 18px !important;
  padding: 16px 40px !important;
}
.mobile-download i {
  font-size: 18px;
}
@media (min-width: 768px) {
  .mobile-download {
    display: none !important;
  }
}

.phone-input-container {
  width: 90vw;
  max-width: 400px;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .phone-input-container {
    width: min(90vw, 560px);
  }
}
.phone-input-container .phone-input-wrapper {
  display: flex;
  gap: 8px;
}
.phone-input-container .phone-input-wrapper .country-code-select {
  width: 110px;
  padding: 14px 12px;
  background: var(--color-background-secondary);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 16px;
  font-size: 15px;
  color: var(--color-text-primary);
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}
.phone-input-container .phone-input-wrapper .country-code-select:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(var(--color-brand-rgb), 0.3);
}
.phone-input-container .phone-input-wrapper .phone-input {
  flex: 1;
  padding: 14px 16px;
  background: var(--color-background-secondary);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 16px;
  font-size: 16px;
  color: var(--color-text-primary);
}
.phone-input-container .phone-input-wrapper .phone-input::placeholder {
  color: var(--color-text-tertiary);
}
.phone-input-container .phone-input-wrapper .phone-input:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(var(--color-brand-rgb), 0.3);
}

.otp-container {
  width: 90vw;
  max-width: 400px;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .otp-container {
    width: min(90vw, 560px);
  }
}
.otp-container .otp-input-wrapper {
  display: flex;
  justify-content: center;
  gap: 8px;
}
.otp-container .otp-input-wrapper .otp-digit {
  width: 44px;
  height: 56px;
  background: var(--color-background-secondary);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 12px;
  font-size: 22px;
  font-weight: 600;
  text-align: center;
  color: var(--color-text-primary);
  caret-color: var(--color-brand);
}
.otp-container .otp-input-wrapper .otp-digit:focus {
  outline: none;
  border-color: var(--color-brand);
  box-shadow: 0 0 0 2px rgba(var(--color-brand-rgb), 0.3);
}
.otp-container .otp-input-wrapper .otp-digit:not(:placeholder-shown), .otp-container .otp-input-wrapper .otp-digit.ng-not-empty {
  background: rgba(var(--color-brand-rgb), 0.08);
  border-color: var(--color-brand);
}
@media (min-width: 400px) {
  .otp-container .otp-input-wrapper .otp-digit {
    width: 48px;
    height: 60px;
    font-size: 24px;
  }
}

.cooldown-timer {
  text-align: center;
  margin-top: 16px;
  font-size: 14px;
  color: var(--color-text-secondary);
}
.cooldown-timer .timer {
  font-weight: 700;
  color: var(--color-text-primary);
}

.resend-button {
  text-align: center;
  margin-top: 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-brand);
  cursor: pointer;
}
.resend-button:hover {
  text-decoration: underline;
}

.phone-change-button {
  text-align: center;
  margin-top: 12px;
  font-size: 14px;
  color: var(--color-text-secondary);
  cursor: pointer;
}
.phone-change-button i {
  margin-right: 4px;
  font-size: 13px;
}
.phone-change-button:hover {
  color: var(--color-text-primary);
}

.skip-link {
  text-align: center;
  margin-top: 16px;
  padding-bottom: 24px;
  font-size: 14px;
  color: var(--color-text-secondary);
  cursor: pointer;
}
.skip-link i {
  margin-left: 4px;
  font-size: 12px;
}
.skip-link:hover {
  color: var(--color-text-primary);
}

/*# sourceMappingURL=app.css.map */
