:root {
  --black: #050505;
  --black-2: #0b0b0b;
  --panel: #161616;
  --panel-2: #222222;
  --white: #ffffff;
  --muted: #b8b8b8;
  --line: rgba(255, 255, 255, 0.13);
  --orange: #ff3d16;
  --orange-2: #ff5a1f;
  --button-orange: #d93412;
  --button-orange-2: #ea421b;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--black);
  color: var(--white);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

body.modal-open {
  overflow: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(115deg, rgba(255, 61, 22, 0.12), transparent 28%),
    radial-gradient(circle at 85% 15%, rgba(255, 61, 22, 0.13), transparent 26rem),
    var(--black);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: 0.2;
  background:
    repeating-linear-gradient(160deg, transparent 0 62px, rgba(255, 61, 22, 0.34) 63px 65px, transparent 66px 110px);
  pointer-events: none;
}

a {
  color: inherit;
}

.reveal-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 22px;
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.94), rgba(5, 5, 5, 0.985)),
    radial-gradient(circle at 50% 18%, rgba(255, 61, 22, 0.18), transparent 24rem);
  backdrop-filter: blur(8px);
  transition: opacity 180ms ease, visibility 180ms ease;
}

.reveal-modal::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.42;
  background:
    linear-gradient(120deg, transparent 0 32%, rgba(255, 61, 22, 0.16) 32% 33%, transparent 33% 100%),
    linear-gradient(150deg, transparent 0 62%, rgba(255, 61, 22, 0.12) 62% 63%, transparent 63% 100%);
  pointer-events: none;
}

.reveal-modal.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.reveal-card {
  display: block;
  position: relative;
  z-index: 1;
  width: min(720px, 100%);
  max-width: calc(100vw - 44px);
  min-width: 0;
  margin: 0;
  padding: 42px;
  border: 1px solid rgba(255, 61, 22, 0.38);
  border-radius: 8px;
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.06), rgba(16, 16, 16, 0.98)),
    var(--panel);
  color: var(--white);
  font: inherit;
  text-align: left;
  box-shadow: var(--shadow);
  cursor: pointer;
}

.reveal-card:focus-visible,
.primary-cta:focus-visible,
.skip-link:focus-visible,
.reveal-skip:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.8);
  outline-offset: 4px;
}

.reveal-logo {
  display: block;
  width: 116px;
  height: auto;
  margin-bottom: 38px;
}

.reveal-status {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border: 1px solid rgba(255, 61, 22, 0.62);
  border-radius: 999px;
  color: var(--orange-2);
  background: rgba(255, 61, 22, 0.12);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.reveal-card h1 {
  max-width: 620px;
  margin-top: 18px;
  font-size: clamp(3rem, 5.2vw, 4.65rem);
}

.reveal-card p {
  max-width: 560px;
  margin: 20px 0 26px;
  color: #eeeeee;
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.48;
}

.reveal-card strong {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(430px, 100%);
  min-height: 58px;
  border-radius: 8px;
  background: linear-gradient(180deg, var(--button-orange-2), var(--button-orange));
  color: var(--white);
  font-size: 0.98rem;
  font-weight: 900;
  text-align: center;
}

.reveal-skip {
  position: absolute;
  z-index: 1;
  bottom: 24px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  font-weight: 800;
  text-underline-offset: 4px;
}

main {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  min-height: 100svh;
  padding: 24px 0 38px;
  display: grid;
  align-content: start;
}

.topbar {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 36px;
}

.brand-logo {
  width: 108px;
  height: auto;
  display: block;
}

.topbar span {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 400px;
  gap: 42px;
  align-items: center;
}

.hero-copy {
  min-width: 0;
}

.status {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  margin: 0;
  padding: 0 12px;
  border: 1px solid rgba(255, 61, 22, 0.62);
  border-radius: 999px;
  color: var(--orange-2);
  background: rgba(255, 61, 22, 0.12);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.kicker,
.section-kicker {
  margin: 18px 0 0;
  color: var(--orange-2);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  letter-spacing: 0;
  line-height: 0.94;
}

h1 {
  max-width: 760px;
  margin-top: 14px;
  font-size: clamp(2.95rem, 5.85vw, 4.8rem);
  font-weight: 900;
}

h2 {
  font-size: clamp(2.2rem, 5.2vw, 4.55rem);
  font-weight: 900;
}

.lead {
  max-width: 680px;
  margin: 24px 0 0;
  color: #eeeeee;
  font-size: clamp(1.08rem, 2vw, 1.38rem);
  font-weight: 600;
  line-height: 1.46;
}

.offer-strip,
.final-price {
  width: min(560px, 100%);
  margin-top: 30px;
  padding: 22px;
  border: 1px solid rgba(255, 61, 22, 0.44);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(18, 18, 18, 0.98));
  box-shadow: var(--shadow);
}

.offer-strip span,
.offer-strip small,
.final-price span,
.final-price small {
  display: block;
  color: #f5f5f5;
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
}

.offer-name {
  margin-bottom: 12px;
  color: var(--orange-2);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.offer-strip strong,
.final-price strong {
  display: block;
  margin: 4px 0 6px;
  color: var(--white);
  font-size: clamp(3rem, 6.9vw, 4.8rem);
  line-height: 0.88;
}

.offer-details {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #e8e8e8;
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.35;
}

.meeting-box {
  display: grid;
  gap: 8px;
  width: min(560px, 100%);
  margin-top: 16px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  color: #f2f2f2;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.35;
}

.meeting-box strong,
.meeting-box span,
.meeting-box small,
.meeting-box a {
  display: block;
}

.meeting-box strong {
  color: var(--orange-2);
  font-size: 0.84rem;
  font-weight: 900;
  text-transform: uppercase;
}

.meeting-box a {
  color: var(--white);
  font-weight: 900;
  overflow-wrap: anywhere;
}

.meeting-box small {
  color: #dcdcdc;
  font-weight: 800;
}

.actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  width: 100%;
  margin-top: 26px;
}

.primary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 24px;
  border-radius: 8px;
  background: linear-gradient(180deg, var(--button-orange-2), var(--button-orange));
  color: var(--white);
  font-size: 0.98rem;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 20px 48px rgba(255, 61, 22, 0.28);
}

.primary-cta:hover {
  transform: translateY(-1px);
}

.skip-link {
  display: inline-block;
  max-width: 100%;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.94rem;
  font-weight: 800;
  line-height: 1.35;
  overflow-wrap: anywhere;
  text-decoration-color: rgba(255, 255, 255, 0.32);
  text-underline-offset: 4px;
}

.mentor-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(16, 16, 16, 0.88);
  box-shadow: var(--shadow);
}

.mentor-panel::before {
  content: "GUSTAVO";
  position: absolute;
  left: 18px;
  bottom: 78px;
  color: rgba(255, 255, 255, 0.08);
  font-size: 4.2rem;
  font-weight: 900;
  font-style: italic;
  line-height: 1;
  pointer-events: none;
}

.mentor-photo-wrap {
  min-height: 520px;
  display: grid;
  align-items: end;
  background:
    linear-gradient(180deg, rgba(255, 61, 22, 0.08), rgba(0, 0, 0, 0.42)),
    var(--panel);
}

.mentor-photo {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(1) contrast(1.08);
}

.mentor-copy {
  position: relative;
  padding: 22px;
  border-top: 1px solid var(--line);
  background: var(--panel);
}

.mentor-copy::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 12px;
  height: 100%;
  background: var(--orange);
}

.mentor-copy span,
.mentor-copy strong {
  display: block;
}

.mentor-copy span {
  color: var(--orange-2);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.mentor-copy strong {
  max-width: 320px;
  margin-top: 8px;
  font-size: 1.45rem;
  line-height: 1.12;
}

.section,
.proof-section,
.final-cta {
  border-top: 1px solid var(--line);
}

.section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.75fr);
  gap: 44px;
  padding: 72px 0;
}

.section-copy {
  display: grid;
  gap: 18px;
  color: #dfdfdf;
  font-size: 1.12rem;
  font-weight: 600;
  line-height: 1.62;
}

.section-copy p {
  margin: 0;
}

.proof-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 28px;
  padding: 50px 0 72px;
}

.proof-card,
.proof-list div,
.final-cta {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(20, 20, 20, 0.9);
}

.proof-card {
  padding: 34px;
}

.proof-card p:not(.section-kicker) {
  max-width: 780px;
  margin: 22px 0 0;
  color: #dfdfdf;
  font-size: 1.13rem;
  font-weight: 600;
  line-height: 1.58;
}

.proof-list {
  display: grid;
  gap: 12px;
}

.proof-list div {
  padding: 22px;
}

.proof-list strong,
.proof-list span {
  display: block;
}

.proof-list strong {
  color: var(--orange-2);
  font-size: 1.25rem;
}

.proof-list span {
  margin-top: 8px;
  color: #dfdfdf;
  line-height: 1.48;
}

.final-cta {
  margin: 0 0 56px;
  padding: 44px 28px;
  text-align: center;
}

.final-cta h2 {
  max-width: 780px;
  margin: 16px auto 0;
}

.final-cta p:not(.status) {
  max-width: 620px;
  margin: 18px auto 0;
  color: #dfdfdf;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.5;
}

.final-price {
  margin-left: auto;
  margin-right: auto;
}

.final-cta .primary-cta {
  width: min(420px, 100%);
  margin-top: 22px;
}

.final-cta .skip-link {
  display: block;
  width: fit-content;
  margin: 18px auto 0;
}

@media (max-width: 880px) {
  main {
    width: calc(100% - 24px);
    max-width: 620px;
  }

  .hero {
    min-height: auto;
    padding-top: 18px;
  }

  .reveal-card {
    width: calc(100vw - 72px);
    max-width: 360px;
    padding: 26px;
  }

  .reveal-logo {
    width: 92px;
    margin-bottom: 28px;
  }

  .reveal-card h1 {
    font-size: clamp(2.05rem, 9.2vw, 2.75rem);
    max-width: 470px;
  }

  .reveal-card p {
    font-size: 1rem;
    max-width: 310px;
  }

  .reveal-card strong {
    width: 100%;
  }

  .topbar {
    margin-bottom: 24px;
  }

  .brand-logo {
    width: 92px;
  }

  .topbar span {
    display: none;
  }

  .hero-grid,
  .section,
  .proof-section {
    grid-template-columns: 1fr;
  }

  h1 {
    max-width: 350px;
    font-size: clamp(2.15rem, 9.3vw, 2.9rem);
    overflow-wrap: break-word;
  }

  h2 {
    font-size: clamp(2.15rem, 10vw, 3.45rem);
  }

  .lead {
    max-width: 360px;
    font-size: 1.05rem;
  }

  .offer-strip {
    padding: 18px;
  }

  .offer-strip strong,
  .final-price strong {
    font-size: clamp(2.4rem, 10.4vw, 3.3rem);
  }

  .offer-details {
    font-size: 0.82rem;
  }

  .primary-cta {
    width: 100%;
    min-height: 62px;
    padding: 0 16px;
    font-size: 0.9rem;
    white-space: normal;
  }

  .skip-link {
    width: 100%;
    text-align: center;
    white-space: normal;
  }

  .mentor-panel {
    margin-top: 2px;
  }

  .mentor-photo-wrap {
    min-height: 410px;
  }

  .mentor-photo {
    height: 410px;
  }

  .mentor-panel::before {
    bottom: 92px;
    font-size: 3.3rem;
  }

  .proof-card,
  .proof-list div,
  .final-cta {
    padding: 22px;
  }

  .section {
    gap: 26px;
    padding: 56px 0;
  }

  .proof-section {
    padding: 32px 0 56px;
  }
}

@media (max-width: 420px) {
  main {
    width: calc(100% - 20px);
  }

  h1 {
    font-size: 2.18rem;
  }

  .reveal-card {
    width: calc(100vw - 44px);
    max-width: 320px;
    padding: 22px;
  }

  .lead {
    max-width: 335px;
  }

  .offer-strip strong,
  .final-price strong {
    font-size: 2.58rem;
  }


  .mentor-photo-wrap {
    min-height: 360px;
  }

  .mentor-photo {
    height: 360px;
  }
}
