:root{
  --black:#070707;
  --panel:#101010;
  --gold:#d4af37;
  --gold2:#f8df86;
  --white:#fff;
  --muted:#d7d7d7;
  --line:rgba(212,175,55,.28);
  --wine:#5b1e2d;
  --red:#c94a3d;
}

*{box-sizing:border-box}

html,body{margin:0;min-height:100%;background:var(--black);color:var(--white);font-family:Inter,system-ui,sans-serif}

button,input,select{font:inherit}

button{cursor:pointer}

.app{
  min-height:100svh;
  width:100%;
  overflow-x:hidden;
  background:
    radial-gradient(circle at 50% -10%, rgba(212,175,55,.16), transparent 28%),
    radial-gradient(circle at 95% 10%, rgba(91,30,45,.22), transparent 30%),
    #050505;
}

.screen{
  display:none;
  min-height:100svh;
  width:100%;
  padding:clamp(16px,3vw,34px);
}

.screen.active{display:block}

.hero{position:relative}

.gold-haze{
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    radial-gradient(circle at 52% 18%, rgba(246,223,134,.13), transparent 22%),
    radial-gradient(circle at 30% 90%, rgba(212,175,55,.06), transparent 28%);
}

.top-brand{
  position:relative;
  z-index:2;
  max-width:1320px;
  margin:0 auto 20px;
}

.top-brand span{
  display:inline-block;
  padding-bottom:10px;
  border-bottom:1px solid var(--gold);
  font-family:Cinzel,serif;
  font-weight:800;
  color:var(--gold2);
  letter-spacing:.18em;
  font-size:clamp(.92rem,2vw,1.25rem);
}

.hero-grid{
  position:relative;
  z-index:2;
  max-width:1320px;
  min-height:calc(100svh - 98px);
  margin:0 auto;
  display:grid;
  grid-template-columns:1.05fr .8fr .78fr;
  gap:26px;
  align-items:center;
}

.hero-copy h1{
  margin:0;
  max-width:760px;
  text-transform:uppercase;
  font-weight:900;
  letter-spacing:.01em;
  font-size:clamp(3.5rem,6vw,6.8rem);
  line-height:.9;
}

.hero-copy h1 b{
  display:block;
  color:transparent;
  background:linear-gradient(180deg,#fff1a5,#d4af37 44%,#9d6b16);
  -webkit-background-clip:text;
  background-clip:text;
}

.hero-copy p{
  max-width:620px;
  color:#e6e6e6;
  font-size:clamp(1.05rem,1.35vw,1.35rem);
  line-height:1.55;
}

.mini-proof{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:12px;
  margin-top:28px;
  max-width:680px;
}

.mini-proof div{
  padding:16px 14px;
  border:1px solid var(--line);
  border-radius:16px;
  background:rgba(255,255,255,.025);
}

.mini-proof strong{
  display:block;
  color:var(--gold2);
  text-transform:uppercase;
  font-size:.92rem;
}

.mini-proof span{
  display:block;
  margin-top:5px;
  color:#cfcfcf;
  font-size:.84rem;
  line-height:1.35;
}

.mentor-block{
  position:relative;
  min-height:560px;
  display:flex;
  align-items:flex-end;
  justify-content:center;
  border-radius:24px;
  overflow:hidden;
  background:radial-gradient(circle at 50% 20%,rgba(212,175,55,.12),transparent 38%);
}

.mentor-block img{
  width:100%;
  max-width:470px;
  height:560px;
  object-fit:cover;
  object-position:center top;
  border-radius:24px;
  mask-image:linear-gradient(to bottom,#000 75%,transparent 100%);
  -webkit-mask-image:linear-gradient(to bottom,#000 75%,transparent 100%);
}

.mentor-info{
  position:absolute;
  left:18px;
  right:18px;
  bottom:18px;
  padding:18px;
  border-left:1px solid var(--gold);
  background:linear-gradient(90deg,rgba(0,0,0,.78),rgba(0,0,0,.22));
  backdrop-filter:blur(8px);
}

.mentor-info strong{
  display:block;
  color:var(--gold2);
  font-family:Cinzel,serif;
  font-size:1.35rem;
}

.mentor-info span{
  display:block;
  margin-top:6px;
  color:#ddd;
  line-height:1.4;
  font-size:.95rem;
}

.notice{
  padding:28px;
  border:1px solid var(--line);
  border-radius:22px;
  background:linear-gradient(180deg,rgba(16,16,16,.96),rgba(5,5,5,.94));
  box-shadow:0 20px 70px rgba(0,0,0,.42);
}

.notice h2{
  margin:0 0 18px;
  color:var(--gold2);
  text-transform:uppercase;
  letter-spacing:.05em;
  font-size:1.1rem;
}

.notice p{
  color:#ddd;
  line-height:1.58;
  font-size:.96rem;
}

.notice .gold{color:var(--gold2);font-weight:800}

.btn{
  width:100%;
  min-height:54px;
  border:0;
  border-radius:12px;
  padding:14px 18px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.02em;
}

.primary{
  margin-top:14px;
  color:#070707;
  background:linear-gradient(180deg,#ffe897,#d4af37 55%,#9e6c15);
  box-shadow:0 16px 42px rgba(212,175,55,.24);
  transition:.2s ease;
}

.primary:hover,.primary:focus{filter:brightness(1.08);transform:translateY(-1px)}

.primary:disabled{opacity:.65;cursor:not-allowed;transform:none}

.ghost{
  width:100%;
  margin-top:12px;
  border:0;
  background:transparent;
  color:#bbb;
  text-decoration:underline;
  text-underline-offset:5px;
}

.quiz{
  display:none;
  place-items:center;
  padding:18px;
}

.quiz.active{display:grid}

.quiz-header{
  width:min(560px,100%);
  display:grid;
  grid-template-columns:44px 1fr;
  gap:12px;
  align-items:center;
  margin-bottom:16px;
}

.back{
  width:44px;height:44px;
  border:1px solid var(--line);
  border-radius:50%;
  background:#101010;
  color:var(--gold2);
  font-size:1.2rem;
}

#stepText{
  display:block;
  margin-bottom:8px;
  color:var(--gold2);
  font-weight:800;
}

.progress{
  height:6px;
  border-radius:999px;
  overflow:hidden;
  background:#2c2c2c;
}

.progress i{
  display:block;
  width:14%;
  height:100%;
  border-radius:999px;
  background:linear-gradient(90deg,var(--gold),var(--gold2));
  transition:width .25s ease;
}

.quiz-card{
  width:min(560px,100%);
  min-height:620px;
  padding:30px 22px;
  border:1px solid var(--line);
  border-radius:30px;
  background:
    radial-gradient(circle at 50% 7%,rgba(212,175,55,.12),transparent 28%),
    linear-gradient(180deg,#141414,#050505);
  box-shadow:0 28px 90px rgba(0,0,0,.52), inset 0 0 0 1px rgba(255,255,255,.04);
}

.question-icon{
  width:76px;height:76px;
  display:grid;
  place-items:center;
  margin:10px auto 16px;
  border:1px solid var(--gold);
  border-radius:50%;
  color:var(--gold2);
  font-size:1.9rem;
  box-shadow:0 0 28px rgba(212,175,55,.2);
}

.question-label{
  margin:0;
  color:var(--gold2);
  text-align:center;
  text-transform:uppercase;
  font-weight:900;
  font-size:.78rem;
  letter-spacing:.08em;
}

.quiz-card h2{
  min-height:88px;
  margin:20px 0 22px;
  text-align:left;
  font-size:clamp(1.25rem,5.6vw,1.75rem);
  line-height:1.25;
}

.answers{display:grid;gap:12px}

.answer{
  display:grid;
  grid-template-columns:34px 1fr;
  gap:12px;
  align-items:center;
  min-height:54px;
  width:100%;
  padding:11px 13px;
  border:1px solid rgba(255,255,255,.12);
  border-radius:12px;
  background:rgba(255,255,255,.025);
  color:#eee;
  text-align:left;
  transition:.2s ease;
}

.answer b{
  width:28px;height:28px;
  display:grid;
  place-items:center;
  border:1px solid var(--gold);
  border-radius:50%;
  color:var(--gold2);
}

.answer:hover,.answer:focus,.answer.selected{
  background:linear-gradient(180deg,#ffe897,#d4af37);
  color:#070707;
  border-color:var(--gold2);
}

.answer:hover b,.answer:focus b,.answer.selected b{
  color:#070707;
  border-color:#070707;
}

.micro{
  margin:24px 0 0;
  color:var(--gold2);
  line-height:1.5;
}

.loading,.result,.lead{display:none;place-items:center;padding:20px}

.loading.active,.result.active,.lead.active{display:grid}

.loader-card,.result-wrap,.lead-card,.next-steps{
  width:min(620px,100%);
  padding:30px 24px;
  border:1px solid var(--line);
  border-radius:28px;
  background:linear-gradient(180deg,#141414,#050505);
  text-align:center;
}

.ring{
  width:130px;height:130px;
  margin:20px auto 28px;
  border-radius:50%;
  border:7px solid rgba(212,175,55,.09);
  border-top-color:var(--gold2);
  border-right-color:var(--gold);
  animation:spin 1s linear infinite;
}

@keyframes spin{to{transform:rotate(360deg)}}

.loader-card h2,.lead-card h2{
  margin:0 0 12px;
  color:var(--gold2);
  text-transform:uppercase;
  line-height:1.2;
}

.loader-card p,.lead-card p,.result-head p{
  color:#ddd;
  line-height:1.55;
}

.result-head span{
  color:var(--gold2);
  text-transform:uppercase;
  letter-spacing:.1em;
  font-weight:900;
  font-size:.78rem;
}

.result-head h2{
  margin:14px 0;
  text-transform:uppercase;
  font-size:clamp(1.35rem,6vw,2.35rem);
  line-height:1.05;
}

.meters{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:12px;
  margin:26px 0 12px;
}

.meter{
  aspect-ratio:1;
  border:7px solid var(--gold);
  border-radius:50%;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
}

.meter.red{border-color:var(--red)}

.meter b{font-size:clamp(1.35rem,6vw,2rem)}
.meter span{font-size:.72rem;text-transform:uppercase;color:#ddd}

.lead-card form{
  display:grid;
  gap:12px;
  margin-top:22px;
}

.lead-card input,.lead-card select{
  width:100%;
  min-height:52px;
  padding:0 14px;
  border:1px solid rgba(255,255,255,.14);
  border-radius:12px;
  background:#080808;
  color:#eee;
}

.form-message{
  min-height:22px;
  margin:2px 0 0;
  color:var(--gold2);
  font-size:.92rem;
  line-height:1.4;
}

.form-message.error{color:#ff9a8f}

.lead-card small{
  display:block;
  margin-top:14px;
  color:#aaa;
}

.next-steps{
  margin-top:18px;
  text-align:left;
}

.next-steps h3{
  margin-top:0;
  color:var(--gold2);
  text-transform:uppercase;
}

.next-steps p{
  color:#ddd;
  line-height:1.55;
}

.next-steps b{color:var(--gold2)}

@media (max-width:980px){
  .hero-grid{
    grid-template-columns:1fr;
    min-height:auto;
  }

  .hero-copy h1{
    font-size:clamp(2.5rem,11vw,4rem);
    line-height:.96;
  }

  .hero-copy p{font-size:1rem}

  .mini-proof{grid-template-columns:1fr}

  .mentor-block{
    min-height:360px;
    order:2;
  }

  .mentor-block img{
    max-width:100%;
    height:390px;
    object-position:center 18%;
  }

  .notice{order:3}
}

@media (max-width:520px){
  .screen{padding:14px}

  .top-brand{margin-bottom:18px}

  .top-brand span{
    font-size:.88rem;
    letter-spacing:.14em;
  }

  .hero-copy h1{
    font-size:2.42rem;
    max-width:100%;
  }

  .hero-copy p{
    margin:18px 0 0;
    line-height:1.45;
  }

  .mini-proof{
    margin-top:18px;
    gap:10px;
  }

  .mini-proof div{padding:13px 14px}

  .mentor-block{min-height:330px}

  .mentor-block img{
    height:340px;
    object-position:center top;
  }

  .mentor-info{
    padding:14px;
    left:10px;
    right:10px;
    bottom:10px;
  }

  .mentor-info strong{font-size:1.1rem}
  .mentor-info span{font-size:.82rem}

  .notice{
    padding:20px;
    border-radius:20px;
  }

  .notice p{font-size:.92rem}

  .quiz-card{
    min-height:calc(100svh - 104px);
    padding:24px 18px;
    border-radius:26px;
  }

  .quiz-card h2{
    min-height:auto;
    margin-bottom:18px;
  }

  .answer{
    min-height:50px;
    font-size:.92rem;
  }

  .meters{grid-template-columns:1fr 1fr 1fr}

  .meter{border-width:5px}
}

/* V7 authority visual additions */
.premium-icons div{
  position:relative;
  padding-top:18px;
}

.proof-svg{
  width:54px;
  height:54px;
  display:grid;
  place-items:center;
  margin-bottom:12px;
  border:1px solid var(--gold);
  border-radius:50%;
  background:radial-gradient(circle,rgba(212,175,55,.12),transparent 68%);
  box-shadow:0 0 26px rgba(212,175,55,.16);
}

.proof-svg svg{
  width:30px;
  height:30px;
  fill:none;
  stroke:var(--gold2);
  stroke-width:2.4;
  stroke-linecap:round;
  stroke-linejoin:round;
}

.authority{
  display:none;
  place-items:center;
  padding:clamp(16px,3vw,34px);
}

.authority.active{
  display:grid;
}

.authority-wrap{
  width:min(1180px,100%);
  display:grid;
  grid-template-columns:.95fr 1.05fr;
  gap:28px;
  align-items:center;
  padding:22px;
  border:1px solid var(--line);
  border-radius:30px;
  background:
    radial-gradient(circle at 20% 10%,rgba(212,175,55,.12),transparent 28%),
    linear-gradient(180deg,rgba(18,18,18,.96),rgba(5,5,5,.98));
  box-shadow:0 30px 90px rgba(0,0,0,.48);
}

.authority-photo{
  min-height:560px;
  border-radius:24px;
  overflow:hidden;
  border:1px solid rgba(212,175,55,.2);
  background:#080808;
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.04);
}

.authority-photo img{
  width:100%;
  height:100%;
  min-height:560px;
  object-fit:cover;
  object-position:center;
  filter:contrast(1.04) saturate(.94);
}

.authority-copy{
  padding:clamp(10px,2vw,34px);
}

.eyebrow{
  display:inline-block;
  margin-bottom:16px;
  color:var(--gold2);
  text-transform:uppercase;
  letter-spacing:.14em;
  font-weight:900;
  font-size:.78rem;
}

.authority-copy h2{
  margin:0;
  max-width:640px;
  text-transform:uppercase;
  font-size:clamp(2.2rem,4.4vw,4.7rem);
  line-height:.95;
  color:#fff;
}

.authority-copy p{
  max-width:640px;
  margin:22px 0;
  color:#e2e2e2;
  font-size:clamp(1rem,1.2vw,1.18rem);
  line-height:1.65;
}

.voice-proof{
  display:grid;
  grid-template-columns:110px 1fr;
  gap:16px;
  align-items:center;
  margin:26px 0 18px;
  padding:14px;
  border:1px solid rgba(212,175,55,.24);
  border-radius:18px;
  background:rgba(255,255,255,.025);
}

.voice-proof img{
  width:110px;
  height:110px;
  object-fit:cover;
  object-position:center;
  border-radius:14px;
}

.voice-proof strong{
  display:block;
  color:var(--gold2);
  text-transform:uppercase;
  line-height:1.25;
}

.voice-proof span{
  display:block;
  margin-top:6px;
  color:#d6d6d6;
  line-height:1.45;
  font-size:.92rem;
}

@media (max-width:980px){
  .premium-icons div{
    display:grid;
    grid-template-columns:58px 1fr;
    gap:0 12px;
    align-items:center;
  }

  .premium-icons .proof-svg{
    grid-row:1 / span 2;
    margin-bottom:0;
  }

  .authority-wrap{
    grid-template-columns:1fr;
  }

  .authority-photo{
    min-height:360px;
  }

  .authority-photo img{
    min-height:360px;
  }
}

@media (max-width:520px){
  .authority-wrap{
    padding:12px;
    border-radius:24px;
  }

  .authority-photo{
    min-height:330px;
  }

  .authority-photo img{
    min-height:330px;
    object-position:center;
  }

  .authority-copy h2{
    font-size:2.25rem;
  }

  .voice-proof{
    grid-template-columns:82px 1fr;
    gap:12px;
  }

  .voice-proof img{
    width:82px;
    height:82px;
  }

  .voice-proof strong{
    font-size:.82rem;
  }

  .voice-proof span{
    font-size:.82rem;
  }
}

/* V8: premium icon correction */
.premium-icons{
  gap:14px;
}

.premium-icons div{
  min-height:178px;
  display:flex !important;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:18px 14px !important;
}

.premium-icons .proof-svg{
  width:74px;
  height:74px;
  margin:0 auto 14px !important;
  display:flex;
  align-items:center;
  justify-content:center;
  border:1px solid rgba(248,223,134,.78);
  background:
    radial-gradient(circle at 50% 50%, rgba(248,223,134,.22), transparent 58%),
    radial-gradient(circle at 50% 50%, rgba(212,175,55,.12), transparent 72%);
  box-shadow:
    0 0 18px rgba(212,175,55,.28),
    inset 0 0 18px rgba(212,175,55,.08);
}

.premium-icons .proof-svg svg{
  width:36px;
  height:36px;
  display:block;
  margin:auto;
  stroke:var(--gold2);
  stroke-width:2.1;
  filter:drop-shadow(0 0 7px rgba(248,223,134,.42));
}

.premium-icons strong{
  color:var(--gold2);
  font-size:.96rem;
  letter-spacing:.02em;
}

.premium-icons span:not(.proof-svg){
  max-width:230px;
  margin-left:auto;
  margin-right:auto;
}

/* V8: thank you screen */
.thanks{
  display:none;
  place-items:center;
  padding:clamp(16px,3vw,34px);
}

.thanks.active{
  display:grid;
}

.thanks-card{
  width:min(1120px,100%);
  display:grid;
  grid-template-columns:.85fr 1.15fr;
  gap:28px;
  align-items:center;
  padding:22px;
  border:1px solid var(--line);
  border-radius:30px;
  background:
    radial-gradient(circle at 75% 15%,rgba(212,175,55,.14),transparent 26%),
    linear-gradient(180deg,rgba(18,18,18,.96),rgba(5,5,5,.98));
  box-shadow:0 30px 90px rgba(0,0,0,.5);
}

.thanks-photo{
  min-height:520px;
  border-radius:24px;
  overflow:hidden;
  border:1px solid rgba(212,175,55,.22);
  background:#080808;
}

.thanks-photo img{
  width:100%;
  height:100%;
  min-height:520px;
  object-fit:cover;
  object-position:center;
  filter:contrast(1.03) saturate(.96);
}

.thanks-copy{
  padding:clamp(10px,2vw,34px);
}

.thanks-copy span{
  display:inline-block;
  margin-bottom:16px;
  color:var(--gold2);
  text-transform:uppercase;
  letter-spacing:.13em;
  font-weight:900;
  font-size:.78rem;
}

.thanks-copy h2{
  margin:0;
  max-width:680px;
  text-transform:uppercase;
  font-size:clamp(2.2rem,4.2vw,4.35rem);
  line-height:.95;
}

.thanks-copy p{
  max-width:670px;
  color:#e0e0e0;
  line-height:1.65;
  font-size:clamp(1rem,1.1vw,1.16rem);
}

.thanks-steps{
  display:grid;
  gap:12px;
  margin:26px 0 18px;
}

.thanks-steps div{
  display:grid;
  grid-template-columns:42px 1fr;
  gap:2px 12px;
  padding:14px;
  border:1px solid rgba(212,175,55,.22);
  border-radius:16px;
  background:rgba(255,255,255,.025);
}

.thanks-steps b{
  grid-row:1 / span 2;
  width:34px;
  height:34px;
  display:grid;
  place-items:center;
  border-radius:50%;
  background:linear-gradient(180deg,#ffe897,#d4af37);
  color:#080808;
}

.thanks-steps strong{
  color:var(--gold2);
  text-transform:uppercase;
}

.thanks-steps small{
  color:#d6d6d6;
  line-height:1.45;
  font-size:.9rem;
}

@media (max-width:980px){
  .premium-icons div{
    display:flex !important;
    text-align:center;
  }

  .premium-icons .proof-svg{
    grid-row:auto;
  }

  .thanks-card{
    grid-template-columns:1fr;
  }

  .thanks-photo{
    min-height:360px;
  }

  .thanks-photo img{
    min-height:360px;
  }
}

@media (max-width:520px){
  .premium-icons div{
    min-height:150px;
  }

  .premium-icons .proof-svg{
    width:68px;
    height:68px;
  }

  .premium-icons .proof-svg svg{
    width:32px;
    height:32px;
  }

  .thanks-card{
    padding:12px;
    border-radius:24px;
  }

  .thanks-photo{
    min-height:320px;
  }

  .thanks-photo img{
    min-height:320px;
  }

  .thanks-copy h2{
    font-size:2.15rem;
  }

  .thanks-steps div{
    grid-template-columns:38px 1fr;
  }
}

/* V9: professional closing fixes */
.lead-card textarea{
  width:100%;
  min-height:96px;
  padding:14px;
  border:1px solid rgba(255,255,255,.14);
  border-radius:12px;
  background:#080808;
  color:#eee;
  resize:none;
  line-height:1.45;
}

.lead-card textarea::placeholder{
  color:#9f9f9f;
}

.char-counter{
  margin-top:-6px !important;
  text-align:right;
  color:#9f9f9f !important;
  font-size:.78rem;
}

.sending-overlay{
  position:fixed;
  inset:0;
  z-index:9999;
  display:none;
  place-items:center;
  padding:22px;
  background:rgba(0,0,0,.78);
  backdrop-filter:blur(8px);
}

.sending-overlay.active{
  display:grid;
}

.sending-box{
  width:min(430px,100%);
  padding:34px 28px;
  border:1px solid var(--line);
  border-radius:26px;
  background:
    radial-gradient(circle at 50% 0%,rgba(212,175,55,.18),transparent 34%),
    linear-gradient(180deg,#151515,#050505);
  text-align:center;
  box-shadow:0 30px 100px rgba(0,0,0,.65);
}

.sending-ring{
  width:96px;
  height:96px;
  margin:0 auto 22px;
  border-radius:50%;
  border:6px solid rgba(212,175,55,.13);
  border-top-color:var(--gold2);
  border-right-color:var(--gold);
  animation:spin 1s linear infinite;
  box-shadow:0 0 34px rgba(212,175,55,.24);
}

.sending-box h3{
  margin:0 0 10px;
  color:var(--gold2);
  text-transform:uppercase;
  letter-spacing:.05em;
}

.sending-box p{
  margin:0;
  color:#dedede;
  line-height:1.55;
}

.thanks-copy .btn.primary{
  display:inline-flex;
  width:auto;
  min-width:260px;
  max-width:100%;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:16px 24px;
  line-height:1.15;
}

@media (max-width:520px){
  .thanks-copy .btn.primary{
    width:100%;
    min-width:0;
    font-size:.88rem;
    white-space:normal;
  }

  .sending-box{
    padding:30px 22px;
  }
}

/* V13: free evaluation and incentive copy */
.free-badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  margin:18px 0 4px;
  padding:11px 16px;
  border:1px solid rgba(248,223,134,.62);
  border-radius:999px;
  color:#070707;
  background:linear-gradient(180deg,#ffe897,#d4af37);
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.035em;
  box-shadow:0 12px 30px rgba(212,175,55,.18);
}

.incentive{
  margin:14px 0 0;
  padding:12px 14px;
  border:1px solid rgba(212,175,55,.28);
  border-radius:14px;
  background:rgba(212,175,55,.055);
  color:#f3e5ae;
  font-size:.94rem;
  line-height:1.45;
}

.investment-note{
  margin-top:-2px;
  padding:12px 14px;
  border:1px solid rgba(212,175,55,.24);
  border-radius:14px;
  background:rgba(255,255,255,.025);
  color:#f3e5ae !important;
  font-size:.95rem;
}

.notice .gold + p{
  margin-top:10px;
}

@media (max-width:520px){
  .free-badge{
    width:100%;
    font-size:.82rem;
    text-align:center;
    line-height:1.25;
    border-radius:14px;
  }

  .incentive{
    font-size:.86rem;
    padding:11px 12px;
  }
}

/* V14: laptop title and mentor-card refinements */
.hero-copy h1{
  max-width:720px;
  overflow-wrap:normal;
  word-break:normal;
}

@media (min-width:981px) and (max-width:1450px){
  .hero-grid{
    grid-template-columns:minmax(540px,1.05fr) minmax(300px,.6fr) minmax(300px,.55fr);
    gap:20px;
  }

  .hero-copy h1{
    font-size:clamp(3.15rem,5vw,5.75rem);
    line-height:.94;
    max-width:650px;
  }

  .hero-copy p{
    max-width:590px;
    font-size:1.05rem;
  }

  .mentor-block{
    min-height:500px;
  }

  .mentor-block img{
    height:500px;
    max-width:390px;
  }

  .mentor-info{
    padding:14px 16px;
    left:12px;
    right:12px;
  }

  .mentor-info strong{
    font-size:1.08rem;
  }

  .mentor-info span{
    font-size:.76rem;
    line-height:1.33;
  }

  .notice{
    padding:24px 22px;
  }

  .notice p{
    font-size:.86rem;
    line-height:1.52;
  }
}

@media (min-width:981px) and (max-width:1220px){
  .hero-grid{
    grid-template-columns:minmax(520px,1fr) minmax(260px,.48fr) minmax(275px,.52fr);
    gap:18px;
  }

  .hero-copy h1{
    font-size:clamp(3rem,4.65vw,5.2rem);
    max-width:610px;
    letter-spacing:-.01em;
  }

  .premium-icons div{
    min-height:150px;
  }

  .premium-icons .proof-svg{
    width:62px;
    height:62px;
  }

  .premium-icons .proof-svg svg{
    width:30px;
    height:30px;
  }

  .mini-proof{
    gap:10px;
  }
}

@media (max-width:980px){
  .mentor-info span b{
    display:block;
    color:var(--gold2);
    margin-bottom:4px;
  }
}

@media (max-width:520px){
  .mentor-info span{
    font-size:.78rem;
    line-height:1.34;
  }

  .mentor-info span b{
    font-size:.86rem;
  }
}

/* V15: final responsive correction for hero title, portrait overlay and image crops */

/* Prevent title clipping on mid-size laptops */
.hero-copy{
  min-width:0;
}

.hero-copy h1{
  max-width:100%;
  width:100%;
  overflow:visible;
  white-space:normal;
  text-wrap:balance;
}

.hero-copy h1 b{
  display:block;
}

/* More stable desktop layout */
@media (min-width:981px){
  .hero-grid{
    grid-template-columns:minmax(520px, 1fr) minmax(280px, .58fr) minmax(300px, .58fr);
    align-items:center;
  }

  .hero-copy h1{
    font-size:clamp(3rem, 4.65vw, 5.65rem) !important;
    line-height:.94 !important;
    letter-spacing:-.018em;
    max-width:690px;
  }

  .hero-copy p{
    max-width:610px;
  }

  .mentor-block{
    overflow:visible;
  }

  .mentor-block img{
    max-width:380px;
  }
}

/* Extra tightening for common laptop widths */
@media (min-width:981px) and (max-width:1280px){
  .hero-grid{
    grid-template-columns:minmax(500px, 1.05fr) minmax(250px, .48fr) minmax(280px, .52fr) !important;
    gap:18px !important;
  }

  .hero-copy h1{
    font-size:clamp(2.85rem, 4.25vw, 4.75rem) !important;
    line-height:.96 !important;
    max-width:560px !important;
  }

  .hero-copy p{
    font-size:.98rem !important;
    max-width:520px !important;
  }

  .free-badge{
    font-size:.75rem;
    padding:9px 14px;
  }

  .mentor-block{
    min-height:470px !important;
  }

  .mentor-block img{
    height:470px !important;
    max-width:340px !important;
  }

  .notice{
    padding:20px 18px !important;
  }

  .notice h2{
    font-size:.95rem !important;
  }

  .notice p{
    font-size:.78rem !important;
    line-height:1.48 !important;
  }
}

/* Mobile portrait: keep the face free and place the card lower */
@media (max-width:980px){
  .mentor-block{
    min-height:auto !important;
    display:block !important;
    padding-bottom:0;
    overflow:visible !important;
    background:radial-gradient(circle at 50% 22%,rgba(212,175,55,.10),transparent 38%);
  }

  .mentor-block img{
    display:block;
    width:100% !important;
    max-width:100% !important;
    height:auto !important;
    max-height:none !important;
    object-fit:contain !important;
    object-position:center top !important;
    border-radius:24px 24px 0 0;
    mask-image:none !important;
    -webkit-mask-image:none !important;
  }

  .mentor-info{
    position:relative !important;
    left:auto !important;
    right:auto !important;
    bottom:auto !important;
    margin:-4px 14px 0 !important;
    padding:18px 18px 20px !important;
    border-left:1px solid var(--gold);
    border-radius:0 0 18px 18px;
    background:linear-gradient(90deg,rgba(0,0,0,.88),rgba(10,10,10,.76)) !important;
    backdrop-filter:blur(10px);
  }
}

@media (max-width:520px){
  .hero-copy h1{
    font-size:2.24rem !important;
    line-height:1 !important;
    letter-spacing:-.02em;
  }

  .mentor-block{
    margin-top:22px;
  }

  .mentor-block img{
    height:auto !important;
  }

  .mentor-info{
    margin:-2px 10px 0 !important;
    padding:16px 16px 18px !important;
  }

  .mentor-info strong{
    font-size:1.1rem !important;
  }

  .mentor-info span{
    font-size:.82rem !important;
    line-height:1.38 !important;
  }
}

/* Conference and proof images: avoid bad cutting */
.authority-photo{
  display:flex;
  align-items:center;
  justify-content:center;
  background:#050505;
}

.authority-photo img{
  object-fit:contain !important;
  object-position:center center !important;
  background:#050505;
}

.voice-proof img{
  object-fit:cover;
  object-position:center center;
}

.thanks-photo{
  display:flex;
  align-items:center;
  justify-content:center;
  background:#050505;
}

.thanks-photo img{
  object-fit:contain !important;
  object-position:center center !important;
  background:#050505;
}

@media (max-width:980px){
  .authority-photo,
  .thanks-photo{
    min-height:auto !important;
    padding:0;
  }

  .authority-photo img,
  .thanks-photo img{
    width:100%;
    height:auto !important;
    min-height:0 !important;
    max-height:none !important;
  }
}

/* If browser supports dynamic viewport, reduce the hero crush */
@media (min-width:981px) and (max-height:760px){
  .hero-grid{
    min-height:auto !important;
  }

  .hero-panel,
  .hero{
    min-height:auto !important;
  }

  .hero-copy h1{
    font-size:clamp(2.7rem, 4vw, 4.55rem) !important;
  }

  .premium-icons div{
    min-height:136px !important;
  }
}

/* V16: Calendly integrated scheduling screen */
.schedule{
  display:none;
  place-items:center;
  padding:clamp(16px,3vw,34px);
}

.schedule.active{
  display:grid;
}

.schedule-card{
  width:min(1180px,100%);
  padding:clamp(16px,2.4vw,28px);
  border:1px solid var(--line);
  border-radius:30px;
  background:
    radial-gradient(circle at 50% 0%,rgba(212,175,55,.14),transparent 26%),
    linear-gradient(180deg,rgba(18,18,18,.96),rgba(5,5,5,.98));
  box-shadow:0 30px 90px rgba(0,0,0,.5);
}

.schedule-intro{
  text-align:center;
  max-width:820px;
  margin:0 auto 24px;
}

.schedule-intro span,
.calendar-head span{
  display:inline-block;
  margin-bottom:12px;
  color:var(--gold2);
  text-transform:uppercase;
  letter-spacing:.13em;
  font-weight:900;
  font-size:.78rem;
}

.schedule-intro h2{
  margin:0;
  text-transform:uppercase;
  font-size:clamp(2rem,4vw,4rem);
  line-height:.98;
}

.schedule-intro p{
  color:#e0e0e0;
  line-height:1.62;
  font-size:clamp(.98rem,1.05vw,1.12rem);
}

.video-placeholder{
  display:grid;
  grid-template-columns:92px 1fr;
  gap:18px;
  align-items:center;
  max-width:820px;
  margin:24px auto 28px;
  padding:18px;
  border:1px solid rgba(212,175,55,.25);
  border-radius:22px;
  background:
    radial-gradient(circle at 20% 50%,rgba(212,175,55,.12),transparent 38%),
    rgba(255,255,255,.025);
}

.play-circle{
  width:82px;
  height:82px;
  display:grid;
  place-items:center;
  border:1px solid rgba(248,223,134,.72);
  border-radius:50%;
  color:#080808;
  background:linear-gradient(180deg,#ffe897,#d4af37);
  font-size:1.55rem;
  box-shadow:0 0 32px rgba(212,175,55,.24);
}

.video-placeholder strong{
  display:block;
  color:var(--gold2);
  text-transform:uppercase;
  font-size:1.05rem;
}

.video-placeholder p{
  margin:6px 0 0;
  color:#d8d8d8;
  line-height:1.5;
}

.calendar-block{
  overflow:hidden;
  border:1px solid rgba(212,175,55,.25);
  border-radius:24px;
  background:#080808;
}

.calendar-head{
  padding:24px 24px 12px;
  text-align:center;
}

.calendar-head h3{
  margin:0;
  color:#fff;
  text-transform:uppercase;
  font-size:clamp(1.45rem,2.5vw,2.4rem);
}

.calendar-head p{
  max-width:680px;
  margin:12px auto 0;
  color:#ddd;
  line-height:1.55;
}

.calendly-inline-widget{
  width:100%;
  border-radius:0 0 24px 24px;
  overflow:hidden;
  background:#fff;
}

.schedule .thanks-photo,
.schedule .thanks-copy,
.schedule .thanks-steps{
  display:none !important;
}

@media (max-width:760px){
  .schedule-card{
    padding:14px;
    border-radius:24px;
  }

  .video-placeholder{
    grid-template-columns:1fr;
    text-align:center;
  }

  .play-circle{
    margin:0 auto;
  }

  .calendar-head{
    padding:20px 16px 10px;
  }

  .calendly-inline-widget{
    height:820px !important;
  }
}

@media (max-width:420px){
  .calendly-inline-widget{
    height:880px !important;
  }
}


/* V17: Calendly popup premium */
.schedule-premium{
  display:none;
  place-items:center;
  padding:clamp(18px,3vw,38px);
}
.schedule-premium.active{display:grid;}

.schedule-shell{
  width:min(1180px,100%);
  padding:clamp(18px,2.4vw,30px);
  border:1px solid rgba(212,175,55,.18);
  border-radius:32px;
  background:
    radial-gradient(circle at 50% 0%,rgba(212,175,55,.10),transparent 24%),
    radial-gradient(circle at 12% 30%,rgba(212,175,55,.08),transparent 26%),
    linear-gradient(180deg,rgba(10,10,10,.98),rgba(4,4,4,1));
  box-shadow:0 30px 90px rgba(0,0,0,.55);
}

.schedule-header{
  max-width:880px;
  margin:0 auto 28px;
  text-align:center;
}
.schedule-header span,
.agenda-panel > span{
  display:inline-block;
  margin-bottom:12px;
  color:var(--gold2);
  text-transform:uppercase;
  letter-spacing:.14em;
  font-weight:900;
  font-size:.78rem;
}
.schedule-header h2{
  margin:0 0 14px;
  color:#fff;
  text-transform:uppercase;
  font-size:clamp(2rem,3.8vw,4.1rem);
  line-height:.96;
}
.schedule-header p{
  margin:0 auto;
  color:#e4e4e4;
  line-height:1.65;
  font-size:clamp(.98rem,1.05vw,1.12rem);
}

.schedule-grid{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:22px;
  align-items:stretch;
}

.video-stage,
.agenda-panel{
  border:1px solid rgba(212,175,55,.18);
  border-radius:28px;
  background:
    linear-gradient(180deg,rgba(255,255,255,.02),rgba(255,255,255,.01)),
    rgba(8,8,8,.9);
}
.video-stage{padding:18px;}
.video-stage__badge{
  display:inline-block;
  margin-bottom:14px;
  padding:8px 12px;
  border:1px solid rgba(212,175,55,.22);
  border-radius:999px;
  color:var(--gold2);
  font-size:.78rem;
  text-transform:uppercase;
  letter-spacing:.1em;
  font-weight:800;
}
.video-stage__frame{
  min-height:520px;
  border-radius:24px;
  display:grid;
  place-items:center;
  text-align:center;
  padding:24px;
  background:
    radial-gradient(circle at 50% 30%,rgba(212,175,55,.12),transparent 30%),
    linear-gradient(180deg,#101010,#060606);
  border:1px solid rgba(212,175,55,.16);
}
.video-stage__play{
  width:92px;
  height:92px;
  margin:0 auto 18px;
  display:grid;
  place-items:center;
  border-radius:50%;
  border:1px solid rgba(248,223,134,.8);
  background:linear-gradient(180deg,#ffe897,#d4af37);
  color:#050505;
  font-size:1.8rem;
  box-shadow:0 0 34px rgba(212,175,55,.25);
}
.video-stage__copy strong{
  display:block;
  color:#fff;
  font-size:1.15rem;
  margin-bottom:10px;
}
.video-stage__copy p{
  margin:0;
  color:#ddd;
  line-height:1.6;
  max-width:520px;
}

.agenda-panel{
  padding:24px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}
.agenda-panel h3{
  margin:0 0 12px;
  color:#fff;
  text-transform:uppercase;
  font-size:clamp(1.45rem,2.2vw,2.4rem);
  line-height:1.02;
}
.agenda-panel p{
  margin:0 0 18px;
  color:#ddd;
  line-height:1.62;
}
.agenda-points{
  list-style:none;
  padding:0;
  margin:0 0 24px;
  display:grid;
  gap:10px;
}
.agenda-points li{
  padding:12px 14px;
  border:1px solid rgba(212,175,55,.14);
  border-radius:16px;
  color:#f2f2f2;
  background:linear-gradient(180deg,rgba(255,255,255,.02),rgba(255,255,255,.01));
}
.agenda-points li::before{
  content:"✦";
  color:var(--gold2);
  margin-right:10px;
}
.agenda-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:4px;
}
.agenda-actions .btn{
  min-width:220px;
  justify-content:center;
}
.btn-outline{
  border:1px solid rgba(212,175,55,.35);
  background:rgba(255,255,255,.02);
  color:#fff;
  text-decoration:none;
}
.btn-outline:hover{
  background:rgba(212,175,55,.08);
}
.agenda-note{
  display:block;
  margin-top:14px;
  color:#bfbfbf;
  line-height:1.5;
}

@media (max-width:980px){
  .schedule-grid{grid-template-columns:1fr;}
  .video-stage__frame{min-height:420px;}
}
@media (max-width:620px){
  .schedule-shell{
    padding:14px;
    border-radius:24px;
  }
  .video-stage,.agenda-panel{border-radius:22px;}
  .agenda-panel{padding:18px;}
  .agenda-actions{flex-direction:column;}
  .agenda-actions .btn{
    width:100%;
    min-width:0;
  }
  .video-stage__frame{
    min-height:320px;
    padding:18px;
  }
  .video-stage__play{
    width:82px;
    height:82px;
    font-size:1.55rem;
  }
}


/* V20: Video #1 integrated before quiz */
.authority-video{
  display:none;
  place-items:center;
  padding:clamp(16px,3vw,36px);
}

.authority-video.active{
  display:grid;
}

.authority-video-wrap{
  width:min(1180px,100%);
  display:grid;
  grid-template-columns:.92fr 1.08fr;
  gap:28px;
  align-items:center;
  padding:clamp(16px,2.4vw,28px);
  border:1px solid rgba(212,175,55,.24);
  border-radius:32px;
  background:
    radial-gradient(circle at 74% 12%,rgba(212,175,55,.14),transparent 30%),
    radial-gradient(circle at 0% 90%,rgba(91,30,45,.24),transparent 32%),
    linear-gradient(180deg,rgba(18,18,18,.96),rgba(5,5,5,.98));
  box-shadow:0 34px 100px rgba(0,0,0,.55);
}

.authority-video-copy{
  padding:clamp(10px,2vw,30px);
}

.authority-video-copy h2{
  margin:0;
  text-transform:uppercase;
  font-size:clamp(2.25rem,4.25vw,4.7rem);
  line-height:.95;
  letter-spacing:-.03em;
}

.authority-video-copy p{
  max-width:610px;
  color:#e2e2e2;
  font-size:clamp(1rem,1.1vw,1.16rem);
  line-height:1.65;
}

.compact-proof{
  margin:24px 0 18px;
}

.entry-video-card{
  position:relative;
  padding:18px;
  border:1px solid rgba(212,175,55,.24);
  border-radius:28px;
  background:
    radial-gradient(circle at 50% 0%,rgba(212,175,55,.12),transparent 30%),
    linear-gradient(180deg,rgba(255,255,255,.03),rgba(255,255,255,.012)),
    rgba(8,8,8,.92);
}

.entry-video-badge{
  display:inline-block;
  margin-bottom:14px;
  padding:8px 13px;
  border:1px solid rgba(212,175,55,.25);
  border-radius:999px;
  color:var(--gold2);
  text-transform:uppercase;
  letter-spacing:.12em;
  font-weight:900;
  font-size:.78rem;
  background:rgba(212,175,55,.055);
}

.entry-video-frame{
  width:100%;
  max-width:430px;
  margin:0 auto;
  aspect-ratio:9 / 16;
  overflow:hidden;
  border:1px solid rgba(212,175,55,.32);
  border-radius:24px;
  background:#050505;
  box-shadow:
    0 24px 80px rgba(0,0,0,.55),
    0 0 38px rgba(212,175,55,.12);
}

.entry-video{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
  background:#000;
}

.entry-video-note{
  max-width:520px;
  margin:16px auto 0;
  color:#d6d6d6;
  text-align:center;
  line-height:1.5;
  font-size:.92rem;
}

@media (max-width:980px){
  .authority-video-wrap{
    grid-template-columns:1fr;
  }

  .authority-video-copy{
    order:2;
    text-align:left;
  }

  .entry-video-card{
    order:1;
  }

  .entry-video-frame{
    max-width:390px;
  }
}

@media (max-width:520px){
  .authority-video{
    padding:14px;
  }

  .authority-video-wrap{
    padding:12px;
    border-radius:24px;
    gap:18px;
  }

  .authority-video-copy h2{
    font-size:2.15rem;
  }

  .entry-video-card{
    padding:12px;
    border-radius:22px;
  }

  .entry-video-frame{
    max-width:100%;
    border-radius:20px;
  }

  .entry-video-note{
    font-size:.86rem;
  }
}


/* V21: videos finales */
.final-call-video{
  width:100%;
  max-width:430px;
  aspect-ratio:9 / 16;
  height:auto;
  display:block;
  margin:0 auto;
  object-fit:cover;
  border-radius:22px;
  border:1px solid rgba(212,175,55,.32);
  background:#000;
  box-shadow:0 24px 80px rgba(0,0,0,.55), 0 0 38px rgba(212,175,55,.12);
}

.video-stage__frame--real,
.v18-video-frame--real{
  display:grid !important;
  place-items:center !important;
  min-height:auto !important;
  padding:18px !important;
}

@media (max-width:520px){
  .final-call-video{
    max-width:100%;
    border-radius:18px;
  }
}
