/* Talents page — overrides on top of the-one-lp.css */

/* Minimal header — centered logo only */
.talents-page .lp-header__inner {
  justify-content: center;
}

/* Main wrapper */
.talents-main {
  padding-top: 120px;
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}

/* Warm orbs */
.talents-hero__bg-orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.orb-t1 {
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(134,59,255,0.15), transparent 70%);
  top: -100px; right: -80px;
  border-radius: 50%;
  filter: blur(80px);
  animation: drift 10s ease-in-out infinite alternate;
}
.orb-t2 {
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(180,60,255,0.1), transparent 70%);
  bottom: -50px; left: -100px;
  animation-delay: -4s;
  border-radius: 50%;
  filter: blur(80px);
  animation: drift 8s ease-in-out infinite alternate;
}

/* Container — narrower, centered */
.talents-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
  padding: 0 40px;
}
@media (max-width: 600px) {
  .talents-container { padding: 0 20px; }
}

/* Hero content — centered */
.talents-hero__content {
  text-align: center;
  margin-bottom: 52px;
}
.talents-hero__content h1 {
  font-size: clamp(30px, 5vw, 52px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  background: linear-gradient(100deg, #ffffff 40%, #b07fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.talents-hero__sub {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.65;
  max-width: 620px;
  margin: 0 auto;
  -webkit-text-fill-color: rgba(255,255,255,0.58);
}

/* Trust Block */
.talents-trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 48px;
}
@media (max-width: 640px) {
  .talents-trust { grid-template-columns: 1fr; }
}
.t-trust-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(134, 59, 255, 0.18);
  border-radius: 14px;
  padding: 22px 20px;
  text-align: left;
  transition: border-color 0.25s;
}
.t-trust-item:hover {
  border-color: rgba(134, 59, 255, 0.45);
}
.t-trust-item strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #a46dff;
  margin-bottom: 8px;
}
.t-trust-item span {
  display: block;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.55;
}

/* Form Wrapper */
.talents-form-wrapper {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(134, 59, 255, 0.2);
  border-radius: 20px;
  padding: 48px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}
@media (max-width: 600px) {
  .talents-form-wrapper { padding: 24px; }
}

/* Row of two inputs */
.t-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 500px) {
  .t-form-row { grid-template-columns: 1fr; }
}

.t-input-group {
  margin-bottom: 24px;
}
.t-input-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 8px;
}
.t-input-group label .req { color: #ff6b6b; }
.t-input-group input[type="text"],
.t-input-group input[type="url"] {
  width: 100%;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 14px 16px;
  color: #fff;
  font-family: inherit;
  font-size: 15px;
  transition: border-color 0.2s, background 0.2s;
  box-sizing: border-box;
}
.t-input-group input:focus {
  outline: none;
  border-color: #863bff;
  background: rgba(0, 0, 0, 0.35);
}

/* Drag and Drop Zone */
.t-dropzone {
  position: relative;
  border: 2px dashed rgba(134, 59, 255, 0.35);
  border-radius: 12px;
  background: rgba(134, 59, 255, 0.04);
  padding: 36px 24px;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.t-dropzone:hover,
.t-dropzone.dragover {
  border-color: #863bff;
  background: rgba(134, 59, 255, 0.1);
}
.t-dropzone.has-file {
  border-style: solid;
  border-color: #22c55e;
  background: rgba(34, 197, 94, 0.05);
}
.t-dropzone input[type="file"] {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}
.t-dropzone-icon {
  display: block;
  font-size: 36px;
  margin-bottom: 12px;
  transition: transform 0.2s;
}
.t-dropzone:hover .t-dropzone-icon { transform: translateY(-4px); }
.t-dropzone-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
  pointer-events: none;
}

/* Submit button */
.t-submit {
  width: 100%;
  padding: 16px;
  font-size: 16px;
  margin-top: 8px;
  border-radius: 10px;
  letter-spacing: 0.01em;
}
.t-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}

/* Form message box */
.t-form-msg {
  margin-top: 16px;
  text-align: center;
  font-size: 14px;
  display: none;
  padding: 12px;
  border-radius: 8px;
}
.t-form-msg.success {
  display: block;
  color: #22c55e;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.25);
}
.t-form-msg.error {
  display: block;
  color: #ff6b6b;
  background: rgba(255, 107, 107, 0.08);
  border: 1px solid rgba(255, 107, 107, 0.25);
}

/* Alternate Bot Link */
.t-bot-alternative {
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.7;
}
.t-bot-link {
  display: inline-block;
  margin-top: 6px;
  font-weight: 700;
  font-size: 17px;
  color: #a46dff;
  text-decoration: none;
  transition: color 0.2s;
}
.t-bot-link:hover { color: #c49fff; }

/* Reveal animations */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.32s; }

@keyframes drift { from { transform: translate(0,0); } to { transform: translate(30px, 20px); } }
