:root {
  --purple:      #5D00D2;
  --purple-mid:  #7A1FE8;
  --purple-dim:  rgba(93,0,210,0.12);
  --blue:        #00AEEF;
  --blue-dim:    rgba(0,174,239,0.12);
  --yellow:      #FFD400;
  --dark:        #0B0914;
  --dark2:       #130E22;
  --dark3:       #1B1530;
  --surface:     #201A35;
  --border:      rgba(255,255,255,0.07);
  --border-mid:  rgba(255,255,255,0.12);
  --text:        #FFFFFF;
  --muted:       #9B8FBB;
  --muted2:      #6B5F8A;
  --head:        'Google Sans', sans-serif;
  --body:        'Inter', sans-serif;
  --r:           12px;
  --r-lg:        20px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; max-width: 100%; }
body {
  font-family: var(--body);
  background: var(--dark);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100%;
  width: 100%;
}

body::after {
  content: '';
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(93,0,210,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(93,0,210,0.03) 1px, transparent 1px);
  background-size: 48px 48px;
}

.z1 { position: relative; z-index: 1; }
.wrap { max-width: 1080px; margin: 0 auto; padding: 0 24px; }
.wrap-sm { max-width: 640px; margin: 0 auto; padding: 0 24px; }

/* ── NAV ── */
nav {
  position: sticky; top: 0; z-index: 100;
  padding: 16px 0;
  background: rgba(11,9,20,0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-in {
  max-width: 1080px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.logo { display: flex; align-items: center; line-height: 1; }
.logo svg { display: block; }
.nav-tag {
  font-size: 12px; font-weight: 600; color: var(--blue);
  border: 1px solid rgba(0,174,239,0.3);
  padding: 5px 14px; border-radius: 50px;
  display: none;
}
@media(min-width:520px){ .nav-tag { display: block; } }
.nav-cta {
  font-size: 13px; font-weight: 700;
  font-family: var(--head);
  color: #fff; background: var(--purple);
  padding: 9px 20px; border-radius: 50px;
  text-decoration: none; white-space: nowrap;
  transition: background 0.15s, transform 0.15s, box-shadow 0.15s;
  display: inline-block;
}
.nav-cta:hover { background: var(--purple-mid); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(93,0,210,0.35); }

/* ── HERO ── */
.hero { padding: 72px 0 56px; position: relative; overflow: hidden; }
.hero-orb {
  position: absolute; top: -200px; left: 50%; transform: translateX(-50%);
  width: 800px; height: 600px;
  background: radial-gradient(ellipse at center, rgba(93,0,210,0.28) 0%, rgba(0,174,239,0.06) 50%, transparent 70%);
  pointer-events: none;
}
.live-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--dark2);
  border: 1px solid rgba(0,174,239,0.3);
  color: var(--blue);
  font-size: 12px; font-weight: 600;
  padding: 7px 16px 7px 12px; border-radius: 50px;
  margin-bottom: 28px; letter-spacing: 0.03em;
}
.live-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--blue);
  animation: blink 1.8s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1;} 50%{opacity:0.3;} }

.hero h1 {
  font-family: var(--head);
  font-size: clamp(32px, 5.5vw, 62px);
  font-weight: 700; line-height: 1.08;
  letter-spacing: -0.025em;
  margin-bottom: 22px; max-width: 820px;
}
.hero h1 .accent { color: var(--blue); }
.hero-desc {
  font-size: clamp(15px, 2vw, 18px);
  color: var(--muted); max-width: 540px;
  line-height: 1.7; margin-bottom: 40px;
}
.meta-row { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 44px; max-width: 100%; }
.chip {
  display: flex; align-items: center; gap: 7px;
  background: var(--dark2);
  border: 1px solid var(--border-mid);
  border-radius: 50px; padding: 8px 16px;
  font-size: 13px; color: var(--muted);
}
.chip-icon { font-size: 14px; }

/* ── COUNTDOWN ── */
.cd-wrap {
  display: flex; align-items: center;
  background: var(--dark2);
  border: 1px solid var(--border-mid);
  border-radius: var(--r); overflow: hidden;
  margin-bottom: 56px;
  flex-wrap: wrap;
  max-width: 100%;
  width: 100%;
}
.cd-label-side {
  padding: 14px 20px;
  border-right: 1px solid var(--border);
  font-size: 11px; font-weight: 600; color: var(--muted2);
  text-transform: uppercase; letter-spacing: 0.08em; white-space: nowrap;
}
.cd-units { display: flex; align-items: stretch; }
.cd-unit { padding: 12px 18px; text-align: center; border-right: 1px solid var(--border); }
.cd-unit:last-child { border-right: none; }
.cd-n {
  display: block; font-family: var(--head);
  font-size: 26px; font-weight: 700; color: var(--blue); line-height: 1;
}
.cd-l {
  display: block; font-size: 9px; color: var(--muted2);
  text-transform: uppercase; letter-spacing: 0.1em; margin-top: 4px;
}
.cd-date-chip {
  padding: 12px 20px;
  font-size: 12px; font-weight: 600; color: var(--purple-mid);
  white-space: nowrap; align-self: center;
}

/* ── WHO CARDS ── */
.who-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(200px, 100%), 1fr));
  gap: 12px; margin-bottom: 72px;
}
.who-card {
  background: var(--dark2); border: 1px solid var(--border);
  border-radius: var(--r); padding: 20px;
  position: relative; overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
}
.who-card:hover { border-color: rgba(93,0,210,0.4); transform: translateY(-2px); }
.wc-bar { position: absolute; top: 0; left: 0; right: 0; height: 2px; }
.wc-b1 { background: var(--blue); }
.wc-b2 { background: var(--yellow); }
.wc-b3 { background: var(--purple-mid); }
.wc-emoji { font-size: 22px; margin-bottom: 10px; display: block; }
.wc-role {
  font-size: 10px; font-weight: 700; color: var(--muted2);
  text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 6px;
}
.who-card h4 {
  font-family: var(--head); font-size: 15px; font-weight: 700;
  margin-bottom: 6px; line-height: 1.3;
}
.who-card p { font-size: 12px; color: var(--muted); line-height: 1.6; }

/* ── AGENDA ── */
.agenda-wrap {
  background: var(--dark2); border: 1px solid var(--border);
  border-radius: var(--r-lg); overflow: hidden; margin-bottom: 72px;
}
.agenda-head {
  padding: 24px 28px 20px; border-bottom: 1px solid var(--border);
  display: flex; align-items: baseline; gap: 12px;
}
.agenda-head h3 { font-family: var(--head); font-size: 18px; font-weight: 700; }
.agenda-head span { font-size: 13px; color: var(--muted); }
.agenda-row {
  display: flex; align-items: flex-start; gap: 20px;
  padding: 18px 28px; border-bottom: 1px solid var(--border);
  transition: background 0.15s;
}
.agenda-row:last-child { border-bottom: none; }
.agenda-row:hover { background: rgba(93,0,210,0.04); }
.ag-time { font-size: 11px; color: var(--muted2); min-width: 56px; padding-top: 3px; font-weight: 500; }
.ag-num { font-family: var(--head); font-size: 11px; font-weight: 700; color: var(--blue); min-width: 28px; padding-top: 3px; }
.ag-text h5 { font-family: var(--head); font-size: 14px; font-weight: 700; margin-bottom: 3px; }
.ag-text p { font-size: 12px; color: var(--muted); line-height: 1.55; }

/* ── MENTOR ── */
.mentor-strip {
  background: var(--dark2);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 40px 0; margin-bottom: 72px;
}
.mentor-inner { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.mentor-av {
  width: 60px; height: 60px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--purple), var(--blue));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--head); font-size: 22px; font-weight: 700;
  border: 2px solid rgba(93,0,210,0.4);
}
.mentor-av img{width: 88px; height: 88px; border-radius: 50%;}
.mentor-text { flex: 1; min-width: 220px; }
.mentor-text h4 { font-family: var(--head); font-size: 18px; font-weight: 700; margin-bottom: 4px; }
.mentor-text p { font-size: 13px; color: var(--muted); line-height: 1.6; }
.mentor-stats { display: flex; gap: 28px; flex-wrap: wrap; }
.ms { text-align: center; }
.ms-n { font-family: var(--head); font-size: 24px; font-weight: 700; color: var(--blue); display: block; }
.ms-l { font-size: 11px; color: var(--muted2); }

/* ── PROGRAM TEASER ── */
.program-teaser { margin-bottom: 72px; }
.program-teaser h3 { font-family: var(--head); font-size: clamp(20px, 3vw, 28px); font-weight: 700; margin-bottom: 8px; }
.program-teaser > p { font-size: 15px; color: var(--muted); margin-bottom: 28px; }
.pillars { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(220px, 100%), 1fr)); gap: 12px; }
.pillar-card {
  background: var(--dark2); border: 1px solid var(--border);
  border-radius: var(--r); padding: 20px; border-left: 3px solid var(--purple);
  transition: border-color 0.2s;
}
.pillar-card:hover { border-left-color: var(--blue); }
.pc-n { font-size: 10px; font-weight: 700; color: var(--purple-mid); letter-spacing: 0.1em; margin-bottom: 8px; }
.pillar-card h5 { font-family: var(--head); font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.pillar-card p { font-size: 12px; color: var(--muted); line-height: 1.6; }

/* ── SECTION LABELS ── */
.eyebrow { font-size: 11px; font-weight: 700; color: var(--blue); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 10px; }
.section-h { font-family: var(--head); font-size: clamp(24px, 3vw, 34px); font-weight: 700; line-height: 1.2; margin-bottom: 10px; }
.section-sub { font-size: 15px; color: var(--muted); margin-bottom: 36px; }

/* ── REGISTRATION FORM ── */
.reg-section { padding: 0 0 80px; position: relative; }
.reg-glow {
  position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 500px; height: 300px;
  background: radial-gradient(ellipse, rgba(0,174,239,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.reg-box {
  background: var(--dark2); border: 1px solid rgba(93,0,210,0.35);
  border-radius: 24px; overflow: hidden; position: relative; z-index: 1;
}
.reg-top {
  padding: 36px 36px 28px; text-align: center;
  border-bottom: 1px solid var(--border);
}
.reg-eyebrow { font-size: 11px; font-weight: 700; color: var(--blue); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 12px; }
.reg-top h2 { font-family: var(--head); font-size: clamp(22px, 3.5vw, 30px); font-weight: 700; line-height: 1.2; margin-bottom: 8px; }
.reg-top p { font-size: 14px; color: var(--muted); }

/* ── FORM FIELDS ── */
.reg-form { padding: 32px 36px 36px; }

.field-row { margin-bottom: 16px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field label {
  font-size: 11px; font-weight: 600; color: var(--muted);
  text-transform: uppercase; letter-spacing: 0.07em;
}
.field input {
  background: var(--dark3); border: 1.5px solid var(--border-mid);
  border-radius: 10px; padding: 14px 16px;
  font-family: var(--body); font-size: 15px; color: var(--text);
  outline: none; transition: border-color 0.2s, box-shadow 0.2s; width: 100%;
}
.field input::placeholder { color: var(--muted2); }
.field input:focus { border-color: var(--purple); box-shadow: 0 0 0 3px rgba(93,0,210,0.15); }

/* Phone row — country code + number */
.phone-row {
  display: flex; gap: 0; margin-bottom: 16px;
}
.country-code {
  flex: 0 0 88px;
}
.country-code input {
  background: var(--dark3);
  border: 1.5px solid var(--border-mid);
  border-right: none !important;
  border-radius: 10px 0 0 10px !important;
  padding: 14px 10px;
  font-family: var(--body);
  font-size: 15px;
  color: var(--text);
  text-align: center;
  width: 100%;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.country-code input::placeholder { color: var(--muted2); }
.country-code input:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(93,0,210,0.15);
  z-index: 1; position: relative;
}
.phone-number { flex: 1; }
.phone-number input {
  background: var(--dark3);
  border: 1.5px solid var(--border-mid);
  border-left: none;
  border-radius: 0 10px 10px 0;
  padding: 14px 16px;
  font-family: var(--body);
  font-size: 15px;
  color: var(--text);
  outline: none;
  width: 100%;
  min-height: 50px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.phone-number input::placeholder { color: var(--muted2); }
.phone-number input:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(93,0,210,0.15);
  position: relative; z-index: 1;
}

/* Divider */
.or-divider {
  display: flex; align-items: center; gap: 12px;
  margin: 20px 0 16px;
}
.or-line { flex: 1; height: 1px; background: var(--border-mid); }
.or-text { font-size: 11px; color: var(--muted2); font-weight: 600; white-space: nowrap; }

/* Secondary CTA */
.btn-secondary {
  width: 100%;
  background: transparent;
  color: var(--muted);
  font-family: var(--head);
  font-size: 15px; font-weight: 600;
  padding: 15px 24px; border-radius: 50px;
  border: 1.5px solid var(--border-mid);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.btn-secondary:hover {
  border-color: rgba(0,174,239,0.5);
  color: var(--blue);
}

/* CTA button */
.btn-register {
  width: 100%; background: var(--purple); color: white;
  font-family: var(--head); font-size: 16px; font-weight: 700;
  padding: 17px 24px; border-radius: 50px; border: none; cursor: pointer;
  transition: background 0.15s, transform 0.15s, box-shadow 0.15s;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  margin-top: 8px; margin-bottom: 20px;
  text-decoration:none;
}
.btn-register:hover { background: var(--purple-mid); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(93,0,210,0.35); }
.btn-register:active { transform: translateY(0); }

/* Trust signals */
.trust { display: flex; justify-content: center; flex-wrap: wrap; gap: 16px; }
.trust-item { display: flex; align-items: center; gap: 5px; font-size: 11px; color: var(--muted2); }
.trust-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--blue); }

/* ── FOOTER ── */
footer { border-top: 1px solid var(--border); padding: 32px 0; text-align: center; }
.foot-logo { margin-bottom: 8px; display: flex; align-items: center; justify-content: center; }
.foot-logo svg { display: block; }
footer p { font-size: 12px; color: var(--muted2); }
footer .hl { color: var(--blue); }

/* ── FAQ ── */
.faq-section { padding: 0 0 72px; }
.faq-section .eyebrow { margin-bottom: 10px; }
.faq-section .section-h { margin-bottom: 28px; }
.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item {
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item.open { border-color: rgba(93,0,210,0.4); }
.faq-q {
  padding: 18px 20px;
  font-family: var(--head);
  font-size: 15px; font-weight: 600;
  cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  gap: 12px; user-select: none;
  color: var(--text);
}
.faq-q:hover { background: rgba(93,0,210,0.05); }
.faq-arrow {
  font-size: 18px; color: var(--blue);
  transition: transform 0.25s; flex-shrink: 0;
}
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-a {
  display: none;
  padding: 0 20px 18px;
  font-size: 14px; color: var(--muted);
  line-height: 1.7;
  border-top: 1px solid var(--border);
  padding-top: 14px;
}
.faq-item.open .faq-a { display: block; }

/* ── MOBILE STICKY ── */
.mobile-sticky {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 99;
  padding: 12px 16px; background: rgba(11,9,20,0.96);
  backdrop-filter: blur(16px); border-top: 1px solid var(--border);
}
@media(max-width:640px){ .mobile-sticky { display: block; } }
.mobile-sticky button {
  width: 100%; padding: 15px; background: var(--purple); color: white;
  font-family: var(--head); font-size: 15px; font-weight: 700;
  border: none; border-radius: 50px; cursor: pointer;
}

/* ── FLOATING WHATSAPP ── */
.wa-float {
  position: fixed; bottom: 88px; right: 24px; z-index: 999;
  display: flex; align-items: center; gap: 10px;
  background: #25D366; color: #fff;
  padding: 14px 20px 14px 16px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  font-family: var(--head); font-size: 14px; font-weight: 700;
  transition: transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}
.wa-float:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(37,211,102,0.5); }
.wa-icon { width: 22px; height: 22px; flex-shrink: 0; }
.wa-label { display: inline; }

/* ── RESPONSIVE 600px ── */
@media(max-width:600px){
  .hero { padding: 48px 0 36px; }
  .reg-form { padding: 24px 20px 28px; }
  .reg-top { padding: 28px 20px 22px; }
  .agenda-row { padding: 16px 20px; }
  .agenda-head { padding: 20px 20px 16px; }
  .mentor-inner { flex-direction: column; align-items: flex-start; }
  .cd-wrap { flex-wrap: wrap; }
  .cd-label-side { border-right: none; border-bottom: 1px solid var(--border); width: 100%; }
  .country-code { flex: 0 0 82px; }
  /* Floating WA — icon only on mobile */
  .wa-float { padding: 14px; border-radius: 50%; bottom: 20px; right: 16px; }
  .wa-label { display: none; }
  .wa-icon { width: 24px; height: 24px; }
}

/* ── RESPONSIVE 360px ── */
@media(max-width:360px){
  .hero { padding: 36px 0 28px; }
  .hero h1 { font-size: 26px; letter-spacing: -0.02em; }
  .hero-desc { font-size: 14px; }
  .wrap, .wrap-sm { padding: 0 16px; }
  .live-pill { font-size: 11px; padding: 6px 12px 6px 10px; }
  .meta-row { gap: 8px; }
  .chip { font-size: 12px; padding: 6px 12px; }
  .cd-n { font-size: 22px; }
  .cd-unit { padding: 10px 12px; }
  .cd-label-side { font-size: 10px; padding: 10px 14px; }
  .who-row { grid-template-columns: 1fr; gap: 10px; }
  .who-card { padding: 16px; }
  .agenda-head h3 { font-size: 15px; }
  .ag-time { display: none; }
  .ag-text h5 { font-size: 13px; }
  .ag-text p { font-size: 11px; }
  .mentor-av { width: 48px; height: 48px; font-size: 18px; }
  .mentor-text h4 { font-size: 15px; }
  .mentor-stats { gap: 16px; }
  .ms-n { font-size: 20px; }
  .pillars { grid-template-columns: 1fr; }
  .reg-top { padding: 22px 16px 18px; }
  .reg-top h2 { font-size: 20px; }
  .reg-form { padding: 20px 16px 24px; }
  .field input { padding: 12px 14px; font-size: 14px; }
  .country-code { flex: 0 0 72px; }
  .country-code input { padding: 12px 8px; font-size: 14px; }
  .phone-number input { padding: 12px 14px; font-size: 14px; }
  .btn-register { font-size: 15px; padding: 15px 20px; }
  .btn-secondary { font-size: 14px; padding: 13px 20px; }
  .section-h { font-size: 22px; }
  .program-teaser h3 { font-size: 18px; }
  .nav-cta { font-size: 12px; padding: 8px 14px; }
}

/* ── RESPONSIVE 320px ── */
@media(max-width:320px){
  .hero h1 { font-size: 23px; }
  .wrap, .wrap-sm { padding: 0 12px; }
  .cd-n { font-size: 19px; }
  .cd-unit { padding: 8px 10px; }
  .reg-top h2 { font-size: 18px; }
  .field input { padding: 11px 12px; font-size: 13px; }
  .country-code { flex: 0 0 65px; }
  .country-code input { font-size: 13px; padding: 11px 6px; }
  .phone-number input { font-size: 13px; padding: 11px 12px; }
  .btn-register { font-size: 14px; padding: 14px 16px; }
  .live-pill { margin-bottom: 18px; }
  .nav-cta { display: none; }
  .mobile-sticky { display: block; }
}