:root {
  --black: #0a0a0a;
  --orange: #ff6b35;
  --orange-soft: #fff3ec;
  --green: #16a34a;
  --gray: #454545;
  --line: #d8d8d8;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: #fff;
  color: var(--black);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.4;
  -webkit-font-smoothing: antialiased;
}

button, input, select { font: inherit; }
a { color: inherit; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: min(calc(100% - 28px), 760px);
  margin-inline: auto;
}

.topbar {
  position: sticky;
  z-index: 20;
  top: 0;
  display: flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  background: var(--black);
  color: #fff;
  text-align: center;
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .035em;
}

.topbar-inner {
  display: flex;
  width: min(100%, 1000px);
  align-items: center;
  justify-content: center;
  gap: 8px 18px;
}

.topbar-event,
.topbar-review-proof {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

.topbar-review-proof { gap: 6px; }

.topbar-faces {
  display: inline-flex;
  padding-left: 8px;
}

.topbar-faces img {
  width: 24px;
  height: 24px;
  margin-left: -8px;
  border: 1.5px solid #fff;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 1px 4px rgba(0, 0, 0, .35);
}

.topbar-stars {
  color: var(--orange);
  font-size: .78rem;
  letter-spacing: .02em;
}

.topbar-review-proof strong {
  font-size: .72rem;
  letter-spacing: .01em;
}

.live-dot {
  width: 9px;
  height: 9px;
  margin-right: 7px;
  border-radius: 50%;
  background: #ef2b2d;
  box-shadow: 0 0 0 0 rgba(239, 43, 45, .65);
  animation: pulse 1.6s infinite;
}

@keyframes pulse {
  70% { box-shadow: 0 0 0 8px rgba(239, 43, 45, 0); }
  100% { box-shadow: 0 0 0 0 rgba(239, 43, 45, 0); }
}

.hero {
  padding: 10px 0 20px;
  text-align: center;
}

.avatar-block {
  height: 112px;
  margin: 0 auto 2px;
}

.yang-avatar {
  position: relative;
  width: 90px;
  height: 90px;
  margin: 0 auto;
  border: 5px solid var(--orange);
  border-radius: 50%;
  background: #eee;
  box-shadow: 0 5px 14px rgba(0, 0, 0, .16);
}

.yang-avatar-image {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: 50%;
}

.yang-avatar-image img {
  position: absolute;
  top: 43%;
  left: 50%;
  width: 175%;
  max-width: none;
  transform: translate(-50%, -43%);
}

.avatar-live-dot {
  position: absolute;
  right: -3px;
  bottom: 5px;
  z-index: 1;
  width: 17px;
  height: 17px;
  border: 3px solid #fff;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 2px 5px rgba(0, 0, 0, .2);
}

.avatar-block p {
  margin: 4px 0 0;
  color: #6a6a6a;
  font-size: .72rem;
  line-height: 1;
}

h1, h2, .btn-primary { font-family: Arial, Helvetica, sans-serif; }

h1 {
  margin: 0 auto 7px;
  font-size: clamp(2rem, 5.2vw, 3.3rem);
  font-weight: 900;
  letter-spacing: -.045em;
  line-height: .98;
}

.money-highlight {
  color: var(--orange);
  white-space: nowrap;
}

.subheadline {
  max-width: 700px;
  margin: 0 auto 11px;
  color: #292929;
  font-size: clamp(1rem, 1.8vw, 1.02rem);
  font-weight: 600;
  line-height: 1.33;
}

.subheadline-objections {
  display: block;
  margin-top: 5px;
  color: var(--black);
  font-weight: 900;
}

.badges {
  display: grid;
  grid-template-columns: 1fr;
  gap: 5px;
  max-width: 650px;
  margin: 0 auto 8px;
}

.badge {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 5px 9px;
  text-align: left;
}

.badge-icon {
  display: grid;
  flex: 0 0 auto;
  width: 39px;
  height: 39px;
  place-items: center;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
}

.badge-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.badge small,
.badge strong { display: block; }
.badge small { color: #555; font-size: .66rem; }
.badge strong { font-size: .98rem; line-height: 1.1; }

.date-box {
  max-width: 650px;
  margin: 0 auto;
  padding: 9px 10px;
  border: 1px solid var(--orange);
  border-radius: 8px;
  background: var(--orange-soft);
}

.date-box p {
  margin: 0 0 8px;
  font-size: .92rem;
  font-weight: 900;
}

.countdown {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.time-block {
  min-width: 48px;
  padding: 6px 4px 5px;
  border-radius: 5px;
  background: var(--orange);
  color: #fff;
  text-align: center;
  box-shadow: 0 2px 0 #ce4b1c;
}

.time-block span,
.time-block small { display: block; }
.time-block span { font-size: 1.15rem; font-weight: 900; line-height: 1; }
.time-block small { margin-top: 3px; font-size: .5rem; font-weight: 900; letter-spacing: .04em; }
.live-now { margin: 4px 0; color: #b02d00; font-weight: 900; }

.registration-form {
  display: grid;
  max-width: 650px;
  gap: 6px;
  margin: 7px auto 0;
}

.registration-form input,
.registration-form select {
  width: 100%;
  height: 48px;
  padding: 0 15px;
  border: 1px solid #c9c9c9;
  border-radius: 8px;
  background: #fff;
  color: var(--black);
  outline: none;
}

.registration-form input:focus,
.registration-form select:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255, 107, 53, .14);
}

.phone-row {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 7px;
}

.phone-row select { padding: 0 8px; }

.btn-primary {
  display: flex;
  width: 100%;
  min-height: 61px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1px;
  padding: 9px 14px;
  border: 0;
  border-radius: 8px;
  background: var(--green);
  box-shadow: 0 4px 0 #0d7a34, 0 7px 15px rgba(22, 163, 74, .2);
  color: #fff;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  font-size: clamp(1.18rem, 3.7vw, 1.75rem);
  font-weight: 900;
  line-height: 1.08;
  transition: background .15s, transform .15s;
}

.demand-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  max-width: 650px;
  min-height: 33px;
  margin: 8px auto 0;
  color: #252525;
  font-size: .76rem;
}

.demand-badge {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 5px;
  padding: 3px 8px;
  border: 1px solid #ef2b2d;
  border-radius: 999px;
  color: #d71920;
  font-size: .66rem;
  font-weight: 900;
  text-transform: uppercase;
}

.demand-badge span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ef2b2d;
}

.demand-proof img {
  display: block;
  width: auto;
  max-width: 122px;
  height: 31px;
  object-fit: contain;
}

.demand-proof p { margin: 0; }
.demand-proof strong { font-weight: 900; }

.btn-primary small { font-size: .72rem; font-weight: 700; }
.btn-primary:hover { background: #138d41; transform: translateY(-1px); }
.btn-primary:active { transform: translateY(2px); }
.btn-primary:focus-visible { outline: 3px solid #8ee1a9; outline-offset: 3px; }

.gift-banner {
  width: 100%;
  padding: 16px max(14px, calc((100vw - 760px) / 2));
  background: var(--orange);
  color: #fff;
  text-align: center;
  font-size: .96rem;
  font-weight: 900;
  line-height: 1.35;
}

.learn-section { padding: 27px 0 25px; }

h2 {
  margin: 0 0 15px;
  text-align: center;
  font-size: clamp(1.55rem, 3.6vw, 2rem);
  font-weight: 900;
  letter-spacing: -.03em;
  line-height: 1;
}

.learn-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.learn-list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 9px;
  align-items: start;
  font-size: .93rem;
  line-height: 1.4;
}

.check {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-size: .8rem;
  font-weight: 900;
}

.proof-line {
  margin: 18px 0 13px;
  color: #444;
  text-align: center;
  font-size: .78rem;
  font-weight: 700;
}

.second-cta {
  display: grid;
  max-width: 650px;
  gap: 13px;
  margin: 0 auto;
}

.legal-footer {
  padding: 17px 0 22px;
  border-top: 1px solid #eee;
  color: #717171;
  text-align: center;
  font-size: .68rem;
  line-height: 1.45;
}

.legal-footer a { text-decoration: underline; }

/* Confirmation page */
.confirmed-main { padding: 30px 0 42px; text-align: center; }
.confirmed-main h1 { margin-bottom: 10px; }
.confirmed-date { margin: 0 0 11px; font-size: 1.05rem; font-weight: 900; }

.calendar-buttons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
  max-width: 560px;
  margin: 0 auto 23px;
}

.calendar-buttons a {
  padding: 10px 7px;
  border: 2px solid var(--black);
  border-radius: 8px;
  text-decoration: none;
  font-size: .82rem;
  font-weight: 900;
}

.calendar-buttons a:hover { background: var(--black); color: #fff; }

.steps { display: grid; gap: 9px; text-align: left; }

.step {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 10px;
  align-items: start;
  padding: 13px;
  border: 1px solid #e1e1e1;
  border-radius: 8px;
}

.step > span {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-weight: 900;
}

.step p { margin: 5px 0 0; font-weight: 700; }

.video-placeholder {
  display: grid;
  min-height: 170px;
  margin-top: 10px;
  place-items: center;
  border: 2px dashed #bdbdbd;
  border-radius: 8px;
  background: #f7f7f7;
  color: #777;
  font-size: .74rem;
  font-weight: 900;
}

.host-block {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 15px;
  align-items: center;
  margin-top: 14px;
  padding: 14px;
  border-radius: 8px;
  background: var(--black);
  color: #fff;
  text-align: left;
}

.host-photo {
  width: 86px;
  height: 86px;
  min-height: 86px;
  overflow: hidden;
}

.host-photo img {
  position: absolute;
  top: -180px;
  left: -130px;
  width: 1179px;
  max-width: none;
}

.host-label {
  margin: 5px 0 0;
  color: var(--orange);
  text-align: center;
  font-size: .58rem;
  font-weight: 900;
}

.host-block > p { margin: 0; font-weight: 700; line-height: 1.45; }

.confirmed-gift {
  margin: 14px 0;
  padding: 15px;
  border-radius: 8px;
  background: var(--orange);
  color: #fff;
  font-weight: 900;
}

.whatsapp-button { min-height: 61px; font-size: 1.1rem; }

.policy-page { padding: 40px 0; }

@media (min-width: 620px) {
  .badges { grid-template-columns: repeat(3, 1fr); }
  .badge { justify-content: center; }
  .date-box {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 10px;
    text-align: left;
  }
  .date-box p { margin: 0; }
}

@media (min-width: 800px) {
  h1 { font-size: 2.88rem; }
}

@media (max-width: 560px) {
  .topbar { padding-block: 6px; font-size: .64rem; }
  .topbar-inner { flex-wrap: wrap; gap: 3px 10px; }
  .topbar-faces img { width: 20px; height: 20px; }
  .topbar-stars { font-size: .67rem; }
  .topbar-review-proof strong { font-size: .61rem; }
}

@media (max-width: 480px) {
  .hero { padding-top: 7px; }
  .avatar-block { height: 106px; }
  h1 { font-size: clamp(1.85rem, 9.2vw, 2.2rem); line-height: 1; }
  .subheadline { margin-bottom: 8px; font-size: 1rem; line-height: 1.27; }
  .subheadline-objections { margin-top: 4px; }
  .badges { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 2px; margin-bottom: 6px; }
  .badge { flex-direction: column; gap: 3px; padding: 3px 2px; text-align: center; }
  .badge-icon { width: 34px; height: 34px; }
  .badge-icon svg { width: 20px; height: 20px; }
  .badge small { font-size: .55rem; line-height: 1; }
  .badge strong { font-size: .76rem; line-height: 1.05; }
  .demand-proof { gap: 5px; font-size: .68rem; }
  .demand-badge { padding-inline: 6px; font-size: .58rem; }
  .demand-proof img { max-width: 88px; height: 28px; }
  .host-block { grid-template-columns: 105px 1fr; gap: 10px; }
  .calendar-buttons a { font-size: .73rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}


/* Research-backed webinar conversion refinements. */
.event-length {
  display: block;
  margin-top: 3px;
  color: #454545;
  font-size: .76rem;
  font-weight: 800;
}

.phone-microcopy {
  margin: -3px 2px 8px;
  color: #5f5f5f;
  font-size: .76rem;
  line-height: 1.25;
  text-align: left;
}

.room-cap {
  margin: 0 0 8px;
  color: #363636;
  font-size: .86rem;
  font-weight: 900;
  text-align: center;
}

.confirmation-lead {
  max-width: 650px;
  margin: 0 auto 15px;
  color: #3f3f3f;
  font-size: clamp(.98rem, 2.5vw, 1.14rem);
  font-weight: 700;
  line-height: 1.4;
}

.marker-highlight {
  padding: 0 .04em;
  background: linear-gradient(transparent 58%, rgba(255, 107, 53, .38) 58%, rgba(255, 107, 53, .38) 91%, transparent 91%);
  color: inherit;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

.confirmation-step-heading {
  display: flex;
  max-width: 650px;
  align-items: center;
  gap: 12px;
  margin: 18px auto 9px;
  text-align: left;
}

.confirmation-step-number {
  display: grid;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 10px;
  background: #0a0a0a;
  color: #fff;
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .08em;
  box-shadow: inset 0 -2px 0 rgba(255, 255, 255, .1), 0 5px 14px rgba(10, 10, 10, .12);
}

.confirmation-step-kicker {
  display: block;
  margin-bottom: 2px;
  color: #ff6b35;
  font-size: .65rem;
  font-weight: 900;
  letter-spacing: .12em;
}

.confirmation-step-heading h2 {
  margin: 0;
  text-align: left;
  font-size: clamp(1.08rem, 3vw, 1.34rem);
  letter-spacing: -.025em;
  line-height: 1.08;
}

.confirmation-join-note {
  margin: -6px auto 18px;
  color: #444;
  font-size: .88rem;
  font-weight: 700;
  line-height: 1.4;
}

@media (max-width: 560px) {
  .topbar-faces { display: none; }
  .confirmation-lead { margin-bottom: 10px; }
  .confirmation-step-heading { margin-top: 14px; }
}

/* Premium visual polish, using the existing brand palette. */
body { text-rendering: optimizeLegibility; }

.topbar {
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  box-shadow: 0 3px 14px rgba(10, 10, 10, .14);
}

h1 {
  max-width: 740px;
  text-wrap: balance;
}

.avatar-block p { letter-spacing: .01em; }

.badge {
  border: 1px solid #ededed;
  border-radius: 11px;
  background: #fff;
  box-shadow: 0 3px 12px rgba(10, 10, 10, .045);
}

.badge-icon {
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .2), 0 3px 9px rgba(255, 107, 53, .2);
}

.date-box {
  border-radius: 11px;
  box-shadow: 0 7px 22px rgba(255, 107, 53, .1);
}

.time-block {
  border-radius: 7px;
  font-variant-numeric: tabular-nums;
  box-shadow: 0 2px 0 #ce4b1c, 0 5px 12px rgba(206, 75, 28, .12);
}

.registration-form input,
.registration-form select {
  border-color: #d5d5d5;
  box-shadow: 0 2px 8px rgba(10, 10, 10, .035);
}

.btn-primary {
  border: 1px solid #11833b;
  border-radius: 10px;
  background: linear-gradient(180deg, #19aa50 0%, #159746 100%);
  box-shadow: 0 4px 0 #0d7733, 0 9px 20px rgba(22, 163, 74, .2);
}

.btn-primary:hover { background: linear-gradient(180deg, #179d49 0%, #138d41 100%); }

.demand-proof {
  padding-top: 2px;
  border-radius: 999px;
}

.learn-list li {
  padding: 10px 0;
  border-bottom: 1px solid #eeeeee;
}

.learn-list li:last-child { border-bottom: 0; }

.confirmed-main .container { max-width: 720px; }

.confirmed-gift {
  border: 1px solid rgba(10, 10, 10, .08);
  border-radius: 11px;
  box-shadow: 0 6px 18px rgba(255, 107, 53, .16);
}

@media (max-width: 480px) {
  .badge { border-color: transparent; box-shadow: none; }
  .learn-list li { padding: 9px 0; }
}
