:root {
  --joint-bg: #eef2f7;
  --joint-surface: #f5f8fc;
  --joint-inset: inset 5px 5px 10px #cbd5e1, inset -5px -5px 10px #ffffff;
  --joint-outset: 8px 8px 16px #cbd5e1, -8px -8px 16px #ffffff;
  --joint-outset-hover: 12px 12px 24px #b8c4d4, -12px -12px 24px #ffffff;
  --joint-outset-small: 4px 4px 8px #cbd5e1, -4px -4px 8px #ffffff;
  --joint-accent: #0f766e;
  --joint-accent-light: #14b8a6;
  --joint-accent-hover: #115e59;
  --joint-accent-contrast: #ffffff;
  --joint-ink-dark: #1e293b;
  --joint-ink-muted: #64748b;
  --joint-alert-bg: #fee2e2;
  --joint-alert-ink: #991b1b;
  --joint-success-bg: #ccfbf1;
  --joint-success-ink: #115e59;
  --joint-border-radius: 24px;
  --joint-pill-radius: 999px;
  --joint-font-display: 'Nunito', sans-serif;
  --joint-font-body: 'Inter', sans-serif;
}

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

body {
  background-color: var(--joint-bg);
  color: var(--joint-ink-dark);
  font-family: var(--joint-font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--joint-font-display);
  font-weight: 800;
  color: var(--joint-ink-dark);
  line-height: 1.2;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* Base structural blocks */
.mov-frame {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

.mov-chapter {
  padding: 10dvh 0;
  position: relative;
}

/* Header Shared Area */
.mov-navigation-hub {
  background-color: var(--joint-surface);
  box-shadow: 0 4px 12px rgba(203, 213, 225, 0.4);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
}

.mov-navigation-hub .mov-frame {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  position: relative;
}

.mov-scroll-track {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 4px;
  background: var(--joint-accent-light);
  width: 0%;
  animation: mov-progress-fill linear;
  animation-timeline: scroll(root);
}

@keyframes mov-progress-fill {
  to { width: 100%; }
}

.mov-identity {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--joint-font-display);
  font-weight: 900;
  font-size: 1.4rem;
  color: var(--joint-accent);
}

.mov-identity svg {
  fill: var(--joint-accent);
  width: 32px;
  height: 32px;
}

.mov-catalog {
  display: flex;
  align-items: center;
  gap: 32px;
}

.mov-anchor-nest {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
}

.mov-anchor-link {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--joint-ink-muted);
  padding: 8px 16px;
  border-radius: var(--joint-pill-radius);
  transition: all 0.25s ease;
}

.mov-anchor-link:hover, .mov-anchor-link.mov-active {
  color: var(--joint-accent);
  box-shadow: var(--joint-inset);
}

/* Mobile Hamburger Menu */
.mov-hamburger-trigger {
  display: none;
}

.mov-hamburger-label {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  box-shadow: var(--joint-outset-small);
}

.mov-hamburger-label span {
  display: block;
  width: 24px;
  height: 3px;
  background-color: var(--joint-accent);
  border-radius: 2px;
  transition: 0.3s;
}

/* Neumorphic Common elements */
.mov-pod {
  background: var(--joint-surface);
  box-shadow: var(--joint-outset);
  border-radius: var(--joint-border-radius);
  padding: 32px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.7);
}

.mov-pod:hover {
  transform: translateY(-4px);
  box-shadow: var(--joint-outset-hover);
}

.mov-pressable {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-weight: 700;
  font-family: var(--joint-font-display);
  border-radius: var(--joint-pill-radius);
  transition: all 0.2s ease;
  border: none;
  cursor: pointer;
  box-shadow: var(--joint-outset);
  background-color: var(--joint-surface);
  color: var(--joint-accent);
}

.mov-pressable:hover {
  box-shadow: var(--joint-inset);
  color: var(--joint-accent-hover);
}

.mov-pressable-accent {
  background-color: var(--joint-accent);
  color: var(--joint-accent-contrast);
  box-shadow: 4px 4px 10px rgba(15, 118, 110, 0.3), -4px -4px 10px rgba(255, 255, 255, 0.9);
}

.mov-pressable-accent:hover {
  background-color: var(--joint-accent-hover);
  color: var(--joint-accent-contrast);
  box-shadow: inset 4px 4px 8px rgba(0, 0, 0, 0.2);
}

/* Scroll View Animations */
.mov-reveal-zone {
  animation: mov-slide-up auto linear both;
  animation-timeline: view();
  animation-range: entry 5% entry 30%;
}

@keyframes mov-slide-up {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Index Page Specifics */
/* Hero Spot: Neumorphic Light Layout */
.mov-spotlight-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  padding-top: 6dvh;
  padding-bottom: 8dvh;
}

.mov-spotlight-intel {
  flex: 1;
  max-width: 55%;
  position: relative;
}

.mov-spotlight-meta {
  flex: 1;
  max-width: 45%;
  display: flex;
  justify-content: center;
  position: relative;
}

.mov-heading-hero {
  font-size: 3rem;
  margin-bottom: 20px;
  color: var(--joint-accent);
}

.mov-tagline-hero {
  font-size: 1.15rem;
  color: var(--joint-ink-muted);
  margin-bottom: 32px;
}

.mov-floating-badge {
  position: absolute;
  bottom: -20px;
  right: -10px;
  background-color: var(--joint-surface);
  box-shadow: var(--joint-outset);
  padding: 16px 24px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 5;
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.mov-badge-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--joint-success-bg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.mov-badge-icon svg {
  width: 20px;
  height: 20px;
  fill: var(--joint-success-ink);
}

.mov-badge-txt {
  font-family: var(--joint-font-display);
  font-weight: 800;
  font-size: 1rem;
  color: var(--joint-accent);
}

.mov-hero-frame {
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--joint-outset);
  padding: 16px;
  background-color: var(--joint-surface);
  width: 100%;
}

.mov-hero-img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 24px;
  display: block;
}

/* Content: Problem / Solution Section */
.mov-problems-solutions-box {
  display: flex;
  gap: 32px;
  margin-bottom: 48px;
}

.mov-problem-side {
  flex: 1;
  background-color: var(--joint-alert-bg);
  color: var(--joint-alert-ink);
  border-radius: var(--joint-border-radius);
  padding: 32px;
  box-shadow: var(--joint-outset-small);
}

.mov-solution-side {
  flex: 1;
  background-color: var(--joint-success-bg);
  color: var(--joint-success-ink);
  border-radius: var(--joint-border-radius);
  padding: 32px;
  box-shadow: var(--joint-outset-small);
}

.mov-side-header {
  font-size: 1.5rem;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--joint-font-display);
  font-weight: 800;
}

.mov-side-header svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.mov-side-array {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mov-side-array li {
  position: relative;
  padding-left: 28px;
  font-weight: 500;
}

.mov-side-array li::before {
  content: "•";
  position: absolute;
  left: 8px;
  font-size: 1.5rem;
  line-height: 1;
}

.mov-scenery-overlay-panel {
  position: relative;
  height: 40vh;
  border-radius: var(--joint-border-radius);
  overflow: hidden;
  box-shadow: var(--joint-outset);
}

.mov-scenery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mov-scenery-inner-tint {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 118, 110, 0.2) 0%, rgba(15, 118, 110, 0.75) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
}

.mov-scenery-inner-tint p {
  color: var(--joint-accent-contrast);
  font-size: 1.8rem;
  font-family: var(--joint-font-display);
  font-weight: 800;
  max-width: 800px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Features Neumorphic Matrix */
.mov-matrix-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 40px;
}

.mov-perk-pod {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mov-perk-icon-shell {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background-color: var(--joint-surface);
  box-shadow: var(--joint-inset);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.mov-perk-icon-shell svg {
  width: 32px;
  height: 32px;
  fill: var(--joint-accent);
}

.mov-perk-heading {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--joint-accent);
}

/* Stepper "How it works" */
.mov-stepper-envelope {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 40px;
}

.mov-stepper-bar-pills {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
}

.mov-stepper-bar-pills::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 10%;
  right: 10%;
  height: 4px;
  border-top: 3px dashed var(--joint-accent-light);
  transform: translateY(-50%);
  z-index: 1;
}

.mov-pill-circle {
  background-color: var(--joint-surface);
  box-shadow: var(--joint-outset);
  padding: 12px 24px;
  border-radius: var(--joint-pill-radius);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.mov-pill-circle-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: var(--joint-accent);
  color: var(--joint-accent-contrast);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.9rem;
}

.mov-pill-circle-txt {
  font-family: var(--joint-font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--joint-accent);
}

.mov-stepper-text-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: center;
}

.mov-stepper-desc-text {
  font-size: 0.95rem;
  color: var(--joint-ink-muted);
}

/* CTA strip */
.mov-solicitation-strip {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  background-color: var(--joint-surface);
  box-shadow: var(--joint-outset);
  border-radius: var(--joint-border-radius);
  padding: 48px;
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.mov-solicitation-heading {
  font-size: 2.2rem;
  margin-bottom: 16px;
  color: var(--joint-accent);
}

.mov-solicitation-para {
  font-size: 1.1rem;
  color: var(--joint-ink-muted);
  margin-bottom: 28px;
}

/* Expert Page Layout */
.mov-expert-biography {
  display: flex;
  gap: 48px;
  align-items: center;
  margin-top: 40px;
}

.mov-expert-vis {
  flex: 1;
  max-width: 45%;
}

.mov-expert-prose {
  flex: 1;
  max-width: 55%;
}

.mov-expert-img-holder {
  border-radius: var(--joint-border-radius);
  box-shadow: var(--joint-outset);
  padding: 16px;
  background-color: var(--joint-surface);
}

.mov-expert-img {
  width: 100%;
  border-radius: 16px;
  display: block;
}

.mov-stats-2x2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.mov-stat-tile {
  text-align: center;
}

.mov-stat-num {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--joint-accent-light);
  font-family: var(--joint-font-display);
  margin-bottom: 4px;
}

.mov-stat-label {
  font-size: 0.9rem;
  color: var(--joint-ink-muted);
  font-weight: 600;
}

/* Reserve Page Layout */
.mov-reserve-shell {
  max-width: 680px;
  margin: 0 auto;
  margin-top: 40px;
}

.mov-form-pod {
  background-color: var(--joint-surface);
  box-shadow: var(--joint-outset);
  border-radius: var(--joint-border-radius);
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.mov-form-heading {
  font-size: 1.8rem;
  color: var(--joint-accent);
  margin-bottom: 24px;
  text-align: center;
}

.mov-form-element {
  margin-bottom: 20px;
}

.mov-form-element label {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--joint-ink-muted);
  margin-bottom: 8px;
}

.mov-form-field {
  width: 100%;
  padding: 14px 20px;
  font-size: 1rem;
  border-radius: 12px;
  border: none;
  background-color: var(--joint-bg);
  box-shadow: var(--joint-inset);
  color: var(--joint-ink-dark);
  font-family: var(--joint-font-body);
  outline: none;
}

.mov-form-field:focus {
  box-shadow: inset 2px 2px 5px #cbd5e1, inset -2px -2px 5px #ffffff, 0 0 0 2px var(--joint-accent-light);
}

.mov-form-terms {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.85rem;
  color: var(--joint-ink-muted);
  cursor: pointer;
}

.mov-form-terms input {
  margin-top: 3px;
}

/* FAQ Accordion Section */
.mov-faq-panel {
  margin-top: 60px;
}

.mov-faq-heading {
  font-size: 1.8rem;
  text-align: center;
  color: var(--joint-accent);
  margin-bottom: 32px;
}

.mov-faq-deck {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 680px;
  margin: 0 auto;
}

.mov-faq-card {
  background-color: var(--joint-surface);
  border-radius: 16px;
  box-shadow: var(--joint-outset-small);
  overflow: hidden;
}

.mov-faq-card summary {
  padding: 20px;
  font-weight: 700;
  font-family: var(--joint-font-display);
  color: var(--joint-accent);
  cursor: pointer;
  outline: none;
  user-select: none;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.mov-faq-card summary::after {
  content: "+";
  font-size: 1.4rem;
  color: var(--joint-accent);
  transition: transform 0.3s ease;
}

.mov-faq-card[open] summary::after {
  content: "-";
  transform: rotate(180deg);
}

.mov-faq-card p {
  padding: 0 20px 20px 20px;
  font-size: 0.95rem;
  color: var(--joint-ink-muted);
}

/* Cookie Banner Area */
.mov-cookie-ribbon {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--joint-surface);
  box-shadow: 0 -8px 24px rgba(203, 213, 225, 0.5);
  border-top: 1px solid rgba(255, 255, 255, 0.8);
  padding: 24px 0;
  z-index: 10000;
  transform: translateY(100%);
  transition: transform 0.4s ease-out;
}

.mov-cookie-ribbon.mov-active {
  transform: translateY(0);
}

.mov-cookie-ribbon .mov-frame {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.mov-cookie-info {
  font-size: 0.9rem;
  color: var(--joint-ink-muted);
}

.mov-cookie-choices {
  display: flex;
  gap: 16px;
}

/* Footer Shared Area */
.mov-footer-main {
  background-color: var(--joint-surface);
  border-top: 1px solid rgba(255, 255, 255, 0.6);
  padding: 60px 0 30px 0;
  box-shadow: 0 -4px 12px rgba(203, 213, 225, 0.2);
}

.mov-footer-main .mov-frame {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.mov-footer-links {
  display: flex;
  gap: 24px;
  list-style: none;
}

.mov-footer-links a {
  font-size: 0.85rem;
  color: var(--joint-ink-muted);
  font-weight: 600;
}

.mov-footer-links a:hover {
  color: var(--joint-accent);
}

.mov-disclaimer {
  font-size: 0.8rem;
  color: var(--joint-ink-muted);
  text-align: center;
  max-width: 800px;
  line-height: 1.5;
  border-top: 1px solid rgba(203, 213, 225, 0.3);
  padding-top: 24px;
}

.mov-copyright {
  font-size: 0.8rem;
  color: var(--joint-ink-muted);
}

/* Legal & Thank Pages layout */
.mov-legal-envelope {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
}

.mov-legal-envelope h1 {
  font-size: 2.5rem;
  color: var(--joint-accent);
  margin-bottom: 20px;
}

.mov-legal-envelope h2 {
  font-size: 1.5rem;
  color: var(--joint-accent);
  margin-top: 32px;
  margin-bottom: 12px;
}

.mov-legal-envelope p {
  margin-bottom: 16px;
  color: var(--joint-ink-muted);
}

/* Thank You layout */
.mov-thank-block {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.mov-thank-block h1 {
  font-size: 3rem;
  color: var(--joint-accent);
  margin-bottom: 16px;
}

.mov-thank-img-wrap {
  margin: 32px auto;
  max-width: 400px;
  border-radius: var(--joint-border-radius);
  overflow: hidden;
  box-shadow: var(--joint-outset);
  padding: 12px;
  background-color: var(--joint-surface);
}

.mov-thank-img {
  width: 100%;
  border-radius: 16px;
  display: block;
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .mov-spotlight-layout {
    flex-direction: column;
    text-align: center;
    gap: 32px;
  }
  .mov-spotlight-intel {
    max-width: 100%;
  }
  .mov-spotlight-meta {
    max-width: 80%;
    margin: 0 auto;
  }
  .mov-problems-solutions-box {
    flex-direction: column;
  }
  .mov-matrix-container {
    grid-template-columns: 1fr;
  }
  .mov-stepper-bar-pills {
    display: none;
  }
  .mov-stepper-text-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .mov-expert-biography {
    flex-direction: column;
  }
  .mov-expert-vis, .mov-expert-prose {
    max-width: 100%;
  }
  .mov-stats-2x2 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .mov-hamburger-label {
    display: flex;
  }
  .mov-anchor-nest {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background-color: var(--joint-surface);
    box-shadow: 0 8px 16px rgba(203, 213, 225, 0.4);
    padding: 24px;
    gap: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.8);
  }
  .mov-hamburger-trigger:checked ~ .mov-anchor-nest {
    display: flex;
  }
  .mov-cookie-ribbon .mov-frame {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }
}