/* ===== DOWNLOAD SECTION ===== */

.section-download {
  padding: 100px 20px;
  text-align: center;
}

.download-inner {
  max-width: 800px;
  margin: 0 auto;
}

/* TEXT */

.download-subtext {
  margin-top: 16px;
  margin-bottom: 36px;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
}

.download-title {
  font-weight: 700;   /* base NOT bold */
  color: #ffffff;
  line-height: 1.1;

  white-space: nowrap;   /* 👈 FORCE ONE LINE */

}
.download-title {
  text-shadow:
    0 2px 10px rgba(0, 0, 0, 0.5),
    0 6px 30px rgba(16, 183, 201, 0.15);
}


/* Tranzlate (blue, not bold) */
.brand-name {
  color: #10b7c9;
  text-shadow: 0 0 12px rgba(0, 0, 0, 0.35);

  font-weight: 100;
}

/* Travel (bold white) */
.travel-word {
  font-weight: 700;
  text-shadow: 0 0 12px rgba(0, 0, 0, 0.35);

  color: #ffffff;
}

/* just the V accent */
.accent-v {
  color: #10b7c9;
  text-shadow: 0 0 12px rgba(0, 0, 0, 0.35);

  font-weight: 700;
}

/* now (normal white) */
.now {
  font-weight: 700;
  color: #ffffff;
}
/* STORE BUTTONS */

.store-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  margin-top: 40px;
}

/* each store block */
.store-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.store-btn {
  width: 155px;   /* 👈 smaller overall size */
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  overflow: hidden;
}

/* control inside scaling */
.store-btn img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
}

/* fine-tune each one */
.store-btn img[src*="google"] {
  transform: scale(1.00);   /* shrink google a bit more */
}

.store-btn img[src*="app"] {
  transform: scale(1.05);  /* slightly boost apple */
}

/* hover */
.store-btn:hover {
  transform: scale(1.05);
}

/* disabled apple */
.store-btn.disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.store-btn.disabled:hover {
  transform: none;
}

/* labels */
.store-status {
  margin-top: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.store-status.live {
  color: #10b7c9;
}

.store-status.coming {
  color: rgba(255,255,255,0.6);
}

/* WAITLIST */

.waitlist {
  margin-top: 40px;
}

.waitlist p {
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.75);
}

.waitlist-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  max-width: 420px;
  margin: 0 auto;
}

/* Email input */
.waitlist-form input {
  width: 100%;
  height: 56px;
  padding: 0 16px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.03);
  color: #fff;
  outline: none;
  backdrop-filter: blur(10px);
}

.waitlist-form input::placeholder {
  color: rgba(255,255,255,0.5);
}

/* Platform buttons */
.platform-options {
  display: flex;
  gap: 10px;
  width: 100%;
}

.platform-options label {
  flex: 1;
  cursor: pointer;
}

.platform-options input {
  display: none;
}

/* Pill style */
.platform-options span {
  display: block;
  text-align: center;
  padding: 12px 0;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.03);
  color: rgba(255,255,255,0.7);
  transition: all 0.2s ease;
}

/* Selected state */
.platform-options input:checked + span {
  background: #10b7c9;
  border-color: #10b7c9;
  color: #fff;
  font-weight: 600;
}

/* Hover */
.platform-options span:hover {
  border-color: rgba(16,183,201,0.5);
}

/* Button */
.waitlist-form button {
  width: 100%;
  height: 56px;
  border-radius: 14px;
  border: none;
  background: #10b7c9;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}

.waitlist-form button:hover {
  filter: brightness(1.08);
}

.platform-options span {
  overflow: hidden;
  -webkit-tap-highlight-color: transparent;
}

.platform-options label,
.platform-options span,
.waitlist-form button {
  -webkit-tap-highlight-color: transparent;
}

.form-message {
  margin-top: 10px;
  font-size: 0.9rem;
}

.form-message.success {
  color: #10B7C9;
}

.form-message.error {
  color: #ff6b6b;
}

/* MOBILE */

@media (max-width: 600px) {
  .download-title {
    white-space: normal;
    font-size: clamp(2rem, 10vw, 3rem);
    line-height: 1.08;
  }

  .store-buttons {
    flex-direction: column;
  }

  .store-btn {
    width: 155px;
    height: 64px;
  }

  .waitlist-form {
    width: 100%;
    gap: 12px;
  }

  .waitlist-form input,
  .waitlist-form select,
  .waitlist-form button {
    width: 100%;
    min-width: 0;
  }
}