/* 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;
}

/* Contact block — replaces the previous form (PDn rule: email-only channel) */
.talents-contact {
  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);
  text-align: center;
}
@media (max-width: 600px) {
  .talents-contact { padding: 32px 24px; }
}
.talents-contact__intro {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.65;
  margin: 0 auto 22px;
  max-width: 580px;
}
.talents-contact__mailto {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: clamp(22px, 3.5vw, 30px);
  color: #ffffff;
  background: linear-gradient(135deg, #863bff 0%, #5e77ff 100%);
  text-decoration: none;
  padding: 18px 36px;
  border-radius: 14px;
  letter-spacing: -0.01em;
  box-shadow: 0 10px 30px rgba(134, 59, 255, 0.35);
  transition: transform 0.2s, box-shadow 0.2s;
}
.talents-contact__mailto:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(134, 59, 255, 0.5);
}
.talents-contact__note {
  margin: 22px auto 0;
  max-width: 540px;
  font-size: 12px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.4);
}

/* 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); } }

/* ── Lead-magnet content sections (S14) ── */
.t-info { max-width: 720px; margin: 56px auto 0; text-align: left; position: relative; z-index: 2; }
.t-info__block { margin-bottom: 44px; }
.t-info__block:last-child { margin-bottom: 0; }
.t-info h2 { font-size: clamp(21px, 3vw, 27px); font-weight: 800; color: #fff; margin-bottom: 18px; letter-spacing: -0.01em; }
.t-info p { font-size: 15px; color: rgba(255,255,255,0.72); line-height: 1.7; margin: 0 0 12px; }
.t-info a { color: #a46dff; text-decoration: none; border-bottom: 1px solid rgba(134,59,255,.4); }
.t-info a:hover { color: #c0a0ff; }
.t-lead { font-size: 17px; color: rgba(255,255,255,0.86); }
.t-lead b { color: #b07fff; }
.t-ul { list-style: none; padding: 0; margin: 8px 0 0; display: flex; flex-direction: column; gap: 10px; }
.t-ul li { font-size: 14.5px; color: rgba(255,255,255,0.7); line-height: 1.6; padding-left: 22px; position: relative; }
.t-ul li::before { content: '\25C6'; position: absolute; left: 0; top: 3px; color: #863bff; font-size: 9px; }
.t-ul li b { color: #fff; }
.t-steps { list-style: none; counter-reset: s; padding: 0; margin: 8px 0 0; display: flex; flex-direction: column; gap: 14px; }
.t-steps li { counter-increment: s; position: relative; padding-left: 46px; font-size: 14.5px; color: rgba(255,255,255,0.72); line-height: 1.6; min-height: 32px; display: flex; align-items: center; }
.t-steps li::before { content: counter(s); position: absolute; left: 0; top: 0; width: 32px; height: 32px; border-radius: 50%; background: rgba(134,59,255,0.14); border: 1px solid rgba(134,59,255,0.4); color: #b07fff; font-weight: 800; font-size: 14px; display: flex; align-items: center; justify-content: center; }
.t-faq__item { border-top: 1px solid rgba(255,255,255,0.08); padding: 18px 0; }
.t-faq__item:last-child { border-bottom: 1px solid rgba(255,255,255,0.08); }
.t-faq__q { color: #fff; font-size: 15px; font-weight: 700; margin-bottom: 7px; }
.t-faq__a { color: rgba(255,255,255,0.62); font-size: 14px; line-height: 1.65; }
