:root {
  --ink: #070607;
  --ink-soft: #121012;
  --wine: #6f1d38;
  --wine-deep: #2d0a16;
  --rose: #c04f69;
  --gold: #d5b47b;
  --gold-light: #f1dcb4;
  --cream: #f3eee6;
  --white: #fffdf9;
  --muted: #c2bab6;
  --line: rgba(231, 201, 147, 0.25);
  --serif: "Gambetta", "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  --sans: "Satoshi", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 1rem;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--white);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

button,
input,
select,
textarea {
  font: inherit;
}

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  transform: translateY(-160%);
  border-radius: 0.5rem;
  background: var(--cream);
  color: var(--ink);
  padding: 0.75rem 1rem;
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.shell {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--gold-light);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  min-height: 3.4rem;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 0.5rem;
  padding: 1rem 1.45rem;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}

.button:disabled {
  cursor: wait;
  opacity: 0.62;
  transform: none;
}

.button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(240, 218, 177, 0.65);
  outline-offset: 3px;
}

.button--gold {
  background: linear-gradient(110deg, #ad8751, #eed9b0 48%, #bc9560);
  color: #171009;
  box-shadow: 0 12px 38px rgba(205, 163, 99, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.64);
}

.button--full {
  width: 100%;
}

.glass-card {
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.045));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 24px 60px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

/* Hero */
.hero {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  background: #050303;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero::before {
  inset: 0;
  z-index: 1;
  opacity: 1;
  background-image:
    linear-gradient(90deg, rgba(5, 3, 3, .5) 0%, rgba(5, 3, 3, .18) 38%, transparent 64%),
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 100% 100%, 64px 64px, 64px 64px;
}

.hero::after {
  inset: 12px;
  z-index: 3;
  border: 1px solid var(--line);
  border-radius: 0.65rem;
}

.hero-backdrop-motion {
  position: absolute;
  z-index: 0;
  inset: 0;
  overflow: hidden;
  background: #050303;
  pointer-events: none;
}

.hero-backdrop-motion video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.04) contrast(1.03);
}

.ambient {
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(42px);
}

.ambient--wine {
  width: 540px;
  height: 400px;
  left: -220px;
  bottom: -210px;
  background: rgba(148, 27, 61, 0.54);
}

.ambient--gold {
  width: 460px;
  height: 380px;
  right: -80px;
  top: -190px;
  background: rgba(223, 185, 111, 0.62);
}

.hero-shell {
  position: relative;
  z-index: 2;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 0.58rem;
  color: var(--white);
  text-decoration: none;
}

.jm-mark {
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 2rem;
  font-style: italic;
  line-height: 1;
}

.brand-name {
  font-family: var(--serif);
  font-size: 0.8rem;
  line-height: 0.92;
}

.brand-divider {
  width: 1px;
  height: 34px;
  margin-inline: 0.35rem;
  background: rgba(255, 255, 255, 0.35);
}

.adn-name {
  display: grid;
  font-size: 1.25rem;
  line-height: 1;
  letter-spacing: 0.07em;
}

.adn-name small {
  margin-top: 0.16rem;
  font-size: 0.49rem;
  letter-spacing: 0.02em;
}

.hero-grid {
  display: grid;
  min-height: 720px;
  grid-template-columns: minmax(0, 0.9fr) minmax(500px, 1.1fr);
  grid-template-areas:
    "copy visual"
    "actions visual";
  align-content: center;
  align-items: end;
  column-gap: clamp(3rem, 6vw, 6rem);
  padding: 3.25rem 0;
}

.hero-copy {
  grid-area: copy;
  max-width: 610px;
  position: relative;
  z-index: 4;
}

.hero h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.6rem, 5.3vw, 5.8rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.91;
}

.hero h1 em {
  color: var(--gold-light);
  font-style: normal;
}

.hero-lead {
  max-width: 570px;
  margin: 1.55rem 0 0;
  color: #d6cfcb;
  font-size: 1.05rem;
  line-height: 1.65;
}

.hero-lead--mobile {
  display: none;
}

.hero-actions {
  grid-area: actions;
  align-self: start;
  position: relative;
  z-index: 4;
  padding-top: 2rem;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1rem;
  margin-top: 1.15rem;
  color: #c9c1bd;
  font-size: 0.78rem;
}

.trust-row i {
  color: var(--gold-light);
  font-style: normal;
}

.hero-visual {
  display: none;
  position: relative;
  z-index: 1;
  grid-area: visual;
  width: 100%;
  min-height: 0;
  aspect-ratio: 1.05 / 1;
  align-self: center;
  perspective: 1200px;
  isolation: isolate;
}

.adn-hero-motion {
  position: absolute;
  z-index: 1;
  inset: -4% -8%;
  overflow: hidden;
  border-radius: 0;
  mix-blend-mode: normal;
  opacity: 1;
  pointer-events: none;
  -webkit-mask-image: radial-gradient(ellipse 76% 88% at 64% 50%, #000 24%, rgba(0, 0, 0, .98) 52%, rgba(0, 0, 0, .68) 70%, transparent 96%);
  mask-image: radial-gradient(ellipse 76% 88% at 64% 50%, #000 24%, rgba(0, 0, 0, .98) 52%, rgba(0, 0, 0, .68) 70%, transparent 96%);
}

.adn-hero-motion video {
  position: absolute;
  top: 0;
  right: -2%;
  bottom: 0;
  left: auto;
  width: auto;
  max-width: none;
  height: 100%;
  display: block;
  object-fit: contain;
  filter: saturate(1.08) contrast(1.12) brightness(1.03);
}

.adn-hero-glow {
  position: absolute;
  z-index: 1;
  width: 82%;
  height: 90%;
  top: -8%;
  right: -7%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(225, 188, 112, .28), rgba(118, 18, 43, .23) 42%, transparent 72%);
  filter: blur(30px);
  animation: adn-glow-pulse 6s ease-in-out infinite;
}

.adn-hero-shimmer {
  position: absolute;
  z-index: 3;
  inset: -30%;
  background: linear-gradient(112deg, transparent 38%, rgba(255, 236, 190, .11) 49%, transparent 60%);
  mix-blend-mode: screen;
  transform: translateX(-52%);
  animation: adn-shimmer 8.5s 1.8s ease-in-out infinite;
  pointer-events: none;
}

.adn-particle {
  position: absolute;
  z-index: 4;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #f0dca0;
  box-shadow: 0 0 14px rgba(240, 220, 160, .9);
  animation: adn-particle-drift 7s linear infinite;
}

.adn-particle--1 { left: 24%; top: 76%; animation-delay: -1s; }
.adn-particle--2 { left: 82%; top: 18%; animation-delay: -3.2s; }
.adn-particle--3 { left: 63%; top: 84%; animation-delay: -5.4s; }
.adn-particle--4 { left: 92%; top: 58%; animation-delay: -2.1s; }

.hero-visual.reveal:not(.is-visible) .adn-hero-motion *,
.problem-motion.reveal:not(.is-visible) *,
.problem-motion.reveal:not(.is-visible) *::before,
.problem-motion.reveal:not(.is-visible) *::after,
.mentorship-motion.reveal:not(.is-visible) *,
.mentorship-motion.reveal:not(.is-visible)::before,
.mentorship-motion.reveal:not(.is-visible)::after {
  animation-play-state: paused !important;
}

@keyframes adn-cluster-enter {
  from { opacity: 0; transform: translate3d(28px, 18px, 0) scale(.92); filter: blur(12px) saturate(.8); }
  to { opacity: 1; transform: translate3d(0, 0, 0) scale(1); filter: blur(0) saturate(1.08) contrast(1.05) brightness(1.02); }
}

@keyframes adn-cluster-float {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1.01); }
  50% { transform: translate3d(-10px, 7px, 0) scale(1.045); }
}

@keyframes adn-glow-pulse {
  0%, 100% { opacity: .56; transform: scale(.94); }
  50% { opacity: 1; transform: scale(1.08); }
}

@keyframes adn-shimmer {
  0%, 24% { opacity: 0; transform: translateX(-52%); }
  42% { opacity: 1; }
  66%, 100% { opacity: 0; transform: translateX(52%); }
}

@keyframes adn-particle-drift {
  0% { opacity: 0; transform: translate3d(0, 24px, 0) scale(.6); }
  18%, 70% { opacity: .72; }
  100% { opacity: 0; transform: translate3d(18px, -92px, 0) scale(1.15); }
}

.motion-hero {
  position: absolute;
  inset: 0;
  isolation: isolate;
  transform-style: preserve-3d;
  animation: motion-stage-breathe 9s ease-in-out infinite;
}

.motion-hero__glow {
  position: absolute;
  z-index: -1;
  width: 72%;
  height: 78%;
  top: -8%;
  right: -8%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 54% 44%, rgba(255, 224, 168, 0.38), rgba(190, 126, 57, 0.13) 36%, transparent 70%);
  filter: blur(28px);
  animation: motion-glow 6s ease-in-out infinite;
}

.motion-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.motion-particles i {
  position: absolute;
  width: 3px;
  height: 3px;
  left: var(--particle-x, 50%);
  top: var(--particle-y, 50%);
  border-radius: 50%;
  background: #f8e7bc;
  box-shadow: 0 0 12px rgba(248, 231, 188, 0.92);
  opacity: 0;
  animation: motion-particle 8s linear infinite;
  animation-delay: var(--particle-delay, 0s);
}

.motion-particles i:nth-child(1) { --particle-x: 18%; --particle-y: 83%; --particle-delay: -1s; }
.motion-particles i:nth-child(2) { --particle-x: 72%; --particle-y: 14%; --particle-delay: -3.5s; }
.motion-particles i:nth-child(3) { --particle-x: 91%; --particle-y: 44%; --particle-delay: -5.1s; }
.motion-particles i:nth-child(4) { --particle-x: 55%; --particle-y: 74%; --particle-delay: -2.2s; }
.motion-particles i:nth-child(5) { --particle-x: 38%; --particle-y: 20%; --particle-delay: -6.4s; }
.motion-particles i:nth-child(6) { --particle-x: 81%; --particle-y: 89%; --particle-delay: -4.1s; }
.motion-particles i:nth-child(7) { --particle-x: 6%; --particle-y: 34%; --particle-delay: -7.2s; }
.motion-particles i:nth-child(8) { --particle-x: 63%; --particle-y: 51%; --particle-delay: -0.4s; }
.motion-particles i:nth-child(9) { --particle-x: 96%; --particle-y: 67%; --particle-delay: -2.8s; }
.motion-particles i:nth-child(10) { --particle-x: 30%; --particle-y: 94%; --particle-delay: -5.8s; }
.motion-particles i:nth-child(11) { --particle-x: 47%; --particle-y: 38%; --particle-delay: -3.1s; }
.motion-particles i:nth-child(12) { --particle-x: 78%; --particle-y: 29%; --particle-delay: -6.9s; }

.motion-connectors {
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
}

.motion-connectors path {
  fill: none;
  stroke: url(#motion-gold-line);
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  filter: url(#motion-line-glow);
  animation: motion-line-draw 14s ease-in-out infinite;
}

.motion-connectors path:nth-of-type(2) { animation-delay: .35s; }
.motion-connectors path:nth-of-type(3) { animation-delay: .7s; }
.motion-connectors path:nth-of-type(4) { animation-delay: 1.05s; }
.motion-connectors path:nth-of-type(5) { animation-delay: 1.4s; }

.motion-card {
  position: absolute;
  z-index: 4;
  display: flex;
  min-height: 16.5%;
  align-items: center;
  gap: clamp(0.55rem, 1.3vw, 1.2rem);
  overflow: hidden;
  border: 1px solid rgba(255, 226, 183, 0.34);
  border-radius: clamp(0.65rem, 1.5vw, 1.25rem);
  background:
    linear-gradient(135deg, rgba(255, 236, 204, 0.19), rgba(255, 255, 255, 0.045) 45%, rgba(255, 222, 180, 0.1));
  box-shadow:
    0 32px 70px -26px rgba(0, 0, 0, 0.9),
    inset 0 1px 0 rgba(255, 241, 214, 0.42),
    inset 0 -1px 0 rgba(255, 214, 150, 0.08),
    0 0 52px -24px rgba(227, 192, 122, 0.72);
  padding: 2.5% 3.2%;
  color: #fbf3e4;
  backdrop-filter: blur(22px) saturate(125%);
  -webkit-backdrop-filter: blur(22px) saturate(125%);
  opacity: 0;
  transform-origin: center;
  text-shadow: 0 2px 22px rgba(227, 192, 122, 0.34);
}

.motion-card::after {
  content: "";
  position: absolute;
  inset: -140% -40%;
  background: linear-gradient(110deg, transparent 42%, rgba(255, 255, 255, 0.25) 50%, transparent 58%);
  transform: translateX(-44%) rotate(9deg);
  animation: motion-card-shimmer 7s ease-in-out infinite;
}

.motion-card svg {
  width: clamp(30px, 6.4%, 48px);
  min-width: 30px;
  fill: none;
  stroke: #f2d39b;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 8px rgba(227, 192, 122, 0.45));
}

.motion-card strong {
  position: relative;
  z-index: 1;
  font-size: clamp(0.72rem, 1.34vw, 1.06rem);
  font-weight: 700;
  letter-spacing: 0.035em;
  white-space: nowrap;
  text-transform: uppercase;
}

.motion-card--work {
  top: 4.5%;
  left: 1%;
  width: 38%;
  animation: motion-card-one 14s cubic-bezier(.18, .78, .24, 1) infinite;
}

.motion-card--sales {
  top: 37%;
  left: 0;
  width: 41%;
  animation: motion-card-two 14s cubic-bezier(.18, .78, .24, 1) infinite;
}

.motion-card--salary {
  top: 73%;
  left: 9%;
  width: 44%;
  animation: motion-card-three 14s cubic-bezier(.18, .78, .24, 1) infinite;
}

.motion-dashboard {
  position: absolute;
  z-index: 3;
  width: 52%;
  height: 73%;
  top: 14%;
  right: 0;
  opacity: 0;
  transform-style: preserve-3d;
  animation: motion-dashboard-enter 14s cubic-bezier(.18, .78, .24, 1) infinite;
}

.dashboard-window,
.dashboard-mini,
.dashboard-profit,
.dashboard-tile {
  border: 1px solid rgba(255, 231, 194, 0.24);
  background: linear-gradient(135deg, rgba(255, 242, 219, 0.18), rgba(255, 255, 255, 0.05));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28), 0 24px 60px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(20px) saturate(120%);
  -webkit-backdrop-filter: blur(20px) saturate(120%);
}

.dashboard-window {
  position: absolute;
  inset: 4% 1% 3% 2%;
  overflow: visible;
  border-radius: clamp(0.55rem, 1.25vw, 1rem);
  transform: perspective(900px) rotateY(-8deg) rotateX(3deg) rotateZ(3deg);
  animation: motion-dashboard-float 6s ease-in-out infinite;
}

.dashboard-titlebar {
  display: flex;
  height: 12%;
  align-items: center;
  gap: 1.7%;
  padding: 0 4%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.dashboard-titlebar i {
  width: 2.2%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #d36a65;
}

.dashboard-titlebar i:nth-child(2) { background: #d9ad61; }
.dashboard-titlebar i:nth-child(3) { background: #86a66c; }

.dashboard-tile {
  position: absolute;
  overflow: hidden;
  border-radius: clamp(0.35rem, .8vw, .65rem);
  padding: 4%;
  color: rgba(251, 243, 228, 0.78);
  font-family: "Satoshi", sans-serif;
}

.dashboard-tile > span,
.dashboard-mini > span {
  display: block;
  color: rgba(251, 243, 228, 0.62);
  font-size: clamp(0.36rem, .63vw, .57rem);
  letter-spacing: .03em;
}

.dashboard-tile--summary {
  width: 36%;
  height: 29%;
  top: 17%;
  left: 4%;
}

.dashboard-tile--summary b {
  display: block;
  margin-top: 7%;
  color: #f8e7bc;
  font-size: clamp(0.62rem, 1.2vw, 1.05rem);
  font-weight: 500;
}

.dashboard-tile--summary small {
  color: #b9ce9a;
  font-size: clamp(0.34rem, .55vw, .5rem);
}

.dashboard-tile--ring {
  width: 24%;
  height: 29%;
  top: 17%;
  left: 43%;
  display: grid;
  place-items: center;
  padding: 0;
}

.metric-ring {
  position: relative;
  display: grid;
  width: 70%;
  aspect-ratio: 1;
  place-items: center;
  border-radius: 50%;
  background: conic-gradient(#efd49f 0 78%, rgba(144, 31, 54, 0.62) 78% 92%, rgba(255,255,255,.09) 92%);
  box-shadow: 0 0 18px rgba(227, 192, 122, 0.22);
  animation: motion-ring-pulse 2.8s ease-in-out infinite;
}

.metric-ring::before {
  content: "";
  position: absolute;
  width: 49%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(23, 15, 16, 0.74);
}

.metric-ring span {
  position: relative;
  z-index: 1;
  color: #f8e7bc;
  font-size: clamp(.34rem, .58vw, .52rem);
}

.dashboard-tile--chart {
  width: 27%;
  height: 46%;
  top: 15%;
  right: -1%;
}

.dashboard-tile--chart svg {
  position: absolute;
  width: 86%;
  height: 62%;
  right: 6%;
  bottom: 7%;
}

.chart-area {
  fill: rgba(227, 192, 122, .1);
}

.chart-line,
.dashboard-tile--spark path {
  fill: none;
  stroke: #f8e7bc;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  filter: drop-shadow(0 0 5px rgba(248, 231, 188, .65));
  animation: motion-chart-draw 14s ease-in-out infinite;
}

.dashboard-tile--numbers {
  width: 43%;
  height: 35%;
  left: 5%;
  bottom: 7%;
}

.dashboard-tile--numbers > div {
  display: flex;
  height: 70%;
  align-items: end;
  gap: 9%;
  padding-top: 8%;
}

.dashboard-tile--numbers i {
  width: 14%;
  height: calc(var(--bar) * 100%);
  border-radius: 5px 5px 2px 2px;
  background: linear-gradient(180deg, #f8e7bc, rgba(227, 192, 122, .25));
  box-shadow: 0 0 12px rgba(227, 192, 122, .36);
  transform-origin: bottom;
  animation: motion-bars 14s ease-in-out infinite;
}

.dashboard-tile--spark {
  width: 43%;
  height: 28%;
  right: 6%;
  bottom: 9%;
}

.dashboard-tile--spark svg {
  width: 100%;
  height: 64%;
  margin-top: 5%;
}

.dashboard-profit {
  position: absolute;
  z-index: 8;
  top: 0;
  right: 4%;
  border-radius: .55rem;
  padding: 2.5% 6%;
  color: #f8e7bc;
  font-size: clamp(.55rem, 1vw, .87rem);
  font-style: italic;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  transform: rotate(7deg) translateZ(40px);
  animation: motion-profit-pulse 3s ease-in-out infinite;
}

.dashboard-mini {
  position: absolute;
  z-index: 7;
  border-radius: clamp(.4rem, .9vw, .7rem);
  padding: 4%;
  color: #f8e7bc;
}

.dashboard-mini--bars {
  width: 25%;
  height: 31%;
  right: -7%;
  bottom: 0;
  transform: rotate(7deg) translateZ(60px);
  animation: motion-mini-float 5s ease-in-out infinite;
}

.dashboard-mini--bars > div {
  display: flex;
  height: 68%;
  align-items: end;
  justify-content: space-around;
  gap: 7%;
  padding-top: 14%;
}

.dashboard-mini--bars i {
  width: 17%;
  height: 35%;
  border-radius: 4px 4px 1px 1px;
  background: linear-gradient(180deg, #f8e7bc, #8b5d31);
  box-shadow: 0 0 9px rgba(227, 192, 122, .42);
  animation: motion-mini-bars 2.6s ease-in-out infinite;
}

.dashboard-mini--bars i:nth-child(2) { height: 58%; animation-delay: -.8s; }
.dashboard-mini--bars i:nth-child(3) { height: 78%; animation-delay: -1.4s; }
.dashboard-mini--bars i:nth-child(4) { height: 94%; animation-delay: -2s; }

.dashboard-mini--roi {
  width: 22%;
  left: -4%;
  bottom: -2%;
  transform: rotate(-5deg) translateZ(34px);
  animation: motion-mini-float 5.5s -2.1s ease-in-out infinite;
}

.dashboard-mini--roi b {
  display: block;
  margin-top: 5%;
  font-size: clamp(.56rem, 1.1vw, .95rem);
  font-weight: 500;
}

@keyframes motion-stage-breathe {
  0%, 100% { transform: scale(1.02) translate3d(0, 0, 0); }
  50% { transform: scale(1) translate3d(-1%, -1%, 0); }
}

@keyframes motion-glow {
  0%, 100% { opacity: .62; transform: translate3d(0, 0, 0) scale(.94); }
  50% { opacity: 1; transform: translate3d(-3%, 3%, 0) scale(1.08); }
}

@keyframes motion-particle {
  0% { opacity: 0; transform: translate3d(0, 20px, 0) scale(.6); }
  18%, 66% { opacity: .55; }
  100% { opacity: 0; transform: translate3d(18px, -110px, 0) scale(1.1); }
}

@keyframes motion-card-one {
  0%, 2% { opacity: 0; filter: blur(12px); transform: translate3d(-12px, 38px, 0) scale(.94); }
  9%, 88% { opacity: 1; filter: blur(0); transform: translate3d(0, 0, 0) scale(1); }
  48% { transform: translate3d(3px, -8px, 0) scale(1); }
  96%, 100% { opacity: 0; filter: blur(7px); transform: translate3d(0, -12px, 0) scale(.98); }
}

@keyframes motion-card-two {
  0%, 13% { opacity: 0; filter: blur(12px); transform: translate3d(-10px, 40px, 0) scale(.94); }
  22%, 88% { opacity: 1; filter: blur(0); transform: translate3d(0, 0, 0) scale(1); }
  55% { transform: translate3d(-3px, -8px, 0) scale(1); }
  96%, 100% { opacity: 0; filter: blur(7px); transform: translate3d(0, -12px, 0) scale(.98); }
}

@keyframes motion-card-three {
  0%, 25% { opacity: 0; filter: blur(12px); transform: translate3d(-10px, 40px, 0) scale(.94); }
  34%, 88% { opacity: 1; filter: blur(0); transform: translate3d(0, 0, 0) scale(1); }
  62% { opacity: .7; filter: brightness(.78); transform: translate3d(4px, -8px, 0) scale(1); }
  68% { opacity: 1; filter: brightness(1); }
  96%, 100% { opacity: 0; filter: blur(7px); transform: translate3d(0, -12px, 0) scale(.98); }
}

@keyframes motion-card-shimmer {
  0%, 56% { transform: translateX(-54%) rotate(9deg); opacity: 0; }
  68% { opacity: .7; }
  86%, 100% { transform: translateX(56%) rotate(9deg); opacity: 0; }
}

@keyframes motion-line-draw {
  0%, 32% { opacity: 0; stroke-dashoffset: 1; }
  48%, 88% { opacity: .78; stroke-dashoffset: 0; }
  96%, 100% { opacity: 0; stroke-dashoffset: -.12; }
}

@keyframes motion-dashboard-enter {
  0%, 42% { opacity: 0; filter: blur(14px); transform: translate3d(42px, 28px, -50px) scale(.92); }
  54%, 88% { opacity: 1; filter: blur(0); transform: translate3d(0, 0, 0) scale(1); }
  96%, 100% { opacity: 0; filter: blur(8px); transform: translate3d(0, -12px, 0) scale(.98); }
}

@keyframes motion-dashboard-float {
  0%, 100% { transform: perspective(900px) rotateY(-8deg) rotateX(3deg) rotateZ(3deg) translate3d(0, 0, 0); }
  50% { transform: perspective(900px) rotateY(-6deg) rotateX(2deg) rotateZ(2deg) translate3d(-4px, -10px, 0); }
}

@keyframes motion-chart-draw {
  0%, 50% { stroke-dashoffset: 1; opacity: .25; }
  66%, 94% { stroke-dashoffset: 0; opacity: 1; }
  100% { stroke-dashoffset: -.08; opacity: .25; }
}

@keyframes motion-bars {
  0%, 47% { transform: scaleY(.08); opacity: .2; }
  66%, 92% { transform: scaleY(1); opacity: 1; }
  100% { transform: scaleY(.84); opacity: .4; }
}

@keyframes motion-ring-pulse {
  0%, 100% { transform: scale(.96); filter: brightness(.85); }
  50% { transform: scale(1.04); filter: brightness(1.15); }
}

@keyframes motion-profit-pulse {
  0%, 100% { box-shadow: inset 0 1px 0 rgba(255,255,255,.25), 0 0 14px rgba(227,192,122,.12); }
  50% { box-shadow: inset 0 1px 0 rgba(255,255,255,.4), 0 0 28px rgba(227,192,122,.42); }
}

@keyframes motion-mini-float {
  0%, 100% { translate: 0 0; }
  50% { translate: 2px -9px; }
}

@keyframes motion-mini-bars {
  0%, 100% { filter: brightness(.82); transform: scaleY(.86); transform-origin: bottom; }
  50% { filter: brightness(1.18); transform: scaleY(1.04); transform-origin: bottom; }
}

/* Problem */
.problem {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 80%, rgba(211, 169, 99, 0.2), transparent 34%),
    radial-gradient(circle at 4% 100%, rgba(128, 22, 51, 0.46), transparent 34%),
    #080809;
  padding: 5rem 0;
}

.problem::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.24;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: linear-gradient(#000, transparent 82%);
}

.problem-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: center;
  gap: clamp(3rem, 8vw, 8rem);
}

.problem-heading h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.5rem, 5.5vw, 6rem);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 0.92;
}

.problem-heading h2 span {
  color: #beb8b4;
}

.symptom-scene {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  transform: rotate(-1.4deg);
}

.symptom-card {
  position: relative;
  min-height: 195px;
  overflow: hidden;
  border-radius: 0.72rem;
  padding: 1.25rem;
  animation: card-hover 5.2s ease-in-out infinite;
}

.symptom-card:nth-child(2) { animation-delay: -1.1s; }
.symptom-card:nth-child(3) { animation-delay: -2.2s; }
.symptom-card:nth-child(4) { animation-delay: -3.3s; }

.symptom-card:nth-child(2),
.symptom-card:nth-child(4) {
  transform: translateY(26px);
}

.symptom-card::after {
  content: "";
  position: absolute;
  width: 88px;
  height: 88px;
  top: -34px;
  right: -28px;
  border-radius: 50%;
  background: rgba(255, 35, 78, 0.82);
  filter: blur(26px);
  animation: danger-glow 1.65s ease-in-out infinite;
}

.symptom-card::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  width: 44%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 101, 128, 0.95));
  box-shadow: 0 0 14px rgba(255, 42, 86, 0.7);
  animation: danger-line 1.65s ease-in-out infinite;
}

.card-number {
  color: #dfd5ce;
  font-family: var(--serif);
  font-size: 2.15rem;
  line-height: 1;
}

.warning-icon {
  position: absolute;
  z-index: 2;
  top: 1rem;
  right: 1rem;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(255, 145, 164, 0.44);
  border-radius: 50%;
  background: rgba(59, 5, 18, 0.56);
  box-shadow: 0 0 0 0 rgba(255, 60, 96, 0.5);
  animation: danger-beacon 1.65s ease-in-out infinite;
}

.warning-icon svg {
  width: 23px;
  height: 23px;
  fill: rgba(255, 47, 86, 0.2);
  stroke: #ffd4dc;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.symptom-card p {
  position: relative;
  z-index: 2;
  max-width: 205px;
  margin: 2.8rem 0 0;
  color: #ebe5e0;
  font-size: 0.95rem;
  line-height: 1.38;
}

@keyframes card-hover {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -8px; }
}

@keyframes danger-glow {
  0%, 100% { opacity: 0.4; transform: scale(0.82); }
  50% { opacity: 1; transform: scale(1.18); }
}

@keyframes danger-line {
  0%, 100% { opacity: 0.28; }
  50% { opacity: 1; }
}

@keyframes danger-beacon {
  0%, 100% { opacity: 0.72; box-shadow: 0 0 0 0 rgba(255, 60, 96, 0.52), 0 0 13px rgba(255, 42, 86, 0.2); }
  50% { opacity: 1; box-shadow: 0 0 0 9px rgba(255, 60, 96, 0), 0 0 24px rgba(255, 42, 86, 0.86); }
}

/* Learning */
.learning {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 51% 108%, rgba(228, 193, 127, 0.54), transparent 31%),
    linear-gradient(135deg, #0a0809, #2b0d18 52%, #0b0909);
  padding: 5rem 0 3.4rem;
}

.learning-glow {
  position: absolute;
  width: 520px;
  height: 220px;
  right: 16%;
  bottom: -80px;
  border-radius: 50%;
  background: rgba(222, 185, 118, 0.34);
  filter: blur(56px);
}

.section-heading {
  position: relative;
  z-index: 1;
  text-align: center;
}

.section-heading h2 {
  max-width: 780px;
  margin: 0 auto;
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 4.1rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1;
}

.learning-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 3.2rem;
}

.learning-card {
  position: relative;
  min-height: 210px;
  overflow: hidden;
  border-radius: 0.75rem;
  padding: 1.35rem;
  animation: card-hover 6s ease-in-out infinite;
}

.learning-card:nth-child(2) { animation-delay: -1.2s; }
.learning-card:nth-child(3) { animation-delay: -2.4s; }
.learning-card:nth-child(4) { animation-delay: -3.6s; }

.learning-card:nth-child(3) {
  background: linear-gradient(145deg, rgba(236, 217, 181, 0.44), rgba(255, 255, 255, 0.055));
}

.learning-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.learning-icon {
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 2.35rem;
  line-height: 1;
}

.learning-card small {
  color: #d7cec8;
  font-size: 0.76rem;
}

.learning-card p {
  margin: 2.2rem 0 1.6rem;
  font-size: 0.98rem;
  line-height: 1.42;
}

.card-progress {
  position: absolute;
  right: 1.35rem;
  bottom: 1.2rem;
  left: 1.35rem;
  height: 2px;
  overflow: hidden;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.15);
}

.card-progress::after {
  content: "";
  display: block;
  width: 44%;
  height: 100%;
  background: linear-gradient(90deg, var(--gold), transparent);
}

/* Motion composition — problem */
.problem-motion {
  position: relative;
  width: min(100%, 690px);
  aspect-ratio: 1 / 1.04;
  margin-inline: auto;
  isolation: isolate;
}

.problem-motion-glow {
  position: absolute;
  z-index: -1;
  width: 88%;
  height: 80%;
  top: 8%;
  right: -10%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(192, 57, 43, .43), rgba(128, 22, 51, .19) 42%, transparent 70%);
  filter: blur(22px);
  animation: problem-glow-pulse 5s ease-in-out infinite;
}

.problem-motion-card {
  position: absolute;
  width: 52%;
  min-height: 29%;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 1.45rem;
  padding: 4.6% 5%;
  background: linear-gradient(135deg, rgba(255, 255, 255, .13), rgba(255, 255, 255, .035) 62%);
  box-shadow: 0 28px 62px rgba(0, 0, 0, .55), 0 0 46px rgba(192, 57, 43, .12), inset 0 1px 1px rgba(255, 255, 255, .25);
  backdrop-filter: blur(18px) saturate(135%);
  -webkit-backdrop-filter: blur(18px) saturate(135%);
  transform-origin: center;
  will-change: opacity, transform, filter;
}

.problem-motion-card::after {
  content: "";
  position: absolute;
  top: -25%;
  bottom: -25%;
  left: -45%;
  width: 38%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .18), transparent);
  transform: rotate(9deg);
  animation: problem-glass-sweep 12s ease-in-out infinite;
  pointer-events: none;
}

.problem-motion-card--1 { left: 1%; top: 2%; animation: problem-card-one 12s ease-in-out infinite; }
.problem-motion-card--2 { right: 0; top: 27%; animation: problem-card-two 12s ease-in-out infinite; }
.problem-motion-card--3 { left: 4%; top: 51%; animation: problem-card-three 12s ease-in-out infinite; }
.problem-motion-card--4 { right: 2%; top: 69%; animation: problem-card-four 12s ease-in-out infinite; }

.problem-motion-card .card-number {
  position: relative;
  z-index: 2;
  color: #ddb98a;
  font-size: clamp(2.25rem, 4.2vw, 4.25rem);
}

.problem-motion-card p {
  position: relative;
  z-index: 2;
  max-width: 88%;
  margin: 12% 0 0;
  color: rgba(247, 242, 237, .95);
  font-size: clamp(.83rem, 1.35vw, 1.15rem);
  line-height: 1.38;
}

.motion-warning {
  position: absolute;
  z-index: 3;
  top: 12%;
  right: 10%;
  display: grid;
  width: clamp(2.1rem, 4.2vw, 3.4rem);
  aspect-ratio: 1;
  place-items: center;
  padding-top: .3em;
  color: #270608;
  font-size: clamp(1rem, 2vw, 1.65rem);
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(145deg, #ff655d, #9a1724);
  clip-path: polygon(50% 4%, 97% 91%, 3% 91%);
  filter: drop-shadow(0 0 14px rgba(255, 55, 72, .75));
  animation: problem-warning-blink 1.65s ease-in-out infinite;
}

@keyframes problem-card-one {
  0%, 2% { opacity: 0; filter: blur(10px); transform: translate3d(0, -120px, 0) rotate(-12deg) scale(.92); }
  11%, 86% { opacity: 1; filter: blur(0); transform: translate3d(0, 0, 0) rotate(-4deg) scale(1); }
  54% { transform: translate3d(0, -8px, 0) rotate(-3deg) scale(1); }
  96%, 100% { opacity: 0; filter: blur(7px); transform: translate3d(0, -16px, 0) rotate(-4deg) scale(.98); }
}

@keyframes problem-card-two {
  0%, 14% { opacity: 0; filter: blur(10px); transform: translate3d(0, -120px, 0) rotate(-7deg) scale(.92); }
  23%, 86% { opacity: 1; filter: blur(0); transform: translate3d(0, 0, 0) rotate(3deg) scale(1); }
  58% { transform: translate3d(0, -8px, 0) rotate(4deg) scale(1); }
  96%, 100% { opacity: 0; filter: blur(7px); transform: translate3d(0, -16px, 0) rotate(3deg) scale(.98); }
}

@keyframes problem-card-three {
  0%, 27% { opacity: 0; filter: blur(10px); transform: translate3d(0, -120px, 0) rotate(-10deg) scale(.92); }
  36%, 86% { opacity: 1; filter: blur(0); transform: translate3d(0, 0, 0) rotate(-3deg) scale(1); }
  63% { transform: translate3d(0, -8px, 0) rotate(-2deg) scale(1); }
  96%, 100% { opacity: 0; filter: blur(7px); transform: translate3d(0, -16px, 0) rotate(-3deg) scale(.98); }
}

@keyframes problem-card-four {
  0%, 40% { opacity: 0; filter: blur(10px); transform: translate3d(0, -120px, 0) rotate(-5deg) scale(.92); }
  49%, 86% { opacity: 1; filter: blur(0); transform: translate3d(0, 0, 0) rotate(4deg) scale(1); }
  69% { transform: translate3d(0, -8px, 0) rotate(3deg) scale(1); }
  96%, 100% { opacity: 0; filter: blur(7px); transform: translate3d(0, -16px, 0) rotate(4deg) scale(.98); }
}

@keyframes problem-glass-sweep {
  0%, 52% { opacity: 0; transform: translateX(0) rotate(9deg); }
  68% { opacity: .7; }
  88%, 100% { opacity: 0; transform: translateX(420%) rotate(9deg); }
}

@keyframes problem-warning-blink {
  0%, 100% { opacity: .58; filter: drop-shadow(0 0 8px rgba(255, 55, 72, .35)); }
  50% { opacity: 1; filter: drop-shadow(0 0 23px rgba(255, 55, 72, 1)); }
}

@keyframes problem-glow-pulse {
  0%, 100% { opacity: .52; transform: scale(.92); }
  50% { opacity: 1; transform: scale(1.08); }
}

/* Motion composition — learning */
.learning-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(270px, .72fr) minmax(560px, 1.28fr);
  align-items: center;
  gap: clamp(2.5rem, 6vw, 6rem);
}

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

.learning-heading h2 {
  margin-inline: 0;
  font-size: clamp(3rem, 4.8vw, 5.1rem);
}

.mentorship-motion {
  position: relative;
  width: min(100%, 760px);
  aspect-ratio: 1 / 1;
  margin-inline: auto;
  isolation: isolate;
}

.mentorship-motion::before,
.mentorship-motion::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.mentorship-motion::before {
  z-index: -2;
  inset: -6%;
  background:
    radial-gradient(circle at 82% 12%, rgba(230, 190, 120, .27), transparent 34%),
    radial-gradient(circle at 15% 60%, rgba(121, 14, 41, .48), transparent 46%);
  filter: blur(12px);
}

.mentorship-motion::after {
  z-index: 0;
  inset: 0;
  opacity: .5;
  background-image:
    radial-gradient(circle at 16% 18%, #e6be78 0 1.5px, transparent 2px),
    radial-gradient(circle at 78% 12%, #f0dca0 0 1.2px, transparent 2px),
    radial-gradient(circle at 90% 56%, #e6be78 0 1.7px, transparent 2px),
    radial-gradient(circle at 26% 88%, #f0dca0 0 1.3px, transparent 2px),
    radial-gradient(circle at 62% 73%, #e6be78 0 1px, transparent 2px);
  animation: mentorship-particles 5s ease-in-out infinite;
}

.mentorship-ambient {
  position: absolute;
  z-index: -1;
  width: 78%;
  height: 68%;
  top: -5%;
  right: -7%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(230, 190, 120, .24), transparent 68%);
  filter: blur(12px);
  animation: mentorship-ambient-pulse 6s ease-in-out infinite;
}

.mentorship-lines {
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.mentorship-lines path {
  fill: none;
  stroke: rgba(230, 190, 120, .6);
  stroke-width: 1.5;
  stroke-dasharray: 1600;
  stroke-dashoffset: 1600;
  filter: drop-shadow(0 0 5px rgba(230, 190, 120, .32));
  animation: mentorship-line-draw 17s ease-in-out infinite;
}

.mentorship-panel {
  position: absolute;
  z-index: 0;
  width: 25%;
  height: 17%;
  border: 1px solid rgba(230, 190, 120, .17);
  border-radius: .85rem;
  background:
    linear-gradient(120deg, transparent 46%, rgba(230, 190, 120, .32) 47% 49%, transparent 50%),
    rgba(255, 244, 224, .035);
  opacity: .58;
  animation: mentorship-panel-float 7s ease-in-out infinite;
}

.mentorship-panel--1 { left: 0; top: 24%; }
.mentorship-panel--2 { right: -2%; top: 4%; animation-delay: -2.1s; }
.mentorship-panel--3 { right: 5%; bottom: 1%; animation-delay: -4.2s; }

.mentorship-card {
  position: absolute;
  z-index: 3;
  width: 45%;
  height: 35%;
  overflow: hidden;
  border: 1px solid rgba(230, 190, 120, .5);
  border-radius: 1.25rem;
  padding: 4.6% 5%;
  background: linear-gradient(150deg, rgba(255, 244, 224, .13), rgba(255, 244, 224, .035));
  box-shadow: 0 28px 58px -18px rgba(0, 0, 0, .62), inset 0 1px 0 rgba(255, 255, 255, .1);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  will-change: opacity, transform, filter;
}

.mentorship-card::before {
  content: "";
  position: absolute;
  width: 42%;
  height: 4px;
  top: -2px;
  left: 12%;
  border-radius: 50%;
  background: #f0dca0;
  box-shadow: 0 0 18px rgba(240, 220, 160, .92);
}

.mentorship-card--1 { left: 4%; top: 7%; animation: mentorship-card-one 17s ease-in-out infinite; }
.mentorship-card--2 { right: 2%; top: 15%; animation: mentorship-card-two 17s ease-in-out infinite; }
.mentorship-card--3 { left: 4%; top: 53%; animation: mentorship-card-three 17s ease-in-out infinite; }
.mentorship-card--4 { right: 2%; top: 61%; animation: mentorship-card-four 17s ease-in-out infinite; }

.mentorship-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.mentorship-number {
  color: #e6be78;
  font-family: var(--serif);
  font-size: clamp(2.3rem, 4.2vw, 4rem);
  line-height: 1;
}

.mentorship-card p {
  max-width: 90%;
  margin: 8% 0 0;
  color: #f5eee6;
  font-size: clamp(.78rem, 1.25vw, 1.08rem);
  line-height: 1.35;
}

.mentorship-icon {
  position: relative;
  display: flex;
  width: clamp(2rem, 4vw, 3.1rem);
  height: clamp(2rem, 4vw, 3.1rem);
  align-items: flex-end;
  justify-content: center;
  gap: 8%;
  color: #e6be78;
  font-family: var(--serif);
  font-size: clamp(1.55rem, 3.3vw, 2.65rem);
  line-height: 1;
}

.mentorship-icon--bars i {
  width: 18%;
  height: 35%;
  border: 1px solid #e6be78;
  animation: mentorship-icon-bars 2.6s ease-in-out infinite;
}

.mentorship-icon--bars i:nth-child(2) { height: 52%; animation-delay: -.45s; }
.mentorship-icon--bars i:nth-child(3) { height: 72%; animation-delay: -.9s; }
.mentorship-icon--bars i:nth-child(4) { height: 94%; animation-delay: -1.35s; }

.mentorship-icon--coins i {
  position: absolute;
  width: 54%;
  aspect-ratio: 1;
  border: 2px solid #e6be78;
  border-radius: 50%;
  background: rgba(230, 190, 120, .09);
  animation: mentorship-coin-bob 2.8s ease-in-out infinite;
}

.mentorship-icon--coins i:first-child { left: 2%; bottom: 2%; }
.mentorship-icon--coins i:last-child { right: 2%; top: 2%; animation-delay: -1.4s; }

.mentorship-icon--megaphone {
  transform: rotate(-28deg);
  animation: mentorship-megaphone 2.4s ease-in-out infinite;
}

.mentorship-progress {
  position: absolute;
  right: 8%;
  bottom: 10%;
  left: 8%;
  display: flex;
  align-items: center;
  gap: 8%;
  color: #e6be78;
}

.mentorship-progress::before {
  content: "";
  flex: 1;
  height: 3px;
  border-radius: 99px;
  background: rgba(255, 255, 255, .16);
}

.mentorship-progress i {
  position: absolute;
  left: 0;
  width: 50%;
  height: 3px;
  border-radius: 99px;
  background: linear-gradient(90deg, #c2924d, #f0dca0);
  box-shadow: 0 0 10px rgba(230, 190, 120, .36);
  transform: scaleX(0);
  transform-origin: left;
  animation: mentorship-progress-fill 17s ease-in-out infinite;
}

.mentorship-progress b {
  font-size: 1.2rem;
  font-weight: 400;
}

@keyframes mentorship-card-one {
  0%, 1% { opacity: 0; filter: blur(10px); transform: translate3d(0, 22px, 0) scale(.94); }
  8%, 94% { opacity: 1; filter: blur(0); transform: translate3d(0, 0, 0) scale(1); }
  62% { transform: translate3d(0, -5px, 0) scale(1); }
  100% { opacity: 0; filter: blur(6px); transform: translate3d(0, -9px, 0) scale(.98); }
}

@keyframes mentorship-card-two {
  0%, 25% { opacity: 0; filter: blur(10px); transform: translate3d(70px, 18px, 0) scale(.94); }
  32%, 94% { opacity: 1; filter: blur(0); transform: translate3d(0, 0, 0) scale(1); }
  66% { transform: translate3d(0, -5px, 0) scale(1); }
  100% { opacity: 0; filter: blur(6px); transform: translate3d(0, -9px, 0) scale(.98); }
}

@keyframes mentorship-card-three {
  0%, 43% { opacity: 0; filter: blur(10px); transform: translate3d(0, 22px, 0) scale(.94); }
  50%, 94% { opacity: 1; filter: blur(0); transform: translate3d(0, 0, 0) scale(1); }
  72% { transform: translate3d(0, -5px, 0) scale(1); }
  100% { opacity: 0; filter: blur(6px); transform: translate3d(0, -9px, 0) scale(.98); }
}

@keyframes mentorship-card-four {
  0%, 61% { opacity: 0; filter: blur(10px); transform: translate3d(70px, 18px, 0) scale(.94); }
  68%, 94% { opacity: 1; filter: blur(0); transform: translate3d(0, 0, 0) scale(1); }
  80% { transform: translate3d(0, -5px, 0) scale(1); }
  100% { opacity: 0; filter: blur(6px); transform: translate3d(0, -9px, 0) scale(.98); }
}

@keyframes mentorship-line-draw {
  0%, 75% { opacity: 0; stroke-dashoffset: 1600; }
  84%, 94% { opacity: .72; stroke-dashoffset: 0; }
  100% { opacity: 0; stroke-dashoffset: -80; }
}

@keyframes mentorship-progress-fill {
  0%, 8% { transform: scaleX(0); }
  28%, 92% { transform: scaleX(1); }
  100% { transform: scaleX(.2); }
}

@keyframes mentorship-panel-float {
  0%, 100% { transform: translateY(0); opacity: .4; }
  50% { transform: translateY(-9px); opacity: .68; }
}

@keyframes mentorship-particles {
  0%, 100% { opacity: .34; transform: translateY(0); }
  50% { opacity: .7; transform: translateY(-6px); }
}

@keyframes mentorship-ambient-pulse {
  0%, 100% { opacity: .52; transform: scale(.94); }
  50% { opacity: 1; transform: scale(1.08); }
}

@keyframes mentorship-icon-bars {
  0%, 100% { opacity: .6; transform: scaleY(.72); transform-origin: bottom; }
  50% { opacity: 1; transform: scaleY(1); transform-origin: bottom; }
}

@keyframes mentorship-coin-bob {
  0%, 100% { transform: translateY(0) scale(.94); }
  50% { transform: translateY(-4px) scale(1.04); }
}

@keyframes mentorship-megaphone {
  0%, 100% { opacity: .72; transform: rotate(-28deg) scale(.94); }
  50% { opacity: 1; transform: rotate(-22deg) scale(1.06); }
}

/* Audience */
.audience {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% -12%, rgba(137, 31, 66, 0.46), transparent 38%),
    radial-gradient(circle at 92% 58%, rgba(208, 166, 94, 0.12), transparent 28%),
    linear-gradient(180deg, #080709 0%, #13070c 48%, #070607 100%);
  padding-bottom: 2.6rem;
}

.audience::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .45;
  background-image:
    linear-gradient(rgba(255, 255, 255, .018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .018) 1px, transparent 1px);
  background-size: 70px 70px;
  -webkit-mask-image: linear-gradient(to bottom, #000, transparent 72%);
  mask-image: linear-gradient(to bottom, #000, transparent 72%);
}

.audience-top {
  position: relative;
  z-index: 1;
  min-height: 0;
  background: transparent;
  color: var(--white);
  padding: 3.2rem 0 1rem;
}

.audience-heading {
  max-width: 960px;
  text-align: center;
}

.audience-heading .eyebrow {
  color: var(--gold-light);
}

.audience-heading h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4vw, 4rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  text-shadow: 0 18px 44px rgba(0, 0, 0, .4);
}

.audience-heading > p:last-child {
  max-width: 900px;
  margin: 0.85rem auto 0;
  color: #d8cfcb;
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.45;
}

.audience-cards {
  --carousel-edge: clamp(3rem, 8vw, 7rem);
  position: relative;
  z-index: 2;
  display: flex;
  width: min(1420px, 100%);
  max-width: none;
  gap: clamp(.75rem, 1.2vw, 1.1rem);
  margin-top: .3rem;
  overflow-x: auto;
  padding: 1.35rem var(--carousel-edge) 1.5rem;
  scroll-padding-inline: var(--carousel-edge);
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  perspective: 1300px;
  touch-action: pan-x;
  overscroll-behavior-x: contain;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 5%, #000 95%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 5%, #000 95%, transparent 100%);
}

.audience-cards::-webkit-scrollbar {
  display: none;
}

.audience-card {
  --lift: 0px;
  --depth: 0px;
  --scale: 1;
  --card-opacity: 1;
  --brightness: 1;
  --saturation: 1;
  position: relative;
  width: clamp(150px, 14vw, 205px);
  flex: 0 0 clamp(150px, 14vw, 205px);
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 1px solid rgba(240, 218, 177, 0.34);
  border-radius: 1.15rem;
  background: #151214;
  box-shadow: 0 28px 58px rgba(0, 0, 0, 0.42), inset 0 0 0 3px rgba(255, 255, 255, 0.055);
  isolation: isolate;
  scroll-snap-align: center;
  transform: perspective(1300px) translate3d(0, var(--lift), var(--depth)) scale(var(--scale));
  transform-style: preserve-3d;
  opacity: var(--card-opacity);
  filter: brightness(var(--brightness)) saturate(var(--saturation));
  transition: border-color 260ms ease, box-shadow 260ms ease, filter 160ms linear, opacity 160ms linear;
  will-change: transform, opacity;
}

.audience-card.is-active {
  border-color: rgba(240, 218, 177, 0.9);
  box-shadow: 0 32px 68px rgba(0, 0, 0, 0.56), 0 0 34px rgba(167, 43, 78, 0.22), 0 0 22px rgba(214, 183, 127, 0.14), inset 0 0 0 2px rgba(255, 255, 255, 0.08);
}

.audience-photo,
.audience-photo img {
  position: absolute;
}

.audience-photo {
  inset: 0;
  overflow: hidden;
}

.audience-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  user-select: none;
  pointer-events: none;
}

.audience-card::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 48% 0 0;
  background: linear-gradient(transparent, rgba(4, 4, 5, 0.94));
  pointer-events: none;
}

.audience-label {
  position: absolute;
  z-index: 2;
  right: 0.85rem;
  bottom: 0.85rem;
  left: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 0.65rem;
  background: linear-gradient(135deg, rgba(34, 18, 23, 0.74), rgba(8, 7, 8, 0.62));
  color: #fff;
  padding: 0.62rem 0.72rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.carousel-controls {
  position: relative;
  z-index: 3;
  display: flex;
  width: max-content;
  max-width: calc(100% - 30px);
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  color: #cfc6c1;
  font-size: 0.76rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Mentor */
.mentor {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 67% 28%, rgba(111, 29, 56, 0.82), transparent 43%),
    #050506;
  padding: 1.2rem;
}

.mentor-frame {
  position: relative;
  width: min(1260px, 100%);
  min-height: 720px;
  margin-inline: auto;
  overflow: hidden;
  border: 1px solid rgba(214, 183, 127, 0.34);
  border-radius: 0.8rem;
  background: linear-gradient(90deg, rgba(4, 4, 5, 0.98), rgba(24, 7, 14, 0.72));
}

.mentor-frame > .eyebrow {
  position: absolute;
  z-index: 5;
  top: 2.25rem;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.mentor-watermark {
  position: absolute;
  z-index: 1;
  top: 70px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.075);
  font-family: var(--serif);
  font-size: clamp(6rem, 12vw, 11rem);
  letter-spacing: -0.07em;
  line-height: 0.72;
  text-align: center;
}

.mentor-portrait {
  position: absolute;
  z-index: 2;
  top: 52px;
  left: 50%;
  width: 420px;
  height: 570px;
  transform: translateX(-50%);
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 78%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000 0%, #000 78%, transparent 100%);
}

.mentor-portrait img {
  position: absolute;
  display: block;
  width: 100%;
  max-width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: contain;
  object-position: center top;
  user-select: none;
  pointer-events: none;
}

.mentor-copy {
  position: absolute;
  z-index: 4;
  right: 8%;
  bottom: 3.2rem;
  left: 8%;
  text-align: center;
}

.mentor-copy h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.2rem, 5.3vw, 5.8rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.9;
}

.mentor-copy h2 em {
  color: var(--gold-light);
  font-style: normal;
}

.mentor-copy p {
  max-width: 720px;
  margin: 1.5rem auto 0;
  color: #d2cac5;
  font-size: 1rem;
  line-height: 1.65;
}

/* Registration */
.registration {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 48%, rgba(146, 28, 61, 0.58), transparent 34%),
    linear-gradient(115deg, #070708, #270b15 49%, #070708);
  padding: 5rem 0;
}

.registration::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 72px 72px;
}

.registration-glow {
  position: absolute;
  width: 480px;
  height: 480px;
  right: 7%;
  top: 13%;
  border-radius: 50%;
  background: rgba(158, 43, 72, 0.35);
  filter: blur(64px);
}

.registration-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: clamp(3rem, 7vw, 7rem);
}

.registration-heading h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3rem, 4.8vw, 5.2rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.94;
}

.form-scene {
  position: relative;
  min-height: 660px;
  display: grid;
  place-items: center;
}

.form-ghost {
  position: absolute;
  width: 75%;
  height: 72%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 0.8rem;
  background: rgba(255, 255, 255, 0.075);
  backdrop-filter: blur(12px);
}

.form-ghost--left {
  left: 0;
  transform: rotate(-4deg);
  animation: ghost-left 6s ease-in-out infinite;
}

.form-ghost--right {
  right: 0;
  transform: rotate(4deg);
  animation: ghost-right 6s ease-in-out infinite;
}

@keyframes ghost-left {
  0%, 100% { transform: rotate(-4deg) translateX(0); }
  50% { transform: rotate(-2deg) translateX(9px); }
}

@keyframes ghost-right {
  0%, 100% { transform: rotate(4deg) translateX(0); }
  50% { transform: rotate(2deg) translateX(-9px); }
}

.lead-form {
  position: relative;
  z-index: 2;
  width: min(100%, 600px);
  border-radius: 0.9rem;
  padding: clamp(1.35rem, 4vw, 2.5rem);
}

.field {
  position: relative;
  margin-bottom: 0.9rem;
}

.field label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.field--question label {
  position: static;
  display: block;
  width: auto;
  height: auto;
  margin: 0 0 0.5rem;
  overflow: visible;
  clip: auto;
  clip-path: none;
  color: #f0e9e4;
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.38;
  white-space: normal;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 3.3rem;
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 0.5rem;
  background: rgba(15, 12, 13, 0.34);
  color: var(--white);
  padding: 0.85rem 1rem;
  font-size: 0.95rem;
  outline: none;
}

.field textarea {
  min-height: 5.7rem;
  resize: vertical;
  line-height: 1.45;
}

.field select {
  background-image:
    linear-gradient(45deg, transparent 50%, #ddd 50%),
    linear-gradient(135deg, #ddd 50%, transparent 50%);
  background-position: calc(100% - 18px) 50%, calc(100% - 13px) 50%;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}

.field select option {
  background: #21171b;
  color: white;
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(255, 255, 255, 0.74);
}

.field-error {
  display: none;
  margin: 0.35rem 0.1rem 0;
  color: #ffc3ce;
  font-size: 0.76rem;
}

.field.is-invalid .field-error {
  display: block;
}

.field.is-invalid input,
.field.is-invalid select,
.field.is-invalid textarea {
  border-color: #f28aa1;
}

.privacy-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  margin: 0.9rem 0 0;
  color: #d0c7c2;
  font-size: 0.8rem;
  text-align: center;
}

.privacy-note svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: var(--gold-light);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.form-status {
  display: none;
  margin-top: 1rem;
  border: 1px solid rgba(240, 218, 177, 0.38);
  border-radius: 0.45rem;
  background: rgba(240, 218, 177, 0.1);
  color: #f3dfbd;
  padding: 0.85rem;
  font-size: 0.86rem;
  text-align: center;
}

.form-status.is-visible {
  display: block;
}

.form-status.is-error {
  border-color: rgba(242, 138, 161, 0.55);
  background: rgba(107, 20, 43, 0.28);
  color: #ffd6df;
}

/* Footer */
.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: #050506;
  padding: 2.5rem 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.footer-inner > p {
  margin: 0;
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 1.6rem;
  line-height: 1.05;
  text-align: center;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms cubic-bezier(.2, .8, .2, 1), transform 700ms cubic-bezier(.2, .8, .2, 1);
}

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

.symptom-card.reveal.is-visible:nth-child(odd) {
  transform: rotate(-1deg);
}

.symptom-card.reveal.is-visible:nth-child(even) {
  transform: translateY(26px) rotate(1deg);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
  .motion-card,
  .motion-dashboard { opacity: 1 !important; filter: none !important; transform: none !important; }
  .motion-connectors path,
  .chart-line,
  .dashboard-tile--spark path { opacity: .78 !important; stroke-dashoffset: 0 !important; }
  .dashboard-tile--numbers i { opacity: 1 !important; transform: scaleY(1) !important; }
  .adn-hero-motion video,
  .problem-motion-card,
  .mentorship-card { opacity: 1 !important; filter: none !important; transform: none !important; animation: none !important; }
  .mentorship-lines path { opacity: .72 !important; stroke-dashoffset: 0 !important; animation: none !important; }
  .mentorship-progress i { transform: scaleX(1) !important; animation: none !important; }
}

@media (max-width: 1020px) {
  .hero-backdrop-motion {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    grid-template-areas: "copy" "visual" "actions";
    gap: 2.5rem;
  }

  .hero-copy {
    max-width: 780px;
  }

  .hero-visual {
    display: block;
    width: min(100%, 700px);
    margin-inline: auto;
  }

  .problem-shell,
  .learning-shell,
  .registration-shell {
    grid-template-columns: 1fr;
  }

  .problem-shell {
    gap: 2.5rem;
  }

  .registration-shell {
    gap: 2.25rem;
  }

  .problem-heading,
  .learning-heading,
  .registration-heading {
    max-width: 760px;
  }

  .symptom-scene,
  .problem-motion,
  .mentorship-motion,
  .form-scene {
    width: min(100%, 760px);
    margin-inline: auto;
  }

  .learning-shell {
    gap: 2.2rem;
  }

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

@media (max-width: 760px) {
  .shell {
    width: min(100% - 30px, 680px);
  }

  .jm-mark { font-size: 1.55rem; }
  .brand-name { font-size: 0.65rem; }
  .brand-divider { height: 28px; margin-inline: 0.18rem; }
  .adn-name { font-size: 0.95rem; }

  .hero {
    min-height: 100svh;
  }

  .hero::after {
    inset: 7px;
  }

  .hero-grid {
    min-height: 100svh;
    grid-template-areas: "copy" "visual" "lead" "actions";
    grid-template-rows: auto auto auto auto;
    align-content: stretch;
    gap: 0.5rem;
    padding: 1.2rem 0 1.35rem;
  }

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

  .hero h1 {
    font-size: clamp(2.8rem, 12.5vw, 4.1rem);
    line-height: 0.92;
    text-align: center;
  }

  .hero-lead {
    margin: 1rem auto 0;
    font-size: 1rem;
    line-height: 1.5;
  }

  .hero-lead--desktop {
    display: none;
  }

  .hero-lead--mobile {
    display: block;
    grid-area: lead;
    margin: 0.15rem auto 0;
    text-align: center;
  }

  .hero-visual {
    width: min(100%, 520px);
    height: auto;
    min-height: 0;
    max-height: none;
    aspect-ratio: 1 / 1;
  }

  .adn-hero-motion {
    inset: -3% -8%;
    border-radius: 0;
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 10%, #000 90%, transparent 100%);
    mask-image: linear-gradient(to bottom, transparent 0%, #000 10%, #000 90%, transparent 100%);
  }

  .adn-hero-motion video {
    width: auto;
    max-width: none;
    height: 100%;
    left: auto;
    right: 7%;
    object-fit: contain;
    transform: none;
  }

  .motion-card {
    min-height: 15.5%;
    padding-inline: 3.4%;
  }

  .motion-card strong {
    font-size: clamp(.68rem, 2.7vw, .86rem);
  }

  .motion-card--work { width: 43%; }
  .motion-card--sales { width: 47%; }
  .motion-card--salary { width: 53%; left: 5%; }

  .motion-dashboard {
    width: 56%;
    height: 68%;
    top: 16%;
    right: -2%;
  }

  .dashboard-profit { right: 0; }
  .dashboard-mini--bars { right: -3%; }

  .hero-actions {
    padding-top: 0;
  }

  .hero-actions .button {
    width: 100%;
  }

  .trust-row {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    gap: clamp(0.25rem, 1.8vw, 0.55rem);
    margin-top: 0.65rem;
    font-size: clamp(0.57rem, 2.7vw, 0.69rem);
    white-space: nowrap;
  }

  .problem,
  .learning,
  .registration {
    padding: 3.8rem 0;
  }

  .learning {
    padding-bottom: 2.6rem;
  }

  .problem-shell {
    gap: 1.6rem;
  }

  .problem-heading {
    text-align: center;
  }

  .problem-heading h2 {
    font-size: clamp(3.25rem, 15vw, 5rem);
  }

  .problem-motion {
    width: min(100%, 520px);
    aspect-ratio: 1 / 1.08;
  }

  .problem-motion-card {
    width: 54%;
    min-height: 29%;
    border-radius: 1rem;
  }

  .problem-motion-card p {
    font-size: clamp(.76rem, 3.45vw, .94rem);
  }

  .symptom-scene {
    display: block;
    max-width: 520px;
    transform: none;
  }

  .symptom-card {
    width: 87%;
    min-height: 150px;
    margin-bottom: 1rem;
    border-radius: 1rem;
  }

  .symptom-card:nth-child(even) {
    margin-left: auto;
    transform: translateY(0) rotate(1.5deg);
  }

  .symptom-card:nth-child(odd) {
    transform: rotate(-1deg);
  }

  .symptom-card.reveal.is-visible:nth-child(even) {
    transform: rotate(1.5deg);
  }

  .symptom-card.reveal.is-visible:nth-child(odd) {
    transform: rotate(-1deg);
  }

  .symptom-card p {
    margin-top: 1.65rem;
  }

  .section-heading h2 {
    font-size: clamp(2.4rem, 11vw, 3.7rem);
  }

  .learning-shell {
    gap: 1.4rem;
  }

  .learning-heading {
    text-align: center;
  }

  .learning-heading h2 {
    margin-inline: auto;
  }

  .mentorship-motion {
    width: min(100%, 520px);
    aspect-ratio: 4 / 5;
  }

  .mentorship-card {
    width: 49%;
    height: 34%;
    border-radius: .9rem;
    padding: 4.5%;
  }

  .mentorship-card--1,
  .mentorship-card--3 { left: 1%; }

  .mentorship-card--2,
  .mentorship-card--4 { right: 1%; }

  .mentorship-card p {
    max-width: 96%;
    margin-top: 7%;
    font-size: clamp(.7rem, 3.05vw, .9rem);
  }

  .mentorship-number {
    font-size: clamp(2rem, 9vw, 3rem);
  }

  .learning-grid {
    grid-template-columns: 1fr;
    gap: 0.85rem;
    margin-top: 2.4rem;
  }

  .learning-card {
    min-height: 155px;
    border-radius: 1rem;
  }

  .learning-card p {
    margin: 1rem 0 1.2rem;
  }

  .audience {
    padding-bottom: 2.25rem;
  }

  .audience-top {
    min-height: 0;
    padding: 2.6rem 0 0.75rem;
  }

  .audience-heading h2 {
    font-size: clamp(1.5rem, 7vw, 2.2rem);
    letter-spacing: -0.045em;
    white-space: nowrap;
  }

  .audience-heading > p:last-child {
    max-width: 34rem;
    font-size: 1.05rem;
    line-height: 1.5;
  }

  .audience-cards {
    --carousel-edge: 12vw;
    width: 100%;
    max-width: none;
    display: flex;
    gap: 0.7rem;
    margin-top: 0;
    overflow-x: auto;
    padding: 1rem var(--carousel-edge) 1.35rem;
    scroll-padding-inline: 12vw;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    perspective: 1200px;
    touch-action: pan-x;
    overscroll-behavior-x: contain;
  }

  .audience-cards::-webkit-scrollbar {
    display: none;
  }

  .audience-card {
    --abs: 0;
    --lift: 0px;
    --depth: 0px;
    --scale: 1;
    --card-opacity: 1;
    --brightness: 1;
    --saturation: 1;
    width: min(72vw, 290px);
    flex: 0 0 min(72vw, 290px);
    scroll-snap-align: center;
    transform: perspective(1200px) translate3d(0, var(--lift), var(--depth)) scale(var(--scale));
    transform-style: preserve-3d;
    opacity: var(--card-opacity);
    filter: brightness(var(--brightness)) saturate(var(--saturation));
    transition: border-color 220ms ease, box-shadow 220ms ease, filter 120ms linear, opacity 120ms linear;
    will-change: transform, opacity;
  }

  .audience-card.is-active {
    border-color: rgba(240, 218, 177, 0.86);
    box-shadow: 0 28px 64px rgba(0, 0, 0, 0.5), 0 0 30px rgba(214, 183, 127, 0.18), inset 0 0 0 3px rgba(255, 255, 255, 0.09);
  }

  .audience-label {
    right: 0.7rem;
    bottom: 0.7rem;
    left: 0.7rem;
    font-size: 0.88rem;
  }

  .carousel-controls {
    display: flex;
    width: max-content;
    max-width: calc(100% - 30px);
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: #cfc6c1;
    font-size: 0.78rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }

  .mentor {
    padding: 0.7rem;
  }

  .mentor-frame {
    min-height: 720px;
  }

  .mentor-frame > .eyebrow {
    top: 1.6rem;
  }

  .mentor-watermark {
    top: 82px;
    width: calc(100% - 1.4rem);
    font-size: clamp(3.15rem, 15.8vw, 4.75rem);
    letter-spacing: -0.055em;
    line-height: 0.76;
    white-space: nowrap;
  }

  .mentor-portrait {
    top: 72px;
    width: 310px;
    height: 460px;
  }

  .mentor-copy {
    right: 1.2rem;
    bottom: 3rem;
    left: 1.2rem;
  }

  .mentor-copy h2 {
    font-size: clamp(3rem, 13.7vw, 4.6rem);
  }

  .mentor-copy p {
    font-size: 0.98rem;
    line-height: 1.58;
  }

  .registration-shell {
    gap: 1.5rem;
  }

  .registration-heading {
    text-align: center;
  }

  .registration-heading h2 {
    font-size: clamp(2.8rem, 12vw, 4.2rem);
  }

  .form-scene {
    min-height: 650px;
  }

  .form-ghost {
    width: 90%;
    height: 370px;
  }

  .lead-form {
    border-radius: 1rem;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 390px) {
  .hero-grid {
    grid-template-rows: auto auto auto auto;
    padding-top: 1rem;
  }

  .hero h1 {
    font-size: clamp(2.55rem, 12vw, 3.15rem);
  }

  .mentor-frame {
    min-height: 700px;
  }

  .mentor-portrait {
    width: 285px;
    height: 430px;
  }

  .field input,
  .field select,
  .field textarea {
    font-size: 0.88rem;
  }
}
