/* ==========================================================================
   Rishab Concept — Get Smart Indicator webinar landing page
   Static build. No CSS variables: all colors are hex, all sizes in px.
   ========================================================================== */

* { margin: 0; padding: 0; box-sizing: border-box; border-color: #264135; }

html { scroll-behavior: smooth; }

body {
  background-color: #06100b;
  color: #f2f6f4;
  font-family: "Plus Jakarta Sans", ui-sans-serif, system-ui, -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}

img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; }
a { color: inherit; }

/* ---------- Page background (glows + grid) ---------- */
.page-bg {
  position: relative;
  min-height: 100vh;
  background-color: #06100b;
  background-image:
    radial-gradient(900px 600px at 0% 0%, rgba(0, 155, 105, 0.18), transparent 70%),
    radial-gradient(900px 600px at 100% 100%, rgba(203, 147, 23, 0.12), transparent 70%),
    linear-gradient(to right, rgba(156, 244, 206, 0.035) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(156, 244, 206, 0.035) 1px, transparent 1px);
  background-size: 100% 100%, 100% 100%, 64px 64px, 64px 64px;
  background-attachment: fixed, fixed, scroll, scroll;
}

.page-bg.home { padding-bottom: 224px; }

/* ---------- Shared pieces ---------- */
.wrap { width: 100%; max-width: 1152px; margin: 0 auto; padding-left: 16px; padding-right: 16px; }

.glass-card {
  background-color: rgba(13, 28, 21, 0.75);
  border: 1px solid #264135;
  border-radius: 16px;
  backdrop-filter: blur(10px);
}

.eyebrow {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 12px;
  color: #1fe9ab;
  text-align: center;
}

.section { padding-top: 64px; padding-bottom: 64px; }
.section h2.title {
  margin-top: 12px;
  text-align: center;
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.5px;
}
.section .subtitle {
  max-width: 640px;
  margin: 12px auto 0;
  text-align: center;
  color: #9da8a1;
}
.section .body { margin-top: 40px; }
.green { color: #1fe9ab; }
.red { color: #fb5663; }
.muted { color: #9da8a1; }

.icon { width: 20px; height: 20px; flex-shrink: 0; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.icon-sm { width: 16px; height: 16px; }
.icon-lg { width: 28px; height: 28px; }

/* ---------- Ticker ---------- */
.ticker {
  position: sticky;
  top: 0;
  z-index: 50;
  overflow: hidden;
  border-bottom: 1px solid #264135;
  background-color: rgba(13, 27, 21, 0.9);
  backdrop-filter: blur(8px);
}
.ticker-track {
  display: flex;
  width: max-content;
  padding-top: 10px;
  padding-bottom: 10px;
  animation: ticker-scroll 40s linear infinite;
}
.ticker-copy { display: flex; flex-shrink: 0; }
.ticker-item {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  padding-left: 24px;
  padding-right: 24px;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 12px;
  letter-spacing: 1px;
}
.dot { width: 6px; height: 6px; border-radius: 999px; display: inline-block; }
.dot.up { background-color: #1fe9ab; }
.dot.down { background-color: #fb5663; }

@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Hero ---------- */
.hero { padding-top: 40px; padding-bottom: 24px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #264135;
  background-color: rgba(13, 27, 21, 0.7);
  border-radius: 999px;
  padding: 6px 16px;
  font-size: 14px;
  color: #9da8a1;
}
.hero-center { text-align: center; }
h1 {
  max-width: 880px;
  margin: 24px auto 0;
  font-size: 36px;
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -1px;
}
.hero-sub { max-width: 580px; margin: 16px auto 0; color: #9da8a1; }

.mentor-row {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.mentor-avatar {
  width: 192px;
  height: 192px;
  border-radius: 999px;
  border: 2px solid rgba(31, 233, 171, 0.3);
  object-fit: cover;
  box-shadow: 0 0 40px -10px rgba(31, 233, 171, 0.35);
}
.mentor-card { max-width: 384px; padding: 24px; text-align: center; }
.mentor-card .name { font-size: 18px; font-weight: 700; }
.mentor-card .role { margin-top: 4px; font-size: 14px; color: #9da8a1; }
.mentor-card .meta { margin-top: 12px; font-size: 12px; line-height: 1.7; color: #9da8a1; }

.hero-grid { margin-top: 40px; display: grid; gap: 24px; }
.benefits { padding: 24px; }
.benefits h2 { font-size: 18px; font-weight: 700; }
.benefits ul { margin-top: 20px; list-style: none; display: flex; flex-direction: column; gap: 16px; }
.benefits li { display: flex; gap: 12px; font-size: 15px; }
.benefits li .icon { color: #1fe9ab; margin-top: 2px; }
.benefits b { font-weight: 600; }

.hide-desktop { display: block; }
.hide-mobile { display: none; }

/* ---------- Lead form ---------- */
.lead-form {
  padding: 24px;
  scroll-margin-top: 96px;
  box-shadow: 0 0 40px -10px rgba(31, 233, 171, 0.35);
}
.lead-form h2 { font-size: 18px; font-weight: 700; }
.lead-form .hint { margin-top: 4px; font-size: 14px; color: #9da8a1; }
.lead-form form { margin-top: 20px; display: flex; flex-direction: column; gap: 16px; }
.field label { display: block; margin-bottom: 6px; font-size: 12px; font-weight: 500; }
.field input {
  width: 100%;
  border: 1px solid #264135;
  border-radius: 8px;
  background-color: rgba(6, 16, 11, 0.6);
  padding: 12px 16px;
  font-size: 14px;
  color: #f2f6f4;
  font-family: inherit;
  outline: none;
}
.field input::placeholder { color: rgba(157, 168, 161, 0.7); }
.field input:focus { border-color: rgba(31, 233, 171, 0.7); box-shadow: 0 0 0 2px rgba(31, 233, 171, 0.35); }
.phone-wrap {
  display: flex;
  align-items: stretch;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid #264135;
  background-color: rgba(6, 16, 11, 0.6);
}
.phone-wrap:focus-within { border-color: rgba(31, 233, 171, 0.7); }
.phone-prefix {
  display: flex;
  align-items: center;
  border-right: 1px solid #264135;
  padding: 0 12px;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 14px;
  color: #1fe9ab;
}
.phone-wrap input {
  width: 100%;
  background: transparent;
  border: 0;
  padding: 12px 16px;
  font-size: 14px;
  color: #f2f6f4;
  font-family: inherit;
  outline: none;
}
.error { margin-top: 4px; font-size: 12px; color: #fb5663; }
.error:empty { display: none; }

.btn-gold {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 12px;
  background-color: #f8bd40;
  color: #1d1406;
  padding: 14px 24px;
  font-size: 16px;
  font-weight: 700;
  box-shadow: 0 12px 40px -12px rgba(248, 189, 64, 0.55);
  transition: transform 0.15s ease;
}
.btn-gold:hover { transform: scale(1.01); }
.btn-gold:disabled { opacity: 0.7; cursor: not-allowed; }
.fineprint { text-align: center; font-size: 11px; color: #9da8a1; }

.spinner { width: 16px; height: 16px; animation: spin 1s linear infinite; }
.spinner.hidden { display: none; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- Early bird ---------- */
.earlybird { display: flex; flex-direction: column; gap: 16px; padding: 24px; }
.tag-gold {
  border: 1px solid rgba(248, 189, 64, 0.4);
  background-color: rgba(248, 189, 64, 0.1);
  border-radius: 6px;
  padding: 4px 8px;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 2px;
  color: #f8bd40;
}
.earlybird .lead { margin-top: 12px; font-size: 18px; font-weight: 700; }
.earlybird .sub { margin-top: 4px; font-size: 14px; color: #9da8a1; }
.tag-danger {
  width: fit-content;
  border: 1px solid rgba(251, 86, 99, 0.4);
  background-color: rgba(251, 86, 99, 0.1);
  border-radius: 999px;
  padding: 8px 16px;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 12px;
  letter-spacing: 1px;
  color: #fb5663;
}

/* ---------- Indicator in action ---------- */
.pills { margin-bottom: 32px; display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #264135;
  background-color: rgba(13, 27, 21, 0.7);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 600;
}
.pill .icon { color: #1fe9ab; }
.banner-img {
  margin: 0 auto;
  width: 100%;
  max-width: 896px;
  border-radius: 16px;
  border: 1px solid #264135;
  box-shadow: 0 0 40px -10px rgba(31, 233, 171, 0.35);
}
.banner-caption { margin-top: 16px; text-align: center; font-size: 14px; color: #9da8a1; }

/* ---------- Mentor section ---------- */
.mentor-grid { display: grid; gap: 40px; align-items: start; }
.mentor-photo { width: 100%; border-radius: 16px; border: 1px solid #264135; object-fit: cover; }
.mentor-bio .lead { font-size: 18px; font-weight: 700; color: #1fe9ab; }
.mentor-bio p.text { margin-top: 16px; line-height: 1.7; color: #9da8a1; }
.stat-pills { margin-top: 24px; display: flex; flex-wrap: wrap; gap: 12px; }
.stat-pill {
  border: 1px solid rgba(31, 233, 171, 0.3);
  background-color: rgba(31, 233, 171, 0.1);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 600;
  color: #1fe9ab;
}

/* ---------- Testimonials ---------- */
.testimonials { display: grid; gap: 24px; }
.testimonial { display: flex; flex-direction: column; padding: 24px; }
.stars { display: flex; gap: 4px; color: #f8bd40; }
.testimonial blockquote { margin-top: 16px; flex: 1; font-size: 14px; line-height: 1.7; }
.testimonial figcaption { margin-top: 24px; display: flex; align-items: center; gap: 12px; }
.avatar {
  display: flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background-image: linear-gradient(to bottom right, #1fe9ab, #f8bd40);
  font-size: 14px;
  font-weight: 700;
  color: #02130c;
  flex-shrink: 0;
}
.t-name { display: block; font-size: 14px; font-weight: 700; }
.t-role { display: block; font-size: 12px; color: #9da8a1; }
.dots { margin-top: 32px; display: flex; justify-content: center; gap: 8px; }
.dots button {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 999px;
  background-color: #182821;
  transition: background-color 0.2s ease;
}
.dots button.active { background-color: #1fe9ab; }

/* ---------- FAQ ---------- */
.faq { max-width: 896px; margin: 0 auto; display: flex; flex-direction: column; gap: 16px; }
.faq-item { padding: 0 20px; }
.faq-q {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: none;
  border: 0;
  color: #f2f6f4;
  text-align: left;
  font-size: 16px;
  font-weight: 700;
  padding: 16px 0;
}
.faq-q .icon { color: #1fe9ab; transition: transform 0.2s ease; }
.faq-item.open .faq-q .icon { transform: rotate(45deg); }
.faq-a { display: none; padding-bottom: 16px; font-size: 14px; line-height: 1.7; color: #9da8a1; }
.faq-item.open .faq-a { display: block; }

/* ---------- Final CTA ---------- */
.final-cta { padding: 32px; text-align: center; }
.final-cta h2 { font-size: 30px; font-weight: 800; }
.final-cta .wa { margin-top: 16px; display: flex; align-items: center; justify-content: center; gap: 8px; color: #9da8a1; }
.final-cta .note { margin-top: 20px; font-size: 14px; font-style: italic; color: #fb5663; }
.final-cta .btn-gold { margin: 32px auto 0; max-width: 576px; padding: 20px 32px; font-size: 20px; }

/* ---------- Sticky CTA ---------- */
.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  display: flex;
  justify-content: center;
  padding: 12px;
}
.sticky-cta .glass-card {
  position: relative;
  width: 100%;
  max-width: 384px;
  background-color: rgba(13, 27, 21, 0.95);
  padding: 16px;
  text-align: center;
  box-shadow: 0 0 40px -10px rgba(31, 233, 171, 0.35);
}
.sticky-cta .close {
  position: absolute;
  right: 8px;
  top: 8px;
  background: none;
  border: 0;
  color: #9da8a1;
  line-height: 0;
}
.sticky-cta .close:hover { color: #f2f6f4; }
.sticky-cta .line1 { font-size: 14px; }
.sticky-cta .line2 { margin-top: 4px; display: flex; align-items: center; justify-content: center; gap: 6px; font-size: 12px; color: #9da8a1; }
.sticky-cta .btn-gold { margin-top: 12px; padding: 10px 20px; font-size: 14px; border-radius: 8px; }

/* ---------- Footer ---------- */
footer {
  border-top: 1px solid #264135;
  padding: 32px 16px;
  text-align: center;
  font-size: 14px;
  color: #9da8a1;
}

/* ---------- Thank you page ---------- */
.thanks { display: flex; flex-direction: column; min-height: 100vh; }
.thanks main { width: 100%; max-width: 672px; margin: 0 auto; flex: 1; padding: 64px 16px; text-align: center; }
.check-big { width: 80px; height: 80px; margin: 0 auto; color: #1fe9ab; animation: pop 0.5s ease-out; }
@keyframes pop { from { transform: scale(0.6); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.thanks h1 { margin-top: 24px; font-size: 34px; font-weight: 800; letter-spacing: -1px; }
.thanks .intro { margin-top: 16px; color: #9da8a1; }
.btn-whatsapp {
  margin-top: 40px;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: 16px;
  background-color: #39cd66;
  padding: 20px 32px;
  font-size: 20px;
  font-weight: 700;
  color: #06100b;
  text-decoration: none;
  box-shadow: 0 16px 50px -12px #39cd66;
  transition: transform 0.15s ease;
}
.btn-whatsapp:hover { transform: scale(1.02); }
.thanks .after { margin-top: 16px; font-size: 14px; color: #9da8a1; }
.next-card { margin-top: 48px; padding: 24px; text-align: left; }
.next-card h2 { font-size: 14px; font-weight: 700; }
.next-card ol { margin-top: 16px; list-style: none; display: flex; flex-direction: column; gap: 12px; font-size: 14px; color: #9da8a1; }
.back-home { margin-top: 32px; display: inline-block; font-size: 14px; color: #9da8a1; text-decoration: underline; }

/* ---------- Responsive ---------- */
@media (min-width: 640px) {
  .page-bg.home { padding-bottom: 192px; }
  .hero { padding-top: 64px; }
  h1 { font-size: 56px; }
  .section { padding-top: 80px; padding-bottom: 80px; }
  .section h2.title { font-size: 44px; }
  .mentor-row { flex-direction: row; justify-content: center; }
  .earlybird { flex-direction: row; align-items: center; justify-content: space-between; }
  .benefits { padding: 32px; }
  .final-cta { padding: 56px; }
  .final-cta h2 { font-size: 36px; }
  .thanks h1 { font-size: 46px; }
}

@media (min-width: 768px) {
  .testimonials { grid-template-columns: repeat(3, 1fr); }
  .mentor-grid { grid-template-columns: 280px 1fr; }
}

@media (min-width: 1024px) {
  .hide-desktop { display: none; }
  .hide-mobile { display: block; }
  .hero-grid { grid-template-columns: 1.1fr 0.9fr; }
}
