/* ==========================================================================
   THEME VARIABLES (COLORFUL + PRESET K LAYERED DEPTH)
   Custom variable names without prohibited terms
   ========================================================================== */
:root {
  --joint-vibe-bg: #0F172A;
  --joint-vibe-surface-light: #FFFFFF;
  --joint-vibe-surface-soft: #F8FAFC;
  --joint-vibe-teal: #0EA5E9;
  --joint-vibe-emerald: #10B981;
  --joint-vibe-amber: #F59E0B;
  --joint-vibe-ink-dark: #0F172A;
  --joint-vibe-ink-muted: #475569;
  --joint-vibe-border: #E2E8F0;
  
  --joint-vibe-gradient-hero: linear-gradient(135deg, rgba(15, 23, 42, 0.88) 0%, rgba(14, 165, 233, 0.75) 100%);
  --joint-vibe-gradient-btn: linear-gradient(135deg, #0EA5E9 0%, #10B981 100%);
  --joint-vibe-gradient-card: linear-gradient(180deg, #FFFFFF 0%, #F1F5F9 100%);

  --font-display: 'Montserrat', sans-serif;
  --font-body: 'Open Sans', sans-serif;

  --joint-shadow-raised: 0 8px 24px rgba(15, 23, 42, 0.1);
  --joint-shadow-levitate: 0 20px 60px rgba(15, 23, 42, 0.18);
  --joint-shadow-deep: 0 30px 80px rgba(15, 23, 42, 0.28);
}

/* Scroll-driven animations */
@supports (animation-timeline: scroll()) {
  .articular-progress-tracker {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--joint-vibe-gradient-btn);
    z-index: 10000;
    transform-origin: 0 50%;
    animation: articular-progress-fill linear auto;
    animation-timeline: scroll(root);
  }

  @keyframes articular-progress-fill {
    0% { transform: scaleX(0); }
    100% { transform: scaleX(1); }
  }
}

@supports (animation-timeline: view()) {
  .articular-raised-panel,
  .pivotal-feature-card,
  .articular-step-pill,
  .expert-stat-pill,
  .reserve-info-card,
  .reserve-faq-lifting-card {
    animation: articular-reveal-up linear both;
    animation-timeline: view();
    animation-range: entry 10% cover 30%;
  }

  @keyframes articular-reveal-up {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
  }
}

/* ==========================================================================
   BASE RESET & TYPOGRAPHY
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: #F1F5F9;
  color: var(--joint-vibe-ink-dark);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1 0 auto;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--joint-vibe-ink-dark);
}

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

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

/* ==========================================================================
   HEADER PRESET K (White/Cream + Shadow 0 4px 20px)
   ========================================================================== */
.joint-depth-header {
  position: sticky;
  top: 0;
  z-index: 9000;
  background-color: var(--joint-vibe-surface-light);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.joint-header-shell {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.joint-brand-mark {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--joint-vibe-ink-dark);
  font-weight: 800;
  font-family: var(--font-display);
}

.joint-svg-symbol {
  width: 32px;
  height: 32px;
  color: var(--joint-vibe-teal);
}

.joint-brand-title {
  font-size: 1.15rem;
  letter-spacing: 1px;
}

.joint-drawer-checkbox {
  display: none;
}

.joint-drawer-trigger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.5rem;
}

.joint-hamburger-line {
  width: 24px;
  height: 3px;
  background-color: var(--joint-vibe-ink-dark);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.joint-navigation-list {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.joint-navigation-link {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--joint-vibe-ink-muted);
  transition: color 0.3s ease;
  padding: 0.5rem 0;
  position: relative;
}

.joint-navigation-link:hover,
.joint-active-link {
  color: var(--joint-vibe-teal);
}

.joint-active-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--joint-vibe-teal);
  border-radius: 2px;
}

/* Mobile Nav Styles */
@media (max-width: 768px) {
  .joint-drawer-trigger {
    display: flex;
  }

  .joint-navigation-panel {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--joint-vibe-surface-light);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
  }

  .joint-navigation-list {
    flex-direction: column;
    padding: 1.5rem;
    gap: 1rem;
  }

  .joint-drawer-checkbox:checked ~ .joint-navigation-panel {
    max-height: 300px;
  }
}

/* ==========================================================================
   BUTTON STYLE: Pill Elevated
   ========================================================================== */
.flex-pill-action {
  display: inline-block;
  padding: 1rem 2.5rem;
  border-radius: 999px;
  background: var(--joint-vibe-gradient-btn);
  color: #FFFFFF;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  box-shadow: 0 10px 25px rgba(14, 165, 233, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
  cursor: pointer;
}

.flex-pill-action:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(14, 165, 233, 0.5);
}

/* ==========================================================================
   INDEX HERO PRESET K: 100vh + Stacked floating cards
   ========================================================================== */
.flex-hero-stage {
  min-height: 100vh;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10dvh 1.5rem;
}

.flex-hero-backdrop-overlay {
  position: absolute;
  inset: 0;
  background: var(--joint-vibe-gradient-hero);
}

.flex-hero-stack-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.flex-stack-layer {
  background: var(--joint-vibe-surface-light);
  border-radius: 20px;
  padding: 1.5rem 2rem;
  width: 100%;
  text-align: center;
}

.flex-stack-back {
  transform: translateY(24px) scale(0.88);
  opacity: 0.6;
  z-index: 1;
  background-color: #E2E8F0;
  box-shadow: var(--joint-shadow-raised);
}

.flex-stack-mid {
  transform: translateY(12px) scale(0.94);
  opacity: 0.85;
  z-index: 2;
  margin-top: -1.5rem;
  background-color: #F8FAFC;
  box-shadow: var(--joint-shadow-levitate);
}

.flex-stack-front {
  transform: translateY(0) scale(1);
  z-index: 3;
  margin-top: -1.5rem;
  padding: 3rem 2.5rem;
  box-shadow: var(--joint-shadow-deep);
}

.flex-layer-badge {
  background: var(--joint-vibe-amber);
  color: #FFFFFF;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
}

.flex-subline {
  color: var(--joint-vibe-ink-muted);
  font-weight: 600;
}

.flex-hero-main-heading {
  font-size: 2.2rem;
  line-height: 1.25;
  margin-bottom: 1rem;
  color: var(--joint-vibe-ink-dark);
}

.flex-hero-description {
  font-size: 1.05rem;
  color: var(--joint-vibe-ink-muted);
  margin-bottom: 2rem;
}

/* ==========================================================================
   CONTENT SECTION: Floating frame left, Raised panel right
   ========================================================================== */
.articular-content-block {
  padding: 10dvh 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.articular-content-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: center;
}

.articular-raised-panel {
  background: var(--joint-vibe-surface-light);
  box-shadow: var(--joint-shadow-raised);
  padding: 2.5rem;
  border-radius: 12px;
}

.articular-heading-title {
  font-size: 1.8rem;
  margin-bottom: 1.25rem;
  color: var(--joint-vibe-ink-dark);
}

.articular-body-copy {
  margin-bottom: 1rem;
  color: var(--joint-vibe-ink-muted);
  font-size: 1rem;
}

.articular-highlight-pill {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.5rem 1.25rem;
  background: #E0F2FE;
  color: #0369A1;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
}

.articular-frame-wrapper {
  position: relative;
}

.articular-floating-card-image {
  height: 380px;
  background-size: cover;
  background-position: center;
  border-radius: 16px;
  box-shadow: var(--joint-shadow-levitate);
  position: relative;
}

.articular-image-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--joint-vibe-ink-dark);
  color: #FFFFFF;
  padding: 0.5rem 1.25rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
}

@media (max-width: 900px) {
  .articular-content-wrapper {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   FEATURES LEVITATING CARDS (Margin-top -50px, z-index 10)
   ========================================================================== */
.pivotal-features-zone {
  padding: 0 1.5rem 10dvh;
  max-width: 1200px;
  margin: 0 auto;
}

.pivotal-features-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  margin-top: -50px;
  position: relative;
  z-index: 10;
}

.pivotal-feature-card {
  background: var(--joint-vibe-surface-light);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: var(--joint-shadow-levitate);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pivotal-feature-card:hover {
  transform: translateY(-12px);
  box-shadow: var(--joint-shadow-deep);
}

.pivotal-card-icon {
  width: 56px;
  height: 56px;
  background: #E0F2FE;
  color: var(--joint-vibe-teal);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.pivotal-card-heading {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

.pivotal-card-text {
  color: var(--joint-vibe-ink-muted);
  font-size: 0.95rem;
}

/* ==========================================================================
   HOW IT WORKS: Elevated Pill Cards
   ========================================================================== */
.articular-steps-section {
  padding: 10dvh 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.articular-steps-title {
  font-size: 1.8rem;
  margin-bottom: 3rem;
}

.articular-steps-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.articular-step-pill {
  background: var(--joint-vibe-surface-light);
  border-radius: 999px;
  padding: 1.5rem 2.5rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  gap: 2rem;
  text-align: left;
}

.articular-step-badge {
  width: 50px;
  height: 50px;
  background: var(--joint-vibe-gradient-btn);
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.articular-step-heading {
  font-size: 1.15rem;
  margin-bottom: 0.25rem;
}

.articular-step-text {
  color: var(--joint-vibe-ink-muted);
  font-size: 0.95rem;
}

@media (max-width: 600px) {
  .articular-step-pill {
    border-radius: 20px;
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
  }
}

/* ==========================================================================
   CTA STRIP: Centered Floating Panel 65% width
   ========================================================================== */
.articular-cta-banner {
  min-height: 50vh;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10dvh 1.5rem;
}

.articular-cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.82);
}

.articular-cta-floating-panel {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 65%;
  background: var(--joint-vibe-surface-light);
  border-radius: 24px;
  padding: 3.5rem 2.5rem;
  text-align: center;
  box-shadow: var(--joint-shadow-deep);
}

.articular-cta-heading {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.articular-cta-subtext {
  color: var(--joint-vibe-ink-muted);
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

@media (max-width: 900px) {
  .articular-cta-floating-panel {
    max-width: 90%;
  }
}

/* ==========================================================================
   EXPERT PAGE PRESET K STYLES
   ========================================================================== */
.expert-hero-stage {
  padding: 10dvh 1.5rem 5dvh;
  max-width: 900px;
  margin: 0 auto;
}

.expert-floating-hero-card {
  background: var(--joint-vibe-surface-light);
  padding: 3.5rem 2.5rem;
  border-radius: 24px;
  box-shadow: var(--joint-shadow-levitate);
  text-align: center;
}

.expert-hero-badge {
  background: #E0F2FE;
  color: var(--joint-vibe-teal);
  padding: 0.4rem 1.25rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.85rem;
  display: inline-block;
  margin-bottom: 1rem;
}

.expert-hero-title {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.expert-hero-text {
  color: var(--joint-vibe-ink-muted);
  font-size: 1.05rem;
}

.expert-frame-section {
  padding: 5dvh 1.5rem 8dvh;
  max-width: 1000px;
  margin: 0 auto;
}

.expert-levitating-frame-wrapper {
  background: #FFFFFF;
  padding: 1rem;
  border-radius: 24px;
  box-shadow: var(--joint-shadow-deep);
}

.expert-levitating-frame {
  height: 400px;
  background-size: cover;
  background-position: center;
  border-radius: 16px;
  position: relative;
  display: flex;
  align-items: flex-end;
}

.expert-frame-overlay-content {
  background: rgba(15, 23, 42, 0.85);
  color: #FFFFFF;
  padding: 2rem;
  width: 100%;
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
}

.expert-frame-overlay-content h3 {
  color: #FFFFFF;
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.expert-stats-zone {
  padding: 0 1.5rem 10dvh;
  max-width: 1100px;
  margin: 0 auto;
}

.expert-stats-pills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.expert-stat-pill {
  background: var(--joint-vibe-surface-light);
  border-radius: 999px;
  padding: 1.5rem 2rem;
  text-align: center;
  box-shadow: var(--joint-shadow-raised);
}

.expert-stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  color: var(--joint-vibe-teal);
}

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

.expert-approach-section {
  padding: 0 1.5rem 10dvh;
  max-width: 1100px;
  margin: 0 auto;
}

.expert-approach-card {
  background-size: cover;
  background-position: center;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--joint-shadow-levitate);
}

.expert-approach-backdrop {
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.6) 100%);
  color: #FFFFFF;
  padding: 4rem 3rem;
  max-width: 600px;
}

.expert-approach-backdrop h2 {
  color: #FFFFFF;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.expert-cta-panel-section {
  padding: 0 1.5rem 10dvh;
  max-width: 900px;
  margin: 0 auto;
}

.expert-cta-floating-card {
  background: var(--joint-vibe-surface-light);
  padding: 3rem 2rem;
  border-radius: 24px;
  text-align: center;
  box-shadow: var(--joint-shadow-deep);
}

.expert-cta-floating-card h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.expert-cta-floating-card p {
  color: var(--joint-vibe-ink-muted);
  margin-bottom: 2rem;
}

/* ==========================================================================
   RESERVE PAGE PRESET K STYLES
   ========================================================================== */
.reserve-hero-stage {
  padding: 8dvh 1.5rem 4dvh;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.reserve-hero-card {
  background: var(--joint-vibe-surface-light);
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: var(--joint-shadow-raised);
}

.reserve-hero-title {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.reserve-hero-text {
  color: var(--joint-vibe-ink-muted);
}

.reserve-info-zone {
  padding: 4dvh 1.5rem 8dvh;
  max-width: 1200px;
  margin: 0 auto;
}

.reserve-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.reserve-info-card {
  background: var(--joint-vibe-surface-light);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: var(--joint-shadow-levitate);
}

.reserve-card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.reserve-card-icon {
  font-size: 1.5rem;
}

.reserve-card-header h3 {
  font-size: 1.15rem;
}

.reserve-numbered-list {
  list-style: none;
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.reserve-numbered-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--joint-vibe-ink-muted);
}

.reserve-badge-num {
  width: 24px;
  height: 24px;
  background: var(--joint-vibe-teal);
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.8rem;
  flex-shrink: 0;
}

/* Form floating card border-radius: 24px; box-shadow: 0 30px 80px rgba(0,0,0,0.2) */
.reserve-form-section {
  padding: 0 1.5rem 10dvh;
  max-width: 700px;
  margin: 0 auto;
}

.reserve-form-floating-card {
  background: var(--joint-vibe-surface-light);
  border-radius: 24px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
  padding: 3.5rem 2.5rem;
}

.reserve-form-title {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  text-align: center;
}

.reserve-form-desc {
  text-align: center;
  color: var(--joint-vibe-ink-muted);
  margin-bottom: 2rem;
}

.reserve-actual-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.reserve-field-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.reserve-field-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
}

.reserve-input-control,
.reserve-textarea-control {
  width: 100%;
  padding: 0.9rem 1.2rem;
  border: 2px solid var(--joint-vibe-border);
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.reserve-input-control:focus,
.reserve-textarea-control:focus {
  outline: none;
  border-color: var(--joint-vibe-teal);
}

.reserve-checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.reserve-check-input {
  margin-top: 0.25rem;
  width: 18px;
  height: 18px;
  accent-color: var(--joint-vibe-teal);
}

.reserve-check-label {
  font-size: 0.85rem;
  color: var(--joint-vibe-ink-muted);
}

.reserve-check-label a {
  color: var(--joint-vibe-teal);
  text-decoration: underline;
}

.reserve-submit-button {
  width: 100%;
  margin-top: 1rem;
}

.reserve-contact-direct {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--joint-vibe-border);
  text-align: center;
  font-size: 0.9rem;
  color: var(--joint-vibe-ink-muted);
}

.reserve-email-link {
  display: inline-block;
  margin-top: 0.5rem;
  color: var(--joint-vibe-teal);
  font-weight: 700;
}

/* FAQ Lifting cards */
.reserve-faq-zone {
  padding: 0 1.5rem 10dvh;
  max-width: 900px;
  margin: 0 auto;
}

.reserve-faq-heading {
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 2.5rem;
}

.reserve-faq-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.reserve-faq-lifting-card {
  background: var(--joint-vibe-surface-light);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: var(--joint-shadow-raised);
  transition: transform 0.3s ease;
}

.reserve-faq-lifting-card:hover {
  transform: translateY(-5px);
}

.reserve-faq-question {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--joint-vibe-ink-dark);
}

.reserve-faq-answer {
  color: var(--joint-vibe-ink-muted);
  font-size: 0.95rem;
}

/* ==========================================================================
   THANK YOU PAGE STYLES
   ========================================================================== */
.thank-stage-zone {
  padding: 10dvh 1.5rem;
  max-width: 700px;
  margin: 0 auto;
}

.thank-floating-card {
  background: var(--joint-vibe-surface-light);
  border-radius: 24px;
  box-shadow: var(--joint-shadow-deep);
  padding: 3rem 2rem;
  text-align: center;
}

.thank-image-frame {
  height: 220px;
  background-size: cover;
  background-position: center;
  border-radius: 16px;
  margin-bottom: 2rem;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.thank-badge-check {
  background: rgba(16, 185, 129, 0.9);
  color: #FFFFFF;
  padding: 0.6rem 1.5rem;
  border-radius: 999px;
  font-weight: 800;
  font-size: 1rem;
}

.thank-main-heading {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.thank-subtext {
  color: var(--joint-vibe-ink-muted);
  margin-bottom: 2rem;
}

.thank-action-wrap {
  margin-top: 1rem;
}

/* ==========================================================================
   LEGAL PAGES (Privacy & Terms)
   ========================================================================== */
.legal-document-layout {
  padding: 10dvh 1.5rem;
  max-width: 900px;
  margin: 0 auto;
  min-height: 100vh;
}

.legal-floating-paper {
  background: var(--joint-vibe-surface-light);
  border-radius: 20px;
  padding: 3.5rem 3rem;
  box-shadow: var(--joint-shadow-levitate);
}

.legal-title {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
}

.legal-subtitle {
  font-size: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.legal-update-date {
  color: var(--joint-vibe-ink-muted);
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

.legal-section-block p {
  margin-bottom: 1.25rem;
  color: var(--joint-vibe-ink-muted);
  line-height: 1.7;
}

.legal-section-block a {
  color: var(--joint-vibe-teal);
  text-decoration: underline;
}

@media (max-width: 600px) {
  .legal-floating-paper {
    padding: 2rem 1.5rem;
  }
}

/* ==========================================================================
   COOKIE BANNER
   ========================================================================== */
.articular-cookie-container {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  padding: 1rem 1.5rem;
}

.articular-cookie-box {
  max-width: 1000px;
  margin: 0 auto;
  background: var(--joint-vibe-ink-dark);
  color: #FFFFFF;
  border-radius: 16px;
  padding: 1.5rem 2rem;
  box-shadow: var(--joint-shadow-deep);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.articular-cookie-text {
  font-size: 0.9rem;
  line-height: 1.5;
  color: #E2E8F0;
}

.articular-cookie-link {
  color: var(--joint-vibe-teal);
  text-decoration: underline;
}

.articular-cookie-actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}

.articular-cookie-btn {
  padding: 0.6rem 1.25rem;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  border: none;
  cursor: pointer;
}

.articular-btn-accept {
  background: var(--joint-vibe-gradient-btn);
  color: #FFFFFF;
}

.articular-btn-decline {
  background: rgba(255, 255, 255, 0.15);
  color: #FFFFFF;
}

@media (max-width: 768px) {
  .articular-cookie-box {
    flex-direction: column;
    text-align: center;
  }
}

/* ==========================================================================
   FOOTER (Shared)
   ========================================================================== */
.joint-footer-zone {
  background-color: var(--joint-vibe-ink-dark);
  color: #F8FAFC;
  padding: 5rem 1.5rem 3rem;
  margin-top: auto;
}

.joint-footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  text-align: center;
}

.joint-footer-zone .joint-brand-mark {
  color: #FFFFFF;
}

.joint-footer-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.joint-footer-links a {
  font-size: 0.9rem;
  color: #94A3B8;
  transition: color 0.3s ease;
}

.joint-footer-links a:hover {
  color: #FFFFFF;
}

.joint-disclaimer-text {
  max-width: 700px;
  font-size: 0.85rem;
  color: #94A3B8;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
}

.joint-copyright-text {
  font-size: 0.8rem;
  color: #64748B;
}