/* --- KEY HIGHLIGHTS MODERN STYLE --- */
.key-highlights-list {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: stretch;
  gap: 2rem;
  margin: 2.5rem 0 2rem 0;
  padding: 0;
  list-style: none;
}

.key-highlight-item {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.018)),
    linear-gradient(145deg, rgba(125,211,252,0.10), transparent 44%),
    rgba(7, 18, 31, 0.88);
  border-radius: 18px;
  box-shadow: 0 18px 44px rgba(0,0,0,0.34), inset 0 1px 0 rgba(255,255,255,0.08);
  display: flex;
  align-items: flex-start;
  padding: 1.35rem;
  min-width: 280px;
  max-width: 350px;
  transition: transform 0.18s, box-shadow 0.18s;
  border: 1px solid rgba(125,211,252,0.16);
}

.key-highlight-item::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(125,211,252,0.72), transparent);
  opacity: 0.75;
}
.key-highlight-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 54px rgba(0,0,0,0.42), 0 0 0 1px rgba(125,211,252,0.10), inset 0 1px 0 rgba(255,255,255,0.09);
  border-color: rgba(125,211,252,0.34);
}

.key-icon {
  position: relative;
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  margin-right: 14px;
  border-radius: 50%;
  border: 1px solid rgba(125,211,252,0.46);
  background:
    radial-gradient(circle at 35% 28%, rgba(224,247,255,0.95), rgba(125,211,252,0.55) 32%, rgba(14,165,233,0.16) 68%),
    rgba(5, 16, 28, 0.88);
  box-shadow: 0 0 0 5px rgba(125,211,252,0.055), inset 0 1px 0 rgba(255,255,255,0.24);
}

.key-icon::after {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 50%;
  background: #e0f7ff;
  box-shadow: 0 0 14px rgba(125,211,252,0.82);
}

.key-highlight-content {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.key-highlight-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.08rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: 0;
  margin-bottom: 0.1rem;
}
.key-highlight-desc {
  font-size: 0.94rem;
  color: var(--sub);
  font-weight: 400;
  line-height: 1.62;
}

@media (max-width: 900px) {
  .key-highlights-list {
    flex-direction: column;
    align-items: stretch;
    gap: 1.2rem;
  }
  .key-highlight-item {
    max-width: 100%;
    min-width: 0;
    padding: 1.2rem 1rem;
  }
}
/* ============================================================
   PREMIUM DEEP DARK / SKY BLUE THEME
   Inspired by luxury high-ticket coaching aesthetics.
   ============================================================ */
:root {
  --bg: #050505;
  --bg-soft: #06101c;
  --card: rgba(7, 18, 31, 0.78);
  --card-strong: rgba(8, 24, 40, 0.92);
  --line: rgba(125, 211, 252, 0.18);
  --line-strong: rgba(125, 211, 252, 0.42);
  --sky: #7dd3fc;
  --sky-2: #0ea5e9;
  --sky-3: #e0f7ff;
  --text: #f7fbff;
  --muted: #8fa4b8;
  --sub: #d7e8f7;
  --danger: #ff7777;
  --radius: 18px;
  --radius-lg: 28px;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.58);
}

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

html { scroll-behavior: smooth; }

body {
  min-height: 100vh;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -4;
  background:
    radial-gradient(900px 520px at 50% -10%, rgba(125, 211, 252, 0.16), transparent 66%),
    radial-gradient(700px 430px at 100% 92%, rgba(14, 165, 233, 0.14), transparent 72%),
    radial-gradient(620px 380px at -4% 28%, rgba(186, 230, 253, 0.06), transparent 68%),
    linear-gradient(180deg, #07101c 0%, #050505 48%, #030813 100%);
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
ul { list-style: none; }

.luxury-bg {
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(125,211,252,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(125,211,252,0.035) 1px, transparent 1px);
  background-size: 78px 78px;
  mask-image: radial-gradient(circle at 50% 28%, black 0%, transparent 72%);
}

.grain {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: 0.18;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.16) 0 1px, transparent 1px),
    radial-gradient(circle at 80% 70%, rgba(255,255,255,0.1) 0 1px, transparent 1px);
  background-size: 4px 4px, 6px 6px;
  mix-blend-mode: overlay;
}

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

.container-narrow { width: min(1040px, calc(100% - 32px)); }

.scroll-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--sky-3), var(--sky), var(--sky-2));
  z-index: 2000;
  box-shadow: 0 0 18px rgba(125,211,252,0.75);
}

.topbar {
  position: relative;
  z-index: 10;
  width: min(1220px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.topbar-center { justify-content: center; }

.topbar-cta {
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--sky-3);
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.035);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Typography */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--sky-3);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.eyebrow span {
  width: 34px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--sky), transparent);
}

.eyebrow.centered {
  justify-content: center;
}

.gradient-text {
  background: linear-gradient(135deg, #effaff 0%, #7dd3fc 45%, #0284c7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 18px rgba(125,211,252,0.10));
}

#clase,
#leadForm,
#faq,
#contacto,
#reserverAppel {
  scroll-margin-top: 120px;
}

/* Hero */
.hero-section {
  position: relative;
  z-index: 1;
  padding: 52px 0 76px;
}

.home-body .topbar {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  justify-items: center;
  gap: 12px;
  padding: 14px 0 2px;
}

.home-body .hero-section {
  padding-top: 20px;
}

.home-quickbar {
  width: min(1220px, calc(100% - 32px));
  margin: 6px auto 12px;
  padding: 10px;
  border-radius: 16px;
  border: 1px solid rgba(125,211,252,0.2);
  background: linear-gradient(135deg, rgba(255,255,255,0.04), rgba(125,211,252,0.05));
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.home-body .topbar .home-topnav {
  width: auto;
  max-width: 100%;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 6px;
  border-radius: 999px;
  border: 1px solid rgba(125,211,252,0.16);
  background: linear-gradient(135deg, rgba(8,24,40,0.66), rgba(3,12,22,0.72));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}

.home-body .topbar .topnav-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 13px;
  border-radius: 999px;
  border: 1px solid rgba(125,211,252,0.24);
  background:
    linear-gradient(145deg, rgba(125,211,252,0.14), rgba(2,10,18,0.78) 70%),
    rgba(2,10,18,0.65);
  color: #e7f3ff;
  font-size: 0.70rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.09),
    0 6px 16px rgba(0,0,0,0.24);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease, color .22s ease, background .22s ease;
  white-space: nowrap;
}

.home-body .topbar .topnav-btn::before {
  content: "";
  flex: 0 0 6px;
  margin-right: 7px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(180deg, #7dd3fc, #0ea5e9);
  box-shadow: 0 0 8px rgba(125,211,252,0.78);
}

.home-body .topbar .topnav-btn:nth-child(2)::before {
  background: linear-gradient(180deg, #a5f3fc, #22d3ee);
}

.home-body .topbar .topnav-btn:nth-child(3)::before {
  background: linear-gradient(180deg, #67e8f9, #06b6d4);
}

.home-body .topbar .topnav-btn:hover {
  transform: translateY(-2px);
  border-color: rgba(125,211,252,0.48);
  color: #ffffff;
  background:
    linear-gradient(145deg, rgba(125,211,252,0.22), rgba(2,10,18,0.66) 65%),
    rgba(2,10,18,0.75);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.12),
    0 10px 20px rgba(0,0,0,0.30),
    0 0 14px rgba(56,189,248,0.24);
}

.home-body .topbar .topnav-btn:focus-visible {
  outline: 2px solid rgba(125,211,252,0.70);
  outline-offset: 2px;
}

@media (max-width: 860px) {
  .home-body .topbar {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 12px;
  }

  .home-body .topbar .home-topnav {
    width: 100%;
    justify-content: center;
    border-radius: 18px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .home-body .topbar .home-topnav::-webkit-scrollbar {
    display: none;
  }

  .home-body .topbar .topnav-btn {
    min-height: 36px;
    padding: 9px 13px;
    font-size: 0.68rem;
    letter-spacing: 0.05em;
  }
}

.quick-item {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(125,211,252,0.18);
  background: rgba(2, 10, 18, 0.62);
  text-align: center;
  color: var(--sub);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-container {
  width: min(1220px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 430px);
  gap: 34px;
  align-items: stretch;
}

.hero-left,
.mentor-card,
.video-section,
.proof-section,
.student-videos-section,
.final-cta,
.key-card {
  border: 1px solid var(--line);
  background:
    linear-gradient(150deg, rgba(255,255,255,0.06), transparent 36%),
    linear-gradient(160deg, rgba(26,24,20,0.92), rgba(8,8,7,0.92));
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255,255,255,0.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.hero-left {
  border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 52px);
  overflow: hidden;
  position: relative;
  text-align: center;
  min-height: 100%;
}

.student-videos-section {
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.hero-left::after,
.video-section::after {
  content: "";
  position: absolute;
  inset: auto -20% -45% 10%;
  height: 300px;
  background: radial-gradient(circle, rgba(125,211,252,0.16), transparent 70%);
  pointer-events: none;
}

.hero-title {
  font-family: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  font-size: clamp(2.75rem, 5.1vw, 4.95rem);
  line-height: 0.94;
  letter-spacing: -0.045em;
  max-width: 780px;
  margin: 0 auto 100px;
  text-wrap: balance;
  text-shadow:
    0 1px 0 rgba(255,255,255,0.1),
    0 18px 48px rgba(0,0,0,0.55);
}

.hero-title .gradient-text {
  background-size: 220% 100%;
  animation: titleGradientFlow 4.8s ease-in-out infinite;
}

.hero-line {
  display: block;
  opacity: 0;
  transform: translateY(26px) scale(0.98);
}

.hero-left.visible .hero-line {
  animation: heroLineIn 0.82s cubic-bezier(.16,1,.3,1) forwards;
}

.hero-left.visible .hero-line:nth-child(1) { animation-delay: 0.05s; }
.hero-left.visible .hero-line:nth-child(2) { animation-delay: 0.15s; }
.hero-left.visible .hero-line:nth-child(3) { animation-delay: 0.25s; }
.hero-left.visible .hero-line:nth-child(4) { animation-delay: 0.35s; }

@keyframes heroLineIn {
  0% {
    opacity: 0;
    transform: translateY(26px) scale(0.98);
  }
  72% {
    opacity: 1;
    transform: translateY(-4px) scale(1.01);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes titleGradientFlow {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.hero-subtitle {
  color: var(--sub);
  font-size: clamp(1rem, 1.45vw, 1.14rem);
  line-height: 1.8;
  max-width: 670px;
  margin-bottom: 22px;
}

.proof-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.proof-chip,
.mc-chip {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(125,211,252,0.32);
  background: #08131d;
  color: #ffffff;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Form */
.lead-form {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 13px;
  max-width: 600px;
  margin-inline: auto;
  padding: 28px;
  text-align: left;
  border-radius: 24px;
  border: 1px solid rgba(125,211,252,0.24);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.09), rgba(255,255,255,0.02)),
    radial-gradient(circle at 8% -8%, rgba(125,211,252,0.24), transparent 42%),
    linear-gradient(145deg, rgba(8,15,26,0.96), rgba(4,8,14,0.97));
  box-shadow:
    0 28px 64px rgba(0,0,0,0.46),
    0 0 0 1px rgba(125,211,252,0.08),
    inset 0 1px 0 rgba(255,255,255,0.08),
    inset 0 -1px 0 rgba(125,211,252,0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.lead-form.form-entrance-play {
  animation: 
    formEntrance 800ms cubic-bezier(.16,1,.3,1),
    formFloat 4s ease-in-out 1s infinite;
}

.lead-form::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(120deg, rgba(125,211,252,0.09), transparent 34%, transparent 72%, rgba(125,211,252,0.08));
  pointer-events: none;
  animation: shinePulse 2s ease-in-out 0.8s infinite;
}

.lead-form::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  border: 1px solid rgba(125,211,252,0.18);
  box-shadow: 0 0 0 rgba(125,211,252,0.3);
  pointer-events: none;
  opacity: 0;
}

.form-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 2px;
}

.form-head p {
  color: var(--text);
  font-weight: 900;
  letter-spacing: -0.02em;
}

.form-head span {
  color: #03253a;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 6px 11px;
  background: linear-gradient(135deg, #d8f3ff, #8ed9ff);
  border: 1px solid rgba(186,230,253,0.75);
  box-shadow: 0 8px 20px rgba(14,165,233,0.28), inset 0 1px 0 rgba(255,255,255,0.8);
}

.input-wrap {
  display: grid;
  gap: 7px;
}

.input-wrap span {
  color: rgba(225,244,255,0.8);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: left;
}

.input-wrap input,
.input-wrap select {
  width: 100%;
  padding: 15px 16px;
  border-radius: 15px;
  border: 1px solid rgba(125,211,252,0.26);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02)),
    rgba(7,18,30,0.9);
  color: var(--text);
  outline: none;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
  transition: border-color .2s, box-shadow .2s, background .2s, transform .2s;
}

.input-wrap input::placeholder { color: rgba(199,223,242,0.46); }

.input-wrap select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}

.phone-field {
  display: grid;
  grid-template-columns: minmax(118px, 150px) 1fr;
  gap: 10px;
}

.phone-code-group {
  display: grid;
  gap: 10px;
}

.phone-code {
  font-weight: 700;
  letter-spacing: 0.01em;
}

.phone-code-custom {
  display: none;
}

.phone-code-custom.visible {
  display: block;
}

.input-wrap input:hover,
.input-wrap select:hover {
  border-color: rgba(125,211,252,0.4);
  background: rgba(9,22,36,0.94);
}

.input-wrap input:focus,
.input-wrap select:focus {
  border-color: rgba(125,211,252,0.85);
  background: rgba(12,30,48,0.95);
  transform: translateY(-1px);
  box-shadow: 0 0 0 4px rgba(125,211,252,0.14), 0 8px 24px rgba(9,34,56,0.44);
}

.input-wrap input[readonly] {
  opacity: .72;
  cursor: not-allowed;
}

@media (max-width: 460px) {
  .phone-field {
    grid-template-columns: 1fr;
  }
}

.form-error {
  min-height: 18px;
  color: var(--danger);
  font-size: 0.82rem;
}

.form-error.form-info {
  color: #bae6fd;
}

.form-privacy {
  color: rgba(197,227,244,0.76);
  text-align: center;
  font-size: 0.76rem;
  line-height: 1.5;
}

/* Form Entrance Animations */
@keyframes formEntrance {
  0% {
    opacity: 0;
    transform: translateY(32px);
    filter: blur(6px) brightness(0.92);
  }
  60% {
    opacity: 1;
    transform: translateY(-4px);
    filter: blur(0) brightness(1.06);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0) brightness(1);
  }
}

@keyframes formFloat {
  0%,
  100% {
    transform: translateY(0) rotateZ(-0.2deg);
  }
  50% {
    transform: translateY(-6px) rotateZ(0.2deg);
  }
}

@keyframes shinePulse {
  0%,
  100% {
    opacity: 0.4;
  }
  50% {
    opacity: 0.95;
  }
}

@keyframes formHighlight {
  0% {
    box-shadow:
      0 28px 64px rgba(0,0,0,0.46),
      0 0 0 1px rgba(125,211,252,0.08),
      inset 0 1px 0 rgba(255,255,255,0.08),
      inset 0 -1px 0 rgba(125,211,252,0.1),
      0 0 0 0px rgba(125,211,252,0.6);
  }
  50% {
    box-shadow:
      0 28px 64px rgba(0,0,0,0.46),
      0 0 0 1px rgba(125,211,252,0.08),
      inset 0 1px 0 rgba(255,255,255,0.08),
      inset 0 -1px 0 rgba(125,211,252,0.1),
      0 0 0 12px rgba(125,211,252,0);
  }
  100% {
    box-shadow:
      0 28px 64px rgba(0,0,0,0.46),
      0 0 0 1px rgba(125,211,252,0.08),
      inset 0 1px 0 rgba(255,255,255,0.08),
      inset 0 -1px 0 rgba(125,211,252,0.1),
      0 0 0 0px rgba(125,211,252,0);
  }
}

.lead-form.form-highlight {
  animation: formHighlight 1.2s ease-out;
}

/* Buttons */
.btn-primary,
.btn-secondary,
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 14px;
  font-weight: 900;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transform: translateZ(0);
  backface-visibility: hidden;
  will-change: transform, box-shadow, filter;
  transition: transform .28s cubic-bezier(.22,.68,0,1), box-shadow .28s cubic-bezier(.22,.68,0,1), border-color .24s ease, background .24s ease, filter .24s ease;
}

.topbar-cta,
.btn-primary,
.btn-secondary,
.btn-whatsapp,
.proof-dot,
.video-dot {
  -webkit-tap-highlight-color: transparent;
}

.topbar-cta:focus-visible,
.btn-primary:focus-visible,
.btn-secondary:focus-visible,
.btn-whatsapp:focus-visible,
.proof-dot:focus-visible,
.video-dot:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(125,211,252,0.18), 0 0 0 6px rgba(125,211,252,0.08);
}

.btn-primary::before,
.btn-secondary::before,
.btn-whatsapp::before,
.topbar-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 25%, rgba(255,255,255,0.34) 50%, transparent 75%);
  transform: translateX(-140%);
  transition: transform .7s cubic-bezier(.22,.68,0,1);
  pointer-events: none;
}

.btn-primary {
  padding: 16px 26px;
  border: 1px solid rgba(186,230,253,0.42);
  background: linear-gradient(140deg, var(--sky-3) 0%, var(--sky) 45%, var(--sky-2) 100%);
  color: #03111c;
  box-shadow: 0 18px 44px rgba(0,0,0,0.45), inset 0 1px 0 rgba(255,255,255,0.68);
  font-size: 0.88rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 58px rgba(0,0,0,0.55), 0 0 34px rgba(125,211,252,0.16), inset 0 1px 0 rgba(255,255,255,0.44);
  filter: saturate(1.05);
}

.btn-primary:hover::before,
.btn-secondary:hover::before,
.btn-whatsapp:hover::before,
.topbar-cta:hover::before {
  transform: translateX(140%);
}

.btn-full { width: 100%; }
.btn-xl { padding: 18px 34px; }

.btn-icon {
  width: 1.15em;
  height: 1.15em;
  flex: 0 0 auto;
  position: relative;
  z-index: 1;
}

.btn-primary > span,
.btn-secondary > span,
.btn-whatsapp > span {
  position: relative;
  z-index: 1;
}

.btn-secondary,
.btn-whatsapp {
  padding: 14px 20px;
  border: 1px solid rgba(125,211,252,0.32);
  background: rgba(255,255,255,0.045);
  color: var(--sky-3);
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
}

.btn-secondary:hover,
.btn-whatsapp:hover {
  transform: translateY(-2px);
  border-color: var(--line-strong);
  background: rgba(125,211,252,0.09);
  filter: saturate(1.06);
}

.topbar-cta:hover {
  transform: translateY(-2px);
}

.topbar-cta:active,
.btn-primary:active,
.btn-secondary:active,
.btn-whatsapp:active,
.proof-dot:active,
.video-dot:active {
  transform: translateY(0) scale(0.98);
}

@media (prefers-reduced-motion: reduce) {
  .topbar-cta,
  .btn-primary,
  .btn-secondary,
  .btn-whatsapp,
  .proof-dot,
  .video-dot {
    transition: none;
  }

  .btn-primary::before,
  .btn-secondary::before,
  .btn-whatsapp::before,
  .topbar-cta::before {
    display: none;
  }
}

/* Mentor */
.hero-right { position: sticky; top: 20px; align-self: start; }

.mentor-card {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 24px;
  min-height: 100%;
  overflow: hidden;
  box-shadow:
    0 28px 64px rgba(0,0,0,0.42),
    inset 0 1px 0 rgba(255,255,255,0.08),
    inset 0 -1px 0 rgba(125,211,252,0.08);
}

.mentor-card::before,
.key-card::before,
.faq-item::before,
.contact-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(circle at top right, rgba(125,211,252,0.16), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,0.08), transparent 28%);
  pointer-events: none;
}

.mentor-card::after,
.key-card::after,
.faq-item::after,
.contact-card::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  border: 1px solid rgba(255,255,255,0.04);
  pointer-events: none;
}

.mentor-label {
  display: inline-flex;
  padding: 7px 11px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  color: var(--sky-3);
  background: rgba(125,211,252,0.08);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.mentor-photo {
  aspect-ratio: 4 / 3.25;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: #030813;
  margin-bottom: 20px;
}

.mentor-photo-placeholder {
  height: 100%;
  display: grid;
  place-items: center;
  font-family: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  font-size: 7rem;
  font-weight: 900;
  color: rgba(125,211,252,0.30);
  background:
    radial-gradient(circle at 50% 36%, rgba(125,211,252,0.14), transparent 52%),
    linear-gradient(135deg, #1c1710, #070707);
}

.mentor-before-after {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0 0 20px;
}

.mentor-stage-card {
  margin: 0;
  padding: 10px;
  border-radius: 18px;
  border: 1px solid rgba(125,211,252,0.14);
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.015));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}

.mentor-stage-label {
  display: inline-flex;
  margin-bottom: 8px;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  color: var(--sky-3);
}

.mentor-stage-photo {
  width: 100%;
  aspect-ratio: 2 / 3;
  min-height: 320px;
  object-fit: cover;
  object-position: top center;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #020913;
  display: block;
}

.mentor-stage-before {
  filter: saturate(0.72) contrast(0.92) brightness(0.9);
}

.mentor-stage-after {
  filter: saturate(1.1) contrast(1.06) brightness(1.04);
}

.mentor-card h2 {
  font-family: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  font-size: 2.15rem;
  line-height: 1;
  margin-bottom: 9px;
}

.mentor-intro {
  color: var(--sub);
  line-height: 1.65;
  margin-bottom: 18px;
}

.mentor-list {
  display: grid;
  gap: 13px;
  margin-bottom: 20px;
}

.mentor-list li {
  position: relative;
  display: block;
  padding-left: 28px;
  color: var(--sub);
  line-height: 1.58;
  font-size: 0.92rem;
}

.mentor-list li span {
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sky);
  box-shadow: 0 0 12px rgba(125,211,252,0.65);
}

.mentor-list strong { color: var(--text); }

.keys-section .key-highlights-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 22px auto 0;
  padding: 0;
  max-width: 920px;
  text-align: left;
  border: 0;
  border-radius: 0;
  background: none;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.keys-section .key-highlight-item {
  min-width: 0;
  max-width: none;
  align-items: flex-start;
  padding: 18px;
}

.keys-section .key-highlights-list .key-highlight-title,
.keys-section .key-highlights-list .key-highlight-desc {
  position: static;
  display: block;
}

.keys-section .key-highlights-list .key-highlight-desc {
  font-size: 0.96rem;
  line-height: 1.58;
}

/* Sections */
.keys-section { padding: 22px 0 88px; }

.faq-section,
.contact-section {
  padding: 10px 0 70px;
}

.section-heading {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 28px;
}

.section-lead {
  margin: 14px auto 0;
  max-width: 680px;
  color: var(--sub);
  font-size: 1.02rem;
  line-height: 1.7;
}

.section-heading h2,
.final-cta h2 {
  font-family: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.keys-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.keys-grid-premium {
  gap: 20px;
}

.keys-extra {
  margin-top: 20px;
}

.keys-extra-title {
  margin: 0 0 16px;
  text-align: center;
  color: var(--sky-3);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.keys-grid-secondary {
  counter-reset: practical-card;
}

.keys-grid-secondary .key-card {
  padding: 22px 22px 20px;
  border-radius: 20px;
  border: 1px solid rgba(125,211,252,0.2);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.018)),
    radial-gradient(circle at 12% 0%, rgba(125,211,252,0.18), transparent 46%),
    linear-gradient(160deg, rgba(12,17,27,0.96), rgba(5,10,17,0.96));
  box-shadow:
    0 16px 34px rgba(0,0,0,0.3),
    inset 0 1px 0 rgba(255,255,255,0.06),
    inset 0 -1px 0 rgba(125,211,252,0.1);
}

.keys-grid-secondary .key-card h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.03rem;
  margin-bottom: 8px;
}

.keys-grid-secondary .key-card h3::before {
  counter-increment: practical-card;
  content: "0" counter(practical-card);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  border-radius: 50%;
  border: 1px solid rgba(125,211,252,0.35);
  background: rgba(125,211,252,0.1);
  color: var(--sky-2);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.keys-grid-secondary .key-card p {
  font-size: 0.92rem;
  line-height: 1.64;
  color: color-mix(in srgb, var(--sub) 88%, #fff 12%);
}

.keys-grid-secondary .key-card::after {
  height: 2px;
  opacity: 0.72;
}

.keys-grid-secondary .key-card:hover {
  transform: translateY(-8px) scale(1.01);
  border-color: rgba(125,211,252,0.4);
  box-shadow:
    0 24px 48px rgba(0,0,0,0.42),
    0 0 0 1px rgba(125,211,252,0.15),
    inset 0 1px 0 rgba(255,255,255,0.08);
}

.key-card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  padding: 24px;
  isolation: isolate;
  transition: transform .3s cubic-bezier(.22,.68,0,1), box-shadow .3s ease, border-color .3s ease;
}

.key-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 14px;
}

.key-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(125,211,252,0.18), var(--sky), rgba(125,211,252,0.18), transparent);
  opacity: .9;
}

.key-card:hover,
.contact-card:hover {
  transform: translateY(-6px);
  border-color: rgba(125,211,252,0.28);
  box-shadow:
    0 26px 56px rgba(0,0,0,0.44),
    0 0 0 1px rgba(125,211,252,0.08),
    inset 0 1px 0 rgba(255,255,255,0.08);
}

.key-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--sky);
  font-family: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  font-size: 2.15rem;
  font-weight: 900;
  line-height: 1;
  margin: 0;
}

.key-tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 11px;
  border-radius: 999px;
  border: 1px solid rgba(125,211,252,0.3);
  color: var(--sky-3);
  background: rgba(125,211,252,0.08);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.key-card h3 {
  font-size: 1.14rem;
  margin-bottom: 9px;
}

.key-card p {
  color: var(--sub);
  line-height: 1.68;
  font-size: 0.95rem;
}

/* FAQ + Contact */
.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item,
.contact-card {
  position: relative;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.015)),
    linear-gradient(150deg, rgba(125,211,252,0.08), transparent 36%),
    linear-gradient(160deg, rgba(22,24,31,0.95), rgba(6,9,14,0.96));
  box-shadow:
    0 24px 52px rgba(0,0,0,0.34),
    inset 0 1px 0 rgba(255,255,255,0.08),
    inset 0 -1px 0 rgba(125,211,252,0.06);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-radius: 20px;
}

.faq-item {
  padding: 2px 16px;
  transition: transform .28s cubic-bezier(.22,.68,0,1), border-color .28s ease, box-shadow .28s ease;
}

.faq-item:hover,
.faq-item[open] {
  transform: translateY(-2px);
  border-color: rgba(125,211,252,0.28);
  box-shadow:
    0 22px 48px rgba(0,0,0,0.36),
    0 0 0 1px rgba(125,211,252,0.06),
    inset 0 1px 0 rgba(255,255,255,0.08);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 16px 0;
  color: var(--text);
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

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

.faq-item summary::after {
  content: "+";
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--sky-3);
  border: 1px solid rgba(125,211,252,0.34);
  background: rgba(125,211,252,0.08);
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  border-top: 1px solid rgba(125,211,252,0.14);
  padding: 0 0 16px;
  color: var(--sub);
  line-height: 1.68;
  font-size: 0.92rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.contact-card {
  padding: 22px;
}

.contact-card h3 {
  font-family: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  font-size: 1.65rem;
  line-height: 1;
  margin-bottom: 10px;
}

.contact-card p {
  color: var(--sub);
  line-height: 1.65;
  margin-bottom: 16px;
  font-size: 0.92rem;
}

.contact-card .btn-secondary {
  width: 100%;
}

/* Masterclass page */
.masterclass-body .topbar { padding-bottom: 20px; }

.video-section,
.proof-section,
.student-videos-section,
.final-cta {
  border-radius: var(--radius-lg);
  padding: clamp(22px, 4vw, 44px);
  margin-bottom: 18px;
  overflow: hidden;
  position: relative;
}

.video-section {
  text-align: center;
  margin-top: 10px;
}

.mc-hero-meta {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 18px;
}

.video-title {
  max-width: 820px;
  margin: 0 auto 16px;
  font-family: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  font-size: clamp(1.9rem, 4.4vw, 3.9rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
  text-wrap: balance;
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.4);
}

.video-spacer {
  height: 2.5rem;
}

.button-spacer {
  height: 1.5rem;
}

.masterclass-body .video-title .gradient-text {
  display: inline-block;
  margin-top: 4px;
}

.mc-intro-subtitle,
.mc-cta-copy {
  max-width: 720px;
  margin: 0 auto 24px;
  color: var(--sub);
  font-size: 1rem;
  line-height: 1.75;
}

.video-frame-wrap {
  position: relative;
  width: 100%;
  max-width: 980px;
  margin: 0 auto 26px;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid var(--line-strong);
  background: #000;
  box-shadow: 0 30px 80px rgba(0,0,0,0.72), 0 0 0 1px rgba(125,211,252,0.12);
}

.video-frame-wrap iframe,
.video-frame-wrap video {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.masterclass-video {
  object-fit: cover;
  background: #000;
}

.video-play-overlay {
  position: absolute;
  inset: 0;
  display: none;
  place-items: center;
  border: 0;
  background: rgba(0, 0, 0, 0.28);
  color: #03111c;
  cursor: pointer;
  z-index: 2;
}

.video-play-overlay.is-visible {
  display: grid;
}

.video-play-overlay span {
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  padding-left: 4px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--sky-3), var(--sky));
  box-shadow: 0 14px 34px rgba(0,0,0,0.45);
  font-size: 1.45rem;
}

.cta-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.proof-shell {
  position: relative;
  padding-inline: 56px;
}

.proof-masonry {
  display: flex;
  flex-wrap: nowrap;
  gap: 16px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 4px 2px 14px;
  scroll-snap-type: x mandatory;
  scroll-snap-stop: always;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.proof-masonry::-webkit-scrollbar { display: none; }

.proof-tracker {
  display: none;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
}

.video-tracker {
  display: none;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
}

.proof-arrow {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  border-radius: 50%;
  border: 1px solid rgba(125,211,252,0.36);
  background: linear-gradient(145deg, rgba(9,24,39,0.94), rgba(4,12,22,0.94));
  color: #e9f7ff;
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.proof-arrow:hover {
  transform: translateY(calc(-50% - 2px));
  border-color: rgba(125,211,252,0.7);
  box-shadow: 0 14px 28px rgba(0,0,0,0.38);
}

.proof-arrow:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.proof-arrow-prev { left: 0; }

.proof-arrow-next { right: 0; }

.proof-dot,
.video-dot {
  appearance: none;
  flex: 0 0 auto;
  width: 10px;
  height: 10px;
  padding: 0;
  border: 1px solid rgba(255,255,255,0.42);
  border-radius: 50%;
  background: rgba(255,255,255,0.22);
  box-shadow: none;
  cursor: pointer;
  opacity: 1;
  transition: background .18s ease, border-color .18s ease;
}

.proof-dot.active,
.video-dot.active {
  width: 10px;
  background: var(--sky);
  border-color: var(--sky-3);
  box-shadow: none;
}

.proof-dot:hover,
.video-dot:hover {
  background: rgba(255,255,255,0.5);
}

.proof-item {
  flex: 0 0 calc((100% - 24px) / 3);
  min-width: 0;
  margin-bottom: 0;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #030813;
  cursor: zoom-in;
  scroll-snap-align: start;
  aspect-ratio: 9 / 16;
  transition: transform .25s, border-color .25s, box-shadow .25s;
}

.proof-item:hover {
  transform: translateY(-5px);
  border-color: var(--line-strong);
  box-shadow: 0 20px 55px rgba(0,0,0,0.48);
}

.proof-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #02050a;
  border-radius: 17px;
}

.student-videos-shell {
  display: grid;
  grid-template-columns: 48px minmax(0, 920px) 48px;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.student-videos-grid {
  --student-video-width: clamp(190px, 22vw, 270px);
  --student-video-active-width: clamp(230px, 30vw, 360px);
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 22px);
  overflow-x: auto;
  overflow-y: hidden;
  padding: 12px max(12px, calc((100% - var(--student-video-active-width)) / 2)) 18px;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: max(12px, calc((100% - var(--student-video-active-width)) / 2));
  scroll-behavior: smooth;
  overscroll-behavior: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.student-videos-grid::-webkit-scrollbar { display: none; }

.video-arrow {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(125,211,252,0.36);
  border-radius: 50%;
  background: rgba(5, 16, 28, 0.88);
  color: var(--sky-3);
  font-size: 2.1rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), 0 12px 28px rgba(0,0,0,0.32);
  transition: background .18s ease, border-color .18s ease, transform .18s ease;
}

.video-arrow:hover {
  transform: translateY(-2px);
  border-color: rgba(125,211,252,0.68);
  background: rgba(8, 28, 48, 0.96);
}

.video-arrow:active {
  transform: translateY(0) scale(0.96);
}

.student-videos-section .video-tracker {
  display: flex;
}

.sv-item {
  position: relative;
  flex: 0 0 var(--student-video-width);
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: #030813;
  cursor: pointer;
  opacity: 0.58;
  transform: scale(0.9);
  transform-origin: center;
  scroll-snap-align: center;
  transition: flex-basis .34s cubic-bezier(.22,.68,0,1), opacity .25s ease, transform .34s cubic-bezier(.22,.68,0,1), border-color .25s, box-shadow .25s, filter .25s;
  filter: saturate(0.72) brightness(0.82);
}

.sv-item.is-active {
  flex-basis: var(--student-video-active-width);
  opacity: 1;
  transform: scale(1);
  filter: none;
  border-color: rgba(125,211,252,0.5);
  box-shadow: 0 28px 70px rgba(0,0,0,0.52), 0 0 0 1px rgba(125,211,252,0.12);
}

.sv-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  background: #000;
}

.sv-item:hover {
  border-color: var(--line-strong);
  box-shadow: 0 20px 55px rgba(0,0,0,0.48);
}

.sv-placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  gap: 10px;
  text-align: center;
  padding: 18px;
  background:
    radial-gradient(circle at 50% 30%, rgba(125,211,252,0.14), transparent 56%),
    linear-gradient(135deg, #081828, #02060c);
}

.sv-placeholder p {
  color: var(--sub);
  font-size: 0.84rem;
  line-height: 1.4;
}

.sv-item iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.sv-item video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  object-fit: cover;
  background: #000;
}

.sv-item.sv-local {
  aspect-ratio: 9 / 16;
  flex-basis: var(--student-video-width);
  background: #000;
}

.sv-item.sv-local.is-active {
  flex-basis: var(--student-video-active-width);
}

.sv-item.sv-local video {
  object-fit: contain;
}

.sv-item.playing .sv-placeholder {
  opacity: 0;
  pointer-events: none;
}

.play-btn-sm {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #03111c;
  background: linear-gradient(145deg, var(--sky-3), var(--sky), var(--sky-2));
  box-shadow: 0 0 0 8px rgba(125,211,252,0.10);
}

.final-cta {
  text-align: center;
  padding-top: clamp(30px, 5vw, 58px);
  padding-bottom: clamp(34px, 6vw, 70px);
}

/* Lightbox */
.lightbox-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 3000;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(0,0,0,0.92);
  cursor: zoom-out;
}

.lightbox-overlay.open { display: flex; }

.lightbox-overlay img {
  max-width: 92vw;
  max-height: 88vh;
  border-radius: 18px;
  box-shadow: 0 28px 80px rgba(0,0,0,0.88);
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 24px;
  color: white;
  font-size: 2.3rem;
  line-height: 1;
  opacity: .78;
  cursor: pointer;
}

.lightbox-close:hover { opacity: 1; }

/* Animations */
.reveal,
.reveal-left,
.reveal-right {
  opacity: 0;
  transition: opacity .75s cubic-bezier(.2,.75,.2,1), transform .75s cubic-bezier(.2,.75,.2,1), filter .75s;
  filter: blur(7px);
}

.reveal { transform: translateY(34px); }
.reveal-left { transform: translateX(-34px); }
.reveal-right { transform: translateX(34px); }

.reveal.visible,
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: none;
  filter: blur(0);
}

.delay-1 { transition-delay: .10s; }
.delay-2 { transition-delay: .20s; }
.delay-3 { transition-delay: .30s; }

.site-footer {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 34px 16px;
  color: var(--muted);
  font-size: .78rem;
  border-top: 1px solid rgba(125,211,252,.12);
}

@media (max-width: 980px) {
  .hero-container { grid-template-columns: 1fr; }
  .hero-right { position: static; }
  .keys-section .key-highlights-list { grid-template-columns: 1fr; }
  .keys-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .proof-item { flex-basis: calc((100% - 16px) / 2); }
}

@media (max-width: 640px) {
  .topbar { padding-top: 16px; }
  .topbar-cta { display: none; }
  .hero-section { padding-top: 30px; }
  .home-body .topbar {
    padding-top: 10px;
    gap: 10px;
    grid-template-columns: 1fr;
    justify-items: center;
  }
  .home-body .hero-section { padding-top: 14px; }
  .home-quickbar {
    grid-template-columns: 1fr;
    gap: 8px;
    margin: 4px auto 10px;
    padding: 8px;
  }
  .home-body .topbar .home-topnav {
    width: 100%;
    gap: 6px;
    justify-content: stretch;
    border-radius: 14px;
    padding: 6px;
  }
  .home-body .topbar .topnav-btn {
    flex: 1 1 0;
    min-height: 32px;
    padding: 7px 9px;
    font-size: 0.62rem;
    letter-spacing: 0.04em;
    border-radius: 999px;
  }
  .hero-left,
  .mentor-card,
  .video-section,
  .proof-section,
  .student-videos-section,
  .final-cta { border-radius: 22px; padding: 20px; }
  .faq-item,
  .contact-card {
    border-radius: 18px;
  }
  .contact-card {
    padding: 18px;
  }

  .hero-title {
    font-size: clamp(2.3rem, 10.8vw, 3.5rem);
    line-height: 0.94;
    letter-spacing: -0.035em;
    margin-bottom: 18px;
  }
  .hero-subtitle { font-size: .98rem; }
  .keys-section .key-highlights-list {
    margin-top: 14px;
    padding: 0;
  }
  .keys-extra {
    margin-top: 14px;
  }
  .keys-extra-title {
    margin-bottom: 10px;
    font-size: 0.74rem;
    letter-spacing: 0.07em;
  }
  .keys-grid-secondary .key-card {
    padding: 18px;
  }
  .keys-grid-secondary .key-card h3 {
    gap: 8px;
    font-size: 0.99rem;
  }
  .keys-grid-secondary .key-card h3::before {
    width: 24px;
    height: 24px;
    flex-basis: 24px;
    font-size: 0.66rem;
  }
  .section-lead {
    font-size: 0.95rem;
    line-height: 1.62;
    margin-top: 10px;
  }
  .key-head {
    margin-bottom: 10px;
  }
  .key-number {
    font-size: 1.85rem;
  }
  .key-tag {
    font-size: 0.62rem;
    padding: 5px 9px;
  }
  .keys-section .key-highlights-list li {
    font-size: 0.9rem;
  }
  .form-head { align-items: flex-start; flex-direction: column; gap: 4px; }
  .proof-section { overflow: hidden; }

  .proof-shell {
    display: block;
    padding-inline: 0;
  }

  .proof-arrow {
    display: none;
  }

  .proof-masonry {
    display: flex;
    flex-wrap: nowrap;
    gap: 14px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 4px 2px 14px;
    scroll-snap-type: x mandatory;
    scroll-snap-stop: always;
    scroll-padding-inline: 16px;
    scroll-behavior: smooth;
    overscroll-behavior: auto;
    touch-action: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .proof-masonry::-webkit-scrollbar { display: none; }

  .proof-item {
    flex: 0 0 clamp(220px, 76vw, 290px);
    max-width: none;
    margin-bottom: 0;
    scroll-snap-align: center;
    animation: none;
    transform-origin: center;
    will-change: transform;
    backface-visibility: hidden;
    transform: translateZ(0);
  }

  .proof-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    border-radius: 17px;
  }

  .proof-item:hover {
    transform: translateZ(0);
  }

  .proof-tracker {
    display: flex;
  }

  .video-tracker {
    display: flex;
  }

  .student-videos-section { overflow: hidden; }

  .student-videos-shell {
    display: block;
  }

  .video-arrow {
    display: none;
  }

  .student-videos-grid {
    --student-video-width: clamp(180px, 60vw, 260px);
    --student-video-active-width: min(92vw, 380px);
    display: flex;
    flex-wrap: nowrap;
    gap: 14px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 8px max(12px, calc((100% - var(--student-video-width)) / 2)) 14px;
    scroll-snap-type: x mandatory;
    scroll-snap-stop: normal;
    scroll-padding-inline: max(12px, calc((100% - var(--student-video-width)) / 2));
    scroll-behavior: smooth;
    touch-action: auto;
    overscroll-behavior: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .student-videos-grid::-webkit-scrollbar { display: none; }

  .student-videos-grid .sv-item {
    display: block;
  }

  .sv-item {
    flex: 0 0 var(--student-video-width);
    max-width: var(--student-video-width);
    aspect-ratio: auto;
    min-height: 240px;
    scroll-snap-align: center;
    scroll-snap-stop: normal;
    animation: none;
    opacity: 1;
    transform: translateZ(0);
    filter: none;
  }

  .sv-item:hover {
    box-shadow: 0 20px 55px rgba(0,0,0,0.48);
  }

  .sv-item.sv-local {
    flex: 0 0 var(--student-video-width);
  }

  .cta-row { flex-direction: column; }
  .btn-primary, .btn-secondary, .btn-whatsapp { width: 100%; }
  .video-title { font-size: clamp(2.2rem, 12vw, 4rem); }

  .masterclass-body .video-section {
    width: 100%;
    padding: 14px 6px 18px;
    border-radius: 18px;
  }

  .masterclass-body .video-frame-wrap {
    width: calc(100vw - 12px);
    max-width: none;
    margin: 0 auto 18px;
    aspect-ratio: 16 / 9;
    border-radius: 14px;
  }

  .masterclass-body .masterclass-video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #000;
  }

  .masterclass-body .mc-hero-meta {
    gap: 6px;
    margin-bottom: 12px;
  }

  .masterclass-body .mc-chip {
    font-size: 0.62rem;
    padding: 6px 8px;
  }

  .masterclass-body .video-title {
    max-width: 620px;
    font-size: clamp(1.35rem, 6.8vw, 2rem);
    line-height: 1.08;
    margin-bottom: 10px;
    letter-spacing: -0.03em;
  }

  .masterclass-body .cta-row {
    gap: 10px;
  }

}

/* ============================================================
   DEEP DARK / PREMIUM SKY BLUE OVERRIDE
   ============================================================ */
:root {
  --bg: #02050a;
  --bg-soft: #06101c;
  --card: rgba(7, 18, 31, 0.78);
  --card-strong: rgba(8, 24, 40, 0.92);
  --line: rgba(125, 211, 252, 0.18);
  --line-strong: rgba(125, 211, 252, 0.46);
  --sky: #7dd3fc;
  --sky-2: #0ea5e9;
  --sky-3: #e0f7ff;
  --text: #f7fbff;
  --muted: #8fa4b8;
  --sub: #d7e8f7;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.64);
}

body {
  background: var(--bg);
}

body::before {
  background:
    radial-gradient(980px 540px at 50% -12%, rgba(125, 211, 252, 0.16), transparent 66%),
    radial-gradient(760px 460px at 100% 92%, rgba(14, 165, 233, 0.13), transparent 72%),
    radial-gradient(620px 380px at -4% 28%, rgba(186, 230, 253, 0.055), transparent 68%),
    linear-gradient(180deg, #07101c 0%, #02050a 48%, #030813 100%);
}

.luxury-bg {
  background-image:
    linear-gradient(rgba(125, 211, 252, 0.032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(125, 211, 252, 0.032) 1px, transparent 1px);
}

.scroll-bar,
.btn-primary,
.play-btn-sm {
  background: linear-gradient(145deg, #e0f7ff 0%, #7dd3fc 48%, #0ea5e9 100%);
  color: #03111c;
}

.scroll-bar {
  box-shadow: 0 0 18px rgba(125, 211, 252, 0.75);
}

.eyebrow,
.accent,
.accent-bold,
.cyan,
.cyan-bold,
.result-name {
  color: var(--sky);
}

.gradient-text {
  background: linear-gradient(135deg, #effaff 0%, #7dd3fc 48%, #0ea5e9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 18px rgba(125, 211, 252, 0.12));
}

.eyebrow span,
.dot,
.key-card::after {
  background: linear-gradient(90deg, transparent, #7dd3fc, transparent);
}

.hero-left,
.mentor-card,
.video-section,
.proof-section,
.student-videos-section,
.final-cta,
.key-card {
  background:
    linear-gradient(150deg, rgba(186, 230, 253, 0.06), transparent 36%),
    linear-gradient(160deg, rgba(8, 24, 40, 0.92), rgba(2, 6, 12, 0.94));
}

.topbar-cta,
.pill,
.qui-tag,
.key-badge,
.mc-chip,
.proof-chip {
  color: #dff6ff;
  border-color: rgba(125, 211, 252, 0.36);
  background: linear-gradient(135deg, rgba(8, 28, 48, 0.92), rgba(3, 12, 22, 0.92));
}

.btn-primary {
  border: 1px solid rgba(186, 230, 253, 0.48);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.52), inset 0 1px 0 rgba(255,255,255,0.4);
}

.btn-primary:hover {
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.62), 0 0 32px rgba(125, 211, 252, 0.16);
}

.btn-secondary,
.btn-outline,
.btn-whatsapp {
  color: #bae6fd;
  border-color: rgba(125, 211, 252, 0.38);
  background: rgba(5, 16, 28, 0.84);
}

.btn-secondary:hover,
.btn-outline:hover,
.btn-whatsapp:hover {
  border-color: rgba(125, 211, 252, 0.68);
  background: rgba(8, 28, 48, 0.94);
}

.input-wrap input {
  border-color: rgba(125, 211, 252, 0.22);
}

.input-wrap input:focus {
  border-color: rgba(125, 211, 252, 0.76);
  box-shadow: 0 0 0 3px rgba(125, 211, 252, 0.16);
}

.video-frame-wrap,
.proof-item,
.sv-item {
  border-color: rgba(125, 211, 252, 0.18);
  background: #030813;
}

.proof-item:hover,
.sv-item:hover {
  border-color: rgba(125, 211, 252, 0.5);
}

.sv-placeholder {
  background:
    radial-gradient(circle at 50% 30%, rgba(125, 211, 252, 0.14), transparent 56%),
    linear-gradient(135deg, #081828, #02060c);
}

.play-btn-sm {
  box-shadow: 0 0 0 8px rgba(125, 211, 252, 0.1);
}

.site-footer {
  border-top-color: rgba(125, 211, 252, 0.12);
}

/* ============================================================
   ECOMSANZ HOME REDESIGN — DARK PREMIUM LANDING
   ============================================================ */
.home-body {
  --bg: #040405;
  --bg-soft: #0a0b0d;
  --surface: rgba(16, 17, 20, 0.78);
  --surface-strong: rgba(20, 22, 26, 0.94);
  --surface-muted: rgba(255, 255, 255, 0.035);
  --line: rgba(239, 235, 226, 0.12);
  --line-strong: rgba(34, 211, 238, 0.36);
  --accent: #22d3ee;
  --accent-2: #67e8f9;
  --text: #f5f2ea;
  --sub: #bbb7ad;
  --muted: #85827b;
  --danger: #ff8f8f;
  --radius: 8px;
  --radius-lg: 8px;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.52);
  background: var(--bg);
  color: var(--text);
}

.home-body *,
.home-body *::before,
.home-body *::after {
  letter-spacing: 0;
}

.home-body::before {
  background:
    radial-gradient(900px 420px at 50% -18%, rgba(59, 130, 246, 0.10), transparent 66%),
    radial-gradient(760px 420px at 96% 18%, rgba(96, 165, 250, 0.075), transparent 64%),
    linear-gradient(180deg, #070708 0%, #040405 46%, #07080a 100%);
}

.home-body .luxury-bg {
  background-image:
    linear-gradient(rgba(239, 235, 226, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(239, 235, 226, 0.026) 1px, transparent 1px);
  background-size: 86px 86px;
  mask-image: linear-gradient(180deg, black 0%, rgba(0, 0, 0, 0.68) 45%, transparent 90%);
}

.home-body .grain {
  opacity: 0.08;
  mix-blend-mode: soft-light;
}

.home-body .scroll-bar {
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  box-shadow: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  width: min(1180px, calc(100% - 32px));
  min-height: 72px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.site-header::before {
  content: "";
  position: fixed;
  inset: 0 0 auto;
  height: 72px;
  z-index: -1;
  background: linear-gradient(180deg, rgba(4, 4, 5, 0.9), rgba(4, 4, 5, 0.58));
  border-bottom: 1px solid rgba(239, 235, 226, 0.08);
}

.brand,
.site-nav,
.header-cta {
  position: relative;
  z-index: 1;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-weight: 800;
  font-size: 0.94rem;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(239, 235, 226, 0.16);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  color: var(--accent);
  font-size: 0.76rem;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(12px, 2vw, 24px);
}

.site-nav a {
  color: rgba(245, 242, 234, 0.68);
  font-size: 0.86rem;
  font-weight: 650;
  transition: color .18s ease;
}

.site-nav a:hover {
  color: var(--text);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(59, 130, 246, 0.26);
  background: rgba(59, 130, 246, 0.08);
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 800;
  white-space: nowrap;
}

.home-body .hero-section {
  padding: clamp(34px, 6vw, 78px) 0 52px;
}

.home-body .hero-container {
  width: min(1180px, calc(100% - 32px));
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 440px);
  gap: clamp(24px, 4vw, 56px);
  align-items: start;
}

.home-body .hero-left {
  padding: 0;
  border: 0;
  background: none;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  text-align: left;
  overflow: visible;
}

.home-body .hero-left::after {
  display: none;
}

.home-body .eyebrow {
  margin-bottom: 18px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.home-body .eyebrow span {
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.home-body .hero-title,
.home-body .section-heading h2,
.home-body .mentor-card h2,
.home-body .final-cta h2,
.home-body .video-title {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  letter-spacing: 0;
}

.home-body .hero-title {
  max-width: 780px;
  margin: 0 0 24px;
  font-size: clamp(3rem, 6.4vw, 6.2rem);
  line-height: 0.91;
  font-weight: 900;
  text-wrap: balance;
  text-shadow: 0 24px 70px rgba(0, 0, 0, 0.56);
}

.home-body .gradient-text {
  background: linear-gradient(135deg, #f8f5ed 0%, #67e8f9 54%, #22d3ee 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: none;
}

.home-body .hero-subtitle {
  max-width: 640px;
  margin: 0 0 22px;
  color: var(--sub);
  font-size: clamp(1rem, 1.4vw, 1.12rem);
  line-height: 1.72;
}

.home-body .proof-chips {
  gap: 8px;
  margin-bottom: 26px;
}

.home-body .proof-chip,
.home-body .mc-chip {
  padding: 8px 11px;
  border-color: rgba(239, 235, 226, 0.12);
  background: rgba(255, 255, 255, 0.045);
  color: rgba(245, 242, 234, 0.82);
  font-size: 0.74rem;
  font-weight: 760;
  text-transform: none;
}

.hero-media-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(155px, 240px);
  align-items: end;
  min-height: 265px;
  max-width: 650px;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(239, 235, 226, 0.12);
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.018) 58%),
    radial-gradient(420px 280px at 78% 20%, rgba(59, 130, 246, 0.12), transparent 60%),
    #0b0c0e;
}

.hero-media-copy {
  position: relative;
  z-index: 1;
  align-self: end;
  padding: 24px;
  display: grid;
  gap: 6px;
}

.hero-media-copy span {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-media-copy strong {
  max-width: 290px;
  color: var(--text);
  font-size: clamp(1.25rem, 2.2vw, 1.7rem);
  line-height: 1.08;
}

.hero-media-card img {
  width: 100%;
  height: 100%;
  max-height: 330px;
  object-fit: cover;
  object-position: center 18%;
  filter: saturate(0.94) contrast(1.04);
  align-self: stretch;
}

.home-body .hero-right {
  position: sticky;
  top: 92px;
}

.home-body .lead-form {
  max-width: none;
  padding: 24px;
  gap: 13px;
  border-radius: 8px;
  border-color: rgba(239, 235, 226, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025)),
    radial-gradient(420px 260px at 12% -10%, rgba(59, 130, 246, 0.10), transparent 58%),
    rgba(14, 15, 18, 0.93);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.home-body .lead-form::before,
.home-body .lead-form::after {
  display: none;
}

.home-body .lead-form.form-entrance-play {
  animation: formEntrance 620ms cubic-bezier(.16, 1, .3, 1);
}

.home-body .hero-title .gradient-text {
  animation: none;
}

.home-body .form-head {
  margin-bottom: 4px;
}

.home-body .form-head p {
  color: var(--text);
  font-size: 1.05rem;
  font-weight: 850;
}

.home-body .form-head span {
  color: #06111f;
  border: 0;
  background: var(--accent);
  box-shadow: none;
}

.home-body .input-wrap span {
  color: rgba(245, 242, 234, 0.74);
  font-size: 0.76rem;
  font-weight: 760;
}

.home-body .input-wrap input,
.home-body .input-wrap select {
  min-height: 50px;
  border-radius: 8px;
  border-color: rgba(239, 235, 226, 0.13);
  background: rgba(4, 4, 5, 0.74);
  color: var(--text);
  box-shadow: none;
}

.home-body .input-wrap input:hover,
.home-body .input-wrap select:hover {
  border-color: rgba(239, 235, 226, 0.22);
  background: rgba(7, 7, 8, 0.88);
}

.home-body .input-wrap input:focus,
.home-body .input-wrap select:focus {
  border-color: rgba(59, 130, 246, 0.68);
  background: rgba(7, 7, 8, 0.96);
  transform: none;
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.10);
}

.home-body .form-privacy {
  color: rgba(187, 183, 173, 0.74);
}

.home-body .btn-primary,
.home-body .btn-secondary,
.home-body .btn-whatsapp {
  min-height: 50px;
  border-radius: 8px;
  letter-spacing: 0;
}

.home-body .btn-primary {
  border: 1px solid rgba(34, 211, 238, 0.54);
  background: linear-gradient(135deg, #a5f3fc, #22d3ee);
  color: #06111f;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.38);
}

.home-body .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.48), 0 0 30px rgba(59, 130, 246, 0.10);
}

.home-body .btn-secondary,
.home-body .btn-whatsapp {
  border-color: rgba(239, 235, 226, 0.14);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  text-transform: none;
}

.home-body .btn-secondary:hover,
.home-body .btn-whatsapp:hover {
  border-color: rgba(59, 130, 246, 0.36);
  background: rgba(59, 130, 246, 0.07);
}

.home-body .video-section,
.home-body .proof-section,
.home-body .student-videos-section,
.home-body .final-cta,
.mentor-section {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(52px, 7vw, 92px) 0;
  border: 0;
  border-radius: 0;
  background: none;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.home-body .video-section::after,
.home-body .proof-section::after,
.home-body .student-videos-section::after,
.home-body .final-cta::after {
  display: none;
}

.home-body .section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.home-body .section-heading h2,
.home-body .final-cta h2 {
  color: var(--text);
  font-size: clamp(2rem, 4.2vw, 4.2rem);
  line-height: 1.02;
  font-weight: 900;
}

.home-body .section-lead,
.home-body .mc-cta-copy {
  color: var(--sub);
}

.home-body .video-frame-wrap {
  max-width: 980px;
  border-radius: 8px;
  border-color: rgba(239, 235, 226, 0.14);
  background: #000;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.58);
}

.home-body .masterclass-video {
  object-fit: contain;
}

.learning-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.home-body .key-card,
.home-body .faq-item,
.home-body .contact-card,
.home-body .mentor-card {
  border-radius: 8px;
  border-color: rgba(239, 235, 226, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    rgba(14, 15, 18, 0.82);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.055);
}

.home-body .key-card::before,
.home-body .faq-item::before,
.home-body .contact-card::before,
.home-body .mentor-card::before,
.home-body .key-card::after,
.home-body .faq-item::after,
.home-body .contact-card::after,
.home-body .mentor-card::after {
  display: none;
}

.home-body .key-card {
  min-height: 220px;
  padding: 22px;
}

.key-icon-soft {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 24px;
  border-radius: 50%;
  border: 1px solid rgba(59, 130, 246, 0.24);
  background: rgba(59, 130, 246, 0.07);
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 850;
}

.home-body .key-card h3 {
  margin-bottom: 10px;
  color: var(--text);
  font-size: 1.08rem;
  line-height: 1.2;
}

.home-body .key-card p {
  color: var(--sub);
}

.mentor-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1fr);
  gap: clamp(18px, 4vw, 44px);
  align-items: stretch;
}

.mentor-portrait {
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(239, 235, 226, 0.12);
  background: #0b0c0e;
  min-height: 560px;
}

.mentor-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 14%;
  filter: saturate(0.9) contrast(1.04);
}

.home-body .mentor-card {
  padding: clamp(24px, 4vw, 42px);
  min-height: auto;
}

.home-body .mentor-label {
  color: var(--accent);
  border-color: rgba(59, 130, 246, 0.28);
  background: rgba(59, 130, 246, 0.07);
}

.home-body .mentor-card h2 {
  margin-bottom: 16px;
  font-size: clamp(2.2rem, 4.4vw, 4.3rem);
  line-height: 1;
  font-weight: 900;
}

.home-body .mentor-intro,
.home-body .mentor-list li {
  color: var(--sub);
}

.home-body .mentor-list li span {
  background: var(--accent);
  box-shadow: 0 0 12px rgba(59, 130, 246, 0.32);
}

.home-body .student-videos-shell {
  grid-template-columns: 42px minmax(0, 920px) 42px;
}

.home-body .sv-item,
.home-body .proof-item {
  border-radius: 8px;
  border-color: rgba(239, 235, 226, 0.12);
  background: #050506;
}

.home-body .sv-item.is-active {
  border-color: rgba(59, 130, 246, 0.36);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.48);
}

.home-body .sv-item video,
.home-body .proof-item img {
  border-radius: 7px;
}

.home-body .proof-arrow,
.home-body .video-arrow {
  width: 42px;
  height: 42px;
  border-color: rgba(239, 235, 226, 0.16);
  background: rgba(17, 18, 21, 0.9);
  color: var(--text);
  box-shadow: none;
}

.home-body .proof-arrow:hover,
.home-body .video-arrow:hover {
  border-color: rgba(59, 130, 246, 0.36);
  background: rgba(24, 26, 29, 0.95);
}

.home-body .proof-dot,
.home-body .video-dot {
  border-color: rgba(245, 242, 234, 0.3);
  background: rgba(245, 242, 234, 0.22);
}

.home-body .proof-dot.active,
.home-body .video-dot.active {
  background: var(--accent);
  border-color: var(--accent);
}

.home-body .faq-list {
  gap: 10px;
}

.home-body .faq-item {
  padding: 0 18px;
}

.home-body .faq-item:hover,
.home-body .faq-item[open] {
  border-color: rgba(59, 130, 246, 0.24);
  box-shadow: 0 24px 62px rgba(0, 0, 0, 0.34);
}

.home-body .faq-item summary {
  color: var(--text);
}

.home-body .faq-item summary::after {
  color: var(--accent);
  border-color: rgba(59, 130, 246, 0.26);
  background: rgba(59, 130, 246, 0.06);
}

.home-body .faq-item p {
  border-top-color: rgba(239, 235, 226, 0.10);
  color: var(--sub);
}

.home-body .final-cta {
  width: min(1080px, calc(100% - 32px));
  margin-top: 28px;
  margin-bottom: 34px;
  padding: clamp(34px, 6vw, 68px);
  border: 1px solid rgba(239, 235, 226, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.018)),
    radial-gradient(560px 260px at 50% 0%, rgba(59, 130, 246, 0.10), transparent 64%),
    rgba(13, 14, 17, 0.88);
}

.home-body .contact-section {
  padding-top: 20px;
  padding-bottom: 74px;
}

.home-body .contact-card {
  padding: 22px;
}

.home-body .contact-card h3 {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 1.18rem;
  font-weight: 850;
}

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

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
    min-height: 66px;
  }

  .site-header::before {
    height: 66px;
  }

  .site-nav {
    display: none;
  }

  .home-body .hero-container,
  .mentor-layout,
  .learning-grid {
    grid-template-columns: 1fr;
  }

  .home-body .hero-right {
    position: static;
  }

  .mentor-portrait {
    min-height: 420px;
  }
}

@media (max-width: 640px) {
  .home-body {
    padding-bottom: 0;
  }

  .site-header {
    width: min(100% - 24px, 1180px);
    min-height: 62px;
    gap: 10px;
  }

  .site-header::before {
    height: 62px;
  }

  .brand span:last-child {
    font-size: 0.9rem;
  }

  .header-cta {
    display: none;
  }

  .home-body .hero-section {
    padding-top: 28px;
  }

  .home-body .hero-container,
  .home-body .video-section,
  .home-body .proof-section,
  .home-body .student-videos-section,
  .mentor-section,
  .home-body .final-cta {
    width: min(100% - 24px, 1180px);
  }

  .home-body .hero-container,
  .home-body .hero-left,
  .home-body .hero-right,
  .home-body .hero-title,
  .home-body .hero-subtitle,
  .home-body .lead-form,
  .hero-media-card {
    max-width: 100%;
    min-width: 0;
  }

  .home-body .hero-title {
    width: 100%;
    margin-bottom: 18px;
    font-size: clamp(2rem, 9.4vw, 2.85rem);
    line-height: 1.02;
    overflow-wrap: anywhere;
  }

  .home-body .hero-subtitle {
    width: 100%;
    max-width: min(100%, 36ch);
  }

  .home-body .gradient-text {
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .home-body .hero-subtitle {
    font-size: 0.98rem;
    line-height: 1.62;
  }

  .hero-media-card {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .hero-media-copy {
    padding: 18px;
  }

  .hero-media-copy strong {
    font-size: 1.05rem;
  }

  .hero-media-card img {
    min-width: 0;
    height: 190px;
    max-height: none;
    object-position: center 22%;
  }

  .home-body .lead-form {
    padding: 18px;
  }

  .home-body .form-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .home-body .video-section,
  .home-body .proof-section,
  .home-body .student-videos-section,
  .mentor-section {
    padding: 46px 0;
  }

  .home-body .section-heading {
    margin-bottom: 22px;
  }

  .home-body .section-heading h2,
  .home-body .final-cta h2 {
    font-size: clamp(1.85rem, 10.4vw, 3.2rem);
    line-height: 1.02;
  }

  .home-body .video-frame-wrap {
    width: 100%;
    border-radius: 8px;
  }

  .home-body .key-card {
    min-height: auto;
    padding: 20px;
  }

  .key-icon-soft {
    margin-bottom: 18px;
  }

  .mentor-portrait {
    min-height: 360px;
  }

  .home-body .mentor-card {
    padding: 22px;
  }

  .home-body .mentor-before-after {
    grid-template-columns: 1fr;
  }

  .home-body .mentor-stage-photo {
    min-height: 0;
    max-height: 520px;
  }

  .home-body .student-videos-shell {
    display: block;
  }

  .home-body .student-videos-grid {
    --student-video-width: clamp(210px, 72vw, 300px);
    padding-inline: max(8px, calc((100% - var(--student-video-width)) / 2));
  }

  .home-body .proof-shell {
    padding-inline: 0;
  }

  .home-body .proof-item {
    flex-basis: clamp(220px, 76vw, 295px);
  }

  .home-body .proof-tracker,
  .home-body .video-tracker {
    display: flex;
  }

  .home-body .final-cta {
    padding: 28px 18px;
  }

  .home-body .contact-grid {
    grid-template-columns: 1fr;
  }

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

/* Last mobile fix for the mentor section: keep labels small and title centered. */
@media (max-width: 640px) {
  .home-body .site-header {
    display: none;
  }

  .home-body .mentor-section-clean .section-heading {
    text-align: center;
    margin-bottom: 22px;
  }

  .home-body .mentor-section-clean .eyebrow.centered {
    justify-content: center;
  }

  .home-body .mentor-section-clean .section-heading h2 {
    max-width: 9ch;
    margin: 0 auto;
    font-size: clamp(2.35rem, 11vw, 3.35rem);
    line-height: 0.94;
  }

  .mentor-proof-strip {
    max-width: 360px;
    margin: 0 auto 22px;
  }

  .mentor-proof-strip span {
    top: 8px;
    right: auto;
    bottom: auto;
    left: 8px;
    width: auto;
    height: auto;
    line-height: 1;
  }

  .mentor-proof-strip img {
    max-height: 210px;
  }
}

/* Final mobile polish for "Lo que aprenderás" cards. */
@media (max-width: 640px) {
  .home-body .keys-section {
    padding-top: 34px;
  }

  .home-body .keys-grid,
  .home-body .keys-grid-premium,
  .home-body .keys-grid-secondary {
    gap: 12px;
    border-top: 0;
  }

  .home-body .keys-grid-premium .key-card,
  .home-body .keys-grid-secondary .key-card {
    position: relative;
    padding: 18px;
    border: 1px solid rgba(103, 232, 249, 0.18);
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.012)),
      radial-gradient(260px 150px at 18% 0%, rgba(34, 211, 238, 0.11), transparent 72%),
      rgba(6, 8, 10, 0.86);
    box-shadow:
      0 18px 46px rgba(0, 0, 0, 0.32),
      inset 0 1px 0 rgba(255, 255, 255, 0.055);
  }

  .home-body .keys-grid-premium .key-card::before,
  .home-body .keys-grid-secondary .key-card::before {
    content: "";
    display: block;
    position: absolute;
    inset: 8px;
    border: 1px solid rgba(103, 232, 249, 0.055);
    pointer-events: none;
  }

  .home-body .keys-grid-premium .key-card::after,
  .home-body .keys-grid-secondary .key-card::after {
    display: block;
    height: 2px;
    background: linear-gradient(90deg, rgba(34, 211, 238, 0.7), transparent);
  }

  .home-body .key-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 14px;
  }

  .home-body .key-number {
    font-size: 2rem;
    line-height: 0.9;
  }

  .home-body .key-tag {
    max-width: 145px;
    padding: 6px 9px;
    border: 1px solid rgba(103, 232, 249, 0.18);
    background: rgba(34, 211, 238, 0.07);
    border-radius: 999px;
    color: rgba(103, 232, 249, 0.94);
    font-size: 0.64rem;
    line-height: 1.12;
    text-align: right;
  }

  .home-body .key-card h3 {
    margin-bottom: 8px;
    font-size: 1.08rem;
    line-height: 1.18;
  }

  .home-body .key-card p,
  .home-body .keys-grid-secondary .key-card p {
    font-size: 0.9rem;
    line-height: 1.52;
  }

  .home-body .keys-extra {
    margin-top: 20px;
  }

  .home-body .keys-extra-title {
    margin: 0 0 12px;
    padding: 0 0 10px;
    border-bottom: 1px solid rgba(103, 232, 249, 0.18);
    color: rgba(246, 243, 234, 0.94);
    font-size: 0.82rem;
    line-height: 1.32;
    text-align: left;
  }

  .home-body .keys-grid-secondary {
    gap: 10px;
  }

  .home-body .keys-grid-secondary .key-card {
    padding: 16px 16px 16px 58px;
    min-height: 0;
  }

  .home-body .keys-grid-secondary .key-card h3 {
    display: block;
    margin-bottom: 7px;
    font-size: 1rem;
    line-height: 1.18;
  }

  .home-body .keys-grid-secondary .key-card h3::before {
    position: absolute;
    left: 16px;
    top: 17px;
    width: 30px;
    height: 30px;
    margin: 0;
    display: grid;
    place-items: center;
    border: 1px solid rgba(103, 232, 249, 0.4);
    background: rgba(34, 211, 238, 0.08);
    border-radius: 50%;
    color: #67e8f9;
    font-size: 0.72rem;
    font-weight: 950;
  }
}

/* Final simple mobile mentor section: cleaner, lighter, more premium. */
@media (max-width: 640px) {
  .home-body .mentor-section-clean {
    width: min(100% - 22px, 1180px) !important;
    padding-top: 38px !important;
    padding-bottom: 34px !important;
  }

  .home-body .mentor-section-clean .section-heading {
    margin-bottom: 18px !important;
    text-align: center !important;
  }

  .home-body .mentor-section-clean .section-heading h2 {
    max-width: 100% !important;
    font-size: clamp(2.55rem, 11vw, 3.25rem) !important;
    line-height: 0.92 !important;
  }

  .mentor-section-clean .mentor-clean-layout {
    gap: 18px !important;
  }

  .mentor-proof-strip {
    width: 100% !important;
    min-height: 0 !important;
    margin: 0 auto !important;
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 9px !important;
  }

  .mentor-proof-strip figure,
  .mentor-proof-strip figure:nth-child(1),
  .mentor-proof-strip figure:nth-child(2) {
    position: relative !important;
    inset: auto !important;
    width: auto !important;
    transform: none !important;
    overflow: hidden !important;
    border: 1px solid rgba(103, 232, 249, 0.16) !important;
    background: rgba(4, 7, 10, 0.76) !important;
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28) !important;
  }

  .mentor-proof-strip figure::before {
    inset: 8px !important;
    border-color: rgba(246, 243, 234, 0.06) !important;
  }

  .mentor-proof-strip figure::after {
    background:
      linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.46) 100%),
      radial-gradient(150px 90px at 100% 0%, rgba(34, 211, 238, 0.1), transparent 74%) !important;
  }

  .mentor-proof-strip img,
  .mentor-proof-strip figure:nth-child(1) img,
  .mentor-proof-strip figure:nth-child(2) img {
    width: 100% !important;
    height: clamp(210px, 56vw, 245px) !important;
    object-fit: cover !important;
    border: 0 !important;
  }

  .mentor-proof-strip figure:nth-child(1) img {
    object-position: 48% 35% !important;
  }

  .mentor-proof-strip figure:nth-child(2) img {
    object-position: 50% 42% !important;
  }

  .mentor-proof-strip span {
    top: 10px !important;
    left: 10px !important;
    padding: 6px 9px !important;
    border: 1px solid rgba(103, 232, 249, 0.24) !important;
    background: rgba(2, 5, 7, 0.78) !important;
    color: #72f0ff !important;
    font-size: 0.56rem !important;
    letter-spacing: 0.12em !important;
  }

  .mentor-copy {
    padding: 0 !important;
    border: 0 !important;
  }

  .mentor-copy .mentor-intro:first-child {
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    color: rgba(246, 243, 234, 0.72) !important;
    font-size: 1.03rem !important;
    line-height: 1.62 !important;
    text-align: left !important;
  }

  .mentor-copy .mentor-intro:first-child strong {
    color: #f6f3ea !important;
  }

  .home-body .mentor-list {
    margin-top: 16px !important;
    display: grid !important;
    gap: 0 !important;
    border-top: 1px solid rgba(103, 232, 249, 0.13);
  }

  .home-body .mentor-list li {
    position: relative !important;
    display: block !important;
    min-height: 0 !important;
    padding: 13px 0 13px 34px !important;
    border: 0 !important;
    border-bottom: 1px solid rgba(103, 232, 249, 0.1) !important;
    background: transparent !important;
    color: rgba(246, 243, 234, 0.62) !important;
    font-size: 0.9rem !important;
    line-height: 1.52 !important;
  }

  .home-body .mentor-list li span {
    position: absolute !important;
    left: 0 !important;
    top: 16px !important;
    width: 18px !important;
    height: 18px !important;
    margin: 0 !important;
    border: 1px solid rgba(103, 232, 249, 0.28) !important;
    background:
      radial-gradient(circle, rgba(103, 232, 249, 0.55), rgba(34, 211, 238, 0.1) 52%, transparent 70%),
      rgba(34, 211, 238, 0.05) !important;
    box-shadow: 0 0 20px rgba(34, 211, 238, 0.16);
  }

  .home-body .mentor-list li strong {
    display: inline !important;
    color: #f6f3ea !important;
  }

  .mentor-copy .mentor-intro:not(:first-child) {
    margin-top: 16px !important;
    padding: 14px 15px !important;
    border: 1px solid rgba(246, 243, 234, 0.08) !important;
    background: rgba(246, 243, 234, 0.035) !important;
    color: rgba(246, 243, 234, 0.66) !important;
    font-size: 0.92rem !important;
    line-height: 1.55 !important;
  }

  .mentor-copy .btn-secondary {
    width: 100% !important;
    min-height: 50px !important;
    margin-top: 14px !important;
    border: 0 !important;
    background: #f6f3ea !important;
    color: #050505 !important;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.3) !important;
  }
}

/* Absolute final buttons and mobile form polish. */
.home-body .btn-primary,
.home-body .btn-secondary,
.home-body .hero-main-cta,
.masterclass-body .btn-primary,
.masterclass-body .btn-secondary,
.masterclass-body .header-cta {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  transition:
    transform 220ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 220ms ease,
    background 220ms ease,
    color 220ms ease,
    box-shadow 220ms ease;
}

.home-body .btn-primary::after,
.home-body .btn-secondary::after,
.home-body .hero-main-cta::after,
.masterclass-body .btn-primary::after,
.masterclass-body .btn-secondary::after,
.masterclass-body .header-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  transform: translateX(-120%) skewX(-18deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.42), transparent);
  opacity: 0;
  transition:
    transform 520ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 220ms ease;
}

.home-body .btn-primary:hover,
.home-body .btn-secondary:hover,
.home-body .hero-main-cta:hover,
.masterclass-body .btn-primary:hover,
.masterclass-body .btn-secondary:hover,
.masterclass-body .header-cta:hover {
  transform: translateY(-2px);
  box-shadow:
    0 18px 46px rgba(0, 0, 0, 0.34),
    0 0 0 1px rgba(103, 232, 249, 0.08) inset;
}

.home-body .btn-primary:hover::after,
.home-body .btn-secondary:hover::after,
.home-body .hero-main-cta:hover::after,
.masterclass-body .btn-primary:hover::after,
.masterclass-body .btn-secondary:hover::after,
.masterclass-body .header-cta:hover::after {
  opacity: 1;
  transform: translateX(120%) skewX(-18deg);
}

.home-body .btn-primary:active,
.home-body .btn-secondary:active,
.home-body .hero-main-cta:active,
.masterclass-body .btn-primary:active,
.masterclass-body .btn-secondary:active,
.masterclass-body .header-cta:active {
  transform: translateY(0) scale(0.985);
}

/* True final step-2 form design: organized, premium and dynamic. */
.lead-form[data-current-step="2"] {
  max-width: 1060px !important;
}

.lead-form[data-current-step="2"] .form-step[data-form-step="2"].active {
  max-width: 900px !important;
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 16px !important;
  margin-inline: auto;
}

.lead-form[data-current-step="2"] .choice-group {
  position: relative;
  isolation: isolate;
  display: grid !important;
  align-content: start;
  gap: 13px !important;
  padding: 17px !important;
  overflow: hidden;
  border: 1px solid rgba(103, 232, 249, 0.14) !important;
  border-radius: 8px;
  background:
    radial-gradient(280px 130px at 100% -10%, rgba(103, 232, 249, 0.105), transparent 68%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.01)),
    rgba(4, 6, 9, 0.62) !important;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.045);
}

.lead-form[data-current-step="2"] .choice-group::after {
  content: "";
  position: absolute;
  inset: auto 16px 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(34, 211, 238, 0.42), transparent);
  opacity: 0.75;
}

.lead-form[data-current-step="2"] .choice-group:nth-of-type(3),
.lead-form[data-current-step="2"] .choice-group:nth-of-type(4),
.lead-form[data-current-step="2"] .form-actions,
.lead-form[data-current-step="2"] .form-error {
  grid-column: 1 / -1 !important;
}

.lead-form[data-current-step="2"] .choice-group > p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 !important;
  color: rgba(246, 243, 234, 0.78) !important;
  font-size: 0.7rem !important;
  letter-spacing: 0.1em !important;
}

.lead-form[data-current-step="2"] .choice-group > p::before {
  display: grid;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  place-items: center;
  border: 1px solid rgba(103, 232, 249, 0.25);
  border-radius: 50%;
  background: radial-gradient(circle at 50% 20%, rgba(103, 232, 249, 0.22), transparent 62%), rgba(34, 211, 238, 0.06);
  font-size: 0.95rem;
}

.lead-form[data-current-step="2"] .choice-group:nth-of-type(1) > p::before { content: "🧭"; }
.lead-form[data-current-step="2"] .choice-group:nth-of-type(2) > p::before { content: "💶"; }
.lead-form[data-current-step="2"] .choice-group:nth-of-type(3) > p::before { content: "💼"; }
.lead-form[data-current-step="2"] .choice-group:nth-of-type(4) > p::before { content: "🚀"; }

.lead-form[data-current-step="2"] .choice-grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 9px !important;
}

.lead-form[data-current-step="2"] .choice-group:nth-of-type(3) .choice-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}

.lead-form[data-current-step="2"] .choice-grid-goals {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}

.lead-form[data-current-step="2"] .choice-grid span {
  position: relative;
  display: flex !important;
  align-items: center;
  gap: 9px;
  min-height: 50px !important;
  padding: 10px 12px !important;
  overflow: hidden;
  border: 1px solid rgba(246, 243, 234, 0.11) !important;
  border-radius: 6px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.028), rgba(255, 255, 255, 0.006)), rgba(0, 0, 0, 0.22) !important;
  color: rgba(246, 243, 234, 0.73) !important;
  font-size: 0.83rem !important;
  font-weight: 750 !important;
  line-height: 1.18 !important;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.lead-form[data-current-step="2"] .choice-grid span::before {
  display: grid;
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
  place-items: center;
  border: 1px solid rgba(103, 232, 249, 0.18);
  border-radius: 50%;
  background: rgba(34, 211, 238, 0.055);
  font-size: 0.85rem;
}

.lead-form[data-current-step="2"] .choice-group:nth-of-type(1) .choice-grid label:nth-child(1) span::before { content: "🌱"; }
.lead-form[data-current-step="2"] .choice-group:nth-of-type(1) .choice-grid label:nth-child(2) span::before { content: "⚡"; }
.lead-form[data-current-step="2"] .choice-group:nth-of-type(1) .choice-grid label:nth-child(3) span::before { content: "🎯"; }
.lead-form[data-current-step="2"] .choice-group:nth-of-type(1) .choice-grid label:nth-child(4) span::before { content: "📈"; }
.lead-form[data-current-step="2"] .choice-group:nth-of-type(1) .choice-grid label:nth-child(5) span::before { content: "👑"; }
.lead-form[data-current-step="2"] .choice-group:nth-of-type(2) .choice-grid label:nth-child(1) span::before { content: "○"; }
.lead-form[data-current-step="2"] .choice-group:nth-of-type(2) .choice-grid label:nth-child(2) span::before { content: "💸"; }
.lead-form[data-current-step="2"] .choice-group:nth-of-type(2) .choice-grid label:nth-child(3) span::before { content: "💶"; }
.lead-form[data-current-step="2"] .choice-group:nth-of-type(2) .choice-grid label:nth-child(4) span::before { content: "💎"; }
.lead-form[data-current-step="2"] .choice-group:nth-of-type(2) .choice-grid label:nth-child(5) span::before { content: "🚀"; }
.lead-form[data-current-step="2"] .choice-group:nth-of-type(3) .choice-grid label:nth-child(1) span::before { content: "🎓"; }
.lead-form[data-current-step="2"] .choice-group:nth-of-type(3) .choice-grid label:nth-child(2) span::before { content: "🏢"; }
.lead-form[data-current-step="2"] .choice-group:nth-of-type(3) .choice-grid label:nth-child(3) span::before { content: "🛒"; }
.lead-form[data-current-step="2"] .choice-group:nth-of-type(3) .choice-grid label:nth-child(4) span::before { content: "💻"; }
.lead-form[data-current-step="2"] .choice-group:nth-of-type(3) .choice-grid label:nth-child(5) span::before { content: "🔎"; }
.lead-form[data-current-step="2"] .choice-group:nth-of-type(3) .choice-grid label:nth-child(6) span::before { content: "✨"; }
.lead-form[data-current-step="2"] .choice-group:nth-of-type(4) .choice-grid label:nth-child(1) span::before { content: "🌊"; }
.lead-form[data-current-step="2"] .choice-group:nth-of-type(4) .choice-grid label:nth-child(2) span::before { content: "📊"; }
.lead-form[data-current-step="2"] .choice-group:nth-of-type(4) .choice-grid label:nth-child(3) span::before { content: "🗝️"; }
.lead-form[data-current-step="2"] .choice-group:nth-of-type(4) .choice-grid label:nth-child(4) span::before { content: "🤖"; }

.lead-form[data-current-step="2"] .choice-grid span:hover {
  transform: translateY(-1px);
  border-color: rgba(103, 232, 249, 0.28) !important;
  color: #f6f3ea !important;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.18);
}

.lead-form[data-current-step="2"] .choice-grid input:checked + span {
  border-color: rgba(103, 232, 249, 0.7) !important;
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.18), rgba(246, 243, 234, 0.035)), rgba(1, 8, 10, 0.72) !important;
  color: #f6f3ea !important;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.24), 0 0 0 1px rgba(34, 211, 238, 0.08) inset;
}

.lead-form[data-current-step="2"] .choice-grid input:checked + span::after {
  content: "✓";
  position: absolute;
  right: 10px;
  top: 9px;
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border-radius: 50%;
  background: #67e8f9;
  color: #031014;
  font-size: 0.68rem;
  font-weight: 950;
}

.lead-form[data-current-step="2"] .form-actions {
  display: grid !important;
  grid-template-columns: auto minmax(280px, 360px) !important;
  align-items: center;
  gap: 16px !important;
  margin-top: 8px !important;
}

.lead-form[data-current-step="2"] .form-back {
  justify-self: start;
  color: rgba(246, 243, 234, 0.58);
}

.lead-form[data-current-step="2"] .btn-primary {
  justify-self: end;
  min-height: 56px !important;
}

@media (max-width: 760px) {
  .lead-form[data-current-step="2"] .form-step[data-form-step="2"].active {
    grid-template-columns: 1fr !important;
    gap: 11px !important;
  }

  .lead-form[data-current-step="2"] .choice-group {
    padding: 12px !important;
  }

  .lead-form[data-current-step="2"] .choice-grid,
  .lead-form[data-current-step="2"] .choice-group:nth-of-type(3) .choice-grid,
  .lead-form[data-current-step="2"] .choice-grid-goals {
    grid-template-columns: 1fr !important;
  }

  .lead-form[data-current-step="2"] .choice-grid span {
    min-height: 44px !important;
    padding: 9px 10px !important;
    font-size: 0.8rem !important;
  }

  .lead-form[data-current-step="2"] .form-actions {
    grid-template-columns: 1fr !important;
  }

  .lead-form[data-current-step="2"] .btn-primary,
  .lead-form[data-current-step="2"] .form-back {
    justify-self: stretch;
  }
}

/* True final footer simplification: no mobile footer, no boxed footer, no nav buttons. */
.site-footer {
  width: min(1180px, calc(100% - 40px)) !important;
  margin: clamp(46px, 7vw, 82px) auto 0 !important;
  padding: 28px 0 34px !important;
  overflow: visible !important;
  border: 0 !important;
  border-top: 1px solid rgba(103, 232, 249, 0.14) !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.site-footer::before,
.site-footer::after {
  display: none !important;
}

.footer-inner {
  display: grid !important;
  grid-template-columns: 1fr !important;
  justify-items: center !important;
  gap: 10px !important;
  text-align: center !important;
}

.footer-brand {
  display: grid !important;
  justify-items: center !important;
  gap: 8px !important;
}

.footer-brand::before {
  content: "Kevin Sanz";
  color: #f6f3ea;
  font-family: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  line-height: 1;
}

.footer-brand strong {
  display: none !important;
}

.footer-brand p {
  max-width: 520px !important;
  margin: 0 !important;
  color: rgba(246, 243, 234, 0.5) !important;
  font-size: 0.88rem !important;
  line-height: 1.55 !important;
}

.footer-links {
  display: none !important;
}

.footer-copy {
  width: auto !important;
  margin: 8px 0 0 !important;
  padding: 0 !important;
  border: 0 !important;
  color: rgba(246, 243, 234, 0.32) !important;
  font-size: 0.72rem !important;
}

@media (max-width: 760px) {
  .site-footer {
    display: none !important;
  }
}

/* True final footer: premium closure, not a header copy. */
.site-footer {
  position: relative;
  width: min(1180px, calc(100% - 40px)) !important;
  margin: clamp(56px, 8vw, 104px) auto 0 !important;
  padding: clamp(34px, 5vw, 54px) clamp(18px, 4vw, 44px) 30px !important;
  overflow: hidden;
  border: 1px solid rgba(103, 232, 249, 0.13) !important;
  border-radius: 8px;
  background:
    radial-gradient(520px 180px at 50% 0%, rgba(103, 232, 249, 0.105), transparent 72%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.038), rgba(255, 255, 255, 0.008)),
    rgba(3, 6, 8, 0.74) !important;
  box-shadow:
    0 34px 100px rgba(0, 0, 0, 0.36),
    inset 0 1px 0 rgba(255, 255, 255, 0.045);
  color: rgba(246, 243, 234, 0.68);
}

.site-footer::before {
  content: "";
  position: absolute;
  left: clamp(18px, 4vw, 44px);
  right: clamp(18px, 4vw, 44px);
  top: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(34, 211, 238, 0.7), transparent);
  opacity: 0.78;
}

.site-footer::after {
  content: "KS";
  position: absolute;
  right: clamp(18px, 4vw, 44px);
  top: 24px;
  color: rgba(246, 243, 234, 0.035);
  font-family: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  font-size: clamp(4rem, 9vw, 8rem);
  font-weight: 800;
  line-height: 0.8;
  pointer-events: none;
}

.footer-inner {
  position: relative;
  z-index: 1;
  display: grid !important;
  grid-template-columns: 1fr !important;
  justify-items: center;
  gap: 22px !important;
  text-align: center;
}

.footer-brand {
  display: grid !important;
  justify-items: center;
  gap: 12px !important;
}

.footer-brand::before {
  content: "Kevin Sanz";
  display: block;
  color: #f6f3ea;
  font-family: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 800;
  line-height: 0.9;
}

.footer-brand strong {
  display: none !important;
}

.footer-brand p {
  max-width: 560px !important;
  margin: 0 !important;
  color: rgba(246, 243, 234, 0.58) !important;
  font-size: 0.95rem !important;
  line-height: 1.65 !important;
}

.footer-links {
  display: flex !important;
  flex-wrap: wrap;
  justify-content: center !important;
  gap: 8px !important;
  width: auto !important;
  padding: 8px;
  border: 1px solid rgba(246, 243, 234, 0.09);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.18);
}

.footer-links a {
  position: relative;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 15px;
  border-radius: 999px;
  color: rgba(246, 243, 234, 0.68) !important;
  font-size: 0.76rem !important;
  font-weight: 850 !important;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition:
    color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.footer-links a:hover {
  transform: translateY(-1px);
  background: rgba(34, 211, 238, 0.09);
  color: #f6f3ea !important;
}

.footer-copy {
  width: min(100%, 720px);
  margin: 4px 0 0 !important;
  padding-top: 18px !important;
  border-top: 1px solid rgba(246, 243, 234, 0.08) !important;
  color: rgba(246, 243, 234, 0.38) !important;
  font-size: 0.76rem !important;
  line-height: 1.5;
}

@media (max-width: 640px) {
  .site-footer {
    width: min(100% - 22px, 1180px) !important;
    margin-top: 42px !important;
    padding: 30px 14px 24px !important;
  }

  .site-footer::after {
    right: 14px;
    top: 20px;
    font-size: 4.6rem;
  }

  .footer-inner {
    gap: 18px !important;
  }

  .footer-brand::before {
    font-size: clamp(2.35rem, 12vw, 3.3rem);
  }

  .footer-brand p {
    max-width: 28ch !important;
    font-size: 0.88rem !important;
  }

  .footer-links {
    width: 100% !important;
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 8px !important;
    padding: 8px !important;
    border-radius: 8px;
  }

  .footer-links a {
    min-height: 42px;
    padding: 0 10px;
    background: rgba(255, 255, 255, 0.018);
    font-size: 0.74rem !important;
  }

  .footer-copy {
    padding-top: 14px !important;
    font-size: 0.7rem !important;
  }
}

/* True final step-2 form design: organized, premium and dynamic. */
.lead-form[data-current-step="2"] {
  max-width: 1060px !important;
}

.lead-form[data-current-step="2"] .form-step[data-form-step="2"].active {
  max-width: 900px !important;
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 16px !important;
  margin-inline: auto;
}

.lead-form[data-current-step="2"] .choice-group {
  position: relative;
  isolation: isolate;
  display: grid !important;
  align-content: start;
  gap: 13px !important;
  min-height: 0;
  padding: 17px !important;
  overflow: hidden;
  border: 1px solid rgba(103, 232, 249, 0.14) !important;
  border-radius: 8px;
  background:
    radial-gradient(280px 130px at 100% -10%, rgba(103, 232, 249, 0.105), transparent 68%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.01)),
    rgba(4, 6, 9, 0.62) !important;
  box-shadow:
    0 18px 50px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.045);
}

.lead-form[data-current-step="2"] .choice-group::after {
  content: "";
  position: absolute;
  inset: auto 16px 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(34, 211, 238, 0.42), transparent);
  opacity: 0.75;
}

.lead-form[data-current-step="2"] .choice-group:nth-of-type(3),
.lead-form[data-current-step="2"] .choice-group:nth-of-type(4),
.lead-form[data-current-step="2"] .form-actions,
.lead-form[data-current-step="2"] .form-error {
  grid-column: 1 / -1 !important;
}

.lead-form[data-current-step="2"] .choice-group > p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 !important;
  color: rgba(246, 243, 234, 0.78) !important;
  font-size: 0.7rem !important;
  letter-spacing: 0.1em !important;
}

.lead-form[data-current-step="2"] .choice-group > p::before {
  display: grid;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  place-items: center;
  border: 1px solid rgba(103, 232, 249, 0.25);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 20%, rgba(103, 232, 249, 0.22), transparent 62%),
    rgba(34, 211, 238, 0.06);
  font-size: 0.95rem;
}

.lead-form[data-current-step="2"] .choice-group:nth-of-type(1) > p::before { content: "🧭"; }
.lead-form[data-current-step="2"] .choice-group:nth-of-type(2) > p::before { content: "💶"; }
.lead-form[data-current-step="2"] .choice-group:nth-of-type(3) > p::before { content: "💼"; }
.lead-form[data-current-step="2"] .choice-group:nth-of-type(4) > p::before { content: "🚀"; }

.lead-form[data-current-step="2"] .choice-grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 9px !important;
}

.lead-form[data-current-step="2"] .choice-group:nth-of-type(3) .choice-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}

.lead-form[data-current-step="2"] .choice-grid-goals {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}

.lead-form[data-current-step="2"] .choice-grid label {
  min-width: 0;
}

.lead-form[data-current-step="2"] .choice-grid span {
  position: relative;
  display: flex !important;
  align-items: center;
  gap: 9px;
  min-height: 50px !important;
  padding: 10px 12px !important;
  overflow: hidden;
  border: 1px solid rgba(246, 243, 234, 0.11) !important;
  border-radius: 6px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.028), rgba(255, 255, 255, 0.006)),
    rgba(0, 0, 0, 0.22) !important;
  color: rgba(246, 243, 234, 0.73) !important;
  font-size: 0.83rem !important;
  font-weight: 750 !important;
  line-height: 1.18 !important;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.lead-form[data-current-step="2"] .choice-grid span::before {
  display: grid;
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
  place-items: center;
  border: 1px solid rgba(103, 232, 249, 0.18);
  border-radius: 50%;
  background: rgba(34, 211, 238, 0.055);
  font-size: 0.85rem;
}

.lead-form[data-current-step="2"] .choice-group:nth-of-type(1) .choice-grid label:nth-child(1) span::before { content: "🌱"; }
.lead-form[data-current-step="2"] .choice-group:nth-of-type(1) .choice-grid label:nth-child(2) span::before { content: "⚡"; }
.lead-form[data-current-step="2"] .choice-group:nth-of-type(1) .choice-grid label:nth-child(3) span::before { content: "🎯"; }
.lead-form[data-current-step="2"] .choice-group:nth-of-type(1) .choice-grid label:nth-child(4) span::before { content: "📈"; }
.lead-form[data-current-step="2"] .choice-group:nth-of-type(1) .choice-grid label:nth-child(5) span::before { content: "👑"; }

.lead-form[data-current-step="2"] .choice-group:nth-of-type(2) .choice-grid label:nth-child(1) span::before { content: "○"; }
.lead-form[data-current-step="2"] .choice-group:nth-of-type(2) .choice-grid label:nth-child(2) span::before { content: "💸"; }
.lead-form[data-current-step="2"] .choice-group:nth-of-type(2) .choice-grid label:nth-child(3) span::before { content: "💶"; }
.lead-form[data-current-step="2"] .choice-group:nth-of-type(2) .choice-grid label:nth-child(4) span::before { content: "💎"; }
.lead-form[data-current-step="2"] .choice-group:nth-of-type(2) .choice-grid label:nth-child(5) span::before { content: "🚀"; }

.lead-form[data-current-step="2"] .choice-group:nth-of-type(3) .choice-grid label:nth-child(1) span::before { content: "🎓"; }
.lead-form[data-current-step="2"] .choice-group:nth-of-type(3) .choice-grid label:nth-child(2) span::before { content: "🏢"; }
.lead-form[data-current-step="2"] .choice-group:nth-of-type(3) .choice-grid label:nth-child(3) span::before { content: "🛒"; }
.lead-form[data-current-step="2"] .choice-group:nth-of-type(3) .choice-grid label:nth-child(4) span::before { content: "💻"; }
.lead-form[data-current-step="2"] .choice-group:nth-of-type(3) .choice-grid label:nth-child(5) span::before { content: "🔎"; }
.lead-form[data-current-step="2"] .choice-group:nth-of-type(3) .choice-grid label:nth-child(6) span::before { content: "✨"; }

.lead-form[data-current-step="2"] .choice-group:nth-of-type(4) .choice-grid label:nth-child(1) span::before { content: "🌊"; }
.lead-form[data-current-step="2"] .choice-group:nth-of-type(4) .choice-grid label:nth-child(2) span::before { content: "📊"; }
.lead-form[data-current-step="2"] .choice-group:nth-of-type(4) .choice-grid label:nth-child(3) span::before { content: "🗝️"; }
.lead-form[data-current-step="2"] .choice-group:nth-of-type(4) .choice-grid label:nth-child(4) span::before { content: "🤖"; }

.lead-form[data-current-step="2"] .choice-grid span:hover {
  transform: translateY(-1px);
  border-color: rgba(103, 232, 249, 0.28) !important;
  color: #f6f3ea !important;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.18);
}

.lead-form[data-current-step="2"] .choice-grid input:checked + span {
  border-color: rgba(103, 232, 249, 0.7) !important;
  background:
    linear-gradient(135deg, rgba(34, 211, 238, 0.18), rgba(246, 243, 234, 0.035)),
    rgba(1, 8, 10, 0.72) !important;
  color: #f6f3ea !important;
  box-shadow:
    0 14px 30px rgba(0, 0, 0, 0.24),
    0 0 0 1px rgba(34, 211, 238, 0.08) inset;
}

.lead-form[data-current-step="2"] .choice-grid input:checked + span::after {
  content: "✓";
  position: absolute;
  right: 10px;
  top: 9px;
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border-radius: 50%;
  background: #67e8f9;
  color: #031014;
  font-size: 0.68rem;
  font-weight: 950;
}

.lead-form[data-current-step="2"] .form-actions {
  display: grid !important;
  grid-template-columns: auto minmax(280px, 360px) !important;
  align-items: center;
  gap: 16px !important;
  margin-top: 8px !important;
  padding-top: 4px;
}

.lead-form[data-current-step="2"] .form-back {
  justify-self: start;
  color: rgba(246, 243, 234, 0.58);
}

.lead-form[data-current-step="2"] .btn-primary {
  justify-self: end;
  min-height: 56px !important;
}

@media (max-width: 760px) {
  .lead-form[data-current-step="2"] .form-step[data-form-step="2"].active {
    grid-template-columns: 1fr !important;
    gap: 11px !important;
  }

  .lead-form[data-current-step="2"] .choice-group {
    padding: 12px !important;
  }

  .lead-form[data-current-step="2"] .choice-grid,
  .lead-form[data-current-step="2"] .choice-group:nth-of-type(3) .choice-grid,
  .lead-form[data-current-step="2"] .choice-grid-goals {
    grid-template-columns: 1fr !important;
  }

  .lead-form[data-current-step="2"] .choice-grid span {
    min-height: 44px !important;
    padding: 9px 10px !important;
    font-size: 0.8rem !important;
  }

  .lead-form[data-current-step="2"] .form-actions {
    grid-template-columns: 1fr !important;
  }

  .lead-form[data-current-step="2"] .btn-primary,
  .lead-form[data-current-step="2"] .form-back {
    justify-self: stretch;
  }
}

.home-body .btn-primary span,
.home-body .btn-secondary span,
.home-body .hero-main-cta span,
.masterclass-body .btn-primary span,
.masterclass-body .btn-secondary span {
  transition: transform 220ms ease;
}

.home-body .btn-primary:hover span,
.home-body .btn-secondary:hover span,
.home-body .hero-main-cta:hover span,
.masterclass-body .btn-primary:hover span,
.masterclass-body .btn-secondary:hover span {
  transform: translateX(4px);
}

@media (max-width: 640px) {
  .home-body .form-section {
    width: min(100% - 22px, 1040px) !important;
    padding-top: 38px !important;
    padding-bottom: 36px !important;
  }

  .home-body .form-section .lead-form,
  .home-body .form-section .lead-form[data-current-step="1"],
  .home-body .form-section .lead-form[data-current-step="2"] {
    max-width: 100% !important;
    padding: 18px !important;
    border: 1px solid rgba(246, 243, 234, 0.12) !important;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.01)),
      rgba(4, 6, 8, 0.88) !important;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.34) !important;
  }

  .home-body .form-header {
    margin-bottom: 18px !important;
    text-align: center !important;
  }

  .home-body .form-header span:first-child {
    font-size: 0.62rem !important;
    letter-spacing: 0.16em !important;
  }

  .home-body .form-header h2,
  .lead-form[data-current-step="2"] .form-header h2 {
    max-width: 12ch !important;
    margin-inline: auto !important;
    font-size: clamp(1.85rem, 8.4vw, 2.45rem) !important;
    line-height: 1 !important;
  }

  .form-progress {
    grid-template-columns: 44px minmax(28px, 1fr) 44px minmax(28px, 1fr) 44px !important;
    max-width: 278px !important;
    gap: 0 !important;
    margin: 0 auto 22px !important;
    align-items: start !important;
  }

  .form-progress-line {
    height: 2px !important;
    margin-top: 15px !important;
    margin-inline: -7px !important;
    background: rgba(246, 243, 234, 0.14) !important;
  }

  .form-step-dot {
    gap: 6px !important;
  }

  .form-step-dot strong {
    width: 32px !important;
    height: 32px !important;
    font-size: 0.82rem !important;
  }

  .form-step-dot span {
    display: block !important;
    max-width: 48px !important;
    font-size: 0.48rem !important;
    line-height: 1.05 !important;
    letter-spacing: 0.045em !important;
  }

  .form-step.active,
  .lead-form[data-current-step="2"] .form-step[data-form-step="2"].active {
    max-width: 100% !important;
    gap: 12px !important;
  }

  .form-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  .home-body .form-section .input-wrap {
    gap: 7px !important;
  }

  .home-body .form-section .input-wrap span,
  .choice-group > p {
    color: rgba(246, 243, 234, 0.64) !important;
    font-size: 0.61rem !important;
    letter-spacing: 0.1em !important;
  }

  .home-body .form-section .input-wrap input,
  .home-body .form-section .input-wrap select {
    width: 100% !important;
    min-height: 50px !important;
    padding: 12px 13px !important;
    border: 1px solid rgba(246, 243, 234, 0.13) !important;
    background: rgba(0, 0, 0, 0.34) !important;
    color: #f6f3ea !important;
    font-size: 0.98rem !important;
    line-height: 1.2 !important;
    box-shadow: none !important;
  }

  .home-body .form-section .input-wrap input::placeholder {
    color: rgba(150, 164, 176, 0.72) !important;
  }

  .home-body .form-section .input-wrap input:focus,
  .home-body .form-section .input-wrap select:focus {
    border-color: rgba(103, 232, 249, 0.58) !important;
    box-shadow:
      0 0 0 3px rgba(34, 211, 238, 0.08),
      0 14px 34px rgba(0, 0, 0, 0.22) !important;
  }

  .phone-field {
    display: grid !important;
    grid-template-columns: minmax(108px, 0.42fr) minmax(0, 1fr) !important;
    gap: 8px !important;
    align-items: stretch !important;
  }

  .phone-code-group {
    min-width: 0 !important;
  }

  .phone-code {
    min-height: 50px !important;
    padding-inline: 11px !important;
    font-weight: 850 !important;
  }

  .phone-code-custom.visible {
    margin-top: 8px !important;
  }

  .form-next,
  .home-body .form-section .btn-primary {
    width: 100% !important;
    min-height: 52px !important;
    margin-top: 4px !important;
    border: 0 !important;
    background:
      linear-gradient(135deg, #f8f4e9 0%, #e8fbff 52%, #88f3ff 100%) !important;
    color: #050505 !important;
    font-size: 0.78rem !important;
    letter-spacing: 0.1em !important;
    box-shadow:
      0 18px 44px rgba(0, 0, 0, 0.34),
      0 0 0 1px rgba(255, 255, 255, 0.16) inset !important;
  }

  .home-body .form-section .form-privacy {
    margin-top: 18px !important;
    padding-top: 14px !important;
    color: rgba(246, 243, 234, 0.42) !important;
    font-size: 0.72rem !important;
    line-height: 1.45 !important;
  }

  .lead-form[data-current-step="2"] .choice-group {
    padding: 10px !important;
    border: 1px solid rgba(246, 243, 234, 0.09) !important;
    background: rgba(255, 255, 255, 0.012) !important;
  }

  .lead-form[data-current-step="2"] .choice-grid span {
    min-height: 42px !important;
    padding: 10px 11px !important;
    font-size: 0.78rem !important;
  }

  .lead-form[data-current-step="2"] .form-actions {
    grid-template-columns: 1fr !important;
  }
}

/* Absolute final buttons: sharper, animated and consistent. */
.home-body .btn-primary,
.home-body .btn-secondary,
.home-body .hero-main-cta,
.masterclass-body .btn-primary,
.masterclass-body .btn-secondary,
.masterclass-body .header-cta {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  transition:
    transform 220ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 220ms ease,
    background 220ms ease,
    color 220ms ease,
    box-shadow 220ms ease;
}

.home-body .btn-primary::after,
.home-body .btn-secondary::after,
.home-body .hero-main-cta::after,
.masterclass-body .btn-primary::after,
.masterclass-body .btn-secondary::after,
.masterclass-body .header-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  transform: translateX(-120%) skewX(-18deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.42), transparent);
  opacity: 0;
  transition:
    transform 520ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 220ms ease;
}

.home-body .btn-primary:hover,
.home-body .btn-secondary:hover,
.home-body .hero-main-cta:hover,
.masterclass-body .btn-primary:hover,
.masterclass-body .btn-secondary:hover,
.masterclass-body .header-cta:hover {
  transform: translateY(-2px);
  box-shadow:
    0 18px 46px rgba(0, 0, 0, 0.34),
    0 0 0 1px rgba(103, 232, 249, 0.08) inset;
}

.home-body .btn-primary:hover::after,
.home-body .btn-secondary:hover::after,
.home-body .hero-main-cta:hover::after,
.masterclass-body .btn-primary:hover::after,
.masterclass-body .btn-secondary:hover::after,
.masterclass-body .header-cta:hover::after {
  opacity: 1;
  transform: translateX(120%) skewX(-18deg);
}

.home-body .btn-primary:active,
.home-body .btn-secondary:active,
.home-body .hero-main-cta:active,
.masterclass-body .btn-primary:active,
.masterclass-body .btn-secondary:active,
.masterclass-body .header-cta:active {
  transform: translateY(0) scale(0.985);
}

.home-body .btn-primary span,
.home-body .btn-secondary span,
.home-body .hero-main-cta span,
.masterclass-body .btn-primary span,
.masterclass-body .btn-secondary span {
  transition: transform 220ms ease;
}

.home-body .btn-primary:hover span,
.home-body .btn-secondary:hover span,
.home-body .hero-main-cta:hover span,
.masterclass-body .btn-primary:hover span,
.masterclass-body .btn-secondary:hover span {
  transform: translateX(4px);
}

/* Absolute final mobile form: compact, aligned and professional. */
@media (max-width: 640px) {
  .home-body .form-section {
    width: min(100% - 22px, 1040px) !important;
    padding-top: 38px !important;
    padding-bottom: 36px !important;
  }

  .home-body .form-section .lead-form,
  .home-body .form-section .lead-form[data-current-step="1"],
  .home-body .form-section .lead-form[data-current-step="2"] {
    max-width: 100% !important;
    padding: 18px !important;
    border: 1px solid rgba(246, 243, 234, 0.12) !important;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.01)),
      rgba(4, 6, 8, 0.88) !important;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.34) !important;
  }

  .home-body .form-header {
    margin-bottom: 18px !important;
    text-align: center !important;
  }

  .home-body .form-header span:first-child {
    font-size: 0.62rem !important;
    letter-spacing: 0.16em !important;
  }

  .home-body .form-header h2,
  .lead-form[data-current-step="2"] .form-header h2 {
    max-width: 12ch !important;
    margin-inline: auto !important;
    font-size: clamp(1.85rem, 8.4vw, 2.45rem) !important;
    line-height: 1 !important;
  }

  .form-progress {
    grid-template-columns: 44px minmax(28px, 1fr) 44px minmax(28px, 1fr) 44px !important;
    max-width: 278px !important;
    gap: 0 !important;
    margin: 0 auto 22px !important;
    align-items: start !important;
  }

  .form-progress-line {
    height: 2px !important;
    margin-top: 15px !important;
    margin-inline: -7px !important;
    background: rgba(246, 243, 234, 0.14) !important;
  }

  .form-step-dot {
    gap: 6px !important;
  }

  .form-step-dot strong {
    width: 32px !important;
    height: 32px !important;
    font-size: 0.82rem !important;
  }

  .form-step-dot span {
    display: block !important;
    max-width: 48px !important;
    font-size: 0.48rem !important;
    line-height: 1.05 !important;
    letter-spacing: 0.045em !important;
  }

  .form-step.active,
  .lead-form[data-current-step="2"] .form-step[data-form-step="2"].active {
    max-width: 100% !important;
    gap: 12px !important;
  }

  .form-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  .home-body .form-section .input-wrap {
    gap: 7px !important;
  }

  .home-body .form-section .input-wrap span,
  .choice-group > p {
    color: rgba(246, 243, 234, 0.64) !important;
    font-size: 0.61rem !important;
    letter-spacing: 0.1em !important;
  }

  .home-body .form-section .input-wrap input,
  .home-body .form-section .input-wrap select {
    width: 100% !important;
    min-height: 50px !important;
    padding: 12px 13px !important;
    border: 1px solid rgba(246, 243, 234, 0.13) !important;
    background: rgba(0, 0, 0, 0.34) !important;
    color: #f6f3ea !important;
    font-size: 0.98rem !important;
    line-height: 1.2 !important;
    box-shadow: none !important;
  }

  .home-body .form-section .input-wrap input::placeholder {
    color: rgba(150, 164, 176, 0.72) !important;
  }

  .home-body .form-section .input-wrap input:focus,
  .home-body .form-section .input-wrap select:focus {
    border-color: rgba(103, 232, 249, 0.58) !important;
    box-shadow:
      0 0 0 3px rgba(34, 211, 238, 0.08),
      0 14px 34px rgba(0, 0, 0, 0.22) !important;
  }

  .phone-field {
    display: grid !important;
    grid-template-columns: minmax(108px, 0.42fr) minmax(0, 1fr) !important;
    gap: 8px !important;
    align-items: stretch !important;
  }

  .phone-code-group {
    min-width: 0 !important;
  }

  .phone-code {
    min-height: 50px !important;
    padding-inline: 11px !important;
    font-weight: 850 !important;
  }

  .phone-code-custom.visible {
    margin-top: 8px !important;
  }

  .form-next,
  .home-body .form-section .btn-primary {
    width: 100% !important;
    min-height: 52px !important;
    margin-top: 4px !important;
    border: 0 !important;
    background:
      linear-gradient(135deg, #f8f4e9 0%, #e8fbff 52%, #88f3ff 100%) !important;
    color: #050505 !important;
    font-size: 0.78rem !important;
    letter-spacing: 0.1em !important;
    box-shadow:
      0 18px 44px rgba(0, 0, 0, 0.34),
      0 0 0 1px rgba(255, 255, 255, 0.16) inset !important;
  }

  .home-body .form-section .form-privacy {
    margin-top: 18px !important;
    padding-top: 14px !important;
    color: rgba(246, 243, 234, 0.42) !important;
    font-size: 0.72rem !important;
    line-height: 1.45 !important;
  }

  .lead-form[data-current-step="2"] .choice-group {
    padding: 10px !important;
    border: 1px solid rgba(246, 243, 234, 0.09) !important;
    background: rgba(255, 255, 255, 0.012) !important;
  }

  .lead-form[data-current-step="2"] .choice-grid span {
    min-height: 42px !important;
    padding: 10px 11px !important;
    font-size: 0.78rem !important;
  }

  .lead-form[data-current-step="2"] .form-actions {
    grid-template-columns: 1fr !important;
  }
}

/* Final desktop learning cards override. */
@media (min-width: 641px) {
  .home-body .keys-section {
    width: min(1120px, calc(100% - 32px));
  }

  .home-body .keys-grid-premium,
  .home-body .keys-grid-secondary {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    border-top: 0;
  }

  .home-body .keys-grid-premium .key-card,
  .home-body .keys-grid-secondary .key-card {
    display: flex;
    flex-direction: column;
    min-height: 270px;
    padding: 24px;
    border: 1px solid rgba(103, 232, 249, 0.2);
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.052), rgba(255, 255, 255, 0.014)),
      radial-gradient(300px 210px at 50% -12%, rgba(34, 211, 238, 0.12), transparent 70%),
      rgba(8, 10, 13, 0.9);
    box-shadow:
      0 24px 70px rgba(0, 0, 0, 0.34),
      inset 0 1px 0 rgba(255, 255, 255, 0.055);
  }

  .home-body .keys-grid-secondary .key-card {
    min-height: 210px;
  }

  .home-body .keys-grid-premium .key-card::before,
  .home-body .keys-grid-secondary .key-card::before {
    content: "";
    display: block;
    position: absolute;
    inset: 10px;
    border: 1px solid rgba(103, 232, 249, 0.07);
    pointer-events: none;
  }

  .home-body .keys-grid-premium .key-card::after,
  .home-body .keys-grid-secondary .key-card::after {
    display: block;
    height: 2px;
    opacity: 1;
    background: linear-gradient(90deg, transparent, rgba(34, 211, 238, 0.72), transparent);
  }

  .home-body .key-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 28px;
  }

  .home-body .key-number {
    display: block;
    font-size: 3.2rem;
    line-height: 0.82;
    color: #22d3ee;
    text-shadow: 0 0 24px rgba(34, 211, 238, 0.18);
  }

  .home-body .key-tag {
    display: inline-flex;
    width: auto;
    max-width: 130px;
    margin: 0;
    padding: 7px 10px;
    border: 1px solid rgba(103, 232, 249, 0.22);
    background: rgba(34, 211, 238, 0.06);
    color: rgba(103, 232, 249, 0.96);
    text-align: right;
    font-size: 0.66rem;
    line-height: 1.15;
  }

  .home-body .key-card h3,
  .home-body .key-card p {
    grid-column: auto;
  }

  .home-body .key-card h3 {
    margin-bottom: 10px;
    font-size: 1.22rem;
    line-height: 1.18;
  }

  .home-body .key-card p {
    max-width: none;
    font-size: 0.94rem;
    line-height: 1.62;
  }

  .home-body .keys-grid-secondary .key-card h3 {
    display: block;
    font-size: 1.1rem;
  }

  .home-body .keys-grid-secondary .key-card h3::before {
    margin: 0 0 16px;
  }

  .keys-extra-title {
    margin-bottom: 18px;
    text-align: center;
  }
}

/* Final masterclass refresh: same visual direction as index. */
.masterclass-body .site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  width: min(1180px, calc(100% - 32px));
  min-height: 72px;
  margin: 0 auto clamp(18px, 3vw, 34px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
}

.masterclass-body .site-nav {
  display: flex;
  justify-content: flex-start;
  gap: clamp(14px, 2vw, 26px);
}

.masterclass-body .site-nav a {
  color: rgba(246, 243, 234, 0.7);
  font-size: 0.86rem;
  font-weight: 750;
}

.masterclass-body .video-section {
  width: min(1120px, calc(100% - 32px));
  padding: clamp(26px, 5vw, 62px) 0 clamp(42px, 6vw, 82px);
  border: 0;
  background: none;
  box-shadow: none;
  text-align: center;
}

.masterclass-body .video-section::before,
.masterclass-body .video-section::after {
  display: none;
}

.masterclass-body .video-title {
  max-width: 980px;
  margin: 0 auto clamp(22px, 4vw, 38px);
  color: #f6f3ea;
  font-family: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  font-size: clamp(3.2rem, 7.4vw, 7.2rem);
  line-height: 0.86;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

.masterclass-body .video-title .gradient-text {
  display: block;
  margin-top: 4px;
  background: linear-gradient(135deg, #ffffff 0%, #bff9ff 36%, #22d3ee 88%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.masterclass-body .video-spacer {
  display: none;
}

.masterclass-body .video-frame-wrap {
  max-width: 980px;
  margin: 0 auto clamp(18px, 3vw, 28px);
  border: 1px solid rgba(246, 243, 234, 0.16);
  border-radius: 0;
  background: #000;
  box-shadow:
    0 34px 100px rgba(0, 0, 0, 0.58),
    0 0 0 1px rgba(34, 211, 238, 0.04);
}

.masterclass-body .student-videos-section,
.masterclass-body .proof-section,
.masterclass-body .final-cta {
  width: min(1120px, calc(100% - 32px));
  padding: clamp(34px, 5vw, 58px);
  border: 1px solid rgba(103, 232, 249, 0.18);
  border-radius: 0;
  background:
    linear-gradient(180deg, rgba(246, 243, 234, 0.052), rgba(246, 243, 234, 0.014)),
    radial-gradient(560px 260px at 50% 0%, rgba(34, 211, 238, 0.08), transparent 72%),
    rgba(8, 10, 13, 0.88);
  box-shadow:
    0 28px 84px rgba(0, 0, 0, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.masterclass-body .section-heading h2,
.masterclass-body .final-cta h2 {
  font-family: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  font-size: clamp(2.4rem, 4.8vw, 4.8rem);
  line-height: 0.94;
}

.masterclass-body .sv-item,
.masterclass-body .proof-item {
  border: 1px solid rgba(103, 232, 249, 0.2);
  border-radius: 0;
  background: rgba(2, 3, 4, 0.82);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.34);
}

.masterclass-body .sv-item.is-active {
  border-color: rgba(103, 232, 249, 0.44);
  box-shadow:
    0 28px 82px rgba(0, 0, 0, 0.48),
    0 0 0 1px rgba(34, 211, 238, 0.08);
}

.masterclass-body .proof-item img,
.masterclass-body .sv-item video {
  border-radius: 0;
}

.masterclass-body .final-cta {
  text-align: center;
}

@media (max-width: 640px) {
  .masterclass-body .site-header {
    display: none;
  }

  .masterclass-body .video-section {
    width: min(100% - 24px, 1120px);
    padding-top: 30px;
    padding-bottom: 36px;
  }

  .masterclass-body .video-title {
    font-size: clamp(2.55rem, 12vw, 4rem);
    line-height: 0.9;
  }

  .masterclass-body .video-frame-wrap {
    width: 100%;
    margin-bottom: 16px;
  }

  .masterclass-body .cta-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .masterclass-body .student-videos-section,
  .masterclass-body .proof-section,
  .masterclass-body .final-cta {
    width: min(100% - 24px, 1120px);
    padding: 24px 14px;
  }

  .masterclass-body .section-heading h2,
  .masterclass-body .final-cta h2 {
    font-size: clamp(2rem, 9.5vw, 3rem);
  }

  .masterclass-body .proof-shell {
    padding-inline: 0;
  }

  .masterclass-body .proof-item {
    flex-basis: clamp(210px, 72vw, 280px);
  }
}

/* Absolute final mobile override for the "Lo que aprenderás" visual cards. */
@media (max-width: 640px) {
  .home-body .keys-section {
    width: min(100% - 24px, 1180px);
    padding-top: 34px;
  }

  .home-body .keys-grid-premium,
  .home-body .keys-grid-secondary {
    display: grid !important;
    gap: 12px !important;
    border-top: 0 !important;
  }

  .home-body .keys-grid-premium .key-card,
  .home-body .keys-grid-secondary .key-card {
    position: relative !important;
    overflow: hidden;
    padding: 18px !important;
    border: 1px solid rgba(103, 232, 249, 0.2) !important;
    border-radius: 0;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.012)),
      radial-gradient(280px 160px at 14% 0%, rgba(34, 211, 238, 0.13), transparent 72%),
      rgba(6, 8, 10, 0.9) !important;
    box-shadow:
      0 18px 46px rgba(0, 0, 0, 0.34),
      inset 0 1px 0 rgba(255, 255, 255, 0.06) !important;
  }

  .home-body .keys-grid-premium .key-card::before,
  .home-body .keys-grid-secondary .key-card::before {
    content: "" !important;
    display: block !important;
    position: absolute;
    inset: 8px;
    border: 1px solid rgba(103, 232, 249, 0.06);
    pointer-events: none;
  }

  .home-body .keys-grid-premium .key-card::after,
  .home-body .keys-grid-secondary .key-card::after {
    display: block !important;
    height: 2px !important;
    background: linear-gradient(90deg, rgba(34, 211, 238, 0.72), transparent) !important;
  }

  .home-body .key-head {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 10px !important;
    margin-bottom: 14px !important;
  }

  .home-body .key-number {
    font-size: 2rem !important;
    line-height: 0.9 !important;
  }

  .home-body .key-tag {
    max-width: 145px !important;
    padding: 6px 9px !important;
    border: 1px solid rgba(103, 232, 249, 0.2) !important;
    background: rgba(34, 211, 238, 0.08) !important;
    border-radius: 999px;
    color: rgba(103, 232, 249, 0.96) !important;
    font-size: 0.64rem !important;
    line-height: 1.12 !important;
    text-align: right !important;
  }

  .home-body .key-card h3 {
    margin-bottom: 8px !important;
    font-size: 1.08rem !important;
    line-height: 1.18 !important;
  }

  .home-body .key-card p,
  .home-body .keys-grid-secondary .key-card p {
    font-size: 0.9rem !important;
    line-height: 1.52 !important;
  }

  .home-body .keys-extra {
    margin-top: 20px !important;
  }

  .home-body .keys-extra-title {
    margin: 0 0 12px !important;
    padding: 0 0 10px !important;
    border-bottom: 1px solid rgba(103, 232, 249, 0.18);
    color: rgba(246, 243, 234, 0.94) !important;
    font-size: 0.82rem !important;
    line-height: 1.32 !important;
    text-align: left !important;
  }

  .home-body .keys-grid-secondary .key-card {
    padding: 16px 16px 16px 58px !important;
  }

  .home-body .keys-grid-secondary .key-card h3 {
    display: block !important;
    margin-bottom: 7px !important;
    font-size: 1rem !important;
    line-height: 1.18 !important;
  }

  .home-body .keys-grid-secondary .key-card h3::before {
    position: absolute !important;
    left: 16px !important;
    top: 17px !important;
    width: 30px !important;
    height: 30px !important;
    margin: 0 !important;
    display: grid !important;
    place-items: center;
    border: 1px solid rgba(103, 232, 249, 0.42) !important;
    background: rgba(34, 211, 238, 0.09) !important;
    border-radius: 50%;
    color: #67e8f9 !important;
    font-size: 0.72rem !important;
    font-weight: 950 !important;
  }
}

/* Final mobile polish for "Lo que aprenderás" cards. */
@media (max-width: 640px) {
  .home-body .keys-section {
    padding-top: 34px;
  }

  .home-body .keys-grid,
  .home-body .keys-grid-premium,
  .home-body .keys-grid-secondary {
    gap: 12px;
    border-top: 0;
  }

  .home-body .keys-grid-premium .key-card,
  .home-body .keys-grid-secondary .key-card {
    position: relative;
    padding: 18px;
    border: 1px solid rgba(103, 232, 249, 0.18);
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.012)),
      radial-gradient(260px 150px at 18% 0%, rgba(34, 211, 238, 0.11), transparent 72%),
      rgba(6, 8, 10, 0.86);
    box-shadow:
      0 18px 46px rgba(0, 0, 0, 0.32),
      inset 0 1px 0 rgba(255, 255, 255, 0.055);
  }

  .home-body .keys-grid-premium .key-card::before,
  .home-body .keys-grid-secondary .key-card::before {
    content: "";
    display: block;
    position: absolute;
    inset: 8px;
    border: 1px solid rgba(103, 232, 249, 0.055);
    pointer-events: none;
  }

  .home-body .keys-grid-premium .key-card::after,
  .home-body .keys-grid-secondary .key-card::after {
    display: block;
    height: 2px;
    background: linear-gradient(90deg, rgba(34, 211, 238, 0.7), transparent);
  }

  .home-body .key-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 14px;
  }

  .home-body .key-number {
    font-size: 2rem;
    line-height: 0.9;
  }

  .home-body .key-tag {
    max-width: 145px;
    padding: 6px 9px;
    border: 1px solid rgba(103, 232, 249, 0.18);
    background: rgba(34, 211, 238, 0.07);
    border-radius: 999px;
    color: rgba(103, 232, 249, 0.94);
    font-size: 0.64rem;
    line-height: 1.12;
    text-align: right;
  }

  .home-body .key-card h3 {
    margin-bottom: 8px;
    font-size: 1.08rem;
    line-height: 1.18;
  }

  .home-body .key-card p,
  .home-body .keys-grid-secondary .key-card p {
    font-size: 0.9rem;
    line-height: 1.52;
  }

  .home-body .keys-extra {
    margin-top: 20px;
  }

  .home-body .keys-extra-title {
    margin: 0 0 12px;
    padding: 0 0 10px;
    border-bottom: 1px solid rgba(103, 232, 249, 0.18);
    color: rgba(246, 243, 234, 0.94);
    font-size: 0.82rem;
    line-height: 1.32;
    text-align: left;
  }

  .home-body .keys-grid-secondary {
    gap: 10px;
  }

  .home-body .keys-grid-secondary .key-card {
    padding: 16px 16px 16px 58px;
    min-height: 0;
  }

  .home-body .keys-grid-secondary .key-card h3 {
    display: block;
    margin-bottom: 7px;
    font-size: 1rem;
    line-height: 1.18;
  }

  .home-body .keys-grid-secondary .key-card h3::before {
    position: absolute;
    left: 16px;
    top: 17px;
    width: 30px;
    height: 30px;
    margin: 0;
    display: grid;
    place-items: center;
    border: 1px solid rgba(103, 232, 249, 0.4);
    background: rgba(34, 211, 238, 0.08);
    border-radius: 50%;
    color: #67e8f9;
    font-size: 0.72rem;
    font-weight: 950;
  }
}

/* Final masterclass media polish: more breathing room, no heavy boxes around results. */
.masterclass-body .video-title {
  margin-bottom: clamp(44px, 6vw, 72px);
}

.masterclass-body .video-frame-wrap {
  margin-top: 0;
}

.masterclass-body .student-videos-section,
.masterclass-body .proof-section {
  padding-inline: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.masterclass-body .student-videos-section .section-heading,
.masterclass-body .proof-section .section-heading {
  max-width: 860px;
  margin-inline: auto;
}

.masterclass-body .student-videos-shell,
.masterclass-body .proof-shell {
  margin-top: clamp(24px, 4vw, 40px);
}

.masterclass-body .sv-item,
.masterclass-body .sv-item.is-active,
.masterclass-body .proof-item {
  border: 0;
  background: transparent;
  box-shadow: none;
}

.masterclass-body .sv-item:hover,
.masterclass-body .proof-item:hover {
  transform: none;
  box-shadow: none;
}

.masterclass-body .sv-item video,
.masterclass-body .proof-item img {
  border: 1px solid rgba(246, 243, 234, 0.12);
  border-radius: 0;
  background: #050607;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.34);
}

.masterclass-body .sv-item.is-active video {
  border-color: rgba(103, 232, 249, 0.28);
  box-shadow:
    0 28px 76px rgba(0, 0, 0, 0.42),
    0 0 0 1px rgba(34, 211, 238, 0.06);
}

.masterclass-body .video-arrow,
.masterclass-body .proof-arrow {
  border-color: rgba(246, 243, 234, 0.14);
  background: rgba(5, 6, 7, 0.76);
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.32);
}

@media (max-width: 640px) {
  .masterclass-body .video-title {
    margin-bottom: 30px;
  }

  .masterclass-body .student-videos-section,
  .masterclass-body .proof-section {
    width: min(100% - 24px, 1120px);
    padding: 26px 0;
  }

  .masterclass-body .student-videos-shell,
  .masterclass-body .proof-shell {
    margin-top: 18px;
  }

  .masterclass-body .sv-item video,
  .masterclass-body .proof-item img {
    box-shadow: 0 16px 42px rgba(0, 0, 0, 0.34);
  }
}

/* Final masterclass media polish: more breathing room, no heavy boxes around results. */
.masterclass-body .video-title {
  margin-bottom: clamp(44px, 6vw, 72px);
}

.masterclass-body .video-frame-wrap {
  margin-top: 0;
}

.masterclass-body .student-videos-section,
.masterclass-body .proof-section {
  padding-inline: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.masterclass-body .student-videos-section .section-heading,
.masterclass-body .proof-section .section-heading {
  max-width: 860px;
  margin-inline: auto;
}

.masterclass-body .student-videos-shell,
.masterclass-body .proof-shell {
  margin-top: clamp(24px, 4vw, 40px);
}

.masterclass-body .sv-item,
.masterclass-body .sv-item.is-active,
.masterclass-body .proof-item {
  border: 0;
  background: transparent;
  box-shadow: none;
}

.masterclass-body .sv-item:hover,
.masterclass-body .proof-item:hover {
  transform: none;
  box-shadow: none;
}

.masterclass-body .sv-item video,
.masterclass-body .proof-item img {
  border: 1px solid rgba(246, 243, 234, 0.12);
  border-radius: 0;
  background: #050607;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.34);
}

.masterclass-body .sv-item.is-active video {
  border-color: rgba(103, 232, 249, 0.28);
  box-shadow:
    0 28px 76px rgba(0, 0, 0, 0.42),
    0 0 0 1px rgba(34, 211, 238, 0.06);
}

.masterclass-body .video-arrow,
.masterclass-body .proof-arrow {
  border-color: rgba(246, 243, 234, 0.14);
  background: rgba(5, 6, 7, 0.76);
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.32);
}

@media (max-width: 640px) {
  .masterclass-body .video-title {
    margin-bottom: 30px;
  }

  .masterclass-body .student-videos-section,
  .masterclass-body .proof-section {
    width: min(100% - 24px, 1120px);
    padding: 26px 0;
  }

  .masterclass-body .student-videos-shell,
  .masterclass-body .proof-shell {
    margin-top: 18px;
  }

  .masterclass-body .sv-item video,
  .masterclass-body .proof-item img {
    box-shadow: 0 16px 42px rgba(0, 0, 0, 0.34);
  }
}

/* Last override: premium form redesign. */
.home-body .form-section {
  width: min(760px, calc(100% - 32px));
  padding-top: clamp(54px, 8vw, 96px);
}

.home-body .form-section .lead-form {
  max-width: 640px;
  padding: clamp(24px, 4vw, 34px);
  gap: 15px;
  border: 1px solid rgba(246, 243, 234, 0.16);
  background:
    linear-gradient(180deg, rgba(246, 243, 234, 0.07), rgba(246, 243, 234, 0.018)),
    radial-gradient(520px 260px at 50% 0%, rgba(34, 211, 238, 0.12), transparent 70%),
    rgba(8, 9, 10, 0.94);
  box-shadow:
    0 34px 96px rgba(0, 0, 0, 0.48),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.form-header {
  display: grid;
  gap: 8px;
  margin-bottom: 4px;
  text-align: center;
}

.form-header span {
  color: #22d3ee;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.form-header h2 {
  color: #f6f3ea;
  font-family: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 0.96;
  font-weight: 700;
}

.home-body .form-section .input-wrap {
  gap: 8px;
}

.home-body .form-section .input-wrap span {
  color: rgba(246, 243, 234, 0.72);
  font-size: 0.72rem;
  font-weight: 850;
}

.home-body .form-section .input-wrap input,
.home-body .form-section .input-wrap select {
  min-height: 54px;
  border: 1px solid rgba(246, 243, 234, 0.16);
  background: rgba(2, 3, 4, 0.72);
  color: #f6f3ea;
}

.home-body .form-section .input-wrap input:hover,
.home-body .form-section .input-wrap select:hover {
  border-color: rgba(246, 243, 234, 0.28);
  background: rgba(2, 3, 4, 0.86);
}

.home-body .form-section .input-wrap input:focus,
.home-body .form-section .input-wrap select:focus {
  border-color: rgba(34, 211, 238, 0.78);
  box-shadow:
    0 0 0 4px rgba(34, 211, 238, 0.1),
    0 10px 30px rgba(0, 0, 0, 0.26);
}

.home-body .form-section .btn-primary {
  min-height: 56px;
  margin-top: 2px;
  border: 1px solid rgba(246, 243, 234, 0.48);
  background: #f6f3ea;
  color: #050505;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.4);
}

.home-body .form-section .btn-primary:hover {
  background: #ffffff;
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.48);
}

.home-body .form-section .form-privacy {
  color: rgba(246, 243, 234, 0.58);
}

@media (max-width: 640px) {
  .home-body .form-section {
    width: min(100% - 24px, 760px);
    padding-top: 34px;
  }

  .home-body .form-section .lead-form {
    padding: 18px;
    gap: 12px;
  }

  .form-header {
    text-align: left;
  }

  .form-header h2 {
    font-size: clamp(1.9rem, 9vw, 2.55rem);
  }

  .home-body .form-section .input-wrap input,
  .home-body .form-section .input-wrap select {
    min-height: 50px;
  }
}

/* Masterclass page refresh: match index style, no hero box around main video. */
.masterclass-body .site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  width: min(1180px, calc(100% - 32px));
  min-height: 72px;
  margin: 0 auto clamp(18px, 3vw, 34px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
}

.masterclass-body .site-nav {
  display: flex;
  justify-content: flex-start;
  gap: clamp(14px, 2vw, 26px);
}

.masterclass-body .site-nav a {
  color: rgba(246, 243, 234, 0.7);
  font-size: 0.86rem;
  font-weight: 750;
}

.masterclass-body .site-nav a:hover {
  color: #f6f3ea;
}

.masterclass-body .video-section {
  width: min(1120px, calc(100% - 32px));
  padding: clamp(26px, 5vw, 62px) 0 clamp(42px, 6vw, 82px);
  border: 0;
  background: none;
  box-shadow: none;
  text-align: center;
}

.masterclass-body .video-section::before,
.masterclass-body .video-section::after {
  display: none;
}

.masterclass-body .video-title {
  max-width: 980px;
  margin: 0 auto clamp(22px, 4vw, 38px);
  color: #f6f3ea;
  font-family: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  font-size: clamp(3.2rem, 7.4vw, 7.2rem);
  line-height: 0.86;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

.masterclass-body .video-title .gradient-text {
  display: block;
  margin-top: 4px;
  background: linear-gradient(135deg, #ffffff 0%, #bff9ff 36%, #22d3ee 88%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.masterclass-body .video-spacer {
  display: none;
}

.masterclass-body .video-frame-wrap {
  max-width: 980px;
  margin: 0 auto clamp(18px, 3vw, 28px);
  border: 1px solid rgba(246, 243, 234, 0.16);
  border-radius: 0;
  background: #000;
  box-shadow:
    0 34px 100px rgba(0, 0, 0, 0.58),
    0 0 0 1px rgba(34, 211, 238, 0.04);
}

.masterclass-body .cta-row {
  gap: 12px;
}

.masterclass-body .student-videos-section,
.masterclass-body .proof-section,
.masterclass-body .final-cta {
  width: min(1120px, calc(100% - 32px));
  padding: clamp(34px, 5vw, 58px);
  border: 1px solid rgba(103, 232, 249, 0.18);
  border-radius: 0;
  background:
    linear-gradient(180deg, rgba(246, 243, 234, 0.052), rgba(246, 243, 234, 0.014)),
    radial-gradient(560px 260px at 50% 0%, rgba(34, 211, 238, 0.08), transparent 72%),
    rgba(8, 10, 13, 0.88);
  box-shadow:
    0 28px 84px rgba(0, 0, 0, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.masterclass-body .section-heading h2,
.masterclass-body .final-cta h2 {
  font-family: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  font-size: clamp(2.4rem, 4.8vw, 4.8rem);
  line-height: 0.94;
}

.masterclass-body .sv-item,
.masterclass-body .proof-item {
  border: 1px solid rgba(103, 232, 249, 0.2);
  border-radius: 0;
  background: rgba(2, 3, 4, 0.82);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.34);
}

.masterclass-body .sv-item.is-active {
  border-color: rgba(103, 232, 249, 0.44);
  box-shadow:
    0 28px 82px rgba(0, 0, 0, 0.48),
    0 0 0 1px rgba(34, 211, 238, 0.08);
}

.masterclass-body .proof-item img,
.masterclass-body .sv-item video {
  border-radius: 0;
}

.masterclass-body .final-cta {
  text-align: center;
}

@media (max-width: 640px) {
  .masterclass-body .site-header {
    display: none;
  }

  .masterclass-body .video-section {
    width: min(100% - 24px, 1120px);
    padding-top: 30px;
    padding-bottom: 36px;
  }

  .masterclass-body .video-title {
    font-size: clamp(2.55rem, 12vw, 4rem);
    line-height: 0.9;
  }

  .masterclass-body .video-frame-wrap {
    width: 100%;
    margin-bottom: 16px;
  }

  .masterclass-body .cta-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .masterclass-body .student-videos-section,
  .masterclass-body .proof-section,
  .masterclass-body .final-cta {
    width: min(100% - 24px, 1120px);
    padding: 24px 14px;
  }

  .masterclass-body .section-heading h2,
  .masterclass-body .final-cta h2 {
    font-size: clamp(2rem, 9.5vw, 3rem);
  }

  .masterclass-body .proof-shell {
    padding-inline: 0;
  }

  .masterclass-body .proof-item {
    flex-basis: clamp(210px, 72vw, 280px);
  }
}

/* Last override: main title uses the new premium display font. */
.home-body .hero-capture-container .hero-title {
  font-family: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  font-weight: 700;
  letter-spacing: 0;
  font-size: clamp(3.55rem, 8.4vw, 8.4rem);
  line-height: 0.84;
}

.home-body .hero-capture-container .hero-title .gradient-text {
  background: linear-gradient(135deg, #ffffff 0%, #bff9ff 36%, #22d3ee 88%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@media (max-width: 640px) {
  .home-body .hero-capture-container .hero-title {
    max-width: 10.5ch;
    font-size: clamp(2.85rem, 14vw, 4.25rem);
    line-height: 0.86;
  }
}

/* Mobile: no header navigation. */
@media (max-width: 640px) {
  .home-body .site-header {
    display: none !important;
  }

  .home-body .hero-section {
    padding-top: 28px;
  }
}

/* Premium form redesign. */
.home-body .form-section {
  width: min(760px, calc(100% - 32px));
  padding-top: clamp(54px, 8vw, 96px);
}

.home-body .form-section .lead-form {
  max-width: 640px;
  padding: clamp(24px, 4vw, 34px);
  gap: 15px;
  border: 1px solid rgba(246, 243, 234, 0.16);
  background:
    linear-gradient(180deg, rgba(246, 243, 234, 0.07), rgba(246, 243, 234, 0.018)),
    radial-gradient(520px 260px at 50% 0%, rgba(34, 211, 238, 0.12), transparent 70%),
    rgba(8, 9, 10, 0.94);
  box-shadow:
    0 34px 96px rgba(0, 0, 0, 0.48),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.form-header {
  display: grid;
  gap: 8px;
  margin-bottom: 4px;
  text-align: center;
}

.form-header span {
  color: #22d3ee;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.form-header h2 {
  color: #f6f3ea;
  font-family: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 0.96;
  font-weight: 700;
}

.home-body .form-section .input-wrap {
  gap: 8px;
}

.home-body .form-section .input-wrap span {
  color: rgba(246, 243, 234, 0.72);
  font-size: 0.72rem;
  font-weight: 850;
}

.home-body .form-section .input-wrap input,
.home-body .form-section .input-wrap select {
  min-height: 54px;
  border: 1px solid rgba(246, 243, 234, 0.16);
  background: rgba(2, 3, 4, 0.72);
  color: #f6f3ea;
}

.home-body .form-section .input-wrap input:hover,
.home-body .form-section .input-wrap select:hover {
  border-color: rgba(246, 243, 234, 0.28);
  background: rgba(2, 3, 4, 0.86);
}

.home-body .form-section .input-wrap input:focus,
.home-body .form-section .input-wrap select:focus {
  border-color: rgba(34, 211, 238, 0.78);
  box-shadow:
    0 0 0 4px rgba(34, 211, 238, 0.1),
    0 10px 30px rgba(0, 0, 0, 0.26);
}

.home-body .form-section .btn-primary {
  min-height: 56px;
  margin-top: 2px;
  border: 1px solid rgba(246, 243, 234, 0.48);
  background: #f6f3ea;
  color: #050505;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.4);
}

.home-body .form-section .btn-primary:hover {
  background: #ffffff;
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.48);
}

.home-body .form-section .form-privacy {
  color: rgba(246, 243, 234, 0.58);
}

@media (max-width: 640px) {
  .home-body .form-section {
    width: min(100% - 24px, 760px);
    padding-top: 34px;
  }

  .home-body .form-section .lead-form {
    padding: 18px;
    gap: 12px;
  }

  .form-header {
    text-align: left;
  }

  .form-header h2 {
    font-size: clamp(1.9rem, 9vw, 2.55rem);
  }

  .home-body .form-section .input-wrap input,
  .home-body .form-section .input-wrap select {
    min-height: 50px;
  }
}

/* Final hero title typography. */
.home-body .hero-capture-container .hero-title {
  font-family: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  font-weight: 700;
  letter-spacing: 0;
  font-size: clamp(3.55rem, 8.4vw, 8.4rem);
  line-height: 0.84;
}

.home-body .hero-capture-container .hero-title .gradient-text {
  background: linear-gradient(135deg, #ffffff 0%, #bff9ff 36%, #22d3ee 88%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@media (max-width: 640px) {
  .home-body .hero-capture-container .hero-title {
    max-width: 10.5ch;
    font-size: clamp(2.85rem, 14vw, 4.25rem);
    line-height: 0.86;
  }
}

/* Final desktop learning cards override. */
@media (min-width: 641px) {
  .home-body .keys-section {
    width: min(1120px, calc(100% - 32px));
  }

  .home-body .keys-grid-premium,
  .home-body .keys-grid-secondary {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    border-top: 0;
  }

  .home-body .keys-grid-premium .key-card,
  .home-body .keys-grid-secondary .key-card {
    display: flex;
    flex-direction: column;
    min-height: 270px;
    padding: 24px;
    border: 1px solid rgba(103, 232, 249, 0.2);
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.052), rgba(255, 255, 255, 0.014)),
      radial-gradient(300px 210px at 50% -12%, rgba(34, 211, 238, 0.12), transparent 70%),
      rgba(8, 10, 13, 0.9);
    box-shadow:
      0 24px 70px rgba(0, 0, 0, 0.34),
      inset 0 1px 0 rgba(255, 255, 255, 0.055);
  }

  .home-body .keys-grid-secondary .key-card {
    min-height: 210px;
  }

  .home-body .keys-grid-premium .key-card::before,
  .home-body .keys-grid-secondary .key-card::before {
    content: "";
    display: block;
    position: absolute;
    inset: 10px;
    border: 1px solid rgba(103, 232, 249, 0.07);
    pointer-events: none;
  }

  .home-body .keys-grid-premium .key-card::after,
  .home-body .keys-grid-secondary .key-card::after {
    display: block;
    height: 2px;
    opacity: 1;
    background: linear-gradient(90deg, transparent, rgba(34, 211, 238, 0.72), transparent);
  }

  .home-body .key-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 28px;
  }

  .home-body .key-number {
    display: block;
    font-size: 3.2rem;
    line-height: 0.82;
    color: #22d3ee;
    text-shadow: 0 0 24px rgba(34, 211, 238, 0.18);
  }

  .home-body .key-tag {
    display: inline-flex;
    width: auto;
    max-width: 130px;
    margin: 0;
    padding: 7px 10px;
    border: 1px solid rgba(103, 232, 249, 0.22);
    background: rgba(34, 211, 238, 0.06);
    color: rgba(103, 232, 249, 0.96);
    text-align: right;
    font-size: 0.66rem;
    line-height: 1.15;
  }

  .home-body .key-card h3,
  .home-body .key-card p {
    grid-column: auto;
  }

  .home-body .key-card h3 {
    margin-bottom: 10px;
    font-size: 1.22rem;
    line-height: 1.18;
  }

  .home-body .key-card p {
    max-width: none;
    font-size: 0.94rem;
    line-height: 1.62;
  }

  .home-body .keys-grid-secondary .key-card h3 {
    display: block;
    font-size: 1.1rem;
  }

  .home-body .keys-grid-secondary .key-card h3::before {
    margin: 0 0 16px;
  }

  .keys-extra-title {
    margin-bottom: 18px;
    text-align: center;
  }
}

/* Desktop learning cards: classic premium grid, clean alignment. */
@media (min-width: 641px) {
  .home-body .keys-section {
    width: min(1120px, calc(100% - 32px));
  }

  .home-body .keys-grid-premium {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    border-top: 0;
  }

  .home-body .keys-grid-secondary {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    border-top: 0;
  }

  .home-body .keys-grid-premium .key-card,
  .home-body .keys-grid-secondary .key-card {
    display: flex;
    flex-direction: column;
    min-height: 270px;
    padding: 24px;
    border: 1px solid rgba(103, 232, 249, 0.2);
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.052), rgba(255, 255, 255, 0.014)),
      radial-gradient(300px 210px at 50% -12%, rgba(34, 211, 238, 0.12), transparent 70%),
      rgba(8, 10, 13, 0.9);
    box-shadow:
      0 24px 70px rgba(0, 0, 0, 0.34),
      inset 0 1px 0 rgba(255, 255, 255, 0.055);
  }

  .home-body .keys-grid-secondary .key-card {
    min-height: 210px;
  }

  .home-body .keys-grid-premium .key-card::before,
  .home-body .keys-grid-secondary .key-card::before {
    content: "";
    display: block;
    position: absolute;
    inset: 10px;
    border: 1px solid rgba(103, 232, 249, 0.07);
    pointer-events: none;
  }

  .home-body .keys-grid-premium .key-card::after,
  .home-body .keys-grid-secondary .key-card::after {
    display: block;
    height: 2px;
    opacity: 1;
    background: linear-gradient(90deg, transparent, rgba(34, 211, 238, 0.72), transparent);
  }

  .home-body .key-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 28px;
  }

  .home-body .key-number {
    display: block;
    font-size: 3.2rem;
    line-height: 0.82;
    color: #22d3ee;
    text-shadow: 0 0 24px rgba(34, 211, 238, 0.18);
  }

  .home-body .key-tag {
    display: inline-flex;
    width: auto;
    max-width: 130px;
    margin: 0;
    padding: 7px 10px;
    border: 1px solid rgba(103, 232, 249, 0.22);
    background: rgba(34, 211, 238, 0.06);
    color: rgba(103, 232, 249, 0.96);
    text-align: right;
    font-size: 0.66rem;
    line-height: 1.15;
  }

  .home-body .key-card h3,
  .home-body .key-card p {
    grid-column: auto;
  }

  .home-body .key-card h3 {
    margin-bottom: 10px;
    font-size: 1.22rem;
    line-height: 1.18;
  }

  .home-body .key-card p {
    max-width: none;
    font-size: 0.94rem;
    line-height: 1.62;
  }

  .home-body .keys-grid-secondary .key-card h3 {
    display: block;
    font-size: 1.1rem;
  }

  .home-body .keys-grid-secondary .key-card h3::before {
    margin: 0 0 16px;
  }

  .keys-extra-title {
    margin-bottom: 18px;
    text-align: center;
  }
}

/* Comercio Millonario-inspired direction: minimal, editorial, less boxed. */
.home-body {
  --accent: #eafcff;
  --accent-2: #22d3ee;
  --text: #f6f3ea;
  --sub: #b7b1a5;
}

.home-body::before {
  background:
    radial-gradient(860px 420px at 50% -18%, rgba(34, 211, 238, 0.12), transparent 68%),
    linear-gradient(180deg, #030304 0%, #030304 46%, #070707 100%);
}

.home-body .luxury-bg,
.home-body .grain {
  opacity: 0.05;
}

.home-body .hero-section {
  padding: clamp(44px, 8vw, 104px) 0 clamp(34px, 6vw, 72px);
}

.home-body .hero-capture-container {
  width: min(1040px, calc(100% - 32px));
}

.home-body .hero-capture-container .eyebrow {
  margin-bottom: clamp(16px, 2.6vw, 26px);
  color: rgba(246, 243, 234, 0.78);
  text-shadow: none;
}

.home-body .hero-capture-container .hero-title {
  max-width: 920px;
  color: var(--text);
  font-size: clamp(3.35rem, 7.8vw, 7.8rem);
  line-height: 0.88;
  text-align: center;
  text-shadow: 0 30px 90px rgba(0, 0, 0, 0.58);
}

.home-body .hero-motivation {
  max-width: 720px;
  margin: clamp(18px, 3vw, 28px) auto 0;
  color: rgba(246, 243, 234, 0.78);
  font-size: clamp(1rem, 1.6vw, 1.22rem);
  font-weight: 600;
  line-height: 1.55;
  text-align: center;
}

.home-body .gradient-text {
  background: linear-gradient(135deg, #ffffff 0%, #f6f3ea 42%, #22d3ee 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-main-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  margin-top: clamp(22px, 3vw, 34px);
  padding: 0 24px;
  border: 1px solid rgba(246, 243, 234, 0.28);
  background: #f6f3ea;
  color: #050505;
  font-size: 0.85rem;
  font-weight: 950;
  text-transform: uppercase;
}

.hero-main-cta::after {
  content: "→";
  margin-left: 10px;
}

.home-body .mentor-section-clean,
.home-body .keys-section,
.home-body .form-section,
.home-body .faq-section,
.home-body .contact-section {
  padding-top: clamp(46px, 7vw, 92px);
  padding-bottom: clamp(46px, 7vw, 92px);
}

.home-body .section-heading {
  max-width: 820px;
}

.home-body .section-heading h2,
.home-body .mentor-section-clean .section-heading h2 {
  font-size: clamp(2.35rem, 5vw, 5rem);
  line-height: 0.95;
}

.mentor-proof-strip figure {
  padding: 0;
  border: 0;
  background: none;
  box-shadow: none;
}

.mentor-proof-strip figure:nth-child(2) {
  transform: translateY(34px);
}

.mentor-proof-strip figure::after {
  display: none;
}

.mentor-proof-strip img {
  border: 1px solid rgba(246, 243, 234, 0.12);
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.42);
}

.mentor-proof-strip span {
  border: 1px solid rgba(246, 243, 234, 0.14);
  background: rgba(3, 3, 4, 0.72);
  color: #f6f3ea;
}

.home-body .mentor-list {
  border-top: 1px solid rgba(246, 243, 234, 0.14);
}

.home-body .mentor-list li {
  padding-top: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(246, 243, 234, 0.1);
}

.home-body .keys-grid,
.home-body .keys-grid-premium,
.home-body .keys-grid-secondary {
  grid-template-columns: 1fr;
  gap: 0;
}

.home-body .keys-grid-premium,
.home-body .keys-grid-secondary {
  border-top: 1px solid rgba(246, 243, 234, 0.14);
}

.home-body .keys-grid-premium .key-card,
.home-body .keys-grid-secondary .key-card {
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
  column-gap: clamp(18px, 4vw, 44px);
  min-height: 0;
  padding: 28px 0;
  border: 0;
  border-bottom: 1px solid rgba(246, 243, 234, 0.1);
  background: transparent;
  box-shadow: none;
}

.home-body .keys-grid-premium .key-card::before,
.home-body .keys-grid-secondary .key-card::before,
.home-body .keys-grid-premium .key-card::after,
.home-body .keys-grid-secondary .key-card::after {
  display: none;
}

.home-body .key-head {
  display: block;
  margin: 0;
}

.home-body .key-number {
  display: block;
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  line-height: 0.9;
  color: rgba(246, 243, 234, 0.96);
  text-shadow: none;
}

.home-body .key-tag {
  display: block;
  width: fit-content;
  margin-top: 12px;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(34, 211, 238, 0.88);
  font-size: 0.72rem;
}

.home-body .key-card h3,
.home-body .key-card p {
  grid-column: 2;
}

.home-body .key-card h3 {
  margin-bottom: 8px;
  font-size: clamp(1.16rem, 2.1vw, 1.55rem);
}

.home-body .key-card p {
  max-width: 720px;
}

.keys-extra {
  margin-top: clamp(24px, 4vw, 42px);
}

.keys-extra-title {
  text-align: left;
}

.home-body .form-section .lead-form {
  border-color: rgba(246, 243, 234, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.058), rgba(255, 255, 255, 0.014)),
    rgba(11, 11, 12, 0.92);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
}

@media (max-width: 640px) {
  .home-body .hero-section {
    padding: 32px 0 28px;
  }

  .home-body .hero-capture-container {
    width: min(100% - 24px, 1040px);
  }

  .home-body .hero-capture-container .hero-title {
    max-width: 11ch;
    font-size: clamp(2.65rem, 13vw, 4.05rem);
    line-height: 0.9;
  }

  .hero-main-cta {
    width: 100%;
    max-width: 300px;
    min-height: 50px;
    margin-top: 22px;
  }

  .home-body .mentor-section-clean,
  .home-body .keys-section,
  .home-body .form-section,
  .home-body .faq-section,
  .home-body .contact-section {
    padding-top: 32px;
    padding-bottom: 32px;
  }

  .home-body .section-heading h2,
  .home-body .mentor-section-clean .section-heading h2 {
    font-size: clamp(2rem, 9.8vw, 3rem);
  }

  .mentor-proof-strip {
    gap: 8px;
  }

  .mentor-proof-strip figure,
  .mentor-proof-strip figure:nth-child(2) {
    transform: none;
  }

  .mentor-proof-strip img {
    max-height: 155px;
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.34);
  }

  .home-body .keys-grid-premium .key-card,
  .home-body .keys-grid-secondary .key-card {
    grid-template-columns: 54px minmax(0, 1fr);
    column-gap: 14px;
    padding: 18px 0;
  }

  .home-body .key-number {
    font-size: 1.72rem;
  }

  .home-body .key-tag {
    margin-top: 7px;
    font-size: 0.56rem;
    line-height: 1.15;
  }

  .home-body .key-card h3 {
    font-size: 1rem;
  }

  .home-body .key-card p {
    font-size: 0.88rem;
  }
}

/* Final mobile mentor correction: centered title and clean photo labels. */
@media (max-width: 640px) {
  .home-body .mentor-section-clean .section-heading {
    text-align: center;
    margin-bottom: 22px;
  }

  .home-body .mentor-section-clean .eyebrow.centered {
    justify-content: center;
  }

  .home-body .mentor-section-clean .section-heading h2 {
    max-width: 9ch;
    margin-inline: auto;
    font-size: clamp(2.35rem, 11vw, 3.35rem);
    line-height: 0.94;
  }

  .mentor-proof-strip {
    max-width: 360px;
    margin-inline: auto;
    margin-bottom: 22px;
  }

  .mentor-proof-strip span {
    top: 8px;
    right: auto;
    bottom: auto;
    left: 8px;
    width: auto;
    height: auto;
    line-height: 1;
  }

  .mentor-proof-strip img {
    max-height: 210px;
  }
}

/* Compact premium mentor story on mobile. */
@media (max-width: 640px) {
  .home-body .mentor-section-clean {
    width: min(100% - 28px, 1180px);
    padding-top: 36px;
    padding-bottom: 36px;
  }

  .home-body .mentor-section-clean .section-heading {
    max-width: 100%;
    text-align: center;
    margin-bottom: 22px;
  }

  .home-body .mentor-section-clean .eyebrow.centered {
    justify-content: center;
  }

  .home-body .mentor-section-clean .section-heading h2 {
    font-size: clamp(2.35rem, 11vw, 3.35rem);
    line-height: 0.94;
    max-width: 9ch;
    margin: 0 auto;
  }

  .mentor-section-clean .mentor-clean-layout {
    position: relative;
    display: block;
  }

  .mentor-proof-strip {
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    align-items: end;
    gap: 8px;
    max-width: 360px;
    margin: 0 auto 22px;
  }

  .mentor-proof-strip figure {
    position: relative;
  }

  .mentor-proof-strip figure:nth-child(2) {
    transform: translateY(16px);
  }

  .mentor-proof-strip img {
    width: 100%;
    aspect-ratio: 3 / 4.25;
    max-height: 245px;
    object-fit: cover;
    border-color: rgba(246, 243, 234, 0.12);
    box-shadow:
      0 18px 42px rgba(0, 0, 0, 0.42),
      0 0 0 1px rgba(34, 211, 238, 0.04);
  }

  .mentor-proof-strip span {
    top: 8px;
    left: 8px;
    right: auto;
    bottom: auto;
    width: auto;
    height: auto;
    padding: 5px 7px;
    background: rgba(3, 3, 4, 0.78);
    color: #f6f3ea;
    font-size: 0.58rem;
    line-height: 1;
  }

  .mentor-copy {
    position: relative;
    padding-top: 16px;
    border-top: 1px solid rgba(246, 243, 234, 0.14);
  }

  .mentor-copy .mentor-intro {
    margin-bottom: 12px;
    color: rgba(246, 243, 234, 0.82);
    font-size: 0.94rem;
    line-height: 1.56;
  }

  .mentor-copy .mentor-intro:first-child {
    color: #f6f3ea;
    font-size: 1rem;
    line-height: 1.5;
  }

  .home-body .mentor-list {
    margin: 14px 0;
    border-top: 0;
  }

  .home-body .mentor-list li {
    padding: 10px 0 10px 22px;
    border-bottom-color: rgba(246, 243, 234, 0.09);
    color: rgba(246, 243, 234, 0.78);
    font-size: 0.9rem;
    line-height: 1.46;
  }

  .home-body .mentor-list li span {
    top: 18px;
    background: #22d3ee;
  }

  .mentor-copy .btn-secondary {
    width: 100%;
    margin-top: 6px;
    border-color: rgba(246, 243, 234, 0.22);
    background: rgba(246, 243, 234, 0.06);
  }
}

/* Final overrides for the capture-page header and standalone mentor section. */
.home-body .hero-capture-container {
  display: block;
  max-width: 920px;
}

.home-body .hero-capture-container .hero-left {
  max-width: 820px;
}

.home-body .hero-capture-container .lead-form {
  max-width: 560px;
  margin-inline: 0;
}

.home-body .mentor-section-clean {
  padding-top: clamp(36px, 6vw, 72px);
  padding-bottom: clamp(42px, 7vw, 86px);
}

.mentor-clean-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.mentor-visual-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.mentor-visual-strip figure {
  margin: 0;
}

.mentor-visual-strip span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--accent);
  font-size: 0.74rem;
  font-weight: 850;
  text-transform: uppercase;
}

.mentor-visual-strip img {
  width: 100%;
  aspect-ratio: 3 / 4.2;
  object-fit: cover;
  object-position: top center;
  border-radius: 8px;
  border: 1px solid rgba(239, 235, 226, 0.12);
  background: #090a0c;
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.34);
}

.mentor-copy {
  max-width: 660px;
}

.mentor-copy .mentor-intro {
  color: var(--sub);
  font-size: clamp(1rem, 1.2vw, 1.08rem);
  line-height: 1.72;
}

.mentor-copy .mentor-list {
  margin: 22px 0;
}

.mentor-copy .btn-secondary {
  margin-top: 4px;
}

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

@media (max-width: 640px) {
  .home-body .site-header {
    display: flex;
    grid-template-columns: none;
    justify-content: space-between;
    overflow: hidden;
  }

  .home-body .header-cta {
    display: none;
  }

  .home-body .hero-capture-container .lead-form {
    max-width: 100%;
  }

  .mentor-visual-strip {
    grid-template-columns: 1fr;
  }

  .mentor-visual-strip img {
    aspect-ratio: 4 / 5;
    max-height: 560px;
  }

  .home-body .mentor-section-clean .section-heading h2 {
    font-size: clamp(2.1rem, 12vw, 3rem);
    overflow-wrap: anywhere;
  }
}

/* Shared premium theme for index and masterclass. */
.home-body,
.masterclass-body {
  --bg: #040405;
  --bg-soft: #0a0b0d;
  --surface: rgba(16, 17, 20, 0.78);
  --surface-strong: rgba(20, 22, 26, 0.94);
  --line: rgba(239, 235, 226, 0.12);
  --line-strong: rgba(34, 211, 238, 0.36);
  --accent: #22d3ee;
  --accent-2: #67e8f9;
  --sky: #22d3ee;
  --sky-2: #67e8f9;
  --sky-3: #f5f2ea;
  --text: #f5f2ea;
  --sub: #bbb7ad;
  --muted: #85827b;
  --danger: #ff8f8f;
  --radius: 8px;
  --radius-lg: 8px;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.52);
  background: var(--bg);
  color: var(--text);
}

.home-body *,
.home-body *::before,
.home-body *::after,
.masterclass-body *,
.masterclass-body *::before,
.masterclass-body *::after {
  letter-spacing: 0;
}

.home-body::before,
.masterclass-body::before {
  background:
    radial-gradient(900px 420px at 50% -18%, rgba(59, 130, 246, 0.10), transparent 66%),
    radial-gradient(760px 420px at 96% 18%, rgba(96, 165, 250, 0.075), transparent 64%),
    linear-gradient(180deg, #070708 0%, #040405 46%, #07080a 100%);
}

.home-body .luxury-bg,
.masterclass-body .luxury-bg {
  background-image:
    linear-gradient(rgba(239, 235, 226, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(239, 235, 226, 0.026) 1px, transparent 1px);
  background-size: 86px 86px;
  mask-image: linear-gradient(180deg, black 0%, rgba(0, 0, 0, 0.68) 45%, transparent 90%);
}

.home-body .grain,
.masterclass-body .grain {
  opacity: 0.08;
  mix-blend-mode: soft-light;
}

.home-body .scroll-bar,
.masterclass-body .scroll-bar {
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  box-shadow: none;
}

.masterclass-body .site-header {
  margin-bottom: clamp(22px, 4vw, 46px);
}

.home-body .gradient-text,
.masterclass-body .gradient-text {
  background: linear-gradient(135deg, #f8f5ed 0%, #67e8f9 54%, #22d3ee 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: none;
}

.home-body .eyebrow,
.masterclass-body .eyebrow {
  color: var(--accent);
}

.home-body .eyebrow span,
.masterclass-body .eyebrow span,
.home-body .key-card::after,
.masterclass-body .key-card::after {
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.home-body .btn-primary,
.masterclass-body .btn-primary {
  border: 1px solid rgba(34, 211, 238, 0.54);
  background: linear-gradient(135deg, #a5f3fc, #22d3ee);
  color: #06111f;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.38);
}

.home-body .btn-primary:hover,
.masterclass-body .btn-primary:hover {
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.48), 0 0 30px rgba(59, 130, 246, 0.10);
}

.home-body .btn-secondary,
.home-body .btn-whatsapp,
.masterclass-body .btn-secondary,
.masterclass-body .btn-whatsapp {
  border-color: rgba(239, 235, 226, 0.14);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.home-body .btn-secondary:hover,
.home-body .btn-whatsapp:hover,
.masterclass-body .btn-secondary:hover,
.masterclass-body .btn-whatsapp:hover {
  border-color: rgba(59, 130, 246, 0.36);
  background: rgba(59, 130, 246, 0.07);
}

.home-body .lead-form,
.home-body .key-card,
.home-body .faq-item,
.home-body .contact-card,
.masterclass-body .video-section,
.masterclass-body .proof-section,
.masterclass-body .student-videos-section,
.masterclass-body .final-cta {
  border-radius: 8px;
  border-color: rgba(239, 235, 226, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    rgba(14, 15, 18, 0.82);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.055);
}

.masterclass-body .video-section,
.masterclass-body .proof-section,
.masterclass-body .student-videos-section,
.masterclass-body .final-cta {
  margin-bottom: 22px;
}

.masterclass-body .video-section::after {
  display: none;
}

.home-body .video-frame-wrap,
.masterclass-body .video-frame-wrap,
.home-body .proof-item,
.masterclass-body .proof-item,
.home-body .sv-item,
.masterclass-body .sv-item {
  border-radius: 8px;
  border-color: rgba(239, 235, 226, 0.14);
  background: #050506;
}

.home-body .video-frame-wrap,
.masterclass-body .video-frame-wrap {
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.58);
}

.home-body .sv-item.is-active,
.masterclass-body .sv-item.is-active {
  border-color: rgba(59, 130, 246, 0.36);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.48);
}

.home-body .proof-arrow,
.home-body .video-arrow,
.masterclass-body .proof-arrow,
.masterclass-body .video-arrow {
  border-color: rgba(239, 235, 226, 0.16);
  background: rgba(17, 18, 21, 0.9);
  color: var(--text);
  box-shadow: none;
}

.home-body .proof-arrow:hover,
.home-body .video-arrow:hover,
.masterclass-body .proof-arrow:hover,
.masterclass-body .video-arrow:hover {
  border-color: rgba(59, 130, 246, 0.36);
  background: rgba(24, 26, 29, 0.95);
}

.home-body .proof-dot.active,
.home-body .video-dot.active,
.masterclass-body .proof-dot.active,
.masterclass-body .video-dot.active {
  background: var(--accent);
  border-color: var(--accent);
}

.home-body .mc-chip,
.home-body .proof-chip,
.masterclass-body .mc-chip,
.masterclass-body .proof-chip {
  color: rgba(245, 242, 234, 0.82);
  border-color: rgba(239, 235, 226, 0.12);
  background: rgba(255, 255, 255, 0.045);
}

@media (max-width: 640px) {
  .home-body .site-header,
  .masterclass-body .site-header {
    display: flex;
    grid-template-columns: none;
    justify-content: space-between;
    overflow: hidden;
  }

  .home-body .header-cta,
  .masterclass-body .header-cta {
    display: none;
  }

  .masterclass-body .site-header {
    margin-bottom: 18px;
  }
}

/* Retro-classic cyan refinement shared by both pages. */
.home-body,
.masterclass-body {
  --accent: #22d3ee;
  --accent-2: #67e8f9;
  --sky: #22d3ee;
  --sky-2: #67e8f9;
  --line-strong: rgba(34, 211, 238, 0.38);
}

.home-body::before,
.masterclass-body::before {
  background:
    radial-gradient(900px 440px at 50% -18%, rgba(34, 211, 238, 0.13), transparent 66%),
    radial-gradient(820px 520px at 80% 58%, rgba(103, 232, 249, 0.08), transparent 70%),
    linear-gradient(180deg, #050506 0%, #020304 54%, #050607 100%);
}

.home-body .luxury-bg,
.masterclass-body .luxury-bg {
  background-image:
    linear-gradient(rgba(34, 211, 238, 0.038) 1px, transparent 1px),
    linear-gradient(90deg, rgba(34, 211, 238, 0.032) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: linear-gradient(180deg, black 0%, rgba(0, 0, 0, 0.76) 52%, transparent 96%);
}

.home-body .site-header,
.masterclass-body .site-header {
  border-bottom: 1px solid rgba(34, 211, 238, 0.12);
}

.home-body .site-header::before,
.masterclass-body .site-header::before {
  background: linear-gradient(180deg, rgba(2, 3, 4, 0.94), rgba(2, 3, 4, 0.66));
  border-bottom: 1px solid rgba(34, 211, 238, 0.12);
}

.home-body .brand-mark,
.masterclass-body .brand-mark {
  border-radius: 3px;
  color: #020304;
  background: var(--accent);
  border-color: rgba(103, 232, 249, 0.72);
  box-shadow: 0 0 22px rgba(34, 211, 238, 0.28);
}

.home-body .brand span:last-child,
.masterclass-body .brand span:last-child {
  font-family: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  font-weight: 800;
}

.home-body .header-cta,
.masterclass-body .header-cta {
  border-radius: 0;
  border-color: rgba(245, 242, 234, 0.22);
  background: transparent;
  color: var(--text);
}

.home-body .header-cta:hover,
.masterclass-body .header-cta:hover {
  border-color: rgba(34, 211, 238, 0.62);
  background: rgba(34, 211, 238, 0.07);
}

.home-body .gradient-text,
.masterclass-body .gradient-text {
  background: linear-gradient(135deg, #f8f5ed 0%, #67e8f9 48%, #22d3ee 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.home-body .section-heading h2,
.home-body .mentor-section-clean .section-heading h2,
.masterclass-body .section-heading h2,
.masterclass-body .final-cta h2 {
  font-family: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  font-weight: 900;
}

.home-body .eyebrow,
.masterclass-body .eyebrow,
.mentor-visual-strip span {
  color: var(--accent);
  text-shadow: 0 0 16px rgba(34, 211, 238, 0.22);
}

.home-body .btn-primary,
.masterclass-body .btn-primary {
  border-radius: 0;
  border-color: rgba(103, 232, 249, 0.78);
  background: linear-gradient(135deg, #a5f3fc, #22d3ee);
  color: #031014;
  box-shadow:
    0 18px 46px rgba(0, 0, 0, 0.42),
    0 0 26px rgba(34, 211, 238, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.38);
}

.home-body .btn-primary:hover,
.masterclass-body .btn-primary:hover {
  box-shadow:
    0 24px 56px rgba(0, 0, 0, 0.5),
    0 0 38px rgba(34, 211, 238, 0.22);
}

.home-body .btn-secondary,
.home-body .btn-whatsapp,
.masterclass-body .btn-secondary,
.masterclass-body .btn-whatsapp {
  border-radius: 0;
  border-color: rgba(34, 211, 238, 0.28);
}

.home-body .btn-secondary:hover,
.home-body .btn-whatsapp:hover,
.masterclass-body .btn-secondary:hover,
.masterclass-body .btn-whatsapp:hover {
  border-color: rgba(103, 232, 249, 0.66);
  background: rgba(34, 211, 238, 0.07);
}

.home-body .lead-form,
.home-body .key-card,
.home-body .faq-item,
.home-body .contact-card,
.masterclass-body .video-section,
.masterclass-body .proof-section,
.masterclass-body .student-videos-section,
.masterclass-body .final-cta {
  border-radius: 2px;
  border-color: rgba(103, 232, 249, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.046), rgba(255, 255, 255, 0.014)),
    linear-gradient(135deg, rgba(34, 211, 238, 0.04), transparent 42%),
    rgba(10, 12, 15, 0.88);
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.045);
}

.home-body .input-wrap input,
.home-body .input-wrap select {
  border-radius: 2px;
  border-color: rgba(103, 232, 249, 0.16);
}

.home-body .input-wrap input:focus,
.home-body .input-wrap select:focus {
  border-color: rgba(34, 211, 238, 0.72);
  box-shadow: 0 0 0 4px rgba(34, 211, 238, 0.11);
}

.home-body .form-privacy {
  display: block;
  width: 100%;
  max-width: 100%;
  white-space: normal;
  overflow-wrap: anywhere;
  text-align: center;
  line-height: 1.45;
}

.mentor-visual-strip img,
.home-body .video-frame-wrap,
.masterclass-body .video-frame-wrap,
.home-body .proof-item,
.masterclass-body .proof-item,
.home-body .sv-item,
.masterclass-body .sv-item {
  border-radius: 2px;
  border-color: rgba(103, 232, 249, 0.18);
}

.home-body .proof-arrow,
.home-body .video-arrow,
.masterclass-body .proof-arrow,
.masterclass-body .video-arrow {
  border-radius: 2px;
  border-color: rgba(34, 211, 238, 0.28);
}

.home-body .proof-dot.active,
.home-body .video-dot.active,
.masterclass-body .proof-dot.active,
.masterclass-body .video-dot.active {
  background: var(--accent);
  border-color: var(--accent-2);
}

/* Professional UX flow for the capture page. */
.home-body .site-header {
  grid-template-columns: minmax(0, 1fr) auto;
}

.home-body .site-nav {
  justify-content: flex-start;
}

.home-body .header-cta {
  justify-self: end;
}

.home-body .hero-section {
  padding: clamp(30px, 5vw, 64px) 0 clamp(42px, 6vw, 76px);
}

.home-body .hero-capture-container {
  display: grid;
  width: min(1180px, calc(100% - 32px));
  max-width: 1180px;
  grid-template-columns: minmax(0, 1fr) minmax(336px, 430px);
  grid-template-areas:
    "copy form"
    "proof form";
  gap: clamp(18px, 3.6vw, 44px);
  align-items: start;
}

.home-body .hero-capture-container .hero-left {
  grid-area: copy;
  max-width: none;
}

.home-body .hero-capture-container .hero-right {
  grid-area: form;
  position: sticky;
  top: 92px;
  width: 100%;
}

.home-body .hero-capture-container .lead-form {
  max-width: none;
  margin: 0;
}

.home-body .hero-capture-container .hero-title {
  margin-bottom: 0;
}

.hero-proof-strip {
  grid-area: proof;
  align-self: end;
  gap: 12px;
  margin-top: 2px;
}

.hero-proof-strip figure {
  position: relative;
  overflow: hidden;
  padding: 10px;
  border: 1px solid rgba(103, 232, 249, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.052), rgba(255, 255, 255, 0.012)),
    rgba(9, 11, 14, 0.84);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.26);
}

.hero-proof-strip span {
  margin-bottom: 8px;
}

.hero-proof-strip img {
  aspect-ratio: 4 / 5;
  max-height: 360px;
  object-position: top center;
}

.home-body .keys-section {
  padding-top: clamp(38px, 6vw, 74px);
}

.home-body .mentor-section-clean {
  width: min(980px, calc(100% - 32px));
  padding-top: clamp(24px, 4vw, 56px);
}

.home-body .mentor-section-clean .section-heading {
  margin-bottom: 20px;
}

.mentor-section-clean .mentor-clean-layout {
  display: block;
}

.mentor-section-clean .mentor-copy {
  max-width: 820px;
  margin: 0 auto;
  padding: clamp(22px, 4vw, 38px) 0 0;
  border-top: 1px solid rgba(103, 232, 249, 0.16);
}

.mentor-section-clean .mentor-copy .btn-secondary {
  width: fit-content;
}

@media (max-width: 980px) {
  .home-body .hero-capture-container {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "form"
      "proof";
  }

  .home-body .hero-capture-container .hero-right {
    position: static;
  }

  .hero-proof-strip img {
    max-height: 420px;
  }
}

@media (max-width: 640px) {
  .home-body .site-header {
    justify-content: center;
  }

  .home-body .site-nav {
    display: flex;
    width: 100%;
    justify-content: center;
    gap: 14px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .home-body .site-nav::-webkit-scrollbar {
    display: none;
  }

  .home-body .site-nav a {
    flex: 0 0 auto;
    font-size: 0.82rem;
  }

  .home-body .hero-section {
    padding-top: 24px;
  }

  .home-body .hero-capture-container {
    width: min(100% - 24px, 1180px);
    gap: 18px;
  }

  .hero-proof-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .hero-proof-strip figure {
    padding: 8px;
  }

  .hero-proof-strip img {
    aspect-ratio: 3 / 4;
    max-height: 310px;
  }

  .mentor-section-clean .mentor-copy {
    padding-top: 22px;
  }

  .mentor-section-clean .mentor-copy .btn-secondary {
    width: 100%;
  }
}

/* Form before FAQ + styled mentor proof photos. */
.home-body .hero-capture-container {
  display: block;
  width: min(980px, calc(100% - 32px));
  max-width: 980px;
}

.home-body .hero-capture-container .hero-left {
  text-align: center;
}

.home-body .hero-capture-container .hero-title {
  max-width: 920px;
  margin: 0 auto;
}

.home-body .form-section {
  position: relative;
  z-index: 1;
  padding: clamp(26px, 5vw, 62px) 0 clamp(36px, 6vw, 74px);
}

.home-body .form-section::before {
  content: "";
  position: absolute;
  inset: 18% 50% auto;
  width: min(760px, 92vw);
  height: 280px;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(34, 211, 238, 0.12), transparent 68%);
  pointer-events: none;
  z-index: -1;
}

.home-body .form-section .lead-form {
  max-width: 620px;
  margin: 0 auto;
  border-color: rgba(103, 232, 249, 0.28);
  box-shadow:
    0 30px 86px rgba(0, 0, 0, 0.44),
    0 0 0 1px rgba(34, 211, 238, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.055);
}

.home-body .mentor-section-clean {
  width: min(1180px, calc(100% - 32px));
  padding-bottom: clamp(34px, 6vw, 74px);
}

.mentor-section-clean .mentor-clean-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1fr);
  gap: clamp(26px, 5vw, 70px);
  align-items: center;
}

.mentor-section-clean .mentor-copy {
  max-width: 660px;
  padding: 0;
  border-top: 0;
}

.mentor-proof-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(12px, 2vw, 18px);
  align-items: end;
}

.mentor-proof-strip figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  padding: 10px;
  border: 1px solid rgba(103, 232, 249, 0.2);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.014)),
    linear-gradient(145deg, rgba(34, 211, 238, 0.06), transparent 54%),
    rgba(8, 10, 13, 0.9);
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.055);
}

.mentor-proof-strip figure:nth-child(2) {
  transform: translateY(28px);
}

.mentor-proof-strip span {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  margin: 0;
  padding: 7px 10px;
  border: 1px solid rgba(103, 232, 249, 0.28);
  background: rgba(2, 3, 4, 0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.mentor-proof-strip img {
  width: 100%;
  aspect-ratio: 3 / 4.25;
  max-height: 540px;
  object-fit: cover;
  object-position: top center;
  border-radius: 2px;
  border: 1px solid rgba(103, 232, 249, 0.18);
  background: #050506;
}

@media (max-width: 980px) {
  .mentor-section-clean .mentor-clean-layout {
    grid-template-columns: 1fr;
  }

  .mentor-section-clean .mentor-copy {
    max-width: 820px;
  }

  .mentor-proof-strip {
    max-width: 720px;
    margin: 0 auto;
  }
}

@media (max-width: 640px) {
  .home-body .hero-capture-container {
    width: min(100% - 24px, 980px);
  }

  .home-body .form-section {
    width: min(100% - 24px, 1040px);
    padding-top: 28px;
  }

  .mentor-proof-strip {
    grid-template-columns: 1fr;
  }

  .mentor-proof-strip figure,
  .mentor-proof-strip figure:nth-child(2) {
    transform: none;
  }

  .mentor-proof-strip img {
    aspect-ratio: 4 / 5;
    max-height: 560px;
  }
}

/* Final polish: styled hero box and compact mobile before/after photos. */
.home-body .hero-section {
  padding-top: clamp(28px, 5vw, 58px);
  padding-bottom: clamp(34px, 6vw, 72px);
}

.home-body .hero-capture-container {
  position: relative;
  overflow: hidden;
  padding: clamp(24px, 5vw, 58px);
  border: 1px solid rgba(103, 232, 249, 0.2);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.052), rgba(255, 255, 255, 0.014)),
    radial-gradient(720px 340px at 50% 0%, rgba(34, 211, 238, 0.12), transparent 64%),
    radial-gradient(520px 260px at 8% 100%, rgba(103, 232, 249, 0.07), transparent 70%),
    rgba(8, 10, 13, 0.88);
  box-shadow:
    0 34px 100px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.home-body .hero-capture-container::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(103, 232, 249, 0.08);
  pointer-events: none;
}

.home-body .hero-capture-container::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(34, 211, 238, 0.72), transparent);
  pointer-events: none;
}

.home-body .hero-capture-container .hero-left {
  position: relative;
  z-index: 1;
}

.home-body .hero-capture-container .eyebrow {
  justify-content: center;
  margin-bottom: 22px;
}

.home-body .hero-capture-container .hero-title {
  font-size: clamp(2.7rem, 6vw, 5.8rem);
  line-height: 0.95;
}

@media (max-width: 640px) {
  .home-body .hero-section {
    padding-top: 22px;
    padding-bottom: 34px;
  }

  .home-body .hero-capture-container {
    padding: 22px 16px 24px;
  }

  .home-body .hero-capture-container::before {
    inset: 8px;
  }

  .home-body .hero-capture-container .hero-title {
    font-size: clamp(2rem, 10.2vw, 2.95rem);
    line-height: 1.03;
  }

  .mentor-proof-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    max-width: 100%;
  }

  .mentor-proof-strip figure {
    padding: 7px;
  }

  .mentor-proof-strip span {
    top: 12px;
    left: 12px;
    padding: 5px 7px;
    font-size: 0.64rem;
  }

  .mentor-proof-strip img {
    aspect-ratio: 3 / 4;
    max-height: 265px;
    min-height: 0;
  }
}

/* User-requested correction: no hero box; style learning/photo cards instead. */
.home-body .hero-capture-container {
  overflow: visible;
  padding: 0;
  border: 0;
  background: none;
  box-shadow: none;
}

.home-body .hero-capture-container::before,
.home-body .hero-capture-container::after {
  display: none;
}

.home-body .hero-capture-container .hero-title {
  font-family: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  font-size: clamp(3.1rem, 6.8vw, 6.6rem);
  line-height: 0.92;
  font-weight: 900;
}

.home-body .keys-grid-premium .key-card,
.home-body .keys-grid-secondary .key-card {
  border: 1px solid rgba(103, 232, 249, 0.24);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.062), rgba(255, 255, 255, 0.014)),
    radial-gradient(260px 180px at 18% 0%, rgba(34, 211, 238, 0.1), transparent 66%),
    rgba(8, 10, 13, 0.9);
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.055);
}

.home-body .keys-grid-premium .key-card::before,
.home-body .keys-grid-secondary .key-card::before {
  content: "";
  display: block;
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(103, 232, 249, 0.08);
  pointer-events: none;
}

.home-body .keys-grid-premium .key-card::after,
.home-body .keys-grid-secondary .key-card::after {
  display: block;
  height: 2px;
  opacity: 1;
  background: linear-gradient(90deg, transparent, rgba(34, 211, 238, 0.74), transparent);
}

.home-body .keys-grid-premium .key-number {
  color: var(--accent);
  font-family: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  text-shadow: 0 0 24px rgba(34, 211, 238, 0.2);
}

.home-body .keys-grid-premium .key-tag {
  border-color: rgba(103, 232, 249, 0.28);
  background: rgba(34, 211, 238, 0.07);
}

.mentor-proof-strip figure {
  border-color: rgba(103, 232, 249, 0.28);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.012)),
    radial-gradient(220px 180px at 50% 0%, rgba(34, 211, 238, 0.13), transparent 72%),
    rgba(7, 9, 12, 0.94);
  box-shadow:
    0 28px 82px rgba(0, 0, 0, 0.42),
    0 0 0 1px rgba(34, 211, 238, 0.045),
    inset 0 1px 0 rgba(255, 255, 255, 0.065);
}

.mentor-proof-strip figure::after {
  content: "";
  position: absolute;
  inset: auto 10px 10px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(34, 211, 238, 0.7), transparent);
  pointer-events: none;
}

.mentor-proof-strip img {
  filter: saturate(0.96) contrast(1.04);
}

.mentor-proof-strip .mentor-stage-after {
  filter: saturate(1.08) contrast(1.06) brightness(1.04);
}

@media (max-width: 640px) {
  .home-body .hero-capture-container {
    padding: 0;
  }

  .home-body .hero-capture-container .hero-title {
    font-size: clamp(2.25rem, 11vw, 3.25rem);
    line-height: 0.98;
  }

  .home-body .keys-grid-premium .key-card,
  .home-body .keys-grid-secondary .key-card {
    padding: 18px;
  }

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

  .mentor-proof-strip figure {
    padding: 6px;
  }

  .mentor-proof-strip img {
    aspect-ratio: 3 / 4;
    max-height: 220px;
  }
}

/* Mobile UX pass: compact, touch-friendly, conversion-oriented. */
@media (max-width: 640px) {
  .home-body {
    padding-bottom: calc(74px + env(safe-area-inset-bottom, 0px));
  }

  .home-body .site-header {
    position: sticky;
    top: 0;
    width: 100%;
    min-height: 54px;
    padding: 0 12px;
    border-bottom: 1px solid rgba(103, 232, 249, 0.14);
    background: rgba(2, 3, 4, 0.88);
  }

  .home-body .site-header::before {
    height: 54px;
    background: rgba(2, 3, 4, 0.88);
  }

  .home-body .site-nav {
    justify-content: flex-start;
    gap: 8px;
    padding: 8px 0;
  }

  .home-body .site-nav a {
    min-height: 34px;
    padding: 8px 10px;
    border: 1px solid rgba(103, 232, 249, 0.14);
    background: rgba(255, 255, 255, 0.035);
    color: rgba(245, 242, 234, 0.86);
    font-size: 0.78rem;
    line-height: 1;
    white-space: nowrap;
  }

  .home-body .hero-section {
    padding: 22px 0 26px;
  }

  .home-body .eyebrow {
    margin-bottom: 12px;
    font-size: 0.68rem;
    line-height: 1.25;
  }

  .home-body .hero-capture-container .hero-title {
    max-width: 11ch;
    margin-inline: auto;
    font-size: clamp(2.4rem, 12vw, 3.5rem);
    line-height: 0.94;
  }

  .home-body .mentor-section-clean,
  .home-body .keys-section,
  .home-body .form-section,
  .home-body .faq-section,
  .home-body .contact-section {
    width: min(100% - 24px, 1180px);
    padding-top: 34px;
    padding-bottom: 34px;
  }

  .home-body .section-heading {
    margin-bottom: 16px;
  }

  .home-body .section-heading h2,
  .home-body .mentor-section-clean .section-heading h2 {
    font-size: clamp(1.9rem, 10vw, 2.7rem);
    line-height: 1.02;
  }

  .mentor-section-clean .mentor-clean-layout {
    gap: 20px;
  }

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

  .mentor-proof-strip figure {
    padding: 5px;
  }

  .mentor-proof-strip span {
    top: 9px;
    left: 9px;
    padding: 4px 6px;
    font-size: 0.58rem;
  }

  .mentor-proof-strip img {
    aspect-ratio: 3 / 3.85;
    max-height: 190px;
  }

  .mentor-copy .mentor-intro {
    font-size: 0.94rem;
    line-height: 1.58;
    margin-bottom: 12px;
  }

  .mentor-copy .mentor-list {
    gap: 9px;
    margin: 14px 0;
  }

  .home-body .mentor-list li {
    padding: 12px 12px 12px 34px;
    border: 1px solid rgba(103, 232, 249, 0.12);
    background: rgba(255, 255, 255, 0.028);
    font-size: 0.88rem;
    line-height: 1.5;
  }

  .home-body .mentor-list li span {
    left: 14px;
    top: 18px;
  }

  .home-body .keys-grid {
    gap: 10px;
  }

  .home-body .key-card {
    min-height: 0;
  }

  .home-body .keys-grid-premium .key-card,
  .home-body .keys-grid-secondary .key-card {
    padding: 16px;
  }

  .home-body .key-head {
    align-items: flex-start;
    margin-bottom: 10px;
  }

  .home-body .key-number {
    font-size: 1.75rem;
  }

  .home-body .key-tag {
    max-width: 54%;
    justify-content: center;
    text-align: center;
    font-size: 0.58rem;
    line-height: 1.15;
  }

  .home-body .key-card h3 {
    font-size: 1rem;
  }

  .home-body .key-card p,
  .keys-grid-secondary .key-card p {
    font-size: 0.88rem;
    line-height: 1.52;
  }

  .keys-extra {
    margin-top: 14px;
  }

  .keys-extra-title {
    margin-bottom: 10px;
    font-size: 0.76rem;
    line-height: 1.35;
  }

  .home-body .form-section {
    padding-top: 22px;
  }

  .home-body .form-section .lead-form {
    padding: 16px;
    gap: 10px;
  }

  .phone-field {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .home-body .input-wrap input,
  .home-body .input-wrap select {
    min-height: 48px;
    padding: 13px 14px;
    font-size: 1rem;
  }

  .home-body .btn-primary {
    min-height: 52px;
    padding: 14px 16px;
    font-size: 0.78rem;
    line-height: 1.2;
  }

  .home-body .faq-item {
    padding: 0 12px;
  }

  .home-body .faq-item summary {
    min-height: 52px;
    padding: 13px 0;
    font-size: 0.9rem;
    line-height: 1.35;
  }

  .home-body .faq-item p {
    font-size: 0.88rem;
    line-height: 1.55;
  }

  .home-body .contact-card {
    padding: 16px;
  }

  .mobile-sticky-cta {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: calc(10px + env(safe-area-inset-bottom, 0px));
    z-index: 1200;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    border: 1px solid rgba(103, 232, 249, 0.76);
    background: linear-gradient(135deg, #a5f3fc, #22d3ee);
    color: #031014;
    font-size: 0.86rem;
    font-weight: 950;
    text-transform: uppercase;
    box-shadow:
      0 18px 44px rgba(0, 0, 0, 0.5),
      0 0 28px rgba(34, 211, 238, 0.22);
  }
}

/* Mobile visual simplification: fewer boxes, calmer hierarchy. */
@media (max-width: 640px) {
  .home-body {
    padding-bottom: 0;
  }

  .home-body::before {
    background:
      radial-gradient(580px 280px at 50% -12%, rgba(34, 211, 238, 0.1), transparent 70%),
      linear-gradient(180deg, #050506 0%, #020304 58%, #050607 100%);
  }

  .home-body .luxury-bg {
    opacity: 0.45;
    background-size: 120px 120px;
  }

  .home-body .site-header {
    min-height: 50px;
    padding: 0 14px;
    background: rgba(2, 3, 4, 0.76);
  }

  .home-body .site-header::before {
    height: 50px;
    background: rgba(2, 3, 4, 0.76);
  }

  .home-body .site-nav {
    gap: 18px;
    padding: 0;
  }

  .home-body .site-nav a {
    min-height: 50px;
    padding: 0;
    border: 0;
    background: transparent;
    color: rgba(245, 242, 234, 0.7);
    font-size: 0.78rem;
    font-weight: 750;
  }

  .home-body .hero-section {
    padding: 24px 0 18px;
  }

  .home-body .hero-capture-container .hero-title {
    max-width: 12ch;
    font-size: clamp(2.35rem, 11vw, 3.3rem);
    line-height: 0.96;
  }

  .home-body .mentor-section-clean,
  .home-body .keys-section,
  .home-body .form-section,
  .home-body .faq-section,
  .home-body .contact-section {
    padding-top: 28px;
    padding-bottom: 28px;
  }

  .home-body .section-heading {
    margin-bottom: 14px;
  }

  .home-body .section-heading h2,
  .home-body .mentor-section-clean .section-heading h2 {
    font-size: clamp(1.8rem, 8.8vw, 2.45rem);
  }

  .mentor-section-clean .mentor-clean-layout {
    gap: 16px;
  }

  .mentor-proof-strip {
    gap: 8px;
  }

  .mentor-proof-strip figure,
  .mentor-proof-strip figure:nth-child(2) {
    padding: 0;
    border: 0;
    background: none;
    box-shadow: none;
    transform: none;
  }

  .mentor-proof-strip figure::after {
    display: none;
  }

  .mentor-proof-strip span {
    top: 7px;
    left: 7px;
    border: 0;
    background: rgba(2, 3, 4, 0.68);
    font-size: 0.57rem;
  }

  .mentor-proof-strip img {
    max-height: 170px;
    border: 1px solid rgba(103, 232, 249, 0.14);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
  }

  .mentor-copy .mentor-intro {
    font-size: 0.93rem;
    line-height: 1.6;
  }

  .home-body .mentor-list {
    gap: 0;
    margin: 12px 0 16px;
    border-top: 1px solid rgba(103, 232, 249, 0.12);
  }

  .home-body .mentor-list li {
    padding: 12px 0 12px 24px;
    border: 0;
    border-bottom: 1px solid rgba(103, 232, 249, 0.1);
    background: transparent;
  }

  .home-body .mentor-list li span {
    left: 2px;
    top: 20px;
    width: 6px;
    height: 6px;
  }

  .home-body .keys-grid,
  .home-body .keys-grid-premium,
  .home-body .keys-grid-secondary {
    display: grid;
    gap: 0;
  }

  .home-body .keys-grid-premium,
  .home-body .keys-grid-secondary {
    border-top: 1px solid rgba(103, 232, 249, 0.12);
  }

  .home-body .keys-grid-premium .key-card,
  .home-body .keys-grid-secondary .key-card {
    padding: 16px 0;
    border: 0;
    border-bottom: 1px solid rgba(103, 232, 249, 0.1);
    background: transparent;
    box-shadow: none;
  }

  .home-body .keys-grid-premium .key-card::before,
  .home-body .keys-grid-secondary .key-card::before,
  .home-body .keys-grid-premium .key-card::after,
  .home-body .keys-grid-secondary .key-card::after {
    display: none;
  }

  .home-body .key-head {
    margin-bottom: 6px;
  }

  .home-body .key-number {
    font-size: 1.35rem;
  }

  .home-body .key-tag {
    max-width: none;
    padding: 0;
    border: 0;
    background: transparent;
    color: rgba(103, 232, 249, 0.86);
    font-size: 0.66rem;
  }

  .home-body .key-card h3 {
    margin-bottom: 6px;
    font-size: 1rem;
  }

  .keys-extra-title {
    margin-top: 18px;
    margin-bottom: 4px;
    text-align: left;
  }

  .home-body .form-section .lead-form {
    padding: 16px;
    border-color: rgba(103, 232, 249, 0.18);
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.012)),
      rgba(8, 10, 13, 0.84);
    box-shadow: 0 18px 54px rgba(0, 0, 0, 0.32);
  }

  .home-body .faq-list {
    gap: 0;
    border-top: 1px solid rgba(103, 232, 249, 0.12);
  }

  .home-body .faq-item {
    padding: 0;
    border: 0;
    border-bottom: 1px solid rgba(103, 232, 249, 0.1);
    background: transparent;
    box-shadow: none;
  }

  .home-body .faq-item:hover,
  .home-body .faq-item[open] {
    transform: none;
    box-shadow: none;
  }

  .home-body .faq-item p {
    border-top: 0;
  }

  .home-body .contact-grid {
    gap: 0;
    border-top: 1px solid rgba(103, 232, 249, 0.12);
  }

  .home-body .contact-card {
    padding: 16px 0;
    border: 0;
    border-bottom: 1px solid rgba(103, 232, 249, 0.1);
    background: transparent;
    box-shadow: none;
  }

  .home-body .contact-card .btn-secondary {
    min-height: 44px;
  }

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

/* Must stay after mobile simplification: fix mentor mobile title and photo labels. */
@media (max-width: 640px) {
  .home-body .mentor-section-clean .section-heading {
    text-align: center;
    margin-bottom: 22px;
  }

  .home-body .mentor-section-clean .eyebrow.centered {
    justify-content: center;
  }

  .home-body .mentor-section-clean .section-heading h2 {
    max-width: 9ch;
    margin: 0 auto;
    font-size: clamp(2.35rem, 11vw, 3.35rem);
    line-height: 0.94;
  }

  .mentor-proof-strip {
    max-width: 360px;
    margin: 0 auto 22px;
  }

  .mentor-proof-strip span {
    top: 8px;
    right: auto;
    bottom: auto;
    left: 8px;
    width: auto;
    height: auto;
    line-height: 1;
  }

  .mentor-proof-strip img {
    max-height: 210px;
  }
}

/* Final mobile polish for "Lo que aprenderás" cards. */
@media (max-width: 640px) {
  .home-body .keys-section {
    padding-top: 34px;
  }

  .home-body .keys-grid,
  .home-body .keys-grid-premium,
  .home-body .keys-grid-secondary {
    gap: 12px;
    border-top: 0;
  }

  .home-body .keys-grid-premium .key-card,
  .home-body .keys-grid-secondary .key-card {
    position: relative;
    padding: 18px;
    border: 1px solid rgba(103, 232, 249, 0.18);
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.012)),
      radial-gradient(260px 150px at 18% 0%, rgba(34, 211, 238, 0.11), transparent 72%),
      rgba(6, 8, 10, 0.86);
    box-shadow:
      0 18px 46px rgba(0, 0, 0, 0.32),
      inset 0 1px 0 rgba(255, 255, 255, 0.055);
  }

  .home-body .keys-grid-premium .key-card::before,
  .home-body .keys-grid-secondary .key-card::before {
    content: "";
    display: block;
    position: absolute;
    inset: 8px;
    border: 1px solid rgba(103, 232, 249, 0.055);
    pointer-events: none;
  }

  .home-body .keys-grid-premium .key-card::after,
  .home-body .keys-grid-secondary .key-card::after {
    display: block;
    height: 2px;
    background: linear-gradient(90deg, rgba(34, 211, 238, 0.7), transparent);
  }

  .home-body .key-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 14px;
  }

  .home-body .key-number {
    font-size: 2rem;
    line-height: 0.9;
  }

  .home-body .key-tag {
    max-width: 145px;
    padding: 6px 9px;
    border: 1px solid rgba(103, 232, 249, 0.18);
    background: rgba(34, 211, 238, 0.07);
    border-radius: 999px;
    color: rgba(103, 232, 249, 0.94);
    font-size: 0.64rem;
    line-height: 1.12;
    text-align: right;
  }

  .home-body .key-card h3 {
    margin-bottom: 8px;
    font-size: 1.08rem;
    line-height: 1.18;
  }

  .home-body .key-card p,
  .home-body .keys-grid-secondary .key-card p {
    font-size: 0.9rem;
    line-height: 1.52;
  }

  .home-body .keys-extra {
    margin-top: 20px;
  }

  .home-body .keys-extra-title {
    margin: 0 0 12px;
    padding: 0 0 10px;
    border-bottom: 1px solid rgba(103, 232, 249, 0.18);
    color: rgba(246, 243, 234, 0.94);
    font-size: 0.82rem;
    line-height: 1.32;
    text-align: left;
  }

  .home-body .keys-grid-secondary {
    gap: 10px;
  }

  .home-body .keys-grid-secondary .key-card {
    padding: 16px 16px 16px 58px;
    min-height: 0;
  }

  .home-body .keys-grid-secondary .key-card h3 {
    display: block;
    margin-bottom: 7px;
    font-size: 1rem;
    line-height: 1.18;
  }

  .home-body .keys-grid-secondary .key-card h3::before {
    position: absolute;
    left: 16px;
    top: 17px;
    width: 30px;
    height: 30px;
    margin: 0;
    display: grid;
    place-items: center;
    border: 1px solid rgba(103, 232, 249, 0.4);
    background: rgba(34, 211, 238, 0.08);
    border-radius: 50%;
    color: #67e8f9;
    font-size: 0.72rem;
    font-weight: 950;
  }
}

/* Final desktop learning cards override. */
@media (min-width: 641px) {
  .home-body .keys-section {
    width: min(1120px, calc(100% - 32px));
  }

  .home-body .keys-grid-premium,
  .home-body .keys-grid-secondary {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    border-top: 0;
  }

  .home-body .keys-grid-premium .key-card,
  .home-body .keys-grid-secondary .key-card {
    display: flex;
    flex-direction: column;
    min-height: 270px;
    padding: 24px;
    border: 1px solid rgba(103, 232, 249, 0.2);
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.052), rgba(255, 255, 255, 0.014)),
      radial-gradient(300px 210px at 50% -12%, rgba(34, 211, 238, 0.12), transparent 70%),
      rgba(8, 10, 13, 0.9);
    box-shadow:
      0 24px 70px rgba(0, 0, 0, 0.34),
      inset 0 1px 0 rgba(255, 255, 255, 0.055);
  }

  .home-body .keys-grid-secondary .key-card {
    min-height: 210px;
  }

  .home-body .keys-grid-premium .key-card::before,
  .home-body .keys-grid-secondary .key-card::before {
    content: "";
    display: block;
    position: absolute;
    inset: 10px;
    border: 1px solid rgba(103, 232, 249, 0.07);
    pointer-events: none;
  }

  .home-body .keys-grid-premium .key-card::after,
  .home-body .keys-grid-secondary .key-card::after {
    display: block;
    height: 2px;
    opacity: 1;
    background: linear-gradient(90deg, transparent, rgba(34, 211, 238, 0.72), transparent);
  }

  .home-body .key-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 28px;
  }

  .home-body .key-number {
    display: block;
    font-size: 3.2rem;
    line-height: 0.82;
    color: #22d3ee;
    text-shadow: 0 0 24px rgba(34, 211, 238, 0.18);
  }

  .home-body .key-tag {
    display: inline-flex;
    width: auto;
    max-width: 130px;
    margin: 0;
    padding: 7px 10px;
    border: 1px solid rgba(103, 232, 249, 0.22);
    background: rgba(34, 211, 238, 0.06);
    color: rgba(103, 232, 249, 0.96);
    text-align: right;
    font-size: 0.66rem;
    line-height: 1.15;
  }

  .home-body .key-card h3,
  .home-body .key-card p {
    grid-column: auto;
  }

  .home-body .key-card h3 {
    margin-bottom: 10px;
    font-size: 1.22rem;
    line-height: 1.18;
  }

  .home-body .key-card p {
    max-width: none;
    font-size: 0.94rem;
    line-height: 1.62;
  }

  .home-body .keys-grid-secondary .key-card h3 {
    display: block;
    font-size: 1.1rem;
  }

  .home-body .keys-grid-secondary .key-card h3::before {
    margin: 0 0 16px;
  }

  .keys-extra-title {
    margin-bottom: 18px;
    text-align: center;
  }
}

/* FINAL MASTERCLASS OVERRIDE AT EOF */
.masterclass-body .site-header { position: sticky; top: 0; z-index: 100; width: min(1180px, calc(100% - 32px)); min-height: 72px; margin: 0 auto clamp(18px, 3vw, 34px); display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: center; gap: 20px; }
.masterclass-body .site-nav { display: flex; justify-content: flex-start; gap: clamp(14px, 2vw, 26px); }
.masterclass-body .site-nav a { color: rgba(246, 243, 234, 0.7); font-size: 0.86rem; font-weight: 750; }
.masterclass-body .video-section { width: min(1120px, calc(100% - 32px)); padding: clamp(26px, 5vw, 62px) 0 clamp(42px, 6vw, 82px); border: 0; background: none; box-shadow: none; text-align: center; }
.masterclass-body .video-section::before, .masterclass-body .video-section::after { display: none; }
.masterclass-body .video-title { max-width: 980px; margin: 0 auto clamp(44px, 6vw, 72px); color: #f6f3ea; font-family: "Cormorant Garamond", "Playfair Display", Georgia, serif; font-size: clamp(3.2rem, 7.4vw, 7.2rem); line-height: 0.94; font-weight: 700; letter-spacing: 0; text-transform: none; }
.masterclass-body .video-title .gradient-text { display: block; margin-top: 4px; padding-bottom: 0.08em; line-height: 0.98; background: linear-gradient(135deg, #ffffff 0%, #bff9ff 36%, #22d3ee 88%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.masterclass-body .video-spacer { display: none; }
.masterclass-body .video-frame-wrap { max-width: 980px; margin: 0 auto clamp(18px, 3vw, 28px); border: 1px solid rgba(246, 243, 234, 0.16); border-radius: 0; background: #000; box-shadow: 0 34px 100px rgba(0, 0, 0, 0.58), 0 0 0 1px rgba(34, 211, 238, 0.04); }
.masterclass-body .student-videos-section, .masterclass-body .proof-section { width: min(1120px, calc(100% - 32px)); padding: clamp(34px, 5vw, 58px) 0; border: 0; border-radius: 0; background: transparent; box-shadow: none; }
.masterclass-body .final-cta { width: min(1120px, calc(100% - 32px)); padding: clamp(34px, 5vw, 58px); border: 1px solid rgba(103, 232, 249, 0.18); border-radius: 0; background: linear-gradient(180deg, rgba(246, 243, 234, 0.052), rgba(246, 243, 234, 0.014)), radial-gradient(560px 260px at 50% 0%, rgba(34, 211, 238, 0.08), transparent 72%), rgba(8, 10, 13, 0.88); box-shadow: 0 28px 84px rgba(0, 0, 0, 0.38), inset 0 1px 0 rgba(255, 255, 255, 0.05); }
.masterclass-body .section-heading h2, .masterclass-body .final-cta h2 { font-family: "Cormorant Garamond", "Playfair Display", Georgia, serif; font-size: clamp(2.4rem, 4.8vw, 4.8rem); line-height: 0.94; }
.masterclass-body .sv-item, .masterclass-body .proof-item { border: 0; border-radius: 0; background: transparent; box-shadow: none; }
.masterclass-body .sv-item.is-active { border-color: transparent; box-shadow: none; }
.masterclass-body .proof-item img, .masterclass-body .sv-item video { border: 1px solid rgba(246, 243, 234, 0.12); border-radius: 0; box-shadow: 0 22px 60px rgba(0, 0, 0, 0.34); }
.masterclass-body .final-cta { text-align: center; }
@media (max-width: 640px) {
  .masterclass-body .site-header {
    display: none;
  }

  .masterclass-body .video-section {
    width: min(100% - 24px, 1120px);
    padding-top: 30px;
    padding-bottom: 36px;
  }

  .masterclass-body .video-title {
    margin-bottom: 30px;
    font-size: clamp(2.55rem, 12vw, 4rem);
    line-height: 0.98;
  }

  .masterclass-body .video-frame-wrap {
    width: 100%;
    margin-bottom: 16px;
  }

  .masterclass-body .cta-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .masterclass-body .student-videos-section,
  .masterclass-body .proof-section {
    width: min(100% - 24px, 1120px);
    padding: 26px 0;
  }

  .masterclass-body .final-cta {
    width: min(100% - 24px, 1120px);
    padding: 24px 14px;
  }

  .masterclass-body .section-heading h2,
  .masterclass-body .final-cta h2 {
    font-size: clamp(2rem, 9.5vw, 3rem);
  }

  .masterclass-body .proof-shell {
    padding-inline: 0;
  }

  .masterclass-body .proof-item {
    flex-basis: clamp(210px, 72vw, 280px);
  }
}

/* Absolute final mobile override for the Lo que aprenderas visual cards. */
@media (max-width: 640px) {
  .home-body .keys-section {
    width: min(100% - 24px, 1180px);
    padding-top: 34px;
  }

  .home-body .keys-grid-premium,
  .home-body .keys-grid-secondary {
    display: grid !important;
    gap: 12px !important;
    border-top: 0 !important;
  }

  .home-body .keys-grid-premium .key-card,
  .home-body .keys-grid-secondary .key-card {
    position: relative !important;
    overflow: hidden;
    min-height: 0 !important;
    padding: 16px !important;
    border: 1px solid rgba(103, 232, 249, 0.2) !important;
    border-radius: 0;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.012)),
      radial-gradient(280px 160px at 14% 0%, rgba(34, 211, 238, 0.13), transparent 72%),
      rgba(6, 8, 10, 0.9) !important;
    box-shadow:
      0 18px 46px rgba(0, 0, 0, 0.34),
      inset 0 1px 0 rgba(255, 255, 255, 0.06) !important;
  }

  .home-body .keys-grid-premium .key-card::before,
  .home-body .keys-grid-secondary .key-card::before {
    display: none !important;
  }

  .home-body .keys-grid-premium .key-card::after,
  .home-body .keys-grid-secondary .key-card::after {
    display: block !important;
    height: 2px !important;
    background: linear-gradient(90deg, rgba(34, 211, 238, 0.72), transparent) !important;
  }

  .home-body .keys-grid-premium .key-card {
    display: grid !important;
    grid-template-columns: 82px minmax(0, 1fr) !important;
    column-gap: 12px !important;
    row-gap: 8px !important;
  }

  .home-body .key-head {
    grid-column: 1 !important;
    grid-row: 1 / span 2 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    gap: 8px !important;
    margin: 0 !important;
  }

  .home-body .key-number {
    display: block !important;
    font-size: 2.05rem !important;
    line-height: 0.9 !important;
  }

  .home-body .key-tag {
    max-width: 78px !important;
    padding: 6px 7px !important;
    border: 1px solid rgba(103, 232, 249, 0.2) !important;
    background: rgba(34, 211, 238, 0.08) !important;
    border-radius: 999px;
    color: rgba(103, 232, 249, 0.96) !important;
    font-size: 0.58rem !important;
    line-height: 1.12 !important;
    text-align: center !important;
  }

  .home-body .key-card h3 {
    grid-column: 2 !important;
    margin: 0 !important;
    font-size: 1.02rem !important;
    line-height: 1.18 !important;
  }

  .home-body .key-card p,
  .home-body .keys-grid-secondary .key-card p {
    grid-column: 2 !important;
    margin: 0 !important;
    font-size: 0.86rem !important;
    line-height: 1.48 !important;
  }

  .home-body .keys-extra {
    margin-top: 20px !important;
  }

  .home-body .keys-extra-title {
    margin: 0 0 12px !important;
    padding: 0 0 10px !important;
    border-bottom: 1px solid rgba(103, 232, 249, 0.18);
    color: rgba(246, 243, 234, 0.94) !important;
    font-size: 0.82rem !important;
    line-height: 1.32 !important;
    text-align: left !important;
  }

  .home-body .keys-grid-secondary .key-card {
    display: grid !important;
    grid-template-columns: 40px minmax(0, 1fr) !important;
    column-gap: 12px !important;
    row-gap: 6px !important;
    padding: 15px !important;
  }

  .home-body .keys-grid-secondary .key-card h3 {
    display: grid !important;
    grid-template-columns: 40px minmax(0, 1fr) !important;
    grid-column: 1 / -1 !important;
    column-gap: 12px !important;
    align-items: center !important;
    margin: 0 !important;
    font-size: 0.98rem !important;
    line-height: 1.18 !important;
  }

  .home-body .keys-grid-secondary .key-card h3::before {
    position: static !important;
    width: 30px !important;
    height: 30px !important;
    margin: 0 !important;
    display: grid !important;
    place-items: center;
    border: 1px solid rgba(103, 232, 249, 0.42) !important;
    background: rgba(34, 211, 238, 0.09) !important;
    border-radius: 50%;
    color: #67e8f9 !important;
    font-size: 0.72rem !important;
    font-weight: 950 !important;
  }

  .home-body .keys-grid-secondary .key-card p {
    grid-column: 2 !important;
  }

  .home-body .hero-motivation {
    max-width: 30rem;
    margin: 16px auto 0 !important;
    padding: 0 8px;
    font-size: 0.95rem !important;
    line-height: 1.5 !important;
  }
}

/* Absolute final premium two-step form. */
.home-body .form-section {
  width: min(980px, calc(100% - 32px));
}

.home-body .form-section .lead-form {
  position: relative;
  max-width: 900px;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(103, 232, 249, 0.24);
  border-radius: 0;
  background:
    radial-gradient(520px 300px at 50% 0%, rgba(34, 211, 238, 0.14), transparent 72%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.014)),
    rgba(7, 9, 13, 0.94);
  box-shadow:
    0 38px 120px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.065);
}

.home-body .form-section .lead-form::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(103, 232, 249, 0.065);
  pointer-events: none;
}

.home-body .form-section .lead-form::after {
  display: none;
}

.home-body .form-header {
  max-width: 680px;
  margin: 0 auto clamp(24px, 4vw, 34px);
}

.home-body .form-header p {
  margin: 10px auto 0;
  color: rgba(246, 243, 234, 0.68);
  font-size: 0.98rem;
  line-height: 1.6;
}

.form-progress {
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto;
  align-items: center;
  gap: 16px;
  margin-bottom: clamp(24px, 4vw, 36px);
}

.form-progress-line {
  height: 1px;
  background: linear-gradient(90deg, rgba(103, 232, 249, 0.42), rgba(246, 243, 234, 0.12));
}

.form-step-dot {
  display: grid;
  justify-items: center;
  gap: 8px;
  color: rgba(246, 243, 234, 0.45);
  text-align: center;
}

.form-step-dot strong {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(246, 243, 234, 0.18);
  border-radius: 50%;
  background: rgba(2, 3, 4, 0.72);
  color: rgba(246, 243, 234, 0.72);
  font-size: 0.95rem;
}

.form-step-dot span {
  color: currentColor;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.form-step-dot.active,
.form-step-dot.complete {
  color: #22d3ee;
}

.form-step-dot.active strong,
.form-step-dot.complete strong {
  border-color: rgba(34, 211, 238, 0.78);
  background: #22d3ee;
  color: #031014;
  box-shadow: 0 0 34px rgba(34, 211, 238, 0.26);
}

.form-step[hidden] {
  display: none;
}

.form-step.active {
  display: grid;
  gap: 18px;
}

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

.home-body .form-section .input-wrap input,
.home-body .form-section .input-wrap select {
  min-height: 58px;
  border-color: rgba(246, 243, 234, 0.14);
  background: rgba(2, 3, 4, 0.68);
}

.choice-group {
  display: grid;
  gap: 10px;
}

.choice-group > p {
  color: rgba(246, 243, 234, 0.72);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.choice-grid label {
  cursor: pointer;
}

.choice-grid input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.choice-grid span {
  display: flex;
  align-items: center;
  min-height: 54px;
  padding: 14px 16px;
  border: 1px solid rgba(246, 243, 234, 0.13);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.01)),
    rgba(2, 3, 4, 0.62);
  color: rgba(246, 243, 234, 0.78);
  font-size: 0.92rem;
  font-weight: 650;
}

.choice-grid input:checked + span {
  border-color: rgba(34, 211, 238, 0.84);
  background:
    radial-gradient(160px 70px at 100% 0%, rgba(34, 211, 238, 0.18), transparent 70%),
    rgba(34, 211, 238, 0.08);
  color: #f6f3ea;
  box-shadow: inset 0 0 0 1px rgba(34, 211, 238, 0.18);
}

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

.choice-grid-goals span {
  min-height: 58px;
}

.form-actions {
  display: grid;
  grid-template-columns: auto minmax(260px, 0.55fr);
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 6px;
}

.form-back {
  min-height: 48px;
  border: 0;
  background: transparent;
  color: rgba(246, 243, 234, 0.62);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.form-back:hover {
  color: #f6f3ea;
}

.home-body .form-section .form-error {
  min-height: 20px;
  color: #ff8f9d;
  font-size: 0.86rem;
  font-weight: 750;
}

.home-body .form-section .form-privacy {
  margin-top: 12px;
  padding-top: 18px;
  border-top: 1px solid rgba(246, 243, 234, 0.1);
  text-align: center;
}

@media (max-width: 760px) {
  .home-body .form-section {
    width: min(100% - 24px, 980px);
  }

  .home-body .form-section .lead-form {
    padding: 18px;
  }

  .home-body .form-section .lead-form::before {
    display: none;
  }

  .home-body .form-header {
    text-align: left;
  }

  .home-body .form-header p {
    font-size: 0.9rem;
  }

  .form-progress {
    gap: 8px;
    margin-bottom: 22px;
  }

  .form-step-dot strong {
    width: 34px;
    height: 34px;
    font-size: 0.82rem;
  }

  .form-step-dot span {
    font-size: 0.52rem;
    letter-spacing: 0.08em;
  }

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

  .choice-grid {
    gap: 8px;
  }

  .choice-grid span {
    min-height: 48px;
    padding: 12px 13px;
    font-size: 0.88rem;
  }
}

/* Absolute final premium header and footer. */
.home-body .site-header,
.masterclass-body .site-header {
  width: min(1180px, calc(100% - 32px));
  min-height: 76px;
  margin: 0 auto clamp(22px, 3vw, 40px);
  padding: 0;
  display: grid;
  grid-template-columns: minmax(230px, 0.9fr) auto minmax(190px, 0.45fr);
  align-items: center;
  gap: 22px;
  border-bottom: 1px solid rgba(103, 232, 249, 0.16);
  background: transparent;
}

.home-body .site-header::before,
.masterclass-body .site-header::before {
  display: none;
}

.home-body .brand,
.masterclass-body .brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  color: #f6f3ea;
  text-decoration: none;
}

.home-body .brand-mark,
.masterclass-body .brand-mark,
.footer-brand .brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(103, 232, 249, 0.34);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 0%, rgba(103, 232, 249, 0.2), transparent 70%),
    rgba(2, 3, 4, 0.72);
  color: #67e8f9;
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.04em;
  box-shadow: 0 0 28px rgba(34, 211, 238, 0.12);
}

.home-body .brand span:last-child,
.masterclass-body .brand span:last-child {
  display: grid;
  gap: 2px;
}

.home-body .brand strong,
.masterclass-body .brand strong,
.footer-brand strong {
  color: #f6f3ea;
  font-size: 0.98rem;
  font-weight: 900;
  line-height: 1.1;
}

.home-body .brand small,
.masterclass-body .brand small {
  color: rgba(246, 243, 234, 0.54);
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-body .site-nav,
.masterclass-body .site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 2vw, 28px);
}

.home-body .site-nav a,
.masterclass-body .site-nav a {
  position: relative;
  color: rgba(246, 243, 234, 0.64);
  font-size: 0.84rem;
  font-weight: 850;
  text-decoration: none;
}

.home-body .site-nav a::after,
.masterclass-body .site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -11px;
  height: 1px;
  transform: scaleX(0);
  transform-origin: center;
  background: #22d3ee;
  transition: transform 160ms ease;
}

.home-body .site-nav a:hover,
.masterclass-body .site-nav a:hover {
  color: #f6f3ea;
}

.home-body .site-nav a:hover::after,
.masterclass-body .site-nav a:hover::after {
  transform: scaleX(1);
}

.home-body .header-cta,
.masterclass-body .header-cta {
  justify-self: end;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid rgba(246, 243, 234, 0.22);
  background: rgba(255, 255, 255, 0.035);
  color: #f6f3ea;
  font-size: 0.82rem;
  font-weight: 900;
  text-decoration: none;
}

.home-body .header-cta:hover,
.masterclass-body .header-cta:hover {
  border-color: rgba(103, 232, 249, 0.48);
  background: rgba(34, 211, 238, 0.08);
}

.site-footer {
  width: min(1180px, calc(100% - 32px));
  margin: clamp(42px, 8vw, 90px) auto 0;
  padding: 28px 0 34px;
  border-top: 1px solid rgba(103, 232, 249, 0.16);
  color: rgba(246, 243, 234, 0.62);
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto;
  gap: 22px;
  align-items: center;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.footer-brand p {
  max-width: 430px;
  margin-top: 4px;
  color: rgba(246, 243, 234, 0.56);
  font-size: 0.88rem;
  line-height: 1.55;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px 20px;
}

.footer-links a {
  color: rgba(246, 243, 234, 0.68);
  font-size: 0.82rem;
  font-weight: 800;
  text-decoration: none;
}

.footer-links a:hover {
  color: #67e8f9;
}

.footer-copy {
  grid-column: 1 / -1;
  margin-top: 10px;
  padding-top: 18px;
  border-top: 1px solid rgba(246, 243, 234, 0.08);
  color: rgba(246, 243, 234, 0.42);
  font-size: 0.78rem;
}

@media (max-width: 860px) {
  .home-body .site-header,
  .masterclass-body .site-header {
    display: none;
  }

  .site-footer {
    width: min(100% - 24px, 1180px);
    margin-top: 42px;
    padding-bottom: 28px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

/* Final visual system pass: modern masterclass page and conversion form. */
.home-body,
.masterclass-body {
  --ink: #f7f3ea;
  --ink-soft: rgba(247, 243, 234, 0.68);
  --ink-muted: rgba(247, 243, 234, 0.46);
  --panel: rgba(8, 10, 13, 0.86);
  --panel-strong: rgba(10, 13, 17, 0.94);
  --edge: rgba(151, 231, 239, 0.18);
  --edge-strong: rgba(151, 231, 239, 0.36);
  --cyan: #2fe3f0;
  --cyan-soft: rgba(47, 227, 240, 0.13);
  --violet: #8b5cf6;
}

.home-body::before,
.masterclass-body::before {
  background:
    linear-gradient(180deg, rgba(8, 12, 15, 0.92) 0%, rgba(3, 4, 6, 0.96) 46%, #030405 100%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.028) 0 1px, transparent 1px 96px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.024) 0 1px, transparent 1px 96px);
}

.home-body .luxury-bg,
.masterclass-body .luxury-bg {
  opacity: 0.65;
  background:
    linear-gradient(115deg, transparent 0 28%, rgba(47, 227, 240, 0.05) 42%, transparent 58% 100%),
    linear-gradient(245deg, transparent 0 36%, rgba(139, 92, 246, 0.045) 52%, transparent 68% 100%);
  background-size: 100% 100%;
  mask-image: linear-gradient(180deg, black 0%, rgba(0, 0, 0, 0.74) 58%, transparent 100%);
}

.home-body .hero-section {
  padding-bottom: clamp(44px, 7vw, 86px);
}

.home-body .hero-main-cta,
.home-body .btn-primary,
.masterclass-body .btn-primary {
  position: relative;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: linear-gradient(135deg, #f8f3e7 0%, #dffbff 48%, #2fe3f0 100%);
  color: #020607;
  box-shadow:
    0 18px 46px rgba(0, 0, 0, 0.38),
    0 0 0 1px rgba(255, 255, 255, 0.12) inset;
}

.home-body .hero-main-cta::before,
.home-body .btn-primary::before,
.masterclass-body .btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-115%) skewX(-18deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.55), transparent);
  transition: transform 420ms ease;
}

.home-body .hero-main-cta:hover::before,
.home-body .btn-primary:hover::before,
.masterclass-body .btn-primary:hover::before {
  transform: translateX(115%) skewX(-18deg);
}

.home-body .hero-main-cta > *,
.home-body .btn-primary > *,
.masterclass-body .btn-primary > * {
  position: relative;
}

.home-body .keys-grid-premium .key-card,
.home-body .keys-grid-secondary .key-card,
.home-body .faq-item,
.home-body .contact-card {
  border-color: var(--edge);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012)),
    rgba(8, 10, 13, 0.82);
  box-shadow:
    0 20px 58px rgba(0, 0, 0, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.home-body .form-section {
  width: min(1060px, calc(100% - 32px));
  padding-top: clamp(64px, 9vw, 118px);
}

.home-body .form-section .lead-form {
  isolation: isolate;
  max-width: 980px;
  padding: clamp(22px, 3.4vw, 38px);
  border: 1px solid rgba(151, 231, 239, 0.3);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.018)),
    linear-gradient(135deg, rgba(47, 227, 240, 0.085), transparent 32%),
    linear-gradient(225deg, rgba(139, 92, 246, 0.07), transparent 36%),
    rgba(7, 9, 13, 0.94);
  box-shadow:
    0 40px 130px rgba(0, 0, 0, 0.56),
    0 0 0 1px rgba(255, 255, 255, 0.04) inset;
}

.home-body .form-section .lead-form::before {
  inset: 12px;
  border-color: rgba(151, 231, 239, 0.09);
}

.home-body .form-header {
  max-width: 760px;
  margin-bottom: clamp(24px, 4vw, 38px);
}

.home-body .form-header span:first-child {
  color: var(--cyan);
  letter-spacing: 0.22em;
}

.home-body .form-header h2 {
  max-width: 680px;
  margin-inline: auto;
  color: var(--ink);
  font-family: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  font-size: clamp(2.5rem, 5.2vw, 5.15rem);
  line-height: 0.9;
}

.home-body .form-header p {
  max-width: 660px;
  color: var(--ink-soft);
}

.form-trust-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}

.form-trust-row span {
  padding: 8px 11px;
  border: 1px solid rgba(151, 231, 239, 0.16);
  background: rgba(255, 255, 255, 0.035);
  color: rgba(247, 243, 234, 0.72);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.form-progress {
  grid-template-columns: minmax(90px, auto) 1fr minmax(100px, auto) 1fr minmax(86px, auto);
  max-width: 780px;
  margin-inline: auto;
}

.form-progress-line {
  background: linear-gradient(90deg, rgba(47, 227, 240, 0.72), rgba(139, 92, 246, 0.4), rgba(247, 243, 234, 0.12));
}

.form-step-dot strong {
  border-color: rgba(151, 231, 239, 0.2);
  background: rgba(2, 4, 7, 0.78);
}

.form-step-dot.active strong,
.form-step-dot.complete strong {
  background: linear-gradient(135deg, #eafcff, #2fe3f0);
}

.form-step.active {
  max-width: 860px;
  margin-inline: auto;
}

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

.home-body .form-section .input-wrap {
  gap: 9px;
}

.home-body .form-section .input-wrap span,
.choice-group > p {
  color: rgba(247, 243, 234, 0.7);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
}

.home-body .form-section .input-wrap input,
.home-body .form-section .input-wrap select {
  min-height: 60px;
  border: 1px solid rgba(247, 243, 234, 0.13);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.008)),
    rgba(2, 4, 7, 0.76);
  color: var(--ink);
}

.home-body .form-section .input-wrap input:focus,
.home-body .form-section .input-wrap select:focus {
  border-color: rgba(47, 227, 240, 0.9);
  box-shadow:
    0 0 0 3px rgba(47, 227, 240, 0.11),
    0 14px 34px rgba(0, 0, 0, 0.28);
}

.phone-field {
  grid-template-columns: minmax(120px, 0.38fr) minmax(0, 1fr);
}

.form-step[data-form-step="1"] .form-grid .input-wrap:nth-child(3) {
  grid-column: 1 / -1;
}

.choice-group {
  padding: 14px;
  border: 1px solid rgba(151, 231, 239, 0.12);
  background: rgba(255, 255, 255, 0.018);
}

.choice-grid {
  gap: 9px;
}

.choice-grid span {
  min-height: 52px;
  border-color: rgba(247, 243, 234, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.006)),
    rgba(2, 4, 7, 0.68);
  color: rgba(247, 243, 234, 0.72);
}

.choice-grid span:hover {
  border-color: rgba(151, 231, 239, 0.28);
  color: var(--ink);
}

.choice-grid input:checked + span {
  border-color: rgba(47, 227, 240, 0.85);
  background:
    linear-gradient(135deg, rgba(47, 227, 240, 0.18), rgba(139, 92, 246, 0.08)),
    rgba(2, 4, 7, 0.72);
  box-shadow:
    0 0 0 1px rgba(47, 227, 240, 0.18) inset,
    0 12px 30px rgba(0, 0, 0, 0.22);
}

.form-actions {
  grid-template-columns: auto minmax(280px, 0.55fr);
}

.form-back {
  color: var(--ink-muted);
}

.home-body .form-section .btn-primary {
  min-height: 58px;
  letter-spacing: 0.08em;
}

.home-body .form-section .form-error {
  max-width: 860px;
  margin-inline: auto;
}

@media (max-width: 760px) {
  .home-body .form-section {
    width: min(100% - 24px, 1060px);
    padding-top: 42px;
  }

  .home-body .form-section .lead-form {
    padding: 17px;
  }

  .home-body .form-header h2 {
    font-size: clamp(2.1rem, 10vw, 3.2rem);
  }

  .form-trust-row {
    justify-content: flex-start;
  }

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

  .form-step-dot span {
    display: none;
  }

  .form-grid,
  .choice-grid,
  .choice-grid-goals,
  .form-actions,
  .phone-field {
    grid-template-columns: 1fr;
  }

  .form-step[data-form-step="1"] .form-grid .input-wrap:nth-child(3) {
    grid-column: auto;
  }

  .choice-group {
    padding: 12px;
  }
}

/* Final calm form reset: simple, sharp, aligned with the page. */
.home-body .form-section {
  width: min(920px, calc(100% - 32px));
  padding-top: clamp(54px, 8vw, 92px);
}

.home-body .form-section .lead-form {
  max-width: 820px;
  padding: clamp(20px, 3.2vw, 32px);
  border: 1px solid rgba(246, 243, 234, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.012)),
    rgba(7, 8, 10, 0.92);
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.36);
}

.home-body .form-section .lead-form::before,
.home-body .form-section .lead-form::after {
  display: none;
}

.home-body .form-header {
  max-width: 620px;
  margin-bottom: 24px;
  text-align: center;
}

.home-body .form-header span:first-child {
  color: #22d3ee;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
}

.home-body .form-header h2 {
  max-width: 560px;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 0.98;
}

.home-body .form-header p {
  max-width: 560px;
  margin-top: 10px;
  color: rgba(246, 243, 234, 0.62);
  font-size: 0.94rem;
  line-height: 1.58;
}

.form-trust-row {
  gap: 8px;
  margin-top: 14px;
}

.form-trust-row span {
  padding: 6px 9px;
  border: 1px solid rgba(246, 243, 234, 0.12);
  background: transparent;
  color: rgba(246, 243, 234, 0.58);
  font-size: 0.66rem;
  letter-spacing: 0.06em;
}

.form-progress {
  max-width: 620px;
  gap: 12px;
  margin-bottom: 24px;
}

.form-progress-line {
  background: rgba(246, 243, 234, 0.14);
}

.form-step-dot {
  gap: 6px;
}

.form-step-dot strong {
  width: 34px;
  height: 34px;
  border-color: rgba(246, 243, 234, 0.18);
  background: rgba(0, 0, 0, 0.22);
  color: rgba(246, 243, 234, 0.72);
  box-shadow: none;
}

.form-step-dot.active,
.form-step-dot.complete {
  color: #22d3ee;
}

.form-step-dot.active strong,
.form-step-dot.complete strong {
  border-color: rgba(34, 211, 238, 0.55);
  background: rgba(34, 211, 238, 0.12);
  color: #67e8f9;
  box-shadow: none;
}

.form-step-dot span {
  font-size: 0.62rem;
  letter-spacing: 0.1em;
}

.form-step.active {
  max-width: 720px;
  gap: 16px;
}

.form-step.step-forward {
  animation: formStepForward 260ms ease both;
}

.form-step.step-back {
  animation: formStepBack 240ms ease both;
}

@keyframes formStepForward {
  from {
    opacity: 0;
    transform: translateX(18px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes formStepBack {
  from {
    opacity: 0;
    transform: translateX(-18px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.form-grid {
  gap: 12px;
}

.home-body .form-section .input-wrap span,
.choice-group > p {
  color: rgba(246, 243, 234, 0.62);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
}

.home-body .form-section .input-wrap input,
.home-body .form-section .input-wrap select {
  min-height: 52px;
  border: 1px solid rgba(246, 243, 234, 0.13);
  background: rgba(2, 3, 4, 0.58);
  color: #f6f3ea;
  box-shadow: none;
}

.home-body .form-section .input-wrap input:focus,
.home-body .form-section .input-wrap select:focus {
  border-color: rgba(34, 211, 238, 0.62);
  box-shadow: 0 0 0 3px rgba(34, 211, 238, 0.08);
}

.phone-field {
  grid-template-columns: minmax(112px, 0.36fr) minmax(0, 1fr);
}

.choice-group {
  padding: 0;
  border: 0;
  background: transparent;
}

.choice-grid {
  gap: 8px;
}

.choice-grid span {
  min-height: 48px;
  padding: 12px 13px;
  border: 1px solid rgba(246, 243, 234, 0.12);
  background: rgba(2, 3, 4, 0.5);
  color: rgba(246, 243, 234, 0.7);
  font-size: 0.86rem;
  font-weight: 650;
  box-shadow: none;
}

.choice-grid span:hover {
  border-color: rgba(246, 243, 234, 0.22);
  color: #f6f3ea;
}

.choice-grid input:checked + span {
  border-color: rgba(34, 211, 238, 0.68);
  background: rgba(34, 211, 238, 0.08);
  color: #f6f3ea;
  box-shadow: none;
}

.choice-grid-goals span {
  min-height: 50px;
}

.form-actions {
  grid-template-columns: auto minmax(240px, 0.5fr);
  gap: 12px;
  margin-top: 2px;
}

.form-back {
  min-height: 46px;
  color: rgba(246, 243, 234, 0.52);
}

.home-body .form-section .btn-primary {
  min-height: 52px;
  border: 1px solid rgba(246, 243, 234, 0.22);
  background: #f6f3ea;
  color: #050505;
  box-shadow: none;
}

.home-body .form-section .btn-primary::before {
  display: none;
}

.home-body .form-section .form-privacy {
  margin-top: 8px;
  padding-top: 14px;
  border-top: 1px solid rgba(246, 243, 234, 0.08);
  color: rgba(246, 243, 234, 0.42);
  font-size: 0.78rem;
}

@media (max-width: 760px) {
  .home-body .form-section {
    width: min(100% - 24px, 920px);
    padding-top: 34px;
  }

  .home-body .form-section .lead-form {
    padding: 16px;
  }

  .home-body .form-header {
    text-align: left;
  }

  .home-body .form-header h2 {
    font-size: clamp(1.9rem, 8.5vw, 2.65rem);
  }

  .form-trust-row {
    justify-content: flex-start;
  }

  .form-progress {
    gap: 8px;
    margin-bottom: 20px;
  }

  .form-step-dot span {
    display: none;
  }

  .form-grid,
  .choice-grid,
  .choice-grid-goals,
  .form-actions,
  .phone-field {
    grid-template-columns: 1fr;
  }
}

/* Final mobile-first form polish: lighter box and animated step tracker. */
.form-progress-line {
  position: relative;
  overflow: hidden;
}

.form-progress-line::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: scaleX(0);
  transform-origin: left;
  background: #22d3ee;
  transition: transform 360ms ease;
}

.form-progress-line.complete::after {
  transform: scaleX(1);
}

.form-step-dot strong {
  position: relative;
  transition:
    border-color 220ms ease,
    background 220ms ease,
    color 220ms ease,
    transform 220ms ease;
}

.form-step-dot.active strong {
  transform: translateY(-1px) scale(1.04);
}

.form-step-dot.active strong::after {
  content: "";
  position: absolute;
  inset: -6px;
  border: 1px solid rgba(34, 211, 238, 0.22);
  border-radius: 50%;
  animation: stepPulse 1200ms ease-out infinite;
}

@keyframes stepPulse {
  0% {
    opacity: 0.55;
    transform: scale(0.88);
  }
  100% {
    opacity: 0;
    transform: scale(1.28);
  }
}

.form-step.step-forward {
  animation: formStepForward 360ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.form-step.step-back {
  animation: formStepBack 340ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes formStepForward {
  from {
    opacity: 0;
    filter: blur(6px);
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}

@keyframes formStepBack {
  from {
    opacity: 0;
    filter: blur(6px);
    transform: translateY(-12px);
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}

@media (max-width: 760px) {
  .home-body .form-section {
    width: min(100% - 18px, 920px);
    padding-top: 28px;
  }

  .home-body .form-section .lead-form {
    padding: 14px;
    border-color: rgba(246, 243, 234, 0.12);
    background: rgba(7, 8, 10, 0.88);
    box-shadow: 0 16px 44px rgba(0, 0, 0, 0.3);
  }

  .home-body .form-header {
    margin-bottom: 18px;
    text-align: center;
  }

  .home-body .form-header span:first-child {
    font-size: 0.64rem;
    letter-spacing: 0.14em;
  }

  .home-body .form-header h2 {
    max-width: 12ch;
    margin-inline: auto;
    font-size: clamp(1.75rem, 8vw, 2.35rem);
    line-height: 1;
  }

  .form-progress {
    grid-template-columns: 52px 1fr 52px 1fr 52px;
    align-items: start;
    gap: 6px;
    max-width: 310px;
    margin: 0 auto 18px;
  }

  .form-progress-line {
    height: 1px;
    margin-top: 17px;
    background: rgba(246, 243, 234, 0.14);
  }

  .form-step-dot {
    gap: 6px;
    min-width: 0;
  }

  .form-step-dot strong {
    position: relative;
    width: 34px;
    height: 34px;
    font-size: 0.82rem;
  }

  .form-step-dot span {
    display: block;
    max-width: 58px;
    color: currentColor;
    font-size: 0.5rem;
    line-height: 1.1;
    letter-spacing: 0.04em;
    white-space: normal;
  }

  .form-step.active {
    gap: 12px;
  }

  .form-grid {
    gap: 10px;
  }

  .home-body .form-section .input-wrap {
    gap: 7px;
  }

  .home-body .form-section .input-wrap span,
  .choice-group > p {
    font-size: 0.62rem;
    letter-spacing: 0.08em;
  }

  .home-body .form-section .input-wrap input,
  .home-body .form-section .input-wrap select {
    min-height: 48px;
    padding: 12px 13px;
    font-size: 0.96rem;
  }

  .phone-field {
    gap: 8px;
  }

  .choice-group {
    gap: 8px;
  }

  .choice-grid {
    gap: 7px;
  }

  .choice-grid span {
    min-height: 44px;
    padding: 10px 12px;
    font-size: 0.82rem;
    line-height: 1.25;
  }

  .home-body .form-section .btn-primary {
    min-height: 49px;
    font-size: 0.76rem;
  }

  .form-actions {
    gap: 8px;
  }

  .form-back {
    min-height: 40px;
    justify-self: start;
  }

  .home-body .form-section .form-privacy {
    margin-top: 4px;
    padding-top: 12px;
    font-size: 0.72rem;
    line-height: 1.4;
  }
}

/* Final index mobile UX: compact sections, fewer boxes, calmer scan. */
@media (max-width: 640px) {
  .home-body .mentor-section-clean,
  .home-body .keys-section,
  .home-body .form-section,
  .home-body .faq-section,
  .home-body .contact-section {
    width: min(100% - 22px, 1180px);
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .home-body .section-heading {
    margin-bottom: 14px;
    text-align: left;
  }

  .home-body .section-heading .eyebrow,
  .home-body .section-heading .eyebrow.centered {
    justify-content: flex-start;
    margin-bottom: 9px;
  }

  .home-body .section-heading h2 {
    max-width: 12ch;
    margin: 0;
    font-size: clamp(1.72rem, 8.4vw, 2.35rem);
    line-height: 1.02;
    text-align: left;
  }

  .home-body .keys-section .section-heading h2 {
    max-width: 13ch;
  }

  .home-body .keys-grid,
  .home-body .keys-grid-premium,
  .home-body .keys-grid-secondary {
    display: grid !important;
    gap: 0 !important;
    border-top: 1px solid rgba(103, 232, 249, 0.13) !important;
  }

  .home-body .keys-grid-premium .key-card,
  .home-body .keys-grid-secondary .key-card {
    display: grid !important;
    grid-template-columns: 42px minmax(0, 1fr) !important;
    column-gap: 12px !important;
    row-gap: 4px !important;
    min-height: 0 !important;
    padding: 15px 0 !important;
    border: 0 !important;
    border-bottom: 1px solid rgba(103, 232, 249, 0.1) !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  .home-body .keys-grid-premium .key-card::before,
  .home-body .keys-grid-secondary .key-card::before,
  .home-body .keys-grid-premium .key-card::after,
  .home-body .keys-grid-secondary .key-card::after {
    display: none !important;
  }

  .home-body .key-head {
    grid-column: 1 !important;
    grid-row: 1 / span 2 !important;
    display: block !important;
    margin: 0 !important;
  }

  .home-body .key-number {
    display: block !important;
    color: #22d3ee !important;
    font-size: 1.3rem !important;
    line-height: 1 !important;
  }

  .home-body .key-tag {
    display: none !important;
  }

  .home-body .key-card h3,
  .home-body .keys-grid-secondary .key-card h3 {
    grid-column: 2 !important;
    margin: 0 !important;
    color: #f6f3ea;
    font-size: 0.98rem !important;
    line-height: 1.22 !important;
  }

  .home-body .key-card p,
  .home-body .keys-grid-secondary .key-card p {
    grid-column: 2 !important;
    margin: 0 !important;
    color: rgba(246, 243, 234, 0.62);
    font-size: 0.84rem !important;
    line-height: 1.48 !important;
  }

  .home-body .keys-grid-secondary .key-card h3::before {
    position: static !important;
    display: inline-grid !important;
    width: 24px !important;
    height: 24px !important;
    margin: 0 8px 0 0 !important;
    place-items: center;
    border: 1px solid rgba(103, 232, 249, 0.28) !important;
    border-radius: 50%;
    background: transparent !important;
    color: #67e8f9 !important;
    font-size: 0.65rem !important;
    vertical-align: middle;
  }

  .home-body .keys-extra {
    margin-top: 18px !important;
  }

  .home-body .keys-extra-title {
    margin: 0 0 6px !important;
    padding: 0 !important;
    border: 0 !important;
    color: rgba(246, 243, 234, 0.74) !important;
    font-size: 0.7rem !important;
    line-height: 1.35 !important;
    letter-spacing: 0.08em;
    text-align: left !important;
  }

  .home-body .faq-list {
    gap: 0;
    border-top: 1px solid rgba(103, 232, 249, 0.13);
  }

  .home-body .faq-item {
    padding: 0 !important;
    border: 0 !important;
    border-bottom: 1px solid rgba(103, 232, 249, 0.1) !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  .home-body .faq-item summary {
    min-height: 48px;
    padding: 13px 0 !important;
    color: #f6f3ea;
    font-size: 0.9rem !important;
    line-height: 1.32 !important;
  }

  .home-body .faq-item p {
    padding: 0 0 14px !important;
    border: 0 !important;
    color: rgba(246, 243, 234, 0.62);
    font-size: 0.84rem !important;
    line-height: 1.52 !important;
  }

  .home-body .faq-item:hover,
  .home-body .faq-item[open] {
    transform: none !important;
    box-shadow: none !important;
  }

  .home-body .contact-grid {
    display: grid;
    gap: 0;
    border-top: 1px solid rgba(103, 232, 249, 0.13);
  }

  .home-body .contact-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 8px;
    padding: 15px 0 !important;
    border: 0 !important;
    border-bottom: 1px solid rgba(103, 232, 249, 0.1) !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  .home-body .contact-card h3 {
    margin: 0;
    font-size: 1rem;
    line-height: 1.2;
  }

  .home-body .contact-card p {
    display: none;
  }

  .home-body .contact-card .btn-secondary {
    min-height: 42px;
    width: 100%;
    justify-content: center;
    padding: 11px 12px;
    border-color: rgba(246, 243, 234, 0.15);
    background: rgba(255, 255, 255, 0.025);
    font-size: 0.78rem;
  }

  .home-body .site-footer {
    margin-top: 24px;
  }
}

/* Final index mobile visual correction: centered headings and compact styled cards. */
@media (max-width: 640px) {
  .home-body .keys-section,
  .home-body .faq-section,
  .home-body .contact-section {
    width: min(100% - 24px, 1180px);
    padding-top: 32px;
    padding-bottom: 32px;
  }

  .home-body .keys-section .section-heading,
  .home-body .faq-section .section-heading,
  .home-body .contact-section .section-heading {
    margin-bottom: 18px;
    text-align: center;
  }

  .home-body .keys-section .section-heading .eyebrow,
  .home-body .faq-section .section-heading .eyebrow,
  .home-body .contact-section .section-heading .eyebrow,
  .home-body .keys-section .section-heading .eyebrow.centered,
  .home-body .faq-section .section-heading .eyebrow.centered,
  .home-body .contact-section .section-heading .eyebrow.centered {
    justify-content: center;
    margin-bottom: 10px;
  }

  .home-body .keys-section .section-heading h2,
  .home-body .faq-section .section-heading h2,
  .home-body .contact-section .section-heading h2 {
    max-width: 12.5ch;
    margin: 0 auto;
    font-size: clamp(2rem, 9vw, 2.75rem);
    line-height: 0.98;
    text-align: center;
  }

  .home-body .faq-section .section-heading h2,
  .home-body .contact-section .section-heading h2 {
    max-width: 11ch;
    font-size: clamp(1.85rem, 8vw, 2.45rem);
  }

  .home-body .keys-grid,
  .home-body .keys-grid-premium,
  .home-body .keys-grid-secondary {
    gap: 10px !important;
    border-top: 0 !important;
  }

  .home-body .keys-grid-premium .key-card,
  .home-body .keys-grid-secondary .key-card {
    display: grid !important;
    grid-template-columns: 38px minmax(0, 1fr) !important;
    column-gap: 12px !important;
    row-gap: 5px !important;
    padding: 15px !important;
    border: 1px solid rgba(103, 232, 249, 0.16) !important;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.01)),
      rgba(5, 7, 9, 0.78) !important;
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.22) !important;
  }

  .home-body .keys-grid-premium .key-card::before,
  .home-body .keys-grid-secondary .key-card::before,
  .home-body .keys-grid-premium .key-card::after,
  .home-body .keys-grid-secondary .key-card::after {
    display: none !important;
  }

  .home-body .key-head {
    grid-column: 1 !important;
    grid-row: 1 / span 2 !important;
    display: grid !important;
    place-items: start center;
    margin: 0 !important;
  }

  .home-body .key-number {
    width: 30px;
    height: 30px;
    display: grid !important;
    place-items: center;
    border: 1px solid rgba(103, 232, 249, 0.32);
    border-radius: 50%;
    color: #67e8f9 !important;
    font-size: 0.78rem !important;
    font-weight: 950;
    line-height: 1 !important;
  }

  .home-body .key-card h3,
  .home-body .keys-grid-secondary .key-card h3 {
    grid-column: 2 !important;
    margin: 0 !important;
    font-size: 1rem !important;
    line-height: 1.18 !important;
  }

  .home-body .key-card p,
  .home-body .keys-grid-secondary .key-card p {
    grid-column: 2 !important;
    margin: 0 !important;
    font-size: 0.84rem !important;
    line-height: 1.46 !important;
  }

  .home-body .keys-extra {
    margin-top: 16px !important;
  }

  .home-body .keys-extra-title {
    margin: 0 0 10px !important;
    color: rgba(246, 243, 234, 0.72) !important;
    font-size: 0.68rem !important;
    line-height: 1.35 !important;
    text-align: center !important;
  }

  .home-body .keys-grid-secondary .key-card {
    grid-template-columns: 38px minmax(0, 1fr) !important;
  }

  .home-body .keys-grid-secondary .key-card h3 {
    display: block !important;
  }

  .home-body .keys-grid-secondary .key-card h3::before {
    float: left;
    width: 30px !important;
    height: 30px !important;
    margin: 0 12px 18px 0 !important;
    display: grid !important;
    place-items: center;
    border: 1px solid rgba(103, 232, 249, 0.32) !important;
    border-radius: 50%;
    background: transparent !important;
    color: #67e8f9 !important;
    font-size: 0.72rem !important;
  }

  .home-body .faq-list {
    gap: 9px;
    border-top: 0;
  }

  .home-body .faq-item {
    padding: 0 14px !important;
    border: 1px solid rgba(103, 232, 249, 0.14) !important;
    background: rgba(5, 7, 9, 0.58) !important;
    box-shadow: none !important;
  }

  .home-body .faq-item summary {
    min-height: 50px;
    padding: 13px 0 !important;
    gap: 14px;
    font-size: 0.9rem !important;
    line-height: 1.28 !important;
  }

  .home-body .faq-item summary::after {
    flex: 0 0 30px;
    width: 30px;
    height: 30px;
    font-size: 1.1rem;
  }

  .home-body .faq-item p {
    padding: 0 0 14px !important;
    font-size: 0.84rem !important;
    line-height: 1.5 !important;
  }

  .home-body .contact-grid {
    gap: 10px;
    border-top: 0;
  }

  .home-body .contact-card {
    padding: 14px !important;
    border: 1px solid rgba(103, 232, 249, 0.14) !important;
    background: rgba(5, 7, 9, 0.58) !important;
  }

  .home-body .contact-card h3 {
    text-align: center;
    font-size: 0.98rem;
  }

  .home-body .contact-card .btn-secondary {
    min-height: 42px;
    border-color: rgba(246, 243, 234, 0.16);
    background: rgba(255, 255, 255, 0.025);
    font-size: 0.76rem;
    overflow-wrap: anywhere;
  }

  .site-footer {
    text-align: center;
  }

  .footer-brand {
    justify-content: center;
  }

  .footer-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    width: 100%;
  }

  .footer-links a {
    text-align: center;
    font-size: 0.8rem;
  }
}

/* Final connected and animated form steps. */
.form-progress {
  align-items: start;
}

.form-progress-line {
  height: 2px;
  margin-top: 17px;
  margin-inline: -8px;
  border-radius: 999px;
  background: rgba(246, 243, 234, 0.16);
}

.form-progress-line::after {
  border-radius: inherit;
  background: linear-gradient(90deg, #22d3ee, rgba(103, 232, 249, 0.62));
  transition: transform 460ms cubic-bezier(0.22, 1, 0.36, 1);
}

.form-step-dot strong {
  z-index: 1;
}

.form-step-dot.complete strong {
  border-color: rgba(34, 211, 238, 0.5);
  background: rgba(34, 211, 238, 0.16);
  color: #67e8f9;
}

.form-step-dot.active strong {
  border-color: rgba(34, 211, 238, 0.86);
  background: rgba(34, 211, 238, 0.13);
  color: #eaffff;
  box-shadow: 0 0 0 4px rgba(34, 211, 238, 0.07);
}

.lead-form.form-transitioning {
  pointer-events: none;
}

.form-step.step-forward {
  animation: formStepForwardSmooth 430ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.form-step.step-back {
  animation: formStepBackSmooth 430ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.form-step.step-exit-forward {
  animation: formStepExitForward 190ms ease both;
}

.form-step.step-exit-back {
  animation: formStepExitBack 190ms ease both;
}

@keyframes formStepForwardSmooth {
  from {
    opacity: 0;
    filter: blur(4px);
    transform: translateX(18px);
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: translateX(0);
  }
}

@keyframes formStepBackSmooth {
  from {
    opacity: 0;
    filter: blur(4px);
    transform: translateX(-18px);
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: translateX(0);
  }
}

@keyframes formStepExitForward {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 0;
    transform: translateX(-12px);
  }
}

@keyframes formStepExitBack {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 0;
    transform: translateX(12px);
  }
}

@media (max-width: 760px) {
  .form-progress {
    grid-template-columns: 48px minmax(36px, 1fr) 48px minmax(36px, 1fr) 48px;
    max-width: 288px;
    gap: 0;
  }

  .form-progress-line {
    height: 2px;
    margin-top: 16px;
    margin-inline: -5px;
  }

  .form-step-dot strong {
    width: 32px;
    height: 32px;
  }

  .form-step-dot span {
    max-width: 52px;
  }
}

/* Final adaptive lead form: cleaner desktop step 2 and tighter mobile fit. */
.home-body .form-section {
  width: min(1040px, calc(100% - 32px));
}

.home-body .form-section .lead-form {
  width: 100%;
  transition:
    max-width 360ms cubic-bezier(0.22, 1, 0.36, 1),
    padding 260ms ease,
    border-color 220ms ease,
    background 220ms ease;
}

.home-body .form-section .lead-form[data-current-step="1"] {
  max-width: 760px;
}

.home-body .form-section .lead-form[data-current-step="2"] {
  max-width: 940px;
}

.lead-form[data-current-step="2"] .form-header {
  margin-bottom: 18px;
}

.lead-form[data-current-step="2"] .form-header h2 {
  font-size: clamp(1.9rem, 3.3vw, 2.9rem);
}

.lead-form[data-current-step="2"] .form-step[data-form-step="2"].active {
  max-width: 820px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.lead-form[data-current-step="2"] .choice-group {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 14px;
  border: 1px solid rgba(246, 243, 234, 0.105);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.026), rgba(255, 255, 255, 0.006)),
    rgba(2, 3, 4, 0.24);
}

.lead-form[data-current-step="2"] .choice-group > p {
  margin-bottom: 1px;
  color: rgba(246, 243, 234, 0.66);
}

.lead-form[data-current-step="2"] .choice-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.lead-form[data-current-step="2"] .choice-grid span {
  min-height: 44px;
  padding: 10px 12px;
  font-size: 0.82rem;
}

.lead-form[data-current-step="2"] .choice-grid-goals,
.lead-form[data-current-step="2"] .form-actions,
.lead-form[data-current-step="2"] .form-error {
  grid-column: 1 / -1;
}

.lead-form[data-current-step="2"] .choice-grid-goals {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.lead-form[data-current-step="2"] .form-actions {
  grid-template-columns: auto minmax(250px, 340px);
  margin-top: 4px;
}

.lead-form[data-current-step="2"] .btn-primary {
  width: 100%;
}

@media (max-width: 760px) {
  .home-body .form-section {
    width: min(100% - 18px, 1040px);
  }

  .home-body .form-section .lead-form,
  .home-body .form-section .lead-form[data-current-step="1"],
  .home-body .form-section .lead-form[data-current-step="2"] {
    max-width: 100%;
    padding: 14px;
  }

  .lead-form[data-current-step="2"] .form-header {
    margin-bottom: 14px;
  }

  .lead-form[data-current-step="2"] .form-header h2,
  .home-body .form-header h2 {
    max-width: 13ch;
    font-size: clamp(1.75rem, 7.8vw, 2.25rem);
    line-height: 1;
  }

  .lead-form[data-current-step="2"] .form-step[data-form-step="2"].active {
    max-width: 100%;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .lead-form[data-current-step="2"] .choice-group {
    padding: 10px;
    gap: 8px;
    border-color: rgba(246, 243, 234, 0.09);
    background: rgba(255, 255, 255, 0.012);
  }

  .lead-form[data-current-step="2"] .choice-grid,
  .lead-form[data-current-step="2"] .choice-grid-goals {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .lead-form[data-current-step="2"] .choice-grid span {
    min-height: 42px;
    padding: 9px 11px;
    font-size: 0.8rem;
  }

  .lead-form[data-current-step="2"] .form-actions {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .lead-form[data-current-step="2"] .form-back {
    order: 2;
    justify-self: center;
  }
}

/* Final premium mobile storytelling for mentor, learning blocks and contact. */
@media (max-width: 640px) {
  .home-body .mentor-section-clean,
  .home-body .keys-section,
  .home-body .contact-section {
    width: min(100% - 20px, 1180px);
    padding-top: 34px;
    padding-bottom: 34px;
  }

  .home-body .mentor-section-clean .section-heading,
  .home-body .keys-section .section-heading,
  .home-body .contact-section .section-heading {
    margin-bottom: 18px;
  }

  .home-body .mentor-section-clean .section-heading h2 {
    max-width: 8ch;
    font-size: clamp(2.7rem, 13vw, 3.8rem);
    line-height: 0.88;
  }

  .mentor-section-clean .mentor-clean-layout {
    gap: 18px;
  }

  .mentor-proof-strip {
    width: min(100%, 360px);
    margin-inline: auto;
    display: grid;
    grid-template-columns: 0.88fr 1fr;
    align-items: end;
    gap: 9px;
  }

  .mentor-proof-strip figure {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(103, 232, 249, 0.18);
    background: rgba(255, 255, 255, 0.025);
    box-shadow: 0 20px 44px rgba(0, 0, 0, 0.32);
  }

  .mentor-proof-strip figure:nth-child(1) {
    transform: translateY(10px);
  }

  .mentor-proof-strip figure:nth-child(2) {
    transform: translateY(-8px);
  }

  .mentor-proof-strip figure::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 54%, rgba(0, 0, 0, 0.38));
    pointer-events: none;
  }

  .mentor-proof-strip img {
    height: clamp(190px, 52vw, 235px);
    border: 0;
    object-fit: cover;
  }

  .mentor-proof-strip .mentor-stage-before {
    object-position: 45% 36%;
  }

  .mentor-proof-strip .mentor-stage-after {
    object-position: 50% 42%;
  }

  .mentor-proof-strip span {
    left: 10px;
    top: 10px;
    z-index: 1;
    padding: 6px 9px;
    border: 1px solid rgba(34, 211, 238, 0.2);
    background: rgba(2, 4, 7, 0.78);
    color: #67e8f9;
    font-size: 0.58rem;
    letter-spacing: 0.08em;
  }

  .mentor-copy {
    position: relative;
    padding: 18px 14px 0;
    border-top: 1px solid rgba(103, 232, 249, 0.14);
  }

  .mentor-copy .mentor-intro:first-child {
    margin: 0 0 14px;
    color: #f6f3ea;
    font-size: clamp(1.08rem, 4.8vw, 1.28rem);
    line-height: 1.42;
  }

  .mentor-copy .mentor-intro:not(:first-child) {
    margin-top: 14px;
    padding: 14px;
    border: 1px solid rgba(103, 232, 249, 0.14);
    background:
      linear-gradient(135deg, rgba(34, 211, 238, 0.075), transparent 48%),
      rgba(255, 255, 255, 0.018);
    color: rgba(246, 243, 234, 0.7);
    font-size: 0.94rem;
    line-height: 1.55;
  }

  .home-body .mentor-list {
    display: grid;
    gap: 8px;
  }

  .home-body .mentor-list li {
    display: grid;
    grid-template-columns: 28px minmax(0, 1fr);
    gap: 11px;
    align-items: start;
    padding: 12px;
    border: 1px solid rgba(103, 232, 249, 0.12);
    background: rgba(255, 255, 255, 0.014);
    color: rgba(246, 243, 234, 0.66);
    font-size: 0.9rem;
    line-height: 1.45;
  }

  .home-body .mentor-list li span {
    width: 24px;
    height: 24px;
    margin-top: 1px;
    border: 1px solid rgba(103, 232, 249, 0.26);
    border-radius: 50%;
    background:
      radial-gradient(circle, rgba(103, 232, 249, 0.35), transparent 44%),
      rgba(34, 211, 238, 0.08);
  }

  .mentor-copy .btn-secondary {
    width: 100%;
    min-height: 48px;
    margin-top: 14px;
    border-color: rgba(246, 243, 234, 0.18);
    background: #f6f3ea;
    color: #050505;
    font-size: 0.82rem;
  }

  .home-body .keys-section .section-heading {
    text-align: left;
  }

  .home-body .keys-section .section-heading .eyebrow {
    justify-content: flex-start;
  }

  .home-body .keys-section .section-heading h2 {
    max-width: 10.5ch;
    margin: 0;
    text-align: left;
    font-size: clamp(2.15rem, 10vw, 3rem);
    line-height: 0.96;
  }

  .home-body .keys-grid-premium {
    display: grid !important;
    gap: 10px !important;
  }

  .home-body .keys-grid-premium .key-card {
    position: relative;
    grid-template-columns: 1fr !important;
    gap: 12px !important;
    min-height: 0 !important;
    padding: 15px !important;
    overflow: hidden;
    border: 1px solid rgba(103, 232, 249, 0.16) !important;
    background:
      radial-gradient(220px 110px at 100% 0%, rgba(103, 232, 249, 0.12), transparent 66%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.009)),
      rgba(5, 7, 9, 0.78) !important;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.26) !important;
  }

  .home-body .keys-grid-premium .key-card::before {
    content: "";
    display: block !important;
    position: absolute;
    inset: auto 0 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(34, 211, 238, 0.65), transparent);
  }

  .home-body .keys-grid-premium .key-head {
    grid-column: auto !important;
    grid-row: auto !important;
    display: flex !important;
    align-items: center;
    gap: 10px;
  }

  .home-body .keys-grid-premium .key-number {
    width: 36px;
    height: 36px;
    display: grid !important;
    place-items: center;
    border: 1px solid rgba(103, 232, 249, 0.32);
    border-radius: 50%;
    color: #67e8f9 !important;
    font-size: 0.86rem !important;
  }

  .home-body .keys-grid-premium .key-tag {
    display: inline-flex !important;
    width: auto;
    padding: 6px 9px;
    border-radius: 999px;
    background: rgba(34, 211, 238, 0.08);
    color: rgba(103, 232, 249, 0.86);
    font-size: 0.58rem;
    line-height: 1;
    letter-spacing: 0.08em;
  }

  .home-body .keys-grid-premium .key-card h3,
  .home-body .keys-grid-premium .key-card p {
    grid-column: auto !important;
  }

  .home-body .keys-grid-premium .key-card h3 {
    font-size: 1.22rem !important;
  }

  .home-body .keys-grid-premium .key-card p {
    font-size: 0.9rem !important;
    line-height: 1.52 !important;
  }

  .home-body .keys-extra {
    margin-top: 18px !important;
  }

  .home-body .keys-extra-title {
    position: relative;
    margin: 0 0 10px !important;
    padding: 0 0 0 13px !important;
    color: #f6f3ea !important;
    font-size: 0.74rem !important;
    line-height: 1.35 !important;
    letter-spacing: 0.08em;
    text-align: left !important;
  }

  .home-body .keys-extra-title::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.15em;
    bottom: 0.15em;
    width: 2px;
    background: #22d3ee;
  }

  .home-body .keys-grid-secondary {
    display: grid !important;
    gap: 10px !important;
  }

  .home-body .keys-grid-secondary .key-card {
    position: relative;
    display: grid !important;
    grid-template-columns: 42px minmax(0, 1fr) !important;
    gap: 6px 12px !important;
    padding: 16px 14px !important;
    overflow: hidden;
    border: 1px solid rgba(103, 232, 249, 0.17) !important;
    background:
      linear-gradient(135deg, rgba(34, 211, 238, 0.09), transparent 46%),
      rgba(5, 7, 9, 0.74) !important;
    box-shadow:
      0 18px 46px rgba(0, 0, 0, 0.28),
      inset 0 1px 0 rgba(255, 255, 255, 0.035) !important;
  }

  .home-body .keys-grid-secondary .key-card::after {
    content: "";
    display: block !important;
    position: absolute;
    right: 12px;
    top: 12px;
    width: 34px;
    height: 34px;
    border-top: 1px solid rgba(103, 232, 249, 0.22);
    border-right: 1px solid rgba(103, 232, 249, 0.22);
    background: transparent;
  }

  .home-body .keys-grid-secondary .key-card h3::before {
    float: none !important;
    grid-column: auto;
    width: 34px !important;
    height: 34px !important;
    margin: 0 !important;
    display: grid !important;
    place-items: center;
    border: 1px solid rgba(103, 232, 249, 0.34) !important;
    border-radius: 50%;
    background: rgba(34, 211, 238, 0.08) !important;
    color: #67e8f9 !important;
    font-size: 0.74rem !important;
  }

  .home-body .keys-grid-secondary .key-card h3 {
    grid-column: 1 / -1 !important;
    display: grid !important;
    grid-template-columns: 42px minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    margin: 0 !important;
    font-size: 1.05rem !important;
    line-height: 1.18 !important;
  }

  .home-body .keys-grid-secondary .key-card p {
    grid-column: 2 !important;
    margin: 0 !important;
    color: rgba(246, 243, 234, 0.64);
    font-size: 0.86rem !important;
    line-height: 1.48 !important;
  }

  .home-body .contact-section {
    width: min(100% - 20px, 1180px);
  }

  .home-body .contact-section .section-heading {
    text-align: left;
  }

  .home-body .contact-section .section-heading .eyebrow {
    justify-content: flex-start;
  }

  .home-body .contact-section .section-heading h2 {
    max-width: 9.5ch;
    margin: 0;
    text-align: left;
    font-size: clamp(2.15rem, 10vw, 3rem);
    line-height: 0.96;
  }

  .home-body .contact-grid {
    display: grid;
    gap: 10px;
    border: 0;
  }

  .home-body .contact-card {
    position: relative;
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 6px 12px;
    align-items: center;
    padding: 14px !important;
    overflow: hidden;
    border: 1px solid rgba(103, 232, 249, 0.16) !important;
    background:
      radial-gradient(190px 90px at 100% 0%, rgba(103, 232, 249, 0.1), transparent 72%),
      rgba(5, 7, 9, 0.72) !important;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24) !important;
  }

  .home-body .contact-card::before {
    content: "↗";
    display: grid !important;
    grid-row: 1 / span 2;
    width: 36px;
    height: 36px;
    place-items: center;
    border: 1px solid rgba(103, 232, 249, 0.28);
    border-radius: 50%;
    background: rgba(34, 211, 238, 0.08);
    color: #67e8f9;
    font-size: 0.95rem;
  }

  .home-body .contact-card h3 {
    grid-column: 2;
    margin: 0;
    text-align: left;
    font-size: 1.02rem;
    line-height: 1.15;
  }

  .home-body .contact-card p {
    display: block;
    grid-column: 2;
    margin: 0;
    color: rgba(246, 243, 234, 0.55);
    font-size: 0.78rem;
    line-height: 1.35;
  }

  .home-body .contact-card .btn-secondary {
    grid-column: 1 / -1;
    min-height: 42px;
    margin-top: 4px;
    padding: 10px 12px;
    border-color: rgba(246, 243, 234, 0.16);
    border-radius: 999px;
    background: rgba(246, 243, 234, 0.95);
    color: #050505;
    font-size: 0.74rem;
    line-height: 1.2;
    overflow-wrap: anywhere;
  }

  .home-body .contact-card .btn-icon {
    width: 18px;
    height: 18px;
  }
}

/* Hard mobile correction: centered titles and readable premium cards. */
@media (max-width: 640px) {
  .home-body .mentor-section-clean,
  .home-body .keys-section,
  .home-body .contact-section {
    padding-top: 58px !important;
    overflow: visible !important;
  }

  .home-body .mentor-section-clean .section-heading,
  .home-body .keys-section .section-heading,
  .home-body .contact-section .section-heading {
    margin: 0 auto 20px !important;
    text-align: center !important;
    overflow: visible !important;
  }

  .home-body .mentor-section-clean .section-heading .eyebrow,
  .home-body .keys-section .section-heading .eyebrow,
  .home-body .contact-section .section-heading .eyebrow,
  .home-body .mentor-section-clean .section-heading .eyebrow.centered,
  .home-body .keys-section .section-heading .eyebrow.centered,
  .home-body .contact-section .section-heading .eyebrow.centered {
    justify-content: center !important;
    margin-inline: auto !important;
  }

  .home-body .mentor-section-clean .section-heading h2,
  .home-body .keys-section .section-heading h2,
  .home-body .contact-section .section-heading h2 {
    max-width: 12ch !important;
    margin: 0 auto !important;
    text-align: center !important;
    overflow: visible !important;
    font-size: clamp(2.05rem, 9vw, 2.8rem) !important;
    line-height: 1.02 !important;
  }

  .home-body .mentor-section-clean .section-heading h2 {
    max-width: 8ch !important;
    font-size: clamp(2.7rem, 12vw, 3.5rem) !important;
    line-height: 0.92 !important;
  }

  .mentor-proof-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 8px !important;
  }

  .mentor-proof-strip figure,
  .mentor-proof-strip figure:nth-child(1),
  .mentor-proof-strip figure:nth-child(2) {
    transform: none !important;
  }

  .mentor-proof-strip img {
    height: clamp(180px, 48vw, 220px) !important;
  }

  .mentor-copy {
    padding-inline: 0 !important;
  }

  .mentor-copy .mentor-intro:first-child {
    text-align: left !important;
    font-size: clamp(1.02rem, 4.4vw, 1.18rem) !important;
    line-height: 1.48 !important;
  }

  .home-body .mentor-list li {
    display: block !important;
    min-height: 0 !important;
    padding: 14px 14px 14px 52px !important;
    font-size: 0.9rem !important;
    line-height: 1.5 !important;
    overflow: hidden !important;
  }

  .home-body .mentor-list li span {
    float: left !important;
    width: 28px !important;
    height: 28px !important;
    margin: 0 0 0 -40px !important;
  }

  .home-body .mentor-list li strong {
    display: inline !important;
  }

  .home-body .keys-grid-premium .key-card {
    padding: 17px 15px !important;
  }

  .home-body .keys-grid-premium .key-head {
    justify-content: center !important;
  }

  .home-body .keys-grid-premium .key-card h3,
  .home-body .keys-grid-premium .key-card p {
    text-align: center !important;
  }

  .home-body .keys-grid-premium .key-card h3 {
    font-size: 1.16rem !important;
    line-height: 1.2 !important;
  }

  .home-body .keys-grid-premium .key-card p {
    font-size: 0.88rem !important;
    line-height: 1.48 !important;
  }

  .home-body .keys-extra-title {
    width: fit-content !important;
    max-width: 28ch !important;
    margin-inline: auto !important;
    padding-left: 0 !important;
    text-align: center !important;
  }

  .home-body .keys-extra-title::before {
    display: none !important;
  }

  .home-body .keys-grid-secondary .key-card {
    grid-template-columns: 1fr !important;
    justify-items: center !important;
    padding: 17px 15px !important;
  }

  .home-body .keys-grid-secondary .key-card h3 {
    grid-template-columns: 1fr !important;
    justify-items: center !important;
    text-align: center !important;
    gap: 10px !important;
    font-size: 1.05rem !important;
  }

  .home-body .keys-grid-secondary .key-card h3::before {
    width: 38px !important;
    height: 38px !important;
  }

  .home-body .keys-grid-secondary .key-card p {
    grid-column: auto !important;
    max-width: 28ch !important;
    text-align: center !important;
  }

  .home-body .contact-section .section-heading h2 {
    max-width: 10ch !important;
  }

  .home-body .contact-card {
    grid-template-columns: 1fr !important;
    justify-items: center !important;
    text-align: center !important;
    padding: 17px 15px !important;
  }

  .home-body .contact-card::before {
    grid-row: auto !important;
  }

  .home-body .contact-card h3,
  .home-body .contact-card p {
    grid-column: auto !important;
    text-align: center !important;
  }
}

/* Final desktop premium learning cards. */
@media (min-width: 761px) {
  .home-body .keys-section {
    width: min(1160px, calc(100% - 48px));
    padding-top: clamp(56px, 6vw, 88px);
  }

  .home-body .keys-grid-premium,
  .home-body .keys-grid-secondary {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px !important;
  }

  .home-body .keys-grid-premium .key-card {
    position: relative;
    min-height: 300px;
    padding: 28px 26px 26px !important;
    overflow: hidden;
    border: 1px solid rgba(103, 232, 249, 0.15) !important;
    border-radius: 8px;
    background:
      radial-gradient(360px 210px at 88% -16%, rgba(103, 232, 249, 0.16), transparent 64%),
      linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.012) 52%),
      rgba(7, 9, 12, 0.82) !important;
    box-shadow:
      0 26px 72px rgba(0, 0, 0, 0.34),
      inset 0 1px 0 rgba(255, 255, 255, 0.065) !important;
    transform: translateZ(0);
    transition:
      transform 220ms ease,
      border-color 220ms ease,
      box-shadow 220ms ease,
      background 220ms ease;
  }

  .home-body .keys-grid-premium .key-card::before {
    content: "";
    display: block !important;
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background:
      linear-gradient(90deg, rgba(34, 211, 238, 0.68), transparent 34%) top left / 100% 2px no-repeat,
      linear-gradient(180deg, rgba(34, 211, 238, 0.2), transparent 42%) top left / 2px 100% no-repeat;
    opacity: 0.62;
    pointer-events: none;
  }

  .home-body .keys-grid-premium .key-card::after {
    content: "";
    display: block !important;
    position: absolute;
    right: -58px;
    bottom: -78px;
    width: 190px;
    height: 190px;
    border: 1px solid rgba(103, 232, 249, 0.08);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(103, 232, 249, 0.08), transparent 62%);
    opacity: 1;
    pointer-events: none;
  }

  .home-body .keys-grid-premium .key-card:hover {
    transform: translateY(-6px);
    border-color: rgba(103, 232, 249, 0.3) !important;
    box-shadow:
      0 34px 88px rgba(0, 0, 0, 0.42),
      0 0 0 1px rgba(103, 232, 249, 0.06),
      inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
  }

  .home-body .keys-grid-premium .key-head {
    position: relative;
    z-index: 1;
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: auto;
  }

  .home-body .keys-grid-premium .key-number {
    width: auto !important;
    height: auto !important;
    border: 0 !important;
    background: transparent !important;
    color: #49e5f4 !important;
    font-family: "Cormorant Garamond", "Playfair Display", Georgia, serif;
    font-size: 3.35rem !important;
    font-weight: 800;
    line-height: 0.8 !important;
    text-shadow: 0 0 26px rgba(34, 211, 238, 0.2);
  }

  .home-body .keys-grid-premium .key-tag {
    display: inline-flex !important;
    width: auto !important;
    max-width: 150px;
    justify-content: center;
    padding: 8px 13px;
    border: 1px solid rgba(103, 232, 249, 0.24);
    border-radius: 999px;
    background: rgba(34, 211, 238, 0.075);
    color: rgba(103, 232, 249, 0.94);
    font-size: 0.64rem;
    line-height: 1.05;
    letter-spacing: 0.06em;
    text-align: center;
  }

  .home-body .keys-grid-premium .key-card h3 {
    position: relative;
    z-index: 1;
    margin-top: 56px !important;
    color: #f6f3ea;
    font-size: 1.24rem !important;
    line-height: 1.18 !important;
  }

  .home-body .keys-grid-premium .key-card p {
    position: relative;
    z-index: 1;
    max-width: 30ch;
    margin-top: 12px !important;
    color: rgba(246, 243, 234, 0.68);
    font-size: 0.93rem !important;
    line-height: 1.6 !important;
  }

  .home-body .keys-extra {
    margin-top: 42px !important;
  }

  .home-body .keys-extra-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin: 0 0 18px !important;
    color: rgba(246, 243, 234, 0.78) !important;
    font-size: 0.8rem !important;
    letter-spacing: 0.08em;
    text-align: center;
  }

  .home-body .keys-extra-title::before,
  .home-body .keys-extra-title::after {
    content: "";
    width: 82px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(103, 232, 249, 0.34));
  }

  .home-body .keys-extra-title::after {
    background: linear-gradient(90deg, rgba(103, 232, 249, 0.34), transparent);
  }

  .home-body .keys-grid-secondary .key-card {
    position: relative;
    display: grid !important;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 8px 14px !important;
    min-height: 190px;
    padding: 22px !important;
    overflow: hidden;
    border: 1px solid rgba(246, 243, 234, 0.11) !important;
    border-radius: 8px;
    background:
      linear-gradient(135deg, rgba(103, 232, 249, 0.09), transparent 38%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.01)),
      rgba(7, 9, 12, 0.76) !important;
    box-shadow: 0 22px 58px rgba(0, 0, 0, 0.28) !important;
    transition:
      transform 220ms ease,
      border-color 220ms ease,
      box-shadow 220ms ease;
  }

  .home-body .keys-grid-secondary .key-card::before {
    content: "";
    display: block !important;
    position: absolute;
    inset: auto 20px 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(34, 211, 238, 0.52), transparent);
    opacity: 0.8;
  }

  .home-body .keys-grid-secondary .key-card::after {
    content: "";
    display: block !important;
    position: absolute;
    right: 18px;
    top: 18px;
    width: 36px;
    height: 36px;
    border-top: 1px solid rgba(103, 232, 249, 0.18);
    border-right: 1px solid rgba(103, 232, 249, 0.18);
    background: transparent;
    opacity: 1;
  }

  .home-body .keys-grid-secondary .key-card:hover {
    transform: translateY(-5px);
    border-color: rgba(103, 232, 249, 0.25) !important;
    box-shadow: 0 30px 74px rgba(0, 0, 0, 0.36) !important;
  }

  .home-body .keys-grid-secondary .key-card h3 {
    display: grid !important;
    grid-column: 1 / -1 !important;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    margin: 0 !important;
    color: #f6f3ea;
    font-size: 1.02rem !important;
    line-height: 1.18 !important;
  }

  .home-body .keys-grid-secondary .key-card h3::before {
    display: grid !important;
    width: 34px !important;
    height: 34px !important;
    margin: 0 !important;
    place-items: center;
    border: 1px solid rgba(103, 232, 249, 0.3) !important;
    border-radius: 50%;
    background: rgba(34, 211, 238, 0.08) !important;
    color: #67e8f9 !important;
    font-size: 0.7rem !important;
  }

  .home-body .keys-grid-secondary .key-card p {
    grid-column: 2 !important;
    max-width: 28ch;
    margin: 6px 0 0 !important;
    color: rgba(246, 243, 234, 0.62);
    font-size: 0.9rem !important;
    line-height: 1.58 !important;
  }
}

/* Final rich black background: deeper than flat black, still clean and premium. */
.home-body,
.masterclass-body {
  --bg: #05070a;
  background:
    linear-gradient(180deg, #070b10 0%, #030507 44%, #05080b 100%);
}

.home-body::before,
.masterclass-body::before {
  background:
    linear-gradient(120deg, rgba(34, 211, 238, 0.055) 0%, transparent 26%, transparent 70%, rgba(103, 232, 249, 0.035) 100%),
    linear-gradient(180deg, rgba(11, 17, 23, 0.98) 0%, rgba(3, 5, 7, 0.98) 48%, rgba(5, 8, 11, 1) 100%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.028) 0 1px, transparent 1px 112px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.022) 0 1px, transparent 1px 112px);
}

.home-body .luxury-bg,
.masterclass-body .luxury-bg {
  opacity: 0.82;
  background:
    linear-gradient(128deg, transparent 0 18%, rgba(34, 211, 238, 0.042) 34%, transparent 52% 100%),
    linear-gradient(238deg, transparent 0 42%, rgba(246, 243, 234, 0.025) 54%, transparent 70% 100%),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.018) 0 1px, transparent 1px 18px);
  background-size: 100% 100%, 100% 100%, 160px 160px;
  mask-image: linear-gradient(180deg, black 0%, rgba(0, 0, 0, 0.78) 54%, rgba(0, 0, 0, 0.28) 100%);
}

.grain {
  opacity: 0.13;
  mix-blend-mode: soft-light;
}

/* Final mobile mentor redesign: premium editorial proof section. */
@media (max-width: 640px) {
  .home-body .mentor-section-clean {
    width: min(100% - 22px, 1180px);
    padding-top: 42px !important;
    padding-bottom: 38px !important;
  }

  .home-body .mentor-section-clean .section-heading {
    margin-bottom: 18px !important;
  }

  .home-body .mentor-section-clean .section-heading h2 {
    max-width: 100% !important;
    font-size: clamp(2.7rem, 13vw, 3.75rem) !important;
    line-height: 0.86 !important;
    letter-spacing: 0 !important;
  }

  .mentor-section-clean .mentor-clean-layout {
    display: grid !important;
    gap: 20px !important;
  }

  .mentor-proof-strip {
    position: relative;
    width: min(100%, 390px) !important;
    min-height: 430px;
    margin: 0 auto 8px !important;
    display: block !important;
  }

  .mentor-proof-strip figure {
    position: absolute !important;
    overflow: hidden !important;
    border-radius: 0 !important;
    border: 1px solid rgba(103, 232, 249, 0.2) !important;
    background: rgba(3, 6, 8, 0.78) !important;
    box-shadow:
      0 26px 64px rgba(0, 0, 0, 0.42),
      inset 0 1px 0 rgba(255, 255, 255, 0.05) !important;
  }

  .mentor-proof-strip figure:nth-child(1) {
    left: 0 !important;
    bottom: 0 !important;
    z-index: 2;
    width: 46% !important;
    transform: translateY(-4px) !important;
  }

  .mentor-proof-strip figure:nth-child(2) {
    right: 0 !important;
    top: 0 !important;
    z-index: 1;
    width: 78% !important;
  }

  .mentor-proof-strip figure::before {
    content: "";
    position: absolute;
    inset: 10px;
    z-index: 2;
    border: 1px solid rgba(246, 243, 234, 0.08);
    pointer-events: none;
  }

  .mentor-proof-strip figure::after {
    z-index: 1;
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.02) 34%, rgba(0, 0, 0, 0.44) 100%),
      radial-gradient(180px 120px at 100% 0%, rgba(34, 211, 238, 0.12), transparent 70%) !important;
  }

  .mentor-proof-strip img {
    width: 100%;
    height: 430px !important;
    object-fit: cover !important;
    border: 0 !important;
  }

  .mentor-proof-strip figure:nth-child(1) img {
    height: 245px !important;
    object-position: 48% 35% !important;
  }

  .mentor-proof-strip figure:nth-child(2) img {
    object-position: 50% 42% !important;
  }

  .mentor-proof-strip span {
    top: 14px !important;
    left: 14px !important;
    z-index: 3;
    padding: 7px 10px !important;
    border: 1px solid rgba(103, 232, 249, 0.32) !important;
    background: rgba(1, 5, 7, 0.82) !important;
    color: #72f0ff !important;
    font-size: 0.62rem !important;
    letter-spacing: 0.12em !important;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
  }

  .mentor-copy {
    padding: 0 !important;
    border: 0 !important;
  }

  .mentor-copy .mentor-intro:first-child {
    margin: 0 !important;
    padding: 18px 16px !important;
    border: 1px solid rgba(103, 232, 249, 0.14);
    background:
      linear-gradient(135deg, rgba(103, 232, 249, 0.09), transparent 42%),
      rgba(3, 6, 8, 0.54);
    color: rgba(246, 243, 234, 0.78);
    font-size: 1rem !important;
    line-height: 1.58 !important;
  }

  .mentor-copy .mentor-intro:first-child strong {
    color: #f6f3ea;
  }

  .home-body .mentor-list {
    display: grid !important;
    gap: 9px !important;
    margin: 12px 0 0 !important;
  }

  .home-body .mentor-list li {
    position: relative;
    display: block !important;
    min-height: 0 !important;
    padding: 14px 14px 14px 48px !important;
    border: 1px solid rgba(103, 232, 249, 0.11) !important;
    background:
      linear-gradient(90deg, rgba(34, 211, 238, 0.07), transparent 48%),
      rgba(255, 255, 255, 0.012) !important;
    color: rgba(246, 243, 234, 0.66) !important;
    font-size: 0.9rem !important;
    line-height: 1.52 !important;
  }

  .home-body .mentor-list li span {
    position: absolute !important;
    left: 14px;
    top: 15px;
    float: none !important;
    width: 20px !important;
    height: 20px !important;
    margin: 0 !important;
    border-color: rgba(103, 232, 249, 0.3) !important;
    box-shadow: 0 0 26px rgba(34, 211, 238, 0.12);
  }

  .home-body .mentor-list li strong {
    display: inline !important;
    color: #f6f3ea;
  }

  .mentor-copy .mentor-intro:not(:first-child) {
    margin-top: 12px !important;
    padding: 16px !important;
    border: 0 !important;
    background:
      linear-gradient(135deg, rgba(246, 243, 234, 0.08), transparent 45%),
      rgba(246, 243, 234, 0.035) !important;
    color: rgba(246, 243, 234, 0.78) !important;
    font-size: 0.94rem !important;
    line-height: 1.58 !important;
  }

  .mentor-copy .btn-secondary {
    width: 100% !important;
    min-height: 50px !important;
    margin-top: 12px !important;
    border: 0 !important;
    background: #f6f3ea !important;
    color: #050505 !important;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.32) !important;
  }
}

/* Final mobile learning cards: same premium language as desktop. */
@media (max-width: 640px) {
  .home-body .keys-section {
    width: min(100% - 22px, 1180px) !important;
    padding-top: 42px !important;
    padding-bottom: 38px !important;
  }

  .home-body .keys-section .section-heading {
    margin-bottom: 20px !important;
    text-align: center !important;
  }

  .home-body .keys-section .section-heading .eyebrow,
  .home-body .keys-section .section-heading .eyebrow.centered {
    justify-content: center !important;
  }

  .home-body .keys-section .section-heading h2 {
    max-width: 10.5ch !important;
    margin-inline: auto !important;
    text-align: center !important;
    font-size: clamp(2.25rem, 10.5vw, 3.15rem) !important;
    line-height: 0.96 !important;
  }

  .home-body .keys-grid-premium {
    display: grid !important;
    gap: 12px !important;
  }

  .home-body .keys-grid-premium .key-card {
    position: relative !important;
    display: grid !important;
    min-height: 238px !important;
    padding: 20px 18px 18px !important;
    overflow: hidden !important;
    border: 1px solid rgba(103, 232, 249, 0.16) !important;
    border-radius: 8px !important;
    background:
      radial-gradient(260px 150px at 92% -10%, rgba(103, 232, 249, 0.16), transparent 64%),
      linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.01) 58%),
      rgba(5, 8, 11, 0.82) !important;
    box-shadow:
      0 22px 58px rgba(0, 0, 0, 0.34),
      inset 0 1px 0 rgba(255, 255, 255, 0.055) !important;
  }

  .home-body .keys-grid-premium .key-card::before {
    content: "";
    display: block !important;
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background:
      linear-gradient(90deg, rgba(34, 211, 238, 0.62), transparent 38%) top left / 100% 2px no-repeat,
      linear-gradient(180deg, rgba(34, 211, 238, 0.18), transparent 48%) top left / 2px 100% no-repeat;
    opacity: 0.72;
    pointer-events: none;
  }

  .home-body .keys-grid-premium .key-card::after {
    content: "";
    display: block !important;
    position: absolute;
    right: -58px;
    bottom: -72px;
    width: 168px;
    height: 168px;
    border: 1px solid rgba(103, 232, 249, 0.08);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(103, 232, 249, 0.08), transparent 64%);
    pointer-events: none;
  }

  .home-body .keys-grid-premium .key-head {
    position: relative !important;
    z-index: 1;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 12px !important;
    width: 100%;
    margin: 0 !important;
  }

  .home-body .keys-grid-premium .key-number {
    width: auto !important;
    height: auto !important;
    display: block !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    color: #49e5f4 !important;
    font-family: "Cormorant Garamond", "Playfair Display", Georgia, serif;
    font-size: 3.1rem !important;
    font-weight: 800 !important;
    line-height: 0.82 !important;
    text-shadow: 0 0 24px rgba(34, 211, 238, 0.18);
  }

  .home-body .keys-grid-premium .key-tag {
    display: inline-flex !important;
    width: auto !important;
    max-width: 142px !important;
    justify-content: center;
    padding: 7px 11px !important;
    border: 1px solid rgba(103, 232, 249, 0.25);
    border-radius: 999px;
    background: rgba(34, 211, 238, 0.08);
    color: rgba(103, 232, 249, 0.94);
    font-size: 0.58rem !important;
    line-height: 1.05 !important;
    letter-spacing: 0.07em;
    text-align: center;
  }

  .home-body .keys-grid-premium .key-card h3 {
    position: relative;
    z-index: 1;
    margin: 34px 0 0 !important;
    color: #f6f3ea;
    text-align: left !important;
    font-size: 1.2rem !important;
    line-height: 1.17 !important;
  }

  .home-body .keys-grid-premium .key-card p {
    position: relative;
    z-index: 1;
    max-width: 31ch !important;
    margin: 10px 0 0 !important;
    color: rgba(246, 243, 234, 0.66);
    text-align: left !important;
    font-size: 0.88rem !important;
    line-height: 1.56 !important;
  }

  .home-body .keys-extra {
    margin-top: 24px !important;
  }

  .home-body .keys-extra-title {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: auto !important;
    max-width: 100% !important;
    margin: 0 0 12px !important;
    padding: 0 !important;
    color: rgba(246, 243, 234, 0.78) !important;
    font-size: 0.68rem !important;
    line-height: 1.35 !important;
    letter-spacing: 0.08em;
    text-align: center !important;
  }

  .home-body .keys-extra-title::before,
  .home-body .keys-extra-title::after {
    content: "";
    display: block !important;
    width: 34px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(103, 232, 249, 0.34));
  }

  .home-body .keys-extra-title::after {
    background: linear-gradient(90deg, rgba(103, 232, 249, 0.34), transparent);
  }

  .home-body .keys-grid-secondary {
    display: grid !important;
    gap: 10px !important;
  }

  .home-body .keys-grid-secondary .key-card {
    position: relative !important;
    display: grid !important;
    grid-template-columns: 42px minmax(0, 1fr) !important;
    gap: 7px 12px !important;
    min-height: 0 !important;
    padding: 16px !important;
    overflow: hidden !important;
    border: 1px solid rgba(246, 243, 234, 0.11) !important;
    border-radius: 8px !important;
    background:
      linear-gradient(135deg, rgba(103, 232, 249, 0.09), transparent 42%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.008)),
      rgba(5, 8, 11, 0.78) !important;
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.28) !important;
  }

  .home-body .keys-grid-secondary .key-card::before {
    content: "";
    display: block !important;
    position: absolute;
    inset: auto 16px 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(34, 211, 238, 0.5), transparent);
  }

  .home-body .keys-grid-secondary .key-card::after {
    content: "";
    display: block !important;
    position: absolute;
    right: 13px;
    top: 13px;
    width: 32px;
    height: 32px;
    border-top: 1px solid rgba(103, 232, 249, 0.18);
    border-right: 1px solid rgba(103, 232, 249, 0.18);
    background: transparent;
  }

  .home-body .keys-grid-secondary .key-card h3 {
    display: grid !important;
    grid-column: 1 / -1 !important;
    grid-template-columns: 38px minmax(0, 1fr) !important;
    align-items: center;
    gap: 11px;
    margin: 0 !important;
    color: #f6f3ea;
    text-align: left !important;
    font-size: 1rem !important;
    line-height: 1.18 !important;
  }

  .home-body .keys-grid-secondary .key-card h3::before {
    display: grid !important;
    width: 32px !important;
    height: 32px !important;
    margin: 0 !important;
    place-items: center;
    border: 1px solid rgba(103, 232, 249, 0.32) !important;
    border-radius: 50%;
    background: rgba(34, 211, 238, 0.08) !important;
    color: #67e8f9 !important;
    font-size: 0.68rem !important;
  }

  .home-body .keys-grid-secondary .key-card p {
    grid-column: 2 !important;
    max-width: 29ch !important;
    margin: 2px 0 0 !important;
    color: rgba(246, 243, 234, 0.62);
    text-align: left !important;
    font-size: 0.84rem !important;
    line-height: 1.5 !important;
  }
}

/* Absolute final simple mobile mentor section. */
@media (max-width: 640px) {
  .home-body .mentor-section-clean {
    width: min(100% - 22px, 1180px) !important;
    padding-top: 38px !important;
    padding-bottom: 34px !important;
  }

  .home-body .mentor-section-clean .section-heading {
    margin-bottom: 18px !important;
    text-align: center !important;
  }

  .home-body .mentor-section-clean .section-heading h2 {
    max-width: 100% !important;
    font-size: clamp(2.55rem, 11vw, 3.25rem) !important;
    line-height: 0.92 !important;
  }

  .mentor-section-clean .mentor-clean-layout {
    gap: 18px !important;
  }

  .mentor-proof-strip {
    width: 100% !important;
    min-height: 0 !important;
    margin: 0 auto !important;
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 9px !important;
  }

  .mentor-proof-strip figure,
  .mentor-proof-strip figure:nth-child(1),
  .mentor-proof-strip figure:nth-child(2) {
    position: relative !important;
    inset: auto !important;
    width: auto !important;
    transform: none !important;
    overflow: hidden !important;
    border: 1px solid rgba(103, 232, 249, 0.16) !important;
    background: rgba(4, 7, 10, 0.76) !important;
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28) !important;
  }

  .mentor-proof-strip figure::before {
    inset: 8px !important;
    border-color: rgba(246, 243, 234, 0.06) !important;
  }

  .mentor-proof-strip figure::after {
    background:
      linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.46) 100%),
      radial-gradient(150px 90px at 100% 0%, rgba(34, 211, 238, 0.1), transparent 74%) !important;
  }

  .mentor-proof-strip img,
  .mentor-proof-strip figure:nth-child(1) img,
  .mentor-proof-strip figure:nth-child(2) img {
    width: 100% !important;
    height: clamp(210px, 56vw, 245px) !important;
    object-fit: cover !important;
    border: 0 !important;
  }

  .mentor-proof-strip figure:nth-child(1) img {
    object-position: 48% 35% !important;
  }

  .mentor-proof-strip figure:nth-child(2) img {
    object-position: 50% 42% !important;
  }

  .mentor-proof-strip span {
    top: 10px !important;
    left: 10px !important;
    padding: 6px 9px !important;
    border: 1px solid rgba(103, 232, 249, 0.24) !important;
    background: rgba(2, 5, 7, 0.78) !important;
    color: #72f0ff !important;
    font-size: 0.56rem !important;
    letter-spacing: 0.12em !important;
  }

  .mentor-copy {
    padding: 0 !important;
    border: 0 !important;
  }

  .mentor-copy .mentor-intro:first-child {
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    color: rgba(246, 243, 234, 0.72) !important;
    font-size: 1.03rem !important;
    line-height: 1.62 !important;
    text-align: left !important;
  }

  .mentor-copy .mentor-intro:first-child strong {
    color: #f6f3ea !important;
  }

  .home-body .mentor-list {
    margin-top: 16px !important;
    display: grid !important;
    gap: 0 !important;
    border-top: 1px solid rgba(103, 232, 249, 0.13);
  }

  .home-body .mentor-list li {
    position: relative !important;
    display: block !important;
    min-height: 0 !important;
    padding: 13px 0 13px 34px !important;
    border: 0 !important;
    border-bottom: 1px solid rgba(103, 232, 249, 0.1) !important;
    background: transparent !important;
    color: rgba(246, 243, 234, 0.62) !important;
    font-size: 0.9rem !important;
    line-height: 1.52 !important;
  }

  .home-body .mentor-list li span {
    position: absolute !important;
    left: 0 !important;
    top: 16px !important;
    width: 18px !important;
    height: 18px !important;
    margin: 0 !important;
    border: 1px solid rgba(103, 232, 249, 0.28) !important;
    background:
      radial-gradient(circle, rgba(103, 232, 249, 0.55), rgba(34, 211, 238, 0.1) 52%, transparent 70%),
      rgba(34, 211, 238, 0.05) !important;
    box-shadow: 0 0 20px rgba(34, 211, 238, 0.16);
  }

  .home-body .mentor-list li strong {
    display: inline !important;
    color: #f6f3ea !important;
  }

  .mentor-copy .mentor-intro:not(:first-child) {
    margin-top: 16px !important;
    padding: 14px 15px !important;
    border: 1px solid rgba(246, 243, 234, 0.08) !important;
    background: rgba(246, 243, 234, 0.035) !important;
    color: rgba(246, 243, 234, 0.66) !important;
    font-size: 0.92rem !important;
    line-height: 1.55 !important;
  }

  .mentor-copy .btn-secondary {
    width: 100% !important;
    min-height: 50px !important;
    margin-top: 14px !important;
    border: 0 !important;
    background: #f6f3ea !important;
    color: #050505 !important;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.3) !important;
  }
}

/* True final mobile form and button polish. */
@media (max-width: 640px) {
  .home-body .form-section {
    width: min(100% - 22px, 1040px) !important;
    padding-top: 38px !important;
    padding-bottom: 36px !important;
  }

  .home-body .form-section .lead-form,
  .home-body .form-section .lead-form[data-current-step="1"],
  .home-body .form-section .lead-form[data-current-step="2"] {
    max-width: 100% !important;
    padding: 18px !important;
    border: 1px solid rgba(246, 243, 234, 0.12) !important;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.01)), rgba(4, 6, 8, 0.88) !important;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.34) !important;
  }

  .home-body .form-header {
    margin-bottom: 18px !important;
    text-align: center !important;
  }

  .home-body .form-header span:first-child {
    font-size: 0.62rem !important;
    letter-spacing: 0.16em !important;
  }

  .home-body .form-header h2,
  .lead-form[data-current-step="2"] .form-header h2 {
    max-width: 12ch !important;
    margin-inline: auto !important;
    font-size: clamp(1.85rem, 8.4vw, 2.45rem) !important;
    line-height: 1 !important;
  }

  .form-progress {
    grid-template-columns: 44px minmax(28px, 1fr) 44px minmax(28px, 1fr) 44px !important;
    max-width: 278px !important;
    gap: 0 !important;
    margin: 0 auto 22px !important;
  }

  .form-progress-line {
    height: 2px !important;
    margin-top: 15px !important;
    margin-inline: -7px !important;
  }

  .form-step-dot strong {
    width: 32px !important;
    height: 32px !important;
    font-size: 0.82rem !important;
  }

  .form-step-dot span {
    display: block !important;
    max-width: 48px !important;
    font-size: 0.48rem !important;
    line-height: 1.05 !important;
    letter-spacing: 0.045em !important;
  }

  .form-grid {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  .home-body .form-section .input-wrap input,
  .home-body .form-section .input-wrap select {
    min-height: 50px !important;
    padding: 12px 13px !important;
    font-size: 0.98rem !important;
  }

  .phone-field {
    grid-template-columns: minmax(108px, 0.42fr) minmax(0, 1fr) !important;
    gap: 8px !important;
  }

  .form-next,
  .home-body .form-section .btn-primary {
    min-height: 52px !important;
    border: 0 !important;
    background: linear-gradient(135deg, #f8f4e9 0%, #e8fbff 52%, #88f3ff 100%) !important;
    color: #050505 !important;
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.34), 0 0 0 1px rgba(255, 255, 255, 0.16) inset !important;
  }
}

.home-body .btn-primary,
.home-body .btn-secondary,
.home-body .hero-main-cta,
.masterclass-body .btn-primary,
.masterclass-body .btn-secondary,
.masterclass-body .header-cta {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  transition: transform 220ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 220ms ease, border-color 220ms ease, background 220ms ease;
}

.home-body .btn-primary::after,
.home-body .btn-secondary::after,
.home-body .hero-main-cta::after,
.masterclass-body .btn-primary::after,
.masterclass-body .btn-secondary::after,
.masterclass-body .header-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  transform: translateX(-120%) skewX(-18deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.42), transparent);
  opacity: 0;
  transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1), opacity 220ms ease;
}

.home-body .btn-primary:hover,
.home-body .btn-secondary:hover,
.home-body .hero-main-cta:hover,
.masterclass-body .btn-primary:hover,
.masterclass-body .btn-secondary:hover,
.masterclass-body .header-cta:hover {
  transform: translateY(-2px);
}

.home-body .btn-primary:hover::after,
.home-body .btn-secondary:hover::after,
.home-body .hero-main-cta:hover::after,
.masterclass-body .btn-primary:hover::after,
.masterclass-body .btn-secondary:hover::after,
.masterclass-body .header-cta:hover::after {
  opacity: 1;
  transform: translateX(120%) skewX(-18deg);
}

.home-body .btn-primary:active,
.home-body .btn-secondary:active,
.home-body .hero-main-cta:active,
.masterclass-body .btn-primary:active,
.masterclass-body .btn-secondary:active,
.masterclass-body .header-cta:active {
  transform: translateY(0) scale(0.985);
}
/* True final step-2 form design: organized, premium and dynamic. */
.lead-form[data-current-step="2"] {
  max-width: 1060px !important;
}

.lead-form[data-current-step="2"] .form-step[data-form-step="2"].active {
  max-width: 900px !important;
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 16px !important;
  margin-inline: auto;
}

.lead-form[data-current-step="2"] .choice-group {
  position: relative;
  isolation: isolate;
  display: grid !important;
  align-content: start;
  gap: 13px !important;
  padding: 17px !important;
  overflow: hidden;
  border: 1px solid rgba(103, 232, 249, 0.14) !important;
  border-radius: 8px;
  background: radial-gradient(280px 130px at 100% -10%, rgba(103, 232, 249, 0.105), transparent 68%), linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.01)), rgba(4, 6, 9, 0.62) !important;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.045);
}

.lead-form[data-current-step="2"] .choice-group::after {
  content: "";
  position: absolute;
  inset: auto 16px 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(34, 211, 238, 0.42), transparent);
  opacity: 0.75;
}

.lead-form[data-current-step="2"] .choice-group:nth-of-type(3),
.lead-form[data-current-step="2"] .choice-group:nth-of-type(4),
.lead-form[data-current-step="2"] .form-actions,
.lead-form[data-current-step="2"] .form-error {
  grid-column: 1 / -1 !important;
}

.lead-form[data-current-step="2"] .choice-group > p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 !important;
  color: rgba(246, 243, 234, 0.78) !important;
  font-size: 0.7rem !important;
  letter-spacing: 0.1em !important;
}

.lead-form[data-current-step="2"] .choice-group > p::before {
  display: grid;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  place-items: center;
  border: 1px solid rgba(103, 232, 249, 0.25);
  border-radius: 50%;
  background: radial-gradient(circle at 50% 20%, rgba(103, 232, 249, 0.22), transparent 62%), rgba(34, 211, 238, 0.06);
  font-size: 0.95rem;
}

.lead-form[data-current-step="2"] .choice-group:nth-of-type(1) > p::before { content: "🧭"; }
.lead-form[data-current-step="2"] .choice-group:nth-of-type(2) > p::before { content: "💶"; }
.lead-form[data-current-step="2"] .choice-group:nth-of-type(3) > p::before { content: "💼"; }
.lead-form[data-current-step="2"] .choice-group:nth-of-type(4) > p::before { content: "🚀"; }

.lead-form[data-current-step="2"] .choice-grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 9px !important;
}

.lead-form[data-current-step="2"] .choice-group:nth-of-type(3) .choice-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}

.lead-form[data-current-step="2"] .choice-grid-goals {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}

.lead-form[data-current-step="2"] .choice-grid span {
  position: relative;
  display: flex !important;
  align-items: center;
  gap: 9px;
  min-height: 50px !important;
  padding: 10px 12px !important;
  overflow: hidden;
  border: 1px solid rgba(246, 243, 234, 0.11) !important;
  border-radius: 6px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.028), rgba(255, 255, 255, 0.006)), rgba(0, 0, 0, 0.22) !important;
  color: rgba(246, 243, 234, 0.73) !important;
  font-size: 0.83rem !important;
  font-weight: 750 !important;
  line-height: 1.18 !important;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.lead-form[data-current-step="2"] .choice-grid span::before {
  display: grid;
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
  place-items: center;
  border: 1px solid rgba(103, 232, 249, 0.18);
  border-radius: 50%;
  background: rgba(34, 211, 238, 0.055);
  font-size: 0.85rem;
}

.lead-form[data-current-step="2"] .choice-group:nth-of-type(1) .choice-grid label:nth-child(1) span::before { content: "🌱"; }
.lead-form[data-current-step="2"] .choice-group:nth-of-type(1) .choice-grid label:nth-child(2) span::before { content: "⚡"; }
.lead-form[data-current-step="2"] .choice-group:nth-of-type(1) .choice-grid label:nth-child(3) span::before { content: "🎯"; }
.lead-form[data-current-step="2"] .choice-group:nth-of-type(1) .choice-grid label:nth-child(4) span::before { content: "📈"; }
.lead-form[data-current-step="2"] .choice-group:nth-of-type(1) .choice-grid label:nth-child(5) span::before { content: "👑"; }
.lead-form[data-current-step="2"] .choice-group:nth-of-type(2) .choice-grid label:nth-child(1) span::before { content: "○"; }
.lead-form[data-current-step="2"] .choice-group:nth-of-type(2) .choice-grid label:nth-child(2) span::before { content: "💸"; }
.lead-form[data-current-step="2"] .choice-group:nth-of-type(2) .choice-grid label:nth-child(3) span::before { content: "💶"; }
.lead-form[data-current-step="2"] .choice-group:nth-of-type(2) .choice-grid label:nth-child(4) span::before { content: "💎"; }
.lead-form[data-current-step="2"] .choice-group:nth-of-type(2) .choice-grid label:nth-child(5) span::before { content: "🚀"; }
.lead-form[data-current-step="2"] .choice-group:nth-of-type(3) .choice-grid label:nth-child(1) span::before { content: "🎓"; }
.lead-form[data-current-step="2"] .choice-group:nth-of-type(3) .choice-grid label:nth-child(2) span::before { content: "🏢"; }
.lead-form[data-current-step="2"] .choice-group:nth-of-type(3) .choice-grid label:nth-child(3) span::before { content: "🛒"; }
.lead-form[data-current-step="2"] .choice-group:nth-of-type(3) .choice-grid label:nth-child(4) span::before { content: "💻"; }
.lead-form[data-current-step="2"] .choice-group:nth-of-type(3) .choice-grid label:nth-child(5) span::before { content: "🔎"; }
.lead-form[data-current-step="2"] .choice-group:nth-of-type(3) .choice-grid label:nth-child(6) span::before { content: "✨"; }
.lead-form[data-current-step="2"] .choice-group:nth-of-type(4) .choice-grid label:nth-child(1) span::before { content: "🌊"; }
.lead-form[data-current-step="2"] .choice-group:nth-of-type(4) .choice-grid label:nth-child(2) span::before { content: "📊"; }
.lead-form[data-current-step="2"] .choice-group:nth-of-type(4) .choice-grid label:nth-child(3) span::before { content: "🗝️"; }
.lead-form[data-current-step="2"] .choice-group:nth-of-type(4) .choice-grid label:nth-child(4) span::before { content: "🤖"; }

.lead-form[data-current-step="2"] .choice-grid span:hover {
  transform: translateY(-1px);
  border-color: rgba(103, 232, 249, 0.28) !important;
  color: #f6f3ea !important;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.18);
}

.lead-form[data-current-step="2"] .choice-grid input:checked + span {
  border-color: rgba(103, 232, 249, 0.7) !important;
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.18), rgba(246, 243, 234, 0.035)), rgba(1, 8, 10, 0.72) !important;
  color: #f6f3ea !important;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.24), 0 0 0 1px rgba(34, 211, 238, 0.08) inset;
}

.lead-form[data-current-step="2"] .choice-grid input:checked + span::after {
  content: "✓";
  position: absolute;
  right: 10px;
  top: 9px;
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border-radius: 50%;
  background: #67e8f9;
  color: #031014;
  font-size: 0.68rem;
  font-weight: 950;
}

.lead-form[data-current-step="2"] .form-actions {
  display: grid !important;
  grid-template-columns: auto minmax(280px, 360px) !important;
  align-items: center;
  gap: 16px !important;
  margin-top: 8px !important;
}

.lead-form[data-current-step="2"] .form-back {
  justify-self: start;
  color: rgba(246, 243, 234, 0.58);
}

.lead-form[data-current-step="2"] .btn-primary {
  justify-self: end;
  min-height: 56px !important;
}

@media (max-width: 760px) {
  .lead-form[data-current-step="2"] .form-step[data-form-step="2"].active {
    grid-template-columns: 1fr !important;
    gap: 11px !important;
  }

  .lead-form[data-current-step="2"] .choice-group {
    padding: 12px !important;
  }

  .lead-form[data-current-step="2"] .choice-grid,
  .lead-form[data-current-step="2"] .choice-group:nth-of-type(3) .choice-grid,
  .lead-form[data-current-step="2"] .choice-grid-goals {
    grid-template-columns: 1fr !important;
  }

  .lead-form[data-current-step="2"] .choice-grid span {
    min-height: 44px !important;
    padding: 9px 10px !important;
    font-size: 0.8rem !important;
  }

  .lead-form[data-current-step="2"] .form-actions {
    grid-template-columns: 1fr !important;
  }

  .lead-form[data-current-step="2"] .btn-primary,
  .lead-form[data-current-step="2"] .form-back {
    justify-self: stretch;
  }
}
/* Final footer: desktop minimal, mobile removed. */
.site-footer {
  margin: clamp(72px, 10vw, 120px) auto 0 !important;
  padding: 34px 0 42px !important;
  width: min(100% - 48px, 1180px) !important;
  border: 0 !important;
  border-top: 1px solid rgba(103, 232, 249, 0.16) !important;
  background: transparent !important;
  box-shadow: none !important;
}

.site-footer::before,
.site-footer::after {
  display: none !important;
  content: none !important;
}

.footer-inner {
  display: grid !important;
  grid-template-columns: 1fr !important;
  justify-items: center !important;
  gap: 12px !important;
  padding: 0 !important;
  text-align: center !important;
}

.footer-brand {
  display: grid !important;
  justify-items: center !important;
  gap: 10px !important;
  max-width: 620px !important;
}

.footer-brand::before {
  content: "Kevin Sanz";
  color: #f6f3ea;
  font-family: var(--font-title);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  line-height: 0.95;
}

.footer-brand strong {
  display: none !important;
}

.footer-brand p {
  margin: 0 !important;
  max-width: 600px !important;
  color: rgba(246, 243, 234, 0.58) !important;
  font-size: 1rem !important;
  line-height: 1.7 !important;
}

.footer-links {
  display: none !important;
}

.footer-copy {
  margin: 4px 0 0 !important;
  color: rgba(246, 243, 234, 0.36) !important;
  font-size: 0.72rem !important;
  letter-spacing: 0.16em !important;
  text-transform: uppercase !important;
}

@media (max-width: 760px) {
  .site-footer {
    display: none !important;
  }
}
/* Final contact cards: premium, compact, integrated with the dark style. */
.home-body .contact-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 18px !important;
  align-items: stretch !important;
  margin-top: clamp(28px, 4vw, 48px) !important;
}

.home-body .contact-card {
  position: relative !important;
  display: grid !important;
  min-height: 260px !important;
  padding: 28px !important;
  overflow: hidden !important;
  border: 1px solid rgba(103, 232, 249, 0.16) !important;
  border-radius: 0 !important;
  background:
    radial-gradient(circle at 14% 12%, rgba(103, 232, 249, 0.14), transparent 34%),
    linear-gradient(145deg, rgba(10, 26, 30, 0.78), rgba(3, 5, 7, 0.86) 58%, rgba(0, 0, 0, 0.7)) !important;
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.05) !important;
  text-align: left !important;
  transform: translateZ(0);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease, background 220ms ease !important;
}

.home-body .contact-card::before {
  position: static !important;
  display: grid !important;
  width: 52px !important;
  height: 52px !important;
  margin: 0 0 30px !important;
  place-items: center !important;
  border: 1px solid rgba(103, 232, 249, 0.28) !important;
  border-radius: 50% !important;
  background: rgba(103, 232, 249, 0.075) !important;
  color: #67e8f9 !important;
  box-shadow: 0 0 34px rgba(34, 211, 238, 0.12) !important;
  font-family: var(--font-body) !important;
  font-size: 1.3rem !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  opacity: 1 !important;
  transform: none !important;
  pointer-events: none !important;
}

.home-body .contact-card:nth-child(1)::before {
  content: "↗" !important;
}

.home-body .contact-card:nth-child(2)::before {
  content: "@" !important;
}

.home-body .contact-card:nth-child(3)::before {
  content: "◎" !important;
}

.home-body .contact-card::after {
  content: "" !important;
  position: absolute !important;
  inset: auto 20px 20px auto !important;
  width: 92px !important;
  height: 92px !important;
  border: 1px solid rgba(103, 232, 249, 0.075) !important;
  border-radius: 50% !important;
  background: radial-gradient(circle, rgba(103, 232, 249, 0.06), transparent 68%) !important;
  opacity: 1 !important;
  pointer-events: none !important;
}

.home-body .contact-card:hover {
  transform: translateY(-6px) !important;
  border-color: rgba(103, 232, 249, 0.36) !important;
  box-shadow:
    0 36px 90px rgba(0, 0, 0, 0.34),
    0 0 0 1px rgba(103, 232, 249, 0.055) inset,
    0 0 44px rgba(34, 211, 238, 0.07) !important;
}

.home-body .contact-card h3 {
  margin: 0 0 12px !important;
  color: #f6f3ea !important;
  font-size: clamp(1.22rem, 1.6vw, 1.55rem) !important;
  font-weight: 950 !important;
  line-height: 1.05 !important;
  letter-spacing: 0 !important;
  text-align: left !important;
}

.home-body .contact-card p {
  margin: 0 0 30px !important;
  max-width: 31ch !important;
  color: rgba(246, 243, 234, 0.58) !important;
  font-size: 0.96rem !important;
  line-height: 1.55 !important;
  text-align: left !important;
}

.home-body .contact-card .btn-secondary {
  align-self: end !important;
  justify-self: stretch !important;
  display: inline-flex !important;
  min-height: 54px !important;
  padding: 0 18px !important;
  justify-content: space-between !important;
  gap: 14px !important;
  border: 1px solid rgba(246, 243, 234, 0.16) !important;
  border-radius: 0 !important;
  background: rgba(246, 243, 234, 0.055) !important;
  color: #f6f3ea !important;
  box-shadow: none !important;
  font-size: 0.84rem !important;
  font-weight: 950 !important;
  letter-spacing: 0.04em !important;
  text-align: left !important;
  text-transform: none !important;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease !important;
}

.home-body .contact-card .btn-secondary::after {
  content: "→";
  position: static !important;
  inset: auto !important;
  z-index: 1 !important;
  display: grid;
  width: 28px;
  height: 28px;
  min-width: 28px;
  flex: 0 0 28px;
  margin-left: auto;
  place-items: center;
  border-radius: 50%;
  background: rgba(103, 232, 249, 0.16);
  color: #67e8f9;
  opacity: 1 !important;
  transform: none !important;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.home-body .contact-card .btn-secondary:hover {
  transform: translateY(-2px) !important;
  border-color: rgba(103, 232, 249, 0.45) !important;
  background: rgba(103, 232, 249, 0.1) !important;
  color: #ffffff !important;
}

.home-body .contact-card .btn-secondary:hover::after {
  transform: translateX(3px) !important;
  background: #67e8f9;
  color: #020709;
}

.home-body .contact-card .btn-icon {
  width: 22px !important;
  height: 22px !important;
  color: #67e8f9 !important;
}

.home-body .contact-card .contact-button-label {
  position: relative;
  z-index: 1;
  min-width: 0;
  flex: 1 1 auto;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media (max-width: 760px) {
  .home-body .contact-grid {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
    margin-top: 26px !important;
  }

  .home-body .contact-card {
    min-height: 0 !important;
    grid-template-columns: 46px 1fr !important;
    column-gap: 16px !important;
    row-gap: 12px !important;
    padding: 18px !important;
    border-color: rgba(103, 232, 249, 0.13) !important;
    background:
      linear-gradient(135deg, rgba(103, 232, 249, 0.08), transparent 42%),
      rgba(3, 7, 9, 0.76) !important;
  }

  .home-body .contact-card::before {
    grid-row: 1 / span 2 !important;
    width: 42px !important;
    height: 42px !important;
    margin: 2px 0 0 !important;
    font-size: 1.08rem !important;
  }

  .home-body .contact-card::after {
    display: none !important;
  }

  .home-body .contact-card h3 {
    margin: 0 !important;
    font-size: 1.08rem !important;
  }

  .home-body .contact-card p {
    margin: 0 !important;
    max-width: none !important;
    font-size: 0.88rem !important;
    line-height: 1.45 !important;
  }

  .home-body .contact-card .btn-secondary {
    grid-column: 1 / -1 !important;
    min-height: 48px !important;
    padding: 0 14px !important;
    font-size: 0.78rem !important;
  }

  .home-body .contact-card .btn-secondary::after {
    width: 24px !important;
    height: 24px !important;
    min-width: 24px !important;
    flex-basis: 24px !important;
  }

  .home-body .contact-card:nth-child(2) .btn-secondary {
    font-size: clamp(0.68rem, 3.1vw, 0.78rem) !important;
    letter-spacing: 0.01em !important;
  }
}

/* Final entry animations for the hero title and learning cards. */
.home-body .hero-title-animated {
  perspective: 900px;
  transform-style: preserve-3d;
}

.home-body .hero-title-animated .hero-line {
  opacity: 0;
  transform: translate3d(0, 34px, -24px) rotateX(10deg) scale(0.965);
  transform-origin: 50% 85%;
  filter: blur(14px);
  will-change: opacity, transform, filter;
}

.home-body .hero-left.visible .hero-title-animated .hero-line {
  animation: heroTitleCinematicIn 980ms cubic-bezier(0.16, 1, 0.3, 1) both !important;
}

.home-body .hero-left.visible .hero-title-animated .hero-line:nth-child(1) { animation-delay: 0.08s !important; }
.home-body .hero-left.visible .hero-title-animated .hero-line:nth-child(2) { animation-delay: 0.20s !important; }
.home-body .hero-left.visible .hero-title-animated .hero-line:nth-child(3) { animation-delay: 0.32s !important; }
.home-body .hero-left.visible .hero-title-animated .hero-line:nth-child(4) { animation-delay: 0.44s !important; }
.home-body .hero-left.visible .hero-title-animated .hero-line:nth-child(5) { animation-delay: 0.56s !important; }
.home-body .hero-left.visible .hero-title-animated .hero-line:nth-child(6) { animation-delay: 0.66s !important; }

.home-body .hero-left.visible .hero-title-animated .gradient-text {
  animation:
    titleGradientFlow 4.8s ease-in-out infinite,
    heroGradientFlash 1250ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes heroTitleCinematicIn {
  0% {
    opacity: 0;
    transform: translate3d(0, 34px, -24px) rotateX(10deg) scale(0.965);
    filter: blur(14px);
    clip-path: inset(0 0 100% 0);
    text-shadow: 0 0 0 rgba(103, 232, 249, 0);
  }
  58% {
    opacity: 1;
    transform: translate3d(0, -5px, 14px) rotateX(-2deg) scale(1.012);
    filter: blur(0);
    clip-path: inset(0 0 0 0);
    text-shadow: 0 0 28px rgba(103, 232, 249, 0.14);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) rotateX(0) scale(1);
    filter: blur(0);
    clip-path: inset(0 0 0 0);
    text-shadow: inherit;
  }
}

@keyframes heroGradientFlash {
  0% {
    filter: drop-shadow(0 0 0 rgba(103, 232, 249, 0));
  }
  45% {
    filter: drop-shadow(0 0 24px rgba(103, 232, 249, 0.34));
  }
  100% {
    filter: drop-shadow(0 0 18px rgba(125, 211, 252, 0.10));
  }
}

.home-body .keys-section .key-card.reveal {
  opacity: 0;
  transform: translate3d(0, 42px, 0) scale(0.965);
  filter: blur(12px);
  will-change: opacity, transform, filter;
}

.home-body .keys-section .key-card.reveal.visible {
  animation: learningCardRise 780ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.home-body .keys-grid-premium .key-card.reveal.visible:nth-child(1) { animation-delay: 0.04s; }
.home-body .keys-grid-premium .key-card.reveal.visible:nth-child(2) { animation-delay: 0.16s; }
.home-body .keys-grid-premium .key-card.reveal.visible:nth-child(3) { animation-delay: 0.28s; }
.home-body .keys-grid-secondary .key-card.reveal.visible:nth-child(1) { animation-delay: 0.08s; }
.home-body .keys-grid-secondary .key-card.reveal.visible:nth-child(2) { animation-delay: 0.20s; }
.home-body .keys-grid-secondary .key-card.reveal.visible:nth-child(3) { animation-delay: 0.32s; }

.home-body .keys-section .key-card.reveal.visible::before {
  animation: learningCardEdgeSweep 980ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.home-body .keys-section .key-card.reveal.visible::after {
  animation: learningCardGlowIn 980ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes learningCardRise {
  0% {
    opacity: 0;
    transform: translate3d(0, 42px, 0) scale(0.965);
    filter: blur(12px);
  }
  62% {
    opacity: 1;
    transform: translate3d(0, -7px, 0) scale(1.012);
    filter: blur(0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0);
  }
}

@keyframes learningCardEdgeSweep {
  0% {
    opacity: 0;
    clip-path: inset(0 100% 0 0);
  }
  100% {
    opacity: 1;
    clip-path: inset(0 0 0 0);
  }
}

@keyframes learningCardGlowIn {
  0% {
    opacity: 0;
    transform: translate3d(18px, 18px, 0) scale(0.84);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-body .hero-left.visible .hero-title-animated .hero-line,
  .home-body .hero-left.visible .hero-title-animated .gradient-text,
  .home-body .keys-section .key-card.reveal.visible,
  .home-body .keys-section .key-card.reveal.visible::before,
  .home-body .keys-section .key-card.reveal.visible::after {
    animation: none !important;
  }

  .home-body .hero-title-animated .hero-line,
  .home-body .keys-section .key-card.reveal,
  .home-body .keys-section .key-card.reveal.visible {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    clip-path: none !important;
  }
}

/* Final learning section: integrated editorial map, not presentation cards. */
.home-body .keys-section {
  width: min(1180px, calc(100% - 48px)) !important;
}

.home-body .keys-grid-premium,
.home-body .keys-grid-secondary {
  border-radius: 0 !important;
}

@media (min-width: 761px) {
  .home-body .keys-grid-premium {
    position: relative !important;
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 0 !important;
    padding: 10px 0 !important;
    border-top: 1px solid rgba(103, 232, 249, 0.22) !important;
    border-bottom: 1px solid rgba(246, 243, 234, 0.08) !important;
    background:
      radial-gradient(640px 280px at 50% 0%, rgba(34, 211, 238, 0.105), transparent 70%),
      linear-gradient(180deg, rgba(246, 243, 234, 0.022), rgba(246, 243, 234, 0.006)) !important;
    box-shadow: none !important;
  }

  .home-body .keys-grid-premium::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -1px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(103, 232, 249, 0.68), transparent);
    pointer-events: none;
  }

  .home-body .keys-grid-premium .key-card,
  .home-body .keys-grid-secondary .key-card {
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  .home-body .keys-grid-premium .key-card {
    min-height: 0 !important;
    padding: 34px 34px 36px !important;
    overflow: visible !important;
  }

  .home-body .keys-grid-premium .key-card:not(:last-child) {
    border-right: 1px solid rgba(103, 232, 249, 0.12) !important;
  }

  .home-body .keys-grid-premium .key-card::before,
  .home-body .keys-grid-premium .key-card::after,
  .home-body .keys-grid-secondary .key-card::after {
    display: none !important;
    content: none !important;
  }

  .home-body .keys-grid-premium .key-head {
    display: grid !important;
    grid-template-columns: auto 1fr !important;
    align-items: baseline !important;
    gap: 16px !important;
    margin: 0 0 46px !important;
  }

  .home-body .keys-grid-premium .key-number {
    color: #67e8f9 !important;
    font-family: "Inter", system-ui, sans-serif !important;
    font-size: 0.84rem !important;
    font-weight: 950 !important;
    line-height: 1 !important;
    letter-spacing: 0.18em !important;
    text-shadow: 0 0 18px rgba(103, 232, 249, 0.26) !important;
  }

  .home-body .keys-grid-premium .key-tag {
    justify-self: start !important;
    max-width: none !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    color: rgba(103, 232, 249, 0.72) !important;
    font-size: 0.62rem !important;
    font-weight: 950 !important;
    letter-spacing: 0.13em !important;
    text-align: left !important;
  }

  .home-body .keys-grid-premium .key-card h3 {
    margin: 0 !important;
    max-width: 13ch !important;
    color: #f6f3ea !important;
    font-family: "Cormorant Garamond", "Playfair Display", Georgia, serif !important;
    font-size: clamp(1.72rem, 2.15vw, 2.34rem) !important;
    font-weight: 800 !important;
    line-height: 0.98 !important;
    letter-spacing: 0 !important;
  }

  .home-body .keys-grid-premium .key-card p {
    max-width: 31ch !important;
    margin-top: 22px !important;
    color: rgba(246, 243, 234, 0.62) !important;
    font-size: 0.95rem !important;
    line-height: 1.72 !important;
  }

  .home-body .keys-grid-premium .key-card:hover {
    transform: translateY(-3px) !important;
    background:
      radial-gradient(330px 170px at 50% 0%, rgba(103, 232, 249, 0.065), transparent 72%),
      rgba(246, 243, 234, 0.01) !important;
    box-shadow: none !important;
  }

  .home-body .keys-extra {
    margin-top: 46px !important;
  }

  .home-body .keys-extra-title {
    margin-bottom: 20px !important;
    color: rgba(246, 243, 234, 0.52) !important;
  }

  .home-body .keys-grid-secondary {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 0 !important;
    border-top: 1px solid rgba(246, 243, 234, 0.08) !important;
    border-bottom: 1px solid rgba(103, 232, 249, 0.14) !important;
    background: rgba(2, 7, 10, 0.22) !important;
  }

  .home-body .keys-grid-secondary .key-card {
    min-height: 0 !important;
    display: grid !important;
    grid-template-columns: 34px minmax(0, 1fr) !important;
    gap: 8px 16px !important;
    padding: 24px 26px !important;
    overflow: visible !important;
  }

  .home-body .keys-grid-secondary .key-card:not(:last-child) {
    border-right: 1px solid rgba(246, 243, 234, 0.08) !important;
  }

  .home-body .keys-grid-secondary .key-card::before {
    content: "" !important;
    position: static !important;
    display: block !important;
    grid-row: 1 / span 2 !important;
    width: 10px !important;
    height: 10px !important;
    margin: 7px 0 0 10px !important;
    border: 1px solid rgba(103, 232, 249, 0.72) !important;
    border-radius: 50% !important;
    background: #67e8f9 !important;
    box-shadow: 0 0 18px rgba(103, 232, 249, 0.38) !important;
  }

  .home-body .keys-grid-secondary .key-card h3 {
    display: block !important;
    grid-column: 2 !important;
    margin: 0 !important;
    color: #f6f3ea !important;
    font-size: 1rem !important;
    line-height: 1.18 !important;
  }

  .home-body .keys-grid-secondary .key-card h3::before {
    display: none !important;
    content: none !important;
  }

  .home-body .keys-grid-secondary .key-card p {
    grid-column: 2 !important;
    max-width: 30ch !important;
    margin: 5px 0 0 !important;
    color: rgba(246, 243, 234, 0.52) !important;
    font-size: 0.88rem !important;
    line-height: 1.62 !important;
  }

  .home-body .keys-grid-secondary .key-card:hover {
    transform: none !important;
    background: rgba(103, 232, 249, 0.025) !important;
    box-shadow: none !important;
  }
}

@media (max-width: 760px) {
  .home-body .keys-section {
    width: min(100% - 24px, 1180px) !important;
  }

  .home-body .keys-grid-premium,
  .home-body .keys-grid-secondary {
    display: grid !important;
    gap: 0 !important;
    border-top: 1px solid rgba(103, 232, 249, 0.18) !important;
    border-bottom: 1px solid rgba(246, 243, 234, 0.08) !important;
    background: rgba(2, 7, 10, 0.18) !important;
  }

  .home-body .keys-grid-premium .key-card,
  .home-body .keys-grid-secondary .key-card {
    min-height: 0 !important;
    padding: 22px 4px !important;
    border: 0 !important;
    border-radius: 0 !important;
    border-bottom: 1px solid rgba(246, 243, 234, 0.08) !important;
    background: transparent !important;
    box-shadow: none !important;
    text-align: left !important;
  }

  .home-body .keys-grid-premium .key-card:last-child,
  .home-body .keys-grid-secondary .key-card:last-child {
    border-bottom: 0 !important;
  }

  .home-body .keys-grid-premium .key-card::before,
  .home-body .keys-grid-premium .key-card::after,
  .home-body .keys-grid-secondary .key-card::after {
    display: none !important;
    content: none !important;
  }

  .home-body .keys-grid-premium .key-head {
    display: flex !important;
    justify-content: flex-start !important;
    gap: 12px !important;
    margin: 0 0 15px !important;
  }

  .home-body .keys-grid-premium .key-number,
  .home-body .keys-grid-premium .key-tag {
    font-family: "Inter", system-ui, sans-serif !important;
    font-size: 0.66rem !important;
    letter-spacing: 0.14em !important;
  }

  .home-body .keys-grid-premium .key-card h3,
  .home-body .keys-grid-secondary .key-card h3 {
    margin: 0 !important;
    text-align: left !important;
    font-family: "Cormorant Garamond", "Playfair Display", Georgia, serif !important;
    font-size: 1.6rem !important;
    line-height: 1 !important;
  }

  .home-body .keys-grid-premium .key-card p,
  .home-body .keys-grid-secondary .key-card p {
    max-width: none !important;
    margin-top: 11px !important;
    text-align: left !important;
    color: rgba(246, 243, 234, 0.58) !important;
    font-size: 0.92rem !important;
    line-height: 1.62 !important;
  }

  .home-body .keys-grid-secondary .key-card h3::before {
    display: none !important;
    content: none !important;
  }
}

/* Final mobile learning flow: no boxes, just a premium editorial timeline. */
@media (max-width: 760px) {
  .home-body .keys-section {
    width: min(100% - 30px, 430px) !important;
    padding-top: 34px !important;
  }

  .home-body .keys-section .section-heading {
    margin-bottom: 32px !important;
  }

  .home-body .keys-section .section-heading h2 {
    font-size: clamp(2.45rem, 12.2vw, 3.85rem) !important;
    line-height: 0.91 !important;
  }

  .home-body .keys-grid-premium,
  .home-body .keys-grid-secondary {
    position: relative !important;
    display: grid !important;
    gap: 0 !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  .home-body .keys-grid-premium {
    padding-left: 28px !important;
  }

  .home-body .keys-grid-premium::before {
    content: "" !important;
    position: absolute !important;
    left: 6px !important;
    top: 9px !important;
    bottom: 18px !important;
    display: block !important;
    width: 1px !important;
    background: linear-gradient(180deg, rgba(103, 232, 249, 0.82), rgba(103, 232, 249, 0.16), transparent) !important;
    box-shadow: 0 0 18px rgba(103, 232, 249, 0.24) !important;
    pointer-events: none !important;
  }

  .home-body .keys-grid-premium .key-card::before,
  .home-body .keys-grid-secondary .key-card::before {
    content: "" !important;
    position: absolute !important;
    display: block !important;
    pointer-events: none !important;
  }

  .home-body .keys-grid-premium .key-card,
  .home-body .keys-grid-secondary .key-card {
    position: relative !important;
    isolation: isolate !important;
    display: block !important;
    min-height: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    overflow: visible !important;
    text-align: left !important;
  }

  .home-body .keys-grid-premium .key-card {
    padding: 0 0 36px !important;
  }

  .home-body .keys-grid-premium .key-card:not(:last-child)::after {
    content: "" !important;
    position: absolute !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 18px !important;
    display: block !important;
    height: 1px !important;
    background: linear-gradient(90deg, rgba(103, 232, 249, 0.22), transparent 78%) !important;
    pointer-events: none !important;
  }

  .home-body .keys-grid-premium .key-card::before {
    left: -27px !important;
    top: 4px !important;
    width: 13px !important;
    height: 13px !important;
    border: 1px solid rgba(103, 232, 249, 0.68) !important;
    border-radius: 50% !important;
    background: #07151a !important;
    box-shadow:
      0 0 0 5px rgba(103, 232, 249, 0.055),
      0 0 20px rgba(103, 232, 249, 0.42) !important;
  }

  .home-body .keys-grid-premium .key-card::after,
  .home-body .keys-grid-secondary .key-card::after {
    display: none !important;
    content: none !important;
  }

  .home-body .keys-grid-premium .key-head {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 12px !important;
    margin: 0 0 14px !important;
  }

  .home-body .keys-grid-premium .key-number {
    display: inline-flex !important;
    align-items: center !important;
    min-width: 2.2ch !important;
    color: #67e8f9 !important;
    font-family: "Inter", system-ui, sans-serif !important;
    font-size: 0.76rem !important;
    font-weight: 950 !important;
    line-height: 1 !important;
    letter-spacing: 0.16em !important;
    text-shadow: 0 0 18px rgba(103, 232, 249, 0.24) !important;
  }

  .home-body .keys-grid-premium .key-tag {
    display: inline-flex !important;
    align-items: center !important;
    max-width: none !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    color: rgba(121, 239, 255, 0.62) !important;
    font-family: "Inter", system-ui, sans-serif !important;
    font-size: 0.62rem !important;
    font-weight: 950 !important;
    line-height: 1 !important;
    letter-spacing: 0.12em !important;
    text-align: left !important;
    text-transform: uppercase !important;
  }

  .home-body .keys-grid-premium .key-card h3,
  .home-body .keys-grid-secondary .key-card h3 {
    max-width: 13.5ch !important;
    margin: 0 !important;
    color: #f6f3ea !important;
    font-family: "Cormorant Garamond", "Playfair Display", Georgia, serif !important;
    font-size: clamp(2.08rem, 8.8vw, 2.85rem) !important;
    font-weight: 800 !important;
    line-height: 0.96 !important;
    letter-spacing: 0 !important;
    text-align: left !important;
    text-wrap: balance !important;
  }

  .home-body .keys-grid-premium .key-card p,
  .home-body .keys-grid-secondary .key-card p {
    max-width: 29ch !important;
    margin: 13px 0 0 !important;
    color: rgba(246, 243, 234, 0.62) !important;
    font-size: 0.96rem !important;
    line-height: 1.62 !important;
    text-align: left !important;
  }

  .home-body .keys-grid-premium .key-card p strong,
  .home-body .keys-grid-secondary .key-card p strong {
    color: rgba(246, 243, 234, 0.88) !important;
    font-weight: 850 !important;
  }

  .home-body .keys-extra {
    margin-top: 8px !important;
  }

  .home-body .keys-extra-title {
    display: grid !important;
    grid-template-columns: 28px minmax(0, 1fr) 28px !important;
    align-items: center !important;
    gap: 10px !important;
    margin: 0 0 20px !important;
    color: rgba(246, 243, 234, 0.58) !important;
    font-size: 0.66rem !important;
    line-height: 1.28 !important;
    letter-spacing: 0.12em !important;
    text-align: center !important;
  }

  .home-body .keys-extra-title::before,
  .home-body .keys-extra-title::after {
    content: "" !important;
    display: block !important;
    height: 1px !important;
    background: linear-gradient(90deg, transparent, rgba(103, 232, 249, 0.48)) !important;
  }

  .home-body .keys-extra-title::after {
    background: linear-gradient(90deg, rgba(103, 232, 249, 0.48), transparent) !important;
  }

  .home-body .keys-grid-secondary {
    counter-reset: practical-step !important;
    padding-left: 0 !important;
  }

  .home-body .keys-grid-secondary .key-card {
    padding: 0 0 26px 52px !important;
    min-height: 0 !important;
  }

  .home-body .keys-grid-secondary .key-card::before {
    left: 0 !important;
    top: 2px !important;
    inset: auto auto auto 0 !important;
    display: grid !important;
    place-items: center !important;
    width: 34px !important;
    height: 34px !important;
    border: 1px solid rgba(103, 232, 249, 0.24) !important;
    border-radius: 50% !important;
    background: transparent !important;
    box-shadow: 0 0 18px rgba(103, 232, 249, 0.12) !important;
    color: #67e8f9 !important;
    counter-increment: practical-step !important;
    content: "0" counter(practical-step) !important;
    font-family: "Inter", system-ui, sans-serif !important;
    font-size: 0.72rem !important;
    font-weight: 950 !important;
    letter-spacing: 0.04em !important;
  }

  .home-body .keys-grid-secondary .key-card:not(:last-child)::after {
    content: "" !important;
    position: absolute !important;
    left: 16px !important;
    top: 43px !important;
    bottom: 8px !important;
    display: block !important;
    width: 1px !important;
    background: linear-gradient(180deg, rgba(103, 232, 249, 0.18), transparent) !important;
    pointer-events: none !important;
  }

  .home-body .keys-grid-secondary .key-card h3 {
    max-width: 14ch !important;
    font-size: clamp(1.72rem, 7vw, 2.25rem) !important;
    line-height: 0.98 !important;
  }

  .home-body .keys-grid-secondary .key-card h3::before {
    display: none !important;
    content: none !important;
  }

  .home-body .keys-grid-secondary .key-card p {
    max-width: 26ch !important;
    margin-top: 10px !important;
    font-size: 0.93rem !important;
  }
}

@media (max-width: 380px) {
  .home-body .keys-section {
    width: min(100% - 24px, 430px) !important;
  }

  .home-body .keys-grid-premium .key-card {
    padding-bottom: 32px !important;
  }

  .home-body .keys-grid-premium .key-tag {
    font-size: 0.58rem !important;
  }

  .home-body .keys-grid-secondary .key-card {
    padding-left: 48px !important;
  }
}

/* Final mobile practical flow: match the first learning timeline, without boxes. */
@media (max-width: 760px) {
  .home-body .keys-extra {
    margin-top: 6px !important;
  }

  .home-body .keys-extra-title {
    display: block !important;
    max-width: 31ch !important;
    margin: 0 0 24px 28px !important;
    color: rgba(246, 243, 234, 0.58) !important;
    font-family: "Inter", system-ui, sans-serif !important;
    font-size: 0.72rem !important;
    font-weight: 900 !important;
    line-height: 1.42 !important;
    letter-spacing: 0.09em !important;
    text-align: left !important;
    text-transform: uppercase !important;
  }

  .home-body .keys-extra-title::before {
    content: "" !important;
    display: block !important;
    width: 48px !important;
    height: 2px !important;
    margin: 0 0 14px !important;
    background: linear-gradient(90deg, #67e8f9, transparent) !important;
  }

  .home-body .keys-extra-title::after {
    display: none !important;
    content: none !important;
  }

  .home-body .keys-grid-secondary {
    position: relative !important;
    counter-reset: practical-step !important;
    display: grid !important;
    gap: 0 !important;
    padding-left: 28px !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  .home-body .keys-grid-secondary::before {
    content: "" !important;
    position: absolute !important;
    left: 6px !important;
    top: 8px !important;
    bottom: 18px !important;
    display: block !important;
    width: 1px !important;
    background: linear-gradient(180deg, rgba(103, 232, 249, 0.7), rgba(103, 232, 249, 0.14), transparent) !important;
    box-shadow: 0 0 18px rgba(103, 232, 249, 0.2) !important;
    pointer-events: none !important;
  }

  .home-body .keys-grid-secondary .key-card {
    counter-increment: practical-step !important;
    position: relative !important;
    padding: 0 0 34px !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    overflow: visible !important;
  }

  .home-body .keys-grid-secondary .key-card::before {
    content: "" !important;
    position: absolute !important;
    left: -27px !important;
    top: 5px !important;
    display: block !important;
    width: 13px !important;
    height: 13px !important;
    border: 1px solid rgba(103, 232, 249, 0.6) !important;
    border-radius: 50% !important;
    background: #07151a !important;
    box-shadow:
      0 0 0 5px rgba(103, 232, 249, 0.045),
      0 0 18px rgba(103, 232, 249, 0.34) !important;
    pointer-events: none !important;
  }

  .home-body .keys-grid-secondary .key-card:not(:last-child)::after {
    content: "" !important;
    position: absolute !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 17px !important;
    display: block !important;
    height: 1px !important;
    background: linear-gradient(90deg, rgba(103, 232, 249, 0.18), transparent 76%) !important;
    pointer-events: none !important;
  }

  .home-body .keys-grid-secondary .key-card h3 {
    max-width: 15ch !important;
    margin: 0 !important;
    color: #f6f3ea !important;
    font-family: "Cormorant Garamond", "Playfair Display", Georgia, serif !important;
    font-size: clamp(2.02rem, 8.2vw, 2.72rem) !important;
    font-weight: 800 !important;
    line-height: 0.98 !important;
    letter-spacing: 0 !important;
    text-align: left !important;
    text-wrap: balance !important;
  }

  .home-body .keys-grid-secondary .key-card h3::before {
    content: "0" counter(practical-step) !important;
    display: block !important;
    margin: 0 0 10px !important;
    color: #67e8f9 !important;
    font-family: "Inter", system-ui, sans-serif !important;
    font-size: 0.76rem !important;
    font-weight: 950 !important;
    line-height: 1 !important;
    letter-spacing: 0.16em !important;
    text-shadow: 0 0 18px rgba(103, 232, 249, 0.24) !important;
  }

  .home-body .keys-grid-secondary .key-card p {
    max-width: 29ch !important;
    margin: 13px 0 0 !important;
    color: rgba(246, 243, 234, 0.62) !important;
    font-size: 0.96rem !important;
    line-height: 1.62 !important;
    text-align: left !important;
  }
}

@media (max-width: 380px) {
  .home-body .keys-extra-title {
    max-width: 29ch !important;
    margin-left: 28px !important;
    font-size: 0.68rem !important;
  }

  .home-body .keys-grid-secondary {
    padding-left: 28px !important;
  }

  .home-body .keys-grid-secondary .key-card {
    padding-left: 0 !important;
  }
}

/* Final mobile practical list: distinct from the main narrative timeline. */
@media (max-width: 760px) {
  .home-body .keys-extra {
    position: relative !important;
    margin-top: 16px !important;
    padding-top: 32px !important;
    border-top: 1px solid rgba(103, 232, 249, 0.18) !important;
  }

  .home-body .keys-extra::before {
    content: "" !important;
    position: absolute !important;
    left: 0 !important;
    top: -1px !important;
    display: block !important;
    width: min(46%, 180px) !important;
    height: 2px !important;
    background: linear-gradient(90deg, #67e8f9, transparent) !important;
    box-shadow: 0 0 18px rgba(103, 232, 249, 0.28) !important;
    pointer-events: none !important;
  }

  .home-body .keys-extra-title {
    display: block !important;
    max-width: 34ch !important;
    margin: 0 0 24px !important;
    color: rgba(246, 243, 234, 0.66) !important;
    font-family: "Inter", system-ui, sans-serif !important;
    font-size: 0.78rem !important;
    font-weight: 950 !important;
    line-height: 1.42 !important;
    letter-spacing: 0.1em !important;
    text-align: left !important;
    text-transform: uppercase !important;
  }

  .home-body .keys-extra-title::before,
  .home-body .keys-extra-title::after {
    display: none !important;
    content: none !important;
  }

  .home-body .keys-grid-secondary {
    display: grid !important;
    gap: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    counter-reset: none !important;
  }

  .home-body .keys-grid-secondary::before {
    display: none !important;
    content: none !important;
  }

  .home-body .keys-grid-secondary .key-card {
    position: relative !important;
    display: grid !important;
    grid-template-columns: 42px minmax(0, 1fr) !important;
    column-gap: 16px !important;
    align-items: start !important;
    min-height: 0 !important;
    padding: 0 0 26px !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    overflow: visible !important;
    counter-increment: none !important;
  }

  .home-body .keys-grid-secondary .key-card:not(:last-child) {
    margin-bottom: 24px !important;
  }

  .home-body .keys-grid-secondary .key-card::before {
    position: static !important;
    display: block !important;
    width: auto !important;
    height: auto !important;
    margin: 2px 0 0 !important;
    border: 0 !important;
    border-top: 1px solid rgba(103, 232, 249, 0.55) !important;
    border-radius: 0 !important;
    padding-top: 10px !important;
    background: transparent !important;
    box-shadow: none !important;
    color: #67e8f9 !important;
    font-family: "Inter", system-ui, sans-serif !important;
    font-size: 0.74rem !important;
    font-weight: 950 !important;
    line-height: 1 !important;
    letter-spacing: 0.14em !important;
    text-align: left !important;
    text-shadow: 0 0 16px rgba(103, 232, 249, 0.22) !important;
    pointer-events: none !important;
  }

  .home-body .keys-grid-secondary .key-card:nth-child(1)::before {
    content: "01" !important;
  }

  .home-body .keys-grid-secondary .key-card:nth-child(2)::before {
    content: "02" !important;
  }

  .home-body .keys-grid-secondary .key-card:nth-child(3)::before {
    content: "03" !important;
  }

  .home-body .keys-grid-secondary .key-card:not(:last-child)::after {
    content: "" !important;
    position: absolute !important;
    left: 58px !important;
    right: 0 !important;
    bottom: 0 !important;
    display: block !important;
    width: auto !important;
    height: 1px !important;
    background: linear-gradient(90deg, rgba(246, 243, 234, 0.1), transparent 78%) !important;
    pointer-events: none !important;
  }

  .home-body .keys-grid-secondary .key-card h3 {
    grid-column: 2 !important;
    max-width: 20ch !important;
    margin: 0 !important;
    color: #f6f3ea !important;
    font-family: "Inter", system-ui, sans-serif !important;
    font-size: clamp(1.02rem, 4.7vw, 1.28rem) !important;
    font-weight: 900 !important;
    line-height: 1.15 !important;
    letter-spacing: 0 !important;
    text-align: left !important;
    text-wrap: balance !important;
  }

  .home-body .keys-grid-secondary .key-card h3::before {
    display: none !important;
    content: none !important;
  }

  .home-body .keys-grid-secondary .key-card p {
    grid-column: 2 !important;
    max-width: 30ch !important;
    margin: 9px 0 0 !important;
    color: rgba(246, 243, 234, 0.58) !important;
    font-size: 0.92rem !important;
    line-height: 1.58 !important;
    text-align: left !important;
  }
}

@media (max-width: 380px) {
  .home-body .keys-extra-title {
    max-width: 32ch !important;
    margin-left: 0 !important;
  }

  .home-body .keys-grid-secondary {
    padding-left: 0 !important;
  }

  .home-body .keys-grid-secondary .key-card {
    grid-template-columns: 38px minmax(0, 1fr) !important;
    column-gap: 14px !important;
    padding-left: 0 !important;
  }

  .home-body .keys-grid-secondary .key-card:not(:last-child)::after {
    left: 52px !important;
  }
}

/* Final mobile practical composition: centered, simple, distinct, no boxes. */
@media (max-width: 760px) {
  .home-body .keys-extra {
    margin-top: 20px !important;
    padding-top: 36px !important;
    border-top: 1px solid rgba(103, 232, 249, 0.2) !important;
  }

  .home-body .keys-extra::before {
    left: 50% !important;
    width: min(62%, 230px) !important;
    transform: translateX(-50%) !important;
    background: linear-gradient(90deg, transparent, #67e8f9, transparent) !important;
  }

  .home-body .keys-extra-title {
    max-width: 12.5ch !important;
    margin: 0 auto 34px !important;
    color: #f6f3ea !important;
    font-family: "Cormorant Garamond", "Playfair Display", Georgia, serif !important;
    font-size: clamp(2rem, 8.5vw, 2.7rem) !important;
    font-weight: 800 !important;
    line-height: 0.96 !important;
    letter-spacing: 0 !important;
    text-align: center !important;
    text-transform: none !important;
    text-wrap: balance !important;
  }

  .home-body .keys-grid-secondary {
    display: grid !important;
    gap: 0 !important;
    padding: 0 !important;
    background: transparent !important;
  }

  .home-body .keys-grid-secondary .key-card {
    display: block !important;
    max-width: 340px !important;
    margin: 0 auto !important;
    padding: 0 0 38px !important;
    text-align: center !important;
  }

  .home-body .keys-grid-secondary .key-card:not(:last-child) {
    margin-bottom: 32px !important;
  }

  .home-body .keys-grid-secondary .key-card::before {
    position: static !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: auto !important;
    height: auto !important;
    min-width: 58px !important;
    margin: 0 auto 16px !important;
    padding: 0 0 9px !important;
    border: 0 !important;
    border-bottom: 1px solid rgba(103, 232, 249, 0.58) !important;
    background: transparent !important;
    box-shadow: none !important;
    color: #67e8f9 !important;
    font-family: "Inter", system-ui, sans-serif !important;
    font-size: 0.72rem !important;
    font-weight: 950 !important;
    line-height: 1 !important;
    letter-spacing: 0.18em !important;
    text-align: center !important;
    text-shadow: 0 0 18px rgba(103, 232, 249, 0.24) !important;
  }

  .home-body .keys-grid-secondary .key-card:nth-child(1)::before {
    content: "01" !important;
  }

  .home-body .keys-grid-secondary .key-card:nth-child(2)::before {
    content: "02" !important;
  }

  .home-body .keys-grid-secondary .key-card:nth-child(3)::before {
    content: "03" !important;
  }

  .home-body .keys-grid-secondary .key-card:not(:last-child)::after {
    left: 50% !important;
    right: auto !important;
    bottom: 0 !important;
    width: min(68%, 240px) !important;
    transform: translateX(-50%) !important;
    background: linear-gradient(90deg, transparent, rgba(246, 243, 234, 0.12), transparent) !important;
  }

  .home-body .keys-grid-secondary .key-card h3 {
    display: block !important;
    max-width: 14ch !important;
    margin: 0 auto !important;
    color: #f6f3ea !important;
    font-family: "Cormorant Garamond", "Playfair Display", Georgia, serif !important;
    font-size: clamp(2.15rem, 9vw, 2.95rem) !important;
    font-weight: 800 !important;
    line-height: 0.95 !important;
    letter-spacing: 0 !important;
    text-align: center !important;
    text-wrap: balance !important;
  }

  .home-body .keys-grid-secondary .key-card h3::before {
    display: none !important;
    content: none !important;
  }

  .home-body .keys-grid-secondary .key-card p {
    display: block !important;
    max-width: 30ch !important;
    margin: 16px auto 0 !important;
    color: rgba(246, 243, 234, 0.62) !important;
    font-size: 0.96rem !important;
    line-height: 1.58 !important;
    text-align: center !important;
  }
}

@media (max-width: 380px) {
  .home-body .keys-extra-title {
    max-width: 12.5ch !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .home-body .keys-grid-secondary .key-card {
    max-width: 315px !important;
  }
}

/* Final mobile lead form: clearer, calmer and easier to complete. */
@media (max-width: 640px) {
  .home-body .form-section {
    width: min(100% - 22px, 430px) !important;
    padding-top: 46px !important;
    padding-bottom: 44px !important;
  }

  .home-body .form-section .lead-form,
  .home-body .form-section .lead-form[data-current-step="1"],
  .home-body .form-section .lead-form[data-current-step="2"] {
    width: 100% !important;
    max-width: 430px !important;
    margin-inline: auto !important;
    padding: 20px 16px 18px !important;
    border: 1px solid rgba(103, 232, 249, 0.16) !important;
    border-radius: 18px !important;
    background:
      radial-gradient(420px 180px at 50% 0%, rgba(103, 232, 249, 0.09), transparent 72%),
      linear-gradient(180deg, rgba(246, 243, 234, 0.045), rgba(246, 243, 234, 0.012)),
      rgba(3, 8, 11, 0.9) !important;
    box-shadow:
      0 22px 58px rgba(0, 0, 0, 0.36),
      inset 0 1px 0 rgba(255, 255, 255, 0.055) !important;
    overflow: hidden !important;
  }

  .home-body .form-section .lead-form::before,
  .home-body .form-section .lead-form::after {
    display: none !important;
    content: none !important;
  }

  .home-body .form-header {
    display: grid !important;
    gap: 8px !important;
    margin: 0 0 20px !important;
    text-align: center !important;
  }

  .home-body .form-header span:first-child {
    justify-self: center !important;
    color: #67e8f9 !important;
    font-size: 0.68rem !important;
    font-weight: 950 !important;
    letter-spacing: 0.16em !important;
  }

  .home-body .form-header h2,
  .lead-form[data-current-step="2"] .form-header h2 {
    max-width: 13ch !important;
    margin: 0 auto !important;
    color: #f6f3ea !important;
    font-family: "Cormorant Garamond", "Playfair Display", Georgia, serif !important;
    font-size: clamp(2.05rem, 9vw, 2.72rem) !important;
    font-weight: 800 !important;
    line-height: 0.94 !important;
    letter-spacing: 0 !important;
    text-wrap: balance !important;
  }

  .form-progress {
    grid-template-columns: 42px minmax(22px, 1fr) 42px minmax(22px, 1fr) 42px !important;
    max-width: 286px !important;
    margin: 0 auto 24px !important;
  }

  .form-progress-line {
    height: 1px !important;
    margin-top: 16px !important;
    margin-inline: -5px !important;
    background: rgba(246, 243, 234, 0.12) !important;
  }

  .form-step-dot {
    gap: 6px !important;
  }

  .form-step-dot strong {
    width: 34px !important;
    height: 34px !important;
    border-color: rgba(103, 232, 249, 0.24) !important;
    background: rgba(103, 232, 249, 0.055) !important;
    font-size: 0.82rem !important;
  }

  .form-step-dot.active strong,
  .form-step-dot.complete strong {
    background: #67e8f9 !important;
    color: #031014 !important;
    box-shadow: 0 0 20px rgba(103, 232, 249, 0.28) !important;
  }

  .form-step-dot span {
    display: block !important;
    max-width: 54px !important;
    color: rgba(246, 243, 234, 0.58) !important;
    font-size: 0.5rem !important;
    font-weight: 850 !important;
    line-height: 1.08 !important;
    letter-spacing: 0.04em !important;
  }

  .form-step.active,
  .lead-form[data-current-step="2"] .form-step[data-form-step="2"].active {
    display: grid !important;
    gap: 14px !important;
  }

  .form-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 13px !important;
  }

  .home-body .form-section .input-wrap {
    gap: 8px !important;
  }

  .home-body .form-section .input-wrap span {
    color: rgba(246, 243, 234, 0.74) !important;
    font-size: 0.7rem !important;
    font-weight: 900 !important;
    line-height: 1 !important;
    letter-spacing: 0.08em !important;
  }

  .home-body .form-section .input-wrap input,
  .home-body .form-section .input-wrap select {
    width: 100% !important;
    min-height: 54px !important;
    border: 1px solid rgba(246, 243, 234, 0.13) !important;
    border-radius: 12px !important;
    padding: 13px 14px !important;
    background: rgba(0, 0, 0, 0.22) !important;
    color: #f6f3ea !important;
    font-size: 1rem !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04) !important;
  }

  .home-body .form-section .input-wrap input::placeholder {
    color: rgba(246, 243, 234, 0.34) !important;
  }

  .home-body .form-section .input-wrap input:focus,
  .home-body .form-section .input-wrap select:focus {
    border-color: rgba(103, 232, 249, 0.58) !important;
    background: rgba(3, 13, 17, 0.78) !important;
    box-shadow: 0 0 0 3px rgba(103, 232, 249, 0.12) !important;
    transform: none !important;
  }

  .phone-field {
    display: grid !important;
    grid-template-columns: 112px minmax(0, 1fr) !important;
    gap: 9px !important;
  }

  .phone-code-group {
    min-width: 0 !important;
  }

  .phone-code-custom.visible {
    margin-top: 9px !important;
  }

  .form-next,
  .home-body .form-section .btn-primary {
    width: 100% !important;
    min-height: 56px !important;
    margin-top: 4px !important;
    border: 0 !important;
    border-radius: 12px !important;
    background: linear-gradient(135deg, #f6f3ea 0%, #dcfbff 52%, #67e8f9 100%) !important;
    color: #031014 !important;
    font-size: 0.82rem !important;
    font-weight: 950 !important;
    letter-spacing: 0.05em !important;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.32) !important;
  }

  .lead-form[data-current-step="2"] {
    max-width: 430px !important;
  }

  .lead-form[data-current-step="2"] .form-step[data-form-step="2"].active {
    grid-template-columns: 1fr !important;
    gap: 13px !important;
    max-width: 100% !important;
  }

  .lead-form[data-current-step="2"] .choice-group {
    display: grid !important;
    gap: 11px !important;
    padding: 0 0 16px !important;
    border: 0 !important;
    border-bottom: 1px solid rgba(246, 243, 234, 0.09) !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  .lead-form[data-current-step="2"] .choice-group::after {
    display: none !important;
    content: none !important;
  }

  .lead-form[data-current-step="2"] .choice-group > p {
    display: block !important;
    margin: 0 !important;
    color: #f6f3ea !important;
    font-family: "Inter", system-ui, sans-serif !important;
    font-size: 0.84rem !important;
    font-weight: 900 !important;
    line-height: 1.24 !important;
    letter-spacing: 0 !important;
    text-transform: none !important;
  }

  .lead-form[data-current-step="2"] .choice-group > p::before {
    display: none !important;
    content: none !important;
  }

  .lead-form[data-current-step="2"] .choice-grid,
  .lead-form[data-current-step="2"] .choice-group:nth-of-type(3) .choice-grid,
  .lead-form[data-current-step="2"] .choice-grid-goals {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 8px !important;
  }

  .lead-form[data-current-step="2"] .choice-grid-goals {
    grid-template-columns: 1fr !important;
  }

  .lead-form[data-current-step="2"] .choice-grid label {
    min-width: 0 !important;
  }

  .lead-form[data-current-step="2"] .choice-grid span {
    justify-content: center !important;
    min-height: 46px !important;
    padding: 10px 9px !important;
    border: 1px solid rgba(246, 243, 234, 0.13) !important;
    border-radius: 12px !important;
    background: rgba(0, 0, 0, 0.2) !important;
    color: rgba(246, 243, 234, 0.72) !important;
    font-size: 0.82rem !important;
    font-weight: 850 !important;
    line-height: 1.12 !important;
    text-align: center !important;
  }

  .lead-form[data-current-step="2"] .choice-grid span::before {
    display: none !important;
    content: none !important;
  }

  .lead-form[data-current-step="2"] .choice-grid input:checked + span {
    border-color: rgba(103, 232, 249, 0.68) !important;
    background: rgba(103, 232, 249, 0.13) !important;
    color: #f6f3ea !important;
    box-shadow: 0 0 0 1px rgba(103, 232, 249, 0.1) inset !important;
  }

  .lead-form[data-current-step="2"] .choice-grid input:checked + span::after {
    right: 8px !important;
    top: 8px !important;
    width: 16px !important;
    height: 16px !important;
    font-size: 0.62rem !important;
  }

  .lead-form[data-current-step="2"] .form-actions {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 10px !important;
    margin-top: 2px !important;
  }

  .lead-form[data-current-step="2"] .form-back {
    order: 2 !important;
    justify-self: stretch !important;
    min-height: 46px !important;
    border: 1px solid rgba(246, 243, 234, 0.12) !important;
    border-radius: 12px !important;
    color: rgba(246, 243, 234, 0.68) !important;
    background: rgba(255, 255, 255, 0.025) !important;
  }

  .lead-form[data-current-step="2"] .btn-primary {
    order: 1 !important;
    justify-self: stretch !important;
  }

  .home-body .form-section .form-error {
    margin-top: 10px !important;
    text-align: center !important;
    font-size: 0.82rem !important;
  }

  .home-body .form-section .form-privacy {
    max-width: 28ch !important;
    margin: 14px auto 0 !important;
    color: rgba(246, 243, 234, 0.42) !important;
    font-size: 0.72rem !important;
    line-height: 1.45 !important;
    text-align: center !important;
  }
}

@media (max-width: 380px) {
  .phone-field {
    grid-template-columns: 104px minmax(0, 1fr) !important;
  }

  .lead-form[data-current-step="2"] .choice-grid,
  .lead-form[data-current-step="2"] .choice-group:nth-of-type(3) .choice-grid {
    grid-template-columns: 1fr !important;
  }
}

/* Professional emoji accents for learning blocks. */
.home-body .learning-icon,
.home-body .practical-icon {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  border: 1px solid rgba(103, 232, 249, 0.2);
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 18%, rgba(103, 232, 249, 0.16), transparent 62%),
    rgba(103, 232, 249, 0.055);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.055), 0 0 24px rgba(103, 232, 249, 0.12);
  font-size: 1.02rem;
  line-height: 1;
  filter: saturate(0.92);
}

.home-body .practical-icon {
  margin-bottom: 14px;
}

@media (min-width: 761px) {
  .home-body .keys-grid-premium .key-head {
    grid-template-columns: auto auto minmax(0, 1fr) !important;
    align-items: center !important;
    gap: 12px !important;
  }

  .home-body .keys-grid-premium .learning-icon {
    margin-top: -1px;
  }

  .home-body .keys-grid-secondary .practical-icon {
    grid-column: 2 !important;
    grid-row: 1 !important;
    width: 30px !important;
    height: 30px !important;
    margin: 0 0 8px !important;
    font-size: 0.92rem !important;
  }

  .home-body .keys-grid-secondary .key-card h3 {
    grid-row: 2 !important;
  }

  .home-body .keys-grid-secondary .key-card p {
    grid-row: 3 !important;
  }
}

@media (max-width: 760px) {
  .home-body .keys-grid-premium .key-head {
    align-items: center !important;
  }

  .home-body .learning-icon {
    width: 30px !important;
    height: 30px !important;
    font-size: 0.92rem !important;
  }

  .home-body .keys-grid-secondary .practical-icon {
    width: 38px !important;
    height: 38px !important;
    margin: 0 auto 14px !important;
    font-size: 1.05rem !important;
  }
}

@media (max-width: 380px) {
  .home-body .learning-icon {
    width: 28px !important;
    height: 28px !important;
    font-size: 0.86rem !important;
  }

  .home-body .keys-grid-secondary .practical-icon {
    width: 36px !important;
    height: 36px !important;
  }
}

/* Professional emoji accents for the mentor proof list. */
.home-body .mentor-list li span {
  display: inline-grid !important;
  place-items: center !important;
  color: #f6f3ea !important;
  font-size: 0.78rem !important;
  line-height: 1 !important;
  filter: saturate(0.9);
}

@media (max-width: 760px) {
  .home-body .mentor-list li {
    padding-left: 38px !important;
  }

  .home-body .mentor-list li span {
    top: 14px !important;
    width: 24px !important;
    height: 24px !important;
    border-color: rgba(103, 232, 249, 0.22) !important;
    background:
      radial-gradient(circle at 50% 18%, rgba(103, 232, 249, 0.16), transparent 62%),
      rgba(103, 232, 249, 0.055) !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.055), 0 0 20px rgba(103, 232, 249, 0.1) !important;
    font-size: 0.84rem !important;
  }
}

/* Simple stylish form reset: clean, readable, no over-premium effects. */
.home-body .form-section {
  width: min(100% - 48px, 920px) !important;
}

.home-body .form-section .lead-form,
.home-body .form-section .lead-form[data-current-step="1"],
.home-body .form-section .lead-form[data-current-step="2"] {
  max-width: 760px !important;
  margin-inline: auto !important;
  padding: clamp(22px, 3vw, 32px) !important;
  border: 1px solid rgba(246, 243, 234, 0.12) !important;
  border-radius: 8px !important;
  background: rgba(5, 10, 13, 0.78) !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

.home-body .form-section .lead-form::before,
.home-body .form-section .lead-form::after {
  display: none !important;
  content: none !important;
}

.home-body .lead-form.form-entrance-play {
  animation: none !important;
}

.home-body .form-header {
  gap: 8px !important;
  margin-bottom: 22px !important;
  text-align: center !important;
}

.home-body .form-header span:first-child {
  color: #67e8f9 !important;
  font-family: "Inter", system-ui, sans-serif !important;
  font-size: 0.72rem !important;
  font-weight: 850 !important;
  letter-spacing: 0.12em !important;
}

.home-body .form-header h2,
.home-body .lead-form[data-current-step="2"] .form-header h2 {
  max-width: 18ch !important;
  margin-inline: auto !important;
  color: #f6f3ea !important;
  font-family: "Inter", system-ui, sans-serif !important;
  font-size: clamp(1.55rem, 3.2vw, 2.1rem) !important;
  font-weight: 850 !important;
  line-height: 1.08 !important;
  letter-spacing: 0 !important;
}

.home-body .form-progress {
  max-width: 340px !important;
  margin: 0 auto 24px !important;
}

.home-body .form-progress-line {
  height: 1px !important;
  background: rgba(246, 243, 234, 0.16) !important;
  box-shadow: none !important;
}

.home-body .form-progress-line::after {
  background: #67e8f9 !important;
  box-shadow: none !important;
}

.home-body .form-step-dot strong {
  border-radius: 999px !important;
  border: 1px solid rgba(246, 243, 234, 0.18) !important;
  background: rgba(255, 255, 255, 0.035) !important;
  color: rgba(246, 243, 234, 0.7) !important;
  box-shadow: none !important;
}

.home-body .form-step-dot.active strong,
.home-body .form-step-dot.complete strong {
  border-color: #67e8f9 !important;
  background: #67e8f9 !important;
  color: #031014 !important;
  box-shadow: none !important;
}

.home-body .form-step-dot span {
  color: rgba(246, 243, 234, 0.48) !important;
  font-weight: 750 !important;
}

.home-body .form-grid {
  gap: 14px !important;
}

.home-body .form-section .input-wrap {
  gap: 8px !important;
}

.home-body .form-section .input-wrap span,
.home-body .lead-form[data-current-step="2"] .choice-group > p {
  color: rgba(246, 243, 234, 0.72) !important;
  font-family: "Inter", system-ui, sans-serif !important;
  font-size: 0.76rem !important;
  font-weight: 800 !important;
  line-height: 1.2 !important;
  letter-spacing: 0.04em !important;
  text-transform: none !important;
}

.home-body .form-section .input-wrap input,
.home-body .form-section .input-wrap select {
  min-height: 52px !important;
  border: 1px solid rgba(246, 243, 234, 0.13) !important;
  border-radius: 8px !important;
  background: rgba(255, 255, 255, 0.035) !important;
  color: #f6f3ea !important;
  box-shadow: none !important;
}

.home-body .form-section .input-wrap input:focus,
.home-body .form-section .input-wrap select:focus {
  border-color: rgba(103, 232, 249, 0.72) !important;
  background: rgba(255, 255, 255, 0.055) !important;
  box-shadow: 0 0 0 3px rgba(103, 232, 249, 0.1) !important;
  transform: none !important;
}

.home-body .form-section .btn-primary,
.home-body .form-next {
  min-height: 52px !important;
  border: 1px solid #67e8f9 !important;
  border-radius: 8px !important;
  background: #67e8f9 !important;
  color: #031014 !important;
  box-shadow: none !important;
}

.home-body .form-section .btn-primary::before,
.home-body .form-section .btn-primary::after,
.home-body .form-next::before,
.home-body .form-next::after {
  display: none !important;
  content: none !important;
}

.home-body .lead-form[data-current-step="2"] {
  max-width: 860px !important;
}

.home-body .lead-form[data-current-step="2"] .form-step[data-form-step="2"].active {
  max-width: 760px !important;
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 18px !important;
}

.home-body .lead-form[data-current-step="2"] .choice-group {
  gap: 10px !important;
  padding: 0 0 16px !important;
  border: 0 !important;
  border-bottom: 1px solid rgba(246, 243, 234, 0.1) !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.home-body .lead-form[data-current-step="2"] .choice-group::after,
.home-body .lead-form[data-current-step="2"] .choice-group > p::before,
.home-body .lead-form[data-current-step="2"] .choice-grid span::before {
  display: none !important;
  content: none !important;
}

.home-body .lead-form[data-current-step="2"] .choice-grid,
.home-body .lead-form[data-current-step="2"] .choice-group:nth-of-type(3) .choice-grid,
.home-body .lead-form[data-current-step="2"] .choice-grid-goals {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 8px !important;
}

.home-body .lead-form[data-current-step="2"] .choice-grid span {
  justify-content: center !important;
  min-height: 44px !important;
  border: 1px solid rgba(246, 243, 234, 0.13) !important;
  border-radius: 8px !important;
  background: rgba(255, 255, 255, 0.035) !important;
  color: rgba(246, 243, 234, 0.72) !important;
  font-size: 0.82rem !important;
  font-weight: 750 !important;
  text-align: center !important;
  box-shadow: none !important;
}

.home-body .lead-form[data-current-step="2"] .choice-grid input:checked + span {
  border-color: #67e8f9 !important;
  background: rgba(103, 232, 249, 0.12) !important;
  color: #f6f3ea !important;
  box-shadow: none !important;
}

.home-body .lead-form[data-current-step="2"] .form-actions {
  grid-column: 1 / -1 !important;
  display: grid !important;
  grid-template-columns: auto minmax(260px, 1fr) !important;
  gap: 12px !important;
  align-items: center !important;
}

.home-body .lead-form[data-current-step="2"] .form-back {
  min-height: 48px !important;
  border: 1px solid rgba(246, 243, 234, 0.14) !important;
  border-radius: 8px !important;
  background: transparent !important;
  color: rgba(246, 243, 234, 0.72) !important;
}

.home-body .form-section .form-privacy {
  color: rgba(246, 243, 234, 0.44) !important;
}

@media (max-width: 640px) {
  .home-body .form-section {
    width: min(100% - 22px, 430px) !important;
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }

  .home-body .form-section .lead-form,
  .home-body .form-section .lead-form[data-current-step="1"],
  .home-body .form-section .lead-form[data-current-step="2"] {
    padding: 18px 14px !important;
    border-radius: 8px !important;
  }

  .home-body .form-header h2,
  .home-body .lead-form[data-current-step="2"] .form-header h2 {
    max-width: 15ch !important;
    font-size: clamp(1.45rem, 6.8vw, 1.92rem) !important;
    line-height: 1.08 !important;
  }

  .home-body .phone-field {
    grid-template-columns: 106px minmax(0, 1fr) !important;
    gap: 8px !important;
  }

  .home-body .lead-form[data-current-step="2"] .form-step[data-form-step="2"].active {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }

  .home-body .lead-form[data-current-step="2"] .choice-grid,
  .home-body .lead-form[data-current-step="2"] .choice-group:nth-of-type(3) .choice-grid,
  .home-body .lead-form[data-current-step="2"] .choice-grid-goals {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .home-body .lead-form[data-current-step="2"] .choice-grid-goals {
    grid-template-columns: 1fr !important;
  }

  .home-body .lead-form[data-current-step="2"] .form-actions {
    grid-template-columns: 1fr !important;
  }

  .home-body .lead-form[data-current-step="2"] .btn-primary {
    order: 1 !important;
  }

  .home-body .lead-form[data-current-step="2"] .form-back {
    order: 2 !important;
  }
}

@media (max-width: 380px) {
  .home-body .phone-field {
    grid-template-columns: 1fr !important;
  }

  .home-body .lead-form[data-current-step="2"] .choice-grid,
  .home-body .lead-form[data-current-step="2"] .choice-group:nth-of-type(3) .choice-grid {
    grid-template-columns: 1fr !important;
  }
}

/* Mentor list back to subtle dots, no emojis in "Quien soy". */
.home-body .mentor-list li span {
  color: transparent !important;
  font-size: 0 !important;
}

@media (max-width: 760px) {
  .home-body .mentor-list li {
    padding-left: 34px !important;
  }

  .home-body .mentor-list li span {
    top: 18px !important;
    width: 14px !important;
    height: 14px !important;
    border: 1px solid rgba(103, 232, 249, 0.3) !important;
    border-radius: 50% !important;
    background:
      radial-gradient(circle, rgba(103, 232, 249, 0.55), rgba(34, 211, 238, 0.08) 54%, transparent 72%),
      rgba(34, 211, 238, 0.045) !important;
    box-shadow: 0 0 14px rgba(103, 232, 249, 0.1) !important;
  }
}

/* Mobile contacts: lighter content density, same actions. */
@media (max-width: 760px) {
  .home-body .contact-section .section-heading h2 {
    max-width: 10.5ch !important;
    margin-inline: auto !important;
    font-size: clamp(2.6rem, 13vw, 4rem) !important;
    line-height: 0.92 !important;
  }

  .home-body .contact-grid {
    gap: 0 !important;
    margin-top: 26px !important;
    border-top: 1px solid rgba(103, 232, 249, 0.16) !important;
    border-bottom: 1px solid rgba(246, 243, 234, 0.08) !important;
  }

  .home-body .contact-card {
    display: grid !important;
    grid-template-columns: 38px minmax(0, 1fr) auto !important;
    grid-template-areas:
      "icon title button"
      "icon text button" !important;
    align-items: center !important;
    column-gap: 14px !important;
    row-gap: 4px !important;
    min-height: 0 !important;
    padding: 18px 0 !important;
    border: 0 !important;
    border-bottom: 1px solid rgba(246, 243, 234, 0.075) !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  .home-body .contact-card:last-child {
    border-bottom: 0 !important;
  }

  .home-body .contact-card::before {
    grid-area: icon !important;
    width: 34px !important;
    height: 34px !important;
    margin: 0 !important;
    border-color: rgba(103, 232, 249, 0.2) !important;
    background: rgba(103, 232, 249, 0.055) !important;
    box-shadow: none !important;
    font-size: 0.92rem !important;
  }

  .home-body .contact-card::after {
    display: none !important;
    content: none !important;
  }

  .home-body .contact-card h3 {
    grid-area: title !important;
    margin: 0 !important;
    font-size: 1.02rem !important;
    line-height: 1.1 !important;
    text-align: left !important;
  }

  .home-body .contact-card p {
    grid-area: text !important;
    max-width: none !important;
    margin: 0 !important;
    color: rgba(246, 243, 234, 0.5) !important;
    font-size: 0.78rem !important;
    line-height: 1.35 !important;
    text-align: left !important;
  }

  .home-body .contact-card .btn-secondary {
    grid-area: button !important;
    align-self: center !important;
    justify-self: end !important;
    width: 42px !important;
    min-width: 42px !important;
    height: 42px !important;
    min-height: 42px !important;
    padding: 0 !important;
    border: 1px solid rgba(103, 232, 249, 0.18) !important;
    border-radius: 999px !important;
    background: rgba(103, 232, 249, 0.075) !important;
    color: #67e8f9 !important;
  }

  .home-body .contact-card .btn-icon,
  .home-body .contact-card .contact-button-label {
    display: none !important;
  }

  .home-body .contact-card .btn-secondary::after {
    content: "→" !important;
    position: static !important;
    display: grid !important;
    width: 100% !important;
    height: 100% !important;
    min-width: 0 !important;
    flex: none !important;
    margin: 0 !important;
    place-items: center !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    color: currentColor !important;
    font-size: 1.1rem !important;
    opacity: 1 !important;
  }
}

@media (max-width: 380px) {
  .home-body .contact-card p {
    display: none !important;
  }

  .home-body .contact-card {
    grid-template-areas: "icon title button" !important;
    padding-block: 16px !important;
  }
}

/* Final mobile hero title: compact premium composition. */
@media (max-width: 640px) {
  .home-body .hero-capture-container .hero-title,
  .home-body .hero-title-animated {
    position: relative !important;
    max-width: min(13.8ch, calc(100vw - 34px)) !important;
    font-size: clamp(2.05rem, 8.6vw, 2.72rem) !important;
    line-height: 0.9 !important;
    letter-spacing: 0 !important;
    text-align: center !important;
    text-wrap: balance;
    text-shadow:
      0 1px 0 rgba(255, 255, 255, 0.16),
      0 18px 46px rgba(0, 0, 0, 0.72),
      0 0 34px rgba(103, 232, 249, 0.08) !important;
  }

  .home-body .hero-title-animated::before {
    content: "" !important;
    position: absolute !important;
    inset: 10% -8% 4% !important;
    z-index: -1 !important;
    border-radius: 50% !important;
    background:
      radial-gradient(circle at 50% 35%, rgba(103, 232, 249, 0.14), transparent 54%),
      radial-gradient(circle at 50% 70%, rgba(34, 211, 238, 0.09), transparent 58%) !important;
    filter: blur(8px) !important;
    opacity: 0.92 !important;
    pointer-events: none !important;
  }

  .home-body .hero-title-animated .hero-line,
  .home-body .hero-left.visible .hero-title-animated .hero-line {
    display: block !important;
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    animation: none !important;
    will-change: auto !important;
  }

  .home-body .hero-title-animated .gradient-text {
    display: inline !important;
    background:
      linear-gradient(115deg, #f8f5ed 0%, #c9fbff 18%, #67e8f9 46%, #22d3ee 76%, #ffffff 100%) !important;
    background-size: 160% 100% !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    filter: drop-shadow(0 0 18px rgba(34, 211, 238, 0.26)) !important;
  }

  .home-body .hero-title-animated .hero-line:nth-child(1) {
    font-size: 0.9em !important;
  }

  .home-body .hero-title-animated .hero-line:nth-child(2),
  .home-body .hero-title-animated .hero-line:nth-child(3),
  .home-body .hero-title-animated .hero-line:nth-child(4),
  .home-body .hero-title-animated .hero-line:nth-child(5) {
    margin-top: -0.02em !important;
  }

  .home-body .hero-title-animated .hero-line:nth-child(6) {
    margin-top: 0.06em !important;
    font-size: 1.1em !important;
    line-height: 0.82 !important;
  }

  .home-body .hero-ai-mark {
    position: relative !important;
    display: inline-block !important;
    padding: 0 0.08em 0.04em !important;
  }

  .home-body .hero-ai-mark::after {
    content: "" !important;
    position: absolute !important;
    left: 8% !important;
    right: 8% !important;
    bottom: 0.03em !important;
    height: 0.08em !important;
    border-radius: 999px !important;
    background: linear-gradient(90deg, transparent, rgba(103, 232, 249, 0.72), transparent) !important;
    box-shadow: 0 0 18px rgba(103, 232, 249, 0.24) !important;
  }
}

/* Final mentor before/after photo treatment. */
.home-body .mentor-proof-strip {
  position: relative !important;
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: clamp(12px, 2.4vw, 20px) !important;
  width: min(640px, 100%) !important;
  margin: 0 auto !important;
  padding: clamp(8px, 1.4vw, 12px) !important;
  isolation: isolate !important;
}

.home-body .mentor-proof-strip::before {
  content: "" !important;
  position: absolute !important;
  inset: 12% 7% 8% !important;
  z-index: -1 !important;
  border: 1px solid rgba(103, 232, 249, 0.1) !important;
  border-radius: 8px !important;
  background:
    radial-gradient(260px 190px at 72% 18%, rgba(103, 232, 249, 0.13), transparent 68%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012)) !important;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.34) !important;
}

.home-body .mentor-proof-strip figure,
.home-body .mentor-proof-strip figure:nth-child(1),
.home-body .mentor-proof-strip figure:nth-child(2) {
  position: relative !important;
  overflow: hidden !important;
  margin: 0 !important;
  padding: 7px !important;
  border: 1px solid rgba(246, 243, 234, 0.11) !important;
  border-radius: 8px !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.018)),
    rgba(4, 8, 10, 0.88) !important;
  box-shadow:
    0 24px 66px rgba(0, 0, 0, 0.36),
    inset 0 1px 0 rgba(255, 255, 255, 0.075) !important;
}

.home-body .mentor-proof-strip figure:nth-child(1) {
  transform: rotate(-1.8deg) translateY(10px) !important;
}

.home-body .mentor-proof-strip figure:nth-child(2) {
  transform: rotate(1.8deg) translateY(-6px) !important;
}

.home-body .mentor-proof-strip figure::after {
  content: "" !important;
  position: absolute !important;
  inset: 7px !important;
  border-radius: 6px !important;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0) 58%, rgba(0, 0, 0, 0.38) 100%),
    linear-gradient(135deg, rgba(103, 232, 249, 0.12), transparent 34%, transparent 70%, rgba(246, 243, 234, 0.08)) !important;
  pointer-events: none !important;
}

.home-body .mentor-proof-strip img,
.home-body .mentor-proof-strip figure:nth-child(1) img,
.home-body .mentor-proof-strip figure:nth-child(2) img {
  width: 100% !important;
  aspect-ratio: 4 / 5 !important;
  max-height: 420px !important;
  border: 1px solid rgba(103, 232, 249, 0.12) !important;
  border-radius: 6px !important;
  object-fit: cover !important;
  object-position: center top !important;
  box-shadow: none !important;
}

.home-body .mentor-proof-strip .mentor-stage-before {
  filter: saturate(0.72) contrast(1.08) brightness(0.9) !important;
}

.home-body .mentor-proof-strip .mentor-stage-after {
  filter: saturate(1.08) contrast(1.06) brightness(1.04) !important;
}

.home-body .mentor-proof-strip span {
  position: absolute !important;
  top: 16px !important;
  left: 16px !important;
  z-index: 2 !important;
  display: inline-flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 3px !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 7px 10px !important;
  border: 1px solid rgba(103, 232, 249, 0.22) !important;
  border-radius: 8px !important;
  background: rgba(3, 7, 9, 0.76) !important;
  color: #67e8f9 !important;
  line-height: 1 !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
}

.home-body .mentor-proof-strip span em,
.home-body .mentor-proof-strip span strong {
  display: block !important;
  font-style: normal !important;
  white-space: nowrap !important;
}

.home-body .mentor-proof-strip span em {
  color: #67e8f9 !important;
  font-size: 0.62rem !important;
  font-weight: 900 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
}

.home-body .mentor-proof-strip span strong {
  color: #f6f3ea !important;
  font-size: 0.74rem !important;
  font-weight: 950 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

@media (max-width: 640px) {
  .home-body .mentor-section-clean {
    padding-top: 42px !important;
  }

  .home-body .mentor-section-clean .section-heading {
    margin-bottom: 18px !important;
  }

  .home-body .mentor-proof-strip {
    width: min(100%, 294px) !important;
    gap: 7px !important;
    padding: 7px !important;
  }

  .home-body .mentor-proof-strip::before {
    inset: 18% 2% 6% !important;
  }

  .home-body .mentor-proof-strip figure,
  .home-body .mentor-proof-strip figure:nth-child(1),
  .home-body .mentor-proof-strip figure:nth-child(2) {
    padding: 5px !important;
  }

  .home-body .mentor-proof-strip figure:nth-child(1) {
    transform: rotate(-1.2deg) translateY(6px) !important;
  }

  .home-body .mentor-proof-strip figure:nth-child(2) {
    transform: rotate(1.2deg) translateY(-3px) !important;
  }

  .home-body .mentor-proof-strip img,
  .home-body .mentor-proof-strip figure:nth-child(1) img,
  .home-body .mentor-proof-strip figure:nth-child(2) img {
    aspect-ratio: 3 / 4 !important;
    max-height: 172px !important;
  }

  .home-body .mentor-proof-strip span {
    top: 11px !important;
    left: 11px !important;
    gap: 2px !important;
    padding: 6px 7px !important;
  }

  .home-body .mentor-proof-strip span em {
    font-size: 0.5rem !important;
    letter-spacing: 0.07em !important;
  }

  .home-body .mentor-proof-strip span strong {
    font-size: 0.58rem !important;
  }
}

/* Final mobile density pass: quieter learning cards and compact section titles. */
@media (max-width: 640px) {
  .home-body .keys-section,
  .home-body .faq-section,
  .home-body .contact-section,
  .home-body .form-section {
    padding-top: 28px !important;
    padding-bottom: 28px !important;
  }

  .home-body .mentor-section-clean {
    padding-top: 34px !important;
    padding-bottom: 28px !important;
  }

  .home-body .section-heading,
  .home-body .mentor-section-clean .section-heading,
  .home-body .keys-section .section-heading,
  .home-body .faq-section .section-heading,
  .home-body .contact-section .section-heading {
    max-width: 100% !important;
    margin: 0 auto 14px !important;
    text-align: center !important;
  }

  .home-body .section-heading .eyebrow,
  .home-body .section-heading .eyebrow.centered {
    justify-content: center !important;
    margin-bottom: 7px !important;
    font-size: 0.62rem !important;
    line-height: 1.1 !important;
    letter-spacing: 0.08em !important;
  }

  .home-body .section-heading .eyebrow span {
    width: 26px !important;
  }

  .home-body .section-heading h2,
  .home-body .mentor-section-clean .section-heading h2,
  .home-body .keys-section .section-heading h2,
  .home-body .faq-section .section-heading h2,
  .home-body .contact-section .section-heading h2,
  .home-body .form-header h2 {
    max-width: min(25rem, calc(100vw - 34px)) !important;
    margin: 0 auto !important;
    font-size: clamp(1.34rem, 5.6vw, 1.82rem) !important;
    line-height: 1.08 !important;
    text-align: center !important;
    text-wrap: balance !important;
  }

  .home-body .mentor-section-clean .section-heading h2 {
    font-size: clamp(2.2rem, 9vw, 2.85rem) !important;
    line-height: 0.95 !important;
  }

  .home-body .keys-section .section-heading h2 {
    max-width: 18rem !important;
  }

  .home-body .contact-section .section-heading h2,
  .home-body .faq-section .section-heading h2 {
    max-width: 19rem !important;
  }

  .home-body .learning-icon,
  .home-body .practical-icon,
  .home-body .keys-grid-premium .learning-icon,
  .home-body .keys-grid-secondary .practical-icon {
    display: none !important;
  }

  .home-body .keys-grid-premium .key-head {
    grid-template-columns: auto minmax(0, 1fr) !important;
    gap: 10px !important;
    align-items: center !important;
    margin-bottom: 8px !important;
  }

  .home-body .keys-grid-premium .key-number {
    font-size: clamp(1.55rem, 7vw, 2rem) !important;
    line-height: 0.9 !important;
  }

  .home-body .keys-grid-premium .key-tag {
    margin-top: 0 !important;
    font-size: 0.66rem !important;
  }

  .home-body .keys-grid-secondary .key-card h3 {
    margin-top: 0 !important;
  }

  .home-body .keys-extra-title {
    margin-bottom: 12px !important;
    font-size: 0.92rem !important;
    line-height: 1.35 !important;
    text-align: center !important;
  }
}

/* Extra compact mobile section copy: section titles should not feel like heroes. */
@media (max-width: 640px) {
  .home-body .keys-section .section-heading,
  .home-body .faq-section .section-heading,
  .home-body .contact-section .section-heading {
    margin-bottom: 12px !important;
  }

  .home-body .keys-section .section-heading h2,
  .home-body .faq-section .section-heading h2,
  .home-body .contact-section .section-heading h2,
  .home-body .form-header h2 {
    max-width: min(21rem, calc(100vw - 34px)) !important;
    color: rgba(246, 243, 234, 0.92) !important;
    font-family: "Inter", system-ui, sans-serif !important;
    font-size: clamp(1.02rem, 4.2vw, 1.22rem) !important;
    font-weight: 850 !important;
    line-height: 1.22 !important;
    letter-spacing: 0 !important;
    text-shadow: none !important;
  }

  .home-body .keys-section .section-heading .eyebrow,
  .home-body .faq-section .section-heading .eyebrow,
  .home-body .contact-section .section-heading .eyebrow {
    margin-bottom: 6px !important;
  }

  .home-body .key-card h3,
  .home-body .keys-grid-premium .key-card h3,
  .home-body .keys-grid-secondary .key-card h3 {
    font-size: clamp(1.42rem, 7vw, 1.95rem) !important;
    line-height: 1.02 !important;
  }

  .home-body .keys-grid-premium .key-card,
  .home-body .keys-grid-secondary .key-card {
    padding-top: 18px !important;
    padding-bottom: 18px !important;
  }
}

/* Final mobile hero CTA: stronger premium button without extra height. */
@media (max-width: 640px) {
  .home-body .hero-main-cta {
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 9px !important;
    width: min(276px, calc(100vw - 56px)) !important;
    min-height: 54px !important;
    margin: 22px auto 0 !important;
    padding: 0 20px !important;
    border: 1px solid rgba(210, 252, 255, 0.86) !important;
    border-radius: 10px !important;
    background:
      linear-gradient(135deg, #fffdf4 0%, #d9fbff 36%, #67e8f9 67%, #1fcde5 100%) !important;
    color: #021014 !important;
    box-shadow:
      0 16px 42px rgba(0, 0, 0, 0.44),
      0 0 0 1px rgba(255, 255, 255, 0.26) inset,
      0 0 28px rgba(34, 211, 238, 0.18) !important;
    font-size: 0.86rem !important;
    font-weight: 950 !important;
    line-height: 1 !important;
    letter-spacing: 0.02em !important;
    text-transform: uppercase !important;
    overflow: hidden !important;
  }

  .home-body .hero-main-cta::before {
    content: "" !important;
    position: absolute !important;
    inset: 1px !important;
    border-radius: 8px !important;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.48), transparent 48%),
      linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.44), transparent) !important;
    opacity: 0.58 !important;
    transform: translateX(-118%) skewX(-18deg) !important;
    animation: heroCtaMobileShine 3.6s ease-in-out infinite !important;
    pointer-events: none !important;
  }

  .home-body .hero-main-cta::after {
    content: none !important;
    display: none !important;
  }

  .home-body .hero-main-cta .hero-cta-arrow {
    position: relative !important;
    display: inline-grid !important;
    width: 24px !important;
    height: 24px !important;
    min-width: 24px !important;
    margin: 0 !important;
    place-items: center !important;
    border-radius: 999px !important;
    background: rgba(2, 16, 20, 0.18) !important;
    color: #021014 !important;
    font-size: 1.05rem !important;
    font-weight: 950 !important;
    line-height: 1 !important;
    box-shadow: inset 0 0 0 1px rgba(2, 16, 20, 0.12) !important;
  }

  .home-body .hero-main-cta:active {
    transform: translateY(1px) scale(0.99) !important;
  }
}

@keyframes heroCtaMobileShine {
  0%, 42% {
    transform: translateX(-118%) skewX(-18deg);
  }
  64%, 100% {
    transform: translateX(118%) skewX(-18deg);
  }
}

/* Mobile learning second part: editorial list, no boxes. */
@media (max-width: 640px) {
  .home-body .keys-extra {
    margin-top: 22px !important;
    padding-top: 22px !important;
    border-top: 1px solid rgba(103, 232, 249, 0.22) !important;
  }

  .home-body .keys-extra-title {
    display: block !important;
    width: min(100%, 330px) !important;
    max-width: min(330px, calc(100vw - 34px)) !important;
    margin: 0 auto 20px !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    color: rgba(246, 243, 234, 0.88) !important;
    font-family: "Inter", system-ui, sans-serif !important;
    font-size: 1rem !important;
    font-weight: 950 !important;
    line-height: 1.18 !important;
    text-align: center !important;
    text-wrap: balance !important;
  }

  .home-body .keys-extra-title::before,
  .home-body .keys-extra-title::after {
    display: none !important;
    content: none !important;
  }

  .home-body .keys-grid-secondary {
    display: grid !important;
    gap: 0 !important;
    width: min(100%, 310px) !important;
    max-width: min(310px, calc(100vw - 34px)) !important;
    margin: 0 auto !important;
    padding: 0 !important;
    border-top: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  .home-body .keys-grid-secondary .key-card,
  .home-body .keys-grid-secondary .key-card:nth-child(1),
  .home-body .keys-grid-secondary .key-card:nth-child(2),
  .home-body .keys-grid-secondary .key-card:nth-child(3) {
    position: relative !important;
    display: grid !important;
    grid-template-columns: 34px minmax(0, 1fr) !important;
    column-gap: 10px !important;
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    min-height: 0 !important;
    padding: 0 0 22px !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    text-align: left !important;
  }

  .home-body .keys-grid-secondary .key-card:not(:last-child) {
    margin-bottom: 18px !important;
    border-bottom: 1px solid rgba(103, 232, 249, 0.1) !important;
  }

  .home-body .keys-grid-secondary .key-card::before {
    content: "01" !important;
    position: static !important;
    grid-column: 1 !important;
    grid-row: 1 / span 2 !important;
    display: grid !important;
    width: 30px !important;
    height: 30px !important;
    margin: 2px 0 0 !important;
    place-items: center !important;
    border: 1px solid rgba(103, 232, 249, 0.25) !important;
    border-radius: 50% !important;
    background: transparent !important;
    color: #67e8f9 !important;
    font-family: "Inter", system-ui, sans-serif !important;
    font-size: 0.72rem !important;
    font-weight: 950 !important;
    line-height: 1 !important;
    box-shadow: 0 0 18px rgba(103, 232, 249, 0.1) !important;
  }

  .home-body .keys-grid-secondary .key-card:nth-child(2)::before {
    content: "02" !important;
  }

  .home-body .keys-grid-secondary .key-card:nth-child(3)::before {
    content: "03" !important;
  }

  .home-body .keys-grid-secondary .key-card::after {
    display: none !important;
  }

  .home-body .keys-grid-secondary .key-card h3 {
    grid-column: 2 !important;
    max-width: 17ch !important;
    margin: 0 0 7px !important;
    font-family: "Inter", system-ui, sans-serif !important;
    font-size: clamp(1rem, 4.7vw, 1.22rem) !important;
    font-weight: 900 !important;
    line-height: 1.12 !important;
    text-align: left !important;
    overflow-wrap: anywhere !important;
    text-wrap: balance !important;
  }

  .home-body .keys-grid-secondary .key-card p {
    grid-column: 2 !important;
    max-width: 25ch !important;
    margin: 0 !important;
    color: rgba(246, 243, 234, 0.64) !important;
    font-size: 0.88rem !important;
    line-height: 1.48 !important;
    text-align: left !important;
  }
}

/* Final polish requested: clear practical title, no box; hero without shine. */
.home-body .hero-title,
.home-body .hero-capture-container .hero-title,
.home-body .hero-title-animated {
  text-shadow: 0 18px 46px rgba(0, 0, 0, 0.48) !important;
}

.home-body .hero-title-animated::before {
  display: none !important;
  content: none !important;
}

.home-body .hero-title .gradient-text,
.home-body .hero-title-animated .gradient-text,
.home-body .hero-left.visible .hero-title-animated .gradient-text {
  animation: none !important;
  filter: none !important;
  text-shadow: none !important;
}

.home-body .keys-extra-title {
  position: relative !important;
  display: block !important;
  width: fit-content !important;
  max-width: min(620px, calc(100vw - 34px)) !important;
  margin: 0 auto 24px !important;
  padding: 0 0 12px !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  color: #f6f3ea !important;
  font-family: "Cormorant Garamond", "Playfair Display", Georgia, serif !important;
  font-size: clamp(1.7rem, 3vw, 2.55rem) !important;
  font-weight: 800 !important;
  line-height: 0.98 !important;
  letter-spacing: 0 !important;
  text-align: center !important;
  text-transform: none !important;
  text-wrap: balance !important;
}

.home-body .keys-extra-title::before {
  display: none !important;
  content: none !important;
}

.home-body .keys-extra-title::after {
  content: "" !important;
  position: absolute !important;
  left: 50% !important;
  bottom: 0 !important;
  display: block !important;
  width: min(120px, 52%) !important;
  height: 2px !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: linear-gradient(90deg, transparent, #67e8f9, transparent) !important;
  box-shadow: none !important;
  transform: translateX(-50%) !important;
}

@media (max-width: 640px) {
  .home-body .hero-title,
  .home-body .hero-capture-container .hero-title,
  .home-body .hero-title-animated {
    text-shadow: 0 14px 34px rgba(0, 0, 0, 0.56) !important;
  }

  .home-body .keys-extra-title {
    width: min(100%, 320px) !important;
    max-width: min(330px, calc(100vw - 34px)) !important;
    margin-bottom: 22px !important;
    font-size: clamp(1.46rem, 6.9vw, 1.95rem) !important;
    line-height: 1.05 !important;
  }
}

/* Phone contact buttons: polished, compact, and not overloaded. */
@media (max-width: 640px) {
  .home-body .contact-card {
    grid-template-columns: minmax(0, 1fr) 54px !important;
    grid-template-areas:
      "title button"
      "text button" !important;
    column-gap: 14px !important;
    padding-inline: 2px !important;
  }

  .home-body .contact-card:nth-child(1) {
    --contact-accent: #25d366;
    --contact-soft: rgba(37, 211, 102, 0.16);
    --contact-border: rgba(37, 211, 102, 0.32);
  }

  .home-body .contact-card:nth-child(2) {
    --contact-accent: #67e8f9;
    --contact-soft: rgba(103, 232, 249, 0.16);
    --contact-border: rgba(103, 232, 249, 0.32);
  }

  .home-body .contact-card:nth-child(3) {
    --contact-accent: #f0abfc;
    --contact-soft: rgba(240, 171, 252, 0.14);
    --contact-border: rgba(240, 171, 252, 0.28);
  }

  .home-body .contact-card .btn-secondary {
    grid-area: button !important;
    width: 54px !important;
    min-width: 54px !important;
    height: 44px !important;
    min-height: 44px !important;
    border-color: var(--contact-border) !important;
    border-radius: 999px !important;
    background:
      linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.018)),
      var(--contact-soft) !important;
    color: var(--contact-accent) !important;
    box-shadow:
      0 10px 24px rgba(0, 0, 0, 0.26),
      inset 0 1px 0 rgba(255, 255, 255, 0.11) !important;
    transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease !important;
  }

  .home-body .contact-card::before,
  .home-body .contact-card::after {
    display: none !important;
    content: none !important;
  }

  .home-body .contact-card h3 {
    grid-area: title !important;
    text-align: left !important;
  }

  .home-body .contact-card p {
    grid-area: text !important;
    max-width: 24ch !important;
    text-align: left !important;
  }

  .home-body .contact-card .btn-secondary::before {
    content: "" !important;
    position: absolute !important;
    inset: 2px !important;
    border-radius: inherit !important;
    background: linear-gradient(110deg, rgba(255, 255, 255, 0.16), transparent 42%, rgba(255, 255, 255, 0.05)) !important;
    opacity: 0.55 !important;
    transform: none !important;
    transition: opacity 180ms ease !important;
  }

  .home-body .contact-card .btn-secondary::after {
    position: relative !important;
    z-index: 1 !important;
    width: 22px !important;
    height: 22px !important;
    font-size: 1.1rem !important;
    font-weight: 950 !important;
    line-height: 1 !important;
    transform: translateX(0) !important;
  }

  .home-body .contact-card .btn-secondary:active {
    transform: scale(0.96) !important;
    box-shadow:
      0 6px 14px rgba(0, 0, 0, 0.22),
      inset 0 1px 0 rgba(255, 255, 255, 0.09) !important;
  }

  .home-body .contact-card .btn-secondary:active::after {
    transform: translateX(2px) !important;
  }

  .home-body .contact-card .btn-icon {
    display: none !important;
  }

  .home-body .contact-card .contact-button-label {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    clip-path: inset(50%) !important;
    white-space: nowrap !important;
  }
}

/* Phone mentor close: remove the box and use a distinct secondary CTA. */
@media (max-width: 640px) {
  .home-body .mentor-copy .mentor-intro:not(:first-child) {
    position: relative !important;
    margin: 18px 0 0 !important;
    padding: 0 0 0 16px !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    color: rgba(246, 243, 234, 0.68) !important;
    font-size: 0.98rem !important;
    line-height: 1.56 !important;
    text-align: left !important;
  }

  .home-body .mentor-copy .mentor-intro:not(:first-child)::before {
    content: "" !important;
    position: absolute !important;
    left: 0 !important;
    top: 0.2em !important;
    bottom: 0.25em !important;
    width: 2px !important;
    background: linear-gradient(180deg, #67e8f9, rgba(103, 232, 249, 0.08)) !important;
    box-shadow: 0 0 16px rgba(103, 232, 249, 0.24) !important;
  }

  .home-body .mentor-copy .btn-secondary {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 14px !important;
    width: calc(100% - 32px) !important;
    max-width: 330px !important;
    min-height: 50px !important;
    margin: 18px auto 0 !important;
    padding: 0 12px 0 20px !important;
    border: 1px solid rgba(103, 232, 249, 0.34) !important;
    border-radius: 999px !important;
    background:
      linear-gradient(135deg, rgba(103, 232, 249, 0.11), rgba(246, 243, 234, 0.025)),
      rgba(3, 8, 10, 0.68) !important;
    color: #f6f3ea !important;
    box-shadow:
      0 14px 34px rgba(0, 0, 0, 0.28),
      inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
    font-size: 0.84rem !important;
    font-weight: 950 !important;
    letter-spacing: 0.03em !important;
    text-transform: none !important;
  }

  .home-body .mentor-copy .btn-secondary::before {
    content: "" !important;
    position: absolute !important;
    inset: 2px !important;
    border-radius: inherit !important;
    background: linear-gradient(110deg, rgba(255, 255, 255, 0.12), transparent 46%) !important;
    opacity: 0.5 !important;
    transform: none !important;
  }

  .home-body .mentor-copy .btn-secondary::after {
    content: "→" !important;
    position: relative !important;
    z-index: 1 !important;
    inset: auto !important;
    display: grid !important;
    width: 26px !important;
    height: 26px !important;
    min-width: 26px !important;
    margin: 0 !important;
    place-items: center !important;
    border: 1px solid rgba(103, 232, 249, 0.36) !important;
    border-radius: 50% !important;
    background: rgba(103, 232, 249, 0.12) !important;
    color: #67e8f9 !important;
    font-size: 1rem !important;
    line-height: 1 !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .home-body .mentor-copy .btn-secondary:active {
    transform: translateY(1px) scale(0.99) !important;
  }

  .home-body .mentor-section-clean {
    padding-bottom: 22px !important;
  }
}

@media (max-width: 380px) {
  .home-body .mentor-copy .btn-secondary {
    width: calc(100% - 24px) !important;
    min-height: 48px !important;
    padding-left: 16px !important;
    font-size: 0.8rem !important;
  }
}

/* Final mobile contact redesign: professional action cards. */
@media (max-width: 640px) {
  .home-body .contact-section {
    width: min(100% - 22px, 1040px) !important;
    padding-top: 38px !important;
    padding-bottom: 42px !important;
  }

  .home-body .contact-section .section-heading {
    margin-bottom: 20px !important;
  }

  .home-body .contact-section .section-heading .eyebrow,
  .home-body .contact-section .section-heading .eyebrow.centered {
    margin-bottom: 8px !important;
  }

  .home-body .contact-section .section-heading h2 {
    max-width: min(20rem, calc(100vw - 34px)) !important;
    color: #f6f3ea !important;
    font-size: clamp(1.38rem, 6vw, 1.85rem) !important;
    font-weight: 950 !important;
    line-height: 1.08 !important;
    letter-spacing: 0 !important;
    text-align: center !important;
    text-wrap: balance !important;
  }

  .home-body .contact-grid {
    display: grid !important;
    gap: 12px !important;
    margin-top: 22px !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  .home-body .contact-card {
    position: relative !important;
    display: grid !important;
    grid-template-columns: 42px minmax(0, 1fr) !important;
    grid-template-areas:
      "icon title"
      "icon text"
      "button button" !important;
    column-gap: 13px !important;
    row-gap: 4px !important;
    min-height: 0 !important;
    padding: 15px !important;
    overflow: hidden !important;
    border: 1px solid var(--contact-border) !important;
    border-radius: 8px !important;
    background:
      linear-gradient(145deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.01) 56%),
      radial-gradient(160px 90px at 100% 0%, var(--contact-soft), transparent 68%),
      rgba(3, 7, 9, 0.74) !important;
    box-shadow:
      0 18px 44px rgba(0, 0, 0, 0.26),
      inset 0 1px 0 rgba(255, 255, 255, 0.045) !important;
    text-align: left !important;
  }

  .home-body .contact-card:nth-child(1) {
    --contact-accent: #25d366;
    --contact-soft: rgba(37, 211, 102, 0.13);
    --contact-border: rgba(37, 211, 102, 0.22);
    --contact-ink: #dfffee;
  }

  .home-body .contact-card:nth-child(2) {
    --contact-accent: #67e8f9;
    --contact-soft: rgba(103, 232, 249, 0.13);
    --contact-border: rgba(103, 232, 249, 0.22);
    --contact-ink: #e8fdff;
  }

  .home-body .contact-card:nth-child(3) {
    --contact-accent: #f0abfc;
    --contact-soft: rgba(240, 171, 252, 0.12);
    --contact-border: rgba(240, 171, 252, 0.2);
    --contact-ink: #fff0ff;
  }

  .home-body .contact-card::before {
    grid-area: icon !important;
    position: static !important;
    display: grid !important;
    width: 38px !important;
    height: 38px !important;
    margin: 1px 0 0 !important;
    place-items: center !important;
    border: 1px solid var(--contact-border) !important;
    border-radius: 8px !important;
    background: rgba(255, 255, 255, 0.035) !important;
    color: var(--contact-accent) !important;
    box-shadow: none !important;
    font-size: 0.95rem !important;
    font-weight: 950 !important;
    line-height: 1 !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .home-body .contact-card:nth-child(1)::before {
    content: "↗" !important;
  }

  .home-body .contact-card:nth-child(2)::before {
    content: "@" !important;
  }

  .home-body .contact-card:nth-child(3)::before {
    content: "◎" !important;
  }

  .home-body .contact-card::after {
    display: none !important;
    content: none !important;
  }

  .home-body .contact-card h3 {
    grid-area: title !important;
    margin: 0 !important;
    color: #f6f3ea !important;
    font-size: 1.05rem !important;
    font-weight: 950 !important;
    line-height: 1.12 !important;
    text-align: left !important;
  }

  .home-body .contact-card p {
    display: block !important;
    grid-area: text !important;
    max-width: 28ch !important;
    margin: 1px 0 0 !important;
    color: rgba(246, 243, 234, 0.58) !important;
    font-size: 0.82rem !important;
    line-height: 1.38 !important;
    text-align: left !important;
  }

  .home-body .contact-card .btn-secondary {
    grid-area: button !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 10px !important;
    width: 100% !important;
    min-width: 0 !important;
    height: auto !important;
    min-height: 44px !important;
    margin: 11px 0 0 !important;
    padding: 0 11px 0 13px !important;
    border: 1px solid var(--contact-border) !important;
    border-radius: 8px !important;
    background:
      linear-gradient(135deg, var(--contact-soft), rgba(255, 255, 255, 0.018)),
      rgba(2, 8, 10, 0.62) !important;
    color: var(--contact-ink) !important;
    box-shadow: none !important;
    font-size: 0.78rem !important;
    font-weight: 950 !important;
    letter-spacing: 0.01em !important;
    text-align: left !important;
    text-transform: none !important;
  }

  .home-body .contact-card .btn-secondary::before {
    content: "" !important;
    position: absolute !important;
    inset: 1px !important;
    border-radius: 7px !important;
    background: linear-gradient(110deg, rgba(255, 255, 255, 0.09), transparent 45%) !important;
    opacity: 0.6 !important;
    transform: none !important;
  }

  .home-body .contact-card .btn-icon {
    display: block !important;
    width: 18px !important;
    height: 18px !important;
    color: var(--contact-accent) !important;
  }

  .home-body .contact-card .contact-button-label {
    position: relative !important;
    z-index: 1 !important;
    display: block !important;
    width: auto !important;
    height: auto !important;
    min-width: 0 !important;
    flex: 1 1 auto !important;
    overflow: hidden !important;
    clip-path: none !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
  }

  .home-body .contact-card .btn-secondary::after {
    content: "→" !important;
    position: relative !important;
    z-index: 1 !important;
    display: grid !important;
    width: 25px !important;
    height: 25px !important;
    min-width: 25px !important;
    flex: 0 0 25px !important;
    margin: 0 !important;
    place-items: center !important;
    border: 1px solid var(--contact-border) !important;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.035) !important;
    color: var(--contact-accent) !important;
    font-size: 0.96rem !important;
    font-weight: 950 !important;
    line-height: 1 !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .home-body .contact-card .btn-secondary:active {
    transform: translateY(1px) scale(0.99) !important;
  }
}

/* Final mobile learning title: clearer as a title, still compact. */
@media (max-width: 640px) {
  .home-body .keys-section .section-heading {
    margin: 0 auto 16px !important;
    padding: 0 !important;
  }

  .home-body .keys-section .section-heading .eyebrow,
  .home-body .keys-section .section-heading .eyebrow.centered {
    margin-bottom: 8px !important;
    color: #67e8f9 !important;
    font-size: 0.68rem !important;
    font-weight: 950 !important;
    letter-spacing: 0.12em !important;
  }

  .home-body .keys-section .section-heading h2 {
    position: relative !important;
    max-width: min(22rem, calc(100vw - 34px)) !important;
    margin: 0 auto !important;
    padding-bottom: 11px !important;
    color: #f6f3ea !important;
    font-family: "Cormorant Garamond", "Playfair Display", Georgia, serif !important;
    font-size: clamp(1.78rem, 7.4vw, 2.24rem) !important;
    font-weight: 800 !important;
    line-height: 0.98 !important;
    letter-spacing: 0 !important;
    text-align: center !important;
    text-shadow: 0 14px 34px rgba(0, 0, 0, 0.42) !important;
  }

  .home-body .keys-section .section-heading h2::after {
    content: "" !important;
    position: absolute !important;
    left: 50% !important;
    bottom: 0 !important;
    width: min(118px, 42%) !important;
    height: 2px !important;
    background: linear-gradient(90deg, transparent, #67e8f9, transparent) !important;
    transform: translateX(-50%) !important;
  }
}

/* Final mobile hero title: a little larger, more editorial, still controlled. */
@media (max-width: 640px) {
  .home-body .hero-capture-container .hero-title,
  .home-body .hero-title-animated {
    max-width: min(15.4ch, calc(100vw - 30px)) !important;
    margin-inline: auto !important;
    font-family: "Cormorant Garamond", "Playfair Display", Georgia, serif !important;
    font-size: clamp(2.32rem, 9.45vw, 3.05rem) !important;
    font-weight: 800 !important;
    line-height: 0.88 !important;
    letter-spacing: 0 !important;
    text-align: center !important;
    text-shadow: 0 16px 38px rgba(0, 0, 0, 0.54) !important;
  }

  .home-body .hero-title-animated .hero-line,
  .home-body .hero-left.visible .hero-title-animated .hero-line {
    display: block !important;
    margin-top: -0.015em !important;
  }

  .home-body .hero-title-animated .hero-line:nth-child(1) {
    font-size: 0.92em !important;
  }

  .home-body .hero-title-animated .hero-line:nth-child(6) {
    margin-top: 0.02em !important;
    font-size: 1.02em !important;
  }

  .home-body .hero-title-animated .gradient-text {
    background:
      linear-gradient(120deg, #f8f5ed 0%, #d9fbff 28%, #67e8f9 66%, #22d3ee 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    filter: none !important;
  }
}

/* Final mobile contact cleanup: no decorative icons in the boxes. */
@media (max-width: 640px) {
  .home-body .contact-card {
    grid-template-columns: minmax(0, 1fr) !important;
    grid-template-areas:
      "title"
      "text"
      "button" !important;
  }

  .home-body .contact-card::before,
  .home-body .contact-card::after {
    display: none !important;
    content: none !important;
  }

  .home-body .contact-card h3,
  .home-body .contact-card p {
    max-width: none !important;
  }
}

/* Final desktop practical blocks: cleaner icon/text hierarchy. */
@media (min-width: 761px) {
  .home-body .keys-extra {
    margin-top: clamp(46px, 5vw, 68px) !important;
  }

  .home-body .keys-grid-secondary {
    counter-reset: practical-desktop !important;
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 0 !important;
    margin-top: 30px !important;
    overflow: hidden !important;
    border: 1px solid rgba(103, 232, 249, 0.14) !important;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.022), rgba(255, 255, 255, 0.006)),
      rgba(2, 6, 9, 0.44) !important;
  }

  .home-body .keys-grid-secondary .key-card {
    counter-increment: practical-desktop !important;
    position: relative !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    grid-template-areas:
      "meta"
      "title"
      "text" !important;
    align-content: start !important;
    gap: 0 16px !important;
    min-height: 230px !important;
    padding: 30px clamp(24px, 2.4vw, 34px) 28px !important;
    border: 0 !important;
    border-right: 1px solid rgba(103, 232, 249, 0.13) !important;
    border-radius: 0 !important;
    background:
      radial-gradient(220px 120px at 90% 0%, rgba(103, 232, 249, 0.075), transparent 68%),
      transparent !important;
    box-shadow: none !important;
    text-align: left !important;
  }

  .home-body .keys-grid-secondary .key-card:last-child {
    border-right: 0 !important;
  }

  .home-body .keys-grid-secondary .key-card::before {
    content: "0" counter(practical-desktop) !important;
    position: static !important;
    grid-area: meta !important;
    display: inline-flex !important;
    width: fit-content !important;
    height: auto !important;
    margin: 3px 0 0 !important;
    padding: 7px 12px !important;
    align-items: center !important;
    justify-content: center !important;
    border: 1px solid rgba(103, 232, 249, 0.2) !important;
    border-radius: 999px !important;
    background: rgba(103, 232, 249, 0.055) !important;
    color: #67e8f9 !important;
    box-shadow: none !important;
    font-family: "Inter", system-ui, sans-serif !important;
    font-size: 0.68rem !important;
    font-weight: 950 !important;
    line-height: 1 !important;
    letter-spacing: 0.12em !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .home-body .keys-grid-secondary .key-card::after {
    content: "" !important;
    position: absolute !important;
    left: clamp(24px, 2.4vw, 34px) !important;
    right: clamp(24px, 2.4vw, 34px) !important;
    bottom: 0 !important;
    height: 2px !important;
    background: linear-gradient(90deg, rgba(103, 232, 249, 0.42), transparent) !important;
    opacity: 0.5 !important;
  }

  .home-body .keys-grid-secondary .practical-icon {
    display: none !important;
  }

  .home-body .keys-grid-secondary .key-card h3 {
    grid-area: title !important;
    max-width: 19ch !important;
    margin: 24px 0 0 !important;
    color: #f6f3ea !important;
    font-family: "Inter", system-ui, sans-serif !important;
    font-size: clamp(1.05rem, 1.1vw, 1.18rem) !important;
    font-weight: 950 !important;
    line-height: 1.16 !important;
    letter-spacing: 0 !important;
    text-align: left !important;
    text-wrap: balance !important;
  }

  .home-body .keys-grid-secondary .key-card h3::before {
    display: none !important;
    content: none !important;
  }

  .home-body .keys-grid-secondary .key-card p {
    grid-area: text !important;
    max-width: 30ch !important;
    margin: 12px 0 0 !important;
    color: rgba(246, 243, 234, 0.58) !important;
    font-size: 0.92rem !important;
    line-height: 1.58 !important;
    text-align: left !important;
  }
}
