/* ===================================================
   THE LAUNCH BRIEF — Styles
   Enterprise Project Discovery
   =================================================== */

/* ---------- SCREENS ---------- */
.lb-screen {
  display: none;
  position: relative;
  z-index: 20;
  width: 100%;
  min-height: 100vh;
  min-height: 100dvh;
}

.lb-screen--active {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---------- SHARED ---------- */
.lb-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(140, 180, 255, 0.7);
  margin-bottom: 1rem;
}

.lb-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  border: none;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.lb-btn--primary {
  background: rgba(255,255,255,0.95);
  color: #0a0a1a;
}

.lb-btn--primary:hover {
  background: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(140, 180, 255, 0.12);
}

.lb-btn--ghost {
  background: transparent;
  color: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.12);
}

.lb-btn--ghost:hover {
  color: rgba(255,255,255,0.8);
  border-color: rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.04);
}

/* ---------- INPUT SYSTEM ---------- */
.lb-input-group {
  position: relative;
  margin-bottom: 1.75rem;
}

.lb-input {
  width: 100%;
  padding: 1rem 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.95);
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 300;
  outline: none;
  transition: border-color 0.3s ease;
}

.lb-input:focus {
  border-bottom-color: rgba(140, 180, 255, 0.5);
}

.lb-input-label {
  position: absolute;
  top: 1rem;
  left: 0;
  color: rgba(255,255,255,0.35);
  font-size: 0.95rem;
  font-weight: 300;
  pointer-events: none;
  transition: all 0.3s ease;
}

.lb-input:focus ~ .lb-input-label,
.lb-input:not(:placeholder-shown) ~ .lb-input-label {
  top: -0.6rem;
  font-size: 0.7rem;
  color: rgba(140, 180, 255, 0.7);
  letter-spacing: 0.05em;
}

.lb-input-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(80,140,255,1), rgba(140,180,255,1));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.lb-input:focus ~ .lb-input-line {
  transform: scaleX(1);
}

.lb-select {
  width: 100%;
  padding: 1rem 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.95);
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 300;
  outline: none;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  transition: border-color 0.3s ease;
}

.lb-select:focus {
  border-bottom-color: rgba(140, 180, 255, 0.5);
}

.lb-select option {
  background: #0a0a1a;
  color: rgba(255,255,255,0.9);
}

.lb-textarea {
  resize: vertical;
  min-height: 100px;
  line-height: 1.6;
}

/* ===================================================
   SCREEN 0: LANDING
   =================================================== */
.lb-landing {
  text-align: center;
  padding: 2rem;
}

.lb-landing__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  margin-bottom: 2rem;
  line-height: 1;
}

.lb-landing__the {
  font-size: clamp(1rem, 3vw, 1.5rem);
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.4em;
  text-transform: uppercase;
}

.lb-landing__launch {
  font-size: clamp(3.5rem, 14vw, 9rem);
  font-weight: 300;
  color: rgba(255,255,255,0.95);
  letter-spacing: -0.04em;
  line-height: 0.9;
}

.lb-landing__brief {
  font-size: clamp(1.5rem, 5vw, 3rem);
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.lb-landing__tagline {
  font-size: clamp(0.9rem, 1.8vw, 1.15rem);
  font-weight: 300;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.02em;
  margin-bottom: 3rem;
}

.lb-landing__cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2.5rem;
  background: rgba(255,255,255,0.95);
  color: #0a0a1a;
  border: none;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.3s ease;
  overflow: hidden;
}

.lb-landing__cta:hover {
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(140, 180, 255, 0.15), 0 0 60px rgba(80, 140, 255, 0.08);
}

.lb-landing__cta-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(140,180,255,0.1) 0%, transparent 70%);
  animation: lbCtaGlow 3s ease-in-out infinite;
  pointer-events: none;
}

@keyframes lbCtaGlow {
  0%, 100% { opacity: 0.3; transform: scale(0.8); }
  50% { opacity: 0.6; transform: scale(1.1); }
}

.lb-landing__disclaimer {
  margin-top: 2.5rem;
  font-size: 0.75rem;
  font-weight: 300;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.02em;
  font-style: italic;
}

/* ===================================================
   SCREEN 1: REGISTRATION
   =================================================== */
.lb-register {
  width: 100%;
  max-width: 500px;
  padding: 2rem;
}

.lb-register__card {
  background: linear-gradient(135deg, rgba(255,255,255,0.12) 0%, rgba(255,255,255,0.06) 100%);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 16px;
  backdrop-filter: blur(40px) saturate(1.2);
  -webkit-backdrop-filter: blur(40px) saturate(1.2);
  padding: clamp(2rem, 5vw, 3rem);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.08);
}

.lb-register__header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.lb-register__title {
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 300;
  color: rgba(255,255,255,0.95);
  letter-spacing: -0.02em;
  margin: 0.5rem 0;
}

.lb-register__subtitle {
  font-size: 0.95rem;
  font-weight: 300;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
}

.lb-register__btn {
  width: 100%;
  margin-top: 0.5rem;
}

/* ===================================================
   SCREEN 2: JOURNEY
   =================================================== */

/* Progress bar */
.lb-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: rgba(255,255,255,0.05);
  z-index: 1001;
}

.lb-progress__bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, rgba(80,140,255,1), rgba(140,180,255,1));
  transition: width 0.6s ease;
}

.lb-progress__counter {
  position: fixed;
  top: 0.75rem;
  right: clamp(1.5rem, 5vw, 4rem);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.3);
  z-index: 1001;
}

/* Section divider */
.lb-divider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  opacity: 0;
  pointer-events: none;
  z-index: 5;
}

.lb-divider--active {
  opacity: 1;
  pointer-events: all;
}

.lb-divider__part {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(140, 180, 255, 0.6);
  margin-bottom: 1rem;
}

.lb-divider__title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 300;
  color: rgba(255,255,255,0.95);
  letter-spacing: -0.02em;
  margin: 0;
}

.lb-divider__subtitle {
  font-size: clamp(0.85rem, 1.5vw, 1rem);
  font-weight: 300;
  color: rgba(255,255,255,0.4);
  max-width: 500px;
  line-height: 1.6;
  margin-top: 1rem;
}

/* Question area */
.lb-question-area {
  width: 100%;
  max-width: 650px;
  margin: 0 auto;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  min-height: 100dvh;
}

.lb-question-card {
  width: 100%;
  background: linear-gradient(135deg, rgba(255,255,255,0.12) 0%, rgba(255,255,255,0.06) 100%);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 16px;
  backdrop-filter: blur(40px) saturate(1.2);
  -webkit-backdrop-filter: blur(40px) saturate(1.2);
  padding: clamp(2rem, 5vw, 3rem);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.08);
}

/* Question elements */
.lb-question__tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(140, 180, 255, 0.5);
  margin-bottom: 1.5rem;
}

.lb-question__text {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-weight: 300;
  color: rgba(255,255,255,0.9);
  line-height: 1.5;
  margin-bottom: 0.5rem;
}

.lb-question__guidance {
  background: rgba(140, 180, 255, 0.08);
  border: 1px solid rgba(140, 180, 255, 0.15);
  border-left: 3px solid rgba(140, 180, 255, 0.4);
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
  border-radius: 4px 10px 10px 4px;
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  font-style: italic;
}

.lb-question__guidance-label {
  display: block;
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(140, 180, 255, 0.6);
  font-style: normal;
  margin-bottom: 0.4rem;
}

.lb-question__textarea {
  width: 100%;
  min-height: 120px;
  padding: 1rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  color: rgba(255,255,255,0.9);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.6;
  resize: vertical;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 1.5rem;
}

.lb-question__textarea:focus {
  border-color: rgba(140, 180, 255, 0.3);
  box-shadow: 0 0 0 3px rgba(140, 180, 255, 0.05);
}

.lb-question__textarea::placeholder {
  color: rgba(255,255,255,0.2);
  font-style: italic;
}

.lb-question__text-input {
  width: 100%;
  padding: 1rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  color: rgba(255,255,255,0.9);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 300;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 1.5rem;
}

.lb-question__text-input:focus {
  border-color: rgba(140, 180, 255, 0.3);
  box-shadow: 0 0 0 3px rgba(140, 180, 255, 0.05);
}

.lb-question__text-input::placeholder {
  color: rgba(255,255,255,0.2);
  font-style: italic;
}

/* Navigation buttons */
.lb-question__nav {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.lb-question__back {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  padding: 0.85rem 1.4rem;
  background: transparent;
  color: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 300;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.lb-question__back:hover {
  color: rgba(255,255,255,0.8);
  border-color: rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.04);
}

.lb-question__submit {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  background: rgba(255,255,255,0.95);
  color: #0a0a1a;
  border: none;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.3s ease;
}

.lb-question__submit:hover {
  background: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(140, 180, 255, 0.12);
}

/* ---------- SINGLE-SELECT CARDS ---------- */
.lb-select-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.lb-select-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 1.15rem 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: left;
}

.lb-select-card:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(140, 180, 255, 0.2);
  transform: translateY(-1px);
}

.lb-select-card--selected {
  background: rgba(140, 180, 255, 0.1);
  border-color: rgba(140, 180, 255, 0.4);
  box-shadow: 0 0 0 1px rgba(140, 180, 255, 0.2);
}

.lb-select-card__title {
  font-size: 0.9rem;
  font-weight: 400;
  color: rgba(255,255,255,0.9);
  margin-bottom: 0.2rem;
}

.lb-select-card__desc {
  font-size: 0.75rem;
  font-weight: 300;
  color: rgba(255,255,255,0.4);
  line-height: 1.4;
}

/* ---------- MULTI-SELECT CHIPS ---------- */
.lb-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.lb-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 1rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  cursor: pointer;
  transition: all 0.25s ease;
  user-select: none;
}

.lb-chip:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(140, 180, 255, 0.2);
  color: rgba(255,255,255,0.8);
}

.lb-chip--selected {
  background: rgba(140, 180, 255, 0.12);
  border-color: rgba(140, 180, 255, 0.4);
  color: rgba(140, 180, 255, 0.95);
}

/* ---------- UPLOAD ZONE ---------- */
.lb-upload-zone {
  border: 1px dashed rgba(255,255,255,0.15);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 1.5rem;
}

.lb-upload-zone:hover {
  border-color: rgba(140, 180, 255, 0.3);
  background: rgba(140, 180, 255, 0.03);
}

.lb-upload-zone__icon {
  font-size: 1.5rem;
  color: rgba(255,255,255,0.2);
  margin-bottom: 0.5rem;
}

.lb-upload-zone__text {
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(255,255,255,0.4);
}

.lb-upload-zone__limit {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.2);
  margin-top: 0.35rem;
}

.lb-upload-zone input[type="file"] {
  display: none;
}

.lb-upload-files {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.lb-upload-file {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.75rem;
  background: rgba(140, 180, 255, 0.08);
  border: 1px solid rgba(140, 180, 255, 0.15);
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
}

.lb-upload-file__remove {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: none;
  color: rgba(255,255,255,0.5);
  font-size: 0.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease;
}

.lb-upload-file__remove:hover {
  background: rgba(220, 50, 50, 0.5);
}

/* Validation error */
.lb-error {
  color: rgba(255, 120, 120, 0.8);
  font-size: 0.8rem;
  font-weight: 300;
  margin-top: -1rem;
  margin-bottom: 1rem;
  display: none;
}

.lb-error--visible {
  display: block;
}

/* Optional label */
.lb-optional {
  font-size: 0.7rem;
  font-weight: 300;
  color: rgba(255,255,255,0.25);
  font-style: italic;
  margin-bottom: 0.75rem;
}

/* ===================================================
   SCREEN 3: REVIEW
   =================================================== */
.lb-review {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  padding: 6rem 2rem 4rem;
}

.lb-review__header {
  text-align: center;
  margin-bottom: 3rem;
}

.lb-review__title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 300;
  color: rgba(255,255,255,0.95);
  letter-spacing: -0.02em;
  margin: 0.5rem 0 0.75rem;
}

.lb-review__subtitle {
  font-size: 0.95rem;
  font-weight: 300;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
}

.lb-review__content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.lb-review__section {
  background: linear-gradient(135deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.02) 100%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 1.5rem;
}

.lb-review__section-title {
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(140, 180, 255, 0.6);
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.lb-review__item {
  margin-bottom: 0.85rem;
}

.lb-review__item:last-child {
  margin-bottom: 0;
}

.lb-review__label {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 0.2rem;
}

.lb-review__value {
  font-size: 0.9rem;
  font-weight: 300;
  color: rgba(255,255,255,0.8);
  line-height: 1.5;
}

.lb-review__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.3rem;
}

.lb-review__chip {
  display: inline-block;
  padding: 0.3rem 0.7rem;
  background: rgba(140, 180, 255, 0.08);
  border: 1px solid rgba(140, 180, 255, 0.15);
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 300;
  color: rgba(140, 180, 255, 0.8);
}

.lb-review__actions {
  display: flex;
  gap: 0.75rem;
}

.lb-review__back {
  white-space: nowrap;
}

.lb-review__submit {
  flex: 1;
}

/* ===================================================
   SCREEN 4: SUCCESS
   =================================================== */
.lb-success {
  text-align: center;
  padding: 2rem;
  max-width: 520px;
}

.lb-success__icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 2rem;
}

.lb-success__check {
  width: 100%;
  height: 100%;
}

.lb-success__check-path {
  stroke-dasharray: 50;
  stroke-dashoffset: 50;
  animation: lbCheckDraw 0.6s ease 0.3s forwards;
}

@keyframes lbCheckDraw {
  to { stroke-dashoffset: 0; }
}

.lb-success__title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 300;
  color: rgba(255,255,255,0.95);
  letter-spacing: -0.02em;
  margin: 0 0 0.5rem;
}

.lb-success__text {
  font-size: 0.95rem;
  font-weight: 300;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  margin: 0 0 2rem;
}

.lb-success__steps {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
  text-align: left;
}

.lb-success__step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
}

.lb-success__step-num {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(140, 180, 255, 0.1);
  border: 1px solid rgba(140, 180, 255, 0.2);
  font-size: 0.8rem;
  font-weight: 400;
  color: rgba(140, 180, 255, 0.9);
}

.lb-success__step-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.lb-success__step-text strong {
  font-size: 0.9rem;
  font-weight: 400;
  color: rgba(255,255,255,0.85);
}

.lb-success__step-text span {
  font-size: 0.8rem;
  font-weight: 300;
  color: rgba(255,255,255,0.4);
}

.lb-success__actions {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
}

/* ===================================================
   RESPONSIVE
   =================================================== */
@media (max-width: 768px) {
  .lb-review {
    padding: 5rem 1.5rem 3rem;
  }

  .lb-question-area {
    padding: 1.5rem;
  }

  .lb-progress__counter {
    right: 1.5rem;
  }

  .lb-select-grid {
    grid-template-columns: 1fr;
  }

  .lb-review__actions {
    flex-direction: column;
  }
}

@media (max-width: 400px) {
  .lb-register__card,
  .lb-question-card {
    padding: 1.5rem;
  }

  .lb-landing__launch {
    font-size: 4rem;
  }

  .lb-success__step {
    padding: 0.75rem;
  }
}
