:root {
  --bg: #05070b;
  --bg-2: #0b1018;
  --gold: #e0b84c;
  --gold-2: #f6d98a;
  --gold-dim: rgba(224, 184, 76, 0.16);
  --green: #1fe9ab;
  --green-dim: rgba(31, 233, 171, 0.14);
  --red: #ff5d73;
  --text: #f4f6fa;
  --muted: #8d96a8;
  --line: rgba(255, 255, 255, 0.08);
  --glass: rgba(10, 14, 22, 0.72);
  --radius: 20px;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.5);
  --font: "Plus Jakarta Sans", system-ui, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, monospace;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  min-height: 100%;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

button,
input {
  font-family: inherit;
}

.page-bg.home {
  position: relative;
  min-height: 100vh;
  background:
    radial-gradient(900px 480px at 12% -10%, rgba(224, 184, 76, 0.16), transparent 60%),
    radial-gradient(700px 420px at 92% 8%, rgba(31, 233, 171, 0.1), transparent 55%),
    radial-gradient(800px 500px at 50% 100%, rgba(224, 184, 76, 0.06), transparent 60%),
    var(--bg);
}

.page-bg.home::before {
  content: "";
  pointer-events: none;
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='.04'/%3E%3C/svg%3E");
  opacity: 0.5;
}

.wrap {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.green { color: var(--green); }
.red { color: var(--red); }
.muted { color: var(--muted); font-weight: 500; }
.hidden { display: none !important; }

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

.icon-sm {
  width: 16px;
  height: 16px;
}

/* Ticker */
.ticker {
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: rgba(5, 7, 11, 0.85);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 20;
}

.ticker-track {
  display: flex;
  gap: 36px;
  width: max-content;
  padding: 10px 0;
  animation: ticker 42s linear infinite;
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.02em;
  white-space: nowrap;
  color: #c9d0dc;
}

.ticker-item .sym { color: var(--text); font-weight: 500; }
.ticker-item .up { color: var(--green); }
.ticker-item .down { color: var(--red); }

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

/* Glass */
.glass-card {
  background: var(--glass);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
}

/* Hero */
.hero {
  padding: 36px 0 20px;
}

.hero-center {
  text-align: center;
  margin-bottom: 28px;
}

.hero-badge .icon polygon {
  fill: currentColor;
  stroke: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: 999px;
  background: var(--green-dim);
  border: 1px solid rgba(31, 233, 171, 0.28);
  color: #d8fff2;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.hero h1 {
  margin-top: 18px;
  font-size: clamp(32px, 5.2vw, 58px);
  line-height: 1.08;
  letter-spacing: -0.035em;
  font-weight: 800;
}

.hero-sub {
  margin-top: 14px;
  color: var(--muted);
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 500;
}

.mentor-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 8px auto 32px;
  max-width: 720px;
}

.mentor-avatar,
.mentor-photo {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 18%;
  border: 2px solid rgba(224, 184, 76, 0.55);
  box-shadow: 0 0 0 6px var(--gold-dim);
  background: #121826;
}

.mentor-card {
  flex: 1;
  padding: 16px 20px;
}

.mentor-card .name {
  font-weight: 800;
  font-size: 18px;
}

.mentor-card .role {
  color: var(--gold-2);
  font-size: 13px;
  font-weight: 600;
  margin-top: 2px;
}

.mentor-card .meta {
  color: var(--muted);
  font-size: 13px;
  margin-top: 8px;
  line-height: 1.45;
}

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

.benefits {
  padding: 28px;
}

.benefits h2,
.wa-card h2 {
  font-size: 22px;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}

.benefits ul {
  list-style: none;
  margin-top: 18px;
  display: grid;
  gap: 14px;
}

.benefits li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #e8ecf3;
  line-height: 1.45;
}

.benefits li .icon {
  color: var(--green);
  margin-top: 2px;
}

/* WhatsApp community */
.wa-card {
  padding: 26px 24px 22px;
  text-align: left;
}

.wa-card .hint {
  color: var(--muted);
  font-size: 14px;
  margin: 8px 0 18px;
}

.wa-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(37, 211, 102, 0.14);
  border: 1px solid rgba(37, 211, 102, 0.35);
  color: #8dffc0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.wa-badge .icon {
  fill: #25d366;
  stroke: none;
}

.wa-list {
  list-style: none;
  display: grid;
  gap: 12px;
  margin-bottom: 20px;
}

.wa-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #e8ecf3;
  font-weight: 600;
  font-size: 14px;
}

.wa-list .icon {
  color: #25d366;
}

.btn-wa {
  appearance: none;
  border: 0;
  cursor: pointer;
  width: 100%;
  min-height: 52px;
  padding: 14px 18px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #062813;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.01em;
  background: linear-gradient(180deg, #4ae47f, #25d366);
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.35);
  text-decoration: none;
  transition: transform 0.15s ease, filter 0.15s ease;
}

.btn-wa:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
}

.btn-wa .icon {
  width: 20px;
  height: 20px;
  fill: #062813;
  stroke: none;
}

.btn-wa .spinner {
  fill: none;
  stroke: currentColor;
}

.final-cta .btn-wa,
.sticky-cta .btn-wa {
  width: auto;
  min-width: 260px;
  margin: 0 auto;
}

/* Form (unused) */
.lead-form {
  padding: 26px 24px 22px;
}

.lead-form .hint {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 18px;
}

.lead-form-el {
  display: grid;
  gap: 14px;
}

.field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 7px;
  color: #d7dce6;
}

.field input {
  width: 100%;
  height: 48px;
  padding: 0 14px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  outline: none;
  font-size: 15px;
  transition: border-color 0.15s, box-shadow 0.15s, background 0.15s;
}

.field input::placeholder {
  color: #6e7788;
}

.field input:focus {
  border-color: rgba(224, 184, 76, 0.7);
  box-shadow: 0 0 0 4px var(--gold-dim);
  background: rgba(255, 255, 255, 0.06);
}

.field.invalid input,
.field.invalid .phone-wrap {
  border-color: rgba(255, 93, 115, 0.7);
}

.error {
  min-height: 16px;
  margin-top: 6px;
  font-size: 12px;
  color: var(--red);
}

.phone-wrap {
  display: flex;
  align-items: center;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  overflow: hidden;
}

.phone-wrap:focus-within {
  border-color: rgba(224, 184, 76, 0.7);
  box-shadow: 0 0 0 4px var(--gold-dim);
}

.phone-prefix {
  padding: 0 12px;
  height: 48px;
  display: grid;
  place-items: center;
  border-right: 1px solid var(--line);
  color: var(--gold-2);
  font-weight: 700;
  font-size: 14px;
  font-family: var(--mono);
}

.phone-wrap input {
  border: 0;
  height: 48px;
  background: transparent;
  box-shadow: none;
}

.phone-wrap input:focus {
  box-shadow: none;
  background: transparent;
}

.btn-gold {
  appearance: none;
  border: 0;
  cursor: pointer;
  width: 100%;
  min-height: 52px;
  padding: 14px 18px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #1a1406;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.01em;
  background: linear-gradient(180deg, var(--gold-2), var(--gold));
  box-shadow: 0 10px 28px rgba(224, 184, 76, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.4);
  transition: transform 0.15s ease, filter 0.15s ease;
  text-decoration: none;
}

.btn-gold:hover {
  filter: brightness(1.06);
  transform: translateY(-1px);
}

.btn-gold:active {
  transform: translateY(0);
}

.btn-gold:disabled {
  opacity: 0.7;
  cursor: wait;
  transform: none;
}

.spinner {
  animation: spin 0.8s linear infinite;
}

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

.fineprint {
  text-align: center;
  color: var(--muted);
  font-size: 12px;
  margin-top: 4px;
}

/* Early bird */
.earlybird {
  margin-top: 18px;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background:
    linear-gradient(90deg, rgba(224, 184, 76, 0.12), rgba(31, 233, 171, 0.06)),
    var(--glass);
}

.tag-gold,
.tag-danger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 7px 12px;
  border-radius: 999px;
  white-space: nowrap;
}

.tag-gold {
  color: #1a1406;
  background: linear-gradient(180deg, var(--gold-2), var(--gold));
}

.tag-danger {
  color: #ffd6dc;
  background: rgba(255, 93, 115, 0.16);
  border: 1px solid rgba(255, 93, 115, 0.35);
  letter-spacing: 0.04em;
  animation: pulse 1.8s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 93, 115, 0.25); }
  50% { box-shadow: 0 0 0 8px rgba(255, 93, 115, 0); }
}

.earlybird .lead {
  margin-top: 10px;
  font-size: 20px;
  font-weight: 800;
}

.earlybird .sub {
  margin-top: 4px;
  color: var(--muted);
}

/* Sections */
.section {
  padding: 72px 0 8px;
  text-align: center;
}

.eyebrow {
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.title {
  margin-top: 8px;
  font-size: clamp(28px, 4vw, 40px);
  letter-spacing: -0.03em;
}

.subtitle {
  margin: 10px auto 0;
  max-width: 560px;
  color: var(--muted);
}

.section .body {
  margin-top: 28px;
}

.pills {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.pill,
.stat-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  font-size: 13px;
  font-weight: 600;
}

.pill .icon { color: var(--green); }

.banner-img {
  width: 100%;
  height: auto;
  border-radius: 18px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: #fff;
  object-fit: contain;
}

.banner-caption {
  margin-top: 14px;
  color: var(--muted);
  font-size: 15px;
}

.mentor-grid {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 28px;
  text-align: left;
  align-items: center;
}

.mentor-photo {
  width: 220px;
  height: 220px;
  border-radius: 28px;
  box-shadow: 0 0 0 8px var(--gold-dim);
}

.mentor-bio .lead {
  color: var(--gold-2);
  font-weight: 700;
}

.mentor-bio .text {
  margin-top: 12px;
  color: #c9d1de;
  line-height: 1.7;
}

.stat-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.stat-pill {
  background: var(--gold-dim);
  border-color: rgba(224, 184, 76, 0.28);
  color: var(--gold-2);
}

/* Testimonials */
.testimonials {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.testimonial {
  text-align: left;
  padding: 22px;
  min-height: 210px;
}

.testimonial .quote {
  color: #dce2ec;
  line-height: 1.65;
  font-size: 15px;
}

.testimonial .who {
  margin-top: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.avatar-chip {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 13px;
  color: #1a1406;
  background: linear-gradient(180deg, var(--gold-2), var(--gold));
}

.testimonial .who b { display: block; }
.testimonial .who span { color: var(--muted); font-size: 13px; }

.stars {
  color: var(--gold);
  letter-spacing: 1px;
  margin-bottom: 10px;
  font-size: 13px;
}

.dots {
  display: none;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}

.dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 0;
  background: #3a4252;
  cursor: pointer;
}

.dots button.on {
  background: var(--gold);
  width: 22px;
  border-radius: 99px;
}

/* FAQ */
.faq {
  max-width: 760px;
  margin: 0 auto;
  text-align: left;
  display: grid;
  gap: 10px;
}

.faq-item {
  overflow: hidden;
}

.faq-item button {
  width: 100%;
  background: none;
  border: 0;
  color: inherit;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  padding: 18px 20px;
  font-size: 16px;
  font-weight: 700;
}

.faq-item .a {
  display: none;
  padding: 0 20px 18px;
  color: var(--muted);
  line-height: 1.65;
}

.faq-item.open .a { display: block; }

.faq-item .chev {
  width: 18px;
  height: 18px;
  color: var(--gold);
  transition: transform 0.2s;
}

.faq-item.open .chev { transform: rotate(45deg); }

/* Final CTA */
.final-cta {
  margin-top: 48px;
  padding: 36px 28px;
  text-align: center;
  background:
    radial-gradient(500px 180px at 50% 0%, rgba(224, 184, 76, 0.16), transparent 70%),
    var(--glass);
}

.final-cta h2 {
  font-size: clamp(24px, 3.5vw, 34px);
  letter-spacing: -0.03em;
}

.final-cta .wa,
.sticky-cta .line2 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--muted);
  margin: 12px 0 6px;
}

.final-cta .note {
  color: var(--gold-2);
  font-size: 14px;
  margin-bottom: 18px;
}

.final-cta .btn-gold,
.final-cta .btn-wa,
.sticky-cta .btn-gold,
.sticky-cta .btn-wa {
  width: auto;
  min-width: 260px;
  margin: 0 auto;
}

footer {
  text-align: center;
  color: #6d7686;
  font-size: 13px;
  padding: 12px 16px 40px;
  position: relative;
  z-index: 1;
}

footer .disc {
  display: block;
  margin-top: 8px;
  font-size: 12px;
  color: #555e6d;
}

footer .footer-links {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 10px;
}

footer .footer-links a,
.legal-nav a,
.consent a {
  color: var(--gold-2);
}

.tag-edu {
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 7px 12px;
  border-radius: 999px;
  white-space: nowrap;
  color: #d8fff2;
  background: var(--green-dim);
  border: 1px solid rgba(31, 233, 171, 0.28);
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 12px;
  color: #c9d1de;
  line-height: 1.5;
  cursor: pointer;
}

.consent input {
  margin-top: 3px;
  flex-shrink: 0;
}

.legal {
  padding: 48px 0 72px;
  max-width: 760px;
}

.legal h1 {
  font-size: clamp(28px, 4vw, 40px);
  letter-spacing: -0.03em;
  margin: 8px 0 8px;
}

.legal h2 {
  margin-top: 28px;
  font-size: 18px;
}

.legal p,
.legal li {
  color: #c9d1de;
  line-height: 1.7;
}

.legal ul {
  margin: 10px 0 0 18px;
}

.legal-updated {
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 18px;
}

.legal-nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.edu-track {
  animation-duration: 36s;
}

/* Sticky */
.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 16px;
  z-index: 30;
  padding: 0 16px;
  pointer-events: none;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.sticky-cta.show {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.sticky-cta .glass-card {
  width: min(720px, 100%);
  margin: 0 auto;
  padding: 16px 18px 14px;
  text-align: center;
  position: relative;
}

.sticky-cta .close {
  position: absolute;
  top: 10px;
  right: 10px;
  background: transparent;
  border: 0;
  color: var(--muted);
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
}

.sticky-cta .line1 {
  font-weight: 700;
}

.sticky-cta.gone { display: none; }

/* Lead modal */
.lead-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 20px;
}

.lead-modal[hidden] {
  display: none !important;
}

.lead-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 6, 10, 0.72);
  backdrop-filter: blur(8px);
}

.lead-modal-card {
  position: relative;
  z-index: 1;
  width: min(440px, 100%);
  padding: 28px 24px 22px;
}

.lead-modal-card .close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: transparent;
  border: 0;
  color: var(--muted);
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
}

.lead-modal-card h2 {
  margin-top: 8px;
  font-size: 22px;
}

body.modal-open {
  overflow: hidden;
}

/* Thank you */
.page-bg.thanks-page {
  min-height: 100vh;
  background:
    radial-gradient(700px 420px at 50% 12%, rgba(37, 211, 102, 0.18), transparent 58%),
    #070b09;
}

.page-bg.thanks-page::before {
  background-image:
    linear-gradient(rgba(37, 211, 102, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 211, 102, 0.07) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: 1;
}

.thanks {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 0 64px;
  max-width: 640px;
}

.thanks-check {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #25d366;
  box-shadow: 0 0 0 10px rgba(37, 211, 102, 0.16);
  margin-bottom: 22px;
}

.thanks-check .icon {
  width: 30px;
  height: 30px;
  stroke: #062813;
  stroke-width: 2.6;
}

.thanks h1 {
  font-size: clamp(28px, 5vw, 42px);
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.thanks-copy {
  margin: 14px 0 22px;
  color: #c9d1de;
  line-height: 1.65;
  font-size: 16px;
}

.thanks .btn-wa {
  width: auto;
  min-width: 280px;
}

.thanks .fineprint {
  margin-top: 12px;
}

.next-box {
  width: 100%;
  text-align: left;
  padding: 22px 24px;
  margin-top: 28px;
}

.next-title {
  font-weight: 800;
  margin-bottom: 12px;
}

.next-box ol {
  margin: 0;
  padding-left: 22px;
  color: #c9d1de;
  line-height: 1.9;
}

.back-home {
  margin-top: 28px;
  color: #aeb6c4;
  font-size: 14px;
}

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

@media (max-width: 900px) {
  .hide-desktop { display: block; }
  .hide-mobile { display: none; }

  .hero-grid,
  .mentor-grid,
  .testimonials {
    grid-template-columns: 1fr;
  }

  .mentor-row {
    flex-direction: column;
    text-align: center;
  }

  .mentor-card { width: 100%; }

  .mentor-photo {
    width: 160px;
    height: 160px;
    margin: 0 auto;
  }

  .mentor-grid { text-align: center; }
  .stat-pills { justify-content: center; }

  .earlybird {
    flex-direction: column;
    align-items: flex-start;
  }

  .testimonials .testimonial:nth-child(n + 2) {
    display: none;
  }

  .testimonials.show-all .testimonial { display: block; }

  .dots { display: flex; }

  .sticky-cta .btn-gold,
  .sticky-cta .btn-wa {
    width: 100%;
    min-width: 0;
    margin-top: 8px;
  }

  .final-cta .btn-gold,
  .final-cta .btn-wa { width: 100%; min-width: 0; }

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