:root {
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ink: #142039;
  --muted: #667085;
  --violet: #5b50f6;
  --violet-dark: #4037ce;
  --mint: #1aa99a;
  --line: rgba(77, 89, 121, 0.14);
  --surface: rgba(255, 255, 255, 0.86);
  --shadow: 0 34px 90px rgba(48, 49, 112, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  min-height: 100%;
}

body {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 10% 12%, rgba(91, 80, 246, 0.17), transparent 31%),
    radial-gradient(circle at 89% 8%, rgba(26, 169, 154, 0.17), transparent 29%),
    linear-gradient(145deg, #f7f8ff 0%, #fbfdfd 52%, #edf8f5 100%);
  color: var(--ink);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(65, 74, 105, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(65, 74, 105, 0.04) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, #000, transparent 82%);
  content: "";
}

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

a:focus-visible,
button:focus-visible {
  outline: 4px solid rgba(91, 80, 246, 0.2);
  outline-offset: 3px;
}

.page-shell {
  width: min(1440px, 100%);
  min-height: 100vh;
  margin: 0 auto;
  padding: 22px clamp(18px, 4vw, 64px) 18px;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 64px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(91, 80, 246, 0.22);
  border-radius: 15px;
  background: linear-gradient(145deg, #fff, #ecebff);
  box-shadow: 0 12px 26px rgba(91, 80, 246, 0.13);
}

.brand-mark svg {
  width: 23px;
  fill: none;
  stroke: var(--violet);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.brand > span:last-child {
  display: grid;
  gap: 2px;
}

.brand strong {
  font-size: 16px;
  letter-spacing: -0.02em;
}

.brand small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.language-switcher {
  display: flex;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 10px 26px rgba(48, 49, 112, 0.08);
}

.language-switcher button {
  min-width: 46px;
  height: 36px;
  padding: 0 12px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
}

.language-switcher button[aria-pressed="true"] {
  background: var(--ink);
  color: #fff;
  box-shadow: 0 7px 16px rgba(20, 32, 57, 0.2);
}

.move-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(440px, 1.08fr);
  align-items: center;
  gap: clamp(36px, 6vw, 92px);
  min-height: calc(100vh - 150px);
  padding: clamp(34px, 5vw, 74px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.92);
  border-radius: 38px;
  background: var(--surface);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
}

.move-card::before {
  position: absolute;
  top: 0;
  left: 9%;
  width: 40%;
  height: 4px;
  border-radius: 0 0 999px 999px;
  background: linear-gradient(90deg, var(--violet), #8077ff, var(--mint));
  content: "";
}

.move-copy {
  position: relative;
  z-index: 2;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 20px;
  padding: 8px 12px;
  border: 1px solid rgba(26, 169, 154, 0.2);
  border-radius: 999px;
  background: rgba(229, 250, 246, 0.82);
  color: #087a70;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 5px rgba(26, 169, 154, 0.12);
}

h1 {
  display: grid;
  gap: 2px;
  margin: 0;
  font-size: clamp(48px, 6vw, 82px);
  line-height: 0.96;
  letter-spacing: -0.065em;
}

.title-accent {
  color: var(--violet);
}

.lead {
  max-width: 650px;
  margin: 25px 0 0;
  color: var(--muted);
  font-size: clamp(16px, 1.6vw, 20px);
  line-height: 1.62;
}

.course-points {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 24px 0 28px;
}

.course-points span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.course-points b {
  color: var(--ink);
  font-size: 13px;
}

.course-points i {
  font-style: normal;
}

.primary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  min-height: 58px;
  padding: 0 23px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 18px;
  background: linear-gradient(135deg, var(--violet-dark), var(--violet) 56%, #6e65ff);
  color: #fff;
  font-size: 15px;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 18px 38px rgba(70, 59, 220, 0.28), inset 0 1px rgba(255, 255, 255, 0.2);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.primary-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 23px 46px rgba(70, 59, 220, 0.34), inset 0 1px rgba(255, 255, 255, 0.2);
}

.primary-cta svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.progress-note {
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 580px;
  margin-top: 21px;
  color: #217267;
}

.progress-note svg {
  flex: 0 0 auto;
  width: 21px;
  fill: none;
  stroke: var(--mint);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.progress-note p,
.transition-note {
  margin: 0;
  font-size: 13px;
  font-weight: 750;
  line-height: 1.5;
}

.transition-note {
  max-width: 580px;
  margin-top: 12px;
  color: #8991a4;
  font-weight: 650;
}

.move-visual {
  position: relative;
  z-index: 1;
  min-width: 0;
  padding: 38px 12px 50px 30px;
}

.visual-glow {
  position: absolute;
  inset: 4% -7% 5% 8%;
  z-index: -1;
  border-radius: 44% 56% 52% 48%;
  background: linear-gradient(145deg, rgba(91, 80, 246, 0.23), rgba(26, 169, 154, 0.18));
  filter: blur(5px);
  transform: rotate(-4deg);
}

.visual-card {
  position: relative;
  overflow: hidden;
  border: 9px solid rgba(255, 255, 255, 0.9);
  border-radius: 31px;
  background: #eef3f3;
  box-shadow: 0 32px 70px rgba(33, 51, 82, 0.23);
  transform: rotate(1.7deg);
}

.visual-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent 42%);
  pointer-events: none;
  content: "";
}

.visual-card img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1.357 / 1;
  object-fit: cover;
}

.new-home-badge {
  position: absolute;
  right: -9px;
  bottom: 8px;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: calc(100% - 36px);
  padding: 13px 16px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 44px rgba(41, 47, 92, 0.2);
  backdrop-filter: blur(14px);
}

.home-icon {
  display: grid;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 13px;
  background: linear-gradient(145deg, #eeecff, #e2faf6);
  color: var(--violet);
}

.home-icon svg {
  width: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.new-home-badge > span:last-child {
  display: grid;
  min-width: 0;
  gap: 3px;
}

.new-home-badge small {
  color: var(--muted);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.new-home-badge strong {
  overflow: hidden;
  color: var(--ink);
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.route-line {
  position: absolute;
  top: 3px;
  left: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #747d92;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.route-line span {
  text-decoration: line-through;
  text-decoration-color: #f05d53;
  text-decoration-thickness: 2px;
}

.route-line i {
  width: 36px;
  height: 1px;
  background: linear-gradient(90deg, #9da3b2, var(--violet));
}

.route-line b {
  color: var(--violet);
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 54px;
  padding: 0 6px;
  color: #8b93a6;
  font-size: 11px;
  font-weight: 750;
}

footer a {
  color: #707a90;
  text-decoration: none;
}

footer a:hover {
  color: var(--violet);
}

@media (max-width: 1000px) {
  .move-card {
    grid-template-columns: 1fr;
    gap: 20px;
    padding-bottom: 54px;
  }

  .move-copy {
    max-width: 760px;
  }

  .move-visual {
    width: min(760px, 100%);
    margin: 4px auto 0;
  }
}

@media (max-width: 620px) {
  .page-shell {
    padding: 10px 10px 4px;
  }

  .site-header {
    min-height: 62px;
    padding: 0 5px;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
    border-radius: 13px;
  }

  .brand strong {
    font-size: 14px;
  }

  .brand small {
    font-size: 9px;
  }

  .language-switcher button {
    min-width: 39px;
    height: 33px;
    padding: 0 9px;
  }

  .move-card {
    min-height: 0;
    padding: 31px 21px 38px;
    border-radius: 27px;
  }

  .eyebrow {
    margin-bottom: 16px;
  }

  h1 {
    font-size: clamp(41px, 13vw, 62px);
  }

  .lead {
    margin-top: 20px;
    font-size: 16px;
  }

  .course-points {
    margin: 20px 0 23px;
  }

  .primary-cta {
    width: 100%;
    padding: 0 17px;
  }

  .move-visual {
    padding: 33px 0 58px;
  }

  .visual-card {
    border-width: 6px;
    border-radius: 23px;
    transform: none;
  }

  .new-home-badge {
    right: 8px;
    bottom: 8px;
    left: 8px;
    max-width: none;
  }

  .route-line {
    left: 2px;
  }

  footer {
    justify-content: center;
  }

  footer span {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
