:root {
  color-scheme: light;
  --intro-opacity: 1;
  --intro-screen-opacity: 1;
  --intro-scale: 1;
  --intro-shift: 0px;
  --intro-blur: 0px;
  --intro-brand-opacity: 1;
  --intro-progress: 0;
  --pointer-x: 50%;
  --pointer-y: 36%;
  --ink: #070707;
  --muted: #555555;
  --paper: #ffffff;
  --soft: #f4f4f4;
  --soft-2: #e8e8e8;
  --line: #d6d6d6;
  --line-dark: #232323;
  --black: #000000;
  --white: #ffffff;
  --silver: #b8bec4;
  --shadow: 0 26px 70px rgba(0, 0, 0, 0.16);
  --shadow-soft: 0 16px 45px rgba(0, 0, 0, 0.09);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body::selection {
  background: var(--black);
  color: var(--white);
}

.cursor-glow {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 30;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.075) 28%, transparent 66%);
  transform: translate3d(-999px, -999px, 0);
  transition: opacity 180ms ease;
  will-change: transform, opacity;
}

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

img {
  display: block;
  max-width: 100%;
}

section[id] {
  scroll-margin-top: 88px;
}

.how-slide[id],
.program-slide[id],
#program-intro {
  scroll-margin-top: 0;
}

main {
  position: relative;
  z-index: 10;
  background: var(--paper);
}

.opening-stage {
  height: 162vh;
  margin-bottom: -180px;
  background: #050505;
}

.opening-screen {
  position: sticky;
  top: 0;
  display: grid;
  height: 100vh;
  min-height: 100svh;
  align-content: center;
  padding: clamp(26px, 5vw, 72px);
  overflow: hidden;
  background:
    radial-gradient(circle at 52% 45%, rgba(255, 255, 255, 0.2), transparent 18%),
    radial-gradient(circle at 82% 20%, rgba(255, 255, 255, 0.12), transparent 26%),
    linear-gradient(115deg, rgba(255, 255, 255, 0.055) 0 1px, transparent 1px 100%),
    #050505;
  background-size: auto, auto, 34px 34px, auto;
  color: var(--white);
  opacity: var(--intro-screen-opacity);
  transform: translateZ(0);
}

.opening-screen,
.how-slide,
.program-slide,
.ai-slide,
.program-bridge {
  isolation: isolate;
}

.opening-screen::before {
  content: "";
  position: absolute;
  inset: 9% 6%;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  transform: rotate(-9deg) scaleX(1.34);
  pointer-events: none;
  animation: slow-orbit 18s ease-in-out infinite alternate;
}

.opening-screen::after {
  content: "GOAL";
  position: absolute;
  right: -0.08em;
  bottom: clamp(96px, 12vw, 150px);
  color: rgba(255, 255, 255, 0.035);
  font-size: clamp(92px, 19vw, 270px);
  font-weight: 950;
  line-height: 1;
  pointer-events: none;
}

.opening-brand {
  position: absolute;
  top: clamp(18px, 3.3vw, 36px);
  left: clamp(22px, 5vw, 72px);
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  color: var(--white);
  opacity: var(--intro-brand-opacity);
  transform: translateY(calc(var(--intro-shift) * -0.18));
  transition: opacity 120ms linear;
}

.opening-brand::after {
  content: "";
  position: absolute;
  left: calc(clamp(96px, 8.8vw, 150px) + 18px);
  right: -18px;
  bottom: -12px;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.48), transparent);
  opacity: 0;
  transform: scaleX(0.35);
  transform-origin: left;
  transition:
    opacity 260ms ease,
    transform 260ms ease;
}

.opening-brand img {
  width: clamp(96px, 8.8vw, 150px);
  height: clamp(96px, 8.8vw, 150px);
  object-fit: contain;
  filter: none;
  transform: translateZ(0);
  transition: opacity 260ms ease;
}

.opening-brand > span {
  display: inline-flex;
  gap: 6px;
  align-items: baseline;
  font-size: clamp(16px, 1.35vw, 21px);
  line-height: 1;
  transition: transform 260ms ease;
}

.opening-brand:hover img {
  opacity: 0.9;
}

.opening-brand:hover > span {
  transform: translateX(3px);
}

.opening-brand:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.opening-brand span span {
  font-weight: 400;
}

.opening-brand strong {
  font-weight: 950;
}

.ai-badge {
  position: absolute;
  right: clamp(22px, 5vw, 72px);
  top: clamp(24px, 5vw, 62px);
  z-index: 1;
  display: grid;
  gap: 7px;
  width: min(280px, 38vw);
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 8px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(10px);
  animation: micro-float 6.8s ease-in-out infinite alternate;
}

.ai-badge span {
  color: var(--white);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.ai-badge strong {
  font-size: 13px;
  line-height: 1.35;
}

.opening-content {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin-top: clamp(148px, 21vh, 230px);
  filter: blur(var(--intro-blur));
  opacity: var(--intro-opacity);
  transform: translateY(var(--intro-shift)) scale(var(--intro-scale));
  transform-origin: left center;
}

.opening-content .eyebrow {
  color: rgba(255, 255, 255, 0.62);
}

.opening-content h1 {
  max-width: 1120px;
  font-size: clamp(40px, 6.8vw, 94px);
  line-height: 1.04;
  letter-spacing: 0.01em;
}

.opening-content p:not(.eyebrow) {
  max-width: 760px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(17px, 1.75vw, 22px);
  line-height: 1.48;
}

.scroll-cue {
  position: absolute;
  right: clamp(22px, 5vw, 72px);
  bottom: clamp(24px, 5vw, 58px);
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
  opacity: var(--intro-brand-opacity);
  transform: translateY(calc(var(--intro-shift) * 0.18));
}

.scroll-cue i {
  position: relative;
  display: block;
  width: 28px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 999px;
}

.scroll-cue i::after {
  content: "";
  position: absolute;
  top: 9px;
  left: 50%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--white);
  transform: translateX(-50%);
  animation: scroll-dot 1.6s ease-in-out infinite;
}

.opening-meter {
  position: absolute;
  top: clamp(190px, 26vh, 260px);
  right: clamp(24px, 5vw, 72px);
  z-index: 1;
  width: 1px;
  height: min(42vh, 360px);
  background: rgba(255, 255, 255, 0.18);
  opacity: var(--intro-brand-opacity);
}

.opening-meter span {
  display: block;
  width: 1px;
  height: 100%;
  background: rgba(255, 255, 255, 0.86);
  transform: scaleY(var(--intro-progress));
  transform-origin: top;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px clamp(20px, 5vw, 72px);
  border-bottom: 1px solid rgba(214, 214, 214, 0.9);
  background: #ffffff;
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.045);
}

.site-header::after {
  content: "";
  position: absolute;
  left: clamp(20px, 5vw, 72px);
  right: clamp(20px, 5vw, 72px);
  bottom: -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.36), transparent);
  pointer-events: none;
}

.brand,
.nav,
.hero-actions,
.footer,
.contact-details {
  display: flex;
  align-items: center;
}

.brand {
  gap: 14px;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand img {
  width: 78px;
  height: 78px;
  object-fit: contain;
  mix-blend-mode: normal;
  filter: none;
}

.brand-word {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  line-height: 1;
}

.brand-word span {
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

.brand-word strong {
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.nav {
  gap: clamp(16px, 3vw, 34px);
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
}

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

.header-action,
.button,
.contact-form button {
  border: 0;
  border-radius: 999px;
  font-weight: 900;
  cursor: pointer;
}

.header-action {
  padding: 11px 18px;
  background: var(--black);
  color: var(--white);
  font-size: 14px;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.14);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.header-action:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.18);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.82fr);
  gap: clamp(34px, 7vw, 92px);
  min-height: calc(100vh - 75px);
  align-items: center;
  padding: clamp(52px, 8vw, 104px) clamp(20px, 5vw, 72px) 72px;
  overflow: hidden;
  background:
    radial-gradient(circle at 74% 18%, rgba(255, 255, 255, 0.95), transparent 16%),
    radial-gradient(circle at 22% 82%, rgba(0, 0, 0, 0.08), transparent 34%),
    conic-gradient(from 145deg at 78% 38%, transparent 0deg, rgba(0, 0, 0, 0.055) 54deg, transparent 118deg),
    linear-gradient(115deg, rgba(0, 0, 0, 0.06) 0 1px, transparent 1px 100%),
    linear-gradient(135deg, #ffffff 0%, #f2f2f2 58%, #ffffff 100%);
  background-size: auto, auto, auto, 26px 26px, auto;
}

.hero::selection,
.opening-screen::selection {
  background: var(--white);
  color: var(--black);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 8%;
  z-index: 0;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 50%;
  filter: blur(0.2px);
  transform: rotate(-8deg) scaleX(1.24);
  pointer-events: none;
  animation: slow-orbit 22s ease-in-out infinite alternate;
}

.hero::after {
  content: "UKP";
  position: absolute;
  right: clamp(16px, 4vw, 70px);
  bottom: -0.2em;
  z-index: 0;
  color: rgba(0, 0, 0, 0.035);
  font-size: clamp(118px, 21vw, 320px);
  font-weight: 950;
  line-height: 1;
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 790px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
  word-break: normal;
}

h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 0.92;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-text {
  max-width: 680px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
}

.button.primary {
  position: relative;
  overflow: hidden;
  background: var(--black);
  color: var(--white);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.18);
}

.button.primary::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 -45%;
  width: 38%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.24), transparent);
  transform: skewX(-18deg);
  transition: left 420ms ease;
}

.button.primary:hover::after {
  left: 112%;
}

.button.secondary {
  border: 1px solid var(--black);
  background: rgba(255, 255, 255, 0.74);
  color: var(--black);
  transition:
    background 180ms ease,
    transform 180ms ease;
}

.button.secondary:hover {
  background: var(--white);
  transform: translateY(-2px);
}

.hero-panel {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 24px;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 244, 244, 0.92)),
    radial-gradient(circle at 50% 0%, rgba(0, 0, 0, 0.08), transparent 45%);
  box-shadow: var(--shadow);
  isolation: isolate;
  overflow: hidden;
  transform-style: preserve-3d;
  transition:
    transform 260ms ease,
    box-shadow 260ms ease;
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: -40% 20% auto;
  height: 180px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.98), transparent 70%);
  pointer-events: none;
}

.hero-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(115deg, transparent 0 38%, rgba(255, 255, 255, 0.52) 47%, transparent 58%);
  opacity: 0.18;
  transform: translateX(-120%);
  animation: panel-sheen 7s ease-in-out infinite;
  pointer-events: none;
}

.hero-panel:hover {
  transform: translateY(-6px);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.2);
}

.hero-logo {
  width: min(340px, 82vw);
  aspect-ratio: 1;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.panel-line {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--black), transparent);
}

.hero-stats {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.hero-stats div {
  display: grid;
  gap: 6px;
  min-height: 110px;
  align-content: center;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  text-align: center;
  box-shadow: var(--shadow-soft);
}

.hero-stats strong {
  font-size: 22px;
  font-weight: 950;
  text-transform: uppercase;
}

.hero-stats span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.section {
  padding: clamp(64px, 8vw, 112px) clamp(20px, 5vw, 72px);
}

.how-slide {
  position: relative;
  display: grid;
  min-height: calc(100vh + 180px);
  margin-top: -180px;
  place-items: center;
  padding: clamp(64px, 8vw, 112px) clamp(20px, 5vw, 72px);
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.2), transparent 22%),
    radial-gradient(circle at 78% 28%, rgba(255, 255, 255, 0.1), transparent 28%),
    linear-gradient(115deg, rgba(255, 255, 255, 0.055) 0 1px, transparent 1px 100%),
    #050505;
  background-size: auto, auto, 34px 34px, auto;
  color: var(--white);
  text-align: center;
  z-index: 2;
  box-shadow:
    inset 0 360px 280px rgba(0, 0, 0, 1),
    inset 0 -360px 280px rgba(0, 0, 0, 1);
}

.how-slide::before {
  content: "";
  position: absolute;
  inset: 14% 8%;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  transform: rotate(-7deg) scaleX(1.26);
  pointer-events: none;
  animation: slow-orbit 20s ease-in-out infinite alternate;
}

.how-slide::after {
  content: "?";
  position: absolute;
  right: 0.02em;
  bottom: clamp(18px, 3vw, 42px);
  color: rgba(255, 255, 255, 0.045);
  font-size: clamp(180px, 32vw, 460px);
  font-weight: 950;
  line-height: 1;
  pointer-events: none;
}

.how-orbit {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.how-path {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.how-path span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: clamp(220px, 34vw, 540px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.42), transparent);
  transform-origin: left center;
  opacity: 0.34;
  animation: path-scan 5.8s ease-in-out infinite;
}

.how-path span:nth-child(1) {
  transform: rotate(-22deg) translateX(-48%);
}

.how-path span:nth-child(2) {
  animation-delay: 0.8s;
  transform: rotate(0deg) translateX(-48%);
}

.how-path span:nth-child(3) {
  animation-delay: 1.6s;
  transform: rotate(22deg) translateX(-48%);
}

.how-orbit span,
.how-orbit i {
  position: absolute;
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
}

.how-orbit span:nth-child(1) {
  width: clamp(260px, 46vw, 720px);
  height: clamp(260px, 46vw, 720px);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: quiet-pulse 5.8s ease-in-out infinite;
}

.how-orbit span:nth-child(2) {
  width: clamp(170px, 28vw, 430px);
  height: clamp(170px, 28vw, 430px);
  top: 50%;
  left: 50%;
  border-color: rgba(255, 255, 255, 0.22);
  transform: translate(-50%, -50%) rotate(24deg) scaleX(1.42);
  animation: orbit-tilt 9s ease-in-out infinite alternate;
}

.how-orbit span:nth-child(3) {
  width: 10px;
  height: 10px;
  top: 29%;
  left: 32%;
  border: 0;
  background: var(--white);
  box-shadow:
    36vw 16vh 0 rgba(255, 255, 255, 0.74),
    12vw 38vh 0 rgba(255, 255, 255, 0.38),
    48vw 42vh 0 rgba(255, 255, 255, 0.46);
  animation: signal-drift 6.5s ease-in-out infinite alternate;
}

.how-orbit i {
  right: clamp(48px, 11vw, 160px);
  top: clamp(72px, 13vw, 170px);
  width: clamp(70px, 10vw, 138px);
  height: clamp(70px, 10vw, 138px);
  border-color: rgba(255, 255, 255, 0.2);
  background: radial-gradient(circle, rgba(255, 255, 255, 0.14), transparent 58%);
  animation: micro-float 7s ease-in-out infinite alternate;
}

.how-content {
  position: relative;
  z-index: 1;
  max-width: 1080px;
  opacity: 0;
  transform: translateY(34px) scale(0.96);
  transition:
    opacity 900ms ease,
    transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
}

.how-slide.is-active .how-content {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.how-slide.is-active .how-content h2 {
  animation: title-breathe 4.8s ease-in-out 900ms infinite alternate;
}

.how-content .eyebrow {
  color: rgba(255, 255, 255, 0.64);
}

.how-content h2 {
  margin: 0;
  font-size: clamp(70px, 13vw, 190px);
  line-height: 1.08;
  letter-spacing: 0;
  text-transform: uppercase;
}

.how-cue {
  position: absolute;
  right: clamp(22px, 5vw, 72px);
  bottom: clamp(24px, 5vw, 58px);
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.how-cue i {
  position: relative;
  display: block;
  width: 28px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 999px;
}

.how-cue i::after {
  content: "";
  position: absolute;
  top: 9px;
  left: 50%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--white);
  transform: translateX(-50%);
  animation: scroll-dot 1.6s ease-in-out infinite;
}

.program-bridge {
  position: relative;
  display: grid;
  min-height: calc(100vh + 180px);
  place-items: center;
  margin-top: -180px;
  padding: clamp(64px, 8vw, 112px) clamp(20px, 5vw, 72px);
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.18), transparent 22%),
    radial-gradient(circle at 74% 22%, rgba(255, 255, 255, 0.1), transparent 28%),
    linear-gradient(115deg, rgba(255, 255, 255, 0.055) 0 1px, transparent 1px 100%),
    #050505;
  background-size: auto, auto, 34px 34px, auto;
  color: var(--white);
  text-align: center;
  z-index: 4;
  box-shadow:
    inset 0 380px 300px rgba(0, 0, 0, 1),
    inset 0 -380px 300px rgba(0, 0, 0, 1);
}

.program-bridge::before {
  content: "";
  position: absolute;
  inset: 14% 8%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  transform: rotate(-8deg) scaleX(1.28);
  pointer-events: none;
  animation: bridge-orbit 11s ease-in-out infinite alternate;
}

.program-bridge::after {
  content: "UKP";
  position: absolute;
  right: -0.08em;
  bottom: clamp(20px, 4vw, 64px);
  color: rgba(255, 255, 255, 0.04);
  font-size: clamp(150px, 30vw, 430px);
  font-weight: 950;
  line-height: 1;
  pointer-events: none;
}

.bridge-mark {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 22px;
  max-width: 760px;
  animation: bridge-mark-float 5.6s ease-in-out infinite alternate;
}

.bridge-mark::before,
.bridge-mark::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  width: clamp(220px, 28vw, 420px);
  height: clamp(220px, 28vw, 420px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.bridge-mark::before {
  z-index: -1;
  animation: bridge-ring-soft 8.5s ease-in-out infinite alternate;
}

.bridge-mark::after {
  z-index: -2;
  width: clamp(150px, 20vw, 300px);
  height: clamp(150px, 20vw, 300px);
  border-color: rgba(255, 255, 255, 0.12);
  animation: quiet-pulse-soft 4.8s ease-in-out infinite;
}

.bridge-mark img {
  position: relative;
  z-index: 2;
  width: clamp(190px, 22vw, 340px);
  height: clamp(190px, 22vw, 340px);
  object-fit: contain;
  filter: none;
  transform: translateZ(0);
}

.bridge-mark > span {
  display: inline-flex;
  gap: 8px;
  align-items: baseline;
  font-size: clamp(18px, 2vw, 28px);
  line-height: 1;
}

.bridge-mark span span {
  font-weight: 400;
}

.bridge-mark strong {
  font-weight: 950;
}

.bridge-mark p {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: clamp(13px, 1.35vw, 18px);
  font-weight: 850;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.bridge-ai-line {
  position: relative;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 900;
}

.bridge-focus-cloud {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  max-width: 520px;
}

.bridge-focus-cloud span {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  padding: 8px 11px;
  background: rgba(255, 255, 255, 0.065);
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  animation: ai-token-float 5.8s ease-in-out infinite alternate;
}

.bridge-focus-cloud span:nth-child(2n) {
  animation-delay: -1.6s;
}

.bridge-focus-cloud span:nth-child(3n) {
  animation-delay: -2.8s;
}

.bridge-ai-orbit {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.42;
}

.bridge-ai-orbit i {
  position: absolute;
  left: 50%;
  top: 50%;
  width: clamp(260px, 34vw, 520px);
  height: clamp(260px, 34vw, 520px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  transform: translate(-50%, -50%) rotate(-8deg) scaleX(1.35);
  animation: ai-ring 7.5s ease-in-out infinite alternate;
}

.bridge-ai-orbit i:first-child {
  left: 50%;
  top: 50%;
}

.bridge-ai-orbit i:nth-child(2) {
  width: clamp(180px, 24vw, 360px);
  height: clamp(180px, 24vw, 360px);
  border-color: rgba(255, 255, 255, 0.12);
  animation-delay: -2.2s;
}

.bridge-ai-orbit b {
  position: absolute;
  right: 9%;
  top: 23%;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  background: var(--white);
  color: var(--black);
  font-size: 12px;
  font-weight: 950;
  animation: node-signal 3.8s ease-in-out infinite;
}

.bridge-cue {
  position: absolute;
  right: clamp(22px, 5vw, 72px);
  bottom: clamp(24px, 5vw, 58px);
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.bridge-cue i {
  position: relative;
  display: block;
  width: 28px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 999px;
}

.bridge-cue i::after {
  content: "";
  position: absolute;
  top: 9px;
  left: 50%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--white);
  transform: translateX(-50%);
  animation: scroll-dot 1.6s ease-in-out infinite;
}

.program-slide {
  position: relative;
  display: grid;
  grid-template-columns: minmax(390px, 0.72fr) minmax(0, 1fr);
  gap: clamp(30px, 5vw, 72px);
  align-items: center;
  min-height: calc(100vh + 180px);
  margin-top: -180px;
  padding: clamp(64px, 8vw, 112px) clamp(20px, 5vw, 72px);
  overflow: hidden;
  background:
    radial-gradient(circle at 22% 28%, rgba(255, 255, 255, 0.14), transparent 22%),
    radial-gradient(circle at 78% 62%, rgba(255, 255, 255, 0.1), transparent 32%),
    linear-gradient(115deg, rgba(255, 255, 255, 0.055) 0 1px, transparent 1px 100%),
    #050505;
  background-size: auto, auto, 34px 34px, auto;
  color: var(--white);
  z-index: 3;
  box-shadow:
    inset 0 360px 280px rgba(0, 0, 0, 1),
    inset 0 -360px 280px rgba(0, 0, 0, 1);
}

.program-slide::before {
  content: "";
  position: absolute;
  inset: 12% 7%;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 50%;
  transform: rotate(-8deg) scaleX(1.28);
  pointer-events: none;
}

.program-slide::after {
  content: "HOW";
  position: absolute;
  right: -0.08em;
  bottom: clamp(20px, 4vw, 58px);
  color: rgba(255, 255, 255, 0.04);
  font-size: clamp(112px, 21vw, 320px);
  font-weight: 950;
  line-height: 1;
  pointer-events: none;
}

.program-slide > * {
  position: relative;
  z-index: 1;
}

.program-copy {
  max-width: 610px;
}

.program-copy .eyebrow {
  color: rgba(255, 255, 255, 0.66);
}

.program-copy h2 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(38px, 4.05vw, 68px);
  line-height: 1.08;
  letter-spacing: 0;
  text-transform: uppercase;
  overflow-wrap: normal;
  word-break: keep-all;
  hyphens: none;
}

.nowrap {
  white-space: nowrap;
}

.program-copy p:not(.eyebrow) {
  max-width: 560px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(17px, 1.45vw, 20px);
  line-height: 1.58;
}

.program-map {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  min-height: auto;
  align-content: center;
  isolation: isolate;
}

.program-map::before {
  content: "";
  position: absolute;
  inset: 50% 18% auto;
  z-index: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.13), transparent);
  opacity: 0;
  transform: translateY(-50%);
  transition: opacity 700ms ease 360ms;
  pointer-events: none;
}

.program-map::after {
  content: "";
  position: absolute;
  top: 23%;
  bottom: 23%;
  left: 50%;
  z-index: 0;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.12), transparent);
  opacity: 0;
  transform: translateX(-50%);
  transition: opacity 700ms ease 460ms;
  pointer-events: none;
}

.program-map:has(.program-node.is-visible)::before,
.program-map:has(.program-node.is-visible)::after {
  opacity: 0.28;
}

.program-node {
  position: relative;
  z-index: 1;
  overflow: hidden;
  width: 100%;
  min-height: 206px;
  padding: clamp(20px, 2.8vw, 30px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(24, 24, 24, 0.94);
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.24);
  transition:
    transform 260ms ease,
    border-color 260ms ease,
    background 260ms ease,
    box-shadow 260ms ease;
}

.program-node.reveal {
  transform: translateY(42px) scale(0.965);
}

.program-node.reveal.is-visible {
  transform: translateY(0) scale(1);
}

.program-node.reveal:nth-child(2) {
  transition-delay: 110ms;
}

.program-node.reveal:nth-child(3) {
  transition-delay: 220ms;
}

.program-node.reveal:nth-child(4) {
  transition-delay: 330ms;
}

.program-node::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0 35%, rgba(255, 255, 255, 0.1), transparent 66% 100%);
  opacity: 0;
  transform: translateX(-42%);
  pointer-events: none;
  transition:
    opacity 260ms ease,
    transform 460ms ease;
}

.program-node:hover {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(32, 32, 32, 0.98);
  box-shadow: 0 30px 90px rgba(255, 255, 255, 0.08), 0 28px 72px rgba(0, 0, 0, 0.28);
  transform: translateY(-5px);
}

.program-node:hover::before {
  opacity: 1;
  transform: translateX(42%);
}

.program-node.result {
  border-color: rgba(255, 255, 255, 0.34);
  background:
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.13), transparent 34%),
    rgba(34, 34, 34, 0.98);
}

.program-node.result:hover {
  border-color: rgba(255, 255, 255, 0.48);
  background: rgba(42, 42, 42, 0.98);
  box-shadow: 0 30px 90px rgba(255, 255, 255, 0.1), 0 28px 72px rgba(0, 0, 0, 0.28);
  transform: translateY(-5px);
}

.program-node.result span {
  background: linear-gradient(135deg, var(--white), #c9c9c9);
  color: var(--black);
  outline: 0;
  box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.06), 0 16px 36px rgba(255, 255, 255, 0.08);
}

.program-node span {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  background: var(--white);
  color: var(--black);
  font-weight: 950;
  animation: node-signal 4.8s ease-in-out infinite;
}

.program-node:nth-child(2) span {
  animation-delay: 0.55s;
}

.program-node:nth-child(3) span {
  animation-delay: 1.1s;
}

.program-node:nth-child(4) span {
  animation-delay: 1.65s;
}

.program-node strong {
  display: block;
  margin: 16px 0 8px;
  font-size: clamp(21px, 1.85vw, 28px);
  font-weight: 950;
  line-height: 1.04;
  text-transform: uppercase;
}

.program-node p {
  max-width: 34ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.55;
}

.ai-slide {
  position: relative;
  display: grid;
  min-height: calc(100vh + 180px);
  place-items: center;
  margin-top: -180px;
  padding: clamp(64px, 8vw, 112px) clamp(20px, 5vw, 72px);
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.18), transparent 22%),
    radial-gradient(circle at 74% 22%, rgba(255, 255, 255, 0.1), transparent 28%),
    linear-gradient(115deg, rgba(255, 255, 255, 0.055) 0 1px, transparent 1px 100%),
    #050505;
  background-size: auto, auto, 34px 34px, auto;
  color: var(--white);
  text-align: center;
  z-index: 4;
  box-shadow:
    inset 0 380px 300px rgba(0, 0, 0, 1),
    inset 0 -380px 300px rgba(0, 0, 0, 1);
}

.ai-slide::before {
  content: "";
  position: absolute;
  inset: 14% 8%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  transform: rotate(-8deg) scaleX(1.28);
  pointer-events: none;
  animation: bridge-orbit 11s ease-in-out infinite alternate;
}

.ai-slide::after {
  content: "AI";
  position: absolute;
  right: -0.08em;
  bottom: clamp(20px, 4vw, 64px);
  color: rgba(255, 255, 255, 0.045);
  font-size: clamp(170px, 32vw, 470px);
  font-weight: 950;
  line-height: 1;
  pointer-events: none;
  animation: ai-watermark 7s ease-in-out infinite alternate;
}

.ai-effects {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.ai-effects.reveal {
  opacity: 0;
  transform: translateY(26px) scale(0.985);
  transition-duration: 980ms;
}

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

.ai-effects i {
  position: absolute;
  left: 50%;
  top: 50%;
  width: clamp(260px, 52vw, 820px);
  height: clamp(260px, 52vw, 820px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: ai-ring 8s ease-in-out infinite alternate;
}

.ai-effects i:nth-child(2) {
  width: clamp(180px, 36vw, 560px);
  height: clamp(180px, 36vw, 560px);
  border-color: rgba(255, 255, 255, 0.2);
  animation-delay: -2.4s;
  animation-duration: 9.5s;
}

.ai-effects i:nth-child(3) {
  width: clamp(90px, 18vw, 280px);
  height: clamp(90px, 18vw, 280px);
  background: radial-gradient(circle, rgba(255, 255, 255, 0.16), transparent 60%);
  animation-delay: -4s;
  animation-duration: 6.8s;
}

.ai-effects span {
  position: absolute;
  left: 12%;
  right: 12%;
  top: 50%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.72), transparent);
  transform-origin: center;
  animation: ai-scan 4.8s ease-in-out infinite;
}

.ai-effects b {
  position: absolute;
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 8px 13px;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.12em;
  animation: ai-token-float 6.2s ease-in-out infinite alternate;
}

.ai-effects b:nth-of-type(1) {
  left: 12%;
  top: 28%;
}

.ai-effects b:nth-of-type(2) {
  right: 14%;
  top: 33%;
  animation-delay: -2.1s;
}

.ai-effects b:nth-of-type(3) {
  left: 18%;
  bottom: 22%;
  animation-delay: -3.4s;
}

.ai-effects b:nth-of-type(4) {
  right: 18%;
  bottom: 27%;
  animation-delay: -1.2s;
}

.ai-effects b:nth-of-type(5) {
  left: 31%;
  top: 14%;
  animation-delay: -4.6s;
}

.ai-effects b:nth-of-type(6) {
  right: 28%;
  bottom: 12%;
  animation-delay: -5.7s;
}

.ai-slide-core {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 18px;
  width: min(100%, 880px);
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.1), transparent 48%),
    rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  padding: clamp(26px, 5vw, 58px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.24);
  animation:
    ai-card-enter 1.15s cubic-bezier(0.22, 1, 0.36, 1) both,
    micro-float 7s ease-in-out 1.15s infinite alternate;
}

.ai-slide-core.reveal {
  animation: none;
  transform: translateY(52px) scale(0.94);
  filter: blur(8px);
  transition-duration: 980ms;
}

.ai-slide-core.reveal.is-visible {
  transform: translateY(0) scale(1);
  filter: blur(0);
}

.bridge-mark.reveal {
  animation: none;
  transform: translateY(48px) scale(0.94);
  filter: blur(8px);
  transition-duration: 980ms;
}

.bridge-mark.reveal.is-visible {
  transform: translateY(0) scale(1);
  filter: blur(0);
}

.ai-slide-core span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.ai-slide-core h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(82px, 14vw, 190px);
  line-height: 0.98;
  text-transform: uppercase;
}

.ai-slide-core > strong {
  color: var(--white);
  font-size: clamp(24px, 3.8vw, 58px);
  font-weight: 950;
  line-height: 1.06;
}

.ai-slide-core p {
  max-width: 680px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(17px, 1.7vw, 22px);
  line-height: 1.18;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(260px, 0.75fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: start;
  margin-bottom: 34px;
}

.section-heading.narrow {
  display: block;
  max-width: 820px;
}

.section-heading h2,
.visual-copy h2,
.mentor-feature-copy h2,
.process-copy h2,
.mentor-band h2,
.contact h2 {
  margin: 0;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.05;
  letter-spacing: 0;
}

.intro {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.78fr);
  gap: clamp(24px, 5vw, 72px);
  background: var(--black);
  color: var(--white);
  overflow: hidden;
}

.intro::after {
  content: "UKP";
  position: absolute;
  right: -0.04em;
  bottom: -0.22em;
  color: rgba(255, 255, 255, 0.06);
  font-size: clamp(120px, 22vw, 330px);
  font-weight: 950;
  line-height: 1;
  pointer-events: none;
}

.intro::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, transparent 0 35%, rgba(255, 255, 255, 0.08) 48%, transparent 62%),
    radial-gradient(circle at 18% 72%, rgba(255, 255, 255, 0.08), transparent 24%);
  opacity: 0.5;
  transform: translateX(-20%);
  pointer-events: none;
  animation: surface-scan 13s ease-in-out infinite alternate;
}

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

.value-strip {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--line);
}

.value-strip article {
  position: relative;
  min-height: 210px;
  padding: clamp(24px, 4vw, 40px);
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 18%, rgba(0, 0, 0, 0.06), transparent 28%),
    #ffffff;
  transition:
    transform 520ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 520ms ease,
    box-shadow 220ms ease;
}

.value-strip article:hover {
  z-index: 2;
  transform: translateY(-6px);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.13);
}

.value-strip article::after {
  content: "";
  position: absolute;
  right: -48px;
  bottom: -70px;
  width: 160px;
  aspect-ratio: 1;
  border: 1px solid rgba(0, 0, 0, 0.09);
  border-radius: 50%;
  transition:
    transform 420ms ease,
    border-color 420ms ease;
}

.value-strip article::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 0 34%, rgba(0, 0, 0, 0.055) 48%, transparent 62%);
  opacity: 0;
  transform: translateX(-24%);
  pointer-events: none;
  transition:
    opacity 240ms ease,
    transform 620ms ease;
}

.value-strip article:hover::before {
  opacity: 1;
  transform: translateX(16%);
}

.value-strip article:hover::after {
  border-color: rgba(0, 0, 0, 0.22);
  transform: translate(-18px, -16px) scale(1.16);
}

.value-strip span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 950;
}

.value-strip strong {
  display: block;
  margin-top: 18px;
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
}

.value-strip p {
  max-width: 32ch;
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 720ms ease,
    transform 720ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

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

.value-strip article.reveal,
.program-node.reveal,
.mentor-feature-grid article.reveal,
.goal-grid article.reveal,
.process-steps article.reveal,
.mentor-list p.reveal {
  will-change: transform, opacity;
}

.mentor-feature {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 72px);
  padding: clamp(64px, 8vw, 108px) clamp(20px, 5vw, 72px);
  background:
    conic-gradient(from 220deg at 84% 28%, transparent 0deg, rgba(0, 0, 0, 0.075) 58deg, transparent 132deg),
    radial-gradient(circle at 12% 12%, rgba(0, 0, 0, 0.08), transparent 26%),
    linear-gradient(180deg, #ffffff, #f2f2f2);
  overflow: hidden;
}

.mentor-feature::before {
  content: "";
  position: absolute;
  inset: 11% auto auto 50%;
  width: min(42vw, 520px);
  aspect-ratio: 1;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 50%;
  transform: translateX(-20%) rotate(-8deg) scaleX(1.12);
  pointer-events: none;
  animation: mentor-ring-drift 19s ease-in-out infinite alternate-reverse;
}

.mentor-feature::after {
  content: "1:1";
  position: absolute;
  right: clamp(18px, 6vw, 80px);
  bottom: -0.25em;
  color: rgba(0, 0, 0, 0.045);
  font-size: clamp(120px, 22vw, 330px);
  font-weight: 950;
  line-height: 1;
  pointer-events: none;
}

.mentor-feature > * {
  position: relative;
  z-index: 1;
}

.mentor-feature-copy p {
  max-width: 640px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

@keyframes node-signal {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }

  45% {
    transform: scale(1.035);
    box-shadow: 0 0 0 7px rgba(255, 255, 255, 0.055);
  }
}

@keyframes title-breathe {
  0% {
    opacity: 0.9;
    transform: translateY(0);
  }

  100% {
    opacity: 1;
    transform: translateY(-4px);
  }
}

@keyframes path-scan {
  0%,
  100% {
    opacity: 0.16;
    filter: brightness(0.9);
  }

  45% {
    opacity: 0.54;
    filter: brightness(1.5);
  }
}

@keyframes bridge-ring {
  0% {
    opacity: 0.42;
    transform: translate(-50%, -50%) rotate(-10deg) scale(0.96);
  }

  100% {
    opacity: 0.88;
    transform: translate(-50%, -50%) rotate(12deg) scale(1.06);
  }
}

@keyframes bridge-ring-soft {
  0% {
    opacity: 0.18;
    transform: translate(-50%, -50%) rotate(-10deg) scale(1.08);
  }

  100% {
    opacity: 0.38;
    transform: translate(-50%, -50%) rotate(12deg) scale(1.18);
  }
}

@keyframes logo-glow {
  0% {
    filter: drop-shadow(0 18px 34px rgba(255, 255, 255, 0.12));
    transform: scale(0.985);
  }

  100% {
    filter: drop-shadow(0 28px 58px rgba(255, 255, 255, 0.28));
    transform: scale(1.025);
  }
}

@keyframes quiet-pulse {
  0% {
    opacity: 0.42;
    transform: translate(-50%, -50%) scale(0.96);
  }

  100% {
    opacity: 0.9;
    transform: translate(-50%, -50%) scale(1.04);
  }
}

@keyframes quiet-pulse-soft {
  0% {
    opacity: 0.16;
    transform: translate(-50%, -50%) scale(1.08);
  }

  100% {
    opacity: 0.32;
    transform: translate(-50%, -50%) scale(1.18);
  }
}

@keyframes orbit-tilt {
  0% {
    opacity: 0.45;
    transform: translate(-50%, -50%) rotate(12deg) scaleX(1.28);
  }

  100% {
    opacity: 0.9;
    transform: translate(-50%, -50%) rotate(-16deg) scaleX(1.52);
  }
}

@keyframes signal-drift {
  0% {
    opacity: 0.42;
    transform: translate3d(-10px, 6px, 0);
  }

  100% {
    opacity: 0.86;
    transform: translate3d(14px, -10px, 0);
  }
}

@keyframes bridge-orbit {
  0% {
    opacity: 0.62;
    transform: rotate(-10deg) scaleX(1.2);
  }

  100% {
    opacity: 0.96;
    transform: rotate(7deg) scaleX(1.36);
  }
}

@keyframes bridge-stage-scan {
  0% {
    opacity: 0.42;
    transform: translateX(-12%);
  }

  100% {
    opacity: 0.82;
    transform: translateX(12%);
  }
}

@keyframes logo-aura {
  0% {
    opacity: 0.54;
    transform: translate(-50%, -50%) scale(0.96);
  }

  100% {
    opacity: 0.9;
    transform: translate(-50%, -50%) scale(1.05);
  }
}

@keyframes bridge-horizon {
  0% {
    opacity: 0.34;
    transform: translate(-50%, -48%) rotate(-7deg) scaleX(1);
  }

  100% {
    opacity: 0.74;
    transform: translate(-50%, -48%) rotate(6deg) scaleX(1.12);
  }
}

@keyframes bridge-mark-float {
  0% {
    transform: translateY(10px) scale(0.99);
  }

  100% {
    transform: translateY(-10px) scale(1.015);
  }
}

@keyframes ai-card-enter {
  0% {
    opacity: 0;
    transform: translateY(44px) scale(0.94);
    filter: blur(10px);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

@keyframes ai-ring {
  0% {
    opacity: 0.28;
    transform: translate(-50%, -50%) rotate(-10deg) scaleX(1.05);
  }

  100% {
    opacity: 0.78;
    transform: translate(-50%, -50%) rotate(13deg) scaleX(1.28);
  }
}

@keyframes ai-scan {
  0%,
  100% {
    opacity: 0;
    transform: translateY(-120px) rotate(-8deg);
  }

  45%,
  55% {
    opacity: 0.72;
  }

  50% {
    transform: translateY(0) rotate(8deg);
  }
}

@keyframes ai-watermark {
  0% {
    opacity: 0.55;
    transform: translate3d(0, 10px, 0) scale(0.98);
  }

  100% {
    opacity: 1;
    transform: translate3d(-24px, -10px, 0) scale(1.04);
  }
}

@keyframes ai-token-float {
  0% {
    opacity: 0.45;
    transform: translate3d(0, 8px, 0);
  }

  100% {
    opacity: 0.9;
    transform: translate3d(12px, -10px, 0);
  }
}

.mentor-feature-grid {
  display: grid;
  gap: 16px;
}

.mentor-feature-grid article {
  display: grid;
  grid-template-columns: 64px minmax(0, 0.48fr) minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  min-height: 118px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(14px);
  transition:
    opacity 720ms ease,
    transform 720ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.mentor-feature-grid article:hover {
  border-color: var(--black);
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.14);
}

.mentor-feature-grid span {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 50%;
  background: var(--black);
  color: var(--white);
  font-weight: 950;
}

.mentor-feature-grid strong {
  font-size: 20px;
  font-weight: 950;
  line-height: 1.1;
  text-transform: uppercase;
}

.mentor-feature-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.intro .section-heading {
  display: block;
  margin: 0;
}

.intro .eyebrow,
.intro-text p {
  color: rgba(255, 255, 255, 0.76);
}

.intro-text {
  display: grid;
  gap: 18px;
  font-size: 18px;
}

.intro-text p,
.goal-grid p,
.process-steps p,
.visual-copy p,
.contact p,
.mentor-list p {
  margin: 0;
  line-height: 1.65;
}

.visual-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.48fr) minmax(0, 0.9fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
  padding: clamp(52px, 7vw, 86px) clamp(20px, 5vw, 72px);
  background: var(--soft);
  overflow: hidden;
}

.visual-section::after {
  content: "AREAS";
  position: absolute;
  left: -0.06em;
  bottom: -0.18em;
  color: rgba(0, 0, 0, 0.045);
  font-size: clamp(96px, 17vw, 260px);
  font-weight: 950;
  line-height: 1;
  pointer-events: none;
}

.visual-section::before {
  content: "";
  position: absolute;
  inset: auto -14% -42% auto;
  width: 520px;
  aspect-ratio: 1;
  border: 1px solid rgba(0, 0, 0, 0.09);
  border-radius: 50%;
  pointer-events: none;
  animation: slow-orbit 18s ease-in-out infinite alternate;
}

.visual-section > * {
  position: relative;
  z-index: 1;
}

.visual-copy p {
  color: var(--muted);
}

.focus-board {
  position: relative;
  display: grid;
  min-height: 520px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.8), transparent 36%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.05) 1px, transparent 1px),
    linear-gradient(0deg, rgba(0, 0, 0, 0.05) 1px, transparent 1px),
    radial-gradient(circle at center, #ffffff 0%, #f5f5f5 52%, #ececec 100%);
  background-size: auto, 42px 42px, 42px 42px, auto;
  box-shadow: var(--shadow);
  isolation: isolate;
}

.focus-board > * {
  position: relative;
  z-index: 2;
}

.focus-board .focus-item {
  animation: micro-float 7s ease-in-out infinite;
}

.focus-board .focus-item:nth-child(2n) {
  animation-delay: -1.8s;
}

.focus-board .focus-item:nth-child(3n) {
  animation-delay: -3.2s;
}

.focus-board.reveal {
  transform: translateY(34px) scale(0.985);
}

.focus-board.reveal.is-visible {
  transform: translateY(0) scale(1);
}

.focus-board::before,
.focus-board::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 50%;
}

.focus-board::before {
  width: min(68%, 440px);
  aspect-ratio: 1;
}

.focus-board::after {
  width: min(88%, 580px);
  aspect-ratio: 1;
}

.focus-center {
  position: relative;
  z-index: 2;
  display: grid;
  width: 190px;
  height: 190px;
  place-items: center;
  padding: 24px;
  border: 1px solid var(--black);
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.14);
  text-align: center;
  animation: float-center 6s ease-in-out infinite;
}

.focus-center img {
  width: 94px;
  height: 94px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.focus-center strong {
  font-size: 15px;
  font-weight: 950;
  text-transform: uppercase;
}

.focus-item {
  position: absolute;
  z-index: 2;
  display: grid;
  gap: 8px;
  min-width: 148px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.1);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.focus-item:hover {
  transform: translateY(-3px);
  border-color: var(--black);
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.14);
}

.focus-item span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 950;
}

.focus-item strong {
  font-size: 18px;
  font-weight: 950;
  text-transform: uppercase;
}

.focus-item.money {
  top: 42px;
  left: 10%;
}

.focus-item.career {
  top: 72px;
  right: 9%;
}

.focus-item.business {
  right: 6%;
  bottom: 150px;
}

.focus-item.growth {
  right: 28%;
  bottom: 38px;
}

.focus-item.communication {
  bottom: 132px;
  left: 6%;
}

.focus-item.relations {
  left: 31%;
  top: 28px;
}

.goals {
  position: relative;
  background:
    radial-gradient(circle at 88% 16%, rgba(0, 0, 0, 0.055), transparent 24%),
    radial-gradient(circle at 12% 82%, rgba(0, 0, 0, 0.045), transparent 22%),
    var(--white);
  overflow: hidden;
}

.goals::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg, transparent 0 38%, rgba(0, 0, 0, 0.035) 48%, transparent 60%);
  opacity: 0.56;
  transform: translateX(-18%);
  pointer-events: none;
  animation: surface-scan 15s ease-in-out infinite alternate;
}

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

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

.goal-grid article {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 245px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff, #f7f7f7);
  overflow: hidden;
  transition:
    opacity 720ms ease,
    transform 720ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 180ms ease,
    border-color 180ms ease;
  cursor: pointer;
}

.goal-grid article::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, transparent 0 36%, rgba(0, 0, 0, 0.055) 48%, transparent 60%),
    radial-gradient(circle at 22% 20%, rgba(0, 0, 0, 0.08), transparent 30%);
  opacity: 0;
  transform: translateX(-18%);
  transition:
    opacity 220ms ease,
    transform 520ms ease;
  pointer-events: none;
}

.goal-grid article::after {
  content: "";
  position: absolute;
  right: -58px;
  bottom: -58px;
  width: 150px;
  aspect-ratio: 1;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 50%;
}

.goal-grid article:hover {
  transform: translateY(-7px);
  border-color: var(--black);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.12);
}

.goal-grid article:hover::before,
.goal-grid article.is-selected::before {
  opacity: 1;
  transform: translateX(0);
}

.goal-grid article.is-selected {
  border-color: var(--black);
  background: linear-gradient(180deg, #ffffff, #eeeeee);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.14), inset 0 0 0 1px rgba(0, 0, 0, 0.08);
}

.goal-grid article.is-selected .icon {
  animation: selected-goal-pulse 2.2s ease-in-out infinite;
}

.icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 2px solid var(--black);
  border-radius: 50%;
  color: var(--black);
  font-size: 20px;
  font-weight: 950;
}

.goal-grid h3,
.process-steps h3 {
  margin: 18px 0 8px;
  font-size: 23px;
  text-transform: uppercase;
}

.goal-grid p,
.process-steps p,
.contact p,
.visual-copy p {
  color: var(--muted);
}

.goal-pick {
  position: relative;
  z-index: 1;
  margin-top: auto;
  border: 1px solid var(--black);
  border-radius: 999px;
  padding: 9px 13px;
  background: transparent;
  color: var(--black);
  font: inherit;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.goal-pick:hover {
  transform: translateY(-2px);
}

.goal-grid article.is-selected .goal-pick {
  background: var(--black);
  color: var(--white);
}

.process {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.64fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 72px);
  padding: clamp(64px, 8vw, 112px) clamp(20px, 5vw, 72px);
  background: var(--soft);
  overflow: hidden;
}

.process::before {
  content: "04";
  position: absolute;
  right: clamp(18px, 6vw, 90px);
  top: 30px;
  color: rgba(0, 0, 0, 0.035);
  font-size: clamp(120px, 22vw, 320px);
  font-weight: 950;
  line-height: 1;
  pointer-events: none;
  animation: watermark-drift 16s ease-in-out infinite alternate;
}

.process-copy {
  position: sticky;
  top: 110px;
  align-self: start;
  z-index: 1;
}

.process-copy p {
  color: var(--muted);
}

.process-steps {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.process-steps article {
  position: relative;
  display: grid;
  grid-template-rows: auto auto 1fr;
  gap: 14px;
  min-height: 270px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition:
    opacity 720ms ease,
    transform 720ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.process-steps article::after {
  content: "";
  position: absolute;
  inset: auto -36px -70px auto;
  width: 150px;
  aspect-ratio: 1;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 50%;
  transition:
    transform 420ms ease,
    border-color 420ms ease;
}

.process-steps article:hover::after {
  border-color: rgba(0, 0, 0, 0.22);
  transform: translate(-14px, -18px) scale(1.18);
}

.process-steps span {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 50%;
  background: var(--black);
  color: var(--white);
  font-weight: 950;
}

.process-steps h3 {
  margin: 0;
  min-height: 58px;
  line-height: 1.08;
}

.process-steps p {
  max-width: 32ch;
}

.process-steps article:hover {
  border-color: var(--black);
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.13);
}

.choose-slide {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(320px, 0.72fr);
  gap: clamp(28px, 6vw, 82px);
  align-items: center;
  min-height: 100svh;
  padding: clamp(132px, 13vw, 180px) clamp(20px, 5vw, 72px) clamp(96px, 11vw, 150px);
  background:
    radial-gradient(circle at var(--mx, 62%) var(--my, 36%), rgba(255, 255, 255, 0.2), transparent 24%),
    radial-gradient(circle at 78% 18%, rgba(255, 255, 255, 0.1), transparent 28%),
    #050505;
  color: var(--white);
  overflow: hidden;
}

.choose-slide::before {
  content: "";
  position: absolute;
  inset: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  transform: scaleX(1.28);
  animation: orbit-breathe 9s ease-in-out infinite alternate;
}

.choose-slide::after {
  content: "MAPA";
  position: absolute;
  right: -0.06em;
  bottom: -0.18em;
  color: rgba(255, 255, 255, 0.055);
  font-size: clamp(120px, 22vw, 340px);
  font-weight: 950;
  line-height: 1;
  pointer-events: none;
}

.choose-content,
.choose-orbit {
  position: relative;
  z-index: 1;
}

.choose-content .eyebrow {
  color: rgba(255, 255, 255, 0.68);
}

.choose-content h2 {
  max-width: 840px;
  margin-top: 16px;
  color: var(--white);
  font-size: clamp(58px, 10vw, 150px);
  line-height: 0.94;
  text-transform: uppercase;
}

.choose-content p:not(.eyebrow) {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.55;
}

.choose-orbit {
  display: grid;
  gap: 14px;
}

.choose-orbit span {
  width: min(100%, 360px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 950;
  text-transform: uppercase;
  box-shadow: 0 20px 58px rgba(0, 0, 0, 0.22);
  animation: choose-card-float 5.8s ease-in-out infinite alternate;
}

.choose-orbit span:nth-child(2n) {
  justify-self: end;
  animation-delay: -1.4s;
}

.choose-orbit span:nth-child(3n) {
  animation-delay: -2.8s;
}

.plan-map {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 5vw, 54px);
  align-items: center;
  padding: clamp(64px, 8vw, 112px) clamp(20px, 5vw, 72px);
  background:
    radial-gradient(circle at 78% 20%, rgba(0, 0, 0, 0.1), transparent 26%),
    radial-gradient(circle at 18% 82%, rgba(0, 0, 0, 0.08), transparent 24%),
    linear-gradient(115deg, rgba(0, 0, 0, 0.035) 0 1px, transparent 1px 100%),
    linear-gradient(180deg, #ffffff, #f1f1f1);
  background-size: auto, auto, 38px 38px, auto;
  overflow: hidden;
}

.plan-map::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, transparent 0 38%, rgba(255, 255, 255, 0.5) 48%, transparent 58%),
    radial-gradient(circle at 20% 30%, rgba(0, 0, 0, 0.045), transparent 20%);
  opacity: 0.55;
  transform: translateX(-18%);
  pointer-events: none;
  animation: surface-scan 12s ease-in-out infinite alternate;
}

.plan-map::after {
  content: "CIELE";
  position: absolute;
  right: -0.07em;
  bottom: -0.18em;
  color: rgba(0, 0, 0, 0.045);
  font-size: clamp(110px, 20vw, 300px);
  font-weight: 950;
  line-height: 1;
  pointer-events: none;
}

.plan-map .planner::before,
.contact-form::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 10px;
  background:
    linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.08), transparent),
    radial-gradient(circle at 20% 50%, rgba(0, 0, 0, 0.07), transparent 24%);
  opacity: 0.45;
  pointer-events: none;
  animation: route-light 7.5s ease-in-out infinite alternate;
}

.plan-map > * {
  position: relative;
  z-index: 1;
}

.goal-cloud {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.goal-cloud span {
  position: absolute;
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 999px;
  padding: 8px 13px;
  background: rgba(255, 255, 255, 0.42);
  color: rgba(0, 0, 0, 0.18);
  font-size: clamp(12px, 1.4vw, 16px);
  font-weight: 950;
  text-transform: uppercase;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.045);
  animation: selected-goal-drift 8.5s ease-in-out infinite alternate;
}

.goal-cloud span:nth-child(1) {
  left: 8%;
  top: 18%;
}

.goal-cloud span:nth-child(2) {
  right: 9%;
  top: 28%;
  animation-delay: -2s;
}

.goal-cloud span:nth-child(3) {
  left: 18%;
  bottom: 20%;
  animation-delay: -3.8s;
}

.goal-cloud span:nth-child(4) {
  right: 17%;
  bottom: 15%;
  animation-delay: -5.4s;
}

.goal-cloud span:nth-child(n + 5) {
  left: 45%;
  top: 12%;
  animation-delay: -6.2s;
}

.form-cloud span {
  background: rgba(255, 255, 255, 0.36);
  color: rgba(0, 0, 0, 0.16);
}

.plan-copy p:not(.eyebrow) {
  max-width: 620px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.plan-copy {
  justify-self: center;
  width: min(100%, 1020px);
}

.planner {
  position: relative;
  justify-self: center;
  width: min(100%, 1120px);
  display: grid;
  gap: 18px;
}

.map-board,
.map-confirm {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.map-board {
  animation: none;
}

.control-label {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.map-checks input:focus,
.map-confirm .button:focus {
  outline: none;
}

.map-checks label:has(input:focus-visible),
.map-confirm .button:focus-visible {
  outline: 2px solid var(--black);
  outline-offset: 3px;
}

.map-board {
  display: grid;
  gap: 16px;
  min-height: 560px;
  padding: clamp(22px, 4vw, 34px);
  background:
    radial-gradient(circle at 85% 12%, rgba(0, 0, 0, 0.09), transparent 22%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.04) 1px, transparent 1px),
    linear-gradient(0deg, rgba(0, 0, 0, 0.04) 1px, transparent 1px),
    #ffffff;
  background-size: auto, 34px 34px, 34px 34px, auto;
  animation: map-grid-shift 30s linear infinite;
}

.plan-map.map-receive .map-board {
  animation:
    map-grid-shift 30s linear infinite,
    selected-goal-pulse 900ms ease-out;
}

.map-intro {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 7px;
  width: min(100%, 980px);
  margin-left: clamp(46px, 7vw, 86px);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background:
    linear-gradient(120deg, rgba(0, 0, 0, 0.08), transparent 46%),
    rgba(255, 255, 255, 0.92);
}

.map-intro strong {
  font-size: clamp(20px, 2.4vw, 32px);
  line-height: 1.08;
}

.map-intro span {
  max-width: 760px;
  color: var(--muted);
  font-weight: 750;
  line-height: 1.5;
}

.map-selected-panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(220px, 0.42fr) minmax(0, 1fr);
  gap: 18px;
  width: min(100%, 980px);
  margin-left: clamp(46px, 7vw, 86px);
  border: 1px solid rgba(0, 0, 0, 0.14);
  border-radius: 8px;
  padding: 16px;
  background:
    radial-gradient(circle at 86% 18%, rgba(0, 0, 0, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(245, 245, 245, 0.92));
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.08);
}

.map-selected-panel strong {
  display: block;
  margin-top: 5px;
  font-size: clamp(18px, 2vw, 25px);
  line-height: 1.12;
}

.map-selected-panel span {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.45;
}

.selected-goal-row {
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  gap: 10px;
}

.selected-goal-row button {
  position: relative;
  min-width: 145px;
  border: 1px solid var(--black);
  border-radius: 8px;
  padding: 12px 14px;
  background: var(--black);
  color: var(--white);
  text-align: left;
  cursor: pointer;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.selected-goal-row button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0 36%, rgba(255, 255, 255, 0.18) 48%, transparent 60%);
  transform: translateX(-110%);
  animation: selected-chip-scan 3.8s ease-in-out infinite;
}

.selected-goal-row button:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.24);
}

.selected-goal-row button span,
.selected-goal-row button small {
  position: relative;
  z-index: 1;
}

.selected-goal-row button span {
  margin: 0;
  color: currentColor;
  font-size: 14px;
  font-weight: 950;
  text-transform: uppercase;
}

.selected-goal-row button small {
  display: block;
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 11px;
  font-weight: 850;
}

.selected-goal-empty {
  align-self: center;
  border: 1px dashed rgba(0, 0, 0, 0.22);
  border-radius: 8px;
  padding: 13px 14px;
  background: rgba(255, 255, 255, 0.7);
}

.map-board::before,
.map-board::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 50%;
  pointer-events: none;
}

.map-board::before {
  width: 260px;
  height: 260px;
  right: -78px;
  top: -88px;
  animation: map-orbit-soft 10s ease-in-out infinite alternate;
}

.map-board::after {
  width: 220px;
  height: 220px;
  left: -90px;
  bottom: 38px;
  animation: map-orbit-soft 12s ease-in-out infinite alternate-reverse;
}

.map-route {
  position: absolute;
  left: clamp(44px, 7vw, 76px);
  top: 54px;
  bottom: 54px;
  width: 2px;
  background: linear-gradient(180deg, var(--black), rgba(0, 0, 0, 0.18), var(--black));
}

.map-route::before,
.map-route::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--black);
}

.map-route::before {
  left: 50%;
  top: 0;
  transform: translate(-50%, -50%);
}

.map-route::after {
  left: 50%;
  top: 0;
  transform: translate(-50%, -50%);
  animation: map-runner-vertical 6.2s ease-in-out infinite;
}

.map-slot {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 58px minmax(130px, 0.42fr) minmax(220px, 1fr);
  align-items: center;
  gap: 14px;
  width: min(100%, 980px);
  min-height: 82px;
  margin-left: clamp(46px, 7vw, 86px);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--black);
  text-align: left;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
  animation: none;
}

.map-slot::after {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  border-radius: 10px;
  background:
    radial-gradient(circle at 18% 50%, rgba(0, 0, 0, 0.14), transparent 34%),
    linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.1), transparent);
  opacity: 0;
  transform: scale(0.98);
  transition:
    opacity 220ms ease,
    transform 220ms ease;
}

.map-slot:nth-of-type(2n) {
  animation-delay: -1.8s;
}

.map-slot:nth-of-type(3n) {
  animation-delay: -3.4s;
}

.map-slot:hover,
.map-slot.has-goals {
  border-color: var(--black);
  background: var(--white);
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.13), 0 0 0 7px rgba(0, 0, 0, 0.035);
  transform: translateX(8px);
}

.map-slot:hover::after,
.map-slot.has-goals::after {
  opacity: 1;
  transform: scale(1.025);
  animation: selected-goal-aura 2.8s ease-in-out infinite;
}

.map-slot.has-goals span {
  animation: slot-pulse 2.8s ease-in-out infinite;
}

.map-slot span {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 50%;
  background: var(--black);
  color: var(--white);
  font-size: 13px;
  font-weight: 950;
}

.map-slot strong {
  display: block;
  font-size: clamp(20px, 2.5vw, 32px);
  font-weight: 950;
  line-height: 1.02;
}

.map-slot em {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  font-style: normal;
}

.map-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.map-checks label {
  position: relative;
  display: inline-grid;
  align-items: center;
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 12px 9px 34px;
  background: var(--soft);
  color: var(--black);
  font-size: 13px;
  font-weight: 950;
  cursor: pointer;
  transition:
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.map-checks label::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 50%;
  width: 12px;
  height: 12px;
  border: 1px solid currentColor;
  border-radius: 50%;
  transform: translateY(-50%);
}

.map-checks label:has(input:checked) {
  border-color: var(--black);
  background: var(--black);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
  animation: selected-chip 3.2s ease-in-out infinite alternate;
}

.map-checks label:has(input:checked)::before {
  background: var(--white);
  box-shadow: inset 0 0 0 3px var(--black);
}

.map-checks input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.map-confirm {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px;
}

.map-confirm span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.map-confirm strong {
  display: block;
  margin-top: 4px;
  color: var(--black);
  font-size: clamp(16px, 2vw, 28px);
  font-weight: 950;
  line-height: 1.18;
  overflow-wrap: anywhere;
}

.map-confirm .button {
  white-space: normal;
}

.planner-summary {
  margin: 0;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--muted);
  font-size: 14px;
}

.planner-summary strong {
  color: var(--black);
  overflow-wrap: anywhere;
}

@keyframes map-runner-vertical {
  0% {
    top: 0;
  }

  50% {
    top: 100%;
  }

  100% {
    top: 0;
  }
}

@keyframes selected-goal-pulse {
  0%,
  100% {
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.16);
  }

  50% {
    box-shadow: 0 20px 44px rgba(0, 0, 0, 0.28);
  }
}

@keyframes map-card-breathe {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(4px);
  }
}

@keyframes map-grid-shift {
  0% {
    background-position: 0 0, 0 0, 0 0, 0 0;
  }

  100% {
    background-position: 0 0, 34px 0, 0 34px, 0 0;
  }
}

@keyframes route-light {
  0% {
    opacity: 0.22;
    transform: translateX(-18%);
  }

  100% {
    opacity: 0.58;
    transform: translateX(18%);
  }
}

@keyframes slot-pulse {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.08);
  }
}

@keyframes map-orbit-soft {
  0% {
    opacity: 0.45;
    transform: translate3d(0, 0, 0) scale(1);
  }

  100% {
    opacity: 0.85;
    transform: translate3d(-18px, 14px, 0) scale(1.08);
  }
}

@keyframes form-surface {
  0% {
    box-shadow: var(--shadow-soft);
    transform: translateY(0);
  }

  100% {
    box-shadow: 0 24px 58px rgba(0, 0, 0, 0.12);
    transform: translateY(-3px);
  }
}

@keyframes surface-scan {
  0% {
    opacity: 0.32;
    transform: translateX(-18%);
  }

  100% {
    opacity: 0.76;
    transform: translateX(18%);
  }
}

@keyframes selected-goal-drift {
  0% {
    opacity: 0.42;
    transform: translate3d(0, 12px, 0) rotate(-2deg);
  }

  100% {
    opacity: 0.9;
    transform: translate3d(20px, -14px, 0) rotate(2deg);
  }
}

@keyframes selected-goal-aura {
  0%,
  100% {
    opacity: 0.42;
    filter: blur(0);
  }

  50% {
    opacity: 0.95;
    filter: blur(2px);
  }
}

@keyframes selected-chip {
  0% {
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.14);
  }

  100% {
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.26);
  }
}

@keyframes selected-chip-scan {
  0%,
  28% {
    transform: translateX(-110%);
  }

  72%,
  100% {
    transform: translateX(110%);
  }
}

@keyframes card-scan {
  0% {
    opacity: 0.36;
    transform: translateX(-12%);
  }

  100% {
    opacity: 0.78;
    transform: translateX(12%);
  }
}

@keyframes orbit-breathe {
  0% {
    opacity: 0.44;
    transform: scaleX(1.18) rotate(-2deg);
  }

  100% {
    opacity: 0.8;
    transform: scaleX(1.34) rotate(2deg);
  }
}

@keyframes choose-card-float {
  0% {
    transform: translateY(8px);
  }

  100% {
    transform: translateY(-8px);
  }
}

.mentor-band {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(300px, 0.78fr);
  gap: clamp(28px, 5vw, 72px);
  padding: clamp(64px, 8vw, 104px) clamp(20px, 5vw, 72px);
  background: var(--black);
  color: var(--white);
  overflow: hidden;
}

.mentor-band::after {
  content: "MENTOR";
  position: absolute;
  right: -0.08em;
  bottom: -0.17em;
  color: rgba(255, 255, 255, 0.055);
  font-size: clamp(86px, 16vw, 240px);
  font-weight: 950;
  line-height: 1;
  pointer-events: none;
  animation: watermark-drift 18s ease-in-out infinite alternate-reverse;
}

.mentor-band > * {
  position: relative;
  z-index: 1;
}

.mentor-band .eyebrow {
  color: rgba(255, 255, 255, 0.72);
}

.mentor-list {
  display: grid;
  gap: 14px;
}

.mentor-list p {
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.8);
  transition:
    opacity 720ms ease,
    transform 720ms cubic-bezier(0.22, 1, 0.36, 1),
    background 180ms ease,
    border-color 180ms ease;
}

.mentor-list p:hover {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.12);
}

.contact {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 5vw, 44px);
  padding: clamp(64px, 8vw, 112px) clamp(20px, 5vw, 72px);
  background:
    radial-gradient(circle at 86% 18%, rgba(0, 0, 0, 0.08), transparent 24%),
    radial-gradient(circle at 12% 78%, rgba(0, 0, 0, 0.055), transparent 22%),
    linear-gradient(115deg, rgba(0, 0, 0, 0.045) 0 1px, transparent 1px 100%),
    radial-gradient(circle at 84% 30%, rgba(0, 0, 0, 0.07), transparent 26%),
    var(--white);
  background-size: auto, auto, 34px 34px, auto, auto;
  overflow: hidden;
}

.contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 24%, rgba(0, 0, 0, 0.06), transparent 18%),
    linear-gradient(100deg, transparent 0 42%, rgba(0, 0, 0, 0.035) 50%, transparent 58%);
  opacity: 0.42;
  pointer-events: none;
  animation: surface-scan 14s ease-in-out infinite alternate-reverse;
}

.contact::after {
  content: "START";
  position: absolute;
  left: -0.06em;
  bottom: -0.2em;
  color: rgba(0, 0, 0, 0.04);
  font-size: clamp(110px, 19vw, 300px);
  font-weight: 950;
  line-height: 1;
  pointer-events: none;
  animation: watermark-drift 17s ease-in-out infinite alternate;
}

.contact > * {
  position: relative;
  z-index: 1;
  justify-self: center;
  width: min(100%, 1120px);
}

.contact-details {
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.contact-details a,
.contact-details span {
  padding: 10px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--black);
  font-size: 14px;
  font-weight: 800;
}

.contact-form {
  position: relative;
  display: grid;
  gap: 18px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
  box-shadow: var(--shadow-soft);
}

.contact-form > * {
  position: relative;
  z-index: 1;
}

.ai-preset {
  display: grid;
  gap: 10px;
  border: 1px solid var(--black);
  border-radius: 8px;
  padding: clamp(18px, 3vw, 28px);
  background:
    linear-gradient(120deg, rgba(0, 0, 0, 0.08), transparent 42%),
    var(--white);
  box-shadow: var(--shadow-soft);
}

.ai-preset[id] {
  scroll-margin-top: 112px;
}

.ai-preset span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.ai-preset strong {
  color: var(--black);
  font-size: clamp(20px, 2.35vw, 30px);
  font-weight: 950;
  line-height: 1.14;
}

.ai-preset p {
  max-width: 780px;
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.ai-settings {
  margin-top: 6px;
}

.ai-settings-toggle {
  display: inline-flex;
  width: fit-content;
  min-height: 24px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 0;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 12px;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-transform: none;
  cursor: pointer;
}

.ai-settings-toggle[aria-expanded="true"] {
  color: var(--black);
}

.ai-choice {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 4px;
}

.ai-choice label {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: 10px;
  min-height: 86px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  background: var(--white);
  cursor: pointer;
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
}

.ai-choice label:has(input:checked) {
  border-color: var(--black);
  box-shadow: inset 0 0 0 1px var(--black), 0 18px 38px rgba(0, 0, 0, 0.08);
}

.ai-choice label:hover {
  transform: translateY(-2px);
}

.ai-choice input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--black);
}

.ai-choice span {
  display: grid;
  gap: 4px;
}

.ai-choice span strong {
  color: var(--black);
  font-size: 16px;
  line-height: 1.1;
}

.ai-choice em {
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
  font-weight: 800;
  line-height: 1.35;
}

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

.goal-detail-card {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  background: var(--white);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.055);
}

.goal-detail-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 88% 16%, rgba(0, 0, 0, 0.08), transparent 28%),
    linear-gradient(120deg, transparent 0 42%, rgba(0, 0, 0, 0.045) 50%, transparent 58%);
  opacity: 0.32;
  pointer-events: none;
  animation: card-scan 6.8s ease-in-out infinite alternate;
}

.goal-detail-card > * {
  position: relative;
  z-index: 1;
}

.goal-detail-card[hidden] {
  display: none;
}

.goal-detail-card strong {
  font-size: 18px;
  font-weight: 950;
}

.other-focus {
  border-left: 3px solid var(--black);
  padding-left: 12px;
}

.contact-form [hidden] {
  display: none !important;
}

.contact-form fieldset {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.72);
}

.contact-form legend {
  padding: 0 8px;
  color: var(--black);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--black);
  font-size: 14px;
  font-weight: 900;
}

.contact-form label:has(textarea) {
  grid-column: 1 / -1;
}

.contact-form .auto-field input {
  border-color: var(--black);
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.06), transparent),
    var(--white);
  font-weight: 900;
}

.contact-form .auto-field input:placeholder-shown {
  color: var(--muted);
}

.range-field {
  grid-column: 1 / -1;
}

.range-top {
  justify-self: start;
  border-radius: 999px;
  padding: 6px 10px;
  background: var(--black);
  color: var(--white);
  font-size: 13px;
  font-weight: 950;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
}

.contact-form input[type="range"] {
  height: 28px;
  padding: 0;
  background: transparent;
  accent-color: var(--black);
  appearance: none;
}

.contact-form input[type="range"]::-webkit-slider-runnable-track {
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--black), #7d7d7d);
}

.contact-form input[type="range"]::-webkit-slider-thumb {
  width: 18px;
  height: 18px;
  margin-top: -7px;
  border: 3px solid var(--white);
  border-radius: 50%;
  background: var(--black);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.22);
  appearance: none;
}

.contact-form input[type="range"]::-moz-range-track {
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--black), #7d7d7d);
}

.contact-form input[type="range"]::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border: 3px solid var(--white);
  border-radius: 50%;
  background: var(--black);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.22);
}

.range-scale {
  display: flex;
  justify-content: space-between;
  padding-inline: 9px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  text-align: center;
}

.range-scale span {
  width: 18px;
  text-align: center;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form button {
  min-height: 50px;
  margin-top: 4px;
  background: var(--black);
  color: var(--white);
  font-size: 16px;
}

.contact-form button:disabled {
  cursor: default;
  opacity: 0.72;
}

.contact-form .ai-settings-toggle {
  min-height: auto;
  margin: 0;
  border: 0;
  border-radius: 0;
  padding: 0;
  background: transparent;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.2;
  text-align: left;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-transform: none;
  box-shadow: none;
}

.contact-form .ai-settings-toggle[aria-expanded="true"] {
  color: var(--black);
}

.privacy-consent {
  border: 1px solid var(--black);
  border-radius: 8px;
  padding: 16px;
  background:
    linear-gradient(120deg, rgba(0, 0, 0, 0.065), transparent 45%),
    rgba(255, 255, 255, 0.9);
}

.privacy-consent label {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  cursor: pointer;
}

.privacy-consent input {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  accent-color: var(--black);
}

.privacy-consent strong {
  display: block;
  margin-bottom: 4px;
  font-size: 15px;
  font-weight: 950;
}

.privacy-consent em {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
  font-weight: 800;
  line-height: 1.5;
}

.privacy-consent a {
  color: var(--black);
  font-weight: 950;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-note {
  color: var(--muted);
  font-size: 13px;
}

.privacy-section {
  position: relative;
  display: grid;
  gap: clamp(24px, 4vw, 42px);
  padding: clamp(64px, 8vw, 112px) clamp(20px, 5vw, 72px);
  background:
    radial-gradient(circle at 82% 16%, rgba(0, 0, 0, 0.08), transparent 24%),
    linear-gradient(180deg, #ffffff, #f3f3f3);
  overflow: hidden;
}

.privacy-section[id] {
  scroll-margin-top: 112px;
}

.privacy-section::after {
  content: "GDPR";
  position: absolute;
  right: -0.08em;
  bottom: -0.16em;
  color: rgba(0, 0, 0, 0.045);
  font-size: clamp(120px, 20vw, 300px);
  font-weight: 950;
  line-height: 1;
  pointer-events: none;
}

.privacy-section > * {
  position: relative;
  z-index: 1;
}

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

.privacy-grid article {
  position: relative;
  min-height: 220px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.07);
  overflow: hidden;
}

.privacy-grid article::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, transparent 0 38%, rgba(0, 0, 0, 0.045) 48%, transparent 58%),
    radial-gradient(circle at 88% 18%, rgba(0, 0, 0, 0.08), transparent 30%);
  opacity: 0.55;
  pointer-events: none;
  animation: card-scan 7s ease-in-out infinite alternate;
}

.privacy-grid article > * {
  position: relative;
  z-index: 1;
}

.privacy-grid span {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 50%;
  background: var(--black);
  color: var(--white);
  font-size: 12px;
  font-weight: 950;
}

.privacy-grid h3 {
  margin: 18px 0 8px;
  font-size: 20px;
  text-transform: uppercase;
}

.privacy-grid p,
.privacy-note {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.privacy-note {
  max-width: 980px;
  border-left: 3px solid var(--black);
  padding-left: 16px;
  font-size: 14px;
  font-weight: 800;
}

.disclaimer {
  display: grid;
  gap: 10px;
  padding: 34px clamp(20px, 5vw, 72px);
  border-top: 1px solid var(--line);
  background: #f7f7f7;
}

.disclaimer p {
  max-width: 980px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.disclaimer .eyebrow {
  color: var(--black);
  font-size: 12px;
}

.footer {
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 26px clamp(20px, 5vw, 72px);
  background: var(--black);
  color: rgba(255, 255, 255, 0.76);
}

.footer-main,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}

.footer-main {
  max-width: 620px;
}

.footer-links {
  justify-content: flex-end;
}

.footer a {
  color: rgba(255, 255, 255, 0.86);
}

.legal-page {
  background: var(--paper);
}

.legal-page .site-header {
  position: sticky;
}

.legal-privacy {
  min-height: calc(100vh - 104px);
  padding-top: clamp(110px, 12vw, 150px);
}

.legal-privacy .section-heading p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.privacy-text {
  display: grid;
  gap: 12px;
  max-width: 980px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(20px, 3vw, 30px);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.07);
}

.privacy-text h2 {
  margin: 0;
  font-size: clamp(22px, 2.2vw, 30px);
}

.privacy-text p {
  margin: 0 0 14px;
  color: var(--muted);
  line-height: 1.65;
}

.legal-back {
  width: fit-content;
}

@media (max-width: 1020px) {
  .header-action {
    display: none;
  }

  .hero,
  .how-slide,
  .program-slide,
  .intro,
  .value-strip,
  .mentor-feature,
  .visual-section,
  .process,
  .choose-slide,
  .plan-map,
  .mentor-band,
  .contact,
  .section-heading {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .program-slide {
    min-height: auto;
  }

  .program-node {
    min-height: 172px;
  }

  .process-copy {
    position: static;
  }

  .goal-grid,
  .process-steps,
  .privacy-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mentor-feature-grid article {
    grid-template-columns: 64px minmax(0, 1fr);
  }

  .mentor-feature-grid p {
    grid-column: 2;
  }

  .focus-board {
    min-height: 460px;
  }
}

@media (max-width: 680px) {
  .nav {
    display: none;
  }

  .opening-screen {
    min-height: 100svh;
  }

  .opening-brand > span {
    display: none;
  }

  .ai-badge {
    right: clamp(22px, 5vw, 72px);
    top: 96px;
    width: min(280px, 62vw);
  }

  .opening-content h1 {
    font-size: 38px;
    line-height: 1.08;
  }

  .opening-content {
    margin-top: 118px;
  }

  .opening-meter {
    display: none;
  }

  .scroll-cue {
    left: clamp(22px, 5vw, 72px);
    right: auto;
  }

  .how-content h2 {
    font-size: 70px;
    line-height: 1.06;
  }

  .choose-content h2 {
    font-size: 54px;
    line-height: 1.02;
  }

  .how-cue {
    left: clamp(22px, 5vw, 72px);
    right: auto;
  }

  .bridge-cue {
    left: clamp(22px, 5vw, 72px);
    right: auto;
  }

  .bridge-mark > span {
    display: none;
  }


  .brand-word {
    display: none;
  }

  .brand img {
    width: 64px;
    height: 64px;
  }

  h1 {
    font-size: 44px;
  }

  .program-copy h2 {
    font-size: 38px;
    line-height: 1.12;
  }

  .program-slide,
  .ai-slide,
  .program-bridge {
    min-height: auto;
    margin-top: -96px;
    padding-top: clamp(118px, 20vw, 150px);
    padding-bottom: clamp(118px, 22vw, 170px);
  }

  .program-slide {
    padding-bottom: clamp(150px, 28vw, 220px);
  }

  .program-map {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 16px;
  }

  .program-map::before,
  .program-map::after {
    display: none;
  }

  .ai-choice,
  .goal-detail-grid {
    grid-template-columns: 1fr;
  }

  .program-node,
  .program-node.mentor,
  .program-node.action,
  .program-node.result {
    justify-self: stretch;
    width: 100%;
    min-height: auto;
    padding: 22px;
  }

  .program-node.result {
    margin-bottom: 24px;
  }

  .hero-stats,
  .goal-grid,
  .privacy-grid,
  .mentor-feature-grid article {
    grid-template-columns: 1fr;
  }

  .mentor-feature-grid p {
    grid-column: auto;
  }

  .process-steps,
  .map-slot,
  .process-steps article,
  .contact-form fieldset,
  .goal-detail-grid {
    grid-template-columns: 1fr;
  }

  .process-steps article {
    min-height: auto;
  }

  .process-steps h3 {
    min-height: 0;
  }

  .map-board {
    min-height: auto;
  }

  .goal-cloud {
    display: none;
  }

  .map-route {
    display: none;
  }

  .map-slot {
    margin-left: 0;
    transform: none;
  }

  .map-intro {
    margin-left: 0;
  }

  .map-selected-panel {
    grid-template-columns: 1fr;
    margin-left: 0;
  }

  .map-slot:hover,
  .map-slot.has-goals {
    transform: translateY(-2px);
  }

  .map-checks {
    justify-content: flex-start;
  }

  .map-confirm {
    align-items: stretch;
    flex-direction: column;
  }

  .focus-board {
    min-height: auto;
    gap: 12px;
    padding: 20px;
  }

  .focus-board::before,
  .focus-board::after {
    display: none;
  }

  .focus-center,
  .focus-item {
    position: relative;
    inset: auto;
  }

  .focus-center {
    width: 170px;
    height: 170px;
    margin-bottom: 8px;
  }

  .focus-item {
    width: 100%;
  }

  .button {
    width: 100%;
  }

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

@media (max-height: 840px) and (min-width: 760px) {
  .opening-brand img {
    width: clamp(88px, 7vw, 118px);
    height: clamp(88px, 7vw, 118px);
  }

  .opening-brand::after {
    left: calc(clamp(88px, 7vw, 118px) + 18px);
  }

  .opening-content {
    margin-top: clamp(118px, 17vh, 150px);
  }

  .opening-content h1 {
    max-width: 1040px;
    font-size: clamp(40px, 6.2vw, 78px);
    line-height: 1.05;
  }

  .opening-content p:not(.eyebrow) {
    max-width: 720px;
    margin-top: 16px;
    font-size: clamp(16px, 1.55vw, 20px);
    line-height: 1.42;
  }

  .opening-meter {
    top: clamp(160px, 23vh, 210px);
    height: min(36vh, 280px);
  }
}

@keyframes float-center {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

@keyframes slow-orbit {
  0% {
    transform: rotate(-10deg) scaleX(1.28) translateY(0);
  }

  100% {
    transform: rotate(-5deg) scaleX(1.42) translateY(-18px);
  }
}

@keyframes mentor-ring-drift {
  0% {
    transform: translateX(-20%) rotate(-9deg) scaleX(1.1) translateY(0);
  }

  100% {
    transform: translateX(-20%) rotate(-4deg) scaleX(1.22) translateY(-14px);
  }
}

@keyframes panel-sheen {
  0%,
  55% {
    transform: translateX(-120%);
  }

  78%,
  100% {
    transform: translateX(120%);
  }
}

@keyframes watermark-drift {
  0% {
    transform: translate3d(0, 0, 0);
  }

  100% {
    transform: translate3d(-16px, -10px, 0);
  }
}

@keyframes micro-float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }
}

@keyframes scroll-dot {
  0% {
    opacity: 0;
    transform: translate(-50%, 0);
  }

  30% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translate(-50%, 18px);
  }
}

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

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