:root {
  --paper: #f4f2ee;
  --paper-dark: #e8e5de;
  --ink: #111111;
  --muted: #77736b;
  --orange: #ff4b00;
  --orange-deep: #b53600;
  --black: #050505;
  --white: #fffdf8;
  --line: rgba(17, 17, 17, 0.1);
  --line-strong: rgba(17, 17, 17, 0.16);
  --shadow: 0 18px 50px rgba(17, 17, 17, 0.055);
  --container: min(1120px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Manrope, Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  font-family: Sora, Manrope, system-ui, sans-serif;
  font-weight: 800;
  letter-spacing: -0.055em;
}

h1 {
  max-width: 620px;
  font-size: clamp(3.6rem, 7vw, 6.85rem);
  line-height: 0.88;
}

h2 {
  font-size: clamp(2.55rem, 5vw, 5.1rem);
  line-height: 0.92;
}

h3 {
  font-size: 1.25rem;
  line-height: 1.12;
}

.section-shell {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  padding: 0 clamp(20px, 5vw, 56px);
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
  background: rgba(255, 253, 248, 0.96);
  box-shadow: 0 12px 34px rgba(17, 17, 17, 0.045);
  backdrop-filter: blur(18px);
}

.brand,
.brand-text,
.header-cta,
.language-card,
.footer,
.footer nav,
.whatsapp-button {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
}

.brand-logo {
  display: block;
  width: auto;
  height: 48px;
  object-fit: contain;
  filter: drop-shadow(0 6px 14px rgba(17, 17, 17, 0.08));
}

.brand-icon {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: white;
  background: var(--orange);
  font-family: Sora, Manrope, sans-serif;
  font-size: 0.92rem;
  font-weight: 800;
}

.brand-text {
  gap: 4px;
  font-family: Sora, Manrope, sans-serif;
  font-size: 1rem;
  letter-spacing: -0.04em;
}

.brand-text strong {
  color: var(--ink);
}

.brand-text em {
  color: var(--orange);
  font-style: normal;
  font-weight: 800;
}

.header-cta {
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 999px;
  color: white;
  background: var(--orange);
  font-size: 0.9rem;
  font-weight: 800;
  box-shadow: 0 14px 28px rgba(255, 75, 0, 0.16);
}

.label {
  margin: 0 0 18px;
  color: var(--orange);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(560px, 1fr) minmax(500px, 560px);
  column-gap: clamp(28px, 4vw, 64px);
  row-gap: 0;
  align-items: end;
  width: 100vw;
  max-width: none;
  min-height: 100vh;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: clamp(58px, 7vh, 86px) clamp(36px, 4vw, 72px) clamp(46px, 6vh, 64px) 0;
  overflow: clip;
}

.hero::before {
  content: "";
  position: absolute;
  left: 3%;
  top: 16%;
  width: min(720px, 55vw);
  height: min(720px, 55vw);
  border: 1px solid rgba(255, 75, 0, 0.08);
  border-radius: 50%;
  transform: rotate(-14deg);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  left: 42%;
  top: 18%;
  width: 1px;
  height: 58%;
  background: linear-gradient(180deg, transparent, rgba(255, 75, 0, 0.18), transparent);
  pointer-events: none;
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  width: min(1040px, 64vw);
  min-height: clamp(690px, 68vw, 900px);
  margin-left: 0;
  margin-right: auto;
  background: transparent;
  overflow: visible;
  transform: translateY(-88px);
}

.orbit-wrapper {
  position: absolute;
  inset: 50% auto auto 54%;
  z-index: 1;
  width: min(1160px, 126%);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  background: transparent;
  pointer-events: none;
}

.orbit-svg {
  width: 100%;
  height: 100%;
  opacity: 0.72;
  transform-origin: center;
  animation: orbitRotate 24s linear infinite, orbitFade 5s ease-in-out infinite;
}

.orbit-particle {
  filter: drop-shadow(0 0 10px rgba(255, 85, 0, 0.35));
}

.particle-1 {
  animation: particlePulse 4.8s ease-in-out infinite;
}

.particle-2 {
  animation: particlePulse 4.8s ease-in-out infinite reverse;
}

.hero-astronaut {
  --astronaut-x: 18px;
  position: relative;
  z-index: 2;
  display: block;
  width: min(1060px, 132%);
  max-width: none;
  height: auto;
  object-fit: contain;
  background: transparent;
  filter: drop-shadow(0 34px 50px rgba(17, 17, 17, 0.16));
  animation: astronautFloat 6s ease-in-out infinite;
}

.hero-content {
  align-self: center;
  width: min(100%, 540px);
  padding-bottom: 34px;
  justify-self: center;
  margin-right: 0;
  transform: translateY(-88px);
}

.hero-content h1 span,
.solution h2 span {
  color: var(--orange);
}

.hero-copy {
  max-width: 500px;
  margin-top: 12px;
  color: #625d55;
  font-size: 0.94rem;
  font-weight: 650;
  line-height: 1.54;
}

.hero-content > .label {
  margin-bottom: 12px;
  font-size: 0.64rem;
  letter-spacing: 0.18em;
}

.hero-content > h1 {
  max-width: 520px;
  text-wrap: balance;
  font-size: clamp(2.85rem, 4.55vw, 5.05rem);
  line-height: 0.92;
  letter-spacing: -0.06em;
}

.hero-content > h1 em {
  color: var(--orange);
  font-style: italic;
}

.lead-card {
  position: relative;
  max-width: 540px;
  margin-top: 20px;
  padding: clamp(20px, 2.45vw, 28px);
  overflow: hidden;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.98), rgba(251, 250, 247, 0.95));
  box-shadow: 0 28px 76px rgba(17, 17, 17, 0.13);
}

.lead-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(90deg, rgba(255, 75, 0, 0.16), transparent 28%),
    linear-gradient(rgba(17, 17, 17, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 17, 17, 0.03) 1px, transparent 1px);
  background-size: auto, 28px 28px, 28px 28px;
  opacity: 0.55;
  pointer-events: none;
}

.lead-card-head {
  position: relative;
  z-index: 1;
  max-width: 470px;
  margin-bottom: 14px;
}

.lead-card-head span {
  display: inline-flex;
  margin-bottom: 8px;
  padding: 5px 10px;
  border: 1px solid rgba(255, 75, 0, 0.18);
  border-radius: 999px;
  color: var(--orange);
  background: #fff5ee;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.lead-card h2 {
  max-width: 460px;
  text-wrap: balance;
  font-size: clamp(1.48rem, 2.15vw, 1.95rem);
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.lead-card-head p {
  margin-top: 8px;
  color: #5f5a52;
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.5;
}

.lead-form {
  position: relative;
  z-index: 1;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.lead-form label {
  display: grid;
  gap: 5px;
  min-width: 0;
}

.lead-form label span {
  color: #34302b;
  font-size: 0.74rem;
  font-weight: 800;
}

.lead-form input,
.lead-form select {
  width: 100%;
  min-height: 39px;
  padding: 0 13px;
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 12px;
  color: var(--ink);
  background: #f4f2ee;
  font: inherit;
  font-size: 0.88rem;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.lead-form select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--orange) 50%),
    linear-gradient(135deg, var(--orange) 50%, transparent 50%);
  background-position: calc(100% - 17px) 20px, calc(100% - 12px) 20px;
  background-repeat: no-repeat;
  background-size: 5px 5px, 5px 5px;
}

.flag-select {
  position: relative;
}

.flag-select-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 39px;
  padding: 0 13px;
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 12px;
  color: var(--ink);
  background: #f4f2ee;
  font: inherit;
  font-size: 0.88rem;
  text-align: left;
  cursor: pointer;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.flag-select-current {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.flag-select-trigger::after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--orange);
  border-bottom: 2px solid var(--orange);
  transform: translateY(-2px) rotate(45deg);
}

.flag-select.is-open .flag-select-trigger,
.flag-select-trigger:focus {
  border-color: rgba(255, 75, 0, 0.42);
  background: white;
  box-shadow: 0 0 0 4px rgba(255, 75, 0, 0.09);
}

.flag-select-menu {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 8px);
  z-index: 8;
  display: grid;
  gap: 4px;
  padding: 8px;
  border: 1px solid rgba(255, 75, 0, 0.32);
  border-radius: 16px;
  background: var(--orange);
  box-shadow: 0 18px 42px rgba(255, 75, 0, 0.24);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity 140ms ease, transform 140ms ease, visibility 140ms ease;
}

.flag-select.is-open .flag-select-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.flag-select-menu button {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 40px;
  padding: 0 10px;
  border: 0;
  border-radius: 11px;
  color: white;
  background: transparent;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 750;
  text-align: left;
  cursor: pointer;
}

.flag-select-menu button:hover,
.flag-select-menu button[aria-selected="true"] {
  color: white;
  background: rgba(255, 255, 255, 0.16);
}

.flag-icon {
  display: block;
  flex: 0 0 28px;
  width: 28px;
  height: 20px;
  overflow: hidden;
  border: 1px solid rgba(17, 17, 17, 0.14);
  border-radius: 4px;
  background: #f4f2ee;
  object-fit: cover;
  box-shadow: 0 2px 6px rgba(17, 17, 17, 0.08);
}

.flag-world {
  border-radius: 50%;
}

.lead-form input:focus,
.lead-form select:focus {
  border-color: rgba(255, 75, 0, 0.42);
  background: white;
  box-shadow: 0 0 0 4px rgba(255, 75, 0, 0.09);
}

.form-support {
  margin-top: 10px;
  color: #6f6a62;
  font-size: 0.8rem;
  line-height: 1.46;
}

.lead-form button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 46px;
  margin-top: 12px;
  border: 0;
  border-radius: 999px;
  color: white;
  background: var(--orange);
  font: inherit;
  font-size: 0.94rem;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 18px 34px rgba(255, 75, 0, 0.24);
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.lead-form button:hover {
  transform: translateY(-1px);
  background: #e94400;
  box-shadow: 0 22px 42px rgba(255, 75, 0, 0.28);
}

.lead-form button:disabled {
  cursor: wait;
  opacity: 0.78;
  transform: none;
}

.lead-form small {
  display: block;
  margin-top: 8px;
  color: #7a756d;
  font-size: 0.74rem;
  font-weight: 800;
  text-align: center;
}

.lead-testimonial {
  margin: 12px 0 0;
  padding: 11px 13px;
  border-left: 4px solid var(--orange);
  border-radius: 14px;
  background: #fff5ee;
}

.hero-rail {
  position: absolute;
  left: 0;
  right: 0;
  bottom: clamp(28px, 4vh, 46px);
  z-index: 3;
  width: 100%;
  height: clamp(14px, 1.2vw, 18px);
  margin: 0;
  border-radius: 0 999px 999px 0;
  background: linear-gradient(90deg, var(--orange) 0%, #ff6f2b 48%, var(--orange) 100%);
  box-shadow: 0 18px 36px rgba(255, 75, 0, 0.22);
}

.lead-testimonial p {
  color: #332f2a;
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.44;
}

.lead-testimonial cite {
  display: block;
  margin-top: 7px;
  color: var(--orange);
  font-size: 0.74rem;
  font-style: normal;
  font-weight: 900;
}

.language-cards {
  display: grid;
  gap: 14px;
  max-width: 560px;
  margin-top: 34px;
}

.language-card {
  min-height: 82px;
  gap: 18px;
  padding: 16px 18px;
  border: 1px solid rgba(17, 17, 17, 0.09);
  border-radius: 16px;
  background: rgba(255, 253, 248, 0.72);
  box-shadow: 0 10px 28px rgba(17, 17, 17, 0.035);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.language-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 75, 0, 0.28);
  box-shadow: 0 18px 42px rgba(17, 17, 17, 0.06);
}

.language-code {
  display: grid;
  place-items: center;
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  color: var(--orange);
  background: #fff5ee;
  font-family: Sora, Manrope, sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
}

.language-card strong {
  flex: 1;
  font-family: Sora, Manrope, sans-serif;
  font-size: 1.05rem;
  letter-spacing: -0.03em;
}

.language-card small {
  color: var(--orange);
  font-size: 0.86rem;
  font-weight: 800;
  white-space: nowrap;
}

.language-marquee {
  position: relative;
  width: 100vw;
  margin: -6px 0 78px calc(50% - 50vw);
  overflow: hidden;
  background: rgba(255, 253, 248, 0.78);
}

.language-marquee::before,
.language-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  z-index: 2;
  width: min(16vw, 220px);
  height: 100%;
  pointer-events: none;
}

.language-marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--paper), rgba(244, 242, 238, 0));
}

.language-marquee::after {
  right: 0;
  background: linear-gradient(270deg, var(--paper), rgba(244, 242, 238, 0));
}

.language-marquee-track {
  display: flex;
  width: max-content;
  padding: 18px 0 20px;
  animation: languageMarquee 44s linear infinite;
  will-change: transform;
}

.language-marquee:hover .language-marquee-track {
  animation-play-state: paused;
}

.language-marquee-line {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: clamp(30px, 4vw, 72px);
  padding-right: clamp(30px, 4vw, 72px);
}

.language-marquee span {
  color: rgba(17, 17, 17, 0.86);
  font-family: Sora, Manrope, sans-serif;
  font-size: clamp(2.25rem, 4.2vw, 3.7rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.045em;
  white-space: nowrap;
}

.language-marquee span::after {
  content: "";
  display: inline-block;
  width: 0.16em;
  height: 0.16em;
  margin-left: clamp(30px, 4vw, 72px);
  border-radius: 50%;
  background: rgba(17, 17, 17, 0.22);
  vertical-align: middle;
}

.language-marquee .tone-orange {
  color: var(--orange);
}

.language-marquee .tone-blue {
  color: #2b72d6;
}

.language-marquee .tone-green {
  color: #238a55;
}

.language-marquee .tone-purple {
  color: #7561d9;
}

.problem {
  position: relative;
  padding: 108px 0 118px;
  background: #f3f1ec;
  overflow: hidden;
}

.problem::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 86px;
  width: min(720px, 62vw);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 75, 0, 0.32), transparent);
  transform: translateX(-50%);
}

.problem .section-shell {
  width: min(100% - 40px, 1180px);
}

.centered {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.problem .label {
  margin-bottom: 22px;
}

.problem .section-heading h2 {
  max-width: 840px;
  margin: 0 auto;
  font-size: clamp(2.35rem, 4.1vw, 4.25rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.section-heading > p:last-child {
  max-width: 680px;
  margin: 22px auto 0;
  font-size: 1.08rem;
}

.problem .section-heading > p:not(.label) {
  max-width: 720px;
  margin: 30px auto 0;
  color: #6b665e;
  font-size: clamp(1rem, 1.45vw, 1.12rem);
  line-height: 1.78;
}

.problem .section-heading > strong {
  display: inline-flex;
  max-width: 720px;
  margin: 30px auto 0;
  padding: 13px 18px;
  border: 1px solid rgba(255, 75, 0, 0.16);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 253, 248, 0.64);
  font-family: Sora, Manrope, sans-serif;
  font-size: clamp(0.95rem, 1.35vw, 1.08rem);
  line-height: 1.28;
  letter-spacing: -0.025em;
  box-shadow: 0 14px 34px rgba(17, 17, 17, 0.035);
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
  margin-top: 58px;
}

.info-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 336px;
  padding: 30px;
  overflow: hidden;
  border: 1px solid #e5e0d8;
  border-radius: 26px;
  background: linear-gradient(180deg, #fffdf8 0%, #fbfaf7 100%);
  box-shadow: 0 18px 50px rgba(17, 17, 17, 0.045);
}

.info-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), rgba(255, 75, 0, 0));
  opacity: 0.9;
}

.info-card::after {
  content: "";
  position: absolute;
  right: 24px;
  bottom: 24px;
  width: 72px;
  height: 72px;
  border: 1px solid rgba(255, 75, 0, 0.09);
  border-radius: 50%;
}

.info-card:nth-child(2) {
  margin-top: 28px;
}

.info-card:nth-child(3) {
  margin-top: 12px;
}

.info-card h3 {
  max-width: 300px;
  margin-top: auto;
  color: var(--ink);
  font-size: 1.26rem;
  line-height: 1.22;
  letter-spacing: -0.012em;
}

.info-card p {
  color: #6d675f;
  font-size: 0.96rem;
  line-height: 1.72;
}

.info-card p,
.method-card p {
  margin-top: 16px;
}

.problem-icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 52px;
  border: 1px solid rgba(255, 75, 0, 0.16);
  border-radius: 18px;
  color: var(--orange);
  background: #fff5ee;
  box-shadow: inset 0 0 0 6px rgba(255, 255, 255, 0.5);
}

.problem-icon svg {
  width: 28px;
  height: 28px;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.solution {
  position: relative;
  padding: 116px 0 118px;
  width: 100vw;
  max-width: none;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background: var(--orange);
  overflow: hidden;
}

.solution::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.18), transparent 28%),
    radial-gradient(circle at 86% 78%, rgba(17, 17, 17, 0.14), transparent 30%);
  pointer-events: none;
}

.solution > * {
  width: min(100% - 40px, 1120px);
  margin-left: auto;
  margin-right: auto;
}

.solution-heading {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.method-logo {
  display: block;
  width: min(560px, 88vw);
  height: auto;
  margin: 8px auto 82px;
  object-fit: contain;
  filter: drop-shadow(0 20px 36px rgba(17, 17, 17, 0.18));
}

.solution-heading h2 {
  max-width: 820px;
  margin: 0 auto;
  color: white;
  font-size: clamp(2.35rem, 4.7vw, 4.8rem);
  line-height: 1;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.solution-subheadline {
  max-width: 700px;
  margin: 26px auto 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 1.45vw, 1.14rem);
  line-height: 1.72;
}

.solution-support {
  max-width: 760px;
  margin: 18px auto 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(0.98rem, 1.32vw, 1.08rem);
  line-height: 1.76;
}

.solution-heading strong {
  display: inline-flex;
  max-width: 740px;
  margin: 30px auto 0;
  padding: 14px 20px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  color: white;
  background: rgba(17, 17, 17, 0.12);
  font-family: Sora, Manrope, sans-serif;
  font-size: clamp(0.96rem, 1.28vw, 1.08rem);
  line-height: 1.35;
  letter-spacing: -0.022em;
  box-shadow: 0 16px 36px rgba(17, 17, 17, 0.12);
}

.curve-detail {
  position: absolute;
  right: 4%;
  top: 18%;
  width: 330px;
  height: 150px;
  border-top: 1px dashed rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  transform: rotate(-12deg);
  pointer-events: none;
  opacity: 0.75;
}

.curve-detail::after {
  content: "";
  position: absolute;
  right: 12%;
  top: -4px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.44);
}

.method-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
  margin-top: 64px;
}

.method-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 270px;
  padding: 26px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 26px;
  background: rgba(255, 253, 248, 0.96);
  box-shadow: 0 24px 58px rgba(17, 17, 17, 0.16);
}

.method-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), rgba(255, 75, 0, 0));
  opacity: 0.9;
}

.method-card::after {
  content: "";
  position: absolute;
  right: -34px;
  bottom: -38px;
  width: 116px;
  height: 116px;
  border: 1px solid rgba(255, 75, 0, 0.09);
  border-radius: 50%;
}

.method-card:nth-child(even) {
  margin-top: 22px;
}

.method-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin-bottom: 34px;
  border: 1px solid rgba(255, 75, 0, 0.16);
  border-radius: 18px;
  color: var(--orange);
  background: #fff5ee;
  font-family: Sora, Manrope, sans-serif;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.method-card h3 {
  max-width: 240px;
  margin-top: 0;
  font-size: 1.24rem;
  line-height: 1.2;
  letter-spacing: -0.016em;
}

.method-card p {
  margin-top: 14px;
  color: #6c665e;
  font-size: 0.95rem;
  line-height: 1.6;
}

.founders {
  position: relative;
  width: 100vw;
  max-width: none;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 124px 0 116px;
  overflow: hidden;
  background:
    radial-gradient(circle at 13% 18%, rgba(255, 75, 0, 0.08), transparent 20rem),
    radial-gradient(circle at 88% 48%, rgba(43, 114, 214, 0.08), transparent 18rem),
    var(--paper);
}

.founders > * {
  width: min(100% - 40px, 1120px);
  margin-left: auto;
  margin-right: auto;
}

.founders-heading h2 {
  max-width: 920px;
  margin: 0 auto;
  font-size: clamp(2.35rem, 4.8vw, 4.85rem);
  line-height: 1;
  text-wrap: balance;
}

.founders-heading > p:not(.label) {
  max-width: 690px;
  margin-top: 22px;
  color: #68625a;
  font-size: clamp(0.98rem, 1.35vw, 1.1rem);
  font-weight: 700;
  line-height: 1.7;
}

.founder-chips {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  max-width: 820px;
  margin-top: 24px;
}

.founder-chips span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid rgba(255, 75, 0, 0.16);
  border-radius: 999px;
  color: #332f2a;
  background: rgba(255, 253, 248, 0.82);
  font-size: 0.72rem;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(17, 17, 17, 0.035);
}

.founders-board {
  position: relative;
  z-index: 1;
  min-height: 690px;
  margin-top: 58px;
}

.founders-photo-card {
  position: absolute;
  left: 50%;
  bottom: 92px;
  width: min(900px, 80vw);
  aspect-ratio: 16 / 9;
  height: auto;
  overflow: visible;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.98), rgba(248, 245, 238, 0.94)),
    linear-gradient(rgba(17, 17, 17, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 17, 17, 0.03) 1px, transparent 1px);
  background-size: auto, 30px 30px, 30px 30px;
  box-shadow: 0 30px 80px rgba(17, 17, 17, 0.1);
  transform: translateX(-50%);
}

.founders-photo-card::before {
  content: "";
  position: absolute;
  inset: 24px;
  border: 1px dashed rgba(255, 75, 0, 0.2);
  border-radius: 28px;
}

.founders-photo-card::after {
  content: "";
  position: absolute;
  left: 7%;
  right: 7%;
  bottom: 24px;
  height: 18px;
  border-radius: 999px;
  background: var(--orange);
  box-shadow: 0 18px 36px rgba(255, 75, 0, 0.18);
}

.founders-photo {
  position: absolute;
  left: 50%;
  bottom: 0;
  z-index: 2;
  display: block;
  width: 100%;
  max-width: none;
  height: auto;
  object-fit: contain;
  filter:
    drop-shadow(0 0 0 white)
    drop-shadow(0 28px 34px rgba(17, 17, 17, 0.18));
  transform: translateX(-50%);
}

.founder-name {
  position: absolute;
  z-index: 3;
  color: var(--orange);
  font-family: Sora, Manrope, sans-serif;
  font-size: clamp(3rem, 7vw, 5.8rem);
  font-weight: 800;
  line-height: 0.86;
  letter-spacing: -0.06em;
  text-shadow: 0 13px 28px rgba(255, 75, 0, 0.16);
  pointer-events: none;
}

.jose-name {
  right: 40px;
  top: 18px;
}

.gustavo-name {
  left: 42px;
  bottom: 36px;
}

.founder-callout {
  position: absolute;
  z-index: 4;
  width: 210px;
  padding: 12px 14px;
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 18px;
  background: rgba(255, 253, 248, 0.96);
  box-shadow: 0 16px 36px rgba(17, 17, 17, 0.06);
}

.founder-callout span {
  position: relative;
  display: block;
  color: #2e2924;
  font-size: 0.84rem;
  font-weight: 900;
  line-height: 1.35;
}

.founder-mobile-notes {
  display: none;
}

.callout-g1 {
  left: -54px;
  top: 92px;
}

.callout-g2 {
  left: -28px;
  top: 212px;
}

.callout-g3 {
  left: -58px;
  top: 330px;
}

.callout-g4 {
  left: -22px;
  top: 456px;
}

.callout-g5 {
  left: 150px;
  bottom: 0;
}

.callout-j1 {
  right: -46px;
  top: 90px;
}

.callout-j2 {
  right: -58px;
  top: 214px;
}

.callout-j3 {
  right: -30px;
  top: 334px;
}

.callout-j4 {
  right: -64px;
  top: 458px;
}

.callout-j5 {
  right: 150px;
  bottom: 0;
}

.jose-callout {
  background: #fffaf2;
}

.gustavo-callout {
  background: #fffdf8;
}

.founders-close {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 920px;
  margin-top: 34px;
  padding: 24px 26px;
  border: 1px solid rgba(255, 75, 0, 0.14);
  border-radius: 28px;
  background: rgba(255, 253, 248, 0.88);
  box-shadow: 0 18px 46px rgba(17, 17, 17, 0.055);
}

.founders-close p {
  max-width: 620px;
  color: #332f2a;
  font-family: Sora, Manrope, sans-serif;
  font-size: clamp(1rem, 1.45vw, 1.16rem);
  font-weight: 800;
  line-height: 1.38;
  letter-spacing: -0.026em;
}

.founders-close a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  color: white;
  background: var(--orange);
  font-weight: 900;
  box-shadow: 0 18px 34px rgba(255, 75, 0, 0.22);
}

.testimonials {
  position: relative;
  padding: 142px 0 104px;
}

.testimonials::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 104px;
  z-index: -1;
  width: min(960px, 92vw);
  height: 520px;
  border: 1px solid rgba(17, 17, 17, 0.06);
  border-radius: 50%;
  transform: translateX(-50%) rotate(-7deg);
}

.whatsapp-board {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: start;
  margin-top: 46px;
}

.chat-card {
  overflow: hidden;
  border: 1px solid rgba(17, 17, 17, 0.09);
  border-radius: 18px;
  background: #f8f5ee;
  box-shadow: 0 18px 46px rgba(17, 17, 17, 0.065);
}

.chat-card.wide {
  grid-column: span 2;
}

.chat-card.tall {
  grid-row: span 2;
}

.chat-card.compact {
  align-self: start;
}

.chat-top {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 68px;
  padding: 14px 16px;
  color: white;
  background: #075e54;
}

.chat-card.success .chat-top {
  background: #111111;
}

.chat-avatar {
  display: grid;
  place-items: center;
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: white;
  background: linear-gradient(145deg, #ff7a35, var(--orange));
  font-family: Sora, Manrope, sans-serif;
  font-size: 0.86rem;
  font-weight: 800;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.18);
}

.chat-top strong,
.chat-top small {
  display: block;
}

.chat-top strong {
  font-family: Sora, Manrope, sans-serif;
  font-size: 0.95rem;
  letter-spacing: -0.03em;
}

.chat-top small {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.76rem;
  font-weight: 800;
}

.chat-body {
  padding: 18px;
  background:
    linear-gradient(45deg, rgba(17, 17, 17, 0.025) 25%, transparent 25%) 0 0 / 18px 18px,
    linear-gradient(-45deg, rgba(17, 17, 17, 0.018) 25%, transparent 25%) 0 0 / 18px 18px,
    #efe9dc;
}

.bubble {
  position: relative;
  margin-left: 8px;
  padding: 16px 16px 32px;
  border-radius: 4px 16px 16px 16px;
  background: #dcf8c6;
  box-shadow: 0 8px 22px rgba(17, 17, 17, 0.08);
}

.bubble::before {
  content: "";
  position: absolute;
  left: -8px;
  top: 0;
  width: 14px;
  height: 14px;
  background: linear-gradient(135deg, #dcf8c6 0 50%, transparent 50% 100%);
}

.bubble p {
  color: #1c261d;
  font-size: 0.92rem;
  line-height: 1.62;
}

.bubble p + p {
  margin-top: 12px;
}

.bubble-highlight {
  padding: 12px;
  border-left: 3px solid var(--orange);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.42);
  font-weight: 800;
}

.bubble span {
  position: absolute;
  right: 14px;
  bottom: 9px;
  color: rgba(28, 38, 29, 0.5);
  font-size: 0.72rem;
  font-weight: 900;
}

.social-motion {
  padding: 106px 0 112px;
}

.social-heading {
  max-width: 840px;
  margin: 0 auto;
  text-align: center;
}

.social-name {
  width: fit-content;
  margin: -2px auto 18px;
  padding: 8px 14px;
  border: 1px solid rgba(255, 75, 0, 0.16);
  border-radius: 999px;
  color: var(--ink);
  background: #fff5ee;
  font-family: Sora, Manrope, sans-serif;
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.social-heading h2 {
  max-width: 760px;
  margin: 0 auto;
  font-size: clamp(2.45rem, 5vw, 4.9rem);
  line-height: 1;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.social-heading > p:not(.label) {
  max-width: 760px;
  margin: 24px auto 0;
  color: #6b665e;
  font-size: clamp(1rem, 1.45vw, 1.12rem);
  line-height: 1.76;
}

.reels-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 54px;
}

.reel-card {
  position: relative;
  display: block;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 26px;
  background: #fffdf8;
  box-shadow: 0 22px 58px rgba(17, 17, 17, 0.075);
  opacity: 0;
  transform: translateY(34px) scale(0.965);
  transition:
    opacity 620ms ease,
    transform 620ms cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.reel-card:nth-child(2) {
  transition-delay: 80ms;
}

.reel-card:nth-child(3) {
  transition-delay: 160ms;
}

.reel-card:nth-child(4) {
  transition-delay: 240ms;
}

.reel-card.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.reel-card.is-visible:hover {
  transform: translateY(-6px) scale(1.012);
  border-color: rgba(255, 75, 0, 0.2);
  box-shadow: 0 30px 76px rgba(17, 17, 17, 0.12);
}

.reel-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.reel-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 5, 5, 0.1), rgba(5, 5, 5, 0.08) 42%, rgba(5, 5, 5, 0.78));
  pointer-events: none;
}

.reel-tag {
  position: absolute;
  left: 16px;
  top: 16px;
  z-index: 2;
  padding: 7px 11px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  color: white;
  background: rgba(255, 75, 0, 0.9);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.reel-play {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 75, 0, 0.94);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.22);
  transform: translate(-50%, -50%);
  transition: opacity 180ms ease, transform 180ms ease;
}

.reel-card.is-playing .reel-play {
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.86);
}

.reel-play::before {
  content: "";
  width: 0;
  height: 0;
  margin-left: 4px;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid white;
}

.reel-card strong {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  color: white;
  font-family: Sora, Manrope, sans-serif;
  font-size: 1rem;
  line-height: 1.22;
  letter-spacing: -0.018em;
}

.social-cta {
  display: grid;
  justify-items: center;
  margin-top: 42px;
  text-align: center;
}

.social-cta a {
  display: inline-flex;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  color: white;
  background: var(--orange);
  align-items: center;
  font-weight: 900;
  box-shadow: 0 18px 36px rgba(255, 75, 0, 0.22);
}

.social-cta p {
  max-width: 520px;
  margin-top: 14px;
  color: #756f66;
  font-size: 0.92rem;
  font-weight: 750;
}

@media (prefers-reduced-motion: reduce) {
  .reel-card {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.schedule {
  position: relative;
  overflow: hidden;
  padding: 104px 0;
  background: #000;
}

.schedule-orbit {
  position: absolute;
  border: 1px solid rgba(255, 75, 0, 0.08);
  border-radius: 50%;
  pointer-events: none;
}

.orbit-a {
  left: -180px;
  top: 20px;
  width: 520px;
  height: 520px;
}

.orbit-b {
  right: -240px;
  bottom: -220px;
  width: 620px;
  height: 620px;
}

.schedule-astronaut {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  width: min(42vw, 560px);
  height: 100%;
  object-fit: cover;
  object-position: right center;
  opacity: 0.96;
  pointer-events: none;
  filter: drop-shadow(-28px 24px 46px rgba(0, 0, 0, 0.28));
}

.schedule::after {
  content: "";
  position: absolute;
  inset: 0 0 0 auto;
  z-index: 0;
  width: min(52vw, 680px);
  background: linear-gradient(90deg, rgba(5, 5, 5, 0), rgba(5, 5, 5, 0.18) 36%, rgba(5, 5, 5, 0.52));
  pointer-events: none;
}

.schedule-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  margin-left: clamp(42px, 7vw, 118px);
  margin-right: auto;
  text-align: left;
}

.schedule h2 {
  max-width: 600px;
  margin: 0;
  color: white;
  font-size: clamp(2.1rem, 3.85vw, 4.05rem);
  line-height: 1.03;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.schedule p:not(.label) {
  max-width: 580px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(0.94rem, 1.18vw, 1.02rem);
  line-height: 1.66;
}

.schedule-support {
  max-width: 590px;
  color: rgba(255, 255, 255, 0.58) !important;
  font-size: 0.9rem !important;
}

.time-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  max-width: 590px;
  margin-top: 32px;
}

.time-grid article {
  position: relative;
  min-height: 72px;
  padding: 15px 15px 15px 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(12px);
}

.time-grid article::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  bottom: 18px;
  width: 3px;
  border-radius: 999px;
  background: var(--orange);
  box-shadow: 0 0 18px rgba(255, 75, 0, 0.45);
}

.time-grid span {
  display: flex;
  align-items: center;
  min-height: 40px;
  color: rgba(255, 255, 255, 0.9);
  font-family: Sora, Manrope, sans-serif;
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1.28;
  letter-spacing: -0.02em;
}

.schedule-pill {
  display: inline-flex;
  max-width: 580px;
  margin-top: 26px;
  padding: 12px 17px;
  border: 1px solid rgba(255, 75, 0, 0.42);
  border-radius: 999px;
  color: white;
  background: rgba(255, 75, 0, 0.13);
  font-family: Sora, Manrope, sans-serif;
  font-size: 0.88rem;
  font-weight: 850;
  line-height: 1.35;
}

.life-section {
  position: relative;
  overflow: hidden;
  padding: 116px 0;
  background: #060606;
}

.life-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 12%, rgba(255, 75, 0, 0.16), transparent 28%),
    radial-gradient(circle at 82% 70%, rgba(255, 255, 255, 0.08), transparent 30%);
  pointer-events: none;
}

.life-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(360px, 0.82fr) minmax(420px, 1.18fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.life-copy h2 {
  max-width: 640px;
  color: white;
  font-size: clamp(2.15rem, 4.25vw, 4.35rem);
  line-height: 1;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.life-copy > p:not(.label) {
  max-width: 560px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1rem, 1.35vw, 1.1rem);
  line-height: 1.74;
}

.life-window {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 30px;
  background: #111;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.36);
}

.life-window::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.28));
  pointer-events: none;
}

.life-window img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
}

.life-goals {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 10px;
}

.life-goals article {
  min-height: 188px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.045);
  backdrop-filter: blur(12px);
}

.life-goals h3 {
  color: white;
  font-size: 1.08rem;
  line-height: 1.18;
  letter-spacing: -0.018em;
}

.life-goals p {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.91rem;
  line-height: 1.62;
}

.life-impact {
  grid-column: 1 / -1;
  justify-self: center;
  max-width: 760px;
  margin: 30px 0 0;
  padding: 14px 22px;
  border: 1px solid rgba(255, 75, 0, 0.34);
  border-radius: 999px;
  color: white;
  background: rgba(255, 75, 0, 0.11);
  font-family: Sora, Manrope, sans-serif;
  font-size: clamp(0.96rem, 1.4vw, 1.12rem);
  font-weight: 850;
  line-height: 1.35;
  text-align: center;
}

.final-cta {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  padding: 132px 0;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.78), rgba(5, 5, 5, 0.46) 48%, rgba(5, 5, 5, 0.72)),
    url("/images/rocket.gif") center center / cover no-repeat;
  text-align: center;
}

.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 42%, rgba(255, 75, 0, 0.22), transparent 42%);
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
}

.final-cta .label,
.final-cta h2,
.final-cta p {
  color: white;
}

.final-cta .label {
  opacity: 0.78;
}

.final-cta h2 {
  max-width: 820px;
  margin: 0 auto;
  text-shadow: 0 14px 34px rgba(0, 0, 0, 0.36);
}

.final-cta p {
  max-width: 650px;
  margin: 22px auto 30px;
  color: rgba(255, 255, 255, 0.86);
}

.whatsapp-button {
  justify-content: center;
  gap: 10px;
  width: fit-content;
  min-height: 52px;
  margin: 0 auto;
  padding: 0 23px;
  border-radius: 999px;
  color: var(--orange);
  background: white;
  font-weight: 900;
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.24);
}

.whatsapp-button span {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  color: white;
  background: #25d366;
}

.whatsapp-button svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.rocket-mark {
  position: absolute;
  right: 8%;
  top: 14%;
  width: 130px;
  height: 300px;
  opacity: 0.12;
  transform: rotate(28deg);
}

.rocket-mark::before {
  content: "";
  position: absolute;
  left: 34px;
  top: 0;
  width: 62px;
  height: 190px;
  border-radius: 50% 50% 22px 22px;
  background: white;
}

.rocket-mark::after {
  content: "";
  position: absolute;
  left: 17px;
  top: 138px;
  width: 96px;
  height: 78px;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  background: white;
}

.footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 24px;
  padding: 26px clamp(20px, 5vw, 56px);
  color: rgba(255, 255, 255, 0.48);
  background: var(--black);
  font-size: 0.9rem;
}

.footer-brand {
  grid-column: 2;
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  justify-self: center;
}

.footer-brand img {
  display: block;
  width: auto;
  height: 46px;
  object-fit: contain;
}

.footer p {
  grid-column: 1;
  grid-row: 1;
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.88rem;
  font-weight: 750;
  line-height: 1.4;
  text-align: left;
}

.footer nav {
  grid-column: 3;
  justify-self: end;
  gap: 10px;
}

.social-link {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  color: white;
  background: rgba(255, 255, 255, 0.045);
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.social-link svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer a:hover {
  color: white;
}

.social-link:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 75, 0, 0.5);
  background: var(--orange);
}

.footer-plan-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: white;
  background: rgba(255, 255, 255, 0.045);
  font-size: 0.84rem;
  font-weight: 900;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.footer-plan-link:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 75, 0, 0.5);
  background: var(--orange);
}

.plans-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 75, 0, 0.12), transparent 28rem),
    var(--paper);
}

.plans-shell {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.plans-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 0 clamp(20px, 5vw, 56px);
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
  background: rgba(255, 253, 248, 0.94);
  box-shadow: 0 12px 34px rgba(17, 17, 17, 0.04);
  backdrop-filter: blur(18px);
}

.plans-brand img {
  display: block;
  width: auto;
  height: 46px;
  object-fit: contain;
}

.plans-header nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.plans-header nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  color: #4f4941;
  font-size: 0.86rem;
  font-weight: 850;
}

.plans-header nav a:hover,
.plans-header .plans-nav-cta {
  color: white;
  background: var(--orange);
}

.plans-hero {
  position: relative;
  overflow: hidden;
  padding: 92px 0 70px;
}

.plans-hero::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 40px;
  z-index: -1;
  width: min(780px, 80vw);
  height: min(780px, 80vw);
  border: 1px solid rgba(255, 75, 0, 0.1);
  border-radius: 50%;
  transform: translateX(-50%) rotate(-12deg);
}

.plans-hero-grid {
  display: grid;
  grid-template-columns: minmax(420px, 0.92fr) minmax(460px, 0.86fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: center;
}

.plans-hero-visual {
  position: relative;
  min-height: clamp(540px, 52vw, 720px);
  overflow: visible;
}

.plans-hero-visual::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(620px, 72vw);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 75, 0, 0.13);
  border-radius: 50%;
  transform: translate(-50%, -50%) rotate(-16deg);
}

.plans-hero-visual::after {
  content: "";
  position: absolute;
  left: 12%;
  bottom: 10%;
  width: 58%;
  height: 18px;
  border-radius: 50%;
  background: rgba(17, 17, 17, 0.12);
  filter: blur(18px);
}

.plans-hero-visual img {
  position: absolute;
  left: 50%;
  bottom: -6%;
  z-index: 1;
  display: block;
  width: min(720px, 118%);
  max-width: none;
  height: auto;
  filter: drop-shadow(0 34px 58px rgba(17, 17, 17, 0.18));
  transform: translateX(-50%);
}

.plans-hero-copy {
  max-width: 760px;
  text-align: left;
}

.plans-hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(3rem, 6.2vw, 6.6rem);
  line-height: 0.9;
  text-wrap: balance;
}

.plans-hero p:not(.label) {
  max-width: 680px;
  margin: 24px 0 0;
  color: #69635a;
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  line-height: 1.72;
}

.plans-hero a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 48px;
  margin-top: 30px;
  padding: 0 18px 0 14px;
  border: 1px solid rgba(255, 75, 0, 0.24);
  border-radius: 999px;
  color: #231f1b;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 247, 240, 0.96));
  font-weight: 900;
  box-shadow: 0 18px 40px rgba(17, 17, 17, 0.065);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.plans-hero a::before {
  content: "";
  display: inline-block;
  flex: 0 0 12px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow:
    0 0 0 6px rgba(255, 75, 0, 0.1),
    0 0 18px rgba(255, 75, 0, 0.38);
}

.plans-hero a::after {
  content: "→";
  color: var(--orange);
  font-size: 1.05rem;
  line-height: 1;
  transition: transform 160ms ease;
}

.plans-hero a:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 75, 0, 0.42);
  box-shadow: 0 24px 54px rgba(17, 17, 17, 0.09);
}

.plans-hero a:hover::after {
  transform: translateX(3px);
}

.group-plan-section {
  padding: 18px 0 76px;
}

.group-plan-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  gap: clamp(24px, 4vw, 42px);
  align-items: stretch;
  overflow: hidden;
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid rgba(255, 75, 0, 0.36);
  border-radius: 30px;
  color: white;
  background:
    linear-gradient(135deg, rgba(5, 5, 5, 0.96), rgba(35, 29, 24, 0.94) 62%, rgba(88, 36, 8, 0.92)),
    #050505;
  box-shadow: 0 34px 100px rgba(17, 17, 17, 0.18);
}

.group-plan-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 75, 0, 0.18), transparent 42%),
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: auto, 34px 34px, 34px 34px;
  opacity: 0.55;
  pointer-events: none;
}

.group-plan-card::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--orange), #ff9a5c, rgba(255, 75, 0, 0));
}

.group-plan-copy,
.group-plan-price {
  position: relative;
  z-index: 1;
}

.plan-badge {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: #fff8f3;
  background: rgba(255, 75, 0, 0.22);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.group-plan-copy h2 {
  max-width: 620px;
  font-size: clamp(2.45rem, 4.7vw, 5rem);
  line-height: 0.94;
}

.group-plan-copy > p {
  max-width: 640px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.02rem;
}

.group-plan-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.group-plan-tags span {
  padding: 10px 13px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.84rem;
  font-weight: 850;
}

.group-plan-note {
  font-weight: 750;
}

.group-plan-price {
  display: grid;
  align-content: center;
  justify-items: start;
  padding: clamp(26px, 3.2vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 26px;
  background: rgba(255, 253, 248, 0.94);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

.group-plan-price p {
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.group-plan-price strong {
  margin-top: 10px;
  color: var(--ink);
  font-family: Sora, Manrope, sans-serif;
  font-size: clamp(3.4rem, 6vw, 5.6rem);
  line-height: 0.9;
  letter-spacing: -0.065em;
}

.group-plan-price span {
  margin-top: 8px;
  color: #6c665e;
  font-weight: 900;
}

.group-plan-price small {
  margin-top: 18px;
  color: #716b62;
  font-size: 0.86rem;
  font-weight: 800;
}

.group-plan-price a,
.pricing-card a,
.plan-help a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin-top: 22px;
  padding: 0 18px;
  border-radius: 999px;
  color: white;
  background: var(--orange);
  font-weight: 900;
  box-shadow: 0 18px 36px rgba(255, 75, 0, 0.22);
}

.vip-divider {
  position: relative;
  padding: 24px 0 50px;
  text-align: center;
}

.vip-divider div {
  position: relative;
  height: 1px;
  margin-bottom: 34px;
  background: linear-gradient(90deg, transparent, rgba(255, 75, 0, 0.45), transparent);
}

.vip-divider div::before,
.vip-divider div::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--orange);
  transform: translateY(-50%);
}

.vip-divider div::before {
  left: calc(50% - 54px);
}

.vip-divider div::after {
  right: calc(50% - 54px);
}

.vip-divider h2 {
  max-width: 760px;
  margin: 0 auto;
  font-size: clamp(2rem, 3.6vw, 3.7rem);
  line-height: 1;
}

.vip-divider > p:not(.label) {
  margin-top: 16px;
  color: #716b62;
  font-weight: 750;
}

.individual-plans {
  padding-bottom: 92px;
}

.language-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 32px;
}

.language-tabs button {
  min-height: 46px;
  padding: 0 22px;
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 999px;
  color: #4f4941;
  background: white;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(17, 17, 17, 0.035);
}

.language-tabs button.is-active {
  border-color: var(--orange);
  color: white;
  background: var(--orange);
  box-shadow: 0 18px 36px rgba(255, 75, 0, 0.22);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 360px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.98), rgba(247, 244, 237, 0.96)),
    #fffdf8;
  box-shadow: 0 22px 64px rgba(17, 17, 17, 0.07);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.pricing-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 7px;
  background: linear-gradient(90deg, var(--orange), #ff9a5c 58%, rgba(255, 75, 0, 0));
}

.pricing-card::after {
  content: "";
  position: absolute;
  inset: 7px 0 auto;
  height: 92px;
  background: linear-gradient(180deg, rgba(255, 75, 0, 0.075), transparent);
  pointer-events: none;
}

.pricing-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 75, 0, 0.24);
  box-shadow: 0 28px 70px rgba(17, 17, 17, 0.09);
}

.pricing-card > span {
  position: relative;
  z-index: 1;
  width: fit-content;
  padding: 9px 12px;
  border: 1px solid rgba(255, 75, 0, 0.18);
  border-radius: 999px;
  color: var(--orange);
  background: #fff4ec;
  font-size: 0.78rem;
  font-weight: 900;
}

.pricing-card h3 {
  position: relative;
  z-index: 1;
  margin-top: 30px;
  font-size: 1.18rem;
  line-height: 1.18;
  letter-spacing: -0.025em;
}

.pricing-card div {
  position: relative;
  z-index: 1;
  margin-top: auto;
  padding-top: 26px;
  border-top: 1px solid rgba(17, 17, 17, 0.08);
}

.pricing-card strong {
  display: inline-block;
  color: var(--ink);
  font-family: Sora, Manrope, sans-serif;
  font-size: clamp(2.35rem, 3.5vw, 3.25rem);
  line-height: 0.9;
  letter-spacing: -0.06em;
}

.pricing-card small {
  color: #6f695f;
  font-weight: 900;
}

.pricing-card p {
  position: relative;
  z-index: 1;
  margin-top: 14px;
  color: #746e65;
  font-size: 0.86rem;
  font-weight: 800;
}

.pricing-card a {
  position: relative;
  z-index: 1;
  width: 100%;
  color: white;
  background: var(--orange);
  border: 1px solid rgba(255, 75, 0, 0.42);
  box-shadow: 0 18px 34px rgba(255, 75, 0, 0.2);
}

.pricing-card:hover a {
  color: white;
  background: #e64600;
  box-shadow: 0 22px 42px rgba(255, 75, 0, 0.26);
}

.plan-help {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 96px;
  padding: clamp(26px, 4vw, 42px);
  overflow: hidden;
  border-radius: 28px;
  color: white;
  background:
    radial-gradient(circle at 92% 20%, rgba(255, 75, 0, 0.34), transparent 18rem),
    #080808;
  box-shadow: 0 28px 70px rgba(17, 17, 17, 0.16);
}

.plan-help h2 {
  color: white;
  font-size: clamp(2rem, 3.5vw, 3.45rem);
  line-height: 1;
}

.plan-help p {
  max-width: 620px;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.72);
}

.plan-help a {
  flex: 0 0 auto;
  margin-top: 0;
}

.plans-faq {
  padding-bottom: 110px;
}

.plans-faq .section-heading h2 {
  font-size: clamp(2.4rem, 4.6vw, 4.8rem);
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 860px;
  margin: 48px auto 0;
}

.faq-list details {
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 20px;
  background: rgba(255, 253, 248, 0.9);
  box-shadow: 0 14px 38px rgba(17, 17, 17, 0.045);
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 70px;
  padding: 0 22px;
  color: var(--ink);
  font-family: Sora, Manrope, sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  display: grid;
  place-items: center;
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: white;
  background: var(--orange);
  font-family: Manrope, sans-serif;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "x";
}

.faq-list p {
  padding: 0 22px 22px;
  color: #6e685f;
  font-size: 0.96rem;
}

@keyframes orbitRotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes orbitFade {
  0%,
  100% {
    opacity: 0.45;
  }

  50% {
    opacity: 0.8;
  }
}

@keyframes astronautFloat {
  0%,
  100% {
    transform: translateX(var(--astronaut-x, 0)) translateY(0);
  }

  50% {
    transform: translateX(var(--astronaut-x, 0)) translateY(-10px);
  }
}

@keyframes particlePulse {
  0%,
  100% {
    opacity: 0.32;
  }

  50% {
    opacity: 0.72;
  }
}

@keyframes languageMarquee {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding: 84px max(20px, calc((100vw - 720px) / 2)) 58px 0;
  }

  .hero-visual {
    width: min(880px, 108vw);
    min-height: 690px;
    transform: translateY(-56px);
  }

  .hero-astronaut {
    --astronaut-x: 8px;
    width: min(920px, 132%);
    max-width: none;
  }

  .orbit-wrapper {
    width: min(980px, 126%);
  }

  .hero-content {
    padding-left: max(20px, calc((100vw - 720px) / 2));
    padding-right: max(20px, calc((100vw - 720px) / 2));
    padding-bottom: 0;
    transform: translateY(-56px);
  }

  .lead-card {
    max-width: 620px;
  }

  .hero-rail {
    bottom: 28px;
  }

  .problem-grid,
  .method-grid,
  .whatsapp-board,
  .time-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .founders-board {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    min-height: auto;
    margin-top: 42px;
  }

  .founders-photo-card {
    position: relative;
    left: auto;
    bottom: auto;
    grid-column: 1 / -1;
    width: min(820px, 100%);
    aspect-ratio: 16 / 9;
    height: auto;
    margin: 0 auto 12px;
    transform: none;
  }

  .founder-callout {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: auto;
  }

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

  .method-card:nth-child(even) {
    margin-top: 0;
  }

  .chat-card.wide {
    grid-column: span 2;
  }

  .chat-card.tall {
    grid-row: auto;
  }

  .footer {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .footer-brand,
  .footer p,
  .footer nav {
    grid-column: 1;
  }

  .footer-brand {
    grid-row: 1;
  }

  .footer p {
    grid-row: 2;
    text-align: center;
  }

  .footer nav {
    grid-row: 3;
    justify-self: center;
  }

  .schedule-astronaut {
    width: min(48vw, 380px);
    opacity: 0.42;
  }

  .group-plan-card,
  .plan-help {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .plans-hero-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .plans-hero-visual {
    min-height: 420px;
    order: 1;
  }

  .plans-hero-copy {
    order: 2;
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
  }

  .plans-hero-copy .label {
    text-align: center;
  }

  .plans-hero h1,
  .plans-hero p:not(.label) {
    margin-left: auto;
    margin-right: auto;
  }

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

@media (max-width: 680px) {
  :root {
    --container: min(100% - 28px, 1120px);
  }

  .site-header {
    min-height: 58px;
    padding: 0 12px;
  }

  .plans-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    padding: 12px 14px;
  }

  .plans-header nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .plans-header nav a {
    flex: 0 0 auto;
    min-height: 36px;
    padding: 0 12px;
    font-size: 0.78rem;
  }

  .plans-brand img {
    height: 36px;
  }

  .header-cta {
    min-height: 36px;
    padding: 0 12px;
    font-size: 0.78rem;
  }

  .brand-text {
    font-size: 0.92rem;
  }

  .brand-logo {
    height: 34px;
  }

  h1 {
    font-size: clamp(3rem, 15vw, 4.2rem);
  }

  h2 {
    font-size: clamp(2.35rem, 11vw, 3.65rem);
  }

  .hero {
    min-height: auto;
    padding: 64px 14px 58px 0;
  }

  .hero::before,
  .hero::after {
    display: none;
  }

  .hero-visual {
    order: 1;
    width: min(430px, 100vw);
    min-height: 330px;
    justify-content: center;
    overflow: hidden;
    transform: translateY(-28px);
  }

  .hero-content {
    position: relative;
    z-index: 2;
    padding-left: 14px;
    padding-right: 14px;
    order: 2;
    width: 100%;
    transform: translateY(-28px);
  }

  .hero-rail {
    height: 12px;
    bottom: 24px;
  }

  .hero-content > .label {
    font-size: 0.64rem;
  }

  .hero-content > h1 {
    font-size: clamp(2.05rem, 9.5vw, 3rem);
    line-height: 1.02;
  }

  .hero-copy {
    margin-top: 14px;
    font-size: 0.9rem;
    line-height: 1.58;
  }

  .lead-card {
    width: 100%;
    margin-top: 20px;
    padding: 17px;
    border-radius: 20px;
  }

  .lead-card::before {
    width: 56px;
    height: 56px;
  }

  .lead-card h2 {
    font-size: 1.34rem;
    line-height: 1.12;
  }

  .lead-card-head {
    margin-bottom: 14px;
  }

  .lead-card-head p {
    font-size: 0.86rem;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .lead-form button {
    min-height: 48px;
    padding: 0 16px;
    text-align: center;
    font-size: 0.92rem;
  }

  .lead-form input,
  .lead-form select,
  .flag-select-trigger {
    min-height: 41px;
    font-size: 0.88rem;
  }

  .flag-select-menu {
    max-height: 210px;
    overflow-y: auto;
  }

  .form-support,
  .lead-testimonial p {
    font-size: 0.82rem;
  }

  .lead-testimonial {
    margin-top: 14px;
    padding: 13px;
  }

  .language-card {
    min-height: 76px;
    gap: 12px;
    padding: 14px;
  }

  .language-card small {
    width: 100%;
    text-align: right;
    font-size: 0.78rem;
  }

  .hero-astronaut {
    --astronaut-x: 0px;
    width: min(430px, 108%);
    max-width: none;
  }

  .orbit-wrapper {
    inset: 47% auto auto 50%;
    width: min(360px, 86%);
    opacity: 0.52;
  }

  .language-marquee {
    margin-bottom: 58px;
  }

  .language-marquee-track {
    padding: 14px 0 16px;
    animation-duration: 34s;
  }

  .language-marquee-line {
    gap: 28px;
    padding-right: 28px;
  }

  .language-marquee span {
    font-size: clamp(1.55rem, 8vw, 2.25rem);
    letter-spacing: -0.04em;
  }

  .language-marquee span::after {
    margin-left: 28px;
  }

  .problem,
  .solution,
  .founders,
  .social-motion,
  .schedule,
  .life-section,
  .final-cta {
    padding: 74px 0;
  }

  .plans-shell {
    width: min(100% - 28px, 1160px);
  }

  .plans-hero {
    padding: 118px 0 48px;
  }

  .plans-hero-grid {
    gap: 8px;
  }

  .plans-hero-visual {
    min-height: 430px;
  }

  .plans-hero-visual::before {
    width: min(380px, 94vw);
  }

  .plans-hero-visual::after {
    left: 22%;
    bottom: 8%;
    width: 56%;
    height: 12px;
  }

  .plans-hero-visual img {
    bottom: -8%;
    width: min(420px, 102vw);
  }

  .plans-hero-copy {
    text-align: left;
  }

  .plans-hero-copy .label {
    text-align: left;
  }

  .plans-hero h1 {
    margin-left: 0;
    margin-right: 0;
    font-size: clamp(2.55rem, 14vw, 4.1rem);
    line-height: 0.94;
  }

  .plans-hero p:not(.label) {
    margin-top: 18px;
    font-size: 0.96rem;
    line-height: 1.62;
  }

  .plans-hero a {
    width: 100%;
    min-height: 46px;
    padding: 0 14px;
    text-align: center;
    font-size: 0.86rem;
  }

  .plans-hero a::before {
    flex-basis: 10px;
    width: 10px;
    height: 10px;
    box-shadow:
      0 0 0 5px rgba(255, 75, 0, 0.1),
      0 0 14px rgba(255, 75, 0, 0.34);
  }

  .group-plan-section {
    padding: 0 0 56px;
  }

  .group-plan-card {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 24px;
    border-radius: 24px;
  }

  .group-plan-copy h2 {
    font-size: clamp(2rem, 10vw, 3.2rem);
  }

  .group-plan-copy > p {
    margin-top: 16px;
    font-size: 0.94rem;
    line-height: 1.62;
  }

  .group-plan-tags {
    gap: 8px;
    margin-top: 20px;
  }

  .group-plan-tags span {
    padding: 8px 10px;
    font-size: 0.76rem;
  }

  .group-plan-price {
    padding: 22px;
    border-radius: 22px;
  }

  .group-plan-price a {
    width: 100%;
  }

  .vip-divider {
    padding: 12px 0 38px;
    text-align: left;
  }

  .vip-divider h2 {
    font-size: clamp(1.85rem, 9vw, 2.85rem);
  }

  .language-tabs {
    justify-content: flex-start;
    margin: 0 -14px 24px;
    padding: 0 14px 4px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .language-tabs button {
    flex: 0 0 auto;
    min-height: 42px;
    padding: 0 18px;
  }

  .individual-plans {
    padding-bottom: 64px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .pricing-card {
    min-height: auto;
    padding: 22px;
    border-radius: 22px;
  }

  .pricing-card h3 {
    margin-top: 20px;
  }

  .pricing-card strong {
    margin-top: 0;
  }

  .plan-help {
    align-items: stretch;
    flex-direction: column;
    margin-bottom: 72px;
    padding: 24px;
    border-radius: 24px;
  }

  .plan-help h2 {
    font-size: clamp(1.9rem, 9vw, 3rem);
  }

  .plan-help a {
    width: 100%;
  }

  .plans-faq {
    padding-bottom: 74px;
  }

  .plans-faq .section-heading {
    text-align: left;
  }

  .plans-faq .section-heading h2 {
    font-size: clamp(2.05rem, 10vw, 3.35rem);
  }

  .faq-list {
    margin-top: 30px;
  }

  .faq-list summary {
    min-height: 62px;
    padding: 0 16px;
    font-size: 0.94rem;
  }

  .faq-list p {
    padding: 0 16px 18px;
    font-size: 0.9rem;
  }

  .problem .section-heading h2 {
    font-size: clamp(2.05rem, 9vw, 3.2rem);
    line-height: 1.02;
  }

  .problem .section-heading > p:not(.label) {
    margin-top: 22px;
    font-size: 0.98rem;
    line-height: 1.7;
  }

  .problem .section-heading > strong {
    margin-top: 20px;
    font-size: 1.02rem;
  }

  .problem-grid {
    margin-top: 44px;
  }

  .info-card:nth-child(2),
  .info-card:nth-child(3) {
    margin-top: 0;
  }

  .problem-grid,
  .method-grid,
  .time-grid,
  .founders-board {
    grid-template-columns: 1fr;
  }

  .founders > * {
    width: min(100% - 28px, 1120px);
  }

  .founders-heading {
    text-align: left;
  }

  .founders-heading h2,
  .founders-heading > p:not(.label) {
    margin-left: 0;
    margin-right: 0;
  }

  .founders-heading h2 {
    font-size: clamp(2.05rem, 9vw, 3.05rem);
    line-height: 1.03;
  }

  .founders-heading > p:not(.label) {
    margin-top: 16px;
    font-size: 0.92rem;
    line-height: 1.58;
  }

  .founder-chips {
    justify-content: flex-start;
    gap: 6px;
    margin-top: 18px;
  }

  .founder-chips span {
    min-height: 28px;
    padding: 0 9px;
    font-size: 0.68rem;
  }

  .founders-photo-card {
    width: 100%;
    aspect-ratio: 16 / 9;
    height: auto;
    border-radius: 24px;
  }

  .founders-photo-card::before {
    inset: 16px;
    border-radius: 18px;
  }

  .founders-photo-card::after {
    left: 10%;
    right: 10%;
    bottom: 20px;
    height: 12px;
  }

  .founders-photo {
    width: 100%;
    bottom: 0;
  }

  .founder-mobile-notes {
    display: grid;
    gap: 10px;
  }

  .founder-mobile-notes p {
    padding: 15px 16px;
    border: 1px solid rgba(17, 17, 17, 0.08);
    border-radius: 18px;
    color: #5f594f;
    background: rgba(255, 253, 248, 0.9);
    font-size: 0.86rem;
    font-weight: 750;
    line-height: 1.52;
    box-shadow: 0 12px 28px rgba(17, 17, 17, 0.045);
  }

  .founder-mobile-notes strong {
    color: var(--orange);
    font-family: Sora, Manrope, sans-serif;
    font-weight: 900;
    letter-spacing: -0.02em;
  }

  .founder-name {
    font-size: clamp(2.35rem, 13vw, 3.7rem);
  }

  .jose-name {
    right: 14px;
    top: 20px;
  }

  .gustavo-name {
    left: 16px;
    bottom: 20px;
  }

  .founder-callout {
    display: none;
  }

  .founders-close {
    margin-top: 24px;
    padding: 20px;
    border-radius: 22px;
  }

  .founders-close a {
    width: 100%;
  }

  .testimonials {
    padding: 74px 0 84px;
  }

  .testimonials .section-heading h2 {
    font-size: clamp(2.05rem, 9vw, 3.05rem);
  }

  .testimonials .section-heading > p:not(.label) {
    max-width: 28rem;
    margin-top: 14px;
    font-size: 0.92rem;
    line-height: 1.58;
  }

  .whatsapp-board {
    display: grid;
    grid-auto-columns: minmax(260px, 82vw);
    grid-auto-flow: column;
    grid-template-columns: none;
    gap: 14px;
    margin-top: 30px;
    margin-left: -14px;
    margin-right: -14px;
    padding: 0 14px 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .chat-card {
    max-height: 430px;
    scroll-snap-align: start;
  }

  .chat-top {
    min-height: 56px;
    padding: 10px 12px;
  }

  .chat-avatar {
    flex-basis: 34px;
    width: 34px;
    height: 34px;
  }

  .chat-body {
    max-height: 374px;
    overflow-y: auto;
    padding: 12px;
  }

  .bubble {
    margin-left: 4px;
    padding: 13px 13px 28px;
  }

  .bubble p {
    font-size: 0.82rem;
    line-height: 1.5;
  }

  .schedule h2 {
    max-width: 100%;
    font-size: clamp(1.45rem, 6.3vw, 2.05rem);
    line-height: 1.08;
  }

  .schedule-content {
    max-width: none;
    margin-left: 14px;
    margin-right: 14px;
  }

  .schedule p:not(.label),
  .schedule-support {
    max-width: 100%;
    font-size: 0.78rem !important;
    line-height: 1.52;
  }

  .time-grid {
    gap: 10px;
    margin-top: 34px;
  }

  .time-grid article {
    min-height: auto;
    padding: 13px 12px 13px 16px;
    border-radius: 14px;
  }

  .time-grid span {
    min-height: 32px;
    font-size: 0.74rem;
  }

  .social-heading {
    text-align: left;
  }

  .social-motion {
    overflow: hidden;
  }

  .social-name {
    margin: -6px 0 14px;
    padding: 7px 12px;
    font-size: 0.78rem;
  }

  .social-heading h2,
  .social-heading > p:not(.label) {
    margin-left: 0;
    margin-right: 0;
  }

  .social-heading h2 {
    max-width: 11ch;
    font-size: clamp(1.9rem, 9vw, 2.85rem);
    line-height: 1.04;
  }

  .social-heading > p:not(.label) {
    display: -webkit-box;
    max-width: 34rem;
    margin-top: 16px;
    overflow: hidden;
    color: #6f685f;
    font-size: 0.92rem;
    line-height: 1.58;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
  }

  .reels-grid {
    display: grid;
    grid-auto-columns: minmax(188px, 58vw);
    grid-auto-flow: column;
    grid-template-columns: none;
    gap: 12px;
    margin-top: 28px;
    overflow-x: auto;
    padding: 0 14px 14px;
    margin-left: -14px;
    margin-right: -14px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .reel-card {
    max-height: 390px;
    scroll-snap-align: start;
    border-radius: 20px;
  }

  .reel-tag {
    left: 12px;
    top: 12px;
    padding: 6px 9px;
    font-size: 0.62rem;
  }

  .reel-play {
    width: 46px;
    height: 46px;
  }

  .reel-play::before {
    border-top-width: 8px;
    border-bottom-width: 8px;
    border-left-width: 12px;
  }

  .reel-card strong {
    left: 13px;
    right: 13px;
    bottom: 13px;
    font-size: 0.82rem;
    line-height: 1.22;
  }

  .social-cta {
    justify-items: stretch;
    margin-top: 22px;
    text-align: left;
  }

  .social-cta a {
    width: 100%;
    min-height: 46px;
    padding: 0 16px;
    font-size: 0.9rem;
    text-align: center;
  }

  .social-cta p {
    margin-top: 10px;
    font-size: 0.82rem;
    line-height: 1.5;
  }

  .life-shell {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .life-window {
    min-height: 320px;
    border-radius: 24px;
  }

  .life-window img {
    min-height: 320px;
  }

  .life-goals {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .life-goals article {
    min-height: auto;
    padding: 22px;
  }

  .life-impact {
    border-radius: 22px;
    text-align: left;
  }

  .chat-card.wide {
    grid-column: auto;
  }

  .info-card,
  .method-card {
    min-height: auto;
    padding: 26px;
  }

  .problem-icon {
    margin-bottom: 42px;
  }

  .method-card span {
    margin-bottom: 28px;
  }

  .method-card h3 {
    margin-top: 0;
  }

  .schedule-pill {
    display: flex;
    justify-content: center;
    max-width: 100%;
    padding: 10px 12px;
    border-radius: 18px;
    font-size: 0.76rem;
    text-align: center;
  }

  .schedule-astronaut {
    display: none;
  }

  .schedule::after {
    display: none;
  }

  .rocket-mark {
    right: -28px;
    top: 28%;
  }
}

@media (max-width: 420px) {
  .header-cta {
    padding: 0 10px;
    font-size: 0.74rem;
  }

  .hero-visual {
    min-height: 300px;
  }

  .hero-astronaut {
    --astronaut-x: 0px;
    width: min(400px, 106%);
  }

  .orbit-wrapper {
    width: min(330px, 84%);
    opacity: 0.46;
  }

  .lead-form button {
    font-size: 0.86rem;
  }

  .reels-grid {
    grid-auto-columns: minmax(176px, 66vw);
  }

  .social-heading > p:not(.label) {
    -webkit-line-clamp: 3;
  }

  .plans-hero-visual {
    min-height: 390px;
  }

  .plans-hero-visual img {
    bottom: -8%;
    width: min(360px, 96vw);
  }
}

.challenge-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 9% 2%, rgba(255, 75, 0, 0.12), transparent 27rem),
    radial-gradient(circle at 88% 14%, rgba(43, 114, 214, 0.08), transparent 24rem),
    var(--paper);
}

.challenge-page button,
.challenge-page a {
  -webkit-tap-highlight-color: transparent;
}

.challenge-page button:focus-visible,
.challenge-page a:focus-visible,
.challenge-page summary:focus-visible {
  outline: 3px solid rgba(255, 75, 0, 0.38);
  outline-offset: 4px;
}

.challenge-shell {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.challenge-header {
  background: rgba(255, 253, 248, 0.96);
  backdrop-filter: blur(18px);
}

.challenge-scroll-rail {
  position: fixed;
  right: clamp(14px, 2.3vw, 30px);
  top: 50%;
  z-index: 19;
  display: grid;
  place-items: center;
  width: 34px;
  height: min(420px, 52vh);
  padding: 18px 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(5, 5, 5, 0.22);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(14px);
  transform: translateY(-50%);
  pointer-events: none;
}

.challenge-scroll-rail::before {
  content: "";
  position: absolute;
  top: 18px;
  bottom: 18px;
  left: 50%;
  width: 1px;
  background: rgba(255, 255, 255, 0.16);
  transform: translateX(-50%);
}

.challenge-scroll-fill {
  position: absolute;
  top: 18px;
  left: 50%;
  width: 2px;
  height: calc((100% - 36px) * var(--challenge-scroll, 0));
  border-radius: 999px;
  background: linear-gradient(180deg, var(--orange), rgba(255, 255, 255, 0.74));
  box-shadow: 0 0 18px rgba(255, 75, 0, 0.44);
  transform: translateX(-50%);
}

.challenge-scroll-dots {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  width: 100%;
  height: 100%;
}

.challenge-scroll-dots span {
  display: block;
  width: 7px;
  height: 7px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.34);
  transform: scale(1);
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.challenge-scroll-dots span.is-active {
  border-color: rgba(255, 255, 255, 0.86);
  background: var(--orange);
  box-shadow: 0 0 0 6px rgba(255, 75, 0, 0.16), 0 0 20px rgba(255, 75, 0, 0.42);
  transform: scale(1.28);
}

.challenge-hero {
  position: relative;
  min-height: calc(100vh - 64px);
  padding: clamp(56px, 6vw, 92px) 0 112px;
  overflow: hidden;
  background:
    radial-gradient(circle at 22% 28%, rgba(255, 75, 0, 0.36), transparent 26rem),
    linear-gradient(90deg, rgba(5, 5, 5, 0.92) 0%, rgba(5, 5, 5, 0.78) 44%, rgba(5, 5, 5, 0.5) 68%, rgba(5, 5, 5, 0.28) 100%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.16), rgba(5, 5, 5, 0.72)),
    url("/images/lua.gif") center right / cover no-repeat,
    #050505;
  background-position:
    center,
    center,
    center,
    center calc(50% + var(--challenge-hero-bg-y, 0px)),
    center;
}

.challenge-hero::before {
  content: "";
  position: absolute;
  left: -120px;
  top: 10%;
  width: 720px;
  height: 720px;
  border: 1px solid rgba(255, 75, 0, 0.16);
  border-radius: 50%;
  pointer-events: none;
}

.challenge-hero::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  width: 100%;
  height: 74px;
  background: linear-gradient(174deg, transparent 0 48%, #050505 49% 100%);
  pointer-events: none;
}

.challenge-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.78fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  min-height: calc(100vh - 230px);
}

.challenge-hero-copy h1 {
  max-width: 840px;
  color: white;
  font-size: clamp(3.25rem, 7vw, 7rem);
  line-height: 0.88;
  letter-spacing: -0.045em;
  text-shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
}

.challenge-hero-copy {
  transform: translateY(var(--challenge-hero-copy-y, 0px));
  transition: transform 80ms linear;
}

.challenge-hero-copy > p:not(.label) {
  max-width: 720px;
  margin-top: 26px;
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(1.02rem, 1.55vw, 1.22rem);
  font-weight: 750;
  line-height: 1.72;
}

.challenge-hero-copy .label {
  color: rgba(255, 255, 255, 0.72);
}

.challenge-hero-tags,
.challenge-feature-list,
.challenge-context-grid,
.thanks-actions,
.challenge-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.challenge-hero-tags {
  margin-top: 28px;
}

.challenge-hero-tags span,
.challenge-feature-list span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: white;
  background: rgba(255, 255, 255, 0.1);
  font-size: 0.82rem;
  font-weight: 900;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(10px);
}

.challenge-hero-actions {
  margin-top: 34px;
}

.challenge-hero-note {
  max-width: 470px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.9rem;
  font-weight: 850;
}

.challenge-primary-cta,
.challenge-secondary-cta,
.challenge-plan-card button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 900;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.challenge-primary-cta,
.challenge-plan-card button {
  border: 0;
  color: white;
  background: var(--orange);
  box-shadow: 0 18px 36px rgba(255, 75, 0, 0.22);
}

.challenge-primary-cta:hover,
.challenge-plan-card button:hover {
  transform: translateY(-2px);
  background: #e64600;
  box-shadow: 0 24px 46px rgba(255, 75, 0, 0.28);
}

.challenge-primary-cta:active,
.challenge-plan-card button:active {
  transform: translateY(0);
}

.challenge-secondary-cta {
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.challenge-secondary-cta:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 75, 0, 0.56);
  color: white;
  background: rgba(255, 75, 0, 0.18);
}

.challenge-video-placeholder {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  min-height: min(62vw, 560px);
  padding: 34px;
  overflow: hidden;
  border: 1px solid rgba(17, 17, 17, 0.09);
  border-radius: 34px;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.94), rgba(248, 245, 238, 0.9)),
    linear-gradient(rgba(17, 17, 17, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 17, 17, 0.03) 1px, transparent 1px);
  background-size: auto, 28px 28px, 28px 28px;
  box-shadow: 0 30px 80px rgba(17, 17, 17, 0.09);
  cursor: pointer;
  transform: rotate(1.4deg);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.challenge-video-section {
  position: relative;
  padding: 108px 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 20%, rgba(255, 75, 0, 0.1), transparent 20rem),
    #f3f1ec;
}

.challenge-page main > section {
  transition: filter 260ms ease;
}

.challenge-page main > section.is-current .section-heading h2,
.challenge-page main > section.is-current .challenge-video-grid h2,
.challenge-page main > section.is-current .challenge-routine-heading h2,
.challenge-page main > section.is-current .challenge-support-grid h2,
.challenge-page main > section.is-current .challenge-founders-grid h2 {
  text-shadow: 0 14px 34px rgba(255, 75, 0, 0.08);
}

.challenge-video-section::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 70px;
  background: linear-gradient(174deg, #050505 0 50%, transparent 51% 100%);
}

.challenge-video-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(360px, 0.72fr);
  gap: clamp(30px, 5vw, 72px);
  align-items: center;
}

.challenge-video-grid h2 {
  max-width: 620px;
  font-size: clamp(2.25rem, 4.3vw, 4.5rem);
  line-height: 1;
}

.challenge-video-grid p:not(.label) {
  max-width: 560px;
  margin-top: 22px;
  color: #676158;
  font-size: 1.02rem;
  font-weight: 760;
}

.challenge-video-placeholder:hover {
  transform: rotate(0deg) translateY(-4px);
  box-shadow: 0 36px 92px rgba(17, 17, 17, 0.13);
}

.challenge-video-placeholder::before {
  content: "";
  position: absolute;
  inset: 24px;
  border: 1px dashed rgba(255, 75, 0, 0.22);
  border-radius: 26px;
}

.challenge-video-placeholder::after {
  content: "";
  position: absolute;
  right: -80px;
  top: -80px;
  width: 230px;
  height: 230px;
  border: 1px solid rgba(255, 75, 0, 0.14);
  border-radius: 50%;
}

.challenge-video-placeholder strong,
.challenge-video-placeholder small,
.challenge-play {
  position: relative;
  z-index: 1;
}

.challenge-video-placeholder strong {
  margin-top: 22px;
  font-family: Sora, Manrope, sans-serif;
  font-size: clamp(1.4rem, 2.5vw, 2.15rem);
  letter-spacing: -0.045em;
}

.challenge-video-placeholder small {
  max-width: 300px;
  margin-top: 10px;
  color: #6d675f;
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.5;
}

.challenge-play {
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 20px 44px rgba(255, 75, 0, 0.28);
}

.challenge-play::before {
  content: "";
  width: 0;
  height: 0;
  margin-left: 5px;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  border-left: 19px solid white;
}

.challenge-inline-status,
.challenge-checkout-status {
  min-height: 24px;
  margin-top: 14px;
  color: #6d675f;
  font-size: 0.9rem;
  font-weight: 800;
  text-align: center;
}

.challenge-launch-strip {
  position: relative;
  z-index: 2;
  overflow: hidden;
  padding: 18px 0 20px;
  color: white;
  background: #050505;
}

.challenge-launch-strip::before,
.challenge-launch-strip::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: 90px;
  pointer-events: none;
}

.challenge-launch-strip::before {
  left: 0;
  background: linear-gradient(90deg, #050505, transparent);
}

.challenge-launch-strip::after {
  right: 0;
  background: linear-gradient(270deg, #050505, transparent);
}

.challenge-launch-track {
  display: flex;
  width: max-content;
  gap: 26px;
  padding-left: 26px;
  animation: challengeMarquee 28s linear infinite;
}

.challenge-launch-track span {
  display: inline-flex;
  align-items: center;
  gap: 26px;
  color: rgba(255, 255, 255, 0.78);
  font-family: Sora, Manrope, sans-serif;
  font-size: clamp(1.15rem, 2vw, 1.75rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  white-space: nowrap;
}

.challenge-launch-track span::after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 18px rgba(255, 75, 0, 0.6);
}

.challenge-problem,
.challenge-steps,
.challenge-journey,
.challenge-faq {
  padding: 106px 0;
}

.challenge-problem {
  position: relative;
  background: #f3f1ec;
  overflow: hidden;
}

.challenge-problem::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 82px;
  width: min(860px, 86vw);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 75, 0, 0.42), transparent);
  transform: translateX(-50%);
}

.challenge-problem::after {
  content: "";
  position: absolute;
  right: -220px;
  bottom: -280px;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(255, 75, 0, 0.08);
  border-radius: 50%;
}

.challenge-problem > * {
  position: relative;
  z-index: 1;
}

.challenge-fall-callout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(260px, 0.48fr);
  gap: clamp(20px, 4vw, 54px);
  align-items: center;
  margin: 52px auto 0;
  padding: clamp(24px, 4vw, 42px);
  overflow: hidden;
  border: 1px solid rgba(255, 75, 0, 0.18);
  border-radius: 32px;
  color: white;
  background:
    radial-gradient(circle at 86% 22%, rgba(255, 75, 0, 0.28), transparent 16rem),
    radial-gradient(circle at 12% 80%, rgba(255, 255, 255, 0.08), transparent 15rem),
    #070707;
  box-shadow: 0 30px 90px rgba(17, 17, 17, 0.16);
}

.challenge-fall-callout::before {
  content: "";
  position: absolute;
  inset: 20px;
  border: 1px dashed rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  pointer-events: none;
}

.challenge-fall-callout::after {
  content: "";
  position: absolute;
  right: 12%;
  top: -48px;
  width: 1px;
  height: 150%;
  background: linear-gradient(180deg, transparent, rgba(255, 75, 0, 0.5), transparent);
  transform: rotate(12deg);
  pointer-events: none;
}

.challenge-fall-copy,
.challenge-fall-media {
  position: relative;
  z-index: 1;
}

.challenge-fall-copy span {
  display: inline-flex;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.challenge-fall-copy strong {
  display: block;
  max-width: 700px;
  color: white;
  font-family: Sora, Manrope, sans-serif;
  font-size: clamp(2rem, 4.4vw, 4.65rem);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.challenge-fall-copy p {
  max-width: 590px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1rem;
  font-weight: 760;
}

.challenge-fall-media {
  display: grid;
  place-items: center;
  justify-self: stretch;
  min-height: 430px;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 30px;
  background: #050505;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.06),
    0 28px 70px rgba(0, 0, 0, 0.2);
}

.challenge-fall-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: inherit;
  box-shadow: inset 0 0 0 10px rgba(5, 5, 5, 0.1);
  pointer-events: none;
}

.challenge-fall-media img {
  justify-self: center;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  object-position: center;
  filter: none;
  transform: none;
}

.challenge-problem-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-top: 44px;
}

.challenge-mini-card {
  min-height: 320px;
  padding: 24px;
  transform: translateY(0) rotate(-0.6deg);
}

.challenge-mini-card:nth-child(2n) {
  transform: translateY(18px) rotate(0.7deg);
}

.challenge-mini-card:nth-child(3n) {
  transform: translateY(6px) rotate(0.25deg);
}

.challenge-mini-card .problem-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 36px;
  font-family: Sora, Manrope, sans-serif;
  font-size: 0.82rem;
  font-weight: 900;
}

.challenge-mini-card h3 {
  font-size: 1.04rem;
}

.challenge-mini-card p {
  font-size: 0.9rem;
}

.challenge-solution {
  position: relative;
  padding: 132px 0 118px;
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 92% 18%, rgba(255, 255, 255, 0.16), transparent 20rem),
    radial-gradient(circle at 12% 74%, rgba(17, 17, 17, 0.18), transparent 24rem),
    var(--orange);
}

.challenge-solution::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(176deg, #f3f1ec 0 8%, transparent 8.2% 100%),
    linear-gradient(-7deg, transparent 0 84%, #050505 84.2% 100%);
  opacity: 0.96;
  pointer-events: none;
}

.challenge-solution > * {
  position: relative;
  z-index: 1;
}

.challenge-solution h2,
.challenge-final-cta h2 {
  color: white;
  font-size: clamp(2.35rem, 4.8vw, 4.85rem);
  line-height: 1;
}

.challenge-solution p {
  max-width: 660px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
  font-weight: 750;
}

.challenge-solution .label,
.challenge-final-cta .label {
  color: rgba(255, 255, 255, 0.72);
}

.challenge-solution-grid,
.challenge-routine-heading,
.challenge-support-grid,
.challenge-founders-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.72fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.challenge-feature-list span {
  border-color: rgba(255, 255, 255, 0.22);
  color: white;
  background: rgba(17, 17, 17, 0.16);
  box-shadow: none;
}

.challenge-mission-stack {
  display: grid;
  gap: 14px;
}

.challenge-mission-stack article {
  position: relative;
  min-height: 118px;
  padding: 18px 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 22px;
  background: rgba(17, 17, 17, 0.18);
  box-shadow: 0 22px 56px rgba(17, 17, 17, 0.14);
  backdrop-filter: blur(8px);
}

.challenge-mission-stack article:nth-child(even) {
  transform: translateX(26px);
}

.challenge-mission-stack article::after {
  content: "";
  position: absolute;
  right: -26px;
  bottom: -30px;
  width: 92px;
  height: 92px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
}

.challenge-mission-stack small,
.challenge-mission-stack strong,
.challenge-mission-stack span {
  position: relative;
  z-index: 1;
  display: block;
}

.challenge-mission-stack small {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.challenge-mission-stack strong {
  margin-top: 14px;
  color: white;
  font-family: Sora, Manrope, sans-serif;
  font-size: 1.05rem;
  letter-spacing: -0.03em;
}

.challenge-mission-stack span {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.86rem;
  font-weight: 850;
}

.challenge-method-grid {
  margin-top: 54px;
}

.challenge-steps {
  position: relative;
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 12% 20%, rgba(255, 75, 0, 0.22), transparent 22rem),
    radial-gradient(circle at 86% 72%, rgba(255, 255, 255, 0.06), transparent 18rem),
    #050505;
}

.challenge-steps::before {
  content: "";
  position: absolute;
  left: -180px;
  top: -240px;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(255, 75, 0, 0.08);
  border-radius: 50%;
}

.challenge-steps > * {
  position: relative;
  z-index: 1;
}

.challenge-steps .section-heading h2 {
  color: white;
}

.challenge-steps .section-heading > p:not(.label) {
  color: rgba(255, 255, 255, 0.68);
}

.challenge-steps .method-card {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 253, 248, 0.96);
}

.challenge-routine {
  position: relative;
  padding: 132px 0 112px;
  background:
    linear-gradient(178deg, #050505 0 7%, rgba(255, 253, 248, 0.94) 7.2% 100%),
    var(--paper);
  overflow: hidden;
}

.challenge-routine-heading h2,
.challenge-support-grid h2,
.challenge-founders-grid h2 {
  font-size: clamp(2.25rem, 4.4vw, 4.5rem);
  line-height: 1;
}

.challenge-routine-heading > p,
.challenge-support-grid > div > p,
.challenge-founders-grid > div > p {
  color: #68625a;
  font-size: 1.02rem;
  font-weight: 750;
}

.challenge-context-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 54px;
}

.challenge-context-card {
  position: relative;
  min-height: 350px;
  padding: 14px 14px 22px;
  overflow: hidden;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 26px;
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.94), rgba(248, 245, 238, 0.9)),
    linear-gradient(rgba(17, 17, 17, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 17, 17, 0.026) 1px, transparent 1px);
  background-size: auto, 26px 26px, 26px 26px;
  box-shadow: var(--shadow);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.challenge-context-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 75, 0, 0.22);
  box-shadow: 0 26px 68px rgba(17, 17, 17, 0.085);
}

.challenge-context-card::before {
  content: "";
  position: absolute;
  right: -36px;
  top: -36px;
  width: 112px;
  height: 112px;
  border: 1px solid rgba(255, 75, 0, 0.12);
  border-radius: 50%;
}

.challenge-card-media {
  position: relative;
  z-index: 1;
  margin: 0 0 18px;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 18px;
  background: #e8e2d8;
}

.challenge-card-media img,
.challenge-stairs-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.challenge-card-media figcaption,
.challenge-stairs-media figcaption {
  position: absolute;
  z-index: 2;
  right: 6px;
  bottom: 6px;
  max-width: calc(100% - 20px);
  padding: 2px 4px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.58);
  background: rgba(5, 5, 5, 0.28);
  font-size: 0.46rem;
  font-weight: 700;
  line-height: 1.1;
  white-space: nowrap;
}

.challenge-context-card span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  padding: 8px 11px;
  border-radius: 999px;
  color: var(--orange);
  background: #fff1e9;
  font-size: 0.78rem;
  font-weight: 900;
}

.challenge-context-card p {
  position: relative;
  z-index: 1;
  max-width: 270px;
  margin-top: 18px;
  color: #625d55;
  font-weight: 800;
}

.challenge-routine-callout {
  display: block;
  max-width: 850px;
  margin: 44px auto 0;
  padding: 16px 20px;
  border: 1px solid rgba(255, 75, 0, 0.16);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.78);
  font-family: Sora, Manrope, sans-serif;
  font-size: clamp(1rem, 1.5vw, 1.16rem);
  line-height: 1.35;
  text-align: center;
  letter-spacing: -0.028em;
}

.challenge-journey {
  position: relative;
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 75, 0, 0.12), transparent 28rem),
    linear-gradient(180deg, rgba(244, 242, 238, 0.98), rgba(232, 229, 222, 0.94));
  overflow: hidden;
}

.challenge-journey::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 72px;
  width: min(920px, 88vw);
  height: 540px;
  border: 1px solid rgba(17, 17, 17, 0.055);
  border-radius: 50%;
  transform: translateX(-50%) rotate(-7deg);
}

.challenge-journey > * {
  position: relative;
  z-index: 1;
}

.challenge-journey-layout {
  margin-top: 58px;
}

.challenge-stairs-visual {
  position: sticky;
  top: 96px;
  align-self: start;
  min-height: 560px;
  padding: 18px;
  overflow: hidden;
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 34px;
  background:
    radial-gradient(circle at 50% 14%, rgba(255, 75, 0, 0.12), transparent 15rem),
    linear-gradient(180deg, rgba(255, 253, 248, 0.98), rgba(244, 241, 233, 0.94));
  box-shadow: 0 30px 86px rgba(17, 17, 17, 0.085);
}

.challenge-stairs-visual::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255, 75, 0, 0.12);
  border-radius: 26px;
  pointer-events: none;
}

.challenge-stairs-visual::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 20px;
  width: 1px;
  height: 74%;
  background: linear-gradient(180deg, transparent, rgba(255, 75, 0, 0.38), transparent);
  transform: rotate(12deg);
}

.challenge-stairs-media {
  position: relative;
  z-index: 1;
  min-height: 390px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 75, 0, 0.18);
  border-radius: 26px;
  background:
    radial-gradient(circle at 50% 30%, rgba(255, 75, 0, 0.2), transparent 12rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 247, 239, 0.62));
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.7),
    0 20px 48px rgba(17, 17, 17, 0.07);
}

.challenge-stairs-media::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  border: 1px dashed rgba(255, 75, 0, 0.18);
  border-radius: inherit;
  pointer-events: none;
}

.challenge-stairs-media img {
  filter: saturate(1.04) contrast(1.02);
}

.challenge-stairs-visual p {
  position: relative;
  z-index: 1;
  margin-top: 18px;
  padding: 0 8px 8px;
  color: #4b453d;
  font-family: Sora, Manrope, sans-serif;
  font-size: clamp(1rem, 1.45vw, 1.18rem);
  font-weight: 800;
  line-height: 1.36;
  letter-spacing: -0.025em;
}

.challenge-timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 0;
}

.challenge-timeline article {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 360px;
  padding: 26px;
  overflow: hidden;
  border: 1px solid rgba(17, 17, 17, 0.09);
  border-radius: 30px;
  background:
    radial-gradient(circle at 78% 12%, rgba(255, 75, 0, 0.16), transparent 9rem),
    linear-gradient(180deg, rgba(255, 253, 248, 0.98), rgba(245, 241, 232, 0.94));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    0 28px 78px rgba(17, 17, 17, 0.075);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.challenge-timeline article:nth-child(even) {
  margin-top: 0;
}

.challenge-timeline article:hover {
  transform: translateY(-7px);
  border-color: rgba(255, 75, 0, 0.24);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 34px 92px rgba(17, 17, 17, 0.105);
}

.challenge-timeline article::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255, 75, 0, 0.1);
  border-radius: 22px;
  pointer-events: none;
}

.challenge-timeline article::after {
  content: "";
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 24px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange), rgba(255, 75, 0, 0.08));
}

.challenge-timeline span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  width: fit-content;
  padding: 9px 12px;
  border-radius: 999px;
  color: #fffdf8;
  background: #111;
  box-shadow: 0 12px 26px rgba(17, 17, 17, 0.14);
  font-size: 0.76rem;
  font-weight: 900;
}

.challenge-timeline h3 {
  position: relative;
  z-index: 1;
  margin-top: auto;
  color: #15130f;
  font-size: clamp(1.18rem, 1.45vw, 1.42rem);
  line-height: 1.12;
  letter-spacing: -0.026em;
}

.challenge-timeline p {
  position: relative;
  z-index: 1;
  margin-top: 16px;
  padding-bottom: 28px;
  color: #5f574e;
  font-size: 0.93rem;
  font-weight: 760;
  line-height: 1.55;
}

.challenge-pricing {
  position: relative;
  padding: 126px 0 108px;
  overflow: hidden;
  background:
    linear-gradient(176deg, rgba(232, 229, 222, 0.92) 0 7%, #f3f1ec 7.2% 100%);
}

.challenge-pricing::before {
  content: "";
  position: absolute;
  right: 5%;
  top: 92px;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(255, 75, 0, 0.12);
  border-radius: 50%;
  pointer-events: none;
}

.challenge-pricing > * {
  position: relative;
  z-index: 1;
}

.challenge-plan-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
  margin-top: 54px;
}

.challenge-plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 760px;
  padding: clamp(24px, 3.4vw, 34px);
  overflow: hidden;
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.98), rgba(246, 242, 235, 0.96)),
    #fffdf8;
  box-shadow: 0 28px 82px rgba(17, 17, 17, 0.08);
}

.challenge-plan-card::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 75, 0, 0.12);
  border-radius: 26px;
  pointer-events: none;
}

.challenge-plan-card::after {
  content: "";
  position: absolute;
  right: -92px;
  top: -92px;
  width: 240px;
  height: 240px;
  border: 1px solid rgba(255, 75, 0, 0.16);
  border-radius: 50%;
  pointer-events: none;
}

.challenge-plan-card.is-featured {
  border-color: rgba(255, 75, 0, 0.46);
  color: white;
  background:
    radial-gradient(circle at 92% 4%, rgba(255, 75, 0, 0.42), transparent 17rem),
    radial-gradient(circle at 8% 92%, rgba(255, 255, 255, 0.08), transparent 16rem),
    #080808;
  box-shadow: 0 38px 110px rgba(17, 17, 17, 0.2);
}

.challenge-featured-badge {
  position: absolute;
  right: 24px;
  top: 24px;
  z-index: 2;
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: #111111;
  background: #fffdf8;
  font-size: 0.72rem;
  font-weight: 900;
}

.challenge-plan-top,
.challenge-price-panel,
.challenge-benefit-list,
.challenge-plan-card button {
  position: relative;
  z-index: 1;
}

.challenge-plan-card h3 {
  max-width: 520px;
  margin-top: 18px;
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  line-height: 1.18;
  letter-spacing: -0.018em;
}

.challenge-plan-top p {
  max-width: 520px;
  margin-top: 16px;
  color: #6b645b;
  font-size: 0.94rem;
  font-weight: 760;
  line-height: 1.62;
}

.challenge-plan-card.is-featured h3,
.challenge-plan-card.is-featured .challenge-price strong {
  color: white;
}

.challenge-plan-card.is-featured .challenge-plan-top p {
  color: rgba(255, 255, 255, 0.68);
}

.challenge-price-panel {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  align-items: start;
  margin-top: 30px;
  padding: 22px 22px 20px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 26px;
  background: rgba(255, 253, 248, 0.78);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.58);
}

.challenge-plan-card.is-featured .challenge-price-panel {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.challenge-price {
  margin-top: 0;
}

.challenge-price > span {
  display: block;
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.challenge-price strong {
  display: block;
  margin-top: 10px;
  font-family: Sora, Manrope, sans-serif;
  font-size: clamp(2.85rem, 4.5vw, 4.45rem);
  line-height: 0.94;
  letter-spacing: -0.04em;
}

.challenge-price small {
  display: block;
  margin-top: 10px;
  color: #716b62;
  font-weight: 900;
}

.challenge-price-panel > p {
  color: #6d675f;
  font-size: 0.88rem;
  font-weight: 850;
  line-height: 1.5;
}

.challenge-plan-card.is-featured .challenge-price small,
.challenge-plan-card.is-featured .challenge-price-panel > p {
  color: rgba(255, 255, 255, 0.64);
}

.challenge-benefit-list {
  display: grid;
  gap: 10px;
  margin: 28px 0 32px;
  padding: 0;
  list-style: none;
}

.challenge-benefit-list li {
  position: relative;
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 4px 12px;
  align-items: start;
  min-height: 66px;
  padding: 14px 15px;
  border: 1px solid rgba(17, 17, 17, 0.07);
  border-radius: 16px;
  color: #4b453d;
  background: rgba(255, 253, 248, 0.66);
}

.challenge-benefit-list li::before {
  content: "";
  align-self: center;
  width: 8px;
  height: 8px;
  margin-top: 7px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 5px rgba(255, 75, 0, 0.1);
}

.challenge-benefit-list strong {
  color: #211d19;
  font-family: Sora, Manrope, sans-serif;
  font-size: 0.94rem;
  line-height: 1.28;
  letter-spacing: 0;
}

.challenge-benefit-list span {
  grid-column: 2;
  color: #716b62;
  font-size: 0.88rem;
  font-weight: 760;
  line-height: 1.5;
}

.challenge-benefit-list .is-pending {
  border-style: dashed;
  background: rgba(255, 253, 248, 0.4);
}

.challenge-benefit-list .is-pending::before {
  background: rgba(17, 17, 17, 0.22);
  box-shadow: 0 0 0 5px rgba(17, 17, 17, 0.055);
}

.challenge-plan-card.is-featured .challenge-benefit-list li {
  border-color: rgba(255, 255, 255, 0.12);
  color: white;
  background: rgba(255, 255, 255, 0.065);
}

.challenge-plan-card.is-featured .challenge-benefit-list strong {
  color: white;
}

.challenge-plan-card.is-featured .challenge-benefit-list span {
  color: rgba(255, 255, 255, 0.64);
}

.challenge-plan-card button {
  width: 100%;
  margin-top: auto;
  font: inherit;
  cursor: pointer;
  min-height: 56px;
  font-size: 0.96rem;
}

.challenge-plan-card.is-featured button {
  color: #111111;
  background: white;
  box-shadow: 0 22px 46px rgba(255, 255, 255, 0.12);
}

.challenge-plan-card.is-featured button:hover {
  color: white;
  background: var(--orange);
}

.challenge-support-demo,
.challenge-founders {
  padding: 112px 0;
}

.challenge-support-demo {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, #f3f1ec, #fffdf8);
}

.challenge-support-demo::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 72px;
  background: linear-gradient(174deg, #f3f1ec 0 50%, transparent 51% 100%);
}

.challenge-support-demo > * {
  position: relative;
  z-index: 1;
}

.challenge-chat-example {
  max-width: 520px;
  justify-self: end;
}

.challenge-chat-example .chat-body {
  display: grid;
  gap: 14px;
}

.challenge-teacher-bubble {
  margin-left: 34px;
  background: #fffdf8;
}

.challenge-teacher-bubble::before {
  background: linear-gradient(135deg, #fffdf8 0 50%, transparent 50% 100%);
}

.challenge-founders {
  background:
    radial-gradient(circle at 14% 20%, rgba(255, 75, 0, 0.08), transparent 20rem),
    var(--paper);
}

.challenge-founders-grid .challenge-secondary-cta {
  margin-top: 26px;
}

.challenge-founder-photo {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.98), rgba(248, 245, 238, 0.94)),
    linear-gradient(rgba(17, 17, 17, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 17, 17, 0.03) 1px, transparent 1px);
  background-size: auto, 30px 30px, 30px 30px;
  box-shadow: 0 30px 80px rgba(17, 17, 17, 0.08);
}

.challenge-founder-photo img {
  position: absolute;
  left: 50%;
  bottom: 0;
  display: block;
  width: min(640px, 120%);
  max-width: none;
  height: auto;
  transform: translateX(-50%);
  filter: drop-shadow(0 26px 34px rgba(17, 17, 17, 0.18));
}

.challenge-final-cta {
  padding: 112px 0;
  color: white;
  background:
    radial-gradient(circle at 86% 18%, rgba(255, 75, 0, 0.28), transparent 18rem),
    #050505;
  text-align: center;
}

.challenge-final-cta h2 {
  max-width: 920px;
  margin: 0 auto;
}

.challenge-final-cta p:not(.label) {
  max-width: 620px;
  margin: 22px auto 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.08rem;
  font-weight: 800;
}

.challenge-final-cta .challenge-primary-cta {
  margin-top: 32px;
}

.thanks-page {
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 75, 0, 0.12), transparent 26rem),
    var(--paper);
}

.thanks-hero {
  min-height: calc(100vh - 64px);
  display: grid;
  align-items: center;
  padding: 88px 0;
}

.thanks-card {
  position: relative;
  overflow: hidden;
  padding: clamp(30px, 6vw, 64px);
  border: 1px solid rgba(255, 75, 0, 0.16);
  border-radius: 34px;
  background: rgba(255, 253, 248, 0.94);
  box-shadow: 0 30px 90px rgba(17, 17, 17, 0.08);
}

.thanks-card::before {
  content: "";
  position: absolute;
  right: -120px;
  top: -120px;
  width: 340px;
  height: 340px;
  border: 1px solid rgba(255, 75, 0, 0.12);
  border-radius: 50%;
}

.thanks-card h1 {
  max-width: 820px;
  font-size: clamp(2.7rem, 5.8vw, 5.8rem);
  line-height: 0.92;
}

.thanks-card > p:not(.label) {
  max-width: 700px;
  margin-top: 24px;
  color: #625d55;
  font-size: 1.05rem;
  font-weight: 750;
}

.thanks-next-steps {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 42px;
}

.thanks-next-steps article {
  padding: 24px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 24px;
  background: #fffdf8;
  box-shadow: var(--shadow);
}

.thanks-next-steps span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  color: var(--orange);
  background: #fff1e9;
  font-family: Sora, Manrope, sans-serif;
  font-weight: 900;
}

.thanks-next-steps h2 {
  margin-top: 42px;
  font-size: 1.2rem;
  line-height: 1.18;
}

.thanks-next-steps p {
  margin-top: 12px;
  font-size: 0.92rem;
}

.thanks-next-steps a {
  color: var(--orange);
  font-weight: 900;
}

.thanks-actions {
  position: relative;
  z-index: 1;
  margin-top: 36px;
}

.challenge-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.challenge-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.challenge-mission-stack article.challenge-reveal:nth-child(even) {
  transform: translate(26px, 22px);
}

.challenge-mission-stack article.challenge-reveal.is-visible:nth-child(even) {
  transform: translateX(26px);
}

@keyframes challengeMarquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .challenge-primary-cta,
  .challenge-secondary-cta,
  .challenge-plan-card button,
  .challenge-page * {
    scroll-behavior: auto;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .challenge-launch-track {
    animation: none;
  }

  .challenge-scroll-rail {
    display: none;
  }

  .challenge-reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1180px) {
  .challenge-problem-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .challenge-journey-layout {
    grid-template-columns: 1fr;
  }

  .challenge-stairs-visual {
    position: relative;
    top: auto;
    display: grid;
    grid-template-columns: minmax(200px, 0.38fr) minmax(0, 1fr);
    gap: 24px;
    align-items: center;
    min-height: auto;
  }

  .challenge-stairs-media {
    min-height: 300px;
  }

  .challenge-stairs-visual p {
    margin-top: 0;
  }

  .challenge-timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .challenge-scroll-rail {
    display: none;
  }

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

  .challenge-hero-grid,
  .challenge-video-grid,
  .challenge-solution-grid,
  .challenge-routine-heading,
  .challenge-support-grid,
  .challenge-founders-grid {
    grid-template-columns: 1fr;
  }

  .challenge-video-placeholder {
    min-height: 430px;
  }

  .challenge-problem-grid,
  .challenge-context-grid,
  .thanks-next-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .challenge-plan-grid {
    grid-template-columns: 1fr;
  }

  .challenge-plan-card {
    min-height: auto;
  }

  .challenge-chat-example {
    justify-self: stretch;
    max-width: none;
  }

  .challenge-founder-photo {
    min-height: 360px;
  }
}

@media (max-width: 680px) {
  .challenge-shell {
    width: min(100% - 28px, 1160px);
  }

  .challenge-hero,
  .challenge-problem,
  .challenge-solution,
  .challenge-steps,
  .challenge-routine,
  .challenge-journey,
  .challenge-pricing,
  .challenge-video-section,
  .challenge-support-demo,
  .challenge-founders,
  .challenge-faq,
  .challenge-final-cta,
  .thanks-hero {
    padding: 74px 0;
  }

  .challenge-hero::before,
  .challenge-hero::after {
    display: none;
  }

  .challenge-hero-copy h1 {
    font-size: clamp(2.45rem, 12vw, 4.1rem);
    line-height: 0.96;
  }

  .challenge-hero-copy > p:not(.label) {
    margin-top: 18px;
    font-size: 0.96rem;
    line-height: 1.62;
  }

  .challenge-hero {
    background:
      radial-gradient(circle at 24% 20%, rgba(255, 75, 0, 0.34), transparent 18rem),
      linear-gradient(180deg, rgba(5, 5, 5, 0.9) 0%, rgba(5, 5, 5, 0.78) 46%, rgba(5, 5, 5, 0.62) 100%),
      url("/images/lua.gif") center top / cover no-repeat,
      #050505;
  }

  .challenge-hero-actions,
  .thanks-actions {
    flex-direction: column;
  }

  .challenge-primary-cta,
  .challenge-secondary-cta,
  .challenge-plan-card button {
    width: 100%;
    min-height: 48px;
    padding: 0 16px;
    text-align: center;
    font-size: 0.9rem;
  }

  .challenge-video-placeholder {
    min-height: 330px;
    padding: 24px;
    border-radius: 24px;
  }

  .challenge-video-placeholder::before {
    inset: 16px;
    border-radius: 20px;
  }

  .challenge-play {
    width: 62px;
    height: 62px;
  }

  .challenge-launch-strip {
    padding: 14px 0 16px;
  }

  .challenge-launch-track {
    gap: 20px;
    animation-duration: 34s;
  }

  .challenge-mission-stack article,
  .challenge-mission-stack article:nth-child(even),
  .challenge-mini-card,
  .challenge-mini-card:nth-child(2n),
  .challenge-mini-card:nth-child(3n),
  .challenge-timeline article:nth-child(even) {
    margin-top: 0;
    transform: none;
  }

  .challenge-problem-grid,
  .challenge-context-grid,
  .challenge-timeline,
  .thanks-next-steps {
    grid-template-columns: 1fr;
  }

  .challenge-journey-layout {
    margin-top: 38px;
  }

  .challenge-stairs-visual {
    grid-template-columns: 1fr;
    padding: 22px;
    border-radius: 24px;
  }

  .challenge-stairs-visual::before {
    inset: 14px;
    border-radius: 18px;
  }

  .challenge-stairs-media {
    min-height: 300px;
    border-radius: 20px;
  }

  .challenge-stairs-media::before {
    inset: 0;
    border-radius: 14px;
  }

  .challenge-stairs-media img {
    width: 100%;
    height: 100%;
  }

  .challenge-stairs-visual p {
    margin-top: 16px;
  }

  .challenge-fall-callout {
    grid-template-columns: 1fr;
    margin-top: 38px;
    padding: 24px;
    border-radius: 24px;
  }

  .challenge-fall-callout::before {
    inset: 14px;
    border-radius: 18px;
  }

  .challenge-fall-copy strong {
    font-size: clamp(2rem, 10vw, 3.2rem);
    line-height: 1.02;
  }

  .challenge-fall-media {
    min-height: 300px;
    border-radius: 22px;
  }

  .challenge-fall-media::before {
    inset: 0;
    border-radius: inherit;
  }

  .challenge-fall-media img {
    width: 100%;
    min-height: 300px;
    margin-top: 0;
    object-fit: cover;
  }

  .challenge-mini-card,
  .challenge-context-card,
  .challenge-timeline article {
    min-height: auto;
    border-radius: 22px;
  }

  .challenge-solution h2,
  .challenge-routine-heading h2,
  .challenge-support-grid h2,
  .challenge-founders-grid h2,
  .challenge-final-cta h2 {
    font-size: clamp(2.05rem, 10vw, 3.4rem);
    line-height: 1.02;
  }

  .challenge-context-card {
    min-height: 220px;
  }

  .challenge-routine-callout {
    border-radius: 22px;
    text-align: left;
  }

  .challenge-plan-card {
    padding: 24px;
    border-radius: 24px;
  }

  .challenge-plan-card::before {
    inset: 12px;
    border-radius: 20px;
  }

  .challenge-featured-badge {
    position: static;
    width: fit-content;
    margin-bottom: 14px;
  }

  .challenge-plan-card h3 {
    font-size: clamp(1.35rem, 7vw, 2rem);
  }

  .challenge-price strong {
    font-size: clamp(2.7rem, 13vw, 4.2rem);
  }

  .challenge-price-panel {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 18px;
    border-radius: 20px;
  }

  .challenge-benefit-list li {
    grid-template-columns: 14px 1fr;
    gap: 10px 12px;
  }

  .challenge-benefit-list span {
    grid-column: 2;
  }

  .challenge-founder-photo {
    min-height: 320px;
    border-radius: 24px;
  }

  .challenge-founder-photo img {
    width: min(520px, 128%);
  }

  .thanks-card {
    border-radius: 24px;
  }

  .thanks-card h1 {
    font-size: clamp(2.35rem, 11vw, 3.8rem);
    line-height: 1;
  }
}

@media (max-width: 420px) {
  .challenge-hero-tags span,
  .challenge-feature-list span {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .challenge-video-placeholder strong {
    font-size: 1.28rem;
  }

  .challenge-context-card p {
    margin-top: 46px;
  }
}
