/* Falue welcome and sign-in presentation: consolidated active cascade. */

/* === Welcome layout === */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@600;700&family=Poppins:wght@400;500;600&display=swap');
/* Falue Welcome Concept 2 — Interactive Swipe Welcome */
:root {
  --fw-bg: rgb(247 247 250);
  --fw-ink: #2B2D42;
  --fw-purple: #5D5F93;
  --fw-muted: #B5B7BB;
  --fw-border: rgba(43,45,66,.10);
  --fw-soft: rgba(93,95,147,.08);
}
html,body { background: var(--fw-bg) !important; }
.falue-welcome-c2,
.falue-welcome-c2 * { box-sizing: border-box; }
.falue-welcome-c2 {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(93,95,147,.08), transparent 26%),
    radial-gradient(circle at 88% 24%, rgba(107,78,255,.08), transparent 28%),
    var(--fw-bg);
  color: var(--fw-ink);
  font-family: var(--falue-font-ui, "Plus Jakarta Sans", "Inter", Arial, sans-serif);
}
.falue-welcome-c2::before,
.falue-welcome-c2::after {
  content: "";
  position: absolute;
  width: 28vw;
  height: 28vw;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  opacity: .18;
}
.falue-welcome-c2::before { left: -12vw; top: 15vh; background: #8D7AF5; }
.falue-welcome-c2::after { right: -12vw; top: 20vh; background: #6D56FF; }
.falue-welcome-c2__topbar {
  position: relative;
  z-index: 8;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
  padding: 0 2px;
}
.falue-welcome-c2__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--fw-ink);
  text-decoration: none !important;
}
.falue-welcome-c2__brand img { width: 38px; height: 38px; object-fit: contain; }
.falue-welcome-c2__brand .falue-brand-word {
  font-family: var(--falue-font-identity, "Convergence", sans-serif);
  font-size: 27px;
  font-weight: 400;
  font-synthesis: none;
  letter-spacing: -.02em;
}
.falue-welcome-c2__top-actions { display: flex; align-items: center; gap: 14px; }
.falue-welcome-c2__language > button,
.falue-welcome-c2__login-link {
  border: 0;
  background: transparent;
  min-height: 38px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--fw-ink);
  font-size: 14px;
  font-weight: 600;
  border-radius: 12px;
}
.falue-welcome-c2__language > button:hover,
.falue-welcome-c2__login-link:hover { background: rgba(43,45,66,.05); }
.falue-welcome-c2__language .dropdown-menu {
  border: 1px solid var(--fw-border);
  border-radius: 18px;
  box-shadow: 0 18px 50px rgba(32,36,58,.15);
  padding: 8px;
}
.falue-welcome-c2__main {
  position: relative;
  z-index: 3;
  width: min(1180px, calc(100% - 48px));
  height: calc(100vh - 64px);
  margin: 0 auto;
  display: grid;
  grid-template-rows: auto minmax(250px, 1fr) auto auto auto;
  align-content: center;
  gap: clamp(8px, 1.3vh, 14px);
  padding: clamp(6px, 1.2vh, 12px) 0 clamp(10px, 1.5vh, 16px);
}
.falue-welcome-c2__intro { text-align: center; }
.falue-welcome-c2__intro h1 {
  margin: 0;
  color: var(--fw-ink);
  font-size: clamp(32px, 4.5vw, 52px);
  line-height: 1.03;
  letter-spacing: -.045em;
  font-weight: 800;
}
.falue-welcome-c2__intro h1 strong {
  color: var(--fw-purple);
  font-weight: 800;
}
.falue-welcome-c2__intro p {
  margin: 8px auto 0;
  max-width: 660px;
  color: #73788B;
  font-size: clamp(13px, 1.2vw, 16px);
  line-height: 1.5;
}
.falue-welcome-c2__demo {
  width: min(880px, 100%);
  min-height: 250px;
  max-height: 340px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(135px, .42fr) minmax(390px, 1.25fr) minmax(135px, .42fr);
  align-items: center;
  gap: 16px;
  perspective: 1200px;
}
.falue-welcome-c2__reveal {
  position: relative;
  min-height: 220px;
  height: 74%;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(43,45,66,.16);
  transform: scale(calc(.96 + var(--reveal-progress,0) * .04));
  opacity: calc(.82 + var(--reveal-progress,0) * .18);
  transition: transform .12s linear, opacity .12s linear;
}
.falue-welcome-c2__reveal::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(255,255,255,calc(var(--reveal-progress,0) * .12)), transparent 52%);
  pointer-events: none;
}
.falue-welcome-c2__reveal--left {
  background: linear-gradient(145deg,#34384A,#242838 70%);
}
.falue-welcome-c2__reveal--right {
  background: linear-gradient(145deg,#7157D8 0%,#5D5F93 58%,#3F436B 100%);
}
.falue-welcome-c2__reveal-icon { font-size: 30px; margin-bottom: 10px; }
.falue-welcome-c2__reveal strong { font-size: 30px; line-height: 1; margin-bottom: 7px; }
.falue-welcome-c2__reveal--left strong { font-size: 18px; }
.falue-welcome-c2__reveal span { font-size: 12px; opacity: .9; }
.falue-welcome-c2__heart-img {
  width: 54px;
  height: 48px;
  object-fit: contain;
  margin-bottom: 6px;
  filter: drop-shadow(0 8px 14px rgba(31,34,54,.16));
}
.falue-welcome-c2__reveal-like-label {
  display: block;
  margin: 1px 0 2px;
  font-size: 13px !important;
  font-weight: 800;
  letter-spacing: .02em;
  opacity: 1 !important;
}
.falue-welcome-c2__reveal small {
  display: block;
  font-size: 11px;
  line-height: 1.2;
  opacity: .88;
}
.falue-welcome-c2__card-shell {
  position: relative;
  z-index: 4;
  display: flex;
  justify-content: center;
  align-items: center;
}
.falue-welcome-c2__post {
  width: min(100%, 470px);
  background: #fff;
  border: 1px solid rgba(43,45,66,.08);
  border-radius: 25px;
  box-shadow: 0 22px 55px rgba(43,45,66,.18);
  overflow: hidden;
  cursor: grab;
  user-select: none;
  touch-action: none;
  will-change: transform;
}
.falue-welcome-c2__post:focus { outline: 3px solid rgba(93,95,147,.22); outline-offset: 4px; }
.falue-welcome-c2__post header {
  height: 58px;
  padding: 10px 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.falue-welcome-c2__demo-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #F5F3FF;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.falue-welcome-c2__demo-user { display: flex; flex-direction: column; min-width: 0; }
.falue-welcome-c2__demo-user b { color: var(--fw-ink); font-size: 13px; line-height: 1.2; }
.falue-welcome-c2__demo-user small { color: #9A9FAE; font-size: 10px; margin-top: 2px; }
.falue-welcome-c2__demo-more { margin-left: auto; color: #73788B; letter-spacing: 2px; }
.falue-welcome-c2__media {
  height: clamp(160px, 25vh, 215px);
  margin: 0 12px;
  border-radius: 19px;
  background-size: cover;
  background-position: center 58%;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.10);
}
.falue-welcome-c2__post footer {
  height: 50px;
  padding: 8px 12px 10px;
  display: grid;
  grid-template-columns: auto minmax(130px,1fr) auto;
  gap: 8px;
  align-items: center;
}
.falue-welcome-c2__post footer > span {
  min-height: 30px;
  border: 1px solid #ECECF2;
  border-radius: 999px;
  background: #FAFAFC;
  display: flex;
  align-items: center;
  padding: 0 10px;
  color: #83889A;
  font-size: 10px;
  white-space: nowrap;
}
.falue-welcome-c2__demo-rating { color: #83889A !important; gap: 5px; }
.falue-welcome-c2__rating-heart {
  width: 18px;
  height: 16px;
  object-fit: contain;
  flex: 0 0 auto;
}
.falue-welcome-c2__demo-rating b { color: var(--fw-ink); margin-left: 0; }
.falue-welcome-c2__demo-comment { color: #A0A5B3 !important; }
.falue-welcome-c2__demo-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.falue-welcome-c2__demo-count .falue-comment-icon {
  width: 14px;
  height: 14px;
  display: block;
  color: #8F95B2;
}
.falue-welcome-c2__demo-count-value {
  line-height: 1;
  font-weight: 600;
}
.falue-welcome-c2__drag-hint {
  text-align: center;
  color: #767B8E;
  font-size: 12px;
  font-weight: 600;
}
.falue-welcome-c2__drag-hint span { color: var(--fw-purple); font-size: 17px; padding: 0 10px; }
.falue-welcome-c2__drag-hint b { color: #A1A6B4; padding: 0 8px; font-weight: 700; }
.falue-welcome-c2__claim {
  width: min(650px, 100%);
  margin: 0 auto;
  text-align: center;
}
.falue-welcome-c2__claim-card {
  padding: 14px 16px 11px;
  border: 1px solid rgba(43,45,66,.075);
  border-radius: 24px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 18px 46px rgba(43,45,66,.105);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.falue-welcome-c2__launch-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 10px;
}
.falue-welcome-c2__launch-copy {
  margin: 0;
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0 5px;
  color: var(--fw-ink);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.15;
  text-align: left;
  white-space: nowrap;
}
.falue-welcome-c2__launch-copy .falue-brand-word {
  font-family: var(--falue-font-identity, "Convergence", sans-serif);
  font-size: 23px;
  font-weight: 400;
  font-synthesis: none;
  letter-spacing: -.02em;
  background: linear-gradient(110deg,#356BFF 0%,#654EFF 52%,#8B3CF0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.falue-welcome-c2__launch-copy time {
  color: #704EE8;
}
.falue-welcome-c2__countdown {
  flex: 0 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 50px);
  gap: 9px;
  direction: ltr;
}
.falue-welcome-c2__countdown-unit {
  min-width: 0;
  display: grid;
  justify-items: center;
  gap: 3px;
}
.falue-welcome-c2__countdown-unit strong {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1.5px solid currentColor;
  border-radius: 50%;
  background: #fff;
  color: var(--fw-ink);
  font-size: 14px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  letter-spacing: -.02em;
  box-shadow: 0 6px 14px rgba(43,45,66,.055);
}
.falue-welcome-c2__countdown-unit--purple strong { border-color: #6869A5; }
.falue-welcome-c2__countdown-unit--coral strong { border-color: #F06B85; }
.falue-welcome-c2__countdown-unit span {
  color: #696E83;
  font-size: 7.5px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .045em;
  text-transform: uppercase;
}
.falue-welcome-c2__claim-box {
  min-height: 64px;
  padding: 7px 8px 7px 9px;
  display: flex;
  align-items: center;
  border-radius: 999px;
  border: 3px solid rgba(255,255,255,.95);
  background: #fff;
}
.falue-welcome-c2__claim-prefix {
  height: 48px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0 18px;
  border-radius: 999px;
  background: #F2F1F7;
  color: var(--fw-ink);
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
}
.falue-welcome-c2__claim-prefix svg { color: #8581AE; }
.falue-welcome-c2__claim-box input {
  flex: 1 1 auto;
  min-width: 0;
  height: 48px;
  border: 0 !important;
  outline: 0 !important;
  box-shadow: none !important;
  background: transparent !important;
  padding: 0 18px;
  color: var(--fw-ink);
  font-size: 16px;
  font-weight: 500;
}
.falue-welcome-c2__claim-box input::placeholder { color: #A39FBF; opacity: 1; }
#claim-username-button {
  min-width: 120px;
  height: 48px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg,#4B7BFF 0%,#6255FF 54%,#8A3CF0 100%);
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(93,95,147,.27);
}
#claim-username-button:disabled { opacity: .7; cursor: wait; }
#claim-username-status {
  min-height: 18px;
  margin: 5px 0 0;
  color: #7A8092;
  font-size: 11px;
  font-weight: 600;
}
#claim-username-status.text-danger { color: #D45062 !important; }
#claim-username-status.text-success { color: #2E9B64 !important; }
.falue-welcome-c2__cta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.falue-welcome-c2__primary-cta,
.falue-welcome-c2__secondary-cta {
  min-width: 160px;
  height: 44px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none !important;
}
.falue-welcome-c2__primary-cta {
  border: 0;
  background: linear-gradient(135deg,#5D5F93,#7B4DE9);
  color: #fff !important;
  box-shadow: 0 12px 26px rgba(93,95,147,.22);
}
.falue-welcome-c2__secondary-cta {
  border: 1px solid rgba(93,95,147,.30);
  background: #fff;
  color: var(--fw-ink);
}
.falue-welcome-c2__features {
  width: min(980px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 10px;
  padding: 10px 12px;
  border-radius: 22px;
  border: 1px solid var(--fw-border);
  background: rgba(255,255,255,.78);
  box-shadow: 0 14px 38px rgba(43,45,66,.07);
  backdrop-filter: blur(12px);
}
.falue-welcome-c2__features > div {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 2px 10px;
}
.falue-feature-icon {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  font-size: 16px;
  font-weight: 800;
}
.falue-feature-icon--heart { background: #FFECEF; color: #F05E70; }
.falue-feature-icon--feed { background: #EEF0FF; color: #5D5F93; }
.falue-feature-icon--people { background: #F1ECFF; color: #7B4DE9; }
.falue-welcome-c2__features p { margin: 0; display: flex; flex-direction: column; min-width: 0; }
.falue-welcome-c2__features b { color: var(--fw-ink); font-size: 12px; line-height: 1.3; }
.falue-welcome-c2__features small { color: #8B90A0; font-size: 10px; line-height: 1.35; margin-top: 2px; }

/* Login overlay — Concept 3, matched to the approved mockup */
.falue-welcome-login-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: grid;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .18s ease, visibility .18s ease;
  font-family: var(--falue-font-ui, "Plus Jakarta Sans", "Inter", Arial, sans-serif);
}
.falue-welcome-login-modal.is-open { opacity: 1; visibility: visible; pointer-events: auto; }
.falue-welcome-login-modal__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
}
.falue-welcome-login-modal__dialog {
  position: relative;
  z-index: 2;
  max-height: calc(100vh - 34px);
  overflow: hidden;
  background: #fff;
  color: #20223A;
}
.falue-welcome-login-modal__corner {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  pointer-events: none;
}
.falue-welcome-login-modal__corner svg { display: block; width: 100%; height: 100%; }
.falue-welcome-login-modal__close {
  position: absolute;
  z-index: 6;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.96);
  color: #22243B;
  font-weight: 400;
  line-height: 1;
  cursor: pointer;
}
.falue-welcome-login-modal .main-content-div,
.falue-welcome-login-modal .form-right,
.falue-welcome-login-modal .right-form {
  position: relative;
  z-index: 2;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}
.falue-welcome-login-modal .right-form .title {
  margin: 0 0 34px;
  color: #20223A;
  font-size: 37px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -.035em;
}
.falue-welcome-login-modal .errors { margin: 0 0 14px; }
.falue-welcome-login-modal .errors:empty { display: none; }
.falue-welcome-login-modal .new-err {
  border-radius: 12px;
  padding: 10px 12px;
  background: #FFF1F3;
  color: #C94155;
  font-size: 13px;
  line-height: 1.35;
}

.falue-login-field-group > label,
.falue-login-label-row label {
  display: block;
  margin: 0 0 11px;
  color: #30334B;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 700;
}
.falue-login-label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 11px;
}
.falue-login-label-row label { margin: 0; }
.falue-login-forgot {
  text-decoration: none !important;
  line-height: 1.2;
  white-space: nowrap;
}
.falue-login-field {
  position: relative;
  display: flex;
  align-items: center;
  border: 1.5px solid #D9DBE5;
  border-radius: 14px;
  transition: border-color .16s ease, box-shadow .16s ease;
}

.falue-login-field__icon {
  position: absolute;
  left: 17px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}
.falue-login-field__icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.falue-login-field input {
  width: 100% !important;
  height: 100% !important;
  border: 0 !important;
  outline: 0 !important;
  border-radius: 14px !important;
  background: transparent !important;
  color: #282B43 !important;
  padding: 0 48px 0 52px !important;
  box-shadow: none !important;
  font-size: 15px !important;
  font-weight: 500 !important;
}
.falue-login-field input::placeholder { color: #A9ADBC !important; opacity: 1; }
.falue-login-field input:-webkit-autofill,
.falue-login-field input:-webkit-autofill:hover,
.falue-login-field input:-webkit-autofill:focus {
  -webkit-text-fill-color: #282B43 !important;
  transition: background-color 9999s ease-out 0s;
}
.falue-welcome-login-modal .falue-login-remember {
  gap: 11px !important;
  color: #2F3249;
  font-size: 14px;
  font-weight: 500;
}
.falue-welcome-login-modal .falue-login-remember input[type="checkbox"] {
  position: absolute !important;
  opacity: 0 !important;
  width: 1px !important;
  height: 1px !important;
  pointer-events: none !important;
}
.falue-welcome-login-modal .falue-login-remember label {
  margin: 0 !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  color: #2F3249 !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  line-height: 1.2 !important;
  cursor: pointer !important;
  user-select: none !important;
}
.falue-login-remember__check {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.falue-login-remember__unchecked {
  width: 18px;
  height: 18px;
  display: block;
  border: 1.5px solid #C8CDDA;
  border-radius: 50%;
  background: #fff;
  box-sizing: border-box;
}
.falue-login-remember__checked {
  width: 20px;
  height: 20px;
  display: none;
}
.falue-welcome-login-modal .falue-login-remember input[type="checkbox"]:checked + label .falue-login-remember__unchecked {
  display: none;
}
.falue-welcome-login-modal .falue-login-remember input[type="checkbox"]:checked + label .falue-login-remember__checked {
  display: block;
}
.falue-welcome-login-modal .falue-login-remember input[type="checkbox"]:focus-visible + label .falue-login-remember__check {
  outline: 2px solid rgba(93,95,147,.35);
  outline-offset: 3px;
  border-radius: 50%;
}
.falue-welcome-login-modal .login_signup_combo,
.falue-welcome-login-modal .login_signup_combo .login__ { margin: 0 !important; width: 100% !important; }
.falue-welcome-login-modal .login_signup_combo .btn-main {
  width: 100% !important;
  height: 62px !important;
  margin: 0 !important;
  border: 0 !important;
  border-radius: 16px !important;
  background: linear-gradient(105deg,#435CFF 0%,#6247FA 50%,#9140F1 100%) !important;
  color: #fff !important;
  font-size: 18px !important;
  font-weight: 800 !important;
  letter-spacing: -.01em;
}
/* The approved Concept 3 placard contains no social-provider row. */
.falue-welcome-login-modal .social_btns,
.falue-welcome-login-modal .g-signin2,
.falue-welcome-login-modal .forgot_password { display: none !important; }

@media (max-width: 620px) {
  .falue-welcome-login-modal__dialog {
    border-radius: 24px;
  }


  .falue-welcome-login-modal .right-form .title { font-size: 32px; margin-bottom: 28px; }
  .falue-login-field { height: 54px; }
  .falue-welcome-login-modal .login_signup_combo .btn-main { height: 56px !important; }
}

html.falue-welcome-login-open { overflow: hidden; }

@media (min-width: 900px) {
  html:not(.falue-prelaunch-page),
  html:not(.falue-prelaunch-page) body { height: 100%; overflow: hidden !important; }
  .falue-welcome-c2 { position: fixed; inset: 0; height: 100dvh; min-height: 0; }
  .falue-welcome-c2__main { min-height: 0; }
}

@media (max-height: 760px) and (min-width: 900px) {
  .falue-welcome-c2__topbar { height: 54px; }
  .falue-welcome-c2__main { height: calc(100dvh - 54px); gap: 6px; padding-top: 2px; }
  .falue-welcome-c2__intro h1 { font-size: clamp(30px, 4vw, 42px); }
  .falue-welcome-c2__intro p { margin-top: 4px; font-size: 12px; }
  .falue-welcome-c2__demo { min-height: 220px; max-height: 282px; }
  .falue-welcome-c2__reveal { min-height: 190px; }
  .falue-welcome-c2__media { height: 150px; }
  .falue-welcome-c2__post header { height: 48px; padding-top: 7px; padding-bottom: 7px; }
  .falue-welcome-c2__post footer { height: 42px; padding-top: 5px; padding-bottom: 6px; }
  .falue-welcome-c2__claim-box { min-height: 56px; }
  .falue-welcome-c2__claim-prefix, .falue-welcome-c2__claim-box input, #claim-username-button { height: 42px; }
  .falue-welcome-c2__features { padding-top: 7px; padding-bottom: 7px; }
  .falue-feature-icon { width: 30px; height: 30px; flex-basis: 30px; }
}

@media (max-width: 899.98px) {

  .falue-welcome-c2 { padding-bottom: 24px; }


  .falue-welcome-c2__intro h1 { font-size: clamp(34px, 10vw, 48px); }


  .falue-welcome-c2__claim-prefix { height: 44px; font-size: 13px; }
  .falue-welcome-c2__claim-box input { height: 44px; }
  #claim-username-button { height: 44px; }
  .falue-welcome-c2__features { grid-template-columns: 1fr; }
}

@media (max-width: 500px) {
  .falue-welcome-c2__top-actions { gap: 4px; }
  .falue-welcome-c2__language > button span { display: none; }
  .falue-welcome-c2__claim-prefix span { display: none; }
  .falue-welcome-c2__claim-prefix { width: 44px; justify-content: center; padding: 0; }
  .falue-welcome-c2__cta-row { flex-direction: column; }
  .falue-welcome-c2__primary-cta,
  .falue-welcome-c2__secondary-cta { width: 100%; }
}

.falue-welcome-c2__intro--face-value h1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 100%;
  letter-spacing: normal;
}
.falue-welcome-c2__intro--face-value h1 > span {
  display: block;
  color: var(--fw-ink);
  font-family: "Poppins", var(--falue-font-ui, "Plus Jakarta Sans", Arial, sans-serif);
  font-size: clamp(16px, 1.55vw, 23px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: .24em;
  text-transform: uppercase;
  white-space: nowrap;
}
.falue-welcome-c2__intro--face-value h1 > strong {
  display: block;
  color: var(--fw-ink);
  font-family: "Oswald", "Arial Narrow", var(--falue-font-ui, sans-serif);
  font-size: clamp(48px, 5.3vw, 72px);
  font-weight: 700;
  line-height: .98;
  letter-spacing: -.018em;
  white-space: nowrap;
}
.falue-welcome-c2__minimal-strip {
  width: min(760px, 100%);
  min-height: 46px;
  margin: 0 auto;
  padding: 8px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  border: 1px solid var(--fw-border);
  border-radius: 999px;
  background: rgba(255,255,255,.72);
  box-shadow: 0 10px 28px rgba(43,45,66,.055);
  backdrop-filter: blur(12px);
  color: var(--fw-ink);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}
.falue-welcome-c2__minimal-strip span {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}
.falue-welcome-c2__minimal-strip span + span::before {
  content: "•";
  margin: 0 13px;
  color: rgba(93,95,147,.55);
  font-size: 10px;
}
.falue-welcome-c2__claim-title {
  margin: 0 0 5px;
  color: var(--fw-ink);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .01em;
}

@media (min-width: 900px) {
  .falue-welcome-c2__main {
    grid-template-rows: auto minmax(230px, 1fr) auto auto auto auto;
  }
}

@media (max-height: 760px) and (min-width: 900px) {
  .falue-welcome-c2__intro--face-value h1 { font-size: inherit; }
  .falue-welcome-c2__intro--face-value h1 > span { font-size: clamp(14px, 1.35vw, 19px); letter-spacing: .22em; }
  .falue-welcome-c2__intro--face-value h1 > strong { font-size: clamp(42px, 4.6vw, 60px); }
  .falue-welcome-c2__minimal-strip { min-height: 38px; padding-top: 6px; padding-bottom: 6px; font-size: 12px; }
  .falue-welcome-c2__claim-title { margin-bottom: 3px; font-size: 11px; }
}

@media (max-width: 899.98px) {


  .falue-welcome-c2__minimal-strip {
    flex-wrap: wrap;
    row-gap: 6px;
  }
}

@media (max-width: 500px) {
  .falue-welcome-c2__minimal-strip {
    flex-direction: column;
    gap: 4px;
  }
  .falue-welcome-c2__minimal-strip span + span::before { display: none; }
}

@media (min-width: 900px) {
  .falue-welcome-c2::before,
  .falue-welcome-c2::after {
    width: 24vw;
    height: 24vw;
    filter: blur(72px);
    opacity: .105;
  }

  .falue-welcome-c2__main {
    width: min(1180px, calc(100% - 48px));
    height: calc(100dvh - 64px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: clamp(24px, 3.5vh, 38px) 0 16px;
  }

  .falue-welcome-c2__intro--face-value {
    flex: 0 0 auto;
    margin: 0 0 2px;
  }

  .falue-welcome-c2__intro--face-value h1 {
    gap: 2px;
  }

  /* First line deliberately runs wider than the condensed second line. */
  .falue-welcome-c2__intro--face-value h1 > span {
    font-size: clamp(16px, 1.55vw, 22px);
    font-weight: 500;
    letter-spacing: .29em;
    transform: scaleX(1.08);
    transform-origin: center;
  }

  .falue-welcome-c2__intro--face-value h1 > strong {
    font-size: clamp(52px, 5.05vw, 70px);
    line-height: .94;
    letter-spacing: -.035em;
    transform: scaleX(.91);
    transform-origin: center;
  }

  .falue-welcome-c2__demo {
    width: min(970px, 100%);
    min-height: 300px;
    max-height: 370px;
    grid-template-columns: minmax(145px, .38fr) minmax(430px, 1.34fr) minmax(145px, .38fr);
    margin: 2px auto 0;
  }

  .falue-welcome-c2__reveal {
    min-height: 245px;
    height: 78%;
    border-radius: 25px;
  }

  .falue-welcome-c2__post {
    width: min(100%, 515px);
  }

  .falue-welcome-c2__post header {
    height: 60px;
  }

  .falue-welcome-c2__media {
    height: clamp(190px, 26vh, 235px);
  }

  .falue-welcome-c2__post footer {
    height: 52px;
  }

  .falue-welcome-c2__drag-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 0 auto 1px;
    color: #6D7285;
    font-size: 13px;
    font-weight: 700;
  }

  .falue-welcome-c2__drag-hint .falue-welcome-c2__drag-action {
    padding: 0;
    color: #606679;
    font-size: 13px;
    line-height: 1;
    letter-spacing: .005em;
  }

  .falue-welcome-c2__drag-hint b {
    padding: 0;
    color: #B1B4C0;
    font-size: 11px;
  }

  .falue-welcome-c2__claim {
    width: min(670px, 100%);
    margin: 0 auto;
  }

  .falue-welcome-c2__claim-title {
    margin: 0 0 7px;
  }

  .falue-welcome-c2__claim-box {
    min-height: 62px;
  }

  #claim-username-status {
    min-height: 12px;
    margin: 3px 0 0;
    line-height: 1.1;
  }

  /* No pill/card treatment: this is a quiet brand line under Claim. */
  .falue-welcome-c2__minimal-strip {
    width: 100%;
    min-height: 0;
    margin: 4px auto 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    color: #656A7D;
  }

  .falue-welcome-c2__minimal-strip span + span::before {
    margin: 0 12px;
    color: #A7AABD;
    font-size: 9px;
  }


}

/* Keep the full experience inside shorter desktop viewports without reopening page scroll. */
@media (max-height: 820px) and (min-width: 900px) {

  .falue-welcome-c2__intro--face-value h1 > span {
    font-size: clamp(13px, 1.25vw, 17px);
    letter-spacing: .27em;
  }
  .falue-welcome-c2__intro--face-value h1 > strong {
    font-size: clamp(42px, 4.25vw, 56px);
  }
  .falue-welcome-c2__demo {
    min-height: 235px;
    max-height: 260px;
    width: min(870px, 100%);
    grid-template-columns: minmax(125px, .38fr) minmax(390px, 1.34fr) minmax(125px, .38fr);
  }
  .falue-welcome-c2__reveal {
    min-height: 200px;
  }
  .falue-welcome-c2__post {
    width: min(100%, 465px);
  }
  .falue-welcome-c2__post header { height: 50px; }
  .falue-welcome-c2__media { height: 155px; }
  .falue-welcome-c2__post footer { height: 43px; }

  .falue-welcome-c2__claim-box { min-height: 54px; }
  .falue-welcome-c2__claim-prefix,
  .falue-welcome-c2__claim-box input,
  #claim-username-button { height: 42px; }

  .falue-welcome-c2__claim-card { padding: 10px 13px 8px; }
  .falue-welcome-c2__launch-row { margin-bottom: 8px; }
  .falue-welcome-c2__launch-copy { font-size: 15px; }
  .falue-welcome-c2__launch-copy .falue-brand-word { font-size: 21px; }
  .falue-welcome-c2__countdown { grid-template-columns: repeat(4, 45px); gap: 8px; }
  .falue-welcome-c2__countdown-unit strong { width: 43px; height: 43px; font-size: 13px; }
  .falue-welcome-c2__countdown-unit span { font-size: 7px; }


}

/* Mobile keeps its scrollable stacked layout, but follows the new Claim -> brand line order. */
@media (max-width: 899.98px) {
  .falue-welcome-c2__claim-card {
    padding: 10px 9px 8px;
    border-radius: 20px;
  }
  .falue-welcome-c2__launch-row {
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    margin-bottom: 8px;
  }
  .falue-welcome-c2__launch-copy {
    justify-content: center;
    font-size: 14px;
    text-align: center;
  }
  .falue-welcome-c2__launch-copy .falue-brand-word { font-size: 19px; }
  .falue-welcome-c2__countdown {
    width: min(238px, 100%);
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 7px;
  }
  .falue-welcome-c2__countdown-unit strong { width: 42px; height: 42px; font-size: 12px; }
  .falue-welcome-c2__countdown-unit span { font-size: 7px; }
  .falue-welcome-c2__minimal-strip {
    width: 100%;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    color: #656A7D;
  }
  .falue-welcome-c2__claim-title {
    margin-bottom: 7px;
  }
  .falue-welcome-c2__cta-row { margin-top: 2px; }
}

@media (min-width: 900px) {
  /* Lower the complete experience into the viewport while tightening its internal rhythm. */
  .falue-welcome-c2__main {
    gap: 6px;
  }

  /* Keep headline and demo visually connected. */


  .falue-welcome-c2__demo {
    gap: 0;
  }

  /* Side controls belong to the card interaction, not separate floating widgets. */
  .falue-welcome-c2__reveal--left {
    transform-origin: right center;
  }
  .falue-welcome-c2__reveal--right {
    transform-origin: left center;
  }

  /* Keep the gesture guide attached to the card, then clearly separate Claim. */
  .falue-welcome-c2__drag-hint {
    min-height: 20px;
  }


  /* Do not reserve an empty status row when there is no claim message. */
  #claim-username-status:empty {
    min-height: 0;
    margin: 0;
  }

  /* Strong enough to read, still deliberately secondary to Claim. */
  .falue-welcome-c2__minimal-strip {
    line-height: 1.35;
  }

  .falue-welcome-c2__minimal-strip span + span::before {
    margin-left: 14px;
    margin-right: 14px;
  }


}

/* Preserve the fixed one-screen desktop experience on shorter displays. */
@media (max-height: 820px) and (min-width: 900px) {
  .falue-welcome-c2__main {
    gap: 5px;
  }
  .falue-welcome-c2__demo {
    gap: 0;
  }


}

@media (min-width: 900px) {
  /* Center the finished composition lower in the available viewport. */
  .falue-welcome-c2__main {
    padding-top: clamp(100px, 10.8vh, 118px);
    padding-bottom: 12px;
  }

  /* Give the condensed question a little air before the interactive card. */
  .falue-welcome-c2__intro--face-value {
    margin-bottom: 5px;
  }
  .falue-welcome-c2__demo {
    margin-top: 2px;
  }

  /* Keep the gesture guide visually attached to the demo. */
  .falue-welcome-c2__drag-hint {
    margin-top: -8px;
    margin-bottom: 16px;
  }

  /* Claim label is clearer, but not visually heavier than the headline. */
  .falue-welcome-c2__claim-title {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: .004em;
  }

  /* Preserve the brand statement in its current position and hierarchy. */
  .falue-welcome-c2__minimal-strip {
    margin-top: 8px;
    font-size: 15px;
    font-weight: 600;
  }


  .falue-welcome-c2__cta-row {
    margin-top: 6px;
    gap: 10px;
  }
  .falue-welcome-c2__primary-cta,
  .falue-welcome-c2__secondary-cta {
    min-width: 170px;
    height: 55px;
  }
}

/* Short desktop displays stay fixed to one screen and compact automatically. */
@media (max-height: 820px) and (min-width: 900px) {
  .falue-welcome-c2__main {
    padding-top: 28px;
    padding-bottom: 6px;
  }
  .falue-welcome-c2__intro--face-value {
    margin-bottom: 1px;
  }
  .falue-welcome-c2__demo {
    margin-top: -2px;
  }
  .falue-welcome-c2__drag-hint {
    margin-top: -6px;
    margin-bottom: 8px;
  }
  .falue-welcome-c2__claim-title {
    margin-bottom: 6px;
    font-size: 14px;
    font-weight: 600;
  }
  .falue-welcome-c2__minimal-strip {
    margin-top: 4px;
    font-size: 13px;
  }
  .falue-welcome-c2__cta-row {
    margin-top: 3px;
  }
  .falue-welcome-c2__primary-cta,
  .falue-welcome-c2__secondary-cta {
    min-width: 160px;
    height: 46px;
  }
}

.falue-welcome-c2__claim-box {
  border-width: 2px;
  border-color: rgba(43,45,66,.08);
  box-shadow: 0 5px 15px rgba(43,45,66,.065), 0 0 0 1px rgba(43,45,66,.025);
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}
.falue-welcome-c2__claim-box.is-neutral {
  border-color: rgba(43,45,66,.08);
}
.falue-welcome-c2__claim-box.is-loading {
  border-color: rgba(93,95,147,.20);
  box-shadow: 0 5px 15px rgba(43,45,66,.065), 0 0 0 4px rgba(93,95,147,.06);
}
.falue-welcome-c2__claim-box.is-success {
  border-color: rgba(46,155,100,.45);
  box-shadow: 0 6px 16px rgba(46,155,100,.08), 0 0 0 4px rgba(46,155,100,.07);
}
.falue-welcome-c2__claim-box.is-error {
  border-color: rgba(212,80,98,.36);
  box-shadow: 0 6px 16px rgba(212,80,98,.075), 0 0 0 4px rgba(212,80,98,.06);
}

.falue-welcome-c2__claim-status {
  width: 100%;
  margin: 8px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 18px;
  text-align: center;
  color: #7A8092;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.35;
}
.falue-welcome-c2__claim-status-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0;
  background: #EEF0F7;
  color: #7A8092;
  font-size: 12px;
  font-weight: 800;
}
.falue-welcome-c2__claim-status-icon::before { content: 'i'; }
.falue-welcome-c2__claim-status.is-neutral { color: #7A8092; }
.falue-welcome-c2__claim-status.is-neutral .falue-welcome-c2__claim-status-icon { display: none; }
.falue-welcome-c2__claim-status.is-loading { color: #686E86; }
.falue-welcome-c2__claim-status.is-loading .falue-welcome-c2__claim-status-icon { background: #EEF0F7; color: #686E86; }
.falue-welcome-c2__claim-status.is-loading .falue-welcome-c2__claim-status-icon::before { content: '…'; font-size: 15px; line-height: 1; transform: translateY(-1px); }
.falue-welcome-c2__claim-status.is-success { color: #2E9B64; }
.falue-welcome-c2__claim-status.is-success .falue-welcome-c2__claim-status-icon { background: rgba(46,155,100,.12); color: #2E9B64; }
.falue-welcome-c2__claim-status.is-success .falue-welcome-c2__claim-status-icon::before { content: '✓'; }
.falue-welcome-c2__claim-status.is-error { color: #D45062; }
.falue-welcome-c2__claim-status.is-error .falue-welcome-c2__claim-status-icon { background: rgba(212,80,98,.12); color: #D45062; }
.falue-welcome-c2__claim-status.is-error .falue-welcome-c2__claim-status-icon::before { content: '!'; }

@media (min-width: 900px) {
  .falue-welcome-c2__claim-title {
    margin-bottom: 8px;
  }
  .falue-welcome-c2__claim-status {
    margin-top: 7px;
  }
}

@media (max-width: 640px) {
  .falue-welcome-c2__claim-status {
    width: 100%;
    font-size: 12px;
    margin-top: 8px;
  }
  .falue-welcome-c2__claim-status-icon {
    width: 16px;
    height: 16px;
    flex-basis: 16px;
    font-size: 11px;
  }
}

.falue-welcome-login-modal__backdrop {
  background: rgba(35,39,57,.19);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.falue-welcome-login-modal__dialog {
  width: min(528px, calc(100vw - 36px));
  border-radius: 28px;
  padding: 60px 56px 50px;
  box-shadow: 0 28px 68px rgba(36,38,57,.18), 0 8px 22px rgba(36,38,57,.07);
}

/* Confine the organic treatment to the upper-right corner; no vertical purple strip. */
.falue-welcome-login-modal__corner {
  width: 170px;
  height: 145px;
}

/* Place the close control inside the white/purple transition, as in the approved mockup. */
.falue-welcome-login-modal__close {
  top: 35px;
  right: 38px;
  width: 44px;
  height: 44px;
  box-shadow: 0 8px 22px rgba(43,45,66,.11), 0 0 0 1px rgba(43,45,66,.035);
}

.falue-welcome-login-modal .right-form .title {
  margin-bottom: 32px;
}

/* Slightly roomier horizontal composition while keeping the exact approved field order. */
.falue-login-field-group { margin-bottom: 22px; }
.falue-login-password-group { margin-bottom: 16px; }

.falue-login-forgot {
  color: #6047EB !important;
  font-size: 12px;
  font-weight: 500;
  opacity: .9;
}

/* Neutral fields stay soft; purple appears only on focus. */
.falue-login-field {
  height: 58px;
  border-color: #DCDDE6;
  background: #FCFCFE;
  box-shadow: 0 1px 0 rgba(43,45,66,.02);
}
.falue-login-field:focus-within {
  border-color: rgba(93,67,241,.58);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(93,67,241,.065);
}
.falue-login-field input:-webkit-autofill,
.falue-login-field input:-webkit-autofill:hover,
.falue-login-field input:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0 1000px #FCFCFE inset !important;
}
.falue-login-field:focus-within input:-webkit-autofill,
.falue-login-field:focus-within input:-webkit-autofill:hover,
.falue-login-field:focus-within input:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0 1000px #fff inset !important;
}

/* Tighten remember-device to the password field, matching the mockup. */


/* Same gradient, softer premium elevation. */
.falue-welcome-login-modal .login_signup_combo .btn-main {
  box-shadow: 0 10px 23px rgba(99,71,250,.17) !important;
}

@media (max-width: 620px) {
  .falue-welcome-login-modal__dialog {
    width: min(500px, calc(100vw - 24px));
    padding: 48px 28px 34px;
  }
  .falue-welcome-login-modal__corner {
    width: 148px;
    height: 126px;
  }
  .falue-welcome-login-modal__close {
    top: 28px;
    right: 29px;
    width: 41px;
    height: 41px;
  }
}

.falue-welcome-login-modal .falue-login-remember {
  display: flex !important;
  align-items: center !important;
  margin: 0 0 26px !important;
  padding: 0 !important;
}
.falue-welcome-login-modal .falue-login-remember > input#remember_device {
  display: none !important;
  appearance: none !important;
  -webkit-appearance: none !important;
  opacity: 0 !important;
  width: 0 !important;
  height: 0 !important;
  position: absolute !important;
  pointer-events: none !important;
}
.falue-welcome-login-modal .falue-login-remember-toggle {
  appearance: none;
  -webkit-appearance: none;
  border: 0;
  background: transparent;
  margin: 0;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #2F3249;
  font: inherit;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  cursor: pointer;
  user-select: none;
}
/* Prevent any legacy checkbox/label generated marks from appearing. */
.falue-welcome-login-modal .falue-login-remember-toggle::before,
.falue-welcome-login-modal .falue-login-remember-toggle::after,
.falue-welcome-login-modal .falue-login-remember::before,
.falue-welcome-login-modal .falue-login-remember::after {
  content: none !important;
  display: none !important;
}
.falue-welcome-login-modal .falue-login-remember__check {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.falue-welcome-login-modal .falue-login-remember__unchecked {
  width: 18px;
  height: 18px;
  display: block;
  border: 1.5px solid #C8CDDA;
  border-radius: 50%;
  background: #fff;
  box-sizing: border-box;
}
.falue-welcome-login-modal .falue-login-remember__checked {
  width: 20px;
  height: 20px;
  display: none;
  flex: 0 0 20px;
}
.falue-welcome-login-modal .falue-login-remember-toggle.is-checked .falue-login-remember__unchecked {
  display: none;
}
.falue-welcome-login-modal .falue-login-remember-toggle.is-checked .falue-login-remember__checked {
  display: block;
}
.falue-welcome-login-modal .falue-login-remember-toggle:focus-visible {
  outline: 2px solid rgba(93,95,147,.34);
  outline-offset: 4px;
  border-radius: 6px;
}

.falue-login-field__icon--user,
.falue-login-field__icon--password {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.falue-login-field__icon--user svg,
.falue-login-field__icon--password svg {
  width: 22px !important;
  height: 22px !important;
}
.falue-login-field__icon--user svg *,
.falue-login-field__icon--password svg * {
  fill: currentColor !important;
  stroke: none !important;
}

.falue-welcome-login-modal__close {
  font-size: 0;
}
.falue-welcome-login-modal__close svg {
  width: 18px;
  height: 18px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.15;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.falue-login-field__icon {
  width: 20px;
  height: 20px;
  color: #30334B;
}
.falue-login-field__icon svg {
  display: block;
}
.falue-login-field__icon--user svg,
.falue-login-field__icon--password svg {
  fill: currentColor !important;
  stroke: none !important;
}

.falue-login-field.has-value .falue-login-field__icon--password .falue-login-lock-icon--locked { display: none; }
.falue-login-field.has-value .falue-login-field__icon--password .falue-login-lock-icon--unlocked { display: block; }
.falue-login-field__icon--password .falue-login-lock-icon--unlocked {
  display: none !important;
}
.falue-login-field__icon--password .falue-login-lock-icon--locked {
  display: block !important;
}
.falue-login-field.login-success .falue-login-field__icon--password .falue-login-lock-icon--locked {
  display: none !important;
}
.falue-login-field.login-success .falue-login-field__icon--password .falue-login-lock-icon--unlocked {
  display: block !important;
}
.falue-password-visibility {
  position: absolute !important;
  right: 16px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  width: 32px !important;
  height: 32px !important;
  margin: 0 !important;
  padding: 0 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border: 0 !important;
  outline: 0 !important;
  border-radius: 50% !important;
  background: transparent !important;
  box-shadow: none !important;
  cursor: pointer !important;
  z-index: 20 !important;
  appearance: none !important;
  -webkit-appearance: none !important;
}
.falue-password-visibility:hover {
  background: rgba(43,45,66,.045) !important;
}
.falue-password-visibility:focus-visible {
  outline: 2px solid rgba(93,95,147,.32) !important;
  outline-offset: 2px !important;
}
.falue-password-visibility .falue-password-eye {
  position: static !important;
  width: 22px !important;
  height: 22px !important;
  min-width: 22px !important;
  min-height: 22px !important;
  max-width: 22px !important;
  max-height: 22px !important;
  margin: 0 !important;
  padding: 0 !important;
  display: block !important;
  object-fit: contain !important;
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: none !important;
  transform: none !important;
}
.falue-password-visibility .falue-password-eye[hidden] {
  display: none !important;
}
/* Reserve input space for the password visibility control. */
.falue-login-password-group .falue-login-field input#password {
  padding-right: 58px !important;
}

.falue-welcome-login-modal__dialog.is-login-success {
  min-height: 510px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.falue-login-success[hidden] { display: none !important; }
.falue-login-success {
  position: relative;
  z-index: 3;
  width: 100%;
  min-height: 390px;
  padding: 42px 0 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  opacity: 0;
  transform: translateY(10px) scale(.985);
  transition: opacity .28s ease, transform .34s cubic-bezier(.2,.8,.2,1);
}
.falue-login-success.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.falue-login-success__profile-stage {
  position: relative;
  width: 224px;
  height: 224px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
}
.falue-login-success__avatar-ring {
  position: relative;
  z-index: 2;
  width: 142px;
  height: 142px;
  padding: 6px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 2px rgba(117,79,255,.34), 0 0 0 8px rgba(117,79,255,.08), 0 16px 34px rgba(43,45,66,.17);
}
.falue-login-success__avatar-ring img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 50%;
  object-fit: cover;
  background: #F5F4FA;
}
.falue-login-success__avatar-ring::after {
  content: "";
  position: absolute;
  inset: -8px;
  z-index: -1;
  border-radius: 50%;
  border: 1px solid rgba(118,82,246,.24);
  box-shadow: 0 0 20px rgba(118,82,246,.10);
  animation: falueLoginAvatarPulse 2.1s ease-in-out infinite;
}
@keyframes falueLoginAvatarPulse {
  0%,100% { transform: scale(.985); opacity: .45; }
  50% { transform: scale(1.025); opacity: .9; }
}
.falue-login-success__orbit {
  position: absolute;
  inset: 0;
  z-index: 1;
  transform-origin: 50% 50%;
  pointer-events: none;
}

.falue-login-success__orbit span {
  --angle: calc(var(--i) * 20deg);
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0;
  height: 0;
  transform: rotate(var(--angle)) translateY(-100px);
}
.falue-login-success__orbit span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #7652F6;
  opacity: .16;
  transform: translate(-50%,-50%) scale(.74);
  box-shadow: 0 0 0 rgba(118,82,246,0);
  animation: falueLoginChase 1.44s linear infinite;
  animation-delay: calc(var(--i) * -0.08s);
  will-change: transform, opacity, box-shadow;
}
.falue-login-success__orbit span:nth-child(3n)::before { background: #835EF8; }
.falue-login-success__orbit span:nth-child(4n)::before { background: #6744EF; }
.falue-login-success h2 {
  margin: 0;
  max-width: 100%;
  color: #20223A;
  font-size: 32px;
  line-height: 1.14;
  font-weight: 800;
  letter-spacing: -.035em;
}
.falue-login-success h2 span { overflow-wrap: anywhere; }
.falue-login-success p {
  margin: 11px 0 0;
  color: #5E637A;
  font-size: 18px;
  line-height: 1.35;
  font-weight: 500;
}
@keyframes falueLoginChase {
  0%, 100% {
    opacity: .13;
    transform: translate(-50%,-50%) scale(.68);
    box-shadow: 0 0 0 rgba(118,82,246,0);
  }
  9% {
    opacity: .34;
    transform: translate(-50%,-50%) scale(.88);
  }
  16% {
    opacity: 1;
    transform: translate(-50%,-50%) scale(1.72);
    box-shadow: 0 0 14px 5px rgba(118,82,246,.28);
  }
  24% {
    opacity: .82;
    transform: translate(-50%,-50%) scale(1.28);
    box-shadow: 0 0 10px 3px rgba(118,82,246,.18);
  }
  34% {
    opacity: .52;
    transform: translate(-50%,-50%) scale(1.03);
    box-shadow: 0 0 6px 1px rgba(118,82,246,.10);
  }
  48% {
    opacity: .25;
    transform: translate(-50%,-50%) scale(.82);
    box-shadow: 0 0 0 rgba(118,82,246,0);
  }
  66% {
    opacity: .13;
    transform: translate(-50%,-50%) scale(.68);
  }
}
@media (prefers-reduced-motion: reduce) {
  .falue-login-success__orbit span::before {
    animation-duration: 4.5s;
    animation-timing-function: ease-in-out;
  }
  .falue-login-success { transition: none; }
}
@media (max-width: 620px) {
  .falue-welcome-login-modal__dialog.is-login-success { min-height: 455px; }
  .falue-login-success { min-height: 350px; padding-top: 34px; }
  .falue-login-success__profile-stage { width: 196px; height: 196px; margin-bottom: 20px; }
  .falue-login-success__avatar-ring { width: 126px; height: 126px; }
  .falue-login-success__orbit span { transform: rotate(var(--angle)) translateY(-87px); }
  .falue-login-success h2 { font-size: 28px; }
  .falue-login-success p { font-size: 16px; }
}

/* === Welcome interaction and fitted layout === */

/* One clear account action: the username claim remains the registration path. */
.falue-welcome-c2__login-cta {
  width: min(360px, 100%);
  min-width: 220px;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}

.falue-welcome-c2__login-cta:hover {
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: 0 15px 30px rgba(93, 95, 147, .28);
}

.falue-welcome-c2__login-cta:focus-visible {
  outline: 3px solid rgba(103, 78, 240, .26);
  outline-offset: 3px;
}

/* Welcome demo identity: use the supplied portrait as a true face-focused avatar. */
.falue-welcome-c2__demo-avatar img {
  width: 150% !important;
  height: 150% !important;
  max-width: none !important;
  max-height: none !important;
  display: block !important;
  object-fit: cover !important;
  object-position: 50% 20% !important;
  transform: none !important;
}

/* Live rating smoke follows the same red → blue → purple tiers as the heart. */
.falue-welcome-c2__reveal--right[data-rating-tone="red"] {
  background: linear-gradient(145deg, #E85D70 0%, #B83D55 58%, #602C3B 100%) !important;
}

.falue-welcome-c2__reveal--right[data-rating-tone="blue"] {
  background: linear-gradient(145deg, #5A96F4 0%, #416FBD 58%, #2B416E 100%) !important;
}

.falue-welcome-c2__reveal--right[data-rating-tone="purple"] {
  background: linear-gradient(145deg, #7157D8 0%, #5D5F93 58%, #3F436B 100%) !important;
}

/*
 * Cookie consent: compact floating card, always anchored to the bottom.
 * The source markup is provided by the site's cookie-consent library.
 */
.cc-window.cc-floating.cc-bottom {
  position: fixed !important;
  z-index: 2147483000 !important;
  top: auto !important;
  right: 16px !important;
  bottom: max(16px, env(safe-area-inset-bottom)) !important;
  left: 16px !important;
  width: min(500px, calc(100% - 32px)) !important;
  max-width: 500px !important;
  min-width: 0 !important;
  margin: 0 auto !important;
  padding: 13px 13px 13px 16px !important;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto !important;
  align-items: center !important;
  gap: 14px !important;
  overflow: hidden !important;
  border: 1px solid rgba(43, 45, 66, .10) !important;
  border-radius: 20px !important;
  background: rgba(255, 255, 255, .97) !important;
  color: #34364d !important;
  box-shadow: 0 20px 55px rgba(43, 45, 66, .20), 0 3px 12px rgba(43, 45, 66, .08) !important;
  font-family: var(--falue-font-ui, "Plus Jakarta Sans", "Inter", Arial, sans-serif) !important;
  backdrop-filter: blur(18px) !important;
  -webkit-backdrop-filter: blur(18px) !important;
}

/* Never override the consent library when it dismisses or hides the card. */
.cc-window.cc-floating.cc-bottom.cc-invisible,
.cc-window.cc-floating.cc-bottom[aria-hidden="true"] {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  transform: translateY(16px) !important;
}

.cc-window.cc-floating.cc-bottom[hidden],
.cc-window.cc-floating.cc-bottom[style*="display: none"],
.cc-window.cc-floating.cc-bottom[style*="display:none"] {
  display: none !important;
}

.cc-window.cc-floating.cc-bottom::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, #5d5f93, #6a54f4 55%, #8a3cf0);
}

.cc-window.cc-floating.cc-bottom .cc-message {
  min-width: 0 !important;
  margin: 0 !important;
  color: #555a70 !important;
  font-size: 12px !important;
  font-weight: 500 !important;
  line-height: 1.42 !important;
}

.cc-window.cc-floating.cc-bottom .cc-link {
  display: inline !important;
  padding: 0 !important;
  color: #6750e8 !important;
  font-weight: 750 !important;
  text-decoration: none !important;
  opacity: 1 !important;
}

.cc-window.cc-floating.cc-bottom .cc-link:hover {
  text-decoration: underline !important;
}

.cc-window.cc-floating.cc-bottom .cc-compliance {
  min-width: 0 !important;
  margin: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
}

.cc-window.cc-floating.cc-bottom .cc-btn,
.cc-window.cc-floating.cc-bottom .cc-dismiss {
  min-width: 82px !important;
  height: 40px !important;
  margin: 0 !important;
  padding: 0 16px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border: 0 !important;
  border-radius: 13px !important;
  background: linear-gradient(135deg, #5d5f93, #7b4de9) !important;
  color: #fff !important;
  box-shadow: 0 9px 20px rgba(93, 95, 147, .24) !important;
  font-size: 12px !important;
  font-weight: 800 !important;
  line-height: 1 !important;
  text-decoration: none !important;
  white-space: nowrap !important;
}

.cc-window.cc-floating.cc-bottom .cc-btn:hover,
.cc-window.cc-floating.cc-bottom .cc-dismiss:hover {
  color: #fff !important;
  filter: brightness(1.04);
}

/* Mobile welcome is a single, fitted screen. Nothing in this layer affects the feed. */
@media (max-width: 899.98px) {
  html:not(.falue-prelaunch-page),
  html:not(.falue-prelaunch-page) body {
    width: 100% !important;
    height: 100% !important;
    min-height: 100% !important;
    overflow: hidden !important;
    overscroll-behavior: none !important;
  }

  body {
    position: relative !important;
  }

  .falue-welcome-c2 {
    position: fixed !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100vh !important;
    height: 100dvh !important;
    min-height: 0 !important;
    max-height: 100dvh !important;
    padding: 0 !important;
    overflow: hidden !important;
  }

  .falue-welcome-c2__topbar {
    width: calc(100% - 28px) !important;
    height: clamp(50px, 7.1dvh, 60px) !important;
    min-height: 0 !important;
    flex: 0 0 auto;
  }

  .falue-welcome-c2__brand img {
    width: clamp(31px, 8.7vw, 38px);
    height: clamp(31px, 8.7vw, 38px);
  }

  .falue-welcome-c2__brand span {
    font-size: clamp(21px, 6vw, 24px);
  }

  .falue-welcome-c2__main {
    width: calc(100% - 28px) !important;
    height: calc(100dvh - clamp(50px, 7.1dvh, 60px)) !important;
    min-height: 0 !important;
    margin: 0 auto !important;
    padding: clamp(3px, .7dvh, 7px) 0 max(8px, env(safe-area-inset-bottom)) !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: center !important;
    gap: clamp(4px, .75dvh, 8px) !important;
    overflow: visible !important;
  }

  .falue-welcome-c2__intro--face-value {
    flex: 0 0 auto;
  }

  .falue-welcome-c2__intro--face-value h1 {
    gap: clamp(1px, .35dvh, 4px) !important;
  }

  .falue-welcome-c2__intro--face-value h1 > span {
    font-size: clamp(10px, 3vw, 14px) !important;
    line-height: 1 !important;
    letter-spacing: .12em !important;
  }

  .falue-welcome-c2__intro--face-value h1 > strong {
    font-size: clamp(36px, 11.8vw, 51px) !important;
    line-height: .95 !important;
  }

  .falue-welcome-c2__demo {
    position: relative !important;
    isolation: isolate;
    width: 100% !important;
    height: clamp(185px, 34dvh, 315px) !important;
    min-height: 0 !important;
    max-height: 315px !important;
    flex: 0 1 auto !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    align-items: center !important;
    overflow: visible !important;
  }

  /* Desktop-style actions become full-card layers behind the draggable post. */
  .falue-welcome-c2__reveal {
    position: absolute !important;
    inset: 0 !important;
    z-index: 1 !important;
    width: 100% !important;
    height: 100% !important;
    min-height: 0 !important;
    padding: 18px 22px !important;
    display: flex !important;
    pointer-events: none !important;
    border-radius: clamp(20px, 5.8vw, 25px) !important;
    opacity: clamp(0, calc(var(--reveal-progress, 0) * 100), 1) !important;
    transform: none !important;
    transition: none !important;
  }

  /* A left swipe exposes the right edge: place Not for me in that opening. */
  .falue-welcome-c2__reveal--left {
    --falue-reveal-center: clamp(12px, calc(var(--reveal-progress, 0) * 23%), 92px);
    padding: 0 !important;
    text-align: center !important;
  }

  /* A right swipe exposes the left edge: place rating feedback in that opening. */
  .falue-welcome-c2__reveal--right {
    --falue-reveal-center: clamp(12px, calc(var(--reveal-progress, 0) * 23%), 92px);
    padding: 0 !important;
    text-align: center !important;
  }

  .falue-welcome-c2__reveal--right .falue-welcome-c2__heart-img {
    position: absolute !important;
    top: 25% !important;
    left: var(--falue-reveal-center) !important;
    width: 34px !important;
    height: 31px !important;
    margin: 0 !important;
    transform: translateX(-50%) !important;
  }

  .falue-welcome-c2__reveal--right strong {
    position: absolute !important;
    top: 49% !important;
    left: var(--falue-reveal-center) !important;
    margin: 0 !important;
    font-size: clamp(25px, 7vw, 31px) !important;
    line-height: 1 !important;
    white-space: nowrap !important;
    transform: translate(-50%, -50%) !important;
  }

  .falue-welcome-c2__reveal--right .falue-welcome-c2__reveal-like-label {
    position: absolute !important;
    top: 63% !important;
    left: var(--falue-reveal-center) !important;
    margin: 0 !important;
    font-size: 11px !important;
    line-height: 1 !important;
    white-space: nowrap !important;
    transform: translateX(-50%) !important;
  }

  .falue-welcome-c2__reveal--right small {
    position: absolute !important;
    top: 72% !important;
    left: var(--falue-reveal-center) !important;
    width: 76px !important;
    margin: 0 !important;
    font-size: 9px !important;
    line-height: 1.1 !important;
    transform: translateX(-50%) !important;
  }

  .falue-welcome-c2__reveal--left .falue-welcome-c2__reveal-icon {
    position: absolute !important;
    top: 29% !important;
    right: var(--falue-reveal-center) !important;
    margin: 0 !important;
    font-size: 25px !important;
    line-height: 1 !important;
    transform: translateX(50%) !important;
  }

  .falue-welcome-c2__reveal--left strong {
    position: absolute !important;
    top: 52% !important;
    right: var(--falue-reveal-center) !important;
    width: 92px !important;
    margin: 0 !important;
    font-size: 14px !important;
    line-height: 1.1 !important;
    white-space: nowrap !important;
    transform: translate(50%, -50%) !important;
  }

  .falue-welcome-c2__reveal--left > span {
    position: absolute !important;
    top: 65% !important;
    right: var(--falue-reveal-center) !important;
    width: 92px !important;
    margin: 0 !important;
    font-size: 9px !important;
    line-height: 1.15 !important;
    transform: translateX(50%) !important;
  }

  .falue-welcome-c2__card-shell {
    position: relative !important;
    z-index: 2 !important;
    min-height: 0 !important;
    height: 100% !important;
    overflow: visible !important;
  }

  .falue-welcome-c2__post {
    width: 100% !important;
    height: 100% !important;
    max-height: 100% !important;
    display: grid !important;
    grid-template-rows: auto minmax(0, 1fr) auto !important;
    border-radius: clamp(20px, 5.8vw, 25px) !important;
    transform-origin: 50% 50% !important;
  }

  .falue-welcome-c2__card-shell.is-dragging .falue-welcome-c2__post {
    box-shadow: 0 26px 64px rgba(43, 45, 66, .25) !important;
  }

  .falue-welcome-c2__post header {
    height: clamp(44px, 6.5dvh, 56px) !important;
    padding: 7px 13px !important;
  }

  .falue-welcome-c2__media {
    width: auto !important;
    height: 100% !important;
    min-height: 0 !important;
    max-height: none !important;
    margin: 0 10px !important;
    border-radius: 17px !important;
  }

  .falue-welcome-c2__post footer {
    height: clamp(40px, 5.7dvh, 49px) !important;
    padding: 6px 9px 7px !important;
    gap: 6px !important;
    grid-template-columns: auto minmax(96px, 1fr) auto !important;
  }

  .falue-welcome-c2__post footer > span {
    min-height: 28px !important;
    padding: 0 8px !important;
    font-size: 9px !important;
  }

  .falue-welcome-c2__drag-hint {
    min-height: 18px !important;
    margin: 0 !important;
    line-height: 1 !important;
  }

  .falue-welcome-c2__drag-hint span {
    padding: 0 6px !important;
    font-size: clamp(13px, 3.8vw, 16px) !important;
  }

  .falue-welcome-c2__claim {
    width: calc(100% - 10px) !important;
    flex: 0 0 auto;
    overflow: visible !important;
  }

  .falue-welcome-c2__claim-title {
    margin: 0 0 clamp(3px, .55dvh, 6px) !important;
    font-size: clamp(11px, 3.2vw, 13px) !important;
    line-height: 1.1 !important;
  }

  .falue-welcome-c2__claim-card {
    padding: clamp(7px, 1dvh, 10px) 8px clamp(6px, .8dvh, 8px);
    border-radius: 18px;
    box-shadow: 0 10px 26px rgba(43,45,66,.085);
  }

  .falue-welcome-c2__launch-row {
    gap: clamp(3px, .55dvh, 6px);
    margin-bottom: clamp(5px, .8dvh, 8px);
  }

  .falue-welcome-c2__launch-copy {
    font-size: clamp(12px, 3.45vw, 14px);
    line-height: 1;
  }

  .falue-welcome-c2__launch-copy .falue-brand-word {
    font-size: clamp(17px, 4.8vw, 20px);
  }

  .falue-welcome-c2__countdown {
    width: min(224px, 100%);
    gap: 6px;
  }

  .falue-welcome-c2__countdown-unit {
    gap: 2px;
  }

  .falue-welcome-c2__countdown-unit strong {
    width: clamp(38px, 10.6vw, 43px);
    height: clamp(38px, 10.6vw, 43px);
    font-size: clamp(11px, 3.1vw, 13px);
  }

  .falue-welcome-c2__countdown-unit span {
    font-size: clamp(6.5px, 1.85vw, 7.5px);
  }

  .falue-welcome-c2__claim-box {
    min-height: 0 !important;
    height: clamp(49px, 6.3dvh, 56px) !important;
    padding: 5px !important;
    border-color: rgba(43, 45, 66, .07) !important;
    box-shadow: 0 9px 22px rgba(43, 45, 66, .075), 0 0 0 1px rgba(43, 45, 66, .025) !important;
  }

  .falue-welcome-c2__claim-prefix,
  .falue-welcome-c2__claim-box input,
  #claim-username-button {
    height: clamp(39px, 5.1dvh, 46px) !important;
  }

  .falue-welcome-c2__claim-prefix {
    width: clamp(39px, 10.7vw, 44px) !important;
    padding: 0 !important;
  }

  .falue-welcome-c2__claim-prefix svg {
    width: 20px;
    height: 20px;
  }

  .falue-welcome-c2__claim-box input {
    padding: 0 9px !important;
    font-size: clamp(12px, 3.45vw, 14px) !important;
  }

  #claim-username-button {
    min-width: clamp(78px, 22vw, 94px) !important;
    padding: 0 13px !important;
    font-size: clamp(12px, 3.45vw, 14px) !important;
  }

  .falue-welcome-c2__claim-status {
    min-height: clamp(15px, 2.2dvh, 18px) !important;
    margin: clamp(3px, .5dvh, 6px) 0 0 !important;
    gap: 6px !important;
    font-size: clamp(10px, 2.9vw, 12px) !important;
    line-height: 1.2 !important;
  }

  .falue-welcome-c2__claim-status-icon {
    width: 15px !important;
    height: 15px !important;
    flex-basis: 15px !important;
    font-size: 10px !important;
  }

  .falue-welcome-c2__minimal-strip {
    min-height: 0 !important;
    margin: clamp(2px, .5dvh, 5px) auto 0 !important;
    gap: 1px !important;
    padding: 0 !important;
    font-size: clamp(9px, 2.65vw, 11px) !important;
    line-height: 1.18 !important;
  }

  .falue-welcome-c2__cta-row {
    width: 100% !important;
    flex: 0 0 auto !important;
    margin: 0 !important;
  }

  .falue-welcome-c2__login-cta {
    width: 100% !important;
    min-width: 0 !important;
    height: clamp(42px, 5.8dvh, 50px) !important;
    border-radius: 14px !important;
    font-size: 14px !important;
  }

  .cc-window.cc-floating.cc-bottom {
    right: 10px !important;
    bottom: max(10px, env(safe-area-inset-bottom)) !important;
    left: 10px !important;
    width: calc(100% - 20px) !important;
    padding: 12px 11px 11px 14px !important;
    gap: 10px !important;
    border-radius: 18px !important;
  }

  .cc-window.cc-floating.cc-bottom .cc-message {
    font-size: 11px !important;
    line-height: 1.36 !important;
  }

  .cc-window.cc-floating.cc-bottom .cc-btn,
  .cc-window.cc-floating.cc-bottom .cc-dismiss {
    min-width: 72px !important;
    height: 38px !important;
    padding: 0 13px !important;
    border-radius: 12px !important;
    font-size: 11px !important;
  }
}

/* Extra-short phones keep every control usable without introducing page scroll. */
@media (max-width: 899.98px) and (max-height: 700px) {
  .falue-welcome-c2__topbar {
    height: 46px !important;
  }

  .falue-welcome-c2__main {
    height: calc(100dvh - 46px) !important;
    gap: 3px !important;
    padding-top: 2px !important;
    padding-bottom: max(5px, env(safe-area-inset-bottom)) !important;
  }

  .falue-welcome-c2__brand img {
    width: 30px;
    height: 30px;
  }

  .falue-welcome-c2__brand span {
    font-size: 20px;
  }

  .falue-welcome-c2__language > button {
    min-height: 34px;
    padding: 0 7px;
  }

  .falue-welcome-c2__intro--face-value h1 > span {
    font-size: 9px !important;
  }

  .falue-welcome-c2__intro--face-value h1 > strong {
    font-size: 33px !important;
  }

  .falue-welcome-c2__post header {
    height: 40px !important;
    padding-top: 4px !important;
    padding-bottom: 4px !important;
  }

  .falue-welcome-c2__demo-avatar {
    width: 30px;
    height: 30px;
  }

  .falue-welcome-c2__media {
    min-height: 104px !important;
    max-height: 150px !important;
  }

  .falue-welcome-c2__post footer {
    height: 38px !important;
    padding-top: 4px !important;
    padding-bottom: 5px !important;
  }

  .falue-welcome-c2__drag-hint {
    min-height: 15px !important;
  }

  .falue-welcome-c2__drag-hint span {
    font-size: 12px !important;
  }

  .falue-welcome-c2__claim-title {
    margin-bottom: 2px !important;
    font-size: 10px !important;
  }

  .falue-welcome-c2__claim-card {
    padding-top: 5px;
    padding-bottom: 4px;
  }

  .falue-welcome-c2__launch-row {
    gap: 2px;
    margin-bottom: 4px;
  }

  .falue-welcome-c2__launch-copy {
    font-size: 11px;
  }

  .falue-welcome-c2__launch-copy .falue-brand-word {
    font-size: 15px;
  }

  .falue-welcome-c2__countdown {
    width: min(200px, 100%);
    gap: 4px;
  }

  .falue-welcome-c2__countdown-unit strong {
    width: 34px;
    height: 34px;
    font-size: 10px;
  }

  .falue-welcome-c2__countdown-unit span {
    font-size: 6px;
  }

  .falue-welcome-c2__claim-box {
    height: 46px !important;
  }

  .falue-welcome-c2__claim-prefix,
  .falue-welcome-c2__claim-box input,
  #claim-username-button {
    height: 36px !important;
  }

  .falue-welcome-c2__claim-status {
    min-height: 13px !important;
    margin-top: 2px !important;
    font-size: 9px !important;
  }

  .falue-welcome-c2__claim-status-icon {
    width: 13px !important;
    height: 13px !important;
    flex-basis: 13px !important;
    font-size: 9px !important;
  }

  .falue-welcome-c2__minimal-strip {
    margin-top: 1px !important;
    font-size: 8.5px !important;
  }

  .falue-welcome-c2__login-cta {
    height: 39px !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .falue-welcome-c2__login-cta {
    transition: none !important;
  }
}

/* === Sharing controls === */
.falue-welcome-c2__demo-more.falue-welcome-share-trigger {
  -webkit-appearance: none;
  appearance: none;
  width: 40px;
  min-width: 40px;
  height: 40px;
  display: inline-grid;
  place-items: center;
  margin: -6px;
  margin-inline-start: auto;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #686c7f;
  font: inherit;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 2px;
  cursor: pointer;
  touch-action: manipulation;
}

.falue-welcome-c2__demo-more.falue-welcome-share-trigger:hover,
.falue-welcome-c2__demo-more.falue-welcome-share-trigger:focus-visible {
  background: rgba(93, 76, 210, 0.09);
  color: #5041b7;
}

.falue-welcome-share-option-a[hidden] {
  display: none !important;
}

.falue-welcome-share-option-a {
  position: fixed;
  inset: 0;
  z-index: 2147483000;
  display: grid;
  align-items: end;
  justify-items: center;
  padding: 12px;
  color: #25283a;
  font-family: inherit;
}

.falue-welcome-share-option-a__backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  background: rgba(20, 22, 36, 0.36);
  opacity: 0;
  cursor: default;
  transition: opacity 180ms ease;
}

.falue-welcome-share-option-a__sheet {
  position: relative;
  width: min(100%, 430px);
  margin: 0 0 max(0px, env(safe-area-inset-bottom));
  padding: 10px 16px 16px;
  overflow: hidden;
  border: 1px solid rgba(80, 75, 125, 0.1);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(31, 29, 55, 0.32);
  opacity: 0;
  transform: translateY(calc(100% + 28px));
  transition: transform 220ms cubic-bezier(0.22, 1, 0.36, 1), opacity 160ms ease;
}

.falue-welcome-share-option-a.is-open .falue-welcome-share-option-a__backdrop,
.falue-welcome-share-option-a.is-open .falue-welcome-share-option-a__sheet {
  opacity: 1;
}

.falue-welcome-share-option-a.is-open .falue-welcome-share-option-a__sheet {
  transform: translateY(0);
}

.falue-welcome-share-option-a__handle {
  width: 42px;
  height: 4px;
  margin: 0 auto 8px;
  border-radius: 999px;
  background: #dadbe5;
}

.falue-welcome-share-option-a__close {
  position: absolute;
  top: 18px;
  inset-inline-end: 16px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #f2f2f7;
  color: #34374b;
  cursor: pointer;
}

.falue-welcome-share-option-a__close svg,
.falue-welcome-share-option-a__action svg {
  width: 20px;
  height: 20px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.falue-welcome-share-option-a__title {
  margin: 8px 48px 2px;
  color: #202337;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
}

.falue-welcome-share-option-a__subtitle {
  margin: 0 40px 14px;
  color: #7a7e90;
  font-size: 13px;
  line-height: 1.35;
  text-align: center;
}

.falue-welcome-share-option-a__action {
  -webkit-appearance: none;
  appearance: none;
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  padding: 0 16px;
  border: 0;
  border-radius: 17px;
  color: #2e3144;
  background: #f2f2f7;
  font: inherit;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  text-align: start;
  text-decoration: none;
  cursor: pointer;
  touch-action: manipulation;
}

.falue-welcome-share-option-a__action--primary {
  width: 100%;
  color: #fff;
  background: linear-gradient(135deg, #60629c 0%, #6f50e9 55%, #7c3ff0 100%);
  box-shadow: 0 12px 28px rgba(105, 74, 229, 0.28);
}

.falue-welcome-share-option-a__action--primary span {
  flex: 1;
}

.falue-welcome-share-option-a[dir="rtl"] .falue-welcome-share-option-a__action--primary svg:last-child {
  transform: rotate(180deg);
}

.falue-welcome-share-option-a__alternatives {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 8px;
}

.falue-welcome-share-option-a__status {
  min-height: 18px;
  margin: 8px 4px 0;
  color: #686c7f;
  font-size: 12px;
  line-height: 1.35;
  text-align: center;
}

@media (min-width: 900px) {
  .falue-welcome-share-option-a {
    align-items: center;
  }

  .falue-welcome-share-option-a__sheet {
    margin: 0;
  }
}

@media (max-width: 359px) {
  .falue-welcome-share-option-a {
    padding: 8px;
  }

  .falue-welcome-share-option-a__sheet {
    padding-right: 12px;
    padding-left: 12px;
    border-radius: 24px;
  }

  .falue-welcome-share-option-a__action {
    padding-right: 12px;
    padding-left: 12px;
    font-size: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .falue-welcome-share-option-a__backdrop,
  .falue-welcome-share-option-a__sheet {
    transition-duration: 1ms;
  }
}

/* === Language fitting === */
/* Welcome page: preserve the compact, single-line mobile rhythm across languages. */
@media (max-width: 899.98px) {
  #falue-welcome-c2 .falue-welcome-c2__intro--face-value h1 > span,
  #falue-welcome-c2 .falue-welcome-c2__intro--face-value h1 > strong,
  #falue-welcome-c2 .falue-welcome-c2__reveal--left > span,
  #falue-welcome-c2 .falue-welcome-c2__reveal--left strong,
  #falue-welcome-c2 .falue-welcome-c2__reveal--right small,
  #falue-welcome-c2 .falue-welcome-c2__drag-action,
  #falue-welcome-c2 .falue-welcome-c2__claim-status-text,
  .falue-welcome-share-option-a__title,
  .falue-welcome-share-option-a__action span {
    white-space: nowrap;
  }

  #falue-welcome-c2 .falue-welcome-c2__intro--face-value h1 > span,
  #falue-welcome-c2 .falue-welcome-c2__intro--face-value h1 > strong {
    max-width: 100%;
  }

  /* Longer translated questions keep the same single-line composition. */
  #falue-welcome-c2[data-welcome-language="french"] .falue-welcome-c2__intro--face-value h1 > strong {
    font-size: clamp(26px, 11.25vw, 51px) !important;
  }

  #falue-welcome-c2[data-welcome-language="filipino"] .falue-welcome-c2__intro--face-value h1 > strong,
  #falue-welcome-c2[data-welcome-language="indonesian"] .falue-welcome-c2__intro--face-value h1 > strong {
    font-size: clamp(24px, 10vw, 51px) !important;
  }

  #falue-welcome-c2[data-welcome-language="vietnamese"] .falue-welcome-c2__intro--face-value h1 > strong {
    font-size: clamp(24px, 10.3vw, 51px) !important;
  }

  #falue-welcome-c2[data-welcome-language="persian"] .falue-welcome-c2__intro--face-value h1 > strong {
    font-size: clamp(22px, 9.35vw, 51px) !important;
  }

  #falue-welcome-c2[data-welcome-language="japanese"] .falue-welcome-c2__intro--face-value h1 > strong {
    font-size: clamp(22px, 9.05vw, 51px) !important;
  }

  #falue-welcome-c2[data-welcome-language="korean"] .falue-welcome-c2__intro--face-value h1 > strong {
    font-size: clamp(20px, 7.5vw, 51px) !important;
  }
}

@media (max-width: 359.98px) {
  #falue-welcome-c2 .falue-welcome-c2__reveal--left > span,
  #falue-welcome-c2 .falue-welcome-c2__reveal--left strong,
  #falue-welcome-c2 .falue-welcome-c2__reveal--right small,
  #falue-welcome-c2 .falue-welcome-c2__drag-action,
  .falue-welcome-share-option-a__title,
  .falue-welcome-share-option-a__action span {
    white-space: nowrap;
  }

  #falue-welcome-c2:not([data-welcome-language="english"]) .falue-welcome-c2__reveal--left > span {
    font-size: 8px;
  }

  #falue-welcome-c2:not([data-welcome-language="english"]) .falue-welcome-c2__reveal--left strong {
    font-size: 10px;
  }

  #falue-welcome-c2[data-welcome-language="vietnamese"] .falue-welcome-c2__reveal--left strong {
    font-size: 9px;
  }

  #falue-welcome-c2:not([data-welcome-language="english"]) .falue-welcome-c2__reveal--right small {
    font-size: 8px;
  }

  #falue-welcome-c2:not([data-welcome-language="english"]) .falue-welcome-c2__drag-action {
    font-size: 10px;
  }

  #falue-welcome-c2[data-welcome-language="danish"] .falue-welcome-c2__drag-action,
  #falue-welcome-c2[data-welcome-language="dutch"] .falue-welcome-c2__drag-action,
  #falue-welcome-c2[data-welcome-language="german"] .falue-welcome-c2__drag-action,
  #falue-welcome-c2[data-welcome-language="russian"] .falue-welcome-c2__drag-action,
  #falue-welcome-c2[data-welcome-language="vietnamese"] .falue-welcome-c2__drag-action {
    font-size: 9px;
  }

  .falue-welcome-share-option-a__title {
    margin-inline: 40px;
    font-size: 15px;
  }

  .falue-welcome-share-option-a[data-welcome-language="portuguese"] .falue-welcome-share-option-a__title {
    font-size: 14px;
  }

  .falue-welcome-share-option-a:not([data-welcome-language="english"]) .falue-welcome-share-option-a__action--primary {
    gap: 8px;
    padding-inline: 12px;
    font-size: 11px;
  }

  .falue-welcome-share-option-a:not([data-welcome-language="english"]) .falue-welcome-share-option-a__alternatives .falue-welcome-share-option-a__action {
    gap: 6px;
    padding-inline: 9px;
    font-size: 11px;
  }

  #falueWelcomeLoginModal[data-welcome-language="japanese"] label[for="password"] {
    white-space: nowrap;
    font-size: 12px;
  }
}

/* Verified username reservation view */
.falue-prelaunch {
  color-scheme: light;
  --fp-ink: #2b2d42;
  --fp-muted: #6f7284;
  --fp-brand: #5d5f93;
  --fp-blue: #356bff;
  --fp-violet: #7048ee;
  --fp-coral: #f06b85;
  --fp-page: #f7f7fa;
  --fp-surface: #fff;
  --fp-soft: #f1f1f5;
  --fp-border: #e3e3e9;
  --fp-radius: 34px;
  --fp-orbit-duration: 12s;
  --fp-orbit-stroke: 4px;
  position: relative;
  isolation: isolate;
  min-height: 100vh;
  overflow-x: clip;
  background: var(--fp-page);
  color: var(--fp-ink);
  font-family: var(--falue-font-ui, "Plus Jakarta Sans", "Inter", Arial, sans-serif);
}

.falue-prelaunch,
.falue-prelaunch * { box-sizing: border-box; }

.falue-prelaunch__ambient {
  position: absolute;
  z-index: -1;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  filter: blur(76px);
  pointer-events: none;
}

.falue-prelaunch__ambient--left {
  top: 118px;
  left: -145px;
  background: rgba(53,107,255,.09);
}

.falue-prelaunch__ambient--right {
  right: -130px;
  bottom: 55px;
  background: rgba(112,72,238,.10);
}

.falue-prelaunch__topbar {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 48px));
  min-height: 72px;
  margin: 0 auto;
  padding: 14px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.falue-prelaunch__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--fp-violet);
  text-decoration: none;
}

.falue-prelaunch__brand:hover,
.falue-prelaunch__brand:focus {
  color: var(--fp-violet);
  text-decoration: none;
}

.falue-prelaunch__brand img {
  width: 39px;
  height: 39px;
  object-fit: contain;
}

.falue-prelaunch__brand .falue-brand-word {
  font-family: var(--falue-font-identity, "Convergence", sans-serif);
  font-size: 27px;
  font-weight: 400;
  font-synthesis: none;
  letter-spacing: -.02em;
}

.falue-prelaunch__signout {
  min-height: 44px;
  padding: 8px 15px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--fp-brand);
  border: 1px solid rgba(93,95,147,.20);
  border-radius: 999px;
  background: rgba(255,255,255,.72);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
}

.falue-prelaunch__signout:hover,
.falue-prelaunch__signout:focus {
  color: #50527f;
  border-color: rgba(93,95,147,.38);
  background: #fff;
  text-decoration: none;
}

.falue-prelaunch__signout svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.falue-prelaunch__main {
  position: relative;
  z-index: 1;
  min-height: calc(100vh - 72px);
  padding: clamp(28px, 5vw, 52px) 24px clamp(48px, 7vw, 78px);
  display: grid;
  place-items: start center;
}

.falue-prelaunch__card {
  position: relative;
  width: min(930px, 100%);
  overflow: hidden;
  border: 1px solid rgba(43,45,66,.055);
  border-radius: var(--fp-radius);
  background: var(--fp-surface);
  box-shadow: 0 24px 62px rgba(43,45,66,.12);
}

.falue-prelaunch__card::before {
  content: "";
  position: absolute;
  z-index: 3;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--fp-blue), var(--fp-violet) 58%, var(--fp-coral));
}

.falue-prelaunch__identity {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(260px, .7fr);
  gap: clamp(24px, 5vw, 62px);
  align-items: center;
  padding: clamp(44px, 7vw, 68px) clamp(28px, 7vw, 70px) clamp(36px, 6vw, 52px);
}

.falue-prelaunch__claim {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.falue-prelaunch__verified {
  margin: 0 0 24px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--fp-brand);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.falue-prelaunch__check {
  flex: 0 0 auto;
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  color: #fff;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--fp-blue), var(--fp-violet));
}

.falue-prelaunch__check svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.falue-prelaunch__eyebrow {
  margin: 0 0 7px;
  color: var(--fp-muted);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.falue-prelaunch h1 {
  margin: 0;
  color: var(--fp-ink);
  font-size: clamp(38px, 6vw, 60px);
  font-weight: 400;
  line-height: 1.06;
  letter-spacing: -.035em;
}

.falue-prelaunch__username,
.falue-prelaunch__profile-name,
.falue-prelaunch__profile-handle {
  font-family: var(--falue-font-identity, "Convergence", sans-serif);
  font-weight: 400;
  font-synthesis: none;
}

.falue-prelaunch__username {
  display: block;
  width: 100%;
  max-width: 100%;
  color: var(--fp-violet);
  background: linear-gradient(90deg, var(--fp-blue), var(--fp-violet) 68%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  overflow-wrap: anywhere;
  letter-spacing: -.025em;
}

.falue-prelaunch__title-tail {
  display: block;
  margin-top: 7px;
  font-size: .52em;
  font-weight: 500;
  letter-spacing: -.015em;
}

.falue-prelaunch__lead {
  max-width: 470px;
  margin: 20px 0 0;
  color: var(--fp-muted);
  font-size: 14px;
  line-height: 1.65;
}

.falue-prelaunch__email {
  width: max-content;
  max-width: 100%;
  margin: 17px 0 0;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #595d71;
  font-size: 13px;
}

.falue-prelaunch__email svg {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  fill: none;
  stroke: var(--fp-brand);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.falue-prelaunch__social-stage {
  position: relative;
  min-height: 280px;
  display: grid;
  place-items: center;
}

.falue-prelaunch__social-stage::before {
  content: "@";
  position: absolute;
  inset: 50% auto auto 50%;
  color: #f2effc;
  font-family: var(--falue-font-identity, "Convergence", sans-serif);
  font-size: 225px;
  line-height: .8;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.falue-prelaunch__profile-preview {
  position: relative;
  z-index: 1;
  width: 250px;
  text-align: center;
}

.falue-prelaunch__avatar-ring {
  position: relative;
  width: 112px;
  height: 112px;
  margin: 0 auto 17px;
  padding: 4px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--fp-blue), var(--fp-violet), var(--fp-coral));
  box-shadow: 0 16px 34px rgba(76,65,164,.19);
}

.falue-prelaunch__avatar {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: grid;
  place-items: center;
  color: #fff;
  border: 5px solid var(--fp-surface);
  border-radius: 50%;
  background: var(--fp-brand);
  font-family: var(--falue-font-identity, "Convergence", sans-serif);
  font-size: 28px;
}

.falue-prelaunch__avatar img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.falue-prelaunch__profile-name {
  margin: 0;
  color: var(--fp-ink);
  font-size: 21px;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.falue-prelaunch__profile-handle {
  margin: 5px 0 0;
  color: var(--fp-violet);
  font-size: 12px;
  overflow-wrap: anywhere;
}

.falue-prelaunch__profile-state {
  margin: 9px 0 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--fp-muted);
  font-size: 11px;
}

.falue-prelaunch__profile-state svg {
  width: 13px;
  height: 13px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.falue-prelaunch__social-detail {
  position: absolute;
  z-index: 2;
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fp-ink);
  background: rgba(255,255,255,.95);
  box-shadow: 0 10px 24px rgba(43,45,66,.11);
}

.falue-prelaunch__rating {
  left: 3px;
  top: 83px;
  gap: 5px;
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 11px;
}

.falue-prelaunch__rating svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: var(--fp-coral);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.falue-prelaunch__community {
  right: -28px;
  top: 48px;
  padding: 7px 9px;
  gap: 6px;
  border-radius: 18px;
  font-size: 11px;
}

.falue-prelaunch__faces {
  display: flex;
  padding-left: 8px;
}

.falue-prelaunch__faces span {
  width: 22px;
  height: 22px;
  margin-left: -8px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: var(--fp-blue);
}

.falue-prelaunch__faces span:nth-child(2) { background: var(--fp-violet); }
.falue-prelaunch__faces span:nth-child(3) { background: var(--fp-coral); }

.falue-prelaunch__messages {
  right: -18px;
  bottom: 50px;
  padding: 7px 9px;
  gap: 6px;
  border-radius: 15px 15px 15px 5px;
  color: var(--fp-blue);
  font-size: 11px;
}

.falue-prelaunch__messages svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.falue-prelaunch__launch {
  padding: 31px clamp(28px, 7vw, 70px) 33px;
  display: grid;
  grid-template-columns: minmax(190px, .72fr) minmax(0, 1.28fr);
  gap: clamp(26px, 5vw, 54px);
  align-items: center;
  background: #fbfbfe;
  border-top: 1px solid var(--fp-border);
}

.falue-prelaunch__launch-copy { min-width: 0; }

.falue-prelaunch__launch-label {
  margin: 0;
  color: var(--fp-violet);
  font-size: 20px;
  font-weight: 500;
}

.falue-prelaunch__launch-date {
  margin: 7px 0 0;
  color: var(--fp-ink);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.25;
}

.falue-prelaunch__countdown {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  isolation: isolate;
}

.falue-prelaunch__countdown > div {
  --fp-orbit-phase: 0s;
  position: relative;
  width: clamp(59px, 8vw, 70px);
  aspect-ratio: 1;
  display: grid;
  place-content: center;
  text-align: center;
  border: 2px solid rgba(112,72,238,.34);
  border-radius: 50%;
  background: var(--fp-surface);
}

.falue-prelaunch__countdown > div + div { margin-left: -10px; }
.falue-prelaunch__countdown > div:nth-child(odd) { z-index: 2; }
.falue-prelaunch__countdown > div:nth-child(even) {
  z-index: 1;
  border-color: rgba(240,107,133,.40);
}

.falue-prelaunch__countdown > div::before {
  content: "";
  position: absolute;
  inset: -2px;
  display: none;
  border-radius: inherit;
  background: conic-gradient(from 0deg, transparent 0 59%, rgba(53,107,255,.20) 66%, var(--fp-blue) 76%, var(--fp-violet) 88%, var(--fp-coral) 97%, transparent 100%);
  filter: drop-shadow(0 0 4px rgba(112,72,238,.20));
  animation: falue-prelaunch-infinity-chase var(--fp-orbit-duration) linear infinite;
  animation-delay: var(--fp-orbit-phase);
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - var(--fp-orbit-stroke)), #000 calc(100% - var(--fp-orbit-stroke) + 1px));
  mask: radial-gradient(farthest-side, transparent calc(100% - var(--fp-orbit-stroke)), #000 calc(100% - var(--fp-orbit-stroke) + 1px));
}

@supports ((-webkit-mask: radial-gradient(farthest-side, transparent 50%, #000 51%)) or (mask: radial-gradient(farthest-side, transparent 50%, #000 51%))) {
  .falue-prelaunch__countdown > div::before { display: block; }
}

.falue-prelaunch__countdown > div:nth-child(2) { --fp-orbit-phase: -3s; }
.falue-prelaunch__countdown > div:nth-child(3) { --fp-orbit-phase: -6s; }
.falue-prelaunch__countdown > div:nth-child(4) { --fp-orbit-phase: -9s; }

.falue-prelaunch__countdown strong {
  position: relative;
  z-index: 3;
  display: block;
  color: var(--fp-ink);
  font-size: clamp(19px, 2.7vw, 25px);
  font-weight: 500;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

.falue-prelaunch__countdown span {
  position: relative;
  z-index: 3;
  display: block;
  margin-top: 3px;
  color: var(--fp-muted);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: .04em;
  line-height: 1;
  text-transform: uppercase;
}

.falue-prelaunch__footnote {
  grid-column: 1 / -1;
  margin: 0;
  padding-top: 19px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--fp-muted);
  border-top: 1px solid rgba(227,226,236,.82);
  text-align: center;
  font-size: 12px;
  line-height: 1.5;
}

.falue-prelaunch__footnote svg {
  flex: 0 0 auto;
  width: 15px;
  height: 15px;
  fill: none;
  stroke: var(--fp-brand);
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.falue-prelaunch--document-hidden .falue-prelaunch__countdown > div::before {
  animation-play-state: paused;
}

@keyframes falue-prelaunch-infinity-chase {
  to { transform: rotate(360deg); }
}

@media (prefers-reduced-motion: reduce) {
  .falue-prelaunch__countdown > div::before { animation: none; }
}

@media (max-width: 740px) {
  .falue-prelaunch__identity {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .falue-prelaunch__claim { text-align: center; }

  .falue-prelaunch__verified,
  .falue-prelaunch__email {
    justify-content: center;
    margin-inline: auto;
  }

  .falue-prelaunch__username,
  .falue-prelaunch__lead { margin-inline: auto; }

  .falue-prelaunch__social-stage { min-height: 245px; }

  .falue-prelaunch__launch {
    grid-template-columns: 1fr;
    gap: 22px;
    text-align: center;
  }

  .falue-prelaunch__countdown { justify-content: center; }
}

@media (max-width: 440px) {
  .falue-prelaunch__topbar {
    width: calc(100% - 26px);
    min-height: 62px;
    padding: 9px 0;
  }

  .falue-prelaunch__brand img {
    width: 34px;
    height: 34px;
  }

  .falue-prelaunch__brand .falue-brand-word { font-size: 23px; }

  .falue-prelaunch__signout {
    min-height: 38px;
    padding: 7px 12px;
  }

  .falue-prelaunch__main {
    min-height: calc(100vh - 62px);
    padding: 24px 8px 40px;
  }

  .falue-prelaunch__card { --fp-radius: 26px; }

  .falue-prelaunch__identity { padding: 39px 18px 30px; }
  .falue-prelaunch__verified { margin-bottom: 19px; }
  .falue-prelaunch h1 { font-size: clamp(32px, 11vw, 43px); }
  .falue-prelaunch__lead { font-size: 13px; }
  .falue-prelaunch__email { align-items: flex-start; text-align: left; }
  .falue-prelaunch__social-stage { min-height: 205px; }
  .falue-prelaunch__social-stage::before { font-size: 190px; }
  .falue-prelaunch__profile-preview { width: min(238px, 100%); }
  .falue-prelaunch__avatar-ring { width: 90px; height: 90px; }
  .falue-prelaunch__rating { left: 2px; top: 62px; }
  .falue-prelaunch__community { right: -4px; top: 28px; }
  .falue-prelaunch__messages { right: 2px; bottom: 34px; }

  .falue-prelaunch__launch { padding: 27px 16px 29px; }

  .falue-prelaunch__launch-date { font-size: 20px; }

  .falue-prelaunch__countdown > div { width: clamp(49px, 15vw, 54px); }
  .falue-prelaunch__countdown > div + div { margin-left: -8px; }
  .falue-prelaunch__countdown strong { font-size: 18px; }
  .falue-prelaunch__countdown span { font-size: 8px; }
  .falue-prelaunch__footnote { align-items: flex-start; }
}
